@dazhicheng/ui 1.1.1 → 1.4.2

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 (124) hide show
  1. package/dist/components/tt-form/src/components/FormFilter.vue.d.ts.map +1 -1
  2. package/dist/components/tt-form/src/form-render/form.vue.d.ts +1 -1
  3. package/dist/components/tt-form/src/index.vue.d.ts +4 -4
  4. package/dist/components/tt-loading/index.d.ts +17 -0
  5. package/dist/components/tt-loading/index.d.ts.map +1 -0
  6. package/dist/components/tt-loading/src/directive.d.ts +10 -0
  7. package/dist/components/tt-loading/src/directive.d.ts.map +1 -0
  8. package/dist/components/tt-loading/src/loading.vue.d.ts +13 -0
  9. package/dist/components/tt-loading/src/loading.vue.d.ts.map +1 -0
  10. package/dist/components/tt-loading/src/service.d.ts +26 -0
  11. package/dist/components/tt-loading/src/service.d.ts.map +1 -0
  12. package/dist/components/tt-loading/src/type.d.ts +21 -0
  13. package/dist/components/tt-loading/src/type.d.ts.map +1 -0
  14. package/dist/components/tt-part/index.d.ts +3 -3
  15. package/dist/components/tt-part/index.vue.d.ts +1 -1
  16. package/dist/components/tt-table/index.d.ts +128 -0
  17. package/dist/components/tt-table/index.d.ts.map +1 -0
  18. package/dist/components/tt-table/src/Table.vue.d.ts +1746 -0
  19. package/dist/components/tt-table/src/Table.vue.d.ts.map +1 -0
  20. package/dist/components/tt-table/src/TableForm.vue.d.ts +163 -0
  21. package/dist/components/tt-table/src/TableForm.vue.d.ts.map +1 -0
  22. package/dist/components/tt-table/src/componentMap.d.ts +9 -0
  23. package/dist/components/tt-table/src/componentMap.d.ts.map +1 -0
  24. package/dist/components/tt-table/src/components/RowContext.d.ts +25 -0
  25. package/dist/components/tt-table/src/components/RowContext.d.ts.map +1 -0
  26. package/dist/components/tt-table/src/components/TableAction.vue.d.ts +80 -0
  27. package/dist/components/tt-table/src/components/TableAction.vue.d.ts.map +1 -0
  28. package/dist/components/tt-table/src/components/TableButtons.d.ts +31 -0
  29. package/dist/components/tt-table/src/components/TableButtons.d.ts.map +1 -0
  30. package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +1685 -0
  31. package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts.map +1 -0
  32. package/dist/components/tt-table/src/emits.d.ts +2 -0
  33. package/dist/components/tt-table/src/emits.d.ts.map +1 -0
  34. package/dist/components/tt-table/src/enum.d.ts +3 -0
  35. package/dist/components/tt-table/src/enum.d.ts.map +1 -0
  36. package/dist/components/tt-table/src/hooks/useCache.d.ts +21 -0
  37. package/dist/components/tt-table/src/hooks/useCache.d.ts.map +1 -0
  38. package/dist/components/tt-table/src/hooks/useCellArea.d.ts +16 -0
  39. package/dist/components/tt-table/src/hooks/useCellArea.d.ts.map +1 -0
  40. package/dist/components/tt-table/src/hooks/useColumns.d.ts +32 -0
  41. package/dist/components/tt-table/src/hooks/useColumns.d.ts.map +1 -0
  42. package/dist/components/tt-table/src/hooks/useDataSource.d.ts +30 -0
  43. package/dist/components/tt-table/src/hooks/useDataSource.d.ts.map +1 -0
  44. package/dist/components/tt-table/src/hooks/useFullscreen.d.ts +12 -0
  45. package/dist/components/tt-table/src/hooks/useFullscreen.d.ts.map +1 -0
  46. package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +1083 -0
  47. package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts.map +1 -0
  48. package/dist/components/tt-table/src/hooks/usePagination.d.ts +103 -0
  49. package/dist/components/tt-table/src/hooks/usePagination.d.ts.map +1 -0
  50. package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +31 -0
  51. package/dist/components/tt-table/src/hooks/useRowSelection.d.ts.map +1 -0
  52. package/dist/components/tt-table/src/hooks/useTable.d.ts +8 -0
  53. package/dist/components/tt-table/src/hooks/useTable.d.ts.map +1 -0
  54. package/dist/components/tt-table/src/hooks/useTableContext.d.ts +44 -0
  55. package/dist/components/tt-table/src/hooks/useTableContext.d.ts.map +1 -0
  56. package/dist/components/tt-table/src/hooks/useTableEvent.d.ts +102 -0
  57. package/dist/components/tt-table/src/hooks/useTableEvent.d.ts.map +1 -0
  58. package/dist/components/tt-table/src/hooks/useTableForm.d.ts +15 -0
  59. package/dist/components/tt-table/src/hooks/useTableForm.d.ts.map +1 -0
  60. package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts +12 -0
  61. package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts.map +1 -0
  62. package/dist/components/tt-table/src/hooks/useTableHeight.d.ts +16 -0
  63. package/dist/components/tt-table/src/hooks/useTableHeight.d.ts.map +1 -0
  64. package/dist/components/tt-table/src/hooks/useTableRender.d.ts +82 -0
  65. package/dist/components/tt-table/src/hooks/useTableRender.d.ts.map +1 -0
  66. package/dist/components/tt-table/src/hooks/useTableSlot.d.ts +12 -0
  67. package/dist/components/tt-table/src/hooks/useTableSlot.d.ts.map +1 -0
  68. package/dist/components/tt-table/src/props.d.ts +485 -0
  69. package/dist/components/tt-table/src/props.d.ts.map +1 -0
  70. package/dist/components/tt-table/src/toolProps.d.ts +102 -0
  71. package/dist/components/tt-table/src/toolProps.d.ts.map +1 -0
  72. package/dist/components/tt-table/src/types/table.d.ts +493 -0
  73. package/dist/components/tt-table/src/types/table.d.ts.map +1 -0
  74. package/dist/components/tt-table/src/types/tableAction.d.ts +27 -0
  75. package/dist/components/tt-table/src/types/tableAction.d.ts.map +1 -0
  76. package/dist/components/tt-table/src/types/tableForm.d.ts +66 -0
  77. package/dist/components/tt-table/src/types/tableForm.d.ts.map +1 -0
  78. package/dist/components/tt-table/src/types/tableTools.d.ts +66 -0
  79. package/dist/components/tt-table/src/types/tableTools.d.ts.map +1 -0
  80. package/dist/components/tt-table/src/utils/context.d.ts +19 -0
  81. package/dist/components/tt-table/src/utils/context.d.ts.map +1 -0
  82. package/dist/components/tt-table/src/utils/filters.d.ts +110 -0
  83. package/dist/components/tt-table/src/utils/filters.d.ts.map +1 -0
  84. package/dist/components/tt-table/src/utils/table-api.d.ts +269 -0
  85. package/dist/components/tt-table/src/utils/table-api.d.ts.map +1 -0
  86. package/dist/components/tt-table/src/utils/table-form-api.d.ts +89 -0
  87. package/dist/components/tt-table/src/utils/table-form-api.d.ts.map +1 -0
  88. package/dist/components/tt-table/src/utils/vxeTable.d.ts +29 -0
  89. package/dist/components/tt-table/src/utils/vxeTable.d.ts.map +1 -0
  90. package/dist/components/tt-validate/src/Field.d.ts +1 -1
  91. package/dist/components/tt-validate/src/Form.d.ts +1 -1
  92. package/dist/{event-uB4aPtFy.js → event-BgJv9iWk.js} +1 -1
  93. package/dist/hooks/useSetup.d.ts +6 -0
  94. package/dist/hooks/useSetup.d.ts.map +1 -0
  95. package/dist/hooks/useTemplateSlot.d.ts +10 -0
  96. package/dist/hooks/useTemplateSlot.d.ts.map +1 -0
  97. package/dist/{icon-vcRgBOnR.js → icon-C9BsRQqM.js} +2 -2
  98. package/dist/{index-DE2yohHu.js → index-64J4mWP7.js} +2 -2
  99. package/dist/{index-CMMUpVFZ.js → index-B3w7HVvP.js} +6 -6
  100. package/dist/{index-Czf6JBRl.js → index-BQgaGlJA.js} +8 -8
  101. package/dist/{index-DT5rBqSy.js → index-Bq5RXWp8.js} +5 -5
  102. package/dist/{index-vljoqWNo.js → index-CB2v0taz.js} +1 -1
  103. package/dist/{index-D_IdZK7s.js → index-C_u1XOy0.js} +7 -7
  104. package/dist/{index-CRljSNoY.js → index-CdyRKSi4.js} +3 -3
  105. package/dist/{index-D8ISpbRW.js → index-CjcGE9Xi.js} +10 -10
  106. package/dist/{index-DqLyz5eN.js → index-CzDjdhem.js} +5 -5
  107. package/dist/{index-3UkObRxv.js → index-D6x6ZHVk.js} +5 -5
  108. package/dist/{index-DM7o1Y9_.js → index-DHXyFJLO.js} +1 -1
  109. package/dist/{index-BtqEcZqo.js → index-DXGnUvsQ.js} +9 -9
  110. package/dist/{index-BTf1_B_5.js → index-DY3FsmvZ.js} +2 -2
  111. package/dist/{index-Dn38FMIM.js → index-Dp1l-3ez.js} +2 -2
  112. package/dist/{index-Dz2-tV0Q.js → index-LRY3g1Bz.js} +6 -6
  113. package/dist/{index-Mg3lmVPp.js → index-hI7UMWGr.js} +1 -1
  114. package/dist/index-iFd1yQ1C.js +55785 -0
  115. package/dist/index.d.ts +3 -11
  116. package/dist/index.d.ts.map +1 -1
  117. package/dist/index.js +25 -17
  118. package/dist/{panel-time-pick.vue2-ChVAZVCn.js → panel-time-pick.vue2-C7R5HGb8.js} +10 -10
  119. package/dist/style.css +1 -1
  120. package/dist/{use-form-common-props-CiRVSa0R.js → use-form-common-props-CDmM4Wn1.js} +1 -1
  121. package/dist/{use-form-item-DuAhca9z.js → use-form-item-Bv38v7TO.js} +2 -2
  122. package/dist/{util-B7hHTw8E.js → util-CWdgKsYq.js} +6 -6
  123. package/package.json +5 -3
  124. package/dist/index-DxTPuBYV.js +0 -47918
@@ -0,0 +1,1083 @@
1
+ import { VxeGridInstance } from 'vxe-table';
2
+ import { TtTableLeftRightRowNode, TtTableProps } from '../types/table';
3
+ import { Recordable } from '../../../../../../utils/src';
4
+ import { ComputedRef, Ref } from 'vue';
5
+ export declare function useLeftRightSlot(propsRef: ComputedRef<TtTableProps>, xGridRef: Ref<VxeGridInstance<Recordable>>, tableData: Ref<Recordable[]>): {
6
+ handleLeftRightSlotScroll: (scrollTop?: number) => Promise<void>;
7
+ handleLeftRightSlotInit: (isScrollInit?: boolean) => Promise<void>;
8
+ leftRightSlotRows: Ref<{
9
+ offsetTop?: number | undefined;
10
+ rowid?: string | undefined;
11
+ item?: any;
12
+ items?: any[] | undefined;
13
+ index?: number | undefined;
14
+ parent?: any;
15
+ }[], TtTableLeftRightRowNode[] | {
16
+ offsetTop?: number | undefined;
17
+ rowid?: string | undefined;
18
+ item?: any;
19
+ items?: any[] | undefined;
20
+ index?: number | undefined;
21
+ parent?: any;
22
+ }[]>;
23
+ tableHeaderHight: import('vue').ShallowRef<number, number>;
24
+ leftSlotScrollbarRef: Ref<({
25
+ $: import('vue').ComponentInternalInstance;
26
+ $data: {};
27
+ $props: Partial<{
28
+ tabindex: number | string;
29
+ height: number | string;
30
+ maxHeight: number | string;
31
+ tag: keyof HTMLElementTagNameMap | (string & {});
32
+ minSize: number;
33
+ distance: number;
34
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
35
+ wrapClass: string | string[];
36
+ viewClass: string | string[];
37
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
38
+ }> & Omit<{
39
+ readonly height: number | string;
40
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
41
+ readonly maxHeight: number | string;
42
+ readonly distance: number;
43
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
44
+ readonly wrapClass: string | string[];
45
+ readonly viewClass: string | string[];
46
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
47
+ readonly minSize: number;
48
+ readonly id?: string | undefined;
49
+ readonly ariaLabel?: string | undefined;
50
+ readonly role?: string | undefined;
51
+ readonly tabindex?: number | string | undefined;
52
+ readonly native?: boolean | undefined;
53
+ readonly noresize?: boolean | undefined;
54
+ readonly always?: boolean | undefined;
55
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
56
+ onScroll?: ((args_0: {
57
+ scrollTop: number;
58
+ scrollLeft: number;
59
+ }) => any) | undefined | undefined;
60
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
61
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "maxHeight" | "tabindex" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
62
+ $attrs: {
63
+ [x: string]: unknown;
64
+ };
65
+ $refs: {
66
+ [x: string]: unknown;
67
+ };
68
+ $slots: Readonly<{
69
+ [name: string]: import('vue').Slot<any> | undefined;
70
+ }>;
71
+ $root: import('vue').ComponentPublicInstance | null;
72
+ $parent: import('vue').ComponentPublicInstance | null;
73
+ $host: Element | null;
74
+ $emit: ((event: "scroll", args_0: {
75
+ scrollTop: number;
76
+ scrollLeft: number;
77
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
78
+ $el: any;
79
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
80
+ height: {
81
+ type: import('vue').PropType<string | number>;
82
+ default: string;
83
+ };
84
+ id: {
85
+ type: import('vue').PropType<string>;
86
+ };
87
+ ariaLabel: {
88
+ type: import('vue').PropType<string>;
89
+ };
90
+ role: {
91
+ type: import('vue').PropType<string>;
92
+ };
93
+ tag: {
94
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
95
+ default: string;
96
+ };
97
+ maxHeight: {
98
+ type: import('vue').PropType<string | number>;
99
+ default: string;
100
+ };
101
+ tabindex: {
102
+ type: import('vue').PropType<string | number>;
103
+ default: undefined;
104
+ };
105
+ distance: {
106
+ type: import('vue').PropType<number>;
107
+ default: number;
108
+ };
109
+ native: {
110
+ type: import('vue').PropType<boolean>;
111
+ };
112
+ wrapStyle: {
113
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
114
+ default: string;
115
+ };
116
+ wrapClass: {
117
+ type: import('vue').PropType<string | string[]>;
118
+ default: string;
119
+ };
120
+ viewClass: {
121
+ type: import('vue').PropType<string | string[]>;
122
+ default: string;
123
+ };
124
+ viewStyle: {
125
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
126
+ default: string;
127
+ };
128
+ noresize: {
129
+ type: import('vue').PropType<boolean>;
130
+ };
131
+ always: {
132
+ type: import('vue').PropType<boolean>;
133
+ };
134
+ minSize: {
135
+ type: import('vue').PropType<number>;
136
+ default: number;
137
+ };
138
+ ariaOrientation: {
139
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
140
+ };
141
+ }>> & {
142
+ onScroll?: ((args_0: {
143
+ scrollTop: number;
144
+ scrollLeft: number;
145
+ }) => any) | undefined;
146
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
147
+ }, {
148
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
149
+ update: () => void;
150
+ scrollTo: {
151
+ (xCord: number, yCord?: number): void;
152
+ (options: ScrollToOptions): void;
153
+ };
154
+ setScrollTop: (value: number) => void;
155
+ setScrollLeft: (value: number) => void;
156
+ handleScroll: () => void;
157
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
158
+ scroll: (args_0: {
159
+ scrollTop: number;
160
+ scrollLeft: number;
161
+ }) => void;
162
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
163
+ }, string, {
164
+ tabindex: number | string;
165
+ height: number | string;
166
+ maxHeight: number | string;
167
+ tag: keyof HTMLElementTagNameMap | (string & {});
168
+ minSize: number;
169
+ distance: number;
170
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
171
+ wrapClass: string | string[];
172
+ viewClass: string | string[];
173
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
174
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
175
+ beforeCreate?: (() => void) | (() => void)[];
176
+ created?: (() => void) | (() => void)[];
177
+ beforeMount?: (() => void) | (() => void)[];
178
+ mounted?: (() => void) | (() => void)[];
179
+ beforeUpdate?: (() => void) | (() => void)[];
180
+ updated?: (() => void) | (() => void)[];
181
+ activated?: (() => void) | (() => void)[];
182
+ deactivated?: (() => void) | (() => void)[];
183
+ beforeDestroy?: (() => void) | (() => void)[];
184
+ beforeUnmount?: (() => void) | (() => void)[];
185
+ destroyed?: (() => void) | (() => void)[];
186
+ unmounted?: (() => void) | (() => void)[];
187
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
188
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
189
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
190
+ };
191
+ $forceUpdate: () => void;
192
+ $nextTick: typeof import('vue').nextTick;
193
+ $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;
194
+ } & Readonly<{
195
+ tabindex: number | string;
196
+ height: number | string;
197
+ maxHeight: number | string;
198
+ tag: keyof HTMLElementTagNameMap | (string & {});
199
+ minSize: number;
200
+ distance: number;
201
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
202
+ wrapClass: string | string[];
203
+ viewClass: string | string[];
204
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
205
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
206
+ height: {
207
+ type: import('vue').PropType<string | number>;
208
+ default: string;
209
+ };
210
+ id: {
211
+ type: import('vue').PropType<string>;
212
+ };
213
+ ariaLabel: {
214
+ type: import('vue').PropType<string>;
215
+ };
216
+ role: {
217
+ type: import('vue').PropType<string>;
218
+ };
219
+ tag: {
220
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
221
+ default: string;
222
+ };
223
+ maxHeight: {
224
+ type: import('vue').PropType<string | number>;
225
+ default: string;
226
+ };
227
+ tabindex: {
228
+ type: import('vue').PropType<string | number>;
229
+ default: undefined;
230
+ };
231
+ distance: {
232
+ type: import('vue').PropType<number>;
233
+ default: number;
234
+ };
235
+ native: {
236
+ type: import('vue').PropType<boolean>;
237
+ };
238
+ wrapStyle: {
239
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
240
+ default: string;
241
+ };
242
+ wrapClass: {
243
+ type: import('vue').PropType<string | string[]>;
244
+ default: string;
245
+ };
246
+ viewClass: {
247
+ type: import('vue').PropType<string | string[]>;
248
+ default: string;
249
+ };
250
+ viewStyle: {
251
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
252
+ default: string;
253
+ };
254
+ noresize: {
255
+ type: import('vue').PropType<boolean>;
256
+ };
257
+ always: {
258
+ type: import('vue').PropType<boolean>;
259
+ };
260
+ minSize: {
261
+ type: import('vue').PropType<number>;
262
+ default: number;
263
+ };
264
+ ariaOrientation: {
265
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
266
+ };
267
+ }>> & {
268
+ onScroll?: ((args_0: {
269
+ scrollTop: number;
270
+ scrollLeft: number;
271
+ }) => any) | undefined;
272
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
273
+ }, "height" | "tag" | "update" | "maxHeight" | "tabindex" | "handleScroll" | "scrollTo" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
274
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
275
+ update: () => void;
276
+ scrollTo: {
277
+ (xCord: number, yCord?: number): void;
278
+ (options: ScrollToOptions): void;
279
+ };
280
+ setScrollTop: (value: number) => void;
281
+ setScrollLeft: (value: number) => void;
282
+ handleScroll: () => void;
283
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
284
+ $slots: {
285
+ default?: (props: {}) => any;
286
+ };
287
+ }) | undefined, ({
288
+ $: import('vue').ComponentInternalInstance;
289
+ $data: {};
290
+ $props: Partial<{
291
+ tabindex: number | string;
292
+ height: number | string;
293
+ maxHeight: number | string;
294
+ tag: keyof HTMLElementTagNameMap | (string & {});
295
+ minSize: number;
296
+ distance: number;
297
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
298
+ wrapClass: string | string[];
299
+ viewClass: string | string[];
300
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
301
+ }> & Omit<{
302
+ readonly height: number | string;
303
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
304
+ readonly maxHeight: number | string;
305
+ readonly distance: number;
306
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
307
+ readonly wrapClass: string | string[];
308
+ readonly viewClass: string | string[];
309
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
310
+ readonly minSize: number;
311
+ readonly id?: string | undefined;
312
+ readonly ariaLabel?: string | undefined;
313
+ readonly role?: string | undefined;
314
+ readonly tabindex?: number | string | undefined;
315
+ readonly native?: boolean | undefined;
316
+ readonly noresize?: boolean | undefined;
317
+ readonly always?: boolean | undefined;
318
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
319
+ onScroll?: ((args_0: {
320
+ scrollTop: number;
321
+ scrollLeft: number;
322
+ }) => any) | undefined | undefined;
323
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
324
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "maxHeight" | "tabindex" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
325
+ $attrs: {
326
+ [x: string]: unknown;
327
+ };
328
+ $refs: {
329
+ [x: string]: unknown;
330
+ };
331
+ $slots: Readonly<{
332
+ [name: string]: import('vue').Slot<any> | undefined;
333
+ }>;
334
+ $root: import('vue').ComponentPublicInstance | null;
335
+ $parent: import('vue').ComponentPublicInstance | null;
336
+ $host: Element | null;
337
+ $emit: ((event: "scroll", args_0: {
338
+ scrollTop: number;
339
+ scrollLeft: number;
340
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
341
+ $el: any;
342
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
343
+ height: {
344
+ type: import('vue').PropType<string | number>;
345
+ default: string;
346
+ };
347
+ id: {
348
+ type: import('vue').PropType<string>;
349
+ };
350
+ ariaLabel: {
351
+ type: import('vue').PropType<string>;
352
+ };
353
+ role: {
354
+ type: import('vue').PropType<string>;
355
+ };
356
+ tag: {
357
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
358
+ default: string;
359
+ };
360
+ maxHeight: {
361
+ type: import('vue').PropType<string | number>;
362
+ default: string;
363
+ };
364
+ tabindex: {
365
+ type: import('vue').PropType<string | number>;
366
+ default: undefined;
367
+ };
368
+ distance: {
369
+ type: import('vue').PropType<number>;
370
+ default: number;
371
+ };
372
+ native: {
373
+ type: import('vue').PropType<boolean>;
374
+ };
375
+ wrapStyle: {
376
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
377
+ default: string;
378
+ };
379
+ wrapClass: {
380
+ type: import('vue').PropType<string | string[]>;
381
+ default: string;
382
+ };
383
+ viewClass: {
384
+ type: import('vue').PropType<string | string[]>;
385
+ default: string;
386
+ };
387
+ viewStyle: {
388
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
389
+ default: string;
390
+ };
391
+ noresize: {
392
+ type: import('vue').PropType<boolean>;
393
+ };
394
+ always: {
395
+ type: import('vue').PropType<boolean>;
396
+ };
397
+ minSize: {
398
+ type: import('vue').PropType<number>;
399
+ default: number;
400
+ };
401
+ ariaOrientation: {
402
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
403
+ };
404
+ }>> & {
405
+ onScroll?: ((args_0: {
406
+ scrollTop: number;
407
+ scrollLeft: number;
408
+ }) => any) | undefined;
409
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
410
+ }, {
411
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
412
+ update: () => void;
413
+ scrollTo: {
414
+ (xCord: number, yCord?: number): void;
415
+ (options: ScrollToOptions): void;
416
+ };
417
+ setScrollTop: (value: number) => void;
418
+ setScrollLeft: (value: number) => void;
419
+ handleScroll: () => void;
420
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
421
+ scroll: (args_0: {
422
+ scrollTop: number;
423
+ scrollLeft: number;
424
+ }) => void;
425
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
426
+ }, string, {
427
+ tabindex: number | string;
428
+ height: number | string;
429
+ maxHeight: number | string;
430
+ tag: keyof HTMLElementTagNameMap | (string & {});
431
+ minSize: number;
432
+ distance: number;
433
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
434
+ wrapClass: string | string[];
435
+ viewClass: string | string[];
436
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
437
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
438
+ beforeCreate?: (() => void) | (() => void)[];
439
+ created?: (() => void) | (() => void)[];
440
+ beforeMount?: (() => void) | (() => void)[];
441
+ mounted?: (() => void) | (() => void)[];
442
+ beforeUpdate?: (() => void) | (() => void)[];
443
+ updated?: (() => void) | (() => void)[];
444
+ activated?: (() => void) | (() => void)[];
445
+ deactivated?: (() => void) | (() => void)[];
446
+ beforeDestroy?: (() => void) | (() => void)[];
447
+ beforeUnmount?: (() => void) | (() => void)[];
448
+ destroyed?: (() => void) | (() => void)[];
449
+ unmounted?: (() => void) | (() => void)[];
450
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
451
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
452
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
453
+ };
454
+ $forceUpdate: () => void;
455
+ $nextTick: typeof import('vue').nextTick;
456
+ $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;
457
+ } & Readonly<{
458
+ tabindex: number | string;
459
+ height: number | string;
460
+ maxHeight: number | string;
461
+ tag: keyof HTMLElementTagNameMap | (string & {});
462
+ minSize: number;
463
+ distance: number;
464
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
465
+ wrapClass: string | string[];
466
+ viewClass: string | string[];
467
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
468
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
469
+ height: {
470
+ type: import('vue').PropType<string | number>;
471
+ default: string;
472
+ };
473
+ id: {
474
+ type: import('vue').PropType<string>;
475
+ };
476
+ ariaLabel: {
477
+ type: import('vue').PropType<string>;
478
+ };
479
+ role: {
480
+ type: import('vue').PropType<string>;
481
+ };
482
+ tag: {
483
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
484
+ default: string;
485
+ };
486
+ maxHeight: {
487
+ type: import('vue').PropType<string | number>;
488
+ default: string;
489
+ };
490
+ tabindex: {
491
+ type: import('vue').PropType<string | number>;
492
+ default: undefined;
493
+ };
494
+ distance: {
495
+ type: import('vue').PropType<number>;
496
+ default: number;
497
+ };
498
+ native: {
499
+ type: import('vue').PropType<boolean>;
500
+ };
501
+ wrapStyle: {
502
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
503
+ default: string;
504
+ };
505
+ wrapClass: {
506
+ type: import('vue').PropType<string | string[]>;
507
+ default: string;
508
+ };
509
+ viewClass: {
510
+ type: import('vue').PropType<string | string[]>;
511
+ default: string;
512
+ };
513
+ viewStyle: {
514
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
515
+ default: string;
516
+ };
517
+ noresize: {
518
+ type: import('vue').PropType<boolean>;
519
+ };
520
+ always: {
521
+ type: import('vue').PropType<boolean>;
522
+ };
523
+ minSize: {
524
+ type: import('vue').PropType<number>;
525
+ default: number;
526
+ };
527
+ ariaOrientation: {
528
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
529
+ };
530
+ }>> & {
531
+ onScroll?: ((args_0: {
532
+ scrollTop: number;
533
+ scrollLeft: number;
534
+ }) => any) | undefined;
535
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
536
+ }, "height" | "tag" | "update" | "maxHeight" | "tabindex" | "handleScroll" | "scrollTo" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
537
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
538
+ update: () => void;
539
+ scrollTo: {
540
+ (xCord: number, yCord?: number): void;
541
+ (options: ScrollToOptions): void;
542
+ };
543
+ setScrollTop: (value: number) => void;
544
+ setScrollLeft: (value: number) => void;
545
+ handleScroll: () => void;
546
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
547
+ $slots: {
548
+ default?: (props: {}) => any;
549
+ };
550
+ }) | undefined>;
551
+ rightSlotScrollbarRef: Ref<({
552
+ $: import('vue').ComponentInternalInstance;
553
+ $data: {};
554
+ $props: Partial<{
555
+ tabindex: number | string;
556
+ height: number | string;
557
+ maxHeight: number | string;
558
+ tag: keyof HTMLElementTagNameMap | (string & {});
559
+ minSize: number;
560
+ distance: number;
561
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
562
+ wrapClass: string | string[];
563
+ viewClass: string | string[];
564
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
565
+ }> & Omit<{
566
+ readonly height: number | string;
567
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
568
+ readonly maxHeight: number | string;
569
+ readonly distance: number;
570
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
571
+ readonly wrapClass: string | string[];
572
+ readonly viewClass: string | string[];
573
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
574
+ readonly minSize: number;
575
+ readonly id?: string | undefined;
576
+ readonly ariaLabel?: string | undefined;
577
+ readonly role?: string | undefined;
578
+ readonly tabindex?: number | string | undefined;
579
+ readonly native?: boolean | undefined;
580
+ readonly noresize?: boolean | undefined;
581
+ readonly always?: boolean | undefined;
582
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
583
+ onScroll?: ((args_0: {
584
+ scrollTop: number;
585
+ scrollLeft: number;
586
+ }) => any) | undefined | undefined;
587
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
588
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "maxHeight" | "tabindex" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
589
+ $attrs: {
590
+ [x: string]: unknown;
591
+ };
592
+ $refs: {
593
+ [x: string]: unknown;
594
+ };
595
+ $slots: Readonly<{
596
+ [name: string]: import('vue').Slot<any> | undefined;
597
+ }>;
598
+ $root: import('vue').ComponentPublicInstance | null;
599
+ $parent: import('vue').ComponentPublicInstance | null;
600
+ $host: Element | null;
601
+ $emit: ((event: "scroll", args_0: {
602
+ scrollTop: number;
603
+ scrollLeft: number;
604
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
605
+ $el: any;
606
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
607
+ height: {
608
+ type: import('vue').PropType<string | number>;
609
+ default: string;
610
+ };
611
+ id: {
612
+ type: import('vue').PropType<string>;
613
+ };
614
+ ariaLabel: {
615
+ type: import('vue').PropType<string>;
616
+ };
617
+ role: {
618
+ type: import('vue').PropType<string>;
619
+ };
620
+ tag: {
621
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
622
+ default: string;
623
+ };
624
+ maxHeight: {
625
+ type: import('vue').PropType<string | number>;
626
+ default: string;
627
+ };
628
+ tabindex: {
629
+ type: import('vue').PropType<string | number>;
630
+ default: undefined;
631
+ };
632
+ distance: {
633
+ type: import('vue').PropType<number>;
634
+ default: number;
635
+ };
636
+ native: {
637
+ type: import('vue').PropType<boolean>;
638
+ };
639
+ wrapStyle: {
640
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
641
+ default: string;
642
+ };
643
+ wrapClass: {
644
+ type: import('vue').PropType<string | string[]>;
645
+ default: string;
646
+ };
647
+ viewClass: {
648
+ type: import('vue').PropType<string | string[]>;
649
+ default: string;
650
+ };
651
+ viewStyle: {
652
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
653
+ default: string;
654
+ };
655
+ noresize: {
656
+ type: import('vue').PropType<boolean>;
657
+ };
658
+ always: {
659
+ type: import('vue').PropType<boolean>;
660
+ };
661
+ minSize: {
662
+ type: import('vue').PropType<number>;
663
+ default: number;
664
+ };
665
+ ariaOrientation: {
666
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
667
+ };
668
+ }>> & {
669
+ onScroll?: ((args_0: {
670
+ scrollTop: number;
671
+ scrollLeft: number;
672
+ }) => any) | undefined;
673
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
674
+ }, {
675
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
676
+ update: () => void;
677
+ scrollTo: {
678
+ (xCord: number, yCord?: number): void;
679
+ (options: ScrollToOptions): void;
680
+ };
681
+ setScrollTop: (value: number) => void;
682
+ setScrollLeft: (value: number) => void;
683
+ handleScroll: () => void;
684
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
685
+ scroll: (args_0: {
686
+ scrollTop: number;
687
+ scrollLeft: number;
688
+ }) => void;
689
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
690
+ }, string, {
691
+ tabindex: number | string;
692
+ height: number | string;
693
+ maxHeight: number | string;
694
+ tag: keyof HTMLElementTagNameMap | (string & {});
695
+ minSize: number;
696
+ distance: number;
697
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
698
+ wrapClass: string | string[];
699
+ viewClass: string | string[];
700
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
701
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
702
+ beforeCreate?: (() => void) | (() => void)[];
703
+ created?: (() => void) | (() => void)[];
704
+ beforeMount?: (() => void) | (() => void)[];
705
+ mounted?: (() => void) | (() => void)[];
706
+ beforeUpdate?: (() => void) | (() => void)[];
707
+ updated?: (() => void) | (() => void)[];
708
+ activated?: (() => void) | (() => void)[];
709
+ deactivated?: (() => void) | (() => void)[];
710
+ beforeDestroy?: (() => void) | (() => void)[];
711
+ beforeUnmount?: (() => void) | (() => void)[];
712
+ destroyed?: (() => void) | (() => void)[];
713
+ unmounted?: (() => void) | (() => void)[];
714
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
715
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
716
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
717
+ };
718
+ $forceUpdate: () => void;
719
+ $nextTick: typeof import('vue').nextTick;
720
+ $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;
721
+ } & Readonly<{
722
+ tabindex: number | string;
723
+ height: number | string;
724
+ maxHeight: number | string;
725
+ tag: keyof HTMLElementTagNameMap | (string & {});
726
+ minSize: number;
727
+ distance: number;
728
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
729
+ wrapClass: string | string[];
730
+ viewClass: string | string[];
731
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
732
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
733
+ height: {
734
+ type: import('vue').PropType<string | number>;
735
+ default: string;
736
+ };
737
+ id: {
738
+ type: import('vue').PropType<string>;
739
+ };
740
+ ariaLabel: {
741
+ type: import('vue').PropType<string>;
742
+ };
743
+ role: {
744
+ type: import('vue').PropType<string>;
745
+ };
746
+ tag: {
747
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
748
+ default: string;
749
+ };
750
+ maxHeight: {
751
+ type: import('vue').PropType<string | number>;
752
+ default: string;
753
+ };
754
+ tabindex: {
755
+ type: import('vue').PropType<string | number>;
756
+ default: undefined;
757
+ };
758
+ distance: {
759
+ type: import('vue').PropType<number>;
760
+ default: number;
761
+ };
762
+ native: {
763
+ type: import('vue').PropType<boolean>;
764
+ };
765
+ wrapStyle: {
766
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
767
+ default: string;
768
+ };
769
+ wrapClass: {
770
+ type: import('vue').PropType<string | string[]>;
771
+ default: string;
772
+ };
773
+ viewClass: {
774
+ type: import('vue').PropType<string | string[]>;
775
+ default: string;
776
+ };
777
+ viewStyle: {
778
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
779
+ default: string;
780
+ };
781
+ noresize: {
782
+ type: import('vue').PropType<boolean>;
783
+ };
784
+ always: {
785
+ type: import('vue').PropType<boolean>;
786
+ };
787
+ minSize: {
788
+ type: import('vue').PropType<number>;
789
+ default: number;
790
+ };
791
+ ariaOrientation: {
792
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
793
+ };
794
+ }>> & {
795
+ onScroll?: ((args_0: {
796
+ scrollTop: number;
797
+ scrollLeft: number;
798
+ }) => any) | undefined;
799
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
800
+ }, "height" | "tag" | "update" | "maxHeight" | "tabindex" | "handleScroll" | "scrollTo" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
801
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
802
+ update: () => void;
803
+ scrollTo: {
804
+ (xCord: number, yCord?: number): void;
805
+ (options: ScrollToOptions): void;
806
+ };
807
+ setScrollTop: (value: number) => void;
808
+ setScrollLeft: (value: number) => void;
809
+ handleScroll: () => void;
810
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
811
+ $slots: {
812
+ default?: (props: {}) => any;
813
+ };
814
+ }) | undefined, ({
815
+ $: import('vue').ComponentInternalInstance;
816
+ $data: {};
817
+ $props: Partial<{
818
+ tabindex: number | string;
819
+ height: number | string;
820
+ maxHeight: number | string;
821
+ tag: keyof HTMLElementTagNameMap | (string & {});
822
+ minSize: number;
823
+ distance: number;
824
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
825
+ wrapClass: string | string[];
826
+ viewClass: string | string[];
827
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
828
+ }> & Omit<{
829
+ readonly height: number | string;
830
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
831
+ readonly maxHeight: number | string;
832
+ readonly distance: number;
833
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
834
+ readonly wrapClass: string | string[];
835
+ readonly viewClass: string | string[];
836
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
837
+ readonly minSize: number;
838
+ readonly id?: string | undefined;
839
+ readonly ariaLabel?: string | undefined;
840
+ readonly role?: string | undefined;
841
+ readonly tabindex?: number | string | undefined;
842
+ readonly native?: boolean | undefined;
843
+ readonly noresize?: boolean | undefined;
844
+ readonly always?: boolean | undefined;
845
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
846
+ onScroll?: ((args_0: {
847
+ scrollTop: number;
848
+ scrollLeft: number;
849
+ }) => any) | undefined | undefined;
850
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
851
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tag" | "maxHeight" | "tabindex" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
852
+ $attrs: {
853
+ [x: string]: unknown;
854
+ };
855
+ $refs: {
856
+ [x: string]: unknown;
857
+ };
858
+ $slots: Readonly<{
859
+ [name: string]: import('vue').Slot<any> | undefined;
860
+ }>;
861
+ $root: import('vue').ComponentPublicInstance | null;
862
+ $parent: import('vue').ComponentPublicInstance | null;
863
+ $host: Element | null;
864
+ $emit: ((event: "scroll", args_0: {
865
+ scrollTop: number;
866
+ scrollLeft: number;
867
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
868
+ $el: any;
869
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
870
+ height: {
871
+ type: import('vue').PropType<string | number>;
872
+ default: string;
873
+ };
874
+ id: {
875
+ type: import('vue').PropType<string>;
876
+ };
877
+ ariaLabel: {
878
+ type: import('vue').PropType<string>;
879
+ };
880
+ role: {
881
+ type: import('vue').PropType<string>;
882
+ };
883
+ tag: {
884
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
885
+ default: string;
886
+ };
887
+ maxHeight: {
888
+ type: import('vue').PropType<string | number>;
889
+ default: string;
890
+ };
891
+ tabindex: {
892
+ type: import('vue').PropType<string | number>;
893
+ default: undefined;
894
+ };
895
+ distance: {
896
+ type: import('vue').PropType<number>;
897
+ default: number;
898
+ };
899
+ native: {
900
+ type: import('vue').PropType<boolean>;
901
+ };
902
+ wrapStyle: {
903
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
904
+ default: string;
905
+ };
906
+ wrapClass: {
907
+ type: import('vue').PropType<string | string[]>;
908
+ default: string;
909
+ };
910
+ viewClass: {
911
+ type: import('vue').PropType<string | string[]>;
912
+ default: string;
913
+ };
914
+ viewStyle: {
915
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
916
+ default: string;
917
+ };
918
+ noresize: {
919
+ type: import('vue').PropType<boolean>;
920
+ };
921
+ always: {
922
+ type: import('vue').PropType<boolean>;
923
+ };
924
+ minSize: {
925
+ type: import('vue').PropType<number>;
926
+ default: number;
927
+ };
928
+ ariaOrientation: {
929
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
930
+ };
931
+ }>> & {
932
+ onScroll?: ((args_0: {
933
+ scrollTop: number;
934
+ scrollLeft: number;
935
+ }) => any) | undefined;
936
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
937
+ }, {
938
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
939
+ update: () => void;
940
+ scrollTo: {
941
+ (xCord: number, yCord?: number): void;
942
+ (options: ScrollToOptions): void;
943
+ };
944
+ setScrollTop: (value: number) => void;
945
+ setScrollLeft: (value: number) => void;
946
+ handleScroll: () => void;
947
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
948
+ scroll: (args_0: {
949
+ scrollTop: number;
950
+ scrollLeft: number;
951
+ }) => void;
952
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
953
+ }, string, {
954
+ tabindex: number | string;
955
+ height: number | string;
956
+ maxHeight: number | string;
957
+ tag: keyof HTMLElementTagNameMap | (string & {});
958
+ minSize: number;
959
+ distance: number;
960
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
961
+ wrapClass: string | string[];
962
+ viewClass: string | string[];
963
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
964
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
965
+ beforeCreate?: (() => void) | (() => void)[];
966
+ created?: (() => void) | (() => void)[];
967
+ beforeMount?: (() => void) | (() => void)[];
968
+ mounted?: (() => void) | (() => void)[];
969
+ beforeUpdate?: (() => void) | (() => void)[];
970
+ updated?: (() => void) | (() => void)[];
971
+ activated?: (() => void) | (() => void)[];
972
+ deactivated?: (() => void) | (() => void)[];
973
+ beforeDestroy?: (() => void) | (() => void)[];
974
+ beforeUnmount?: (() => void) | (() => void)[];
975
+ destroyed?: (() => void) | (() => void)[];
976
+ unmounted?: (() => void) | (() => void)[];
977
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
978
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
979
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
980
+ };
981
+ $forceUpdate: () => void;
982
+ $nextTick: typeof import('vue').nextTick;
983
+ $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;
984
+ } & Readonly<{
985
+ tabindex: number | string;
986
+ height: number | string;
987
+ maxHeight: number | string;
988
+ tag: keyof HTMLElementTagNameMap | (string & {});
989
+ minSize: number;
990
+ distance: number;
991
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
992
+ wrapClass: string | string[];
993
+ viewClass: string | string[];
994
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
995
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
996
+ height: {
997
+ type: import('vue').PropType<string | number>;
998
+ default: string;
999
+ };
1000
+ id: {
1001
+ type: import('vue').PropType<string>;
1002
+ };
1003
+ ariaLabel: {
1004
+ type: import('vue').PropType<string>;
1005
+ };
1006
+ role: {
1007
+ type: import('vue').PropType<string>;
1008
+ };
1009
+ tag: {
1010
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1011
+ default: string;
1012
+ };
1013
+ maxHeight: {
1014
+ type: import('vue').PropType<string | number>;
1015
+ default: string;
1016
+ };
1017
+ tabindex: {
1018
+ type: import('vue').PropType<string | number>;
1019
+ default: undefined;
1020
+ };
1021
+ distance: {
1022
+ type: import('vue').PropType<number>;
1023
+ default: number;
1024
+ };
1025
+ native: {
1026
+ type: import('vue').PropType<boolean>;
1027
+ };
1028
+ wrapStyle: {
1029
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1030
+ default: string;
1031
+ };
1032
+ wrapClass: {
1033
+ type: import('vue').PropType<string | string[]>;
1034
+ default: string;
1035
+ };
1036
+ viewClass: {
1037
+ type: import('vue').PropType<string | string[]>;
1038
+ default: string;
1039
+ };
1040
+ viewStyle: {
1041
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1042
+ default: string;
1043
+ };
1044
+ noresize: {
1045
+ type: import('vue').PropType<boolean>;
1046
+ };
1047
+ always: {
1048
+ type: import('vue').PropType<boolean>;
1049
+ };
1050
+ minSize: {
1051
+ type: import('vue').PropType<number>;
1052
+ default: number;
1053
+ };
1054
+ ariaOrientation: {
1055
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1056
+ };
1057
+ }>> & {
1058
+ onScroll?: ((args_0: {
1059
+ scrollTop: number;
1060
+ scrollLeft: number;
1061
+ }) => any) | undefined;
1062
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1063
+ }, "height" | "tag" | "update" | "maxHeight" | "tabindex" | "handleScroll" | "scrollTo" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
1064
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1065
+ update: () => void;
1066
+ scrollTo: {
1067
+ (xCord: number, yCord?: number): void;
1068
+ (options: ScrollToOptions): void;
1069
+ };
1070
+ setScrollTop: (value: number) => void;
1071
+ setScrollLeft: (value: number) => void;
1072
+ handleScroll: () => void;
1073
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1074
+ $slots: {
1075
+ default?: (props: {}) => any;
1076
+ };
1077
+ }) | undefined>;
1078
+ tableBodyHeight: import('vue').ShallowRef<number, number>;
1079
+ tableBodyWrapHeight: import('vue').ShallowRef<number, number>;
1080
+ tableBodyScrollTop: import('vue').ShallowRef<number, number>;
1081
+ tableBodyScrollHeight: import('vue').ShallowRef<number, number>;
1082
+ };
1083
+ //# sourceMappingURL=useLeftRightSlot.d.ts.map