@dazhicheng/ui 1.5.33 → 1.5.35

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 (189) hide show
  1. package/dist/components/tt-area/TtArea.vue.d.ts +2 -0
  2. package/dist/components/tt-area/index.d.ts +1 -0
  3. package/dist/components/tt-button/components/AddButton.vue.d.ts +2 -0
  4. package/dist/components/tt-button/index.d.ts +1740 -0
  5. package/dist/components/tt-button/index.vue.d.ts +1004 -0
  6. package/dist/components/tt-checkbox/index.d.ts +36 -0
  7. package/dist/components/tt-checkbox/index.vue.d.ts +28 -0
  8. package/dist/components/tt-checkbox/type.d.ts +9 -0
  9. package/dist/components/tt-drawer/index.d.ts +3703 -0
  10. package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +2121 -0
  11. package/dist/components/tt-drawer/src/components/DrawerFooter.vue.d.ts +94 -0
  12. package/dist/components/tt-drawer/src/components/DrawerHeader.vue.d.ts +27 -0
  13. package/dist/components/tt-drawer/src/hooks/useDrawerRender.d.ts +10 -0
  14. package/dist/components/tt-drawer/src/hooks/useResizable.d.ts +9 -0
  15. package/dist/components/tt-drawer/src/index.d.ts +10 -0
  16. package/dist/components/tt-drawer/src/props.d.ts +99 -0
  17. package/dist/components/tt-drawer/src/typing.d.ts +154 -0
  18. package/dist/components/tt-drawer/src/utils/drawer-api.d.ts +87 -0
  19. package/dist/components/tt-empty/index.d.ts +18 -0
  20. package/dist/components/tt-form/index.d.ts +15 -0
  21. package/dist/components/tt-form/src/components/ExpandableArrow.vue.d.ts +33 -0
  22. package/dist/components/tt-form/src/components/FormActions.vue.d.ts +34 -0
  23. package/dist/components/tt-form/src/components/Slot.d.ts +7 -0
  24. package/dist/components/tt-form/src/config.d.ts +6 -0
  25. package/dist/components/tt-form/src/form/FormControl.vue.d.ts +19 -0
  26. package/dist/components/tt-form/src/form/FormDescription.vue.d.ts +23 -0
  27. package/dist/components/tt-form/src/form/FormItem.vue.d.ts +23 -0
  28. package/dist/components/tt-form/src/form/FormLabel.vue.d.ts +23 -0
  29. package/dist/components/tt-form/src/form/FormMessage.vue.d.ts +2 -0
  30. package/dist/components/tt-form/src/form/FormMessageToolTip.vue.d.ts +8 -0
  31. package/dist/components/tt-form/src/form/FormWarnMessage.vue.d.ts +25 -0
  32. package/dist/components/tt-form/src/form/RenderContent.vue.d.ts +23 -0
  33. package/dist/components/tt-form/src/form/index.d.ts +10 -0
  34. package/dist/components/tt-form/src/form/injectionKeys.d.ts +2 -0
  35. package/dist/components/tt-form/src/form/useFormField.d.ts +11 -0
  36. package/dist/components/tt-form/src/form-render/FormField.vue.d.ts +28 -0
  37. package/dist/components/tt-form/src/form-render/FormLabel.vue.d.ts +27 -0
  38. package/dist/components/tt-form/src/form-render/context.d.ts +7 -0
  39. package/dist/components/tt-form/src/form-render/dependencies.d.ts +361 -0
  40. package/dist/components/tt-form/src/form-render/expandable.d.ts +9 -0
  41. package/dist/components/tt-form/src/form-render/form.vue.d.ts +41 -0
  42. package/dist/components/tt-form/src/form-render/helper.d.ts +11 -0
  43. package/dist/components/tt-form/src/form-render/index.d.ts +3 -0
  44. package/dist/components/tt-form/src/formApi.d.ts +71 -0
  45. package/dist/components/tt-form/src/group-form/FieldRenderer.d.ts +81 -0
  46. package/dist/components/tt-form/src/group-form/GroupForm.vue.d.ts +49 -0
  47. package/dist/components/tt-form/src/group-form/GroupSection.vue.d.ts +25 -0
  48. package/dist/components/tt-form/src/group-form/LazyFormField.vue.d.ts +13 -0
  49. package/dist/components/tt-form/src/group-form/index.d.ts +3 -0
  50. package/dist/components/tt-form/src/group-form/lazyContext.d.ts +37 -0
  51. package/dist/components/tt-form/src/group-form/types.d.ts +147 -0
  52. package/dist/components/tt-form/src/group-form/useGroupForm.d.ts +5 -0
  53. package/dist/components/tt-form/src/group-form/utils.d.ts +93 -0
  54. package/dist/components/tt-form/src/hooks/useEmitAsProps.d.ts +7 -0
  55. package/dist/components/tt-form/src/hooks/useFormFieldBus.d.ts +14 -0
  56. package/dist/components/tt-form/src/hooks/useForwardPriorityValues.d.ts +14 -0
  57. package/dist/components/tt-form/src/hooks/useForwardProps.d.ts +7 -0
  58. package/dist/components/tt-form/src/hooks/useForwardPropsEmits.d.ts +8 -0
  59. package/dist/components/tt-form/src/index.vue.d.ts +27 -0
  60. package/dist/components/tt-form/src/shared/createContext.d.ts +8 -0
  61. package/dist/components/tt-form/src/shared/global-state.d.ts +17 -0
  62. package/dist/components/tt-form/src/shared/store.d.ts +1 -0
  63. package/dist/components/tt-form/src/shared/zod-defaults.d.ts +54 -0
  64. package/dist/components/tt-form/src/types/common.d.ts +11 -0
  65. package/dist/components/tt-form/src/types/forms.d.ts +280 -0
  66. package/dist/components/tt-form/src/types/index.d.ts +3 -0
  67. package/dist/components/tt-form/src/types/paths.d.ts +142 -0
  68. package/dist/components/tt-form/src/types/shared.d.ts +19 -0
  69. package/dist/components/tt-form/src/types.d.ts +452 -0
  70. package/dist/components/tt-form/src/useForm.d.ts +2 -0
  71. package/dist/components/tt-form/src/useFormContext.d.ts +12 -0
  72. package/dist/components/tt-form-item-error-tooltip/index.d.ts +1549 -0
  73. package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +784 -0
  74. package/dist/components/tt-icon/components/AddIcon.vue.d.ts +7 -0
  75. package/dist/components/tt-icon/components/SubIcon.vue.d.ts +7 -0
  76. package/dist/components/tt-icon/index.d.ts +124 -0
  77. package/dist/components/tt-icon/index.vue.d.ts +32 -0
  78. package/dist/components/tt-image/index.d.ts +127 -0
  79. package/dist/components/tt-image/src/components/ImageViewer.d.ts +89 -0
  80. package/dist/components/tt-image/tt-image.d.ts +126 -0
  81. package/dist/components/tt-loading/index.d.ts +16 -0
  82. package/dist/components/tt-loading/src/directive.d.ts +9 -0
  83. package/dist/components/tt-loading/src/loading.vue.d.ts +12 -0
  84. package/dist/components/tt-loading/src/service.d.ts +25 -0
  85. package/dist/components/tt-loading/src/type.d.ts +20 -0
  86. package/dist/components/tt-modal/index.d.ts +1809 -0
  87. package/dist/components/tt-modal/src/RenderModal.vue.d.ts +1008 -0
  88. package/dist/components/tt-modal/src/components/ModalFooter.vue.d.ts +210 -0
  89. package/dist/components/tt-modal/src/components/ModalHeader.vue.d.ts +31 -0
  90. package/dist/components/tt-modal/src/components/ModalWrapper.vue.d.ts +224 -0
  91. package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +110 -0
  92. package/dist/components/tt-modal/src/index.d.ts +5 -0
  93. package/dist/components/tt-modal/src/props.d.ts +161 -0
  94. package/dist/components/tt-modal/src/typing.d.ts +188 -0
  95. package/dist/components/tt-modal/src/utils/modal-api.d.ts +97 -0
  96. package/dist/components/tt-modal-form/hooks/useModalFormSlot.d.ts +6 -0
  97. package/dist/components/tt-modal-form/index.d.ts +2 -0
  98. package/dist/components/tt-modal-form/index.vue.d.ts +43 -0
  99. package/dist/components/tt-modal-form/props.d.ts +38 -0
  100. package/dist/components/tt-modal-form/useModalForm.d.ts +6 -0
  101. package/dist/components/tt-nav-anchor/index.d.ts +19 -0
  102. package/dist/components/tt-nav-anchor/src/TtNavAnchor.vue.d.ts +19 -0
  103. package/dist/components/tt-nav-anchor/src/types.d.ts +29 -0
  104. package/dist/components/tt-select/index.d.ts +7 -0
  105. package/dist/components/tt-select/src/Select.vue.d.ts +861 -0
  106. package/dist/components/tt-select/src/components/SelectTable.vue.d.ts +111 -0
  107. package/dist/components/tt-select/src/components/Table.vue.d.ts +250 -0
  108. package/dist/components/tt-select/src/const.d.ts +16 -0
  109. package/dist/components/tt-select/src/hooks/useDataSource.d.ts +115 -0
  110. package/dist/components/tt-select/src/hooks/useGrid.d.ts +32 -0
  111. package/dist/components/tt-select/src/hooks/useKeyboard.d.ts +59 -0
  112. package/dist/components/tt-select/src/hooks/usePagination.d.ts +16 -0
  113. package/dist/components/tt-select/src/hooks/useSelect.d.ts +87 -0
  114. package/dist/components/tt-select/src/hooks/useSelectTableEvent.d.ts +178 -0
  115. package/dist/components/tt-select/src/props.d.ts +190 -0
  116. package/dist/components/tt-select/src/types/index.d.ts +142 -0
  117. package/dist/components/tt-select/src/utils/index.d.ts +9 -0
  118. package/dist/components/tt-table/index.d.ts +127 -0
  119. package/dist/components/tt-table/src/Table.vue.d.ts +1685 -0
  120. package/dist/components/tt-table/src/componentMap.d.ts +8 -0
  121. package/dist/components/tt-table/src/components/RowContext.d.ts +24 -0
  122. package/dist/components/tt-table/src/components/TableAction.vue.d.ts +79 -0
  123. package/dist/components/tt-table/src/components/TableButtons.d.ts +30 -0
  124. package/dist/components/tt-table/src/components/TableColumnModal.vue.d.ts +26 -0
  125. package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +1531 -0
  126. package/dist/components/tt-table/src/emits.d.ts +1 -0
  127. package/dist/components/tt-table/src/enum.d.ts +2 -0
  128. package/dist/components/tt-table/src/hooks/useCellArea.d.ts +15 -0
  129. package/dist/components/tt-table/src/hooks/useColumns.d.ts +27 -0
  130. package/dist/components/tt-table/src/hooks/useCustomColumns.d.ts +20 -0
  131. package/dist/components/tt-table/src/hooks/useDataSource.d.ts +29 -0
  132. package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +1082 -0
  133. package/dist/components/tt-table/src/hooks/usePagination.d.ts +102 -0
  134. package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +30 -0
  135. package/dist/components/tt-table/src/hooks/useTable.d.ts +7 -0
  136. package/dist/components/tt-table/src/hooks/useTableContext.d.ts +43 -0
  137. package/dist/components/tt-table/src/hooks/useTableEvent.d.ts +101 -0
  138. package/dist/components/tt-table/src/hooks/useTableForm.d.ts +15 -0
  139. package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts +10 -0
  140. package/dist/components/tt-table/src/hooks/useTableHeight.d.ts +15 -0
  141. package/dist/components/tt-table/src/hooks/useTableRender.d.ts +93 -0
  142. package/dist/components/tt-table/src/hooks/useTableSlot.d.ts +11 -0
  143. package/dist/components/tt-table/src/props.d.ts +433 -0
  144. package/dist/components/tt-table/src/toolProps.d.ts +19 -0
  145. package/dist/components/tt-table/src/types/table.d.ts +489 -0
  146. package/dist/components/tt-table/src/types/tableAction.d.ts +26 -0
  147. package/dist/components/tt-table/src/types/tableForm.d.ts +64 -0
  148. package/dist/components/tt-table/src/types/tableTools.d.ts +10 -0
  149. package/dist/components/tt-table/src/utils/context.d.ts +18 -0
  150. package/dist/components/tt-table/src/utils/filters.d.ts +109 -0
  151. package/dist/components/tt-table/src/utils/table-api.d.ts +250 -0
  152. package/dist/components/tt-table/src/utils/table-form-api.d.ts +88 -0
  153. package/dist/components/tt-table/src/utils/vxeTable.d.ts +28 -0
  154. package/dist/components/tt-text/index.d.ts +76 -0
  155. package/dist/components/tt-text/index.vue.d.ts +50 -0
  156. package/dist/components/tt-tree-select/index.d.ts +5 -0
  157. package/dist/components/tt-tree-select/src/TtTreeSelect.vue.d.ts +6 -0
  158. package/dist/components/tt-tree-select/src/cache-options.d.ts +35 -0
  159. package/dist/components/tt-tree-select/src/select.d.ts +10 -0
  160. package/dist/components/tt-tree-select/src/tree.d.ts +23 -0
  161. package/dist/components/tt-tree-select/src/utils.d.ts +10 -0
  162. package/dist/components/tt-upload/index.d.ts +428 -0
  163. package/dist/components/tt-upload/src/TtUpload.d.ts +449 -0
  164. package/dist/components/tt-upload/src/typing.d.ts +251 -0
  165. package/dist/components/types.d.ts +230 -0
  166. package/dist/directives/auto-tip/index.d.ts +3 -0
  167. package/dist/directives/dialog-resize/index.d.ts +25 -0
  168. package/dist/directives/dialog-resize/use-css-variable.d.ts +1 -0
  169. package/dist/directives/dialog-resize/use-draggable.d.ts +4 -0
  170. package/dist/directives/dialog-resize/use-fullscreen.d.ts +1 -0
  171. package/dist/directives/dialog-resize/use-parse-translate.d.ts +4 -0
  172. package/dist/directives/dialog-resize/use-resizer.d.ts +2 -0
  173. package/dist/directives/disabled-tip/index.d.ts +17 -0
  174. package/dist/directives/index.d.ts +3 -0
  175. package/dist/hooks/useFormat.d.ts +73 -0
  176. package/dist/hooks/useLoading.d.ts +9 -0
  177. package/dist/hooks/useSetup.d.ts +8 -0
  178. package/dist/hooks/useTable.d.ts +5 -0
  179. package/dist/hooks/useTemplateSlot.d.ts +9 -0
  180. package/dist/{index-CMjNBMj5.js → index-NG5FNCLD.js} +2 -3
  181. package/dist/index.d.ts +47 -0
  182. package/dist/index.js +10239 -9224
  183. package/dist/{index.modern-BfZxYaPy.js → index.modern-DfItAsVf.js} +1 -1
  184. package/dist/plugins/index.d.ts +1 -0
  185. package/dist/plugins/vxeTable/switchStatus.d.ts +7 -0
  186. package/dist/plugins.d.ts +2 -0
  187. package/dist/plugins.js +29 -30
  188. package/dist/style.css +1 -1
  189. package/package.json +3 -10
@@ -0,0 +1,1685 @@
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" | "tabindex" | "tag" | "maxHeight" | "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
+ id: {
87
+ type: import('vue').PropType<string>;
88
+ };
89
+ ariaLabel: {
90
+ type: import('vue').PropType<string>;
91
+ };
92
+ role: {
93
+ type: import('vue').PropType<string>;
94
+ };
95
+ height: {
96
+ type: import('vue').PropType<string | number>;
97
+ default: string;
98
+ };
99
+ tabindex: {
100
+ type: import('vue').PropType<string | number>;
101
+ default: undefined;
102
+ };
103
+ tag: {
104
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
105
+ default: string;
106
+ };
107
+ maxHeight: {
108
+ type: import('vue').PropType<string | number>;
109
+ default: string;
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
+ id: {
213
+ type: import('vue').PropType<string>;
214
+ };
215
+ ariaLabel: {
216
+ type: import('vue').PropType<string>;
217
+ };
218
+ role: {
219
+ type: import('vue').PropType<string>;
220
+ };
221
+ height: {
222
+ type: import('vue').PropType<string | number>;
223
+ default: string;
224
+ };
225
+ tabindex: {
226
+ type: import('vue').PropType<string | number>;
227
+ default: undefined;
228
+ };
229
+ tag: {
230
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
231
+ default: string;
232
+ };
233
+ maxHeight: {
234
+ type: import('vue').PropType<string | number>;
235
+ default: string;
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" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "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" | "tabindex" | "tag" | "maxHeight" | "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
+ id: {
351
+ type: import('vue').PropType<string>;
352
+ };
353
+ ariaLabel: {
354
+ type: import('vue').PropType<string>;
355
+ };
356
+ role: {
357
+ type: import('vue').PropType<string>;
358
+ };
359
+ height: {
360
+ type: import('vue').PropType<string | number>;
361
+ default: string;
362
+ };
363
+ tabindex: {
364
+ type: import('vue').PropType<string | number>;
365
+ default: undefined;
366
+ };
367
+ tag: {
368
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
369
+ default: string;
370
+ };
371
+ maxHeight: {
372
+ type: import('vue').PropType<string | number>;
373
+ default: string;
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
+ id: {
477
+ type: import('vue').PropType<string>;
478
+ };
479
+ ariaLabel: {
480
+ type: import('vue').PropType<string>;
481
+ };
482
+ role: {
483
+ type: import('vue').PropType<string>;
484
+ };
485
+ height: {
486
+ type: import('vue').PropType<string | number>;
487
+ default: string;
488
+ };
489
+ tabindex: {
490
+ type: import('vue').PropType<string | number>;
491
+ default: undefined;
492
+ };
493
+ tag: {
494
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
495
+ default: string;
496
+ };
497
+ maxHeight: {
498
+ type: import('vue').PropType<string | number>;
499
+ default: string;
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" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "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: () => import("vxe-table").VxeTablePropTypes.KeyboardConfig<any> | undefined;
566
+ };
567
+ menuConfig: {
568
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MenuConfig>;
569
+ default: () => {};
570
+ };
571
+ mouseConfig: {
572
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MouseConfig>;
573
+ default: () => import("vxe-table").VxeTablePropTypes.MouseConfig | undefined;
574
+ };
575
+ checkboxConfig: {
576
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig>;
577
+ default: () => import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTablePropTypes.Row> | undefined;
578
+ };
579
+ radioConfig: {
580
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.RadioConfig>;
581
+ default: () => import("vxe-table").VxeTablePropTypes.RadioConfig<import("vxe-table").VxeTablePropTypes.Row> | undefined;
582
+ };
583
+ columns: {
584
+ type: import('vue').PropType<TtTableProps["columns"]>;
585
+ default: () => never[];
586
+ };
587
+ height: {
588
+ type: (NumberConstructor | StringConstructor)[];
589
+ default: undefined;
590
+ };
591
+ showOverflow: {
592
+ type: import('vue').PropType<TtTableProps["showOverflow"]>;
593
+ default: boolean;
594
+ };
595
+ showHeaderOverflow: {
596
+ type: import('vue').PropType<TtTableProps["showHeaderOverflow"]>;
597
+ default: boolean;
598
+ };
599
+ pagerConfig: {
600
+ type: import('vue').PropType<TtTableProps["pagerConfig"]>;
601
+ default: () => import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
602
+ };
603
+ toolbarConfig: {
604
+ type: import('vue').PropType<TtTableProps["toolbarConfig"]>;
605
+ default: () => null;
606
+ };
607
+ zoomConfig: {
608
+ type: import('vue').PropType<TtTableProps["zoomConfig"]>;
609
+ default: () => null;
610
+ };
611
+ size: {
612
+ type: import('vue').PropType<TtTableProps["size"]>;
613
+ default: () => import('vxe-pc-ui').VxeComponentSizeType | undefined;
614
+ };
615
+ toolTipErrorPlacement: {
616
+ type: import('vue').PropType<"top" | "bottom" | "left" | "right">;
617
+ default: string;
618
+ };
619
+ showToolbar: any;
620
+ columnsFieldSort: any;
621
+ columnsFieldNoSort: any;
622
+ showRefresh: {
623
+ type: BooleanConstructor;
624
+ default: () => boolean | undefined;
625
+ };
626
+ showSetting: {
627
+ type: BooleanConstructor;
628
+ default: () => boolean | undefined;
629
+ };
630
+ showSetColumn: {
631
+ type: BooleanConstructor;
632
+ default: () => boolean | undefined;
633
+ };
634
+ showLineHeight: {
635
+ type: BooleanConstructor;
636
+ default: () => any;
637
+ };
638
+ notSetColumnField: any;
639
+ filterNoVisibleField: any;
640
+ showTableAlert: any;
641
+ api: {
642
+ type: import('vue').PropType<(...arg: any[]) => Promise<any>>;
643
+ default: null;
644
+ };
645
+ searchInfo: {
646
+ type: ObjectConstructor;
647
+ default: () => {};
648
+ };
649
+ immediate: any;
650
+ resultCode: {
651
+ type: (NumberConstructor | StringConstructor)[];
652
+ default: number;
653
+ };
654
+ afterFetch: {
655
+ type: import('vue').PropType<TtTableProps["afterFetch"]>;
656
+ default: null;
657
+ };
658
+ beforeFetch: {
659
+ type: import('vue').PropType<TtTableProps["beforeFetch"]>;
660
+ default: null;
661
+ };
662
+ data: {
663
+ type: import('vue').PropType<TtTableProps["data"]>;
664
+ default: never[];
665
+ };
666
+ isScrollFetch: {
667
+ type: BooleanConstructor;
668
+ default: boolean;
669
+ };
670
+ showScrollFetchLoading: {
671
+ type: BooleanConstructor;
672
+ default: boolean;
673
+ };
674
+ showCheckbox: any;
675
+ showRadio: any;
676
+ showIndex: any;
677
+ isCellResize: any;
678
+ isColumnsDrag: any;
679
+ isCellSort: any;
680
+ isAreaCheckData: any;
681
+ showAction: any;
682
+ actionWidth: any;
683
+ actionTitle: any;
684
+ actionProps: {
685
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
686
+ default: () => {};
687
+ };
688
+ indexColumnProps: {
689
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
690
+ default: () => {};
691
+ };
692
+ checkboxColumnProps: {
693
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
694
+ default: () => {};
695
+ };
696
+ rowDragColumnProps: {
697
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
698
+ default: () => {};
699
+ };
700
+ radioColumnProps: {
701
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
702
+ default: () => {};
703
+ };
704
+ tableRowId: {
705
+ type: StringConstructor;
706
+ default: () => string | undefined;
707
+ };
708
+ customizeColumn: {
709
+ type: import('vue').PropType<TtTableProps["customizeColumn"]>;
710
+ };
711
+ showPager: any;
712
+ total: any;
713
+ currentPageField: {
714
+ type: StringConstructor;
715
+ default: () => string | undefined;
716
+ };
717
+ pageSizeField: {
718
+ type: StringConstructor;
719
+ default: () => string | undefined;
720
+ };
721
+ totalField: {
722
+ type: StringConstructor;
723
+ default: () => string | undefined;
724
+ };
725
+ dataField: {
726
+ type: StringConstructor;
727
+ default: () => string | undefined;
728
+ };
729
+ modelValue: {
730
+ type: ArrayConstructor[];
731
+ default: () => never[];
732
+ };
733
+ title: any;
734
+ showTitle: any;
735
+ autoHeight: any;
736
+ offsetHeight: any;
737
+ leftSlotWidth: any;
738
+ rightSlotWidth: any;
739
+ loadingText: {
740
+ type: StringConstructor;
741
+ default: () => string | undefined;
742
+ };
743
+ emptyImageStyle: any;
744
+ emptyText: {
745
+ type: StringConstructor;
746
+ default: () => string | undefined;
747
+ };
748
+ emptyImageStatus: {
749
+ type: import('vue').PropType<"no-data" | "no-search">;
750
+ default: string;
751
+ };
752
+ noSearchText: {
753
+ type: StringConstructor;
754
+ default: () => string | undefined;
755
+ };
756
+ isHanderSubmit: any;
757
+ columnsKey: any;
758
+ useHttpCache: {
759
+ type: BooleanConstructor;
760
+ default: () => boolean | undefined;
761
+ };
762
+ defaultDisplayFields: {
763
+ type: import('vue').PropType<string[]>;
764
+ default: () => string[] | undefined;
765
+ };
766
+ isRowDrag: any;
767
+ treeNode: any;
768
+ getSyncSlotComponent: {
769
+ type: import('vue').PropType<(column: any, row: any, type: "default" | "edit") => import('vue').VNode | import('vue').VNode[] | string>;
770
+ };
771
+ clearTreeExpand: any;
772
+ isI18n: any;
773
+ isDataCloneDeep: any;
774
+ tableApi: {
775
+ type: import('vue').PropType<TtTableExtendedTableApi>;
776
+ };
777
+ formApi: {
778
+ type: import('vue').PropType<import('../../tt-form').TtExtendedFormApi>;
779
+ };
780
+ useSearchForm: any;
781
+ disabledTeleport: any;
782
+ testId: {
783
+ type: StringConstructor;
784
+ default: undefined;
785
+ };
786
+ }>, {
787
+ xGrid: Ref<VxeGridInstance<Recordable> | undefined, VxeGridInstance<Recordable> | undefined>;
788
+ reload: (data?: import('..').FetchParams) => Promise<void>;
789
+ redoHeight: () => void;
790
+ setProps: (props: Partial<TtTableProps>) => void;
791
+ setLoading: (loading: boolean) => void;
792
+ getLoading?: import('vue').ComputedRef<boolean | undefined>;
793
+ setTableColumns: (columns: import("vxe-table").VxeGridPropTypes.Columns<import("vxe-table").VxeTablePropTypes.Row>) => void;
794
+ emitLoading?: (loading: boolean, uid: number) => void;
795
+ getDataSource: () => import("vxe-table").VxeTablePropTypes.Row[];
796
+ setPagination: (props: Partial<import("vxe-table").VxeGridPropTypes.PagerConfig>) => void;
797
+ getPagination: () => import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
798
+ getTableInstance: () => import('vxe-table').VxeGridMethods;
799
+ getSelectRowKeys: () => import('..').TtSelectRowKeysType;
800
+ getSelectRows: () => import('..').TtSelectRowsType;
801
+ getTableColumns: () => import("vxe-table").VxeGridPropTypes.Columns<import("vxe-table").VxeTablePropTypes.Row> | undefined;
802
+ setSelectedRowKeys: (rows: import('..').TtSelectRowsType, keys?: import('..').TtSelectRowKeysType) => void;
803
+ clearSelectedRowKeys: () => void;
804
+ selectedKeys: import('vue').MaybeRef<import('..').TtSelectRowKeysType>;
805
+ selectedRows: import('vue').MaybeRef<import('..').TtSelectRowsType>;
806
+ insert: (records: any) => Promise<{
807
+ row: import("vxe-table").VxeTablePropTypes.Row;
808
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
809
+ }>;
810
+ insertAt: (records: any, row: any | -1 | null) => Promise<{
811
+ row: import("vxe-table").VxeTablePropTypes.Row;
812
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
813
+ }>;
814
+ remove: (rows?: any | any[]) => Promise<{
815
+ row: import("vxe-table").VxeTablePropTypes.Row;
816
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
817
+ }>;
818
+ removeCheckboxRow: () => Promise<{
819
+ row: import("vxe-table").VxeTablePropTypes.Row;
820
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
821
+ }>;
822
+ removeRadioRow: () => Promise<{
823
+ row: import("vxe-table").VxeTablePropTypes.Row;
824
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
825
+ }>;
826
+ removeCurrentRow: () => Promise<{
827
+ row: import("vxe-table").VxeTablePropTypes.Row;
828
+ rows: import("vxe-table").VxeTablePropTypes.Row[];
829
+ }>;
830
+ clearEditRevertData: (records: import("vxe-table").VxeTablePropTypes.Row) => void;
831
+ setEditRow: (row: import("vxe-table").VxeTablePropTypes.Row, fieldOrColumn?: boolean | string | VxeTableDefines.ColumnInfo) => void;
832
+ setEditCell: (row: import("vxe-table").VxeTablePropTypes.Row, fieldOrColumn: string | VxeTableDefines.ColumnInfo) => void;
833
+ loadData: (data: any[]) => Promise<any>;
834
+ reloadData: (data: any[]) => Promise<void>;
835
+ reloadColumn: (columns: (VxeTableDefines.ColumnOptions<any> | VxeTableDefines.ColumnInfo<any>)[]) => Promise<void>;
836
+ reloadRow: (rows: any | any[], record?: any, field?: string) => Promise<void>;
837
+ clearData: (rows?: any | any[], field?: string) => Promise<any>;
838
+ reloadRowExpand: (row: any) => Promise<void>;
839
+ reloadTreeExpand: (row: any) => Promise<any>;
840
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
841
+ keyboardConfig: {
842
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.KeyboardConfig>;
843
+ default: () => import("vxe-table").VxeTablePropTypes.KeyboardConfig<any> | undefined;
844
+ };
845
+ menuConfig: {
846
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MenuConfig>;
847
+ default: () => {};
848
+ };
849
+ mouseConfig: {
850
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MouseConfig>;
851
+ default: () => import("vxe-table").VxeTablePropTypes.MouseConfig | undefined;
852
+ };
853
+ checkboxConfig: {
854
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig>;
855
+ default: () => import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTablePropTypes.Row> | undefined;
856
+ };
857
+ radioConfig: {
858
+ type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.RadioConfig>;
859
+ default: () => import("vxe-table").VxeTablePropTypes.RadioConfig<import("vxe-table").VxeTablePropTypes.Row> | undefined;
860
+ };
861
+ columns: {
862
+ type: import('vue').PropType<TtTableProps["columns"]>;
863
+ default: () => never[];
864
+ };
865
+ height: {
866
+ type: (NumberConstructor | StringConstructor)[];
867
+ default: undefined;
868
+ };
869
+ showOverflow: {
870
+ type: import('vue').PropType<TtTableProps["showOverflow"]>;
871
+ default: boolean;
872
+ };
873
+ showHeaderOverflow: {
874
+ type: import('vue').PropType<TtTableProps["showHeaderOverflow"]>;
875
+ default: boolean;
876
+ };
877
+ pagerConfig: {
878
+ type: import('vue').PropType<TtTableProps["pagerConfig"]>;
879
+ default: () => import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
880
+ };
881
+ toolbarConfig: {
882
+ type: import('vue').PropType<TtTableProps["toolbarConfig"]>;
883
+ default: () => null;
884
+ };
885
+ zoomConfig: {
886
+ type: import('vue').PropType<TtTableProps["zoomConfig"]>;
887
+ default: () => null;
888
+ };
889
+ size: {
890
+ type: import('vue').PropType<TtTableProps["size"]>;
891
+ default: () => import('vxe-pc-ui').VxeComponentSizeType | undefined;
892
+ };
893
+ toolTipErrorPlacement: {
894
+ type: import('vue').PropType<"top" | "bottom" | "left" | "right">;
895
+ default: string;
896
+ };
897
+ showToolbar: any;
898
+ columnsFieldSort: any;
899
+ columnsFieldNoSort: any;
900
+ showRefresh: {
901
+ type: BooleanConstructor;
902
+ default: () => boolean | undefined;
903
+ };
904
+ showSetting: {
905
+ type: BooleanConstructor;
906
+ default: () => boolean | undefined;
907
+ };
908
+ showSetColumn: {
909
+ type: BooleanConstructor;
910
+ default: () => boolean | undefined;
911
+ };
912
+ showLineHeight: {
913
+ type: BooleanConstructor;
914
+ default: () => any;
915
+ };
916
+ notSetColumnField: any;
917
+ filterNoVisibleField: any;
918
+ showTableAlert: any;
919
+ api: {
920
+ type: import('vue').PropType<(...arg: any[]) => Promise<any>>;
921
+ default: null;
922
+ };
923
+ searchInfo: {
924
+ type: ObjectConstructor;
925
+ default: () => {};
926
+ };
927
+ immediate: any;
928
+ resultCode: {
929
+ type: (NumberConstructor | StringConstructor)[];
930
+ default: number;
931
+ };
932
+ afterFetch: {
933
+ type: import('vue').PropType<TtTableProps["afterFetch"]>;
934
+ default: null;
935
+ };
936
+ beforeFetch: {
937
+ type: import('vue').PropType<TtTableProps["beforeFetch"]>;
938
+ default: null;
939
+ };
940
+ data: {
941
+ type: import('vue').PropType<TtTableProps["data"]>;
942
+ default: never[];
943
+ };
944
+ isScrollFetch: {
945
+ type: BooleanConstructor;
946
+ default: boolean;
947
+ };
948
+ showScrollFetchLoading: {
949
+ type: BooleanConstructor;
950
+ default: boolean;
951
+ };
952
+ showCheckbox: any;
953
+ showRadio: any;
954
+ showIndex: any;
955
+ isCellResize: any;
956
+ isColumnsDrag: any;
957
+ isCellSort: any;
958
+ isAreaCheckData: any;
959
+ showAction: any;
960
+ actionWidth: any;
961
+ actionTitle: any;
962
+ actionProps: {
963
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
964
+ default: () => {};
965
+ };
966
+ indexColumnProps: {
967
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
968
+ default: () => {};
969
+ };
970
+ checkboxColumnProps: {
971
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
972
+ default: () => {};
973
+ };
974
+ rowDragColumnProps: {
975
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
976
+ default: () => {};
977
+ };
978
+ radioColumnProps: {
979
+ type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
980
+ default: () => {};
981
+ };
982
+ tableRowId: {
983
+ type: StringConstructor;
984
+ default: () => string | undefined;
985
+ };
986
+ customizeColumn: {
987
+ type: import('vue').PropType<TtTableProps["customizeColumn"]>;
988
+ };
989
+ showPager: any;
990
+ total: any;
991
+ currentPageField: {
992
+ type: StringConstructor;
993
+ default: () => string | undefined;
994
+ };
995
+ pageSizeField: {
996
+ type: StringConstructor;
997
+ default: () => string | undefined;
998
+ };
999
+ totalField: {
1000
+ type: StringConstructor;
1001
+ default: () => string | undefined;
1002
+ };
1003
+ dataField: {
1004
+ type: StringConstructor;
1005
+ default: () => string | undefined;
1006
+ };
1007
+ modelValue: {
1008
+ type: ArrayConstructor[];
1009
+ default: () => never[];
1010
+ };
1011
+ title: any;
1012
+ showTitle: any;
1013
+ autoHeight: any;
1014
+ offsetHeight: any;
1015
+ leftSlotWidth: any;
1016
+ rightSlotWidth: any;
1017
+ loadingText: {
1018
+ type: StringConstructor;
1019
+ default: () => string | undefined;
1020
+ };
1021
+ emptyImageStyle: any;
1022
+ emptyText: {
1023
+ type: StringConstructor;
1024
+ default: () => string | undefined;
1025
+ };
1026
+ emptyImageStatus: {
1027
+ type: import('vue').PropType<"no-data" | "no-search">;
1028
+ default: string;
1029
+ };
1030
+ noSearchText: {
1031
+ type: StringConstructor;
1032
+ default: () => string | undefined;
1033
+ };
1034
+ isHanderSubmit: any;
1035
+ columnsKey: any;
1036
+ useHttpCache: {
1037
+ type: BooleanConstructor;
1038
+ default: () => boolean | undefined;
1039
+ };
1040
+ defaultDisplayFields: {
1041
+ type: import('vue').PropType<string[]>;
1042
+ default: () => string[] | undefined;
1043
+ };
1044
+ isRowDrag: any;
1045
+ treeNode: any;
1046
+ getSyncSlotComponent: {
1047
+ type: import('vue').PropType<(column: any, row: any, type: "default" | "edit") => import('vue').VNode | import('vue').VNode[] | string>;
1048
+ };
1049
+ clearTreeExpand: any;
1050
+ isI18n: any;
1051
+ isDataCloneDeep: any;
1052
+ tableApi: {
1053
+ type: import('vue').PropType<TtTableExtendedTableApi>;
1054
+ };
1055
+ formApi: {
1056
+ type: import('vue').PropType<import('../../tt-form').TtExtendedFormApi>;
1057
+ };
1058
+ useSearchForm: any;
1059
+ disabledTeleport: any;
1060
+ testId: {
1061
+ type: StringConstructor;
1062
+ default: undefined;
1063
+ };
1064
+ }>> & Readonly<{}>, {
1065
+ data: import('vue').MaybeRef<any[]> | undefined;
1066
+ title: any;
1067
+ size: import('vxe-pc-ui').VxeComponentSizeType | undefined;
1068
+ immediate: any;
1069
+ height: string | number;
1070
+ modelValue: unknown[];
1071
+ total: any;
1072
+ loadingText: string;
1073
+ pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
1074
+ showPager: any;
1075
+ showCheckbox: any;
1076
+ columns: import('vue').MaybeRef<VxeTableDefines.ColumnOptions<any>[]> | undefined;
1077
+ toolbarConfig: import("vxe-table").VxeGridPropTypes.ToolbarConfig | undefined;
1078
+ zoomConfig: import("vxe-table").VxeGridPropTypes.ZoomConfig | undefined;
1079
+ showOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
1080
+ showHeaderOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
1081
+ radioConfig: import("vxe-table").VxeTablePropTypes.RadioConfig<import("vxe-table").VxeTablePropTypes.Row>;
1082
+ checkboxConfig: import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTablePropTypes.Row>;
1083
+ menuConfig: import("vxe-table").VxeTablePropTypes.MenuConfig<any>;
1084
+ mouseConfig: import("vxe-table").VxeTablePropTypes.MouseConfig;
1085
+ keyboardConfig: import("vxe-table").VxeTablePropTypes.KeyboardConfig<any>;
1086
+ emptyText: string;
1087
+ clearTreeExpand: any;
1088
+ currentPageField: string;
1089
+ pageSizeField: string;
1090
+ totalField: string;
1091
+ dataField: string;
1092
+ tableRowId: string;
1093
+ resultCode: string | number;
1094
+ noSearchText: string;
1095
+ useHttpCache: boolean;
1096
+ showSetting: boolean;
1097
+ showRefresh: boolean;
1098
+ columnsKey: any;
1099
+ showRadio: any;
1100
+ showIndex: any;
1101
+ isCellResize: any;
1102
+ isColumnsDrag: any;
1103
+ isCellSort: any;
1104
+ showAction: any;
1105
+ actionWidth: any;
1106
+ actionTitle: any;
1107
+ actionProps: VxeTableDefines.ColumnOptions<any>;
1108
+ indexColumnProps: VxeTableDefines.ColumnOptions<any>;
1109
+ checkboxColumnProps: VxeTableDefines.ColumnOptions<any>;
1110
+ rowDragColumnProps: VxeTableDefines.ColumnOptions<any>;
1111
+ radioColumnProps: VxeTableDefines.ColumnOptions<any>;
1112
+ searchInfo: Record<string, any>;
1113
+ showToolbar: any;
1114
+ columnsFieldSort: any;
1115
+ columnsFieldNoSort: any;
1116
+ notSetColumnField: any;
1117
+ filterNoVisibleField: any;
1118
+ showTableAlert: any;
1119
+ isRowDrag: any;
1120
+ treeNode: any;
1121
+ isScrollFetch: boolean;
1122
+ showScrollFetchLoading: boolean;
1123
+ showTitle: any;
1124
+ autoHeight: any;
1125
+ offsetHeight: any;
1126
+ emptyImageStyle: any;
1127
+ emptyImageStatus: "no-data" | "no-search";
1128
+ isHanderSubmit: any;
1129
+ showSetColumn: boolean;
1130
+ leftSlotWidth: any;
1131
+ rightSlotWidth: any;
1132
+ showLineHeight: boolean;
1133
+ defaultDisplayFields: string[];
1134
+ isI18n: any;
1135
+ isDataCloneDeep: any;
1136
+ useSearchForm: any;
1137
+ testId: string;
1138
+ toolTipErrorPlacement: "top" | "bottom" | "left" | "right";
1139
+ isAreaCheckData: any;
1140
+ api: (...arg: any[]) => Promise<any>;
1141
+ afterFetch: ((data: import("vxe-table").VxeTablePropTypes.Row[], res: globalThis.Recordable) => Promise<import("vxe-table").VxeTablePropTypes.Row[]>) | undefined;
1142
+ beforeFetch: ((params: globalThis.Recordable) => Promise<globalThis.Recordable>) | undefined;
1143
+ disabledTeleport: any;
1144
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
1145
+ wrapRef: HTMLDivElement;
1146
+ xGrid: (import('vxe-table').VxeGridMethods<any> & {
1147
+ $props: VxeGridProps<any> & VxeGridEventProps<any>;
1148
+ $slots: import('vxe-table').VxeGridSlots<any>;
1149
+ }) | null;
1150
+ leftSlotScrollbarRef: ({
1151
+ $: import('vue').ComponentInternalInstance;
1152
+ $data: {};
1153
+ $props: Partial<{
1154
+ tabindex: number | string;
1155
+ height: number | string;
1156
+ maxHeight: number | string;
1157
+ tag: keyof HTMLElementTagNameMap | (string & {});
1158
+ minSize: number;
1159
+ distance: number;
1160
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1161
+ wrapClass: string | string[];
1162
+ viewClass: string | string[];
1163
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1164
+ }> & Omit<{
1165
+ readonly height: number | string;
1166
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
1167
+ readonly maxHeight: number | string;
1168
+ readonly distance: number;
1169
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1170
+ readonly wrapClass: string | string[];
1171
+ readonly viewClass: string | string[];
1172
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1173
+ readonly minSize: number;
1174
+ readonly id?: string | undefined;
1175
+ readonly ariaLabel?: string | undefined;
1176
+ readonly role?: string | undefined;
1177
+ readonly tabindex?: number | string | undefined;
1178
+ readonly native?: boolean | undefined;
1179
+ readonly noresize?: boolean | undefined;
1180
+ readonly always?: boolean | undefined;
1181
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
1182
+ onScroll?: ((args_0: {
1183
+ scrollTop: number;
1184
+ scrollLeft: number;
1185
+ }) => any) | undefined | undefined;
1186
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
1187
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tabindex" | "tag" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
1188
+ $attrs: {
1189
+ [x: string]: unknown;
1190
+ };
1191
+ $refs: {
1192
+ [x: string]: unknown;
1193
+ };
1194
+ $slots: Readonly<{
1195
+ [name: string]: import('vue').Slot<any> | undefined;
1196
+ }>;
1197
+ $root: import('vue').ComponentPublicInstance | null;
1198
+ $parent: import('vue').ComponentPublicInstance | null;
1199
+ $host: Element | null;
1200
+ $emit: ((event: "scroll", args_0: {
1201
+ scrollTop: number;
1202
+ scrollLeft: number;
1203
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
1204
+ $el: any;
1205
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
1206
+ id: {
1207
+ type: import('vue').PropType<string>;
1208
+ };
1209
+ ariaLabel: {
1210
+ type: import('vue').PropType<string>;
1211
+ };
1212
+ role: {
1213
+ type: import('vue').PropType<string>;
1214
+ };
1215
+ height: {
1216
+ type: import('vue').PropType<string | number>;
1217
+ default: string;
1218
+ };
1219
+ tabindex: {
1220
+ type: import('vue').PropType<string | number>;
1221
+ default: undefined;
1222
+ };
1223
+ tag: {
1224
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1225
+ default: string;
1226
+ };
1227
+ maxHeight: {
1228
+ type: import('vue').PropType<string | number>;
1229
+ default: string;
1230
+ };
1231
+ distance: {
1232
+ type: import('vue').PropType<number>;
1233
+ default: number;
1234
+ };
1235
+ native: {
1236
+ type: import('vue').PropType<boolean>;
1237
+ };
1238
+ wrapStyle: {
1239
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1240
+ default: string;
1241
+ };
1242
+ wrapClass: {
1243
+ type: import('vue').PropType<string | string[]>;
1244
+ default: string;
1245
+ };
1246
+ viewClass: {
1247
+ type: import('vue').PropType<string | string[]>;
1248
+ default: string;
1249
+ };
1250
+ viewStyle: {
1251
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1252
+ default: string;
1253
+ };
1254
+ noresize: {
1255
+ type: import('vue').PropType<boolean>;
1256
+ };
1257
+ always: {
1258
+ type: import('vue').PropType<boolean>;
1259
+ };
1260
+ minSize: {
1261
+ type: import('vue').PropType<number>;
1262
+ default: number;
1263
+ };
1264
+ ariaOrientation: {
1265
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1266
+ };
1267
+ }>> & {
1268
+ onScroll?: ((args_0: {
1269
+ scrollTop: number;
1270
+ scrollLeft: number;
1271
+ }) => any) | undefined;
1272
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1273
+ }, {
1274
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1275
+ update: () => void;
1276
+ scrollTo: {
1277
+ (xCord: number, yCord?: number): void;
1278
+ (options: ScrollToOptions): void;
1279
+ };
1280
+ setScrollTop: (value: number) => void;
1281
+ setScrollLeft: (value: number) => void;
1282
+ handleScroll: () => void;
1283
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1284
+ scroll: (args_0: {
1285
+ scrollTop: number;
1286
+ scrollLeft: number;
1287
+ }) => void;
1288
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
1289
+ }, string, {
1290
+ tabindex: number | string;
1291
+ height: number | string;
1292
+ maxHeight: number | string;
1293
+ tag: keyof HTMLElementTagNameMap | (string & {});
1294
+ minSize: number;
1295
+ distance: number;
1296
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1297
+ wrapClass: string | string[];
1298
+ viewClass: string | string[];
1299
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1300
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1301
+ beforeCreate?: (() => void) | (() => void)[];
1302
+ created?: (() => void) | (() => void)[];
1303
+ beforeMount?: (() => void) | (() => void)[];
1304
+ mounted?: (() => void) | (() => void)[];
1305
+ beforeUpdate?: (() => void) | (() => void)[];
1306
+ updated?: (() => void) | (() => void)[];
1307
+ activated?: (() => void) | (() => void)[];
1308
+ deactivated?: (() => void) | (() => void)[];
1309
+ beforeDestroy?: (() => void) | (() => void)[];
1310
+ beforeUnmount?: (() => void) | (() => void)[];
1311
+ destroyed?: (() => void) | (() => void)[];
1312
+ unmounted?: (() => void) | (() => void)[];
1313
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1314
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1315
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1316
+ };
1317
+ $forceUpdate: () => void;
1318
+ $nextTick: typeof nextTick;
1319
+ $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;
1320
+ } & Readonly<{
1321
+ tabindex: number | string;
1322
+ height: number | string;
1323
+ maxHeight: number | string;
1324
+ tag: keyof HTMLElementTagNameMap | (string & {});
1325
+ minSize: number;
1326
+ distance: number;
1327
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1328
+ wrapClass: string | string[];
1329
+ viewClass: string | string[];
1330
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1331
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
1332
+ id: {
1333
+ type: import('vue').PropType<string>;
1334
+ };
1335
+ ariaLabel: {
1336
+ type: import('vue').PropType<string>;
1337
+ };
1338
+ role: {
1339
+ type: import('vue').PropType<string>;
1340
+ };
1341
+ height: {
1342
+ type: import('vue').PropType<string | number>;
1343
+ default: string;
1344
+ };
1345
+ tabindex: {
1346
+ type: import('vue').PropType<string | number>;
1347
+ default: undefined;
1348
+ };
1349
+ tag: {
1350
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1351
+ default: string;
1352
+ };
1353
+ maxHeight: {
1354
+ type: import('vue').PropType<string | number>;
1355
+ default: string;
1356
+ };
1357
+ distance: {
1358
+ type: import('vue').PropType<number>;
1359
+ default: number;
1360
+ };
1361
+ native: {
1362
+ type: import('vue').PropType<boolean>;
1363
+ };
1364
+ wrapStyle: {
1365
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1366
+ default: string;
1367
+ };
1368
+ wrapClass: {
1369
+ type: import('vue').PropType<string | string[]>;
1370
+ default: string;
1371
+ };
1372
+ viewClass: {
1373
+ type: import('vue').PropType<string | string[]>;
1374
+ default: string;
1375
+ };
1376
+ viewStyle: {
1377
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1378
+ default: string;
1379
+ };
1380
+ noresize: {
1381
+ type: import('vue').PropType<boolean>;
1382
+ };
1383
+ always: {
1384
+ type: import('vue').PropType<boolean>;
1385
+ };
1386
+ minSize: {
1387
+ type: import('vue').PropType<number>;
1388
+ default: number;
1389
+ };
1390
+ ariaOrientation: {
1391
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1392
+ };
1393
+ }>> & {
1394
+ onScroll?: ((args_0: {
1395
+ scrollTop: number;
1396
+ scrollLeft: number;
1397
+ }) => any) | undefined;
1398
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1399
+ }, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
1400
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1401
+ update: () => void;
1402
+ scrollTo: {
1403
+ (xCord: number, yCord?: number): void;
1404
+ (options: ScrollToOptions): void;
1405
+ };
1406
+ setScrollTop: (value: number) => void;
1407
+ setScrollLeft: (value: number) => void;
1408
+ handleScroll: () => void;
1409
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1410
+ $slots: {
1411
+ default?: (props: {}) => any;
1412
+ };
1413
+ }) | null;
1414
+ rightSlotScrollbarRef: ({
1415
+ $: import('vue').ComponentInternalInstance;
1416
+ $data: {};
1417
+ $props: Partial<{
1418
+ tabindex: number | string;
1419
+ height: number | string;
1420
+ maxHeight: number | string;
1421
+ tag: keyof HTMLElementTagNameMap | (string & {});
1422
+ minSize: number;
1423
+ distance: number;
1424
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1425
+ wrapClass: string | string[];
1426
+ viewClass: string | string[];
1427
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1428
+ }> & Omit<{
1429
+ readonly height: number | string;
1430
+ readonly tag: keyof HTMLElementTagNameMap | (string & {});
1431
+ readonly maxHeight: number | string;
1432
+ readonly distance: number;
1433
+ readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1434
+ readonly wrapClass: string | string[];
1435
+ readonly viewClass: string | string[];
1436
+ readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1437
+ readonly minSize: number;
1438
+ readonly id?: string | undefined;
1439
+ readonly ariaLabel?: string | undefined;
1440
+ readonly role?: string | undefined;
1441
+ readonly tabindex?: number | string | undefined;
1442
+ readonly native?: boolean | undefined;
1443
+ readonly noresize?: boolean | undefined;
1444
+ readonly always?: boolean | undefined;
1445
+ readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
1446
+ onScroll?: ((args_0: {
1447
+ scrollTop: number;
1448
+ scrollLeft: number;
1449
+ }) => any) | undefined | undefined;
1450
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
1451
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "tabindex" | "tag" | "maxHeight" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize">;
1452
+ $attrs: {
1453
+ [x: string]: unknown;
1454
+ };
1455
+ $refs: {
1456
+ [x: string]: unknown;
1457
+ };
1458
+ $slots: Readonly<{
1459
+ [name: string]: import('vue').Slot<any> | undefined;
1460
+ }>;
1461
+ $root: import('vue').ComponentPublicInstance | null;
1462
+ $parent: import('vue').ComponentPublicInstance | null;
1463
+ $host: Element | null;
1464
+ $emit: ((event: "scroll", args_0: {
1465
+ scrollTop: number;
1466
+ scrollLeft: number;
1467
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
1468
+ $el: any;
1469
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
1470
+ id: {
1471
+ type: import('vue').PropType<string>;
1472
+ };
1473
+ ariaLabel: {
1474
+ type: import('vue').PropType<string>;
1475
+ };
1476
+ role: {
1477
+ type: import('vue').PropType<string>;
1478
+ };
1479
+ height: {
1480
+ type: import('vue').PropType<string | number>;
1481
+ default: string;
1482
+ };
1483
+ tabindex: {
1484
+ type: import('vue').PropType<string | number>;
1485
+ default: undefined;
1486
+ };
1487
+ tag: {
1488
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1489
+ default: string;
1490
+ };
1491
+ maxHeight: {
1492
+ type: import('vue').PropType<string | number>;
1493
+ default: string;
1494
+ };
1495
+ distance: {
1496
+ type: import('vue').PropType<number>;
1497
+ default: number;
1498
+ };
1499
+ native: {
1500
+ type: import('vue').PropType<boolean>;
1501
+ };
1502
+ wrapStyle: {
1503
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1504
+ default: string;
1505
+ };
1506
+ wrapClass: {
1507
+ type: import('vue').PropType<string | string[]>;
1508
+ default: string;
1509
+ };
1510
+ viewClass: {
1511
+ type: import('vue').PropType<string | string[]>;
1512
+ default: string;
1513
+ };
1514
+ viewStyle: {
1515
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1516
+ default: string;
1517
+ };
1518
+ noresize: {
1519
+ type: import('vue').PropType<boolean>;
1520
+ };
1521
+ always: {
1522
+ type: import('vue').PropType<boolean>;
1523
+ };
1524
+ minSize: {
1525
+ type: import('vue').PropType<number>;
1526
+ default: number;
1527
+ };
1528
+ ariaOrientation: {
1529
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1530
+ };
1531
+ }>> & {
1532
+ onScroll?: ((args_0: {
1533
+ scrollTop: number;
1534
+ scrollLeft: number;
1535
+ }) => any) | undefined;
1536
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1537
+ }, {
1538
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1539
+ update: () => void;
1540
+ scrollTo: {
1541
+ (xCord: number, yCord?: number): void;
1542
+ (options: ScrollToOptions): void;
1543
+ };
1544
+ setScrollTop: (value: number) => void;
1545
+ setScrollLeft: (value: number) => void;
1546
+ handleScroll: () => void;
1547
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1548
+ scroll: (args_0: {
1549
+ scrollTop: number;
1550
+ scrollLeft: number;
1551
+ }) => void;
1552
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
1553
+ }, string, {
1554
+ tabindex: number | string;
1555
+ height: number | string;
1556
+ maxHeight: number | string;
1557
+ tag: keyof HTMLElementTagNameMap | (string & {});
1558
+ minSize: number;
1559
+ distance: number;
1560
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1561
+ wrapClass: string | string[];
1562
+ viewClass: string | string[];
1563
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1564
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1565
+ beforeCreate?: (() => void) | (() => void)[];
1566
+ created?: (() => void) | (() => void)[];
1567
+ beforeMount?: (() => void) | (() => void)[];
1568
+ mounted?: (() => void) | (() => void)[];
1569
+ beforeUpdate?: (() => void) | (() => void)[];
1570
+ updated?: (() => void) | (() => void)[];
1571
+ activated?: (() => void) | (() => void)[];
1572
+ deactivated?: (() => void) | (() => void)[];
1573
+ beforeDestroy?: (() => void) | (() => void)[];
1574
+ beforeUnmount?: (() => void) | (() => void)[];
1575
+ destroyed?: (() => void) | (() => void)[];
1576
+ unmounted?: (() => void) | (() => void)[];
1577
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1578
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1579
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1580
+ };
1581
+ $forceUpdate: () => void;
1582
+ $nextTick: typeof nextTick;
1583
+ $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;
1584
+ } & Readonly<{
1585
+ tabindex: number | string;
1586
+ height: number | string;
1587
+ maxHeight: number | string;
1588
+ tag: keyof HTMLElementTagNameMap | (string & {});
1589
+ minSize: number;
1590
+ distance: number;
1591
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1592
+ wrapClass: string | string[];
1593
+ viewClass: string | string[];
1594
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
1595
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
1596
+ id: {
1597
+ type: import('vue').PropType<string>;
1598
+ };
1599
+ ariaLabel: {
1600
+ type: import('vue').PropType<string>;
1601
+ };
1602
+ role: {
1603
+ type: import('vue').PropType<string>;
1604
+ };
1605
+ height: {
1606
+ type: import('vue').PropType<string | number>;
1607
+ default: string;
1608
+ };
1609
+ tabindex: {
1610
+ type: import('vue').PropType<string | number>;
1611
+ default: undefined;
1612
+ };
1613
+ tag: {
1614
+ type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
1615
+ default: string;
1616
+ };
1617
+ maxHeight: {
1618
+ type: import('vue').PropType<string | number>;
1619
+ default: string;
1620
+ };
1621
+ distance: {
1622
+ type: import('vue').PropType<number>;
1623
+ default: number;
1624
+ };
1625
+ native: {
1626
+ type: import('vue').PropType<boolean>;
1627
+ };
1628
+ wrapStyle: {
1629
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1630
+ default: string;
1631
+ };
1632
+ wrapClass: {
1633
+ type: import('vue').PropType<string | string[]>;
1634
+ default: string;
1635
+ };
1636
+ viewClass: {
1637
+ type: import('vue').PropType<string | string[]>;
1638
+ default: string;
1639
+ };
1640
+ viewStyle: {
1641
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1642
+ default: string;
1643
+ };
1644
+ noresize: {
1645
+ type: import('vue').PropType<boolean>;
1646
+ };
1647
+ always: {
1648
+ type: import('vue').PropType<boolean>;
1649
+ };
1650
+ minSize: {
1651
+ type: import('vue').PropType<number>;
1652
+ default: number;
1653
+ };
1654
+ ariaOrientation: {
1655
+ type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
1656
+ };
1657
+ }>> & {
1658
+ onScroll?: ((args_0: {
1659
+ scrollTop: number;
1660
+ scrollLeft: number;
1661
+ }) => any) | undefined;
1662
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
1663
+ }, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
1664
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
1665
+ update: () => void;
1666
+ scrollTo: {
1667
+ (xCord: number, yCord?: number): void;
1668
+ (options: ScrollToOptions): void;
1669
+ };
1670
+ setScrollTop: (value: number) => void;
1671
+ setScrollLeft: (value: number) => void;
1672
+ handleScroll: () => void;
1673
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1674
+ $slots: {
1675
+ default?: (props: {}) => any;
1676
+ };
1677
+ }) | null;
1678
+ }, HTMLDivElement>;
1679
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1680
+ export default _default;
1681
+ type __VLS_WithTemplateSlots<T, S> = T & {
1682
+ new (): {
1683
+ $slots: S;
1684
+ };
1685
+ };