提交 1d3007f0 作者: vben

chore: update deps

上级 de5bf757
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
"dependencies": { "dependencies": {
"@iconify/iconify": "^2.0.0-rc.5", "@iconify/iconify": "^2.0.0-rc.5",
"@vueuse/core": "^4.0.2", "@vueuse/core": "^4.0.2",
"ant-design-vue": "^2.0.0-rc.7", "ant-design-vue": "^2.0.0-rc.8",
"apexcharts": "^3.23.1", "apexcharts": "^3.23.1",
"axios": "^0.21.1", "axios": "^0.21.1",
"crypto-es": "^1.2.6", "crypto-es": "^1.2.6",
......
...@@ -50,14 +50,16 @@ ...@@ -50,14 +50,16 @@
// //
.ant-table { .ant-table {
width: 100%;
overflow-x: auto;
border: none; border: none;
&-title { &-title {
display: flex; display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 6px; padding: 8px 6px;
border-bottom: none; border-bottom: none;
justify-content: space-between;
align-items: center;
} }
.ant-table-thead > tr > th, .ant-table-thead > tr > th,
...@@ -109,6 +111,20 @@ ...@@ -109,6 +111,20 @@
white-space: nowrap; white-space: nowrap;
} }
.ant-table-tbody > tr > td,
.ant-table-tbody > tr > th,
.ant-table-thead > tr > td,
.ant-table-thead > tr > th {
white-space: pre;
}
.ant-table-tbody > tr > td > span,
.ant-table-tbody > tr > th > span,
.ant-table-thead > tr > td > span,
.ant-table-thead > tr > th > span {
display: block;
}
.ant-table-row-cell-last { .ant-table-row-cell-last {
border-right: none !important; border-right: none !important;
} }
......
...@@ -29,6 +29,10 @@ declare type Indexable<T extends any = any> = { ...@@ -29,6 +29,10 @@ declare type Indexable<T extends any = any> = {
declare type Recordable<T extends any = any> = Record<string, T>; declare type Recordable<T extends any = any> = Record<string, T>;
declare type ReadonlyRecordable<T extends any = any> = {
readonly [key: string]: T;
};
declare type Hash<T> = Indexable<T>; declare type Hash<T> = Indexable<T>;
declare type DeepPartial<T> = { declare type DeepPartial<T> = {
......
declare module 'ant-design-vue/es/locale/zh_CN';
declare module 'globby!/@/router/routes/modules/**/*.@(ts)'; declare module 'globby!/@/router/routes/modules/**/*.@(ts)';
declare module 'globby!/@/router/menus/modules/**/*.@(ts)'; declare module 'globby!/@/router/menus/modules/**/*.@(ts)';
...@@ -7,3 +5,15 @@ declare module 'globby!/@/router/menus/modules/**/*.@(ts)'; ...@@ -7,3 +5,15 @@ declare module 'globby!/@/router/menus/modules/**/*.@(ts)';
declare module 'globby?locale!/@/locales/lang/**/*.@(ts)'; declare module 'globby?locale!/@/locales/lang/**/*.@(ts)';
declare const React: string; declare const React: string;
declare module 'ant-design-vue/es/locale/*' {
import { Locale } from 'ant-design-vue/types/locale-provider';
const locale: Locale & ReadonlyRecordable;
export default locale as Locale & ReadonlyRecordable;
}
declare module 'moment/locale/*' {
import { LocaleSpecification } from 'moment';
const locale: LocaleSpecification & ReadonlyRecordable;
export default locale;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论