@dazhicheng/ui 1.5.6 → 1.5.7

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