@dt-frames/ui 1.0.26 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/curd/src/components/dialog.d.ts +4 -7
- package/es/components/curd/src/types/curd.type.d.ts +2 -2
- package/es/components/forms/src/components/formIcon.d.ts +23 -23
- package/es/components/forms/src/components/formInputUseDialog.d.ts +18 -18
- package/es/components/forms/src/types/form.type.d.ts +1 -0
- package/es/components/icons/src/pick-icon.d.ts +5 -5
- package/es/components/source/src/hooks/useDownload.d.ts +2 -1
- package/es/components/source/src/types/source.type.d.ts +2 -1
- package/es/components/table/index.less +4 -0
- package/es/components/table/src/components/TableActions.d.ts +1 -0
- package/es/components/table/src/components/setting/Column.d.ts +1 -0
- package/es/components/table/src/components/setting/Download.d.ts +1 -0
- package/es/components/table/src/components/setting/Fullscreen.d.ts +1 -0
- package/es/components/table/src/components/setting/Size.d.ts +1 -0
- package/es/components/table/src/hooks/useColumns.d.ts +4 -2
- package/es/components/table/src/hooks/useLoading.d.ts +12 -1
- package/es/components/table/src/hooks/useTableInstance.d.ts +1 -0
- package/es/components/table/src/hooks/useTableScroll.d.ts +2 -2
- package/es/components/table/src/index.d.ts +96 -7
- package/es/components/table/src/types/table.type.d.ts +2 -1
- package/es/components/upload/src/props.d.ts +4 -0
- package/es/components/upload/src/upload.d.ts +109 -7
- package/es/index.js +95 -52
- package/es/theme/sider/components/basic-menu/basic-menu-item.d.ts +1 -0
- package/es/theme/sider/components/basic-menu/basic-menu.d.ts +2 -0
- package/es/theme/sider/components/basic-menu/basic-sub-menu-item.d.ts +2 -0
- package/es/theme/sider/components/basic-menu/menu-item-content.d.ts +1 -0
- package/es/theme/sider/components/drag-bar.d.ts +1 -1
- package/es/theme/sider/index.d.ts +1 -1
- package/es/theme/sider/index.less +2 -2
- package/es/theme/theme.less +6 -0
- package/es/theme/transition.less +6 -0
- package/package.json +2 -2
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { PaginationProps } from 'ant-design-vue/lib/pagination';
|
|
2
|
-
import { ComputedRef } from "vue";
|
|
2
|
+
import { ComputedRef, Ref } from "vue";
|
|
3
3
|
import { BasicColumn, BasicTableProps } from "../types/table.type";
|
|
4
4
|
import { SetColumnsParams } from '../types/tableHeader.type';
|
|
5
|
-
export declare function useColumns(propsRef: ComputedRef<BasicTableProps>, getPaginationRef: ComputedRef<boolean | PaginationProps
|
|
5
|
+
export declare function useColumns(propsRef: ComputedRef<BasicTableProps>, getPaginationRef: ComputedRef<boolean | PaginationProps>, tableElRef: Ref<HTMLDivElement & {
|
|
6
|
+
$el: any;
|
|
7
|
+
} | null>): {
|
|
6
8
|
getViewColumns: ComputedRef<BasicColumn[]>;
|
|
7
9
|
getColumnsRef: ComputedRef<BasicColumn[]>;
|
|
8
10
|
getColumns: (opt?: SetColumnsParams) => BasicColumn[];
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import { ComputedRef } from "vue";
|
|
2
2
|
import { BasicTableProps } from "../types/table.type";
|
|
3
3
|
export declare function useLoading(props: ComputedRef<BasicTableProps>): {
|
|
4
|
-
getLoading: ComputedRef<boolean
|
|
4
|
+
getLoading: ComputedRef<(boolean | Partial<import("vue").ExtractPropTypes<{
|
|
5
|
+
prefixCls: StringConstructor;
|
|
6
|
+
spinning: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: any;
|
|
9
|
+
};
|
|
10
|
+
size: import("vue").PropType<import("ant-design-vue/lib/spin/Spin").SpinSize>;
|
|
11
|
+
wrapperClassName: StringConstructor;
|
|
12
|
+
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
13
|
+
delay: NumberConstructor;
|
|
14
|
+
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
15
|
+
}>>) & boolean>;
|
|
5
16
|
setLoading: (loading: boolean) => void;
|
|
6
17
|
};
|
|
@@ -4,6 +4,7 @@ import { BasicTableProps, TableActionType } from "../types/table.type";
|
|
|
4
4
|
declare type Instance = TableActionType & {
|
|
5
5
|
tableElRef: Ref<Nullable<HTMLElement>>;
|
|
6
6
|
getBind: ComputedRef<Recordable>;
|
|
7
|
+
getProps: ComputedRef<Recordable>;
|
|
7
8
|
};
|
|
8
9
|
declare type RetInstance = Omit<Instance, 'getBind'> & {
|
|
9
10
|
getBind: ComputedRef<BasicTableProps>;
|
|
@@ -4,8 +4,8 @@ export declare function useTableScroll(propsRef: ComputedRef<BasicTableProps>, t
|
|
|
4
4
|
$el: any;
|
|
5
5
|
} | null>, columnsRef: ComputedRef<BasicColumn[]>, rowSelectionRef: ComputedRef<TableRowSelection | null>): {
|
|
6
6
|
getScrollRef: ComputedRef<{
|
|
7
|
-
x: string | number;
|
|
8
|
-
y: number;
|
|
7
|
+
x: string | number | true;
|
|
8
|
+
y: string | number;
|
|
9
9
|
scrollToFirstRowOnChange: boolean;
|
|
10
10
|
}>;
|
|
11
11
|
filterSource: Ref<any[]>;
|
|
@@ -204,11 +204,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
204
204
|
tableElRef: any;
|
|
205
205
|
getBind: import("vue").ComputedRef<{
|
|
206
206
|
scroll: {
|
|
207
|
-
x: string | number;
|
|
208
|
-
y: number;
|
|
207
|
+
x: string | number | true;
|
|
208
|
+
y: string | number;
|
|
209
209
|
scrollToFirstRowOnChange: boolean;
|
|
210
210
|
};
|
|
211
|
-
loading: boolean
|
|
211
|
+
loading: (boolean | Partial<ExtractPropTypes<{
|
|
212
|
+
prefixCls: StringConstructor;
|
|
213
|
+
spinning: {
|
|
214
|
+
type: BooleanConstructor;
|
|
215
|
+
default: any;
|
|
216
|
+
};
|
|
217
|
+
size: import("vue").PropType<import("ant-design-vue/lib/spin/Spin").SpinSize>;
|
|
218
|
+
wrapperClassName: StringConstructor;
|
|
219
|
+
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
220
|
+
delay: NumberConstructor;
|
|
221
|
+
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
222
|
+
}>>) & boolean;
|
|
212
223
|
dataSource: any[];
|
|
213
224
|
pagination: boolean | Partial<ExtractPropTypes<{
|
|
214
225
|
total: NumberConstructor;
|
|
@@ -268,7 +279,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
268
279
|
'onUpdate:pageSize': import("vue").PropType<(size: number) => void>;
|
|
269
280
|
}>>;
|
|
270
281
|
rowSelection: import("ant-design-vue/lib/table/interface").TableRowSelection<any>;
|
|
271
|
-
rowKey: string;
|
|
282
|
+
rowKey: (string | import("ant-design-vue/lib/vc-table/interface").GetRowKey<any>) & string;
|
|
272
283
|
columns: import("./types/table.type").BasicColumn[];
|
|
273
284
|
tableLayout: string;
|
|
274
285
|
class: (string | {
|
|
@@ -281,10 +292,89 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
281
292
|
onMouseenter: (event: Event) => void;
|
|
282
293
|
onMouseleave: (event: Event) => void;
|
|
283
294
|
};
|
|
284
|
-
|
|
295
|
+
dropdownPrefixCls?: string;
|
|
296
|
+
size: "small" | "middle";
|
|
285
297
|
bordered: boolean;
|
|
286
|
-
|
|
298
|
+
locale?: import("ant-design-vue/lib/table/interface").TableLocale;
|
|
299
|
+
onChange?: (pagination: import("ant-design-vue").TablePaginationConfig, filters: Record<string, import("ant-design-vue/lib/table/interface").FilterValue>, sorter: import("ant-design-vue/lib/table/interface").SorterResult<any> | import("ant-design-vue/lib/table/interface").SorterResult<any>[], extra: import("ant-design-vue/lib/table/interface").TableCurrentDataSource<any>) => void;
|
|
300
|
+
getPopupContainer?: import("ant-design-vue/lib/table/interface").GetPopupContainer;
|
|
301
|
+
sortDirections?: import("ant-design-vue/lib/table/interface").SortOrder[];
|
|
302
|
+
showSorterTooltip?: boolean | Partial<ExtractPropTypes<{
|
|
303
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
304
|
+
trigger: import("vue").PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
305
|
+
visible: {
|
|
306
|
+
type: BooleanConstructor;
|
|
307
|
+
default: any;
|
|
308
|
+
};
|
|
309
|
+
defaultVisible: {
|
|
310
|
+
type: BooleanConstructor;
|
|
311
|
+
default: any;
|
|
312
|
+
};
|
|
313
|
+
placement: import("vue").PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
314
|
+
color: StringConstructor;
|
|
315
|
+
transitionName: StringConstructor;
|
|
316
|
+
overlayStyle: {
|
|
317
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
318
|
+
default: import("vue").CSSProperties;
|
|
319
|
+
};
|
|
320
|
+
overlayClassName: StringConstructor;
|
|
321
|
+
openClassName: StringConstructor;
|
|
322
|
+
prefixCls: StringConstructor;
|
|
323
|
+
mouseEnterDelay: NumberConstructor;
|
|
324
|
+
mouseLeaveDelay: NumberConstructor;
|
|
325
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
326
|
+
arrowPointAtCenter: {
|
|
327
|
+
type: BooleanConstructor;
|
|
328
|
+
default: any;
|
|
329
|
+
};
|
|
330
|
+
autoAdjustOverflow: {
|
|
331
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
332
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
333
|
+
};
|
|
334
|
+
destroyTooltipOnHide: {
|
|
335
|
+
type: BooleanConstructor;
|
|
336
|
+
default: any;
|
|
337
|
+
};
|
|
338
|
+
align: {
|
|
339
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
340
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
341
|
+
};
|
|
342
|
+
builtinPlacements: {
|
|
343
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
344
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
345
|
+
};
|
|
346
|
+
children: ArrayConstructor;
|
|
347
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
348
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
349
|
+
}>>;
|
|
350
|
+
components?: import("ant-design-vue/lib/vc-table/interface").TableComponents<any>;
|
|
351
|
+
title?: import("ant-design-vue/lib/vc-table/interface").PanelRender<any>;
|
|
352
|
+
prefixCls?: string;
|
|
353
|
+
id?: string;
|
|
354
|
+
footer?: import("ant-design-vue/lib/vc-table/interface").PanelRender<any>;
|
|
355
|
+
rowClassName?: (string | import("ant-design-vue/lib/vc-table/interface").RowClassName<any>) & ((record: any, index: number) => string);
|
|
356
|
+
showHeader?: boolean;
|
|
357
|
+
customHeaderRow?: import("ant-design-vue/lib/vc-table/interface").GetComponentProps<import("ant-design-vue/lib/vc-table/interface").ColumnType<any>[]>;
|
|
358
|
+
direction?: "ltr" | "rtl";
|
|
359
|
+
expandFixed?: boolean | "left" | "right";
|
|
360
|
+
expandColumnWidth?: number;
|
|
361
|
+
expandedRowKeys?: import("ant-design-vue/lib/vc-table/interface").Key[];
|
|
362
|
+
defaultExpandedRowKeys?: import("ant-design-vue/lib/vc-table/interface").Key[];
|
|
363
|
+
expandedRowRender?: import("ant-design-vue/lib/vc-table/interface").ExpandedRowRender<any>;
|
|
364
|
+
expandRowByClick?: boolean;
|
|
365
|
+
expandIcon?: import("ant-design-vue/lib/vc-table/interface").RenderExpandIcon<any>;
|
|
366
|
+
onExpand?: (expanded: boolean, record: any) => void;
|
|
367
|
+
onExpandedRowsChange?: (expandedKeys: import("ant-design-vue/lib/vc-table/interface").Key[]) => void;
|
|
368
|
+
defaultExpandAllRows?: boolean;
|
|
369
|
+
indentSize?: number;
|
|
370
|
+
expandIconColumnIndex?: number;
|
|
371
|
+
showExpandColumn?: boolean;
|
|
372
|
+
expandedRowClassName?: import("ant-design-vue/lib/vc-table/interface").RowClassName<any>;
|
|
287
373
|
childrenColumnName: string;
|
|
374
|
+
rowExpandable?: (record: any) => boolean;
|
|
375
|
+
sticky?: boolean | import("ant-design-vue/lib/vc-table/interface").TableSticky;
|
|
376
|
+
transformCellText?: import("ant-design-vue/lib/vc-table/interface").TransformCellText<any>;
|
|
377
|
+
onDownload: Function;
|
|
288
378
|
clickRowSelect: boolean;
|
|
289
379
|
tableSetting: {};
|
|
290
380
|
clickToRowSelect: boolean;
|
|
@@ -300,7 +390,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
300
390
|
showIndexColumn: boolean;
|
|
301
391
|
indexColumnProps: import("./types/table.type").BasicColumn[];
|
|
302
392
|
isTreeTable: boolean;
|
|
303
|
-
rowClassName?: (record: any, index: number) => string;
|
|
304
393
|
minWidth?: number;
|
|
305
394
|
maxWidth?: number;
|
|
306
395
|
defSort?: any;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DictType, Recordable } from '@dt-frames/core';
|
|
2
|
+
import type { TableProps as ATableProps } from 'ant-design-vue';
|
|
2
3
|
import type { ColumnProps } from 'ant-design-vue/lib/table';
|
|
3
4
|
import type { TableRowSelection as ITableRowSelection } from 'ant-design-vue/lib/table/interface';
|
|
4
5
|
import { ExtractPropTypes, VNode } from 'vue';
|
|
@@ -21,7 +22,7 @@ export declare type ColumnChangeParam = {
|
|
|
21
22
|
fixed: boolean | 'left' | 'right' | undefined;
|
|
22
23
|
visible: boolean;
|
|
23
24
|
};
|
|
24
|
-
export declare type BasicTableProps = ExtractPropTypes<typeof TableProps> & {
|
|
25
|
+
export declare type BasicTableProps = ATableProps & ExtractPropTypes<typeof TableProps> & {
|
|
25
26
|
onColumnsChange?: (data: ColumnChangeParam[]) => void;
|
|
26
27
|
};
|
|
27
28
|
export declare type SizeType = 'default' | 'middle' | 'small';
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
uploadText: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
2
6
|
showTemplateDownload: {
|
|
3
7
|
type: BooleanConstructor;
|
|
4
8
|
default: boolean;
|
|
@@ -43,6 +47,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
43
47
|
imgSrcRef: import("vue").Ref<any>;
|
|
44
48
|
setImgVisible: (value: any) => any;
|
|
45
49
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
uploadText: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
46
54
|
showTemplateDownload: {
|
|
47
55
|
type: BooleanConstructor;
|
|
48
56
|
default: boolean;
|
|
@@ -1220,11 +1228,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1220
1228
|
tableElRef: any;
|
|
1221
1229
|
getBind: import("vue").ComputedRef<{
|
|
1222
1230
|
scroll: {
|
|
1223
|
-
x: string | number;
|
|
1224
|
-
y: number;
|
|
1231
|
+
x: string | number | true;
|
|
1232
|
+
y: string | number;
|
|
1225
1233
|
scrollToFirstRowOnChange: boolean;
|
|
1226
1234
|
};
|
|
1227
|
-
loading: boolean
|
|
1235
|
+
loading: (boolean | Partial<import("vue").ExtractPropTypes<{
|
|
1236
|
+
prefixCls: StringConstructor;
|
|
1237
|
+
spinning: {
|
|
1238
|
+
type: BooleanConstructor;
|
|
1239
|
+
default: any;
|
|
1240
|
+
};
|
|
1241
|
+
size: import("vue").PropType<import("ant-design-vue/lib/spin/Spin").SpinSize>;
|
|
1242
|
+
wrapperClassName: StringConstructor;
|
|
1243
|
+
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
1244
|
+
delay: NumberConstructor;
|
|
1245
|
+
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
1246
|
+
}>>) & boolean;
|
|
1228
1247
|
dataSource: any[];
|
|
1229
1248
|
pagination: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
1230
1249
|
total: NumberConstructor;
|
|
@@ -1284,7 +1303,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1284
1303
|
'onUpdate:pageSize': import("vue").PropType<(size: number) => void>;
|
|
1285
1304
|
}>>;
|
|
1286
1305
|
rowSelection: import("ant-design-vue/lib/table/interface").TableRowSelection<any>;
|
|
1287
|
-
rowKey: string;
|
|
1306
|
+
rowKey: (string | import("ant-design-vue/lib/vc-table/interface").GetRowKey<any>) & string;
|
|
1288
1307
|
columns: import("../../table/src/types/table.type").BasicColumn[];
|
|
1289
1308
|
tableLayout: string;
|
|
1290
1309
|
class: (string | {
|
|
@@ -1297,10 +1316,89 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1297
1316
|
onMouseenter: (event: Event) => void;
|
|
1298
1317
|
onMouseleave: (event: Event) => void;
|
|
1299
1318
|
};
|
|
1300
|
-
|
|
1319
|
+
dropdownPrefixCls?: string;
|
|
1320
|
+
size: "small" | "middle";
|
|
1301
1321
|
bordered: boolean;
|
|
1302
|
-
|
|
1322
|
+
locale?: import("ant-design-vue/lib/table/interface").TableLocale;
|
|
1323
|
+
onChange?: (pagination: import("ant-design-vue").TablePaginationConfig, filters: Record<string, import("ant-design-vue/lib/table/interface").FilterValue>, sorter: import("ant-design-vue/lib/table/interface").SorterResult<any> | import("ant-design-vue/lib/table/interface").SorterResult<any>[], extra: import("ant-design-vue/lib/table/interface").TableCurrentDataSource<any>) => void;
|
|
1324
|
+
getPopupContainer?: import("ant-design-vue/lib/table/interface").GetPopupContainer;
|
|
1325
|
+
sortDirections?: import("ant-design-vue/lib/table/interface").SortOrder[];
|
|
1326
|
+
showSorterTooltip?: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
1327
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
1328
|
+
trigger: import("vue").PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
1329
|
+
visible: {
|
|
1330
|
+
type: BooleanConstructor;
|
|
1331
|
+
default: any;
|
|
1332
|
+
};
|
|
1333
|
+
defaultVisible: {
|
|
1334
|
+
type: BooleanConstructor;
|
|
1335
|
+
default: any;
|
|
1336
|
+
};
|
|
1337
|
+
placement: import("vue").PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
1338
|
+
color: StringConstructor;
|
|
1339
|
+
transitionName: StringConstructor;
|
|
1340
|
+
overlayStyle: {
|
|
1341
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
1342
|
+
default: import("vue").CSSProperties;
|
|
1343
|
+
};
|
|
1344
|
+
overlayClassName: StringConstructor;
|
|
1345
|
+
openClassName: StringConstructor;
|
|
1346
|
+
prefixCls: StringConstructor;
|
|
1347
|
+
mouseEnterDelay: NumberConstructor;
|
|
1348
|
+
mouseLeaveDelay: NumberConstructor;
|
|
1349
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
1350
|
+
arrowPointAtCenter: {
|
|
1351
|
+
type: BooleanConstructor;
|
|
1352
|
+
default: any;
|
|
1353
|
+
};
|
|
1354
|
+
autoAdjustOverflow: {
|
|
1355
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
1356
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
1357
|
+
};
|
|
1358
|
+
destroyTooltipOnHide: {
|
|
1359
|
+
type: BooleanConstructor;
|
|
1360
|
+
default: any;
|
|
1361
|
+
};
|
|
1362
|
+
align: {
|
|
1363
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
1364
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
1365
|
+
};
|
|
1366
|
+
builtinPlacements: {
|
|
1367
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
1368
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
1369
|
+
};
|
|
1370
|
+
children: ArrayConstructor;
|
|
1371
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
1372
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
1373
|
+
}>>;
|
|
1374
|
+
components?: import("ant-design-vue/lib/vc-table/interface").TableComponents<any>;
|
|
1375
|
+
title?: import("ant-design-vue/lib/vc-table/interface").PanelRender<any>;
|
|
1376
|
+
prefixCls?: string;
|
|
1377
|
+
id?: string;
|
|
1378
|
+
footer?: import("ant-design-vue/lib/vc-table/interface").PanelRender<any>;
|
|
1379
|
+
rowClassName?: (string | import("ant-design-vue/lib/vc-table/interface").RowClassName<any>) & ((record: any, index: number) => string);
|
|
1380
|
+
showHeader?: boolean;
|
|
1381
|
+
customHeaderRow?: import("ant-design-vue/lib/vc-table/interface").GetComponentProps<import("ant-design-vue/lib/vc-table/interface").ColumnType<any>[]>;
|
|
1382
|
+
direction?: "ltr" | "rtl";
|
|
1383
|
+
expandFixed?: boolean | "left" | "right";
|
|
1384
|
+
expandColumnWidth?: number;
|
|
1385
|
+
expandedRowKeys?: import("ant-design-vue/lib/vc-table/interface").Key[];
|
|
1386
|
+
defaultExpandedRowKeys?: import("ant-design-vue/lib/vc-table/interface").Key[];
|
|
1387
|
+
expandedRowRender?: import("ant-design-vue/lib/vc-table/interface").ExpandedRowRender<any>;
|
|
1388
|
+
expandRowByClick?: boolean;
|
|
1389
|
+
expandIcon?: import("ant-design-vue/lib/vc-table/interface").RenderExpandIcon<any>;
|
|
1390
|
+
onExpand?: (expanded: boolean, record: any) => void;
|
|
1391
|
+
onExpandedRowsChange?: (expandedKeys: import("ant-design-vue/lib/vc-table/interface").Key[]) => void;
|
|
1392
|
+
defaultExpandAllRows?: boolean;
|
|
1393
|
+
indentSize?: number;
|
|
1394
|
+
expandIconColumnIndex?: number;
|
|
1395
|
+
showExpandColumn?: boolean;
|
|
1396
|
+
expandedRowClassName?: import("ant-design-vue/lib/vc-table/interface").RowClassName<any>;
|
|
1303
1397
|
childrenColumnName: string;
|
|
1398
|
+
rowExpandable?: (record: any) => boolean;
|
|
1399
|
+
sticky?: boolean | import("ant-design-vue/lib/vc-table/interface").TableSticky;
|
|
1400
|
+
transformCellText?: import("ant-design-vue/lib/vc-table/interface").TransformCellText<any>;
|
|
1401
|
+
onDownload: Function;
|
|
1304
1402
|
clickRowSelect: boolean;
|
|
1305
1403
|
tableSetting: {};
|
|
1306
1404
|
clickToRowSelect: boolean;
|
|
@@ -1316,7 +1414,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1316
1414
|
showIndexColumn: boolean;
|
|
1317
1415
|
indexColumnProps: import("../../table/src/types/table.type").BasicColumn[];
|
|
1318
1416
|
isTreeTable: boolean;
|
|
1319
|
-
rowClassName?: (record: any, index: number) => string;
|
|
1320
1417
|
minWidth?: number;
|
|
1321
1418
|
maxWidth?: number;
|
|
1322
1419
|
defSort?: any;
|
|
@@ -1629,6 +1726,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1629
1726
|
isTreeTable: boolean;
|
|
1630
1727
|
}>;
|
|
1631
1728
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1729
|
+
uploadText: {
|
|
1730
|
+
type: StringConstructor;
|
|
1731
|
+
default: string;
|
|
1732
|
+
};
|
|
1632
1733
|
showTemplateDownload: {
|
|
1633
1734
|
type: BooleanConstructor;
|
|
1634
1735
|
default: boolean;
|
|
@@ -1665,6 +1766,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1665
1766
|
default: boolean;
|
|
1666
1767
|
};
|
|
1667
1768
|
}>>, {
|
|
1769
|
+
uploadText: string;
|
|
1668
1770
|
showTemplateDownload: boolean;
|
|
1669
1771
|
templateDownload: import("@vueuse/shared").Fn;
|
|
1670
1772
|
helpText: string;
|