@dazhicheng/ui 1.5.4 → 1.5.5

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.
Files changed (42) hide show
  1. package/dist/components/tt-button/index.d.ts +476 -476
  2. package/dist/components/tt-button/index.vue.d.ts +272 -272
  3. package/dist/components/tt-checkbox/index.d.ts +5 -5
  4. package/dist/components/tt-checkbox/index.vue.d.ts +2 -2
  5. package/dist/components/tt-drawer/index.d.ts +540 -540
  6. package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +297 -297
  7. package/dist/components/tt-form/src/form/RenderContent.vue.d.ts +2 -2
  8. package/dist/components/tt-form/src/form-render/dependencies.d.ts +118 -118
  9. package/dist/components/tt-form-item-error-tooltip/index.d.ts +196 -196
  10. package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +98 -98
  11. package/dist/components/tt-icon/index.d.ts +3 -3
  12. package/dist/components/tt-icon/index.vue.d.ts +1 -1
  13. package/dist/components/tt-image/index.d.ts +5 -5
  14. package/dist/components/tt-image/src/components/ImageViewer.d.ts +2 -2
  15. package/dist/components/tt-image/tt-image.d.ts +5 -5
  16. package/dist/components/tt-loading/index.d.ts +3 -3
  17. package/dist/components/tt-loading/src/loading.vue.d.ts +3 -3
  18. package/dist/components/tt-modal/index.d.ts +184 -184
  19. package/dist/components/tt-modal/src/RenderModal.vue.d.ts +101 -101
  20. package/dist/components/tt-modal/src/components/ModalWrapper.vue.d.ts +10 -10
  21. package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +33 -33
  22. package/dist/components/tt-part/index.d.ts +12 -12
  23. package/dist/components/tt-part/index.vue.d.ts +4 -4
  24. package/dist/components/tt-select/src/Select.vue.d.ts +89 -89
  25. package/dist/components/tt-select/src/components/SelectTable.vue.d.ts +7 -7
  26. package/dist/components/tt-select/src/components/Table.vue.d.ts +9 -9
  27. package/dist/components/tt-table/src/Table.vue.d.ts +175 -175
  28. package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +194 -194
  29. package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +128 -128
  30. package/dist/components/tt-table/src/hooks/usePagination.d.ts +2 -2
  31. package/dist/components/tt-table/src/props.d.ts +2 -2
  32. package/dist/components/tt-text/index.d.ts +3 -3
  33. package/dist/components/tt-text/index.vue.d.ts +1 -1
  34. package/dist/components/tt-validate/src/Field.d.ts +4 -4
  35. package/dist/components/tt-validate/src/Form.d.ts +1 -1
  36. package/dist/components/tt-validate/src/utils/assertions.d.ts +1 -1
  37. package/dist/index.js +484 -477
  38. package/dist/style.css +1 -1
  39. package/package.json +3 -3
  40. package/dist/components/tt-form-adapter/component/index.d.ts +0 -13
  41. package/dist/components/tt-form-adapter/index.d.ts +0 -36
  42. package/dist/components/tt-table/src/hooks/useCache.d.ts +0 -20
@@ -43,28 +43,28 @@ declare function __VLS_template(): {
43
43
  viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
44
44
  }> & Omit<{
45
45
  readonly height: number | string;
46
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
46
47
  readonly maxHeight: number | string;
47
48
  readonly distance: number;
48
49
  readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
49
50
  readonly wrapClass: string | string[];
50
51
  readonly viewClass: string | string[];
51
52
  readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
52
- readonly tag: keyof HTMLElementTagNameMap | (string & {});
53
53
  readonly minSize: number;
54
54
  readonly id?: string | undefined;
55
55
  readonly ariaLabel?: string | undefined;
56
56
  readonly role?: string | undefined;
57
+ readonly tabindex?: number | string | undefined;
57
58
  readonly native?: boolean | undefined;
58
59
  readonly noresize?: boolean | undefined;
59
60
  readonly always?: boolean | undefined;
60
- readonly tabindex?: number | string | undefined;
61
61
  readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
62
62
  onScroll?: ((args_0: {
63
63
  scrollTop: number;
64
64
  scrollLeft: number;
65
65
  }) => any) | undefined | undefined;
66
66
  "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
67
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
67
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "tabindex" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
68
68
  $attrs: {
69
69
  [x: string]: unknown;
70
70
  };
@@ -86,19 +86,27 @@ declare function __VLS_template(): {
86
86
  id: {
87
87
  type: import('vue').PropType<string>;
88
88
  };
89
+ ariaLabel: {
90
+ type: import('vue').PropType<string>;
91
+ };
92
+ role: {
93
+ type: import('vue').PropType<string>;
94
+ };
89
95
  height: {
90
96
  type: import('vue').PropType<string | number>;
91
97
  default: string;
92
98
  };
93
- maxHeight: {
94
- type: import('vue').PropType<string | number>;
99
+ tag: {
100
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
95
101
  default: string;
96
102
  };
97
- ariaLabel: {
98
- type: import('vue').PropType<string>;
103
+ tabindex: {
104
+ type: import('vue').PropType<string | number>;
105
+ default: undefined;
99
106
  };
100
- role: {
101
- type: import('vue').PropType<string>;
107
+ maxHeight: {
108
+ type: import('vue').PropType<string | number>;
109
+ default: string;
102
110
  };
103
111
  distance: {
104
112
  type: import('vue').PropType<number>;
@@ -126,10 +134,6 @@ declare function __VLS_template(): {
126
134
  noresize: {
127
135
  type: import('vue').PropType<boolean>;
128
136
  };
129
- tag: {
130
- type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
131
- default: string;
132
- };
133
137
  always: {
134
138
  type: import('vue').PropType<boolean>;
135
139
  };
@@ -137,10 +141,6 @@ declare function __VLS_template(): {
137
141
  type: import('vue').PropType<number>;
138
142
  default: number;
139
143
  };
140
- tabindex: {
141
- type: import('vue').PropType<string | number>;
142
- default: undefined;
143
- };
144
144
  ariaOrientation: {
145
145
  type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
146
146
  };
@@ -212,19 +212,27 @@ declare function __VLS_template(): {
212
212
  id: {
213
213
  type: import('vue').PropType<string>;
214
214
  };
215
+ ariaLabel: {
216
+ type: import('vue').PropType<string>;
217
+ };
218
+ role: {
219
+ type: import('vue').PropType<string>;
220
+ };
215
221
  height: {
216
222
  type: import('vue').PropType<string | number>;
217
223
  default: string;
218
224
  };
219
- maxHeight: {
220
- type: import('vue').PropType<string | number>;
225
+ tag: {
226
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
221
227
  default: string;
222
228
  };
223
- ariaLabel: {
224
- type: import('vue').PropType<string>;
229
+ tabindex: {
230
+ type: import('vue').PropType<string | number>;
231
+ default: undefined;
225
232
  };
226
- role: {
227
- type: import('vue').PropType<string>;
233
+ maxHeight: {
234
+ type: import('vue').PropType<string | number>;
235
+ default: string;
228
236
  };
229
237
  distance: {
230
238
  type: import('vue').PropType<number>;
@@ -252,10 +260,6 @@ declare function __VLS_template(): {
252
260
  noresize: {
253
261
  type: import('vue').PropType<boolean>;
254
262
  };
255
- tag: {
256
- type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
257
- default: string;
258
- };
259
263
  always: {
260
264
  type: import('vue').PropType<boolean>;
261
265
  };
@@ -263,10 +267,6 @@ declare function __VLS_template(): {
263
267
  type: import('vue').PropType<number>;
264
268
  default: number;
265
269
  };
266
- tabindex: {
267
- type: import('vue').PropType<string | number>;
268
- default: undefined;
269
- };
270
270
  ariaOrientation: {
271
271
  type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
272
272
  };
@@ -276,7 +276,7 @@ declare function __VLS_template(): {
276
276
  scrollLeft: number;
277
277
  }) => any) | undefined;
278
278
  "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
279
- }, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import('vue').ShallowUnwrapRef<{
279
+ }, "height" | "tag" | "tabindex" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
280
280
  wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
281
281
  update: () => void;
282
282
  scrollTo: {
@@ -307,28 +307,28 @@ declare function __VLS_template(): {
307
307
  viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
308
308
  }> & Omit<{
309
309
  readonly height: number | string;
310
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
310
311
  readonly maxHeight: number | string;
311
312
  readonly distance: number;
312
313
  readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
313
314
  readonly wrapClass: string | string[];
314
315
  readonly viewClass: string | string[];
315
316
  readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
316
- readonly tag: keyof HTMLElementTagNameMap | (string & {});
317
317
  readonly minSize: number;
318
318
  readonly id?: string | undefined;
319
319
  readonly ariaLabel?: string | undefined;
320
320
  readonly role?: string | undefined;
321
+ readonly tabindex?: number | string | undefined;
321
322
  readonly native?: boolean | undefined;
322
323
  readonly noresize?: boolean | undefined;
323
324
  readonly always?: boolean | undefined;
324
- readonly tabindex?: number | string | undefined;
325
325
  readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
326
326
  onScroll?: ((args_0: {
327
327
  scrollTop: number;
328
328
  scrollLeft: number;
329
329
  }) => any) | undefined | undefined;
330
330
  "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
331
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
331
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "tabindex" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
332
332
  $attrs: {
333
333
  [x: string]: unknown;
334
334
  };
@@ -350,19 +350,27 @@ declare function __VLS_template(): {
350
350
  id: {
351
351
  type: import('vue').PropType<string>;
352
352
  };
353
+ ariaLabel: {
354
+ type: import('vue').PropType<string>;
355
+ };
356
+ role: {
357
+ type: import('vue').PropType<string>;
358
+ };
353
359
  height: {
354
360
  type: import('vue').PropType<string | number>;
355
361
  default: string;
356
362
  };
357
- maxHeight: {
358
- type: import('vue').PropType<string | number>;
363
+ tag: {
364
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
359
365
  default: string;
360
366
  };
361
- ariaLabel: {
362
- type: import('vue').PropType<string>;
367
+ tabindex: {
368
+ type: import('vue').PropType<string | number>;
369
+ default: undefined;
363
370
  };
364
- role: {
365
- type: import('vue').PropType<string>;
371
+ maxHeight: {
372
+ type: import('vue').PropType<string | number>;
373
+ default: string;
366
374
  };
367
375
  distance: {
368
376
  type: import('vue').PropType<number>;
@@ -390,10 +398,6 @@ declare function __VLS_template(): {
390
398
  noresize: {
391
399
  type: import('vue').PropType<boolean>;
392
400
  };
393
- tag: {
394
- type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
395
- default: string;
396
- };
397
401
  always: {
398
402
  type: import('vue').PropType<boolean>;
399
403
  };
@@ -401,10 +405,6 @@ declare function __VLS_template(): {
401
405
  type: import('vue').PropType<number>;
402
406
  default: number;
403
407
  };
404
- tabindex: {
405
- type: import('vue').PropType<string | number>;
406
- default: undefined;
407
- };
408
408
  ariaOrientation: {
409
409
  type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
410
410
  };
@@ -476,19 +476,27 @@ declare function __VLS_template(): {
476
476
  id: {
477
477
  type: import('vue').PropType<string>;
478
478
  };
479
+ ariaLabel: {
480
+ type: import('vue').PropType<string>;
481
+ };
482
+ role: {
483
+ type: import('vue').PropType<string>;
484
+ };
479
485
  height: {
480
486
  type: import('vue').PropType<string | number>;
481
487
  default: string;
482
488
  };
483
- maxHeight: {
484
- type: import('vue').PropType<string | number>;
489
+ tag: {
490
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
485
491
  default: string;
486
492
  };
487
- ariaLabel: {
488
- type: import('vue').PropType<string>;
493
+ tabindex: {
494
+ type: import('vue').PropType<string | number>;
495
+ default: undefined;
489
496
  };
490
- role: {
491
- type: import('vue').PropType<string>;
497
+ maxHeight: {
498
+ type: import('vue').PropType<string | number>;
499
+ default: string;
492
500
  };
493
501
  distance: {
494
502
  type: import('vue').PropType<number>;
@@ -516,10 +524,6 @@ declare function __VLS_template(): {
516
524
  noresize: {
517
525
  type: import('vue').PropType<boolean>;
518
526
  };
519
- tag: {
520
- type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
521
- default: string;
522
- };
523
527
  always: {
524
528
  type: import('vue').PropType<boolean>;
525
529
  };
@@ -527,10 +531,6 @@ declare function __VLS_template(): {
527
531
  type: import('vue').PropType<number>;
528
532
  default: number;
529
533
  };
530
- tabindex: {
531
- type: import('vue').PropType<string | number>;
532
- default: undefined;
533
- };
534
534
  ariaOrientation: {
535
535
  type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
536
536
  };
@@ -540,7 +540,7 @@ declare function __VLS_template(): {
540
540
  scrollLeft: number;
541
541
  }) => any) | undefined;
542
542
  "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
543
- }, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import('vue').ShallowUnwrapRef<{
543
+ }, "height" | "tag" | "tabindex" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
544
544
  wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
545
545
  update: () => void;
546
546
  scrollTo: {
@@ -585,7 +585,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
585
585
  default: () => never[];
586
586
  };
587
587
  height: {
588
- type: (StringConstructor | NumberConstructor)[];
588
+ type: (NumberConstructor | StringConstructor)[];
589
589
  default: undefined;
590
590
  };
591
591
  showOverflow: {
@@ -648,7 +648,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
648
648
  };
649
649
  immediate: any;
650
650
  resultCode: {
651
- type: (StringConstructor | NumberConstructor)[];
651
+ type: (NumberConstructor | StringConstructor)[];
652
652
  default: number;
653
653
  };
654
654
  afterFetch: {
@@ -866,7 +866,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
866
866
  default: () => never[];
867
867
  };
868
868
  height: {
869
- type: (StringConstructor | NumberConstructor)[];
869
+ type: (NumberConstructor | StringConstructor)[];
870
870
  default: undefined;
871
871
  };
872
872
  showOverflow: {
@@ -929,7 +929,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
929
929
  };
930
930
  immediate: any;
931
931
  resultCode: {
932
- type: (StringConstructor | NumberConstructor)[];
932
+ type: (NumberConstructor | StringConstructor)[];
933
933
  default: number;
934
934
  };
935
935
  afterFetch: {
@@ -1068,27 +1068,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1068
1068
  default: undefined;
1069
1069
  };
1070
1070
  }>> & Readonly<{}>, {
1071
- currentPageField: string;
1072
- pageSizeField: string;
1073
- totalField: string;
1074
- dataField: string;
1075
- tableRowId: string;
1076
- resultCode: string | number;
1077
- loadingText: string;
1078
- emptyText: string;
1079
- noSearchText: string;
1080
- useHttpCache: boolean;
1081
- showSetting: boolean;
1082
- showRefresh: boolean;
1071
+ data: import('vue').MaybeRef<any[]> | undefined;
1072
+ title: any;
1083
1073
  size: import('vxe-pc-ui').VxeComponentSizeType | undefined;
1084
- columnsKey: string | (() => string);
1074
+ immediate: any;
1075
+ height: string | number;
1076
+ modelValue: unknown[];
1085
1077
  total: any;
1086
- data: import('vue').MaybeRef<any[]> | undefined;
1087
- columns: import('vue').MaybeRef<VxeTableDefines.ColumnOptions<any>[]> | undefined;
1078
+ loadingText: string;
1088
1079
  pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
1080
+ showPager: any;
1081
+ showCheckbox: any;
1082
+ columns: import('vue').MaybeRef<VxeTableDefines.ColumnOptions<any>[]> | undefined;
1089
1083
  toolbarConfig: import("vxe-table").VxeGridPropTypes.ToolbarConfig | undefined;
1090
1084
  zoomConfig: import("vxe-table").VxeGridPropTypes.ZoomConfig | undefined;
1091
- height: string | number;
1092
1085
  showOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
1093
1086
  showHeaderOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
1094
1087
  radioConfig: import("vxe-table").VxeTablePropTypes.RadioConfig<import("vxe-table").VxeTablePropTypes.Row>;
@@ -1096,30 +1089,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1096
1089
  menuConfig: import("vxe-table").VxeTablePropTypes.MenuConfig<any>;
1097
1090
  mouseConfig: import("vxe-table").VxeTablePropTypes.MouseConfig;
1098
1091
  keyboardConfig: import("vxe-table").VxeTablePropTypes.KeyboardConfig<any>;
1099
- afterFetch: ((data: import("vxe-table").VxeTablePropTypes.Row[], res: globalThis.Recordable) => Promise<import("vxe-table").VxeTablePropTypes.Row[]>) | undefined;
1100
- beforeFetch: ((params: globalThis.Recordable) => Promise<globalThis.Recordable>) | undefined;
1101
- title: any;
1102
- toolTipErrorPlacement: "top" | "bottom" | "left" | "right";
1103
- showToolbar: any;
1104
- columnsFieldSort: any;
1105
- columnsFieldNoSort: any;
1106
- showSetColumn: boolean;
1107
- showLineHeight: boolean;
1108
- notSetColumnField: any;
1109
- filterNoVisibleField: any;
1110
- showTableAlert: any;
1111
- api: (...arg: any[]) => Promise<any>;
1112
- searchInfo: Record<string, any>;
1113
- immediate: any;
1114
- isScrollFetch: boolean;
1115
- showScrollFetchLoading: boolean;
1116
- showCheckbox: any;
1092
+ emptyText: string;
1093
+ clearTreeExpand: any;
1117
1094
  showRadio: any;
1118
1095
  showIndex: any;
1119
1096
  isCellResize: any;
1120
1097
  isColumnsDrag: any;
1121
1098
  isCellSort: any;
1122
- isAreaCheckData: any;
1123
1099
  showAction: any;
1124
1100
  actionWidth: any;
1125
1101
  actionTitle: any;
@@ -1128,25 +1104,49 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1128
1104
  checkboxColumnProps: VxeTableDefines.ColumnOptions<any>;
1129
1105
  rowDragColumnProps: VxeTableDefines.ColumnOptions<any>;
1130
1106
  radioColumnProps: VxeTableDefines.ColumnOptions<any>;
1131
- showPager: any;
1132
- modelValue: unknown[];
1107
+ searchInfo: Record<string, any>;
1108
+ showToolbar: any;
1109
+ columnsFieldSort: any;
1110
+ columnsFieldNoSort: any;
1111
+ notSetColumnField: any;
1112
+ filterNoVisibleField: any;
1113
+ showTableAlert: any;
1114
+ isRowDrag: any;
1115
+ treeNode: any;
1116
+ isScrollFetch: boolean;
1117
+ showScrollFetchLoading: boolean;
1118
+ tableRowId: string;
1119
+ currentPageField: string;
1120
+ pageSizeField: string;
1121
+ totalField: string;
1122
+ dataField: string;
1133
1123
  showTitle: any;
1134
1124
  autoHeight: any;
1135
1125
  offsetHeight: any;
1136
- leftSlotWidth: any;
1137
- rightSlotWidth: any;
1126
+ noSearchText: string;
1138
1127
  emptyImageStyle: any;
1139
1128
  emptyImageStatus: "no-data" | "no-search";
1140
1129
  isHanderSubmit: any;
1130
+ columnsKey: string | (() => string);
1131
+ showSetting: boolean;
1132
+ showSetColumn: boolean;
1133
+ leftSlotWidth: any;
1134
+ rightSlotWidth: any;
1135
+ showLineHeight: boolean;
1136
+ showRefresh: boolean;
1137
+ useHttpCache: boolean;
1141
1138
  defaultDisplayFields: string[];
1142
- isRowDrag: any;
1143
- treeNode: any;
1144
- clearTreeExpand: any;
1145
1139
  isI18n: any;
1146
1140
  isDataCloneDeep: any;
1147
1141
  useSearchForm: any;
1148
- disabledTeleport: any;
1149
1142
  testId: string;
1143
+ toolTipErrorPlacement: "top" | "bottom" | "left" | "right";
1144
+ isAreaCheckData: any;
1145
+ api: (...arg: any[]) => Promise<any>;
1146
+ resultCode: string | number;
1147
+ afterFetch: ((data: import("vxe-table").VxeTablePropTypes.Row[], res: globalThis.Recordable) => Promise<import("vxe-table").VxeTablePropTypes.Row[]>) | undefined;
1148
+ beforeFetch: ((params: globalThis.Recordable) => Promise<globalThis.Recordable>) | undefined;
1149
+ disabledTeleport: any;
1150
1150
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
1151
1151
  wrapRef: HTMLDivElement;
1152
1152
  xGrid: (import('vxe-table').VxeGridMethods<any> & {
@@ -1169,28 +1169,28 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1169
1169
  viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1170
1170
  }> & Omit<{
1171
1171
  readonly height: number | string;
1172
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
1172
1173
  readonly maxHeight: number | string;
1173
1174
  readonly distance: number;
1174
1175
  readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1175
1176
  readonly wrapClass: string | string[];
1176
1177
  readonly viewClass: string | string[];
1177
1178
  readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1178
- readonly tag: keyof HTMLElementTagNameMap | (string & {});
1179
1179
  readonly minSize: number;
1180
1180
  readonly id?: string | undefined;
1181
1181
  readonly ariaLabel?: string | undefined;
1182
1182
  readonly role?: string | undefined;
1183
+ readonly tabindex?: number | string | undefined;
1183
1184
  readonly native?: boolean | undefined;
1184
1185
  readonly noresize?: boolean | undefined;
1185
1186
  readonly always?: boolean | undefined;
1186
- readonly tabindex?: number | string | undefined;
1187
1187
  readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
1188
1188
  onScroll?: ((args_0: {
1189
1189
  scrollTop: number;
1190
1190
  scrollLeft: number;
1191
1191
  }) => any) | undefined | undefined;
1192
1192
  "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
1193
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
1193
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "tabindex" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
1194
1194
  $attrs: {
1195
1195
  [x: string]: unknown;
1196
1196
  };
@@ -1212,19 +1212,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1212
1212
  id: {
1213
1213
  type: import('vue').PropType<string>;
1214
1214
  };
1215
+ ariaLabel: {
1216
+ type: import('vue').PropType<string>;
1217
+ };
1218
+ role: {
1219
+ type: import('vue').PropType<string>;
1220
+ };
1215
1221
  height: {
1216
1222
  type: import('vue').PropType<string | number>;
1217
1223
  default: string;
1218
1224
  };
1219
- maxHeight: {
1220
- type: import('vue').PropType<string | number>;
1225
+ tag: {
1226
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1221
1227
  default: string;
1222
1228
  };
1223
- ariaLabel: {
1224
- type: import('vue').PropType<string>;
1229
+ tabindex: {
1230
+ type: import('vue').PropType<string | number>;
1231
+ default: undefined;
1225
1232
  };
1226
- role: {
1227
- type: import('vue').PropType<string>;
1233
+ maxHeight: {
1234
+ type: import('vue').PropType<string | number>;
1235
+ default: string;
1228
1236
  };
1229
1237
  distance: {
1230
1238
  type: import('vue').PropType<number>;
@@ -1252,10 +1260,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1252
1260
  noresize: {
1253
1261
  type: import('vue').PropType<boolean>;
1254
1262
  };
1255
- tag: {
1256
- type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
1257
- default: string;
1258
- };
1259
1263
  always: {
1260
1264
  type: import('vue').PropType<boolean>;
1261
1265
  };
@@ -1263,10 +1267,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1263
1267
  type: import('vue').PropType<number>;
1264
1268
  default: number;
1265
1269
  };
1266
- tabindex: {
1267
- type: import('vue').PropType<string | number>;
1268
- default: undefined;
1269
- };
1270
1270
  ariaOrientation: {
1271
1271
  type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1272
1272
  };
@@ -1338,19 +1338,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1338
1338
  id: {
1339
1339
  type: import('vue').PropType<string>;
1340
1340
  };
1341
+ ariaLabel: {
1342
+ type: import('vue').PropType<string>;
1343
+ };
1344
+ role: {
1345
+ type: import('vue').PropType<string>;
1346
+ };
1341
1347
  height: {
1342
1348
  type: import('vue').PropType<string | number>;
1343
1349
  default: string;
1344
1350
  };
1345
- maxHeight: {
1346
- type: import('vue').PropType<string | number>;
1351
+ tag: {
1352
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1347
1353
  default: string;
1348
1354
  };
1349
- ariaLabel: {
1350
- type: import('vue').PropType<string>;
1355
+ tabindex: {
1356
+ type: import('vue').PropType<string | number>;
1357
+ default: undefined;
1351
1358
  };
1352
- role: {
1353
- type: import('vue').PropType<string>;
1359
+ maxHeight: {
1360
+ type: import('vue').PropType<string | number>;
1361
+ default: string;
1354
1362
  };
1355
1363
  distance: {
1356
1364
  type: import('vue').PropType<number>;
@@ -1378,10 +1386,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1378
1386
  noresize: {
1379
1387
  type: import('vue').PropType<boolean>;
1380
1388
  };
1381
- tag: {
1382
- type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
1383
- default: string;
1384
- };
1385
1389
  always: {
1386
1390
  type: import('vue').PropType<boolean>;
1387
1391
  };
@@ -1389,10 +1393,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1389
1393
  type: import('vue').PropType<number>;
1390
1394
  default: number;
1391
1395
  };
1392
- tabindex: {
1393
- type: import('vue').PropType<string | number>;
1394
- default: undefined;
1395
- };
1396
1396
  ariaOrientation: {
1397
1397
  type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1398
1398
  };
@@ -1402,7 +1402,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1402
1402
  scrollLeft: number;
1403
1403
  }) => any) | undefined;
1404
1404
  "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1405
- }, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import('vue').ShallowUnwrapRef<{
1405
+ }, "height" | "tag" | "tabindex" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
1406
1406
  wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1407
1407
  update: () => void;
1408
1408
  scrollTo: {
@@ -1433,28 +1433,28 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1433
1433
  viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1434
1434
  }> & Omit<{
1435
1435
  readonly height: number | string;
1436
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
1436
1437
  readonly maxHeight: number | string;
1437
1438
  readonly distance: number;
1438
1439
  readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1439
1440
  readonly wrapClass: string | string[];
1440
1441
  readonly viewClass: string | string[];
1441
1442
  readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1442
- readonly tag: keyof HTMLElementTagNameMap | (string & {});
1443
1443
  readonly minSize: number;
1444
1444
  readonly id?: string | undefined;
1445
1445
  readonly ariaLabel?: string | undefined;
1446
1446
  readonly role?: string | undefined;
1447
+ readonly tabindex?: number | string | undefined;
1447
1448
  readonly native?: boolean | undefined;
1448
1449
  readonly noresize?: boolean | undefined;
1449
1450
  readonly always?: boolean | undefined;
1450
- readonly tabindex?: number | string | undefined;
1451
1451
  readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
1452
1452
  onScroll?: ((args_0: {
1453
1453
  scrollTop: number;
1454
1454
  scrollLeft: number;
1455
1455
  }) => any) | undefined | undefined;
1456
1456
  "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
1457
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex">;
1457
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "tabindex" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
1458
1458
  $attrs: {
1459
1459
  [x: string]: unknown;
1460
1460
  };
@@ -1476,19 +1476,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1476
1476
  id: {
1477
1477
  type: import('vue').PropType<string>;
1478
1478
  };
1479
+ ariaLabel: {
1480
+ type: import('vue').PropType<string>;
1481
+ };
1482
+ role: {
1483
+ type: import('vue').PropType<string>;
1484
+ };
1479
1485
  height: {
1480
1486
  type: import('vue').PropType<string | number>;
1481
1487
  default: string;
1482
1488
  };
1483
- maxHeight: {
1484
- type: import('vue').PropType<string | number>;
1489
+ tag: {
1490
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1485
1491
  default: string;
1486
1492
  };
1487
- ariaLabel: {
1488
- type: import('vue').PropType<string>;
1493
+ tabindex: {
1494
+ type: import('vue').PropType<string | number>;
1495
+ default: undefined;
1489
1496
  };
1490
- role: {
1491
- type: import('vue').PropType<string>;
1497
+ maxHeight: {
1498
+ type: import('vue').PropType<string | number>;
1499
+ default: string;
1492
1500
  };
1493
1501
  distance: {
1494
1502
  type: import('vue').PropType<number>;
@@ -1516,10 +1524,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1516
1524
  noresize: {
1517
1525
  type: import('vue').PropType<boolean>;
1518
1526
  };
1519
- tag: {
1520
- type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
1521
- default: string;
1522
- };
1523
1527
  always: {
1524
1528
  type: import('vue').PropType<boolean>;
1525
1529
  };
@@ -1527,10 +1531,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1527
1531
  type: import('vue').PropType<number>;
1528
1532
  default: number;
1529
1533
  };
1530
- tabindex: {
1531
- type: import('vue').PropType<string | number>;
1532
- default: undefined;
1533
- };
1534
1534
  ariaOrientation: {
1535
1535
  type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1536
1536
  };
@@ -1602,19 +1602,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1602
1602
  id: {
1603
1603
  type: import('vue').PropType<string>;
1604
1604
  };
1605
+ ariaLabel: {
1606
+ type: import('vue').PropType<string>;
1607
+ };
1608
+ role: {
1609
+ type: import('vue').PropType<string>;
1610
+ };
1605
1611
  height: {
1606
1612
  type: import('vue').PropType<string | number>;
1607
1613
  default: string;
1608
1614
  };
1609
- maxHeight: {
1610
- type: import('vue').PropType<string | number>;
1615
+ tag: {
1616
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1611
1617
  default: string;
1612
1618
  };
1613
- ariaLabel: {
1614
- type: import('vue').PropType<string>;
1619
+ tabindex: {
1620
+ type: import('vue').PropType<string | number>;
1621
+ default: undefined;
1615
1622
  };
1616
- role: {
1617
- type: import('vue').PropType<string>;
1623
+ maxHeight: {
1624
+ type: import('vue').PropType<string | number>;
1625
+ default: string;
1618
1626
  };
1619
1627
  distance: {
1620
1628
  type: import('vue').PropType<number>;
@@ -1642,10 +1650,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1642
1650
  noresize: {
1643
1651
  type: import('vue').PropType<boolean>;
1644
1652
  };
1645
- tag: {
1646
- type: import('vue').PropType<(string & {}) | keyof HTMLElementTagNameMap>;
1647
- default: string;
1648
- };
1649
1653
  always: {
1650
1654
  type: import('vue').PropType<boolean>;
1651
1655
  };
@@ -1653,10 +1657,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1653
1657
  type: import('vue').PropType<number>;
1654
1658
  default: number;
1655
1659
  };
1656
- tabindex: {
1657
- type: import('vue').PropType<string | number>;
1658
- default: undefined;
1659
- };
1660
1660
  ariaOrientation: {
1661
1661
  type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1662
1662
  };
@@ -1666,7 +1666,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1666
1666
  scrollLeft: number;
1667
1667
  }) => any) | undefined;
1668
1668
  "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1669
- }, "height" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "tag" | "minSize" | "tabindex" | "wrapRef" | "update" | "scrollTo" | "setScrollTop" | "setScrollLeft" | "handleScroll"> & import('vue').ShallowUnwrapRef<{
1669
+ }, "height" | "tag" | "tabindex" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
1670
1670
  wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1671
1671
  update: () => void;
1672
1672
  scrollTo: {