vft 0.0.162 → 0.0.164
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/dist/index.css +1 -1
- package/es/components/button/use-button.js +3 -3
- package/es/components/carousel/carousel.vue.d.ts +1 -1
- package/es/components/carousel/carousel.vue2.js +22 -26
- package/es/components/carousel/index.d.ts +11 -11
- package/es/components/checkbox/index.d.ts +12 -12
- package/es/components/header-layout/header-layout.vue2.js +14 -14
- package/es/components/index.js +113 -113
- package/es/components/link/index.d.ts +4 -4
- package/es/components/popper/composables/use-content.d.ts +2 -2
- package/es/components/select/option-item.vue.d.ts +1 -1
- package/es/components/table/index.d.ts +114 -114
- package/es/components/table/table.vue.d.ts +13 -13
- package/es/components/time-select/time-select.vue.d.ts +1 -1
- package/es/components/tree/index.d.ts +42 -42
- package/es/components/tree/tree.vue.d.ts +7 -7
- package/es/components/upload/index.d.ts +19 -19
- package/es/components/upload/upload-content.vue.d.ts +1 -1
- package/es/components/upload/upload.vue.d.ts +1 -1
- package/es/hooks/use-popper/index.d.ts +2 -2
- package/es/index.js +113 -113
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/lib/components/button/use-button.cjs +1 -1
- package/lib/components/carousel/carousel.vue.d.ts +1 -1
- package/lib/components/carousel/carousel.vue2.cjs +1 -1
- package/lib/components/carousel/index.d.ts +11 -11
- package/lib/components/checkbox/index.d.ts +12 -12
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/index.cjs +1 -1
- package/lib/components/link/index.d.ts +4 -4
- package/lib/components/popper/composables/use-content.d.ts +2 -2
- package/lib/components/select/option-item.vue.d.ts +1 -1
- package/lib/components/table/index.d.ts +114 -114
- package/lib/components/table/table.vue.d.ts +13 -13
- package/lib/components/time-select/time-select.vue.d.ts +1 -1
- package/lib/components/tree/index.d.ts +42 -42
- package/lib/components/tree/tree.vue.d.ts +7 -7
- package/lib/components/upload/index.d.ts +19 -19
- package/lib/components/upload/upload-content.vue.d.ts +1 -1
- package/lib/components/upload/upload.vue.d.ts +1 -1
- package/lib/hooks/use-popper/index.d.ts +2 -2
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/package.json +6 -6
- package/theme-style/index.css +1 -1
- package/theme-style/src/header-layout.scss +4 -0
- package/theme-style/vft-header-layout.css +1 -1
- package/web-types.json +1 -1
|
@@ -80,25 +80,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
80
80
|
type: globalThis.PropType<number>;
|
|
81
81
|
default: number;
|
|
82
82
|
};
|
|
83
|
-
showHeader: {
|
|
84
|
-
type: globalThis.PropType<boolean>;
|
|
85
|
-
default: boolean;
|
|
86
|
-
};
|
|
87
|
-
showFooter: {
|
|
88
|
-
type: globalThis.PropType<boolean>;
|
|
89
|
-
};
|
|
90
|
-
animat: {
|
|
91
|
-
type: globalThis.PropType<boolean>;
|
|
92
|
-
};
|
|
93
|
-
validConfig: {
|
|
94
|
-
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ValidConfig>;
|
|
95
|
-
};
|
|
96
|
-
tooltipConfig: {
|
|
97
|
-
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<import("vxe-table").VxeTableDataRow>>;
|
|
98
|
-
};
|
|
99
|
-
resizable: {
|
|
100
|
-
type: globalThis.PropType<boolean>;
|
|
101
|
-
};
|
|
102
83
|
stripe: {
|
|
103
84
|
type: globalThis.PropType<boolean>;
|
|
104
85
|
default: boolean;
|
|
@@ -110,6 +91,13 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
110
91
|
footerAlign: {
|
|
111
92
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.Align>;
|
|
112
93
|
};
|
|
94
|
+
showHeader: {
|
|
95
|
+
type: globalThis.PropType<boolean>;
|
|
96
|
+
default: boolean;
|
|
97
|
+
};
|
|
98
|
+
showFooter: {
|
|
99
|
+
type: globalThis.PropType<boolean>;
|
|
100
|
+
};
|
|
113
101
|
footerMethod: {
|
|
114
102
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.FooterMethod<import("vxe-table").VxeTableDataRow>>;
|
|
115
103
|
};
|
|
@@ -211,6 +199,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
211
199
|
checkboxConfig: {
|
|
212
200
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTableDataRow>>;
|
|
213
201
|
};
|
|
202
|
+
tooltipConfig: {
|
|
203
|
+
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<import("vxe-table").VxeTableDataRow>>;
|
|
204
|
+
};
|
|
214
205
|
exportConfig: {
|
|
215
206
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ExportConfig>;
|
|
216
207
|
};
|
|
@@ -247,6 +238,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
247
238
|
editConfig: {
|
|
248
239
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.EditConfig<import("vxe-table").VxeTableDataRow>>;
|
|
249
240
|
};
|
|
241
|
+
validConfig: {
|
|
242
|
+
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ValidConfig>;
|
|
243
|
+
};
|
|
250
244
|
editRules: {
|
|
251
245
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.EditRules<import("vxe-table").VxeTableDataRow>>;
|
|
252
246
|
};
|
|
@@ -259,6 +253,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
259
253
|
loadingConfig: {
|
|
260
254
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.LoadingConfig>;
|
|
261
255
|
};
|
|
256
|
+
resizable: {
|
|
257
|
+
type: globalThis.PropType<boolean>;
|
|
258
|
+
};
|
|
262
259
|
highlightCurrentRow: {
|
|
263
260
|
type: globalThis.PropType<boolean>;
|
|
264
261
|
};
|
|
@@ -277,6 +274,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
277
274
|
rowId: {
|
|
278
275
|
type: globalThis.PropType<string>;
|
|
279
276
|
};
|
|
277
|
+
animat: {
|
|
278
|
+
type: globalThis.PropType<boolean>;
|
|
279
|
+
};
|
|
280
280
|
delayHover: {
|
|
281
281
|
type: globalThis.PropType<number>;
|
|
282
282
|
};
|
|
@@ -355,7 +355,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
355
355
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
356
356
|
onRegister?: ((...args: any[]) => any) | undefined;
|
|
357
357
|
onZoom?: ((...args: any[]) => any) | undefined;
|
|
358
|
-
|
|
358
|
+
"onFetch-success"?: ((...args: any[]) => any) | undefined;
|
|
359
359
|
"onUpdate:data"?: ((...args: any[]) => any) | undefined;
|
|
360
360
|
"onKeydown-start"?: ((...args: any[]) => any) | undefined;
|
|
361
361
|
"onKeydown-end"?: ((...args: any[]) => any) | undefined;
|
|
@@ -391,6 +391,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
391
391
|
"onEdit-actived"?: ((...args: any[]) => any) | undefined;
|
|
392
392
|
"onEdit-disabled"?: ((...args: any[]) => any) | undefined;
|
|
393
393
|
"onValid-error"?: ((...args: any[]) => any) | undefined;
|
|
394
|
+
onCustom?: ((...args: any[]) => any) | undefined;
|
|
394
395
|
"onChange-fnr"?: ((...args: any[]) => any) | undefined;
|
|
395
396
|
"onOpen-fnr"?: ((...args: any[]) => any) | undefined;
|
|
396
397
|
"onFnr-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -416,10 +417,11 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
416
417
|
"onCell-area-arrows-end"?: ((...args: any[]) => any) | undefined;
|
|
417
418
|
"onActive-cell-change-start"?: ((...args: any[]) => any) | undefined;
|
|
418
419
|
"onActive-cell-change-end"?: ((...args: any[]) => any) | undefined;
|
|
419
|
-
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
420
420
|
"onForm-submit"?: ((...args: any[]) => any) | undefined;
|
|
421
|
-
"onForm-submit-invalid"?: ((...args: any[]) => any) | undefined;
|
|
422
421
|
"onForm-reset"?: ((...args: any[]) => any) | undefined;
|
|
422
|
+
"onUpdate:page-num"?: ((...args: any[]) => any) | undefined;
|
|
423
|
+
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
424
|
+
"onForm-submit-invalid"?: ((...args: any[]) => any) | undefined;
|
|
423
425
|
"onForm-collapse"?: ((...args: any[]) => any) | undefined;
|
|
424
426
|
"onForm-toggle-collapse"?: ((...args: any[]) => any) | undefined;
|
|
425
427
|
"onProxy-query"?: ((...args: any[]) => any) | undefined;
|
|
@@ -427,11 +429,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
427
429
|
"onProxy-save"?: ((...args: any[]) => any) | undefined;
|
|
428
430
|
"onToolbar-button-click"?: ((...args: any[]) => any) | undefined;
|
|
429
431
|
"onToolbar-tool-click"?: ((...args: any[]) => any) | undefined;
|
|
430
|
-
"onFetch-success"?: ((...args: any[]) => any) | undefined;
|
|
431
|
-
"onUpdate:page-num"?: ((...args: any[]) => any) | undefined;
|
|
432
432
|
}, {
|
|
433
433
|
setPagination: (info: Partial<import("vft/es/components/index.ts").PaginationProps>) => void;
|
|
434
|
-
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "
|
|
434
|
+
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "register" | "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;
|
|
435
435
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
436
436
|
reload: (opt?: any) => Promise<Recordable[] | undefined>;
|
|
437
437
|
getShowPagination: () => boolean;
|
|
@@ -456,7 +456,8 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
456
456
|
scroll: (...args: any[]) => void;
|
|
457
457
|
"update:page-size": (...args: any[]) => void;
|
|
458
458
|
"current-change": (...args: any[]) => void;
|
|
459
|
-
|
|
459
|
+
register: (...args: any[]) => void;
|
|
460
|
+
"fetch-success": (...args: any[]) => void;
|
|
460
461
|
"update:data": (...args: any[]) => void;
|
|
461
462
|
"keydown-start": (...args: any[]) => void;
|
|
462
463
|
"keydown-end": (...args: any[]) => void;
|
|
@@ -492,6 +493,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
492
493
|
"edit-actived": (...args: any[]) => void;
|
|
493
494
|
"edit-disabled": (...args: any[]) => void;
|
|
494
495
|
"valid-error": (...args: any[]) => void;
|
|
496
|
+
custom: (...args: any[]) => void;
|
|
495
497
|
"change-fnr": (...args: any[]) => void;
|
|
496
498
|
"open-fnr": (...args: any[]) => void;
|
|
497
499
|
"fnr-change": (...args: any[]) => void;
|
|
@@ -517,10 +519,11 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
517
519
|
"cell-area-arrows-end": (...args: any[]) => void;
|
|
518
520
|
"active-cell-change-start": (...args: any[]) => void;
|
|
519
521
|
"active-cell-change-end": (...args: any[]) => void;
|
|
520
|
-
"page-change": (...args: any[]) => void;
|
|
521
522
|
"form-submit": (...args: any[]) => void;
|
|
522
|
-
"form-submit-invalid": (...args: any[]) => void;
|
|
523
523
|
"form-reset": (...args: any[]) => void;
|
|
524
|
+
"update:page-num": (...args: any[]) => void;
|
|
525
|
+
"page-change": (...args: any[]) => void;
|
|
526
|
+
"form-submit-invalid": (...args: any[]) => void;
|
|
524
527
|
"form-collapse": (...args: any[]) => void;
|
|
525
528
|
"form-toggle-collapse": (...args: any[]) => void;
|
|
526
529
|
"proxy-query": (...args: any[]) => void;
|
|
@@ -528,9 +531,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
528
531
|
"proxy-save": (...args: any[]) => void;
|
|
529
532
|
"toolbar-button-click": (...args: any[]) => void;
|
|
530
533
|
"toolbar-tool-click": (...args: any[]) => void;
|
|
531
|
-
register: (...args: any[]) => void;
|
|
532
|
-
"fetch-success": (...args: any[]) => void;
|
|
533
|
-
"update:page-num": (...args: any[]) => void;
|
|
534
534
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
535
535
|
data: {
|
|
536
536
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.Data<import("vxe-table").VxeTableDataRow>>;
|
|
@@ -612,25 +612,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
612
612
|
type: globalThis.PropType<number>;
|
|
613
613
|
default: number;
|
|
614
614
|
};
|
|
615
|
-
showHeader: {
|
|
616
|
-
type: globalThis.PropType<boolean>;
|
|
617
|
-
default: boolean;
|
|
618
|
-
};
|
|
619
|
-
showFooter: {
|
|
620
|
-
type: globalThis.PropType<boolean>;
|
|
621
|
-
};
|
|
622
|
-
animat: {
|
|
623
|
-
type: globalThis.PropType<boolean>;
|
|
624
|
-
};
|
|
625
|
-
validConfig: {
|
|
626
|
-
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ValidConfig>;
|
|
627
|
-
};
|
|
628
|
-
tooltipConfig: {
|
|
629
|
-
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<import("vxe-table").VxeTableDataRow>>;
|
|
630
|
-
};
|
|
631
|
-
resizable: {
|
|
632
|
-
type: globalThis.PropType<boolean>;
|
|
633
|
-
};
|
|
634
615
|
stripe: {
|
|
635
616
|
type: globalThis.PropType<boolean>;
|
|
636
617
|
default: boolean;
|
|
@@ -642,6 +623,13 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
642
623
|
footerAlign: {
|
|
643
624
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.Align>;
|
|
644
625
|
};
|
|
626
|
+
showHeader: {
|
|
627
|
+
type: globalThis.PropType<boolean>;
|
|
628
|
+
default: boolean;
|
|
629
|
+
};
|
|
630
|
+
showFooter: {
|
|
631
|
+
type: globalThis.PropType<boolean>;
|
|
632
|
+
};
|
|
645
633
|
footerMethod: {
|
|
646
634
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.FooterMethod<import("vxe-table").VxeTableDataRow>>;
|
|
647
635
|
};
|
|
@@ -743,6 +731,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
743
731
|
checkboxConfig: {
|
|
744
732
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTableDataRow>>;
|
|
745
733
|
};
|
|
734
|
+
tooltipConfig: {
|
|
735
|
+
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<import("vxe-table").VxeTableDataRow>>;
|
|
736
|
+
};
|
|
746
737
|
exportConfig: {
|
|
747
738
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ExportConfig>;
|
|
748
739
|
};
|
|
@@ -779,6 +770,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
779
770
|
editConfig: {
|
|
780
771
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.EditConfig<import("vxe-table").VxeTableDataRow>>;
|
|
781
772
|
};
|
|
773
|
+
validConfig: {
|
|
774
|
+
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ValidConfig>;
|
|
775
|
+
};
|
|
782
776
|
editRules: {
|
|
783
777
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.EditRules<import("vxe-table").VxeTableDataRow>>;
|
|
784
778
|
};
|
|
@@ -791,6 +785,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
791
785
|
loadingConfig: {
|
|
792
786
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.LoadingConfig>;
|
|
793
787
|
};
|
|
788
|
+
resizable: {
|
|
789
|
+
type: globalThis.PropType<boolean>;
|
|
790
|
+
};
|
|
794
791
|
highlightCurrentRow: {
|
|
795
792
|
type: globalThis.PropType<boolean>;
|
|
796
793
|
};
|
|
@@ -809,6 +806,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
809
806
|
rowId: {
|
|
810
807
|
type: globalThis.PropType<string>;
|
|
811
808
|
};
|
|
809
|
+
animat: {
|
|
810
|
+
type: globalThis.PropType<boolean>;
|
|
811
|
+
};
|
|
812
812
|
delayHover: {
|
|
813
813
|
type: globalThis.PropType<number>;
|
|
814
814
|
};
|
|
@@ -887,7 +887,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
887
887
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
888
888
|
onRegister?: ((...args: any[]) => any) | undefined;
|
|
889
889
|
onZoom?: ((...args: any[]) => any) | undefined;
|
|
890
|
-
|
|
890
|
+
"onFetch-success"?: ((...args: any[]) => any) | undefined;
|
|
891
891
|
"onUpdate:data"?: ((...args: any[]) => any) | undefined;
|
|
892
892
|
"onKeydown-start"?: ((...args: any[]) => any) | undefined;
|
|
893
893
|
"onKeydown-end"?: ((...args: any[]) => any) | undefined;
|
|
@@ -923,6 +923,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
923
923
|
"onEdit-actived"?: ((...args: any[]) => any) | undefined;
|
|
924
924
|
"onEdit-disabled"?: ((...args: any[]) => any) | undefined;
|
|
925
925
|
"onValid-error"?: ((...args: any[]) => any) | undefined;
|
|
926
|
+
onCustom?: ((...args: any[]) => any) | undefined;
|
|
926
927
|
"onChange-fnr"?: ((...args: any[]) => any) | undefined;
|
|
927
928
|
"onOpen-fnr"?: ((...args: any[]) => any) | undefined;
|
|
928
929
|
"onFnr-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -948,10 +949,11 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
948
949
|
"onCell-area-arrows-end"?: ((...args: any[]) => any) | undefined;
|
|
949
950
|
"onActive-cell-change-start"?: ((...args: any[]) => any) | undefined;
|
|
950
951
|
"onActive-cell-change-end"?: ((...args: any[]) => any) | undefined;
|
|
951
|
-
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
952
952
|
"onForm-submit"?: ((...args: any[]) => any) | undefined;
|
|
953
|
-
"onForm-submit-invalid"?: ((...args: any[]) => any) | undefined;
|
|
954
953
|
"onForm-reset"?: ((...args: any[]) => any) | undefined;
|
|
954
|
+
"onUpdate:page-num"?: ((...args: any[]) => any) | undefined;
|
|
955
|
+
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
956
|
+
"onForm-submit-invalid"?: ((...args: any[]) => any) | undefined;
|
|
955
957
|
"onForm-collapse"?: ((...args: any[]) => any) | undefined;
|
|
956
958
|
"onForm-toggle-collapse"?: ((...args: any[]) => any) | undefined;
|
|
957
959
|
"onProxy-query"?: ((...args: any[]) => any) | undefined;
|
|
@@ -959,8 +961,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
959
961
|
"onProxy-save"?: ((...args: any[]) => any) | undefined;
|
|
960
962
|
"onToolbar-button-click"?: ((...args: any[]) => any) | undefined;
|
|
961
963
|
"onToolbar-tool-click"?: ((...args: any[]) => any) | undefined;
|
|
962
|
-
"onFetch-success"?: ((...args: any[]) => any) | undefined;
|
|
963
|
-
"onUpdate:page-num"?: ((...args: any[]) => any) | undefined;
|
|
964
964
|
}, {
|
|
965
965
|
border: import("vxe-table").VxeTablePropTypes.Border;
|
|
966
966
|
immediate: boolean;
|
|
@@ -968,9 +968,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
968
968
|
loading: boolean;
|
|
969
969
|
autoResize: boolean;
|
|
970
970
|
pageSize: number;
|
|
971
|
-
showHeader: boolean;
|
|
972
971
|
stripe: boolean;
|
|
973
972
|
headerAlign: import("vxe-table").VxeTablePropTypes.Align;
|
|
973
|
+
showHeader: boolean;
|
|
974
974
|
columnConfig: import("vxe-table").VxeTablePropTypes.ColumnConfig;
|
|
975
975
|
rowConfig: import("vxe-table").VxeTablePropTypes.RowConfig;
|
|
976
976
|
pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig;
|
|
@@ -1068,25 +1068,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1068
1068
|
type: globalThis.PropType<number>;
|
|
1069
1069
|
default: number;
|
|
1070
1070
|
};
|
|
1071
|
-
showHeader: {
|
|
1072
|
-
type: globalThis.PropType<boolean>;
|
|
1073
|
-
default: boolean;
|
|
1074
|
-
};
|
|
1075
|
-
showFooter: {
|
|
1076
|
-
type: globalThis.PropType<boolean>;
|
|
1077
|
-
};
|
|
1078
|
-
animat: {
|
|
1079
|
-
type: globalThis.PropType<boolean>;
|
|
1080
|
-
};
|
|
1081
|
-
validConfig: {
|
|
1082
|
-
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ValidConfig>;
|
|
1083
|
-
};
|
|
1084
|
-
tooltipConfig: {
|
|
1085
|
-
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<import("vxe-table").VxeTableDataRow>>;
|
|
1086
|
-
};
|
|
1087
|
-
resizable: {
|
|
1088
|
-
type: globalThis.PropType<boolean>;
|
|
1089
|
-
};
|
|
1090
1071
|
stripe: {
|
|
1091
1072
|
type: globalThis.PropType<boolean>;
|
|
1092
1073
|
default: boolean;
|
|
@@ -1098,6 +1079,13 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1098
1079
|
footerAlign: {
|
|
1099
1080
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.Align>;
|
|
1100
1081
|
};
|
|
1082
|
+
showHeader: {
|
|
1083
|
+
type: globalThis.PropType<boolean>;
|
|
1084
|
+
default: boolean;
|
|
1085
|
+
};
|
|
1086
|
+
showFooter: {
|
|
1087
|
+
type: globalThis.PropType<boolean>;
|
|
1088
|
+
};
|
|
1101
1089
|
footerMethod: {
|
|
1102
1090
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.FooterMethod<import("vxe-table").VxeTableDataRow>>;
|
|
1103
1091
|
};
|
|
@@ -1199,6 +1187,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1199
1187
|
checkboxConfig: {
|
|
1200
1188
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTableDataRow>>;
|
|
1201
1189
|
};
|
|
1190
|
+
tooltipConfig: {
|
|
1191
|
+
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<import("vxe-table").VxeTableDataRow>>;
|
|
1192
|
+
};
|
|
1202
1193
|
exportConfig: {
|
|
1203
1194
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ExportConfig>;
|
|
1204
1195
|
};
|
|
@@ -1235,6 +1226,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1235
1226
|
editConfig: {
|
|
1236
1227
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.EditConfig<import("vxe-table").VxeTableDataRow>>;
|
|
1237
1228
|
};
|
|
1229
|
+
validConfig: {
|
|
1230
|
+
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ValidConfig>;
|
|
1231
|
+
};
|
|
1238
1232
|
editRules: {
|
|
1239
1233
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.EditRules<import("vxe-table").VxeTableDataRow>>;
|
|
1240
1234
|
};
|
|
@@ -1247,6 +1241,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1247
1241
|
loadingConfig: {
|
|
1248
1242
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.LoadingConfig>;
|
|
1249
1243
|
};
|
|
1244
|
+
resizable: {
|
|
1245
|
+
type: globalThis.PropType<boolean>;
|
|
1246
|
+
};
|
|
1250
1247
|
highlightCurrentRow: {
|
|
1251
1248
|
type: globalThis.PropType<boolean>;
|
|
1252
1249
|
};
|
|
@@ -1265,6 +1262,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1265
1262
|
rowId: {
|
|
1266
1263
|
type: globalThis.PropType<string>;
|
|
1267
1264
|
};
|
|
1265
|
+
animat: {
|
|
1266
|
+
type: globalThis.PropType<boolean>;
|
|
1267
|
+
};
|
|
1268
1268
|
delayHover: {
|
|
1269
1269
|
type: globalThis.PropType<number>;
|
|
1270
1270
|
};
|
|
@@ -1343,7 +1343,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1343
1343
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
1344
1344
|
onRegister?: ((...args: any[]) => any) | undefined;
|
|
1345
1345
|
onZoom?: ((...args: any[]) => any) | undefined;
|
|
1346
|
-
|
|
1346
|
+
"onFetch-success"?: ((...args: any[]) => any) | undefined;
|
|
1347
1347
|
"onUpdate:data"?: ((...args: any[]) => any) | undefined;
|
|
1348
1348
|
"onKeydown-start"?: ((...args: any[]) => any) | undefined;
|
|
1349
1349
|
"onKeydown-end"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1379,6 +1379,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1379
1379
|
"onEdit-actived"?: ((...args: any[]) => any) | undefined;
|
|
1380
1380
|
"onEdit-disabled"?: ((...args: any[]) => any) | undefined;
|
|
1381
1381
|
"onValid-error"?: ((...args: any[]) => any) | undefined;
|
|
1382
|
+
onCustom?: ((...args: any[]) => any) | undefined;
|
|
1382
1383
|
"onChange-fnr"?: ((...args: any[]) => any) | undefined;
|
|
1383
1384
|
"onOpen-fnr"?: ((...args: any[]) => any) | undefined;
|
|
1384
1385
|
"onFnr-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1404,10 +1405,11 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1404
1405
|
"onCell-area-arrows-end"?: ((...args: any[]) => any) | undefined;
|
|
1405
1406
|
"onActive-cell-change-start"?: ((...args: any[]) => any) | undefined;
|
|
1406
1407
|
"onActive-cell-change-end"?: ((...args: any[]) => any) | undefined;
|
|
1407
|
-
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
1408
1408
|
"onForm-submit"?: ((...args: any[]) => any) | undefined;
|
|
1409
|
-
"onForm-submit-invalid"?: ((...args: any[]) => any) | undefined;
|
|
1410
1409
|
"onForm-reset"?: ((...args: any[]) => any) | undefined;
|
|
1410
|
+
"onUpdate:page-num"?: ((...args: any[]) => any) | undefined;
|
|
1411
|
+
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
1412
|
+
"onForm-submit-invalid"?: ((...args: any[]) => any) | undefined;
|
|
1411
1413
|
"onForm-collapse"?: ((...args: any[]) => any) | undefined;
|
|
1412
1414
|
"onForm-toggle-collapse"?: ((...args: any[]) => any) | undefined;
|
|
1413
1415
|
"onProxy-query"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1415,11 +1417,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1415
1417
|
"onProxy-save"?: ((...args: any[]) => any) | undefined;
|
|
1416
1418
|
"onToolbar-button-click"?: ((...args: any[]) => any) | undefined;
|
|
1417
1419
|
"onToolbar-tool-click"?: ((...args: any[]) => any) | undefined;
|
|
1418
|
-
"onFetch-success"?: ((...args: any[]) => any) | undefined;
|
|
1419
|
-
"onUpdate:page-num"?: ((...args: any[]) => any) | undefined;
|
|
1420
1420
|
}, {
|
|
1421
1421
|
setPagination: (info: Partial<import("vft/es/components/index.ts").PaginationProps>) => void;
|
|
1422
|
-
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "
|
|
1422
|
+
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "register" | "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;
|
|
1423
1423
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
1424
1424
|
reload: (opt?: any) => Promise<Recordable[] | undefined>;
|
|
1425
1425
|
getShowPagination: () => boolean;
|
|
@@ -1441,9 +1441,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1441
1441
|
loading: boolean;
|
|
1442
1442
|
autoResize: boolean;
|
|
1443
1443
|
pageSize: number;
|
|
1444
|
-
showHeader: boolean;
|
|
1445
1444
|
stripe: boolean;
|
|
1446
1445
|
headerAlign: import("vxe-table").VxeTablePropTypes.Align;
|
|
1446
|
+
showHeader: boolean;
|
|
1447
1447
|
columnConfig: import("vxe-table").VxeTablePropTypes.ColumnConfig;
|
|
1448
1448
|
rowConfig: import("vxe-table").VxeTablePropTypes.RowConfig;
|
|
1449
1449
|
pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig;
|
|
@@ -1538,25 +1538,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1538
1538
|
type: globalThis.PropType<number>;
|
|
1539
1539
|
default: number;
|
|
1540
1540
|
};
|
|
1541
|
-
showHeader: {
|
|
1542
|
-
type: globalThis.PropType<boolean>;
|
|
1543
|
-
default: boolean;
|
|
1544
|
-
};
|
|
1545
|
-
showFooter: {
|
|
1546
|
-
type: globalThis.PropType<boolean>;
|
|
1547
|
-
};
|
|
1548
|
-
animat: {
|
|
1549
|
-
type: globalThis.PropType<boolean>;
|
|
1550
|
-
};
|
|
1551
|
-
validConfig: {
|
|
1552
|
-
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ValidConfig>;
|
|
1553
|
-
};
|
|
1554
|
-
tooltipConfig: {
|
|
1555
|
-
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<import("vxe-table").VxeTableDataRow>>;
|
|
1556
|
-
};
|
|
1557
|
-
resizable: {
|
|
1558
|
-
type: globalThis.PropType<boolean>;
|
|
1559
|
-
};
|
|
1560
1541
|
stripe: {
|
|
1561
1542
|
type: globalThis.PropType<boolean>;
|
|
1562
1543
|
default: boolean;
|
|
@@ -1568,6 +1549,13 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1568
1549
|
footerAlign: {
|
|
1569
1550
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.Align>;
|
|
1570
1551
|
};
|
|
1552
|
+
showHeader: {
|
|
1553
|
+
type: globalThis.PropType<boolean>;
|
|
1554
|
+
default: boolean;
|
|
1555
|
+
};
|
|
1556
|
+
showFooter: {
|
|
1557
|
+
type: globalThis.PropType<boolean>;
|
|
1558
|
+
};
|
|
1571
1559
|
footerMethod: {
|
|
1572
1560
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.FooterMethod<import("vxe-table").VxeTableDataRow>>;
|
|
1573
1561
|
};
|
|
@@ -1669,6 +1657,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1669
1657
|
checkboxConfig: {
|
|
1670
1658
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTableDataRow>>;
|
|
1671
1659
|
};
|
|
1660
|
+
tooltipConfig: {
|
|
1661
|
+
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<import("vxe-table").VxeTableDataRow>>;
|
|
1662
|
+
};
|
|
1672
1663
|
exportConfig: {
|
|
1673
1664
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ExportConfig>;
|
|
1674
1665
|
};
|
|
@@ -1705,6 +1696,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1705
1696
|
editConfig: {
|
|
1706
1697
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.EditConfig<import("vxe-table").VxeTableDataRow>>;
|
|
1707
1698
|
};
|
|
1699
|
+
validConfig: {
|
|
1700
|
+
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.ValidConfig>;
|
|
1701
|
+
};
|
|
1708
1702
|
editRules: {
|
|
1709
1703
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.EditRules<import("vxe-table").VxeTableDataRow>>;
|
|
1710
1704
|
};
|
|
@@ -1717,6 +1711,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1717
1711
|
loadingConfig: {
|
|
1718
1712
|
type: globalThis.PropType<import("vxe-table").VxeTablePropTypes.LoadingConfig>;
|
|
1719
1713
|
};
|
|
1714
|
+
resizable: {
|
|
1715
|
+
type: globalThis.PropType<boolean>;
|
|
1716
|
+
};
|
|
1720
1717
|
highlightCurrentRow: {
|
|
1721
1718
|
type: globalThis.PropType<boolean>;
|
|
1722
1719
|
};
|
|
@@ -1735,6 +1732,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1735
1732
|
rowId: {
|
|
1736
1733
|
type: globalThis.PropType<string>;
|
|
1737
1734
|
};
|
|
1735
|
+
animat: {
|
|
1736
|
+
type: globalThis.PropType<boolean>;
|
|
1737
|
+
};
|
|
1738
1738
|
delayHover: {
|
|
1739
1739
|
type: globalThis.PropType<number>;
|
|
1740
1740
|
};
|
|
@@ -1813,7 +1813,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1813
1813
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
1814
1814
|
onRegister?: ((...args: any[]) => any) | undefined;
|
|
1815
1815
|
onZoom?: ((...args: any[]) => any) | undefined;
|
|
1816
|
-
|
|
1816
|
+
"onFetch-success"?: ((...args: any[]) => any) | undefined;
|
|
1817
1817
|
"onUpdate:data"?: ((...args: any[]) => any) | undefined;
|
|
1818
1818
|
"onKeydown-start"?: ((...args: any[]) => any) | undefined;
|
|
1819
1819
|
"onKeydown-end"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1849,6 +1849,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1849
1849
|
"onEdit-actived"?: ((...args: any[]) => any) | undefined;
|
|
1850
1850
|
"onEdit-disabled"?: ((...args: any[]) => any) | undefined;
|
|
1851
1851
|
"onValid-error"?: ((...args: any[]) => any) | undefined;
|
|
1852
|
+
onCustom?: ((...args: any[]) => any) | undefined;
|
|
1852
1853
|
"onChange-fnr"?: ((...args: any[]) => any) | undefined;
|
|
1853
1854
|
"onOpen-fnr"?: ((...args: any[]) => any) | undefined;
|
|
1854
1855
|
"onFnr-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1874,10 +1875,11 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1874
1875
|
"onCell-area-arrows-end"?: ((...args: any[]) => any) | undefined;
|
|
1875
1876
|
"onActive-cell-change-start"?: ((...args: any[]) => any) | undefined;
|
|
1876
1877
|
"onActive-cell-change-end"?: ((...args: any[]) => any) | undefined;
|
|
1877
|
-
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
1878
1878
|
"onForm-submit"?: ((...args: any[]) => any) | undefined;
|
|
1879
|
-
"onForm-submit-invalid"?: ((...args: any[]) => any) | undefined;
|
|
1880
1879
|
"onForm-reset"?: ((...args: any[]) => any) | undefined;
|
|
1880
|
+
"onUpdate:page-num"?: ((...args: any[]) => any) | undefined;
|
|
1881
|
+
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
1882
|
+
"onForm-submit-invalid"?: ((...args: any[]) => any) | undefined;
|
|
1881
1883
|
"onForm-collapse"?: ((...args: any[]) => any) | undefined;
|
|
1882
1884
|
"onForm-toggle-collapse"?: ((...args: any[]) => any) | undefined;
|
|
1883
1885
|
"onProxy-query"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1885,11 +1887,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1885
1887
|
"onProxy-save"?: ((...args: any[]) => any) | undefined;
|
|
1886
1888
|
"onToolbar-button-click"?: ((...args: any[]) => any) | undefined;
|
|
1887
1889
|
"onToolbar-tool-click"?: ((...args: any[]) => any) | undefined;
|
|
1888
|
-
"onFetch-success"?: ((...args: any[]) => any) | undefined;
|
|
1889
|
-
"onUpdate:page-num"?: ((...args: any[]) => any) | undefined;
|
|
1890
1890
|
}, {
|
|
1891
1891
|
setPagination: (info: Partial<import("vft/es/components/index.ts").PaginationProps>) => void;
|
|
1892
|
-
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "
|
|
1892
|
+
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "register" | "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;
|
|
1893
1893
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
1894
1894
|
reload: (opt?: any) => Promise<Recordable[] | undefined>;
|
|
1895
1895
|
getShowPagination: () => boolean;
|
|
@@ -1914,7 +1914,8 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1914
1914
|
scroll: (...args: any[]) => void;
|
|
1915
1915
|
"update:page-size": (...args: any[]) => void;
|
|
1916
1916
|
"current-change": (...args: any[]) => void;
|
|
1917
|
-
|
|
1917
|
+
register: (...args: any[]) => void;
|
|
1918
|
+
"fetch-success": (...args: any[]) => void;
|
|
1918
1919
|
"update:data": (...args: any[]) => void;
|
|
1919
1920
|
"keydown-start": (...args: any[]) => void;
|
|
1920
1921
|
"keydown-end": (...args: any[]) => void;
|
|
@@ -1950,6 +1951,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1950
1951
|
"edit-actived": (...args: any[]) => void;
|
|
1951
1952
|
"edit-disabled": (...args: any[]) => void;
|
|
1952
1953
|
"valid-error": (...args: any[]) => void;
|
|
1954
|
+
custom: (...args: any[]) => void;
|
|
1953
1955
|
"change-fnr": (...args: any[]) => void;
|
|
1954
1956
|
"open-fnr": (...args: any[]) => void;
|
|
1955
1957
|
"fnr-change": (...args: any[]) => void;
|
|
@@ -1975,10 +1977,11 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1975
1977
|
"cell-area-arrows-end": (...args: any[]) => void;
|
|
1976
1978
|
"active-cell-change-start": (...args: any[]) => void;
|
|
1977
1979
|
"active-cell-change-end": (...args: any[]) => void;
|
|
1978
|
-
"page-change": (...args: any[]) => void;
|
|
1979
1980
|
"form-submit": (...args: any[]) => void;
|
|
1980
|
-
"form-submit-invalid": (...args: any[]) => void;
|
|
1981
1981
|
"form-reset": (...args: any[]) => void;
|
|
1982
|
+
"update:page-num": (...args: any[]) => void;
|
|
1983
|
+
"page-change": (...args: any[]) => void;
|
|
1984
|
+
"form-submit-invalid": (...args: any[]) => void;
|
|
1982
1985
|
"form-collapse": (...args: any[]) => void;
|
|
1983
1986
|
"form-toggle-collapse": (...args: any[]) => void;
|
|
1984
1987
|
"proxy-query": (...args: any[]) => void;
|
|
@@ -1986,9 +1989,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1986
1989
|
"proxy-save": (...args: any[]) => void;
|
|
1987
1990
|
"toolbar-button-click": (...args: any[]) => void;
|
|
1988
1991
|
"toolbar-tool-click": (...args: any[]) => void;
|
|
1989
|
-
register: (...args: any[]) => void;
|
|
1990
|
-
"fetch-success": (...args: any[]) => void;
|
|
1991
|
-
"update:page-num": (...args: any[]) => void;
|
|
1992
1992
|
}, string, {
|
|
1993
1993
|
border: import("vxe-table").VxeTablePropTypes.Border;
|
|
1994
1994
|
immediate: boolean;
|
|
@@ -1996,9 +1996,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1996
1996
|
loading: boolean;
|
|
1997
1997
|
autoResize: boolean;
|
|
1998
1998
|
pageSize: number;
|
|
1999
|
-
showHeader: boolean;
|
|
2000
1999
|
stripe: boolean;
|
|
2001
2000
|
headerAlign: import("vxe-table").VxeTablePropTypes.Align;
|
|
2001
|
+
showHeader: boolean;
|
|
2002
2002
|
columnConfig: import("vxe-table").VxeTablePropTypes.ColumnConfig;
|
|
2003
2003
|
rowConfig: import("vxe-table").VxeTablePropTypes.RowConfig;
|
|
2004
2004
|
pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig;
|