@dazhicheng/ui 1.1.0 → 1.4.1

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 (131) hide show
  1. package/dist/components/tt-form/src/form-render/form.vue.d.ts +1 -1
  2. package/dist/components/tt-form/src/index.vue.d.ts +4 -4
  3. package/dist/components/tt-form-adapter/component/index.d.ts +1 -1
  4. package/dist/components/tt-form-adapter/component/index.d.ts.map +1 -1
  5. package/dist/components/tt-form-adapter/index.d.ts +2 -2
  6. package/dist/components/tt-form-adapter/index.d.ts.map +1 -1
  7. package/dist/components/tt-loading/index.d.ts +17 -0
  8. package/dist/components/tt-loading/index.d.ts.map +1 -0
  9. package/dist/components/tt-loading/src/directive.d.ts +10 -0
  10. package/dist/components/tt-loading/src/directive.d.ts.map +1 -0
  11. package/dist/components/tt-loading/src/loading.vue.d.ts +13 -0
  12. package/dist/components/tt-loading/src/loading.vue.d.ts.map +1 -0
  13. package/dist/components/tt-loading/src/service.d.ts +26 -0
  14. package/dist/components/tt-loading/src/service.d.ts.map +1 -0
  15. package/dist/components/tt-loading/src/type.d.ts +21 -0
  16. package/dist/components/tt-loading/src/type.d.ts.map +1 -0
  17. package/dist/components/tt-part/index.d.ts +3 -3
  18. package/dist/components/tt-part/index.vue.d.ts +1 -1
  19. package/dist/components/tt-table/index.d.ts +128 -0
  20. package/dist/components/tt-table/index.d.ts.map +1 -0
  21. package/dist/components/tt-table/src/Table.vue.d.ts +1746 -0
  22. package/dist/components/tt-table/src/Table.vue.d.ts.map +1 -0
  23. package/dist/components/tt-table/src/TableForm.vue.d.ts +163 -0
  24. package/dist/components/tt-table/src/TableForm.vue.d.ts.map +1 -0
  25. package/dist/components/tt-table/src/componentMap.d.ts +9 -0
  26. package/dist/components/tt-table/src/componentMap.d.ts.map +1 -0
  27. package/dist/components/tt-table/src/components/RowContext.d.ts +25 -0
  28. package/dist/components/tt-table/src/components/RowContext.d.ts.map +1 -0
  29. package/dist/components/tt-table/src/components/TableAction.vue.d.ts +80 -0
  30. package/dist/components/tt-table/src/components/TableAction.vue.d.ts.map +1 -0
  31. package/dist/components/tt-table/src/components/TableButtons.d.ts +31 -0
  32. package/dist/components/tt-table/src/components/TableButtons.d.ts.map +1 -0
  33. package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +1685 -0
  34. package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts.map +1 -0
  35. package/dist/components/tt-table/src/emits.d.ts +2 -0
  36. package/dist/components/tt-table/src/emits.d.ts.map +1 -0
  37. package/dist/components/tt-table/src/enum.d.ts +3 -0
  38. package/dist/components/tt-table/src/enum.d.ts.map +1 -0
  39. package/dist/components/tt-table/src/hooks/useCache.d.ts +21 -0
  40. package/dist/components/tt-table/src/hooks/useCache.d.ts.map +1 -0
  41. package/dist/components/tt-table/src/hooks/useCellArea.d.ts +16 -0
  42. package/dist/components/tt-table/src/hooks/useCellArea.d.ts.map +1 -0
  43. package/dist/components/tt-table/src/hooks/useColumns.d.ts +32 -0
  44. package/dist/components/tt-table/src/hooks/useColumns.d.ts.map +1 -0
  45. package/dist/components/tt-table/src/hooks/useDataSource.d.ts +30 -0
  46. package/dist/components/tt-table/src/hooks/useDataSource.d.ts.map +1 -0
  47. package/dist/components/tt-table/src/hooks/useFullscreen.d.ts +12 -0
  48. package/dist/components/tt-table/src/hooks/useFullscreen.d.ts.map +1 -0
  49. package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +1083 -0
  50. package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts.map +1 -0
  51. package/dist/components/tt-table/src/hooks/usePagination.d.ts +103 -0
  52. package/dist/components/tt-table/src/hooks/usePagination.d.ts.map +1 -0
  53. package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +31 -0
  54. package/dist/components/tt-table/src/hooks/useRowSelection.d.ts.map +1 -0
  55. package/dist/components/tt-table/src/hooks/useTable.d.ts +8 -0
  56. package/dist/components/tt-table/src/hooks/useTable.d.ts.map +1 -0
  57. package/dist/components/tt-table/src/hooks/useTableContext.d.ts +44 -0
  58. package/dist/components/tt-table/src/hooks/useTableContext.d.ts.map +1 -0
  59. package/dist/components/tt-table/src/hooks/useTableEvent.d.ts +102 -0
  60. package/dist/components/tt-table/src/hooks/useTableEvent.d.ts.map +1 -0
  61. package/dist/components/tt-table/src/hooks/useTableForm.d.ts +15 -0
  62. package/dist/components/tt-table/src/hooks/useTableForm.d.ts.map +1 -0
  63. package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts +12 -0
  64. package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts.map +1 -0
  65. package/dist/components/tt-table/src/hooks/useTableHeight.d.ts +16 -0
  66. package/dist/components/tt-table/src/hooks/useTableHeight.d.ts.map +1 -0
  67. package/dist/components/tt-table/src/hooks/useTableRender.d.ts +82 -0
  68. package/dist/components/tt-table/src/hooks/useTableRender.d.ts.map +1 -0
  69. package/dist/components/tt-table/src/hooks/useTableSlot.d.ts +12 -0
  70. package/dist/components/tt-table/src/hooks/useTableSlot.d.ts.map +1 -0
  71. package/dist/components/tt-table/src/props.d.ts +485 -0
  72. package/dist/components/tt-table/src/props.d.ts.map +1 -0
  73. package/dist/components/tt-table/src/toolProps.d.ts +102 -0
  74. package/dist/components/tt-table/src/toolProps.d.ts.map +1 -0
  75. package/dist/components/tt-table/src/types/table.d.ts +493 -0
  76. package/dist/components/tt-table/src/types/table.d.ts.map +1 -0
  77. package/dist/components/tt-table/src/types/tableAction.d.ts +27 -0
  78. package/dist/components/tt-table/src/types/tableAction.d.ts.map +1 -0
  79. package/dist/components/tt-table/src/types/tableForm.d.ts +66 -0
  80. package/dist/components/tt-table/src/types/tableForm.d.ts.map +1 -0
  81. package/dist/components/tt-table/src/types/tableTools.d.ts +66 -0
  82. package/dist/components/tt-table/src/types/tableTools.d.ts.map +1 -0
  83. package/dist/components/tt-table/src/utils/context.d.ts +19 -0
  84. package/dist/components/tt-table/src/utils/context.d.ts.map +1 -0
  85. package/dist/components/tt-table/src/utils/filters.d.ts +110 -0
  86. package/dist/components/tt-table/src/utils/filters.d.ts.map +1 -0
  87. package/dist/components/tt-table/src/utils/table-api.d.ts +269 -0
  88. package/dist/components/tt-table/src/utils/table-api.d.ts.map +1 -0
  89. package/dist/components/tt-table/src/utils/table-form-api.d.ts +89 -0
  90. package/dist/components/tt-table/src/utils/table-form-api.d.ts.map +1 -0
  91. package/dist/components/tt-table/src/utils/vxeTable.d.ts +29 -0
  92. package/dist/components/tt-table/src/utils/vxeTable.d.ts.map +1 -0
  93. package/dist/components/tt-validate/src/Field.d.ts +1 -1
  94. package/dist/components/tt-validate/src/Form.d.ts +1 -1
  95. package/dist/{css-CoEz66oB.js → css-CKklk3nV.js} +1 -0
  96. package/dist/{event-DSSsWzVU.js → event-BgJv9iWk.js} +1 -1
  97. package/dist/hooks/useSetup.d.ts +6 -0
  98. package/dist/hooks/useSetup.d.ts.map +1 -0
  99. package/dist/hooks/useTemplateSlot.d.ts +10 -0
  100. package/dist/hooks/useTemplateSlot.d.ts.map +1 -0
  101. package/dist/{icon-DbdhHmva.js → icon-C9BsRQqM.js} +2 -2
  102. package/dist/{index-C8UKPPHD.js → index-64J4mWP7.js} +2 -2
  103. package/dist/{index-hlMlaPX2.js → index-B3w7HVvP.js} +6 -6
  104. package/dist/{index-p03nbfgB.js → index-BQgaGlJA.js} +8 -8
  105. package/dist/{index-DHdDQVpg.js → index-Bq5RXWp8.js} +5 -5
  106. package/dist/{index-BXkpTX1Y.js → index-CB2v0taz.js} +1 -1
  107. package/dist/{index-DiNnJQ4b.js → index-C_u1XOy0.js} +7 -7
  108. package/dist/{index-BKMpeJMS.js → index-CdyRKSi4.js} +20 -20
  109. package/dist/index-CjcGE9Xi.js +2700 -0
  110. package/dist/{index-COVG9Wvh.js → index-CzDjdhem.js} +5 -5
  111. package/dist/{index-BhRFBLHz.js → index-D6x6ZHVk.js} +5 -5
  112. package/dist/{index-DfMIblcg.js → index-DHXyFJLO.js} +1 -1
  113. package/dist/{index-DVbQtqoV.js → index-DXGnUvsQ.js} +9 -9
  114. package/dist/{index-BgzdMRW8.js → index-DY3FsmvZ.js} +2 -2
  115. package/dist/{index-DIqpkfiH.js → index-Dp1l-3ez.js} +2 -2
  116. package/dist/{index-my6Z5v2z.js → index-LRY3g1Bz.js} +6 -6
  117. package/dist/{index-qZ-AAxXa.js → index-hI7UMWGr.js} +1 -1
  118. package/dist/index-iFd1yQ1C.js +55785 -0
  119. package/dist/index.d.ts +3 -11
  120. package/dist/index.d.ts.map +1 -1
  121. package/dist/index.js +25 -17
  122. package/dist/panel-time-pick.vue2-C7R5HGb8.js +2026 -0
  123. package/dist/style.css +1 -1
  124. package/dist/{use-form-common-props-DkpXv1AY.js → use-form-common-props-CDmM4Wn1.js} +1 -1
  125. package/dist/{use-form-item-bliFpQLk.js → use-form-item-Bv38v7TO.js} +2 -2
  126. package/dist/util-CWdgKsYq.js +2259 -0
  127. package/package.json +9 -9
  128. package/dist/index-1F8harWZ.js +0 -1982
  129. package/dist/index-D8_UEqsc.js +0 -2683
  130. package/dist/index-DdEvRX8w.js +0 -47929
  131. package/dist/panel-time-pick.vue2-D4HGRRie.js +0 -1602
@@ -0,0 +1,1746 @@
1
+ import { Ref, nextTick } from 'vue';
2
+ import { VxeGridEventProps, VxeGridInstance, VxeGridProps, VxeTableDefines } from 'vxe-table';
3
+ import { TtTableExtendedTableApi, TtTableProps } from './types/table';
4
+ import { Recordable } from '../../../../../utils/src';
5
+ declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
7
+ slots: Readonly<{
8
+ [key: string]: (props: Recordable) => void;
9
+ top_title: (props: Recordable) => void;
10
+ toolbar_buttons: (props: Recordable) => void;
11
+ toolbar_tools: (props: Recordable) => void;
12
+ buttom_left: (props: Recordable) => void;
13
+ pager_left: (props: Recordable) => void;
14
+ default: (props: Recordable) => void;
15
+ }> & {
16
+ [key: string]: (props: Recordable) => void;
17
+ top_title: (props: Recordable) => void;
18
+ toolbar_buttons: (props: Recordable) => void;
19
+ toolbar_tools: (props: Recordable) => void;
20
+ buttom_left: (props: Recordable) => void;
21
+ pager_left: (props: Recordable) => void;
22
+ default: (props: Recordable) => void;
23
+ };
24
+ refs: {
25
+ wrapRef: HTMLDivElement;
26
+ xGrid: (import('vxe-table').VxeGridMethods<any> & {
27
+ $props: VxeGridProps<any> & VxeGridEventProps<any>;
28
+ $slots: import('vxe-table').VxeGridSlots<any>;
29
+ }) | null;
30
+ leftSlotScrollbarRef: ({
31
+ $: import('vue').ComponentInternalInstance;
32
+ $data: {};
33
+ $props: Partial<{
34
+ tabindex: number | string;
35
+ height: number | string;
36
+ maxHeight: number | string;
37
+ tag: keyof HTMLElementTagNameMap | (string & {});
38
+ minSize: number;
39
+ distance: number;
40
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
41
+ wrapClass: string | string[];
42
+ viewClass: string | string[];
43
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
44
+ }> & Omit<{
45
+ readonly height: number | string;
46
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
47
+ readonly maxHeight: number | string;
48
+ readonly distance: number;
49
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
50
+ readonly wrapClass: string | string[];
51
+ readonly viewClass: string | string[];
52
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
53
+ readonly minSize: number;
54
+ readonly id?: string | undefined;
55
+ readonly ariaLabel?: string | undefined;
56
+ readonly role?: string | undefined;
57
+ readonly tabindex?: number | string | undefined;
58
+ readonly native?: boolean | undefined;
59
+ readonly noresize?: boolean | undefined;
60
+ readonly always?: boolean | undefined;
61
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
62
+ onScroll?: ((args_0: {
63
+ scrollTop: number;
64
+ scrollLeft: number;
65
+ }) => any) | undefined | undefined;
66
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
67
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "maxHeight" | "tabindex" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
68
+ $attrs: {
69
+ [x: string]: unknown;
70
+ };
71
+ $refs: {
72
+ [x: string]: unknown;
73
+ };
74
+ $slots: Readonly<{
75
+ [name: string]: import('vue').Slot<any> | undefined;
76
+ }>;
77
+ $root: import('vue').ComponentPublicInstance | null;
78
+ $parent: import('vue').ComponentPublicInstance | null;
79
+ $host: Element | null;
80
+ $emit: ((event: "scroll", args_0: {
81
+ scrollTop: number;
82
+ scrollLeft: number;
83
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
84
+ $el: any;
85
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
86
+ height: {
87
+ type: import('vue').PropType<string | number>;
88
+ default: string;
89
+ };
90
+ id: {
91
+ type: import('vue').PropType<string>;
92
+ };
93
+ ariaLabel: {
94
+ type: import('vue').PropType<string>;
95
+ };
96
+ role: {
97
+ type: import('vue').PropType<string>;
98
+ };
99
+ tag: {
100
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
101
+ default: string;
102
+ };
103
+ maxHeight: {
104
+ type: import('vue').PropType<string | number>;
105
+ default: string;
106
+ };
107
+ tabindex: {
108
+ type: import('vue').PropType<string | number>;
109
+ default: undefined;
110
+ };
111
+ distance: {
112
+ type: import('vue').PropType<number>;
113
+ default: number;
114
+ };
115
+ native: {
116
+ type: import('vue').PropType<boolean>;
117
+ };
118
+ wrapStyle: {
119
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
120
+ default: string;
121
+ };
122
+ wrapClass: {
123
+ type: import('vue').PropType<string | string[]>;
124
+ default: string;
125
+ };
126
+ viewClass: {
127
+ type: import('vue').PropType<string | string[]>;
128
+ default: string;
129
+ };
130
+ viewStyle: {
131
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
132
+ default: string;
133
+ };
134
+ noresize: {
135
+ type: import('vue').PropType<boolean>;
136
+ };
137
+ always: {
138
+ type: import('vue').PropType<boolean>;
139
+ };
140
+ minSize: {
141
+ type: import('vue').PropType<number>;
142
+ default: number;
143
+ };
144
+ ariaOrientation: {
145
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
146
+ };
147
+ }>> & {
148
+ onScroll?: ((args_0: {
149
+ scrollTop: number;
150
+ scrollLeft: number;
151
+ }) => any) | undefined;
152
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
153
+ }, {
154
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
155
+ update: () => void;
156
+ scrollTo: {
157
+ (xCord: number, yCord?: number): void;
158
+ (options: ScrollToOptions): void;
159
+ };
160
+ setScrollTop: (value: number) => void;
161
+ setScrollLeft: (value: number) => void;
162
+ handleScroll: () => void;
163
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
164
+ scroll: (args_0: {
165
+ scrollTop: number;
166
+ scrollLeft: number;
167
+ }) => void;
168
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
169
+ }, string, {
170
+ tabindex: number | string;
171
+ height: number | string;
172
+ maxHeight: number | string;
173
+ tag: keyof HTMLElementTagNameMap | (string & {});
174
+ minSize: number;
175
+ distance: number;
176
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
177
+ wrapClass: string | string[];
178
+ viewClass: string | string[];
179
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
180
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
181
+ beforeCreate?: (() => void) | (() => void)[];
182
+ created?: (() => void) | (() => void)[];
183
+ beforeMount?: (() => void) | (() => void)[];
184
+ mounted?: (() => void) | (() => void)[];
185
+ beforeUpdate?: (() => void) | (() => void)[];
186
+ updated?: (() => void) | (() => void)[];
187
+ activated?: (() => void) | (() => void)[];
188
+ deactivated?: (() => void) | (() => void)[];
189
+ beforeDestroy?: (() => void) | (() => void)[];
190
+ beforeUnmount?: (() => void) | (() => void)[];
191
+ destroyed?: (() => void) | (() => void)[];
192
+ unmounted?: (() => void) | (() => void)[];
193
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
194
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
195
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
196
+ };
197
+ $forceUpdate: () => void;
198
+ $nextTick: typeof nextTick;
199
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
200
+ } & Readonly<{
201
+ tabindex: number | string;
202
+ height: number | string;
203
+ maxHeight: number | string;
204
+ tag: keyof HTMLElementTagNameMap | (string & {});
205
+ minSize: number;
206
+ distance: number;
207
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
208
+ wrapClass: string | string[];
209
+ viewClass: string | string[];
210
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
211
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
212
+ height: {
213
+ type: import('vue').PropType<string | number>;
214
+ default: string;
215
+ };
216
+ id: {
217
+ type: import('vue').PropType<string>;
218
+ };
219
+ ariaLabel: {
220
+ type: import('vue').PropType<string>;
221
+ };
222
+ role: {
223
+ type: import('vue').PropType<string>;
224
+ };
225
+ tag: {
226
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
227
+ default: string;
228
+ };
229
+ maxHeight: {
230
+ type: import('vue').PropType<string | number>;
231
+ default: string;
232
+ };
233
+ tabindex: {
234
+ type: import('vue').PropType<string | number>;
235
+ default: undefined;
236
+ };
237
+ distance: {
238
+ type: import('vue').PropType<number>;
239
+ default: number;
240
+ };
241
+ native: {
242
+ type: import('vue').PropType<boolean>;
243
+ };
244
+ wrapStyle: {
245
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
246
+ default: string;
247
+ };
248
+ wrapClass: {
249
+ type: import('vue').PropType<string | string[]>;
250
+ default: string;
251
+ };
252
+ viewClass: {
253
+ type: import('vue').PropType<string | string[]>;
254
+ default: string;
255
+ };
256
+ viewStyle: {
257
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
258
+ default: string;
259
+ };
260
+ noresize: {
261
+ type: import('vue').PropType<boolean>;
262
+ };
263
+ always: {
264
+ type: import('vue').PropType<boolean>;
265
+ };
266
+ minSize: {
267
+ type: import('vue').PropType<number>;
268
+ default: number;
269
+ };
270
+ ariaOrientation: {
271
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
272
+ };
273
+ }>> & {
274
+ onScroll?: ((args_0: {
275
+ scrollTop: number;
276
+ scrollLeft: number;
277
+ }) => any) | undefined;
278
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
279
+ }, "height" | "tag" | "update" | "maxHeight" | "tabindex" | "handleScroll" | "scrollTo" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
280
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
281
+ update: () => void;
282
+ scrollTo: {
283
+ (xCord: number, yCord?: number): void;
284
+ (options: ScrollToOptions): void;
285
+ };
286
+ setScrollTop: (value: number) => void;
287
+ setScrollLeft: (value: number) => void;
288
+ handleScroll: () => void;
289
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
290
+ $slots: {
291
+ default?: (props: {}) => any;
292
+ };
293
+ }) | null;
294
+ rightSlotScrollbarRef: ({
295
+ $: import('vue').ComponentInternalInstance;
296
+ $data: {};
297
+ $props: Partial<{
298
+ tabindex: number | string;
299
+ height: number | string;
300
+ maxHeight: number | string;
301
+ tag: keyof HTMLElementTagNameMap | (string & {});
302
+ minSize: number;
303
+ distance: number;
304
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
305
+ wrapClass: string | string[];
306
+ viewClass: string | string[];
307
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
308
+ }> & Omit<{
309
+ readonly height: number | string;
310
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
311
+ readonly maxHeight: number | string;
312
+ readonly distance: number;
313
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
314
+ readonly wrapClass: string | string[];
315
+ readonly viewClass: string | string[];
316
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
317
+ readonly minSize: number;
318
+ readonly id?: string | undefined;
319
+ readonly ariaLabel?: string | undefined;
320
+ readonly role?: string | undefined;
321
+ readonly tabindex?: number | string | undefined;
322
+ readonly native?: boolean | undefined;
323
+ readonly noresize?: boolean | undefined;
324
+ readonly always?: boolean | undefined;
325
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
326
+ onScroll?: ((args_0: {
327
+ scrollTop: number;
328
+ scrollLeft: number;
329
+ }) => any) | undefined | undefined;
330
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
331
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "maxHeight" | "tabindex" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
332
+ $attrs: {
333
+ [x: string]: unknown;
334
+ };
335
+ $refs: {
336
+ [x: string]: unknown;
337
+ };
338
+ $slots: Readonly<{
339
+ [name: string]: import('vue').Slot<any> | undefined;
340
+ }>;
341
+ $root: import('vue').ComponentPublicInstance | null;
342
+ $parent: import('vue').ComponentPublicInstance | null;
343
+ $host: Element | null;
344
+ $emit: ((event: "scroll", args_0: {
345
+ scrollTop: number;
346
+ scrollLeft: number;
347
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
348
+ $el: any;
349
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
350
+ height: {
351
+ type: import('vue').PropType<string | number>;
352
+ default: string;
353
+ };
354
+ id: {
355
+ type: import('vue').PropType<string>;
356
+ };
357
+ ariaLabel: {
358
+ type: import('vue').PropType<string>;
359
+ };
360
+ role: {
361
+ type: import('vue').PropType<string>;
362
+ };
363
+ tag: {
364
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
365
+ default: string;
366
+ };
367
+ maxHeight: {
368
+ type: import('vue').PropType<string | number>;
369
+ default: string;
370
+ };
371
+ tabindex: {
372
+ type: import('vue').PropType<string | number>;
373
+ default: undefined;
374
+ };
375
+ distance: {
376
+ type: import('vue').PropType<number>;
377
+ default: number;
378
+ };
379
+ native: {
380
+ type: import('vue').PropType<boolean>;
381
+ };
382
+ wrapStyle: {
383
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
384
+ default: string;
385
+ };
386
+ wrapClass: {
387
+ type: import('vue').PropType<string | string[]>;
388
+ default: string;
389
+ };
390
+ viewClass: {
391
+ type: import('vue').PropType<string | string[]>;
392
+ default: string;
393
+ };
394
+ viewStyle: {
395
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
396
+ default: string;
397
+ };
398
+ noresize: {
399
+ type: import('vue').PropType<boolean>;
400
+ };
401
+ always: {
402
+ type: import('vue').PropType<boolean>;
403
+ };
404
+ minSize: {
405
+ type: import('vue').PropType<number>;
406
+ default: number;
407
+ };
408
+ ariaOrientation: {
409
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
410
+ };
411
+ }>> & {
412
+ onScroll?: ((args_0: {
413
+ scrollTop: number;
414
+ scrollLeft: number;
415
+ }) => any) | undefined;
416
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
417
+ }, {
418
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
419
+ update: () => void;
420
+ scrollTo: {
421
+ (xCord: number, yCord?: number): void;
422
+ (options: ScrollToOptions): void;
423
+ };
424
+ setScrollTop: (value: number) => void;
425
+ setScrollLeft: (value: number) => void;
426
+ handleScroll: () => void;
427
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
428
+ scroll: (args_0: {
429
+ scrollTop: number;
430
+ scrollLeft: number;
431
+ }) => void;
432
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
433
+ }, string, {
434
+ tabindex: number | string;
435
+ height: number | string;
436
+ maxHeight: number | string;
437
+ tag: keyof HTMLElementTagNameMap | (string & {});
438
+ minSize: number;
439
+ distance: number;
440
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
441
+ wrapClass: string | string[];
442
+ viewClass: string | string[];
443
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
444
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
445
+ beforeCreate?: (() => void) | (() => void)[];
446
+ created?: (() => void) | (() => void)[];
447
+ beforeMount?: (() => void) | (() => void)[];
448
+ mounted?: (() => void) | (() => void)[];
449
+ beforeUpdate?: (() => void) | (() => void)[];
450
+ updated?: (() => void) | (() => void)[];
451
+ activated?: (() => void) | (() => void)[];
452
+ deactivated?: (() => void) | (() => void)[];
453
+ beforeDestroy?: (() => void) | (() => void)[];
454
+ beforeUnmount?: (() => void) | (() => void)[];
455
+ destroyed?: (() => void) | (() => void)[];
456
+ unmounted?: (() => void) | (() => void)[];
457
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
458
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
459
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
460
+ };
461
+ $forceUpdate: () => void;
462
+ $nextTick: typeof nextTick;
463
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
464
+ } & Readonly<{
465
+ tabindex: number | string;
466
+ height: number | string;
467
+ maxHeight: number | string;
468
+ tag: keyof HTMLElementTagNameMap | (string & {});
469
+ minSize: number;
470
+ distance: number;
471
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
472
+ wrapClass: string | string[];
473
+ viewClass: string | string[];
474
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
475
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
476
+ height: {
477
+ type: import('vue').PropType<string | number>;
478
+ default: string;
479
+ };
480
+ id: {
481
+ type: import('vue').PropType<string>;
482
+ };
483
+ ariaLabel: {
484
+ type: import('vue').PropType<string>;
485
+ };
486
+ role: {
487
+ type: import('vue').PropType<string>;
488
+ };
489
+ tag: {
490
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
491
+ default: string;
492
+ };
493
+ maxHeight: {
494
+ type: import('vue').PropType<string | number>;
495
+ default: string;
496
+ };
497
+ tabindex: {
498
+ type: import('vue').PropType<string | number>;
499
+ default: undefined;
500
+ };
501
+ distance: {
502
+ type: import('vue').PropType<number>;
503
+ default: number;
504
+ };
505
+ native: {
506
+ type: import('vue').PropType<boolean>;
507
+ };
508
+ wrapStyle: {
509
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
510
+ default: string;
511
+ };
512
+ wrapClass: {
513
+ type: import('vue').PropType<string | string[]>;
514
+ default: string;
515
+ };
516
+ viewClass: {
517
+ type: import('vue').PropType<string | string[]>;
518
+ default: string;
519
+ };
520
+ viewStyle: {
521
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
522
+ default: string;
523
+ };
524
+ noresize: {
525
+ type: import('vue').PropType<boolean>;
526
+ };
527
+ always: {
528
+ type: import('vue').PropType<boolean>;
529
+ };
530
+ minSize: {
531
+ type: import('vue').PropType<number>;
532
+ default: number;
533
+ };
534
+ ariaOrientation: {
535
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
536
+ };
537
+ }>> & {
538
+ onScroll?: ((args_0: {
539
+ scrollTop: number;
540
+ scrollLeft: number;
541
+ }) => any) | undefined;
542
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
543
+ }, "height" | "tag" | "update" | "maxHeight" | "tabindex" | "handleScroll" | "scrollTo" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
544
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
545
+ update: () => void;
546
+ scrollTo: {
547
+ (xCord: number, yCord?: number): void;
548
+ (options: ScrollToOptions): void;
549
+ };
550
+ setScrollTop: (value: number) => void;
551
+ setScrollLeft: (value: number) => void;
552
+ handleScroll: () => void;
553
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
554
+ $slots: {
555
+ default?: (props: {}) => any;
556
+ };
557
+ }) | null;
558
+ };
559
+ rootEl: HTMLDivElement;
560
+ };
561
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
562
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
563
+ keyboardConfig: {
564
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.KeyboardConfig>;
565
+ default: () => any;
566
+ };
567
+ clipConfig: {
568
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.ClipConfig>;
569
+ default: () => any;
570
+ };
571
+ menuConfig: {
572
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MenuConfig>;
573
+ default: () => {};
574
+ };
575
+ fnrConfig: {
576
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.FnrConfig>;
577
+ default: () => {};
578
+ };
579
+ mouseConfig: {
580
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MouseConfig>;
581
+ default: () => any;
582
+ };
583
+ areaConfig: {
584
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.AreaConfig>;
585
+ default: () => any;
586
+ };
587
+ checkboxConfig: {
588
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig>;
589
+ default: () => any;
590
+ };
591
+ radioConfig: {
592
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.RadioConfig>;
593
+ default: () => any;
594
+ };
595
+ columns: {
596
+ type: import('vue').PropType<TtTableProps["columns"]>;
597
+ default: () => never[];
598
+ };
599
+ height: {
600
+ type: (NumberConstructor | StringConstructor)[];
601
+ default: undefined;
602
+ };
603
+ showOverflow: {
604
+ type: import('vue').PropType<TtTableProps["showOverflow"]>;
605
+ default: boolean;
606
+ };
607
+ showHeaderOverflow: {
608
+ type: import('vue').PropType<TtTableProps["showHeaderOverflow"]>;
609
+ default: boolean;
610
+ };
611
+ pagerConfig: {
612
+ type: import('vue').PropType<TtTableProps["pagerConfig"]>;
613
+ default: () => any;
614
+ };
615
+ toolbarConfig: {
616
+ type: import('vue').PropType<TtTableProps["toolbarConfig"]>;
617
+ default: () => null;
618
+ };
619
+ zoomConfig: {
620
+ type: import('vue').PropType<TtTableProps["zoomConfig"]>;
621
+ default: () => null;
622
+ };
623
+ size: {
624
+ type: import('vue').PropType<TtTableProps["size"]>;
625
+ default: () => any;
626
+ };
627
+ toolTipErrorPlacement: {
628
+ type: import('vue').PropType<"top" | "bottom" | "left" | "right">;
629
+ default: string;
630
+ };
631
+ showToolbar: any;
632
+ columnsFieldSort: any;
633
+ columnsFieldNoSort: any;
634
+ showRefresh: {
635
+ type: BooleanConstructor;
636
+ default: () => any;
637
+ };
638
+ showSetting: {
639
+ type: BooleanConstructor;
640
+ default: () => any;
641
+ };
642
+ showSetColumn: {
643
+ type: BooleanConstructor;
644
+ default: () => any;
645
+ };
646
+ showLineHeight: {
647
+ type: BooleanConstructor;
648
+ default: () => any;
649
+ };
650
+ notSetColumnField: any;
651
+ filterNoVisibleField: any;
652
+ showTableAlert: any;
653
+ api: {
654
+ type: import('vue').PropType<(...arg: any[]) => Promise<any>>;
655
+ default: null;
656
+ };
657
+ searchInfo: {
658
+ type: ObjectConstructor;
659
+ default: () => {};
660
+ };
661
+ immediate: any;
662
+ resultCode: {
663
+ type: (NumberConstructor | StringConstructor)[];
664
+ default: number;
665
+ };
666
+ afterFetch: {
667
+ type: import('vue').PropType<TtTableProps["afterFetch"]>;
668
+ default: null;
669
+ };
670
+ beforeFetch: {
671
+ type: import('vue').PropType<TtTableProps["beforeFetch"]>;
672
+ default: null;
673
+ };
674
+ data: {
675
+ type: import('vue').PropType<TtTableProps["data"]>;
676
+ default: never[];
677
+ };
678
+ isScrollFetch: {
679
+ type: BooleanConstructor;
680
+ default: boolean;
681
+ };
682
+ showScrollFetchLoading: {
683
+ type: BooleanConstructor;
684
+ default: boolean;
685
+ };
686
+ showCheckbox: any;
687
+ showRadio: any;
688
+ showIndex: any;
689
+ isCellResize: any;
690
+ isColumnsDrag: any;
691
+ isCellSort: any;
692
+ isAreaCheckData: any;
693
+ showAction: any;
694
+ actionWidth: any;
695
+ actionTitle: any;
696
+ actionProps: {
697
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
698
+ default: () => {};
699
+ };
700
+ indexColumnProps: {
701
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
702
+ default: () => {};
703
+ };
704
+ checkboxColumnProps: {
705
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
706
+ default: () => {};
707
+ };
708
+ rowDragColumnProps: {
709
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
710
+ default: () => {};
711
+ };
712
+ radioColumnProps: {
713
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
714
+ default: () => {};
715
+ };
716
+ tableRowId: {
717
+ type: StringConstructor;
718
+ default: () => any;
719
+ };
720
+ customizeColumn: {
721
+ type: import('vue').PropType<TtTableProps["customizeColumn"]>;
722
+ };
723
+ showPager: any;
724
+ total: any;
725
+ currentPageField: {
726
+ type: StringConstructor;
727
+ default: () => any;
728
+ };
729
+ pageSizeField: {
730
+ type: StringConstructor;
731
+ default: () => any;
732
+ };
733
+ totalField: {
734
+ type: StringConstructor;
735
+ default: () => any;
736
+ };
737
+ dataField: {
738
+ type: StringConstructor;
739
+ default: () => any;
740
+ };
741
+ modelValue: {
742
+ type: ArrayConstructor[];
743
+ default: () => never[];
744
+ };
745
+ title: any;
746
+ showTitle: any;
747
+ autoHeight: any;
748
+ offsetHeight: any;
749
+ leftSlotWidth: any;
750
+ rightSlotWidth: any;
751
+ loadingText: {
752
+ type: StringConstructor;
753
+ default: () => any;
754
+ };
755
+ dragIcon: {
756
+ type: StringConstructor;
757
+ default: () => any;
758
+ };
759
+ emptyImageStyle: any;
760
+ emptyText: {
761
+ type: StringConstructor;
762
+ default: () => any;
763
+ };
764
+ emptyImageStatus: {
765
+ type: import('vue').PropType<"no-data" | "no-search">;
766
+ default: string;
767
+ };
768
+ noSearchText: {
769
+ type: StringConstructor;
770
+ default: () => any;
771
+ };
772
+ isHanderSubmit: any;
773
+ columnsKey: any;
774
+ useCache: {
775
+ type: BooleanConstructor;
776
+ default: () => any;
777
+ };
778
+ useHttpCache: {
779
+ type: BooleanConstructor;
780
+ default: () => any;
781
+ };
782
+ useHttpCustomerCache: {
783
+ type: BooleanConstructor;
784
+ default: () => any;
785
+ };
786
+ defaultDisplayFields: {
787
+ type: import('vue').PropType<string[]>;
788
+ default: () => any;
789
+ };
790
+ isRowDrag: any;
791
+ treeNode: any;
792
+ getSyncSlotComponent: {
793
+ type: import('vue').PropType<(column: any, row: any, type: "default" | "edit") => import('vue').VNode | import('vue').VNode[] | string>;
794
+ };
795
+ clearTreeExpand: any;
796
+ isI18n: any;
797
+ isDataCloneDeep: any;
798
+ tableApi: {
799
+ type: import('vue').PropType<TtTableExtendedTableApi>;
800
+ };
801
+ formApi: {
802
+ type: import('vue').PropType<import('vben-core-form-ui').ExtendedFormApi>;
803
+ };
804
+ useSearchForm: any;
805
+ disabledTeleport: any;
806
+ testId: {
807
+ type: StringConstructor;
808
+ default: undefined;
809
+ };
810
+ }>, {
811
+ xGrid: Ref<VxeGridInstance<Recordable> | undefined, VxeGridInstance<Recordable> | undefined>;
812
+ reload: (data?: import('..').FetchParams) => Promise<void>;
813
+ redoHeight: () => void;
814
+ setProps: (props: Partial<TtTableProps>) => void;
815
+ setLoading: (loading: boolean) => void;
816
+ getLoading?: import('vue').ComputedRef<boolean | undefined>;
817
+ setTableColumns: (columns: import("vxe-table").VxeGridPropTypes.Columns<import("vxe-table").VxeTablePropTypes.Row>) => void;
818
+ getCacheColumns: () => import("vxe-table").VxeGridPropTypes.Columns<import("vxe-table").VxeTablePropTypes.Row> | undefined;
819
+ emitLoading?: (loading: boolean, uid: number) => void;
820
+ getDataSource: () => import("vxe-table").VxeTablePropTypes.Row[];
821
+ setPagination: (props: Partial<import("vxe-table").VxeGridPropTypes.PagerConfig>) => void;
822
+ getPagination: () => import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
823
+ getTableInstance: () => import('vxe-table').VxeGridMethods;
824
+ getSelectRowKeys: () => import('..').TtSelectRowKeysType;
825
+ getSelectRows: () => import('..').TtSelectRowsType;
826
+ getTableColumns: () => import("vxe-table").VxeGridPropTypes.Columns<import("vxe-table").VxeTablePropTypes.Row> | undefined;
827
+ setCacheColumns: (columns: import("vxe-table").VxeGridPropTypes.Columns<import("vxe-table").VxeTablePropTypes.Row>) => void;
828
+ setSelectedRowKeys: (rows: import('..').TtSelectRowsType, keys?: import('..').TtSelectRowKeysType) => void;
829
+ clearSelectedRowKeys: () => void;
830
+ selectedKeys: import('vue').MaybeRef<import('..').TtSelectRowKeysType>;
831
+ selectedRows: import('vue').MaybeRef<import('..').TtSelectRowsType>;
832
+ getHttpFieldsSlot: () => {
833
+ default: string[];
834
+ edit: string[];
835
+ };
836
+ insert: (records: any) => Promise<{
837
+ row: import("vxe-table").VxeTablePropTypes.Row;
838
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
839
+ }>;
840
+ insertAt: (records: any, row: any | -1 | null) => Promise<{
841
+ row: import("vxe-table").VxeTablePropTypes.Row;
842
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
843
+ }>;
844
+ remove: (rows?: any | any[]) => Promise<{
845
+ row: import("vxe-table").VxeTablePropTypes.Row;
846
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
847
+ }>;
848
+ removeCheckboxRow: () => Promise<{
849
+ row: import("vxe-table").VxeTablePropTypes.Row;
850
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
851
+ }>;
852
+ removeRadioRow: () => Promise<{
853
+ row: import("vxe-table").VxeTablePropTypes.Row;
854
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
855
+ }>;
856
+ removeCurrentRow: () => Promise<{
857
+ row: import("vxe-table").VxeTablePropTypes.Row;
858
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
859
+ }>;
860
+ clearEditRevertData: (records: import("vxe-table").VxeTablePropTypes.Row) => void;
861
+ setEditRow: (row: import("vxe-table").VxeTablePropTypes.Row, fieldOrColumn?: boolean | string | VxeTableDefines.ColumnInfo) => void;
862
+ setEditCell: (row: import("vxe-table").VxeTablePropTypes.Row, fieldOrColumn: string | VxeTableDefines.ColumnInfo) => void;
863
+ loadData: (data: any[]) => Promise<any>;
864
+ reloadData: (data: any[]) => Promise<void>;
865
+ reloadColumn: (columns: (VxeTableDefines.ColumnOptions<any> | VxeTableDefines.ColumnInfo<any>)[]) => Promise<void>;
866
+ reloadRow: (rows: any | any[], record?: any, field?: string) => Promise<void>;
867
+ clearData: (rows?: any | any[], field?: string) => Promise<any>;
868
+ reloadRowExpand: (row: any) => Promise<void>;
869
+ reloadTreeExpand: (row: any) => Promise<any>;
870
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
871
+ keyboardConfig: {
872
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.KeyboardConfig>;
873
+ default: () => any;
874
+ };
875
+ clipConfig: {
876
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.ClipConfig>;
877
+ default: () => any;
878
+ };
879
+ menuConfig: {
880
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MenuConfig>;
881
+ default: () => {};
882
+ };
883
+ fnrConfig: {
884
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.FnrConfig>;
885
+ default: () => {};
886
+ };
887
+ mouseConfig: {
888
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MouseConfig>;
889
+ default: () => any;
890
+ };
891
+ areaConfig: {
892
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.AreaConfig>;
893
+ default: () => any;
894
+ };
895
+ checkboxConfig: {
896
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig>;
897
+ default: () => any;
898
+ };
899
+ radioConfig: {
900
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.RadioConfig>;
901
+ default: () => any;
902
+ };
903
+ columns: {
904
+ type: import('vue').PropType<TtTableProps["columns"]>;
905
+ default: () => never[];
906
+ };
907
+ height: {
908
+ type: (NumberConstructor | StringConstructor)[];
909
+ default: undefined;
910
+ };
911
+ showOverflow: {
912
+ type: import('vue').PropType<TtTableProps["showOverflow"]>;
913
+ default: boolean;
914
+ };
915
+ showHeaderOverflow: {
916
+ type: import('vue').PropType<TtTableProps["showHeaderOverflow"]>;
917
+ default: boolean;
918
+ };
919
+ pagerConfig: {
920
+ type: import('vue').PropType<TtTableProps["pagerConfig"]>;
921
+ default: () => any;
922
+ };
923
+ toolbarConfig: {
924
+ type: import('vue').PropType<TtTableProps["toolbarConfig"]>;
925
+ default: () => null;
926
+ };
927
+ zoomConfig: {
928
+ type: import('vue').PropType<TtTableProps["zoomConfig"]>;
929
+ default: () => null;
930
+ };
931
+ size: {
932
+ type: import('vue').PropType<TtTableProps["size"]>;
933
+ default: () => any;
934
+ };
935
+ toolTipErrorPlacement: {
936
+ type: import('vue').PropType<"top" | "bottom" | "left" | "right">;
937
+ default: string;
938
+ };
939
+ showToolbar: any;
940
+ columnsFieldSort: any;
941
+ columnsFieldNoSort: any;
942
+ showRefresh: {
943
+ type: BooleanConstructor;
944
+ default: () => any;
945
+ };
946
+ showSetting: {
947
+ type: BooleanConstructor;
948
+ default: () => any;
949
+ };
950
+ showSetColumn: {
951
+ type: BooleanConstructor;
952
+ default: () => any;
953
+ };
954
+ showLineHeight: {
955
+ type: BooleanConstructor;
956
+ default: () => any;
957
+ };
958
+ notSetColumnField: any;
959
+ filterNoVisibleField: any;
960
+ showTableAlert: any;
961
+ api: {
962
+ type: import('vue').PropType<(...arg: any[]) => Promise<any>>;
963
+ default: null;
964
+ };
965
+ searchInfo: {
966
+ type: ObjectConstructor;
967
+ default: () => {};
968
+ };
969
+ immediate: any;
970
+ resultCode: {
971
+ type: (NumberConstructor | StringConstructor)[];
972
+ default: number;
973
+ };
974
+ afterFetch: {
975
+ type: import('vue').PropType<TtTableProps["afterFetch"]>;
976
+ default: null;
977
+ };
978
+ beforeFetch: {
979
+ type: import('vue').PropType<TtTableProps["beforeFetch"]>;
980
+ default: null;
981
+ };
982
+ data: {
983
+ type: import('vue').PropType<TtTableProps["data"]>;
984
+ default: never[];
985
+ };
986
+ isScrollFetch: {
987
+ type: BooleanConstructor;
988
+ default: boolean;
989
+ };
990
+ showScrollFetchLoading: {
991
+ type: BooleanConstructor;
992
+ default: boolean;
993
+ };
994
+ showCheckbox: any;
995
+ showRadio: any;
996
+ showIndex: any;
997
+ isCellResize: any;
998
+ isColumnsDrag: any;
999
+ isCellSort: any;
1000
+ isAreaCheckData: any;
1001
+ showAction: any;
1002
+ actionWidth: any;
1003
+ actionTitle: any;
1004
+ actionProps: {
1005
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
1006
+ default: () => {};
1007
+ };
1008
+ indexColumnProps: {
1009
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
1010
+ default: () => {};
1011
+ };
1012
+ checkboxColumnProps: {
1013
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
1014
+ default: () => {};
1015
+ };
1016
+ rowDragColumnProps: {
1017
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
1018
+ default: () => {};
1019
+ };
1020
+ radioColumnProps: {
1021
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
1022
+ default: () => {};
1023
+ };
1024
+ tableRowId: {
1025
+ type: StringConstructor;
1026
+ default: () => any;
1027
+ };
1028
+ customizeColumn: {
1029
+ type: import('vue').PropType<TtTableProps["customizeColumn"]>;
1030
+ };
1031
+ showPager: any;
1032
+ total: any;
1033
+ currentPageField: {
1034
+ type: StringConstructor;
1035
+ default: () => any;
1036
+ };
1037
+ pageSizeField: {
1038
+ type: StringConstructor;
1039
+ default: () => any;
1040
+ };
1041
+ totalField: {
1042
+ type: StringConstructor;
1043
+ default: () => any;
1044
+ };
1045
+ dataField: {
1046
+ type: StringConstructor;
1047
+ default: () => any;
1048
+ };
1049
+ modelValue: {
1050
+ type: ArrayConstructor[];
1051
+ default: () => never[];
1052
+ };
1053
+ title: any;
1054
+ showTitle: any;
1055
+ autoHeight: any;
1056
+ offsetHeight: any;
1057
+ leftSlotWidth: any;
1058
+ rightSlotWidth: any;
1059
+ loadingText: {
1060
+ type: StringConstructor;
1061
+ default: () => any;
1062
+ };
1063
+ dragIcon: {
1064
+ type: StringConstructor;
1065
+ default: () => any;
1066
+ };
1067
+ emptyImageStyle: any;
1068
+ emptyText: {
1069
+ type: StringConstructor;
1070
+ default: () => any;
1071
+ };
1072
+ emptyImageStatus: {
1073
+ type: import('vue').PropType<"no-data" | "no-search">;
1074
+ default: string;
1075
+ };
1076
+ noSearchText: {
1077
+ type: StringConstructor;
1078
+ default: () => any;
1079
+ };
1080
+ isHanderSubmit: any;
1081
+ columnsKey: any;
1082
+ useCache: {
1083
+ type: BooleanConstructor;
1084
+ default: () => any;
1085
+ };
1086
+ useHttpCache: {
1087
+ type: BooleanConstructor;
1088
+ default: () => any;
1089
+ };
1090
+ useHttpCustomerCache: {
1091
+ type: BooleanConstructor;
1092
+ default: () => any;
1093
+ };
1094
+ defaultDisplayFields: {
1095
+ type: import('vue').PropType<string[]>;
1096
+ default: () => any;
1097
+ };
1098
+ isRowDrag: any;
1099
+ treeNode: any;
1100
+ getSyncSlotComponent: {
1101
+ type: import('vue').PropType<(column: any, row: any, type: "default" | "edit") => import('vue').VNode | import('vue').VNode[] | string>;
1102
+ };
1103
+ clearTreeExpand: any;
1104
+ isI18n: any;
1105
+ isDataCloneDeep: any;
1106
+ tableApi: {
1107
+ type: import('vue').PropType<TtTableExtendedTableApi>;
1108
+ };
1109
+ formApi: {
1110
+ type: import('vue').PropType<import('vben-core-form-ui').ExtendedFormApi>;
1111
+ };
1112
+ useSearchForm: any;
1113
+ disabledTeleport: any;
1114
+ testId: {
1115
+ type: StringConstructor;
1116
+ default: undefined;
1117
+ };
1118
+ }>> & Readonly<{}>, {
1119
+ data: import('vue').MaybeRef<any[]> | undefined;
1120
+ title: any;
1121
+ immediate: any;
1122
+ size: import('vxe-pc-ui').VxeComponentSizeType | undefined;
1123
+ height: string | number;
1124
+ testId: string;
1125
+ modelValue: unknown[];
1126
+ api: (...arg: any[]) => Promise<any>;
1127
+ total: any;
1128
+ loadingText: string;
1129
+ pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
1130
+ showPager: any;
1131
+ showCheckbox: any;
1132
+ columns: import('vue').MaybeRef<VxeTableDefines.ColumnOptions<any>[]> | undefined;
1133
+ toolbarConfig: import("vxe-table").VxeGridPropTypes.ToolbarConfig | undefined;
1134
+ zoomConfig: import("vxe-table").VxeGridPropTypes.ZoomConfig | undefined;
1135
+ showOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
1136
+ showHeaderOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
1137
+ radioConfig: import("vxe-table").VxeTablePropTypes.RadioConfig<import("vxe-table").VxeTablePropTypes.Row>;
1138
+ checkboxConfig: import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTablePropTypes.Row>;
1139
+ menuConfig: import("vxe-table").VxeTablePropTypes.MenuConfig<any>;
1140
+ mouseConfig: import("vxe-table").VxeTablePropTypes.MouseConfig;
1141
+ areaConfig: import("vxe-table").VxeTablePropTypes.AreaConfig<any>;
1142
+ fnrConfig: import("vxe-table").VxeTablePropTypes.FnrConfig<any>;
1143
+ keyboardConfig: import("vxe-table").VxeTablePropTypes.KeyboardConfig<any>;
1144
+ clipConfig: import("vxe-table").VxeTablePropTypes.ClipConfig<any>;
1145
+ emptyText: string;
1146
+ clearTreeExpand: any;
1147
+ offsetHeight: any;
1148
+ showRadio: any;
1149
+ showIndex: any;
1150
+ isCellResize: any;
1151
+ isColumnsDrag: any;
1152
+ isCellSort: any;
1153
+ showAction: any;
1154
+ actionWidth: any;
1155
+ actionTitle: any;
1156
+ actionProps: VxeTableDefines.ColumnOptions<any>;
1157
+ indexColumnProps: VxeTableDefines.ColumnOptions<any>;
1158
+ checkboxColumnProps: VxeTableDefines.ColumnOptions<any>;
1159
+ rowDragColumnProps: VxeTableDefines.ColumnOptions<any>;
1160
+ radioColumnProps: VxeTableDefines.ColumnOptions<any>;
1161
+ searchInfo: Record<string, any>;
1162
+ showToolbar: any;
1163
+ columnsFieldSort: any;
1164
+ columnsFieldNoSort: any;
1165
+ notSetColumnField: any;
1166
+ filterNoVisibleField: any;
1167
+ showTableAlert: any;
1168
+ isRowDrag: any;
1169
+ treeNode: any;
1170
+ isScrollFetch: boolean;
1171
+ showScrollFetchLoading: boolean;
1172
+ tableRowId: string;
1173
+ currentPageField: string;
1174
+ pageSizeField: string;
1175
+ totalField: string;
1176
+ dataField: string;
1177
+ showTitle: any;
1178
+ autoHeight: any;
1179
+ noSearchText: string;
1180
+ emptyImageStyle: any;
1181
+ emptyImageStatus: "no-data" | "no-search";
1182
+ isHanderSubmit: any;
1183
+ columnsKey: any;
1184
+ useCache: boolean;
1185
+ showSetting: boolean;
1186
+ showSetColumn: boolean;
1187
+ leftSlotWidth: any;
1188
+ rightSlotWidth: any;
1189
+ dragIcon: string;
1190
+ showLineHeight: boolean;
1191
+ showRefresh: boolean;
1192
+ useHttpCache: boolean;
1193
+ useHttpCustomerCache: boolean;
1194
+ defaultDisplayFields: string[];
1195
+ isI18n: any;
1196
+ isDataCloneDeep: any;
1197
+ useSearchForm: any;
1198
+ toolTipErrorPlacement: "top" | "bottom" | "left" | "right";
1199
+ isAreaCheckData: any;
1200
+ resultCode: string | number;
1201
+ afterFetch: ((data: import("vxe-table").VxeTablePropTypes.Row[], res: globalThis.Recordable) => Promise<import("vxe-table").VxeTablePropTypes.Row[]>) | undefined;
1202
+ beforeFetch: ((params: globalThis.Recordable) => Promise<globalThis.Recordable>) | undefined;
1203
+ disabledTeleport: any;
1204
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
1205
+ wrapRef: HTMLDivElement;
1206
+ xGrid: (import('vxe-table').VxeGridMethods<any> & {
1207
+ $props: VxeGridProps<any> & VxeGridEventProps<any>;
1208
+ $slots: import('vxe-table').VxeGridSlots<any>;
1209
+ }) | null;
1210
+ leftSlotScrollbarRef: ({
1211
+ $: import('vue').ComponentInternalInstance;
1212
+ $data: {};
1213
+ $props: Partial<{
1214
+ tabindex: number | string;
1215
+ height: number | string;
1216
+ maxHeight: number | string;
1217
+ tag: keyof HTMLElementTagNameMap | (string & {});
1218
+ minSize: number;
1219
+ distance: number;
1220
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1221
+ wrapClass: string | string[];
1222
+ viewClass: string | string[];
1223
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1224
+ }> & Omit<{
1225
+ readonly height: number | string;
1226
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
1227
+ readonly maxHeight: number | string;
1228
+ readonly distance: number;
1229
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1230
+ readonly wrapClass: string | string[];
1231
+ readonly viewClass: string | string[];
1232
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1233
+ readonly minSize: number;
1234
+ readonly id?: string | undefined;
1235
+ readonly ariaLabel?: string | undefined;
1236
+ readonly role?: string | undefined;
1237
+ readonly tabindex?: number | string | undefined;
1238
+ readonly native?: boolean | undefined;
1239
+ readonly noresize?: boolean | undefined;
1240
+ readonly always?: boolean | undefined;
1241
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
1242
+ onScroll?: ((args_0: {
1243
+ scrollTop: number;
1244
+ scrollLeft: number;
1245
+ }) => any) | undefined | undefined;
1246
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
1247
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "maxHeight" | "tabindex" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
1248
+ $attrs: {
1249
+ [x: string]: unknown;
1250
+ };
1251
+ $refs: {
1252
+ [x: string]: unknown;
1253
+ };
1254
+ $slots: Readonly<{
1255
+ [name: string]: import('vue').Slot<any> | undefined;
1256
+ }>;
1257
+ $root: import('vue').ComponentPublicInstance | null;
1258
+ $parent: import('vue').ComponentPublicInstance | null;
1259
+ $host: Element | null;
1260
+ $emit: ((event: "scroll", args_0: {
1261
+ scrollTop: number;
1262
+ scrollLeft: number;
1263
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
1264
+ $el: any;
1265
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
1266
+ height: {
1267
+ type: import('vue').PropType<string | number>;
1268
+ default: string;
1269
+ };
1270
+ id: {
1271
+ type: import('vue').PropType<string>;
1272
+ };
1273
+ ariaLabel: {
1274
+ type: import('vue').PropType<string>;
1275
+ };
1276
+ role: {
1277
+ type: import('vue').PropType<string>;
1278
+ };
1279
+ tag: {
1280
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1281
+ default: string;
1282
+ };
1283
+ maxHeight: {
1284
+ type: import('vue').PropType<string | number>;
1285
+ default: string;
1286
+ };
1287
+ tabindex: {
1288
+ type: import('vue').PropType<string | number>;
1289
+ default: undefined;
1290
+ };
1291
+ distance: {
1292
+ type: import('vue').PropType<number>;
1293
+ default: number;
1294
+ };
1295
+ native: {
1296
+ type: import('vue').PropType<boolean>;
1297
+ };
1298
+ wrapStyle: {
1299
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1300
+ default: string;
1301
+ };
1302
+ wrapClass: {
1303
+ type: import('vue').PropType<string | string[]>;
1304
+ default: string;
1305
+ };
1306
+ viewClass: {
1307
+ type: import('vue').PropType<string | string[]>;
1308
+ default: string;
1309
+ };
1310
+ viewStyle: {
1311
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1312
+ default: string;
1313
+ };
1314
+ noresize: {
1315
+ type: import('vue').PropType<boolean>;
1316
+ };
1317
+ always: {
1318
+ type: import('vue').PropType<boolean>;
1319
+ };
1320
+ minSize: {
1321
+ type: import('vue').PropType<number>;
1322
+ default: number;
1323
+ };
1324
+ ariaOrientation: {
1325
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1326
+ };
1327
+ }>> & {
1328
+ onScroll?: ((args_0: {
1329
+ scrollTop: number;
1330
+ scrollLeft: number;
1331
+ }) => any) | undefined;
1332
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1333
+ }, {
1334
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1335
+ update: () => void;
1336
+ scrollTo: {
1337
+ (xCord: number, yCord?: number): void;
1338
+ (options: ScrollToOptions): void;
1339
+ };
1340
+ setScrollTop: (value: number) => void;
1341
+ setScrollLeft: (value: number) => void;
1342
+ handleScroll: () => void;
1343
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1344
+ scroll: (args_0: {
1345
+ scrollTop: number;
1346
+ scrollLeft: number;
1347
+ }) => void;
1348
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
1349
+ }, string, {
1350
+ tabindex: number | string;
1351
+ height: number | string;
1352
+ maxHeight: number | string;
1353
+ tag: keyof HTMLElementTagNameMap | (string & {});
1354
+ minSize: number;
1355
+ distance: number;
1356
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1357
+ wrapClass: string | string[];
1358
+ viewClass: string | string[];
1359
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1360
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1361
+ beforeCreate?: (() => void) | (() => void)[];
1362
+ created?: (() => void) | (() => void)[];
1363
+ beforeMount?: (() => void) | (() => void)[];
1364
+ mounted?: (() => void) | (() => void)[];
1365
+ beforeUpdate?: (() => void) | (() => void)[];
1366
+ updated?: (() => void) | (() => void)[];
1367
+ activated?: (() => void) | (() => void)[];
1368
+ deactivated?: (() => void) | (() => void)[];
1369
+ beforeDestroy?: (() => void) | (() => void)[];
1370
+ beforeUnmount?: (() => void) | (() => void)[];
1371
+ destroyed?: (() => void) | (() => void)[];
1372
+ unmounted?: (() => void) | (() => void)[];
1373
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1374
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1375
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1376
+ };
1377
+ $forceUpdate: () => void;
1378
+ $nextTick: typeof nextTick;
1379
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1380
+ } & Readonly<{
1381
+ tabindex: number | string;
1382
+ height: number | string;
1383
+ maxHeight: number | string;
1384
+ tag: keyof HTMLElementTagNameMap | (string & {});
1385
+ minSize: number;
1386
+ distance: number;
1387
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1388
+ wrapClass: string | string[];
1389
+ viewClass: string | string[];
1390
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1391
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
1392
+ height: {
1393
+ type: import('vue').PropType<string | number>;
1394
+ default: string;
1395
+ };
1396
+ id: {
1397
+ type: import('vue').PropType<string>;
1398
+ };
1399
+ ariaLabel: {
1400
+ type: import('vue').PropType<string>;
1401
+ };
1402
+ role: {
1403
+ type: import('vue').PropType<string>;
1404
+ };
1405
+ tag: {
1406
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1407
+ default: string;
1408
+ };
1409
+ maxHeight: {
1410
+ type: import('vue').PropType<string | number>;
1411
+ default: string;
1412
+ };
1413
+ tabindex: {
1414
+ type: import('vue').PropType<string | number>;
1415
+ default: undefined;
1416
+ };
1417
+ distance: {
1418
+ type: import('vue').PropType<number>;
1419
+ default: number;
1420
+ };
1421
+ native: {
1422
+ type: import('vue').PropType<boolean>;
1423
+ };
1424
+ wrapStyle: {
1425
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1426
+ default: string;
1427
+ };
1428
+ wrapClass: {
1429
+ type: import('vue').PropType<string | string[]>;
1430
+ default: string;
1431
+ };
1432
+ viewClass: {
1433
+ type: import('vue').PropType<string | string[]>;
1434
+ default: string;
1435
+ };
1436
+ viewStyle: {
1437
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1438
+ default: string;
1439
+ };
1440
+ noresize: {
1441
+ type: import('vue').PropType<boolean>;
1442
+ };
1443
+ always: {
1444
+ type: import('vue').PropType<boolean>;
1445
+ };
1446
+ minSize: {
1447
+ type: import('vue').PropType<number>;
1448
+ default: number;
1449
+ };
1450
+ ariaOrientation: {
1451
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1452
+ };
1453
+ }>> & {
1454
+ onScroll?: ((args_0: {
1455
+ scrollTop: number;
1456
+ scrollLeft: number;
1457
+ }) => any) | undefined;
1458
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1459
+ }, "height" | "tag" | "update" | "maxHeight" | "tabindex" | "handleScroll" | "scrollTo" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
1460
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1461
+ update: () => void;
1462
+ scrollTo: {
1463
+ (xCord: number, yCord?: number): void;
1464
+ (options: ScrollToOptions): void;
1465
+ };
1466
+ setScrollTop: (value: number) => void;
1467
+ setScrollLeft: (value: number) => void;
1468
+ handleScroll: () => void;
1469
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1470
+ $slots: {
1471
+ default?: (props: {}) => any;
1472
+ };
1473
+ }) | null;
1474
+ rightSlotScrollbarRef: ({
1475
+ $: import('vue').ComponentInternalInstance;
1476
+ $data: {};
1477
+ $props: Partial<{
1478
+ tabindex: number | string;
1479
+ height: number | string;
1480
+ maxHeight: number | string;
1481
+ tag: keyof HTMLElementTagNameMap | (string & {});
1482
+ minSize: number;
1483
+ distance: number;
1484
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1485
+ wrapClass: string | string[];
1486
+ viewClass: string | string[];
1487
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1488
+ }> & Omit<{
1489
+ readonly height: number | string;
1490
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
1491
+ readonly maxHeight: number | string;
1492
+ readonly distance: number;
1493
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1494
+ readonly wrapClass: string | string[];
1495
+ readonly viewClass: string | string[];
1496
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1497
+ readonly minSize: number;
1498
+ readonly id?: string | undefined;
1499
+ readonly ariaLabel?: string | undefined;
1500
+ readonly role?: string | undefined;
1501
+ readonly tabindex?: number | string | undefined;
1502
+ readonly native?: boolean | undefined;
1503
+ readonly noresize?: boolean | undefined;
1504
+ readonly always?: boolean | undefined;
1505
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
1506
+ onScroll?: ((args_0: {
1507
+ scrollTop: number;
1508
+ scrollLeft: number;
1509
+ }) => any) | undefined | undefined;
1510
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
1511
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "maxHeight" | "tabindex" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
1512
+ $attrs: {
1513
+ [x: string]: unknown;
1514
+ };
1515
+ $refs: {
1516
+ [x: string]: unknown;
1517
+ };
1518
+ $slots: Readonly<{
1519
+ [name: string]: import('vue').Slot<any> | undefined;
1520
+ }>;
1521
+ $root: import('vue').ComponentPublicInstance | null;
1522
+ $parent: import('vue').ComponentPublicInstance | null;
1523
+ $host: Element | null;
1524
+ $emit: ((event: "scroll", args_0: {
1525
+ scrollTop: number;
1526
+ scrollLeft: number;
1527
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
1528
+ $el: any;
1529
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
1530
+ height: {
1531
+ type: import('vue').PropType<string | number>;
1532
+ default: string;
1533
+ };
1534
+ id: {
1535
+ type: import('vue').PropType<string>;
1536
+ };
1537
+ ariaLabel: {
1538
+ type: import('vue').PropType<string>;
1539
+ };
1540
+ role: {
1541
+ type: import('vue').PropType<string>;
1542
+ };
1543
+ tag: {
1544
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1545
+ default: string;
1546
+ };
1547
+ maxHeight: {
1548
+ type: import('vue').PropType<string | number>;
1549
+ default: string;
1550
+ };
1551
+ tabindex: {
1552
+ type: import('vue').PropType<string | number>;
1553
+ default: undefined;
1554
+ };
1555
+ distance: {
1556
+ type: import('vue').PropType<number>;
1557
+ default: number;
1558
+ };
1559
+ native: {
1560
+ type: import('vue').PropType<boolean>;
1561
+ };
1562
+ wrapStyle: {
1563
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1564
+ default: string;
1565
+ };
1566
+ wrapClass: {
1567
+ type: import('vue').PropType<string | string[]>;
1568
+ default: string;
1569
+ };
1570
+ viewClass: {
1571
+ type: import('vue').PropType<string | string[]>;
1572
+ default: string;
1573
+ };
1574
+ viewStyle: {
1575
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1576
+ default: string;
1577
+ };
1578
+ noresize: {
1579
+ type: import('vue').PropType<boolean>;
1580
+ };
1581
+ always: {
1582
+ type: import('vue').PropType<boolean>;
1583
+ };
1584
+ minSize: {
1585
+ type: import('vue').PropType<number>;
1586
+ default: number;
1587
+ };
1588
+ ariaOrientation: {
1589
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1590
+ };
1591
+ }>> & {
1592
+ onScroll?: ((args_0: {
1593
+ scrollTop: number;
1594
+ scrollLeft: number;
1595
+ }) => any) | undefined;
1596
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1597
+ }, {
1598
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1599
+ update: () => void;
1600
+ scrollTo: {
1601
+ (xCord: number, yCord?: number): void;
1602
+ (options: ScrollToOptions): void;
1603
+ };
1604
+ setScrollTop: (value: number) => void;
1605
+ setScrollLeft: (value: number) => void;
1606
+ handleScroll: () => void;
1607
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1608
+ scroll: (args_0: {
1609
+ scrollTop: number;
1610
+ scrollLeft: number;
1611
+ }) => void;
1612
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
1613
+ }, string, {
1614
+ tabindex: number | string;
1615
+ height: number | string;
1616
+ maxHeight: number | string;
1617
+ tag: keyof HTMLElementTagNameMap | (string & {});
1618
+ minSize: number;
1619
+ distance: number;
1620
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1621
+ wrapClass: string | string[];
1622
+ viewClass: string | string[];
1623
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1624
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1625
+ beforeCreate?: (() => void) | (() => void)[];
1626
+ created?: (() => void) | (() => void)[];
1627
+ beforeMount?: (() => void) | (() => void)[];
1628
+ mounted?: (() => void) | (() => void)[];
1629
+ beforeUpdate?: (() => void) | (() => void)[];
1630
+ updated?: (() => void) | (() => void)[];
1631
+ activated?: (() => void) | (() => void)[];
1632
+ deactivated?: (() => void) | (() => void)[];
1633
+ beforeDestroy?: (() => void) | (() => void)[];
1634
+ beforeUnmount?: (() => void) | (() => void)[];
1635
+ destroyed?: (() => void) | (() => void)[];
1636
+ unmounted?: (() => void) | (() => void)[];
1637
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1638
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1639
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1640
+ };
1641
+ $forceUpdate: () => void;
1642
+ $nextTick: typeof nextTick;
1643
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1644
+ } & Readonly<{
1645
+ tabindex: number | string;
1646
+ height: number | string;
1647
+ maxHeight: number | string;
1648
+ tag: keyof HTMLElementTagNameMap | (string & {});
1649
+ minSize: number;
1650
+ distance: number;
1651
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1652
+ wrapClass: string | string[];
1653
+ viewClass: string | string[];
1654
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1655
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
1656
+ height: {
1657
+ type: import('vue').PropType<string | number>;
1658
+ default: string;
1659
+ };
1660
+ id: {
1661
+ type: import('vue').PropType<string>;
1662
+ };
1663
+ ariaLabel: {
1664
+ type: import('vue').PropType<string>;
1665
+ };
1666
+ role: {
1667
+ type: import('vue').PropType<string>;
1668
+ };
1669
+ tag: {
1670
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1671
+ default: string;
1672
+ };
1673
+ maxHeight: {
1674
+ type: import('vue').PropType<string | number>;
1675
+ default: string;
1676
+ };
1677
+ tabindex: {
1678
+ type: import('vue').PropType<string | number>;
1679
+ default: undefined;
1680
+ };
1681
+ distance: {
1682
+ type: import('vue').PropType<number>;
1683
+ default: number;
1684
+ };
1685
+ native: {
1686
+ type: import('vue').PropType<boolean>;
1687
+ };
1688
+ wrapStyle: {
1689
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1690
+ default: string;
1691
+ };
1692
+ wrapClass: {
1693
+ type: import('vue').PropType<string | string[]>;
1694
+ default: string;
1695
+ };
1696
+ viewClass: {
1697
+ type: import('vue').PropType<string | string[]>;
1698
+ default: string;
1699
+ };
1700
+ viewStyle: {
1701
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1702
+ default: string;
1703
+ };
1704
+ noresize: {
1705
+ type: import('vue').PropType<boolean>;
1706
+ };
1707
+ always: {
1708
+ type: import('vue').PropType<boolean>;
1709
+ };
1710
+ minSize: {
1711
+ type: import('vue').PropType<number>;
1712
+ default: number;
1713
+ };
1714
+ ariaOrientation: {
1715
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1716
+ };
1717
+ }>> & {
1718
+ onScroll?: ((args_0: {
1719
+ scrollTop: number;
1720
+ scrollLeft: number;
1721
+ }) => any) | undefined;
1722
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1723
+ }, "height" | "tag" | "update" | "maxHeight" | "tabindex" | "handleScroll" | "scrollTo" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
1724
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1725
+ update: () => void;
1726
+ scrollTo: {
1727
+ (xCord: number, yCord?: number): void;
1728
+ (options: ScrollToOptions): void;
1729
+ };
1730
+ setScrollTop: (value: number) => void;
1731
+ setScrollLeft: (value: number) => void;
1732
+ handleScroll: () => void;
1733
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1734
+ $slots: {
1735
+ default?: (props: {}) => any;
1736
+ };
1737
+ }) | null;
1738
+ }, HTMLDivElement>;
1739
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1740
+ export default _default;
1741
+ type __VLS_WithTemplateSlots<T, S> = T & {
1742
+ new (): {
1743
+ $slots: S;
1744
+ };
1745
+ };
1746
+ //# sourceMappingURL=Table.vue.d.ts.map