vft 0.0.205 → 0.0.207
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/affix/affix.d.ts +1 -1
- package/es/components/affix/affix.vue.d.ts +3 -3
- package/es/components/affix/index.d.ts +7 -7
- package/es/components/autocomplete/autocomplete.vue.d.ts +1 -1
- package/es/components/autocomplete/index.d.ts +3 -3
- package/es/components/button/index.d.ts +12 -12
- package/es/components/button/use-button.js +3 -3
- package/es/components/carousel/carousel.vue.d.ts +1 -1
- package/es/components/carousel/index.d.ts +19 -19
- package/es/components/date-picker/date-picker.d.ts +1 -1
- package/es/components/date-picker/index.d.ts +2 -2
- package/es/components/dropdown/dropdown.vue.d.ts +1 -1
- package/es/components/dropdown/index.d.ts +19 -19
- package/es/components/focus-trap/utils.d.ts +1 -1
- package/es/components/form/form-item.vue.d.ts +1 -1
- package/es/components/form/index.d.ts +42 -42
- package/es/components/index.js +111 -111
- package/es/components/modal/index.d.ts +24 -24
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +1 -1
- package/es/components/popconfirm/index.d.ts +23 -23
- package/es/components/popconfirm/popconfirm.vue.d.ts +1 -1
- package/es/components/popper/composables/use-content.d.ts +3 -3
- package/es/components/progress/index.d.ts +4 -4
- package/es/components/super-form/super-form-item.vue2.js +33 -35
- package/es/components/switch/index.d.ts +6 -6
- package/es/components/table/index.d.ts +40 -40
- package/es/components/tabs/index.d.ts +2 -2
- package/es/components/time-picker/common/picker.vue.d.ts +1 -1
- package/es/components/time-picker/index.d.ts +2 -2
- package/es/components/time-picker/time-picker.d.ts +1 -1
- package/es/components/timeline/index.d.ts +8 -8
- package/es/components/tree/index.d.ts +12 -12
- package/es/hooks/use-popper/index.d.ts +3 -3
- package/es/index.js +111 -111
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/lib/components/affix/affix.d.ts +1 -1
- package/lib/components/affix/affix.vue.d.ts +3 -3
- package/lib/components/affix/index.d.ts +7 -7
- package/lib/components/autocomplete/autocomplete.vue.d.ts +1 -1
- package/lib/components/autocomplete/index.d.ts +3 -3
- package/lib/components/button/index.d.ts +12 -12
- package/lib/components/button/use-button.cjs +1 -1
- package/lib/components/carousel/carousel.vue.d.ts +1 -1
- package/lib/components/carousel/index.d.ts +19 -19
- package/lib/components/date-picker/date-picker.d.ts +1 -1
- package/lib/components/date-picker/index.d.ts +2 -2
- package/lib/components/dropdown/dropdown.vue.d.ts +1 -1
- package/lib/components/dropdown/index.d.ts +19 -19
- package/lib/components/focus-trap/utils.d.ts +1 -1
- package/lib/components/form/form-item.vue.d.ts +1 -1
- package/lib/components/form/index.d.ts +42 -42
- package/lib/components/index.cjs +1 -1
- package/lib/components/modal/index.d.ts +24 -24
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/popconfirm/index.d.ts +23 -23
- package/lib/components/popconfirm/popconfirm.vue.d.ts +1 -1
- package/lib/components/popper/composables/use-content.d.ts +3 -3
- package/lib/components/progress/index.d.ts +4 -4
- package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
- package/lib/components/switch/index.d.ts +6 -6
- package/lib/components/table/index.d.ts +40 -40
- package/lib/components/tabs/index.d.ts +2 -2
- package/lib/components/time-picker/common/picker.vue.d.ts +1 -1
- package/lib/components/time-picker/index.d.ts +2 -2
- package/lib/components/time-picker/time-picker.d.ts +1 -1
- package/lib/components/timeline/index.d.ts +8 -8
- package/lib/components/tree/index.d.ts +12 -12
- package/lib/hooks/use-popper/index.d.ts +3 -3
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/package.json +4 -4
- package/web-types.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
3
|
-
height: {
|
|
4
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
5
|
-
};
|
|
6
3
|
data: {
|
|
7
4
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<import("vxe-table").VxeTableDataRow>>;
|
|
8
5
|
};
|
|
6
|
+
height: {
|
|
7
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
8
|
+
};
|
|
9
9
|
maxHeight: {
|
|
10
10
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
11
11
|
};
|
|
@@ -49,13 +49,13 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
49
49
|
round: {
|
|
50
50
|
type: import("vue").PropType<boolean>;
|
|
51
51
|
};
|
|
52
|
+
sticky: {
|
|
53
|
+
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
54
|
+
};
|
|
52
55
|
fit: {
|
|
53
56
|
type: import("vue").PropType<boolean>;
|
|
54
57
|
default: boolean;
|
|
55
58
|
};
|
|
56
|
-
sticky: {
|
|
57
|
-
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
58
|
-
};
|
|
59
59
|
autoResize: {
|
|
60
60
|
type: import("vue").PropType<boolean>;
|
|
61
61
|
default: boolean;
|
|
@@ -70,7 +70,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
70
70
|
type: import("vue").PropType<boolean>;
|
|
71
71
|
};
|
|
72
72
|
pagination: {
|
|
73
|
-
type: import("vue").PropType<Partial<import("vft/es/vft
|
|
73
|
+
type: import("vue").PropType<Partial<import("vft/es/vft").PaginationProps> & {
|
|
74
74
|
pagePlacement?: "bottom-left" | "bottom-right" | "top-left" | "top-right";
|
|
75
75
|
}>;
|
|
76
76
|
};
|
|
@@ -327,7 +327,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
327
327
|
default: boolean;
|
|
328
328
|
};
|
|
329
329
|
afterFetch: {
|
|
330
|
-
type: import("vue").PropType<(params: any) => import("../types
|
|
330
|
+
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
331
331
|
};
|
|
332
332
|
transformParams: {
|
|
333
333
|
type: import("vue").PropType<boolean>;
|
|
@@ -341,7 +341,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
341
341
|
default: number;
|
|
342
342
|
};
|
|
343
343
|
formOptions: {
|
|
344
|
-
type: import("vue").PropType<import("vft/es/vft
|
|
344
|
+
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
345
345
|
showActionForm?: boolean;
|
|
346
346
|
addSearchAllSchema?: boolean;
|
|
347
347
|
}>;
|
|
@@ -432,7 +432,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
432
432
|
"onToolbar-button-click"?: ((...args: any[]) => any) | undefined;
|
|
433
433
|
"onToolbar-tool-click"?: ((...args: any[]) => any) | undefined;
|
|
434
434
|
}, {
|
|
435
|
-
setPagination: (info: Partial<import("vft/es/vft
|
|
435
|
+
setPagination: (info: Partial<import("vft/es/vft").PaginationProps>) => void;
|
|
436
436
|
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "register" | "update:page-size" | "current-change" | "fetch-success" | "update:data" | "keydown-start" | "keydown-end" | "radio-change" | "checkbox-change" | "checkbox-all" | "checkbox-range-start" | "checkbox-range-change" | "checkbox-range-end" | "cell-click" | "cell-dblclick" | "cell-menu" | "cell-mouseenter" | "cell-mouseleave" | "cell-selected" | "header-cell-click" | "header-cell-dblclick" | "header-cell-menu" | "footer-cell-click" | "footer-cell-dblclick" | "footer-cell-menu" | "clear-merge" | "sort-change" | "clear-sort" | "filter-change" | "filter-visible" | "clear-filter" | "resizable-change" | "toggle-row-expand" | "toggle-tree-expand" | "menu-click" | "edit-closed" | "edit-actived" | "edit-disabled" | "valid-error" | "custom" | "change-fnr" | "open-fnr" | "fnr-change" | "fnr-find" | "fnr-find-all" | "fnr-replace" | "fnr-replace-all" | "cell-area-copy" | "cell-area-cut" | "cell-area-paste" | "cell-area-merge" | "clear-cell-area-merge" | "header-cell-area-selection" | "cell-area-selection-start" | "cell-area-selection-drag" | "cell-area-selection-end" | "cell-area-extension-start" | "cell-area-extension-drag" | "cell-area-extension-end" | "cell-area-selection-all-start" | "cell-area-selection-all-end" | "cell-area-arrows-start" | "cell-area-arrows-end" | "active-cell-change-start" | "active-cell-change-end" | "form-submit" | "form-reset" | "update:page-num" | "page-change" | "form-submit-invalid" | "form-collapse" | "form-toggle-collapse" | "proxy-query" | "proxy-delete" | "proxy-save" | "toolbar-button-click" | "toolbar-tool-click", ...args: any[]) => void;
|
|
437
437
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
438
438
|
reload: (opt?: any) => Promise<Recordable[] | undefined>;
|
|
@@ -534,12 +534,12 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
534
534
|
"toolbar-button-click": (...args: any[]) => void;
|
|
535
535
|
"toolbar-tool-click": (...args: any[]) => void;
|
|
536
536
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
537
|
-
height: {
|
|
538
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
539
|
-
};
|
|
540
537
|
data: {
|
|
541
538
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<import("vxe-table").VxeTableDataRow>>;
|
|
542
539
|
};
|
|
540
|
+
height: {
|
|
541
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
542
|
+
};
|
|
543
543
|
maxHeight: {
|
|
544
544
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
545
545
|
};
|
|
@@ -583,13 +583,13 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
583
583
|
round: {
|
|
584
584
|
type: import("vue").PropType<boolean>;
|
|
585
585
|
};
|
|
586
|
+
sticky: {
|
|
587
|
+
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
588
|
+
};
|
|
586
589
|
fit: {
|
|
587
590
|
type: import("vue").PropType<boolean>;
|
|
588
591
|
default: boolean;
|
|
589
592
|
};
|
|
590
|
-
sticky: {
|
|
591
|
-
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
592
|
-
};
|
|
593
593
|
autoResize: {
|
|
594
594
|
type: import("vue").PropType<boolean>;
|
|
595
595
|
default: boolean;
|
|
@@ -604,7 +604,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
604
604
|
type: import("vue").PropType<boolean>;
|
|
605
605
|
};
|
|
606
606
|
pagination: {
|
|
607
|
-
type: import("vue").PropType<Partial<import("vft/es/vft
|
|
607
|
+
type: import("vue").PropType<Partial<import("vft/es/vft").PaginationProps> & {
|
|
608
608
|
pagePlacement?: "bottom-left" | "bottom-right" | "top-left" | "top-right";
|
|
609
609
|
}>;
|
|
610
610
|
};
|
|
@@ -861,7 +861,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
861
861
|
default: boolean;
|
|
862
862
|
};
|
|
863
863
|
afterFetch: {
|
|
864
|
-
type: import("vue").PropType<(params: any) => import("../types
|
|
864
|
+
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
865
865
|
};
|
|
866
866
|
transformParams: {
|
|
867
867
|
type: import("vue").PropType<boolean>;
|
|
@@ -875,7 +875,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
875
875
|
default: number;
|
|
876
876
|
};
|
|
877
877
|
formOptions: {
|
|
878
|
-
type: import("vue").PropType<import("vft/es/vft
|
|
878
|
+
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
879
879
|
showActionForm?: boolean;
|
|
880
880
|
addSearchAllSchema?: boolean;
|
|
881
881
|
}>;
|
|
@@ -994,12 +994,12 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
994
994
|
M: {};
|
|
995
995
|
Defaults: {};
|
|
996
996
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
997
|
-
height: {
|
|
998
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
999
|
-
};
|
|
1000
997
|
data: {
|
|
1001
998
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<import("vxe-table").VxeTableDataRow>>;
|
|
1002
999
|
};
|
|
1000
|
+
height: {
|
|
1001
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
1002
|
+
};
|
|
1003
1003
|
maxHeight: {
|
|
1004
1004
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
1005
1005
|
};
|
|
@@ -1043,13 +1043,13 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1043
1043
|
round: {
|
|
1044
1044
|
type: import("vue").PropType<boolean>;
|
|
1045
1045
|
};
|
|
1046
|
+
sticky: {
|
|
1047
|
+
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
1048
|
+
};
|
|
1046
1049
|
fit: {
|
|
1047
1050
|
type: import("vue").PropType<boolean>;
|
|
1048
1051
|
default: boolean;
|
|
1049
1052
|
};
|
|
1050
|
-
sticky: {
|
|
1051
|
-
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
1052
|
-
};
|
|
1053
1053
|
autoResize: {
|
|
1054
1054
|
type: import("vue").PropType<boolean>;
|
|
1055
1055
|
default: boolean;
|
|
@@ -1064,7 +1064,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1064
1064
|
type: import("vue").PropType<boolean>;
|
|
1065
1065
|
};
|
|
1066
1066
|
pagination: {
|
|
1067
|
-
type: import("vue").PropType<Partial<import("vft/es/vft
|
|
1067
|
+
type: import("vue").PropType<Partial<import("vft/es/vft").PaginationProps> & {
|
|
1068
1068
|
pagePlacement?: "bottom-left" | "bottom-right" | "top-left" | "top-right";
|
|
1069
1069
|
}>;
|
|
1070
1070
|
};
|
|
@@ -1321,7 +1321,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1321
1321
|
default: boolean;
|
|
1322
1322
|
};
|
|
1323
1323
|
afterFetch: {
|
|
1324
|
-
type: import("vue").PropType<(params: any) => import("../types
|
|
1324
|
+
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
1325
1325
|
};
|
|
1326
1326
|
transformParams: {
|
|
1327
1327
|
type: import("vue").PropType<boolean>;
|
|
@@ -1335,7 +1335,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1335
1335
|
default: number;
|
|
1336
1336
|
};
|
|
1337
1337
|
formOptions: {
|
|
1338
|
-
type: import("vue").PropType<import("vft/es/vft
|
|
1338
|
+
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
1339
1339
|
showActionForm?: boolean;
|
|
1340
1340
|
addSearchAllSchema?: boolean;
|
|
1341
1341
|
}>;
|
|
@@ -1426,7 +1426,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1426
1426
|
"onToolbar-button-click"?: ((...args: any[]) => any) | undefined;
|
|
1427
1427
|
"onToolbar-tool-click"?: ((...args: any[]) => any) | undefined;
|
|
1428
1428
|
}, {
|
|
1429
|
-
setPagination: (info: Partial<import("vft/es/vft
|
|
1429
|
+
setPagination: (info: Partial<import("vft/es/vft").PaginationProps>) => void;
|
|
1430
1430
|
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "register" | "update:page-size" | "current-change" | "fetch-success" | "update:data" | "keydown-start" | "keydown-end" | "radio-change" | "checkbox-change" | "checkbox-all" | "checkbox-range-start" | "checkbox-range-change" | "checkbox-range-end" | "cell-click" | "cell-dblclick" | "cell-menu" | "cell-mouseenter" | "cell-mouseleave" | "cell-selected" | "header-cell-click" | "header-cell-dblclick" | "header-cell-menu" | "footer-cell-click" | "footer-cell-dblclick" | "footer-cell-menu" | "clear-merge" | "sort-change" | "clear-sort" | "filter-change" | "filter-visible" | "clear-filter" | "resizable-change" | "toggle-row-expand" | "toggle-tree-expand" | "menu-click" | "edit-closed" | "edit-actived" | "edit-disabled" | "valid-error" | "custom" | "change-fnr" | "open-fnr" | "fnr-change" | "fnr-find" | "fnr-find-all" | "fnr-replace" | "fnr-replace-all" | "cell-area-copy" | "cell-area-cut" | "cell-area-paste" | "cell-area-merge" | "clear-cell-area-merge" | "header-cell-area-selection" | "cell-area-selection-start" | "cell-area-selection-drag" | "cell-area-selection-end" | "cell-area-extension-start" | "cell-area-extension-drag" | "cell-area-extension-end" | "cell-area-selection-all-start" | "cell-area-selection-all-end" | "cell-area-arrows-start" | "cell-area-arrows-end" | "active-cell-change-start" | "active-cell-change-end" | "form-submit" | "form-reset" | "update:page-num" | "page-change" | "form-submit-invalid" | "form-collapse" | "form-toggle-collapse" | "proxy-query" | "proxy-delete" | "proxy-save" | "toolbar-button-click" | "toolbar-tool-click", ...args: any[]) => void;
|
|
1431
1431
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
1432
1432
|
reload: (opt?: any) => Promise<Recordable[] | undefined>;
|
|
@@ -1468,12 +1468,12 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1468
1468
|
__isTeleport?: never;
|
|
1469
1469
|
__isSuspense?: never;
|
|
1470
1470
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1471
|
-
height: {
|
|
1472
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
1473
|
-
};
|
|
1474
1471
|
data: {
|
|
1475
1472
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<import("vxe-table").VxeTableDataRow>>;
|
|
1476
1473
|
};
|
|
1474
|
+
height: {
|
|
1475
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
1476
|
+
};
|
|
1477
1477
|
maxHeight: {
|
|
1478
1478
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
1479
1479
|
};
|
|
@@ -1517,13 +1517,13 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1517
1517
|
round: {
|
|
1518
1518
|
type: import("vue").PropType<boolean>;
|
|
1519
1519
|
};
|
|
1520
|
+
sticky: {
|
|
1521
|
+
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
1522
|
+
};
|
|
1520
1523
|
fit: {
|
|
1521
1524
|
type: import("vue").PropType<boolean>;
|
|
1522
1525
|
default: boolean;
|
|
1523
1526
|
};
|
|
1524
|
-
sticky: {
|
|
1525
|
-
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
1526
|
-
};
|
|
1527
1527
|
autoResize: {
|
|
1528
1528
|
type: import("vue").PropType<boolean>;
|
|
1529
1529
|
default: boolean;
|
|
@@ -1538,7 +1538,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1538
1538
|
type: import("vue").PropType<boolean>;
|
|
1539
1539
|
};
|
|
1540
1540
|
pagination: {
|
|
1541
|
-
type: import("vue").PropType<Partial<import("vft/es/vft
|
|
1541
|
+
type: import("vue").PropType<Partial<import("vft/es/vft").PaginationProps> & {
|
|
1542
1542
|
pagePlacement?: "bottom-left" | "bottom-right" | "top-left" | "top-right";
|
|
1543
1543
|
}>;
|
|
1544
1544
|
};
|
|
@@ -1795,7 +1795,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1795
1795
|
default: boolean;
|
|
1796
1796
|
};
|
|
1797
1797
|
afterFetch: {
|
|
1798
|
-
type: import("vue").PropType<(params: any) => import("../types
|
|
1798
|
+
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
1799
1799
|
};
|
|
1800
1800
|
transformParams: {
|
|
1801
1801
|
type: import("vue").PropType<boolean>;
|
|
@@ -1809,7 +1809,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1809
1809
|
default: number;
|
|
1810
1810
|
};
|
|
1811
1811
|
formOptions: {
|
|
1812
|
-
type: import("vue").PropType<import("vft/es/vft
|
|
1812
|
+
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
1813
1813
|
showActionForm?: boolean;
|
|
1814
1814
|
addSearchAllSchema?: boolean;
|
|
1815
1815
|
}>;
|
|
@@ -1900,7 +1900,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1900
1900
|
"onToolbar-button-click"?: ((...args: any[]) => any) | undefined;
|
|
1901
1901
|
"onToolbar-tool-click"?: ((...args: any[]) => any) | undefined;
|
|
1902
1902
|
}, {
|
|
1903
|
-
setPagination: (info: Partial<import("vft/es/vft
|
|
1903
|
+
setPagination: (info: Partial<import("vft/es/vft").PaginationProps>) => void;
|
|
1904
1904
|
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "register" | "update:page-size" | "current-change" | "fetch-success" | "update:data" | "keydown-start" | "keydown-end" | "radio-change" | "checkbox-change" | "checkbox-all" | "checkbox-range-start" | "checkbox-range-change" | "checkbox-range-end" | "cell-click" | "cell-dblclick" | "cell-menu" | "cell-mouseenter" | "cell-mouseleave" | "cell-selected" | "header-cell-click" | "header-cell-dblclick" | "header-cell-menu" | "footer-cell-click" | "footer-cell-dblclick" | "footer-cell-menu" | "clear-merge" | "sort-change" | "clear-sort" | "filter-change" | "filter-visible" | "clear-filter" | "resizable-change" | "toggle-row-expand" | "toggle-tree-expand" | "menu-click" | "edit-closed" | "edit-actived" | "edit-disabled" | "valid-error" | "custom" | "change-fnr" | "open-fnr" | "fnr-change" | "fnr-find" | "fnr-find-all" | "fnr-replace" | "fnr-replace-all" | "cell-area-copy" | "cell-area-cut" | "cell-area-paste" | "cell-area-merge" | "clear-cell-area-merge" | "header-cell-area-selection" | "cell-area-selection-start" | "cell-area-selection-drag" | "cell-area-selection-end" | "cell-area-extension-start" | "cell-area-extension-drag" | "cell-area-extension-end" | "cell-area-selection-all-start" | "cell-area-selection-all-end" | "cell-area-arrows-start" | "cell-area-arrows-end" | "active-cell-change-start" | "active-cell-change-end" | "form-submit" | "form-reset" | "update:page-num" | "page-change" | "form-submit-invalid" | "form-collapse" | "form-toggle-collapse" | "proxy-query" | "proxy-delete" | "proxy-save" | "toolbar-button-click" | "toolbar-tool-click", ...args: any[]) => void;
|
|
1905
1905
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
1906
1906
|
reload: (opt?: any) => Promise<Recordable[] | undefined>;
|
|
@@ -2029,7 +2029,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
2029
2029
|
};
|
|
2030
2030
|
})> & Record<string, any>;
|
|
2031
2031
|
export default VftTable;
|
|
2032
|
-
export * from './field
|
|
2032
|
+
export * from './field';
|
|
2033
2033
|
export * from './types';
|
|
2034
2034
|
export * from './use/use-table';
|
|
2035
2035
|
export * from './utils';
|
|
@@ -13,7 +13,7 @@ export declare const VftTabs: import("vft/es/utils").SFCWithInstall<import("vue"
|
|
|
13
13
|
type: import("vue").PropType<boolean>;
|
|
14
14
|
};
|
|
15
15
|
tabPosition: {
|
|
16
|
-
type: import("vue").PropType<"
|
|
16
|
+
type: import("vue").PropType<"left" | "right" | "bottom" | "top">;
|
|
17
17
|
};
|
|
18
18
|
beforeLeave: {
|
|
19
19
|
type: import("vue").PropType<Function>;
|
|
@@ -99,7 +99,7 @@ export declare const VftTabs: import("vft/es/utils").SFCWithInstall<import("vue"
|
|
|
99
99
|
type: import("vue").PropType<boolean>;
|
|
100
100
|
};
|
|
101
101
|
tabPosition: {
|
|
102
|
-
type: import("vue").PropType<"
|
|
102
|
+
type: import("vue").PropType<"left" | "right" | "bottom" | "top">;
|
|
103
103
|
};
|
|
104
104
|
beforeLeave: {
|
|
105
105
|
type: import("vue").PropType<Function>;
|
|
@@ -227,11 +227,11 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
227
227
|
readonly modelValue: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | Date | [DateModelType, DateModelType]) | (() => import("./props").ModelValueType) | ((new (...args: any[]) => string | number | Date | [DateModelType, DateModelType]) | (() => import("./props").ModelValueType))[], unknown, unknown>;
|
|
228
228
|
readonly readonly: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
229
229
|
readonly disabled: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
230
|
-
readonly tabindex: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
231
230
|
readonly placeholder: string;
|
|
232
231
|
readonly clearable: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
233
232
|
readonly prefixIcon: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
234
233
|
readonly clearIcon: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
234
|
+
readonly tabindex: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
235
235
|
readonly validateEvent: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
236
236
|
readonly popperOptions: Partial<Options>;
|
|
237
237
|
readonly popperClass: string;
|
|
@@ -176,11 +176,11 @@ declare const _TimePicker: import("vue").DefineComponent<{
|
|
|
176
176
|
modelValue: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | Date | [import("./common/props").DateModelType, import("./common/props").DateModelType]) | (() => import("./common/props").ModelValueType) | ((new (...args: any[]) => string | number | Date | [import("./common/props").DateModelType, import("./common/props").DateModelType]) | (() => import("./common/props").ModelValueType))[], unknown, unknown>;
|
|
177
177
|
readonly: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
178
178
|
disabled: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
179
|
-
tabindex: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
180
179
|
placeholder: string;
|
|
181
180
|
clearable: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
182
181
|
prefixIcon: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
183
182
|
clearIcon: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
183
|
+
tabindex: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
184
184
|
validateEvent: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
185
185
|
popperOptions: Partial<import("@popperjs/core").Options>;
|
|
186
186
|
popperClass: string;
|
|
@@ -366,11 +366,11 @@ export declare const VftTimePicker: import("vue").DefineComponent<{
|
|
|
366
366
|
modelValue: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | Date | [import("./common/props").DateModelType, import("./common/props").DateModelType]) | (() => import("./common/props").ModelValueType) | ((new (...args: any[]) => string | number | Date | [import("./common/props").DateModelType, import("./common/props").DateModelType]) | (() => import("./common/props").ModelValueType))[], unknown, unknown>;
|
|
367
367
|
readonly: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
368
368
|
disabled: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
369
|
-
tabindex: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
370
369
|
placeholder: string;
|
|
371
370
|
clearable: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
372
371
|
prefixIcon: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
373
372
|
clearIcon: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
373
|
+
tabindex: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
374
374
|
validateEvent: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
375
375
|
popperOptions: Partial<import("@popperjs/core").Options>;
|
|
376
376
|
popperClass: string;
|
|
@@ -177,11 +177,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
177
177
|
modelValue: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | Date | [import("./common/props").DateModelType, import("./common/props").DateModelType]) | (() => import("./common/props").ModelValueType) | ((new (...args: any[]) => string | number | Date | [import("./common/props").DateModelType, import("./common/props").DateModelType]) | (() => import("./common/props").ModelValueType))[], unknown, unknown>;
|
|
178
178
|
readonly: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
179
179
|
disabled: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
180
|
-
tabindex: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
181
180
|
placeholder: string;
|
|
182
181
|
clearable: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
183
182
|
prefixIcon: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
184
183
|
clearIcon: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
184
|
+
tabindex: import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
185
185
|
validateEvent: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
186
186
|
popperOptions: Partial<import("@popperjs/core").Options>;
|
|
187
187
|
popperClass: string;
|
|
@@ -11,7 +11,7 @@ export declare const VftTimeline: import("vft/es/utils").SFCWithInstall<import("
|
|
|
11
11
|
type: import("vue").PropType<boolean>;
|
|
12
12
|
};
|
|
13
13
|
placement: {
|
|
14
|
-
type: import("vue").PropType<"
|
|
14
|
+
type: import("vue").PropType<"bottom" | "top">;
|
|
15
15
|
};
|
|
16
16
|
type: {
|
|
17
17
|
type: import("vue").PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
@@ -39,7 +39,7 @@ export declare const VftTimeline: import("vft/es/utils").SFCWithInstall<import("
|
|
|
39
39
|
type: import("vue").PropType<boolean>;
|
|
40
40
|
};
|
|
41
41
|
placement: {
|
|
42
|
-
type: import("vue").PropType<"
|
|
42
|
+
type: import("vue").PropType<"bottom" | "top">;
|
|
43
43
|
};
|
|
44
44
|
type: {
|
|
45
45
|
type: import("vue").PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
@@ -74,7 +74,7 @@ export declare const VftTimeline: import("vft/es/utils").SFCWithInstall<import("
|
|
|
74
74
|
type: import("vue").PropType<boolean>;
|
|
75
75
|
};
|
|
76
76
|
placement: {
|
|
77
|
-
type: import("vue").PropType<"
|
|
77
|
+
type: import("vue").PropType<"bottom" | "top">;
|
|
78
78
|
};
|
|
79
79
|
type: {
|
|
80
80
|
type: import("vue").PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
@@ -106,7 +106,7 @@ export declare const VftTimeline: import("vft/es/utils").SFCWithInstall<import("
|
|
|
106
106
|
type: import("vue").PropType<boolean>;
|
|
107
107
|
};
|
|
108
108
|
placement: {
|
|
109
|
-
type: import("vue").PropType<"
|
|
109
|
+
type: import("vue").PropType<"bottom" | "top">;
|
|
110
110
|
};
|
|
111
111
|
type: {
|
|
112
112
|
type: import("vue").PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
@@ -142,7 +142,7 @@ export declare const VftTimelineItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
142
142
|
type: import("vue").PropType<boolean>;
|
|
143
143
|
};
|
|
144
144
|
placement: {
|
|
145
|
-
type: import("vue").PropType<"
|
|
145
|
+
type: import("vue").PropType<"bottom" | "top">;
|
|
146
146
|
};
|
|
147
147
|
type: {
|
|
148
148
|
type: import("vue").PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
@@ -170,7 +170,7 @@ export declare const VftTimelineItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
170
170
|
type: import("vue").PropType<boolean>;
|
|
171
171
|
};
|
|
172
172
|
placement: {
|
|
173
|
-
type: import("vue").PropType<"
|
|
173
|
+
type: import("vue").PropType<"bottom" | "top">;
|
|
174
174
|
};
|
|
175
175
|
type: {
|
|
176
176
|
type: import("vue").PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
@@ -205,7 +205,7 @@ export declare const VftTimelineItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
205
205
|
type: import("vue").PropType<boolean>;
|
|
206
206
|
};
|
|
207
207
|
placement: {
|
|
208
|
-
type: import("vue").PropType<"
|
|
208
|
+
type: import("vue").PropType<"bottom" | "top">;
|
|
209
209
|
};
|
|
210
210
|
type: {
|
|
211
211
|
type: import("vue").PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
@@ -237,7 +237,7 @@ export declare const VftTimelineItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
237
237
|
type: import("vue").PropType<boolean>;
|
|
238
238
|
};
|
|
239
239
|
placement: {
|
|
240
|
-
type: import("vue").PropType<"
|
|
240
|
+
type: import("vue").PropType<"bottom" | "top">;
|
|
241
241
|
};
|
|
242
242
|
type: {
|
|
243
243
|
type: import("vue").PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
@@ -25,12 +25,12 @@ export declare const VftTree: SFCWithInstall<{
|
|
|
25
25
|
disabled: string;
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
|
-
lazy: {
|
|
29
|
-
type: import("vue").PropType<boolean>;
|
|
30
|
-
};
|
|
31
28
|
icon: {
|
|
32
29
|
type: import("vue").PropType<import("vft/es/vft").IconProps>;
|
|
33
30
|
};
|
|
31
|
+
lazy: {
|
|
32
|
+
type: import("vue").PropType<boolean>;
|
|
33
|
+
};
|
|
34
34
|
emptyText: {
|
|
35
35
|
type: import("vue").PropType<string>;
|
|
36
36
|
};
|
|
@@ -165,12 +165,12 @@ export declare const VftTree: SFCWithInstall<{
|
|
|
165
165
|
disabled: string;
|
|
166
166
|
};
|
|
167
167
|
};
|
|
168
|
-
lazy: {
|
|
169
|
-
type: import("vue").PropType<boolean>;
|
|
170
|
-
};
|
|
171
168
|
icon: {
|
|
172
169
|
type: import("vue").PropType<import("vft/es/vft").IconProps>;
|
|
173
170
|
};
|
|
171
|
+
lazy: {
|
|
172
|
+
type: import("vue").PropType<boolean>;
|
|
173
|
+
};
|
|
174
174
|
emptyText: {
|
|
175
175
|
type: import("vue").PropType<string>;
|
|
176
176
|
};
|
|
@@ -282,12 +282,12 @@ export declare const VftTree: SFCWithInstall<{
|
|
|
282
282
|
disabled: string;
|
|
283
283
|
};
|
|
284
284
|
};
|
|
285
|
-
lazy: {
|
|
286
|
-
type: import("vue").PropType<boolean>;
|
|
287
|
-
};
|
|
288
285
|
icon: {
|
|
289
286
|
type: import("vue").PropType<import("vft/es/vft").IconProps>;
|
|
290
287
|
};
|
|
288
|
+
lazy: {
|
|
289
|
+
type: import("vue").PropType<boolean>;
|
|
290
|
+
};
|
|
291
291
|
emptyText: {
|
|
292
292
|
type: import("vue").PropType<string>;
|
|
293
293
|
};
|
|
@@ -419,12 +419,12 @@ export declare const VftTree: SFCWithInstall<{
|
|
|
419
419
|
disabled: string;
|
|
420
420
|
};
|
|
421
421
|
};
|
|
422
|
-
lazy: {
|
|
423
|
-
type: import("vue").PropType<boolean>;
|
|
424
|
-
};
|
|
425
422
|
icon: {
|
|
426
423
|
type: import("vue").PropType<import("vft/es/vft").IconProps>;
|
|
427
424
|
};
|
|
425
|
+
lazy: {
|
|
426
|
+
type: import("vue").PropType<boolean>;
|
|
427
|
+
};
|
|
428
428
|
emptyText: {
|
|
429
429
|
type: import("vue").PropType<string>;
|
|
430
430
|
};
|
|
@@ -41,11 +41,11 @@ export declare const usePopper: (referenceElementRef: Ref<ReferenceElement>, pop
|
|
|
41
41
|
popperEscapeOffsets: import("@popperjs/core").SideObject;
|
|
42
42
|
};
|
|
43
43
|
offset?: {
|
|
44
|
-
|
|
45
|
-
bottom?: import("@popperjs/core").Offsets | undefined;
|
|
44
|
+
auto?: import("@popperjs/core").Offsets | undefined;
|
|
46
45
|
left?: import("@popperjs/core").Offsets | undefined;
|
|
47
46
|
right?: import("@popperjs/core").Offsets | undefined;
|
|
48
|
-
|
|
47
|
+
bottom?: import("@popperjs/core").Offsets | undefined;
|
|
48
|
+
top?: import("@popperjs/core").Offsets | undefined;
|
|
49
49
|
"auto-start"?: import("@popperjs/core").Offsets | undefined;
|
|
50
50
|
"auto-end"?: import("@popperjs/core").Offsets | undefined;
|
|
51
51
|
"top-start"?: import("@popperjs/core").Offsets | undefined;
|