el-plus2 0.0.0

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 (299) hide show
  1. package/dist/index.full.js +2204 -0
  2. package/dist/index.full.min.js +2 -0
  3. package/dist/index.full.min.js.map +1 -0
  4. package/dist/index.full.min.mjs +2 -0
  5. package/dist/index.full.min.mjs.map +1 -0
  6. package/dist/index.full.mjs +2176 -0
  7. package/env.d.ts +17 -0
  8. package/es/components/buttons/index.d.ts +359 -0
  9. package/es/components/buttons/index.mjs +8 -0
  10. package/es/components/buttons/index.mjs.map +1 -0
  11. package/es/components/buttons/src/buttons-vue.d.ts +142 -0
  12. package/es/components/buttons/src/buttons-vue.mjs +70 -0
  13. package/es/components/buttons/src/buttons-vue.mjs.map +1 -0
  14. package/es/components/buttons/src/buttons.d.ts +57 -0
  15. package/es/components/buttons/src/buttons.mjs +23 -0
  16. package/es/components/buttons/src/buttons.mjs.map +1 -0
  17. package/es/components/form/index.d.ts +291 -0
  18. package/es/components/form/index.mjs +10 -0
  19. package/es/components/form/index.mjs.map +1 -0
  20. package/es/components/form/src/form-item-vue.d.ts +135 -0
  21. package/es/components/form/src/form-item-vue.mjs +40 -0
  22. package/es/components/form/src/form-item-vue.mjs.map +1 -0
  23. package/es/components/form/src/form-item.d.ts +68 -0
  24. package/es/components/form/src/form-item.mjs +33 -0
  25. package/es/components/form/src/form-item.mjs.map +1 -0
  26. package/es/components/form/src/form.d.ts +66 -0
  27. package/es/components/form/src/form.mjs +50 -0
  28. package/es/components/form/src/form.mjs.map +1 -0
  29. package/es/components/form/src/form.vue.d.ts +161 -0
  30. package/es/components/form/src/form.vue.mjs +6 -0
  31. package/es/components/form/src/form.vue.mjs.map +1 -0
  32. package/es/components/form/src/form.vue2.mjs +124 -0
  33. package/es/components/form/src/form.vue2.mjs.map +1 -0
  34. package/es/components/form/src/hooks/use-form-item.d.ts +12 -0
  35. package/es/components/form/src/hooks/use-form-item.mjs +97 -0
  36. package/es/components/form/src/hooks/use-form-item.mjs.map +1 -0
  37. package/es/components/form/src/hooks/use-form.d.ts +25 -0
  38. package/es/components/form/src/hooks/use-form.mjs +53 -0
  39. package/es/components/form/src/hooks/use-form.mjs.map +1 -0
  40. package/es/components/index.d.ts +6 -0
  41. package/es/components/index.mjs +9 -0
  42. package/es/components/index.mjs.map +1 -0
  43. package/es/components/input/index.d.ts +468 -0
  44. package/es/components/input/index.mjs +8 -0
  45. package/es/components/input/index.mjs.map +1 -0
  46. package/es/components/input/src/input.d.ts +122 -0
  47. package/es/components/input/src/input.mjs +28 -0
  48. package/es/components/input/src/input.mjs.map +1 -0
  49. package/es/components/input/src/input.vue.d.ts +268 -0
  50. package/es/components/input/src/input.vue.mjs +6 -0
  51. package/es/components/input/src/input.vue.mjs.map +1 -0
  52. package/es/components/input/src/input.vue2.mjs +144 -0
  53. package/es/components/input/src/input.vue2.mjs.map +1 -0
  54. package/es/components/searchListPage/index.d.ts +8583 -0
  55. package/es/components/searchListPage/index.mjs +8 -0
  56. package/es/components/searchListPage/index.mjs.map +1 -0
  57. package/es/components/searchListPage/src/searchListPage.d.ts +64 -0
  58. package/es/components/searchListPage/src/searchListPage.mjs +61 -0
  59. package/es/components/searchListPage/src/searchListPage.mjs.map +1 -0
  60. package/es/components/searchListPage/src/searchListPage.vue.d.ts +2760 -0
  61. package/es/components/searchListPage/src/searchListPage.vue.mjs +6 -0
  62. package/es/components/searchListPage/src/searchListPage.vue.mjs.map +1 -0
  63. package/es/components/searchListPage/src/searchListPage.vue2.mjs +99 -0
  64. package/es/components/searchListPage/src/searchListPage.vue2.mjs.map +1 -0
  65. package/es/components/searchListPage/src/use-search-list-page.d.ts +2671 -0
  66. package/es/components/searchListPage/src/use-search-list-page.mjs +177 -0
  67. package/es/components/searchListPage/src/use-search-list-page.mjs.map +1 -0
  68. package/es/components/select/index.d.ts +664 -0
  69. package/es/components/select/index.mjs +8 -0
  70. package/es/components/select/index.mjs.map +1 -0
  71. package/es/components/select/src/select.d.ts +283 -0
  72. package/es/components/select/src/select.mjs +47 -0
  73. package/es/components/select/src/select.mjs.map +1 -0
  74. package/es/components/select/src/select.vue.d.ts +384 -0
  75. package/es/components/select/src/select.vue.mjs +6 -0
  76. package/es/components/select/src/select.vue.mjs.map +1 -0
  77. package/es/components/select/src/select.vue2.mjs +113 -0
  78. package/es/components/select/src/select.vue2.mjs.map +1 -0
  79. package/es/components/select/src/use-select.d.ts +12 -0
  80. package/es/components/select/src/use-select.mjs +87 -0
  81. package/es/components/select/src/use-select.mjs.map +1 -0
  82. package/es/components/table/index.d.ts +2975 -0
  83. package/es/components/table/index.mjs +8 -0
  84. package/es/components/table/index.mjs.map +1 -0
  85. package/es/components/table/src/table.d.ts +781 -0
  86. package/es/components/table/src/table.mjs +81 -0
  87. package/es/components/table/src/table.mjs.map +1 -0
  88. package/es/components/table/src/table.vue.d.ts +1708 -0
  89. package/es/components/table/src/table.vue.mjs +6 -0
  90. package/es/components/table/src/table.vue.mjs.map +1 -0
  91. package/es/components/table/src/table.vue2.mjs +204 -0
  92. package/es/components/table/src/table.vue2.mjs.map +1 -0
  93. package/es/components/table/src/use-table.d.ts +241 -0
  94. package/es/components/table/src/use-table.mjs +260 -0
  95. package/es/components/table/src/use-table.mjs.map +1 -0
  96. package/es/components.d.ts +3 -0
  97. package/es/components.mjs +11 -0
  98. package/es/components.mjs.map +1 -0
  99. package/es/directives/index.d.ts +2 -0
  100. package/es/directives/index.mjs +3 -0
  101. package/es/directives/index.mjs.map +1 -0
  102. package/es/directives/permission/index.d.ts +6 -0
  103. package/es/directives/permission/index.mjs +55 -0
  104. package/es/directives/permission/index.mjs.map +1 -0
  105. package/es/directives/repeat-click/index.d.ts +16 -0
  106. package/es/directives/repeat-click/index.mjs +68 -0
  107. package/es/directives/repeat-click/index.mjs.map +1 -0
  108. package/es/directives/vite.config.d.ts +2 -0
  109. package/es/hooks/index.d.ts +1 -0
  110. package/es/hooks/index.mjs +2 -0
  111. package/es/hooks/index.mjs.map +1 -0
  112. package/es/hooks/use-request.d.ts +20 -0
  113. package/es/hooks/use-request.mjs +82 -0
  114. package/es/hooks/use-request.mjs.map +1 -0
  115. package/es/index.d.ts +9 -0
  116. package/es/index.mjs +24 -0
  117. package/es/index.mjs.map +1 -0
  118. package/es/package.json.mjs +4 -0
  119. package/es/package.json.mjs.map +1 -0
  120. package/es/theme-chalk/gulpfile.d.ts +0 -0
  121. package/es/theme-chalk/gulpfile.mjs +2 -0
  122. package/es/theme-chalk/gulpfile.mjs.map +1 -0
  123. package/es/types/env.d.mjs +2 -0
  124. package/es/types/env.d.mjs.map +1 -0
  125. package/es/types/global.d.mjs +2 -0
  126. package/es/types/global.d.mjs.map +1 -0
  127. package/es/types/vue-shim.d.mjs +2 -0
  128. package/es/types/vue-shim.d.mjs.map +1 -0
  129. package/es/utils/bem.d.ts +10 -0
  130. package/es/utils/bem.mjs +31 -0
  131. package/es/utils/bem.mjs.map +1 -0
  132. package/es/utils/cookie.d.ts +7 -0
  133. package/es/utils/cookie.mjs +29 -0
  134. package/es/utils/cookie.mjs.map +1 -0
  135. package/es/utils/env.d.ts +3 -0
  136. package/es/utils/env.mjs +27 -0
  137. package/es/utils/env.mjs.map +1 -0
  138. package/es/utils/props.d.ts +37 -0
  139. package/es/utils/props.mjs +66 -0
  140. package/es/utils/props.mjs.map +1 -0
  141. package/es/utils/request.d.ts +6 -0
  142. package/es/utils/request.mjs +157 -0
  143. package/es/utils/request.mjs.map +1 -0
  144. package/es/utils/type.d.ts +15 -0
  145. package/es/utils/type.mjs +2 -0
  146. package/es/utils/type.mjs.map +1 -0
  147. package/es/utils/with-install.d.ts +4 -0
  148. package/es/utils/with-install.mjs +9 -0
  149. package/es/utils/with-install.mjs.map +1 -0
  150. package/es/version.d.ts +1 -0
  151. package/es/version.mjs +4 -0
  152. package/es/version.mjs.map +1 -0
  153. package/global.d.ts +13 -0
  154. package/lib/components/buttons/index.d.ts +359 -0
  155. package/lib/components/buttons/index.js +13 -0
  156. package/lib/components/buttons/index.js.map +1 -0
  157. package/lib/components/buttons/src/buttons-vue.d.ts +142 -0
  158. package/lib/components/buttons/src/buttons-vue.js +74 -0
  159. package/lib/components/buttons/src/buttons-vue.js.map +1 -0
  160. package/lib/components/buttons/src/buttons.d.ts +57 -0
  161. package/lib/components/buttons/src/buttons.js +25 -0
  162. package/lib/components/buttons/src/buttons.js.map +1 -0
  163. package/lib/components/form/index.d.ts +291 -0
  164. package/lib/components/form/index.js +21 -0
  165. package/lib/components/form/index.js.map +1 -0
  166. package/lib/components/form/src/form-item-vue.d.ts +135 -0
  167. package/lib/components/form/src/form-item-vue.js +44 -0
  168. package/lib/components/form/src/form-item-vue.js.map +1 -0
  169. package/lib/components/form/src/form-item.d.ts +68 -0
  170. package/lib/components/form/src/form-item.js +36 -0
  171. package/lib/components/form/src/form-item.js.map +1 -0
  172. package/lib/components/form/src/form.d.ts +66 -0
  173. package/lib/components/form/src/form.js +55 -0
  174. package/lib/components/form/src/form.js.map +1 -0
  175. package/lib/components/form/src/form.vue.d.ts +161 -0
  176. package/lib/components/form/src/form.vue.js +10 -0
  177. package/lib/components/form/src/form.vue.js.map +1 -0
  178. package/lib/components/form/src/form.vue2.js +128 -0
  179. package/lib/components/form/src/form.vue2.js.map +1 -0
  180. package/lib/components/form/src/hooks/use-form-item.d.ts +12 -0
  181. package/lib/components/form/src/hooks/use-form-item.js +101 -0
  182. package/lib/components/form/src/hooks/use-form-item.js.map +1 -0
  183. package/lib/components/form/src/hooks/use-form.d.ts +25 -0
  184. package/lib/components/form/src/hooks/use-form.js +56 -0
  185. package/lib/components/form/src/hooks/use-form.js.map +1 -0
  186. package/lib/components/index.d.ts +6 -0
  187. package/lib/components/index.js +35 -0
  188. package/lib/components/index.js.map +1 -0
  189. package/lib/components/input/index.d.ts +468 -0
  190. package/lib/components/input/index.js +15 -0
  191. package/lib/components/input/index.js.map +1 -0
  192. package/lib/components/input/src/input.d.ts +122 -0
  193. package/lib/components/input/src/input.js +32 -0
  194. package/lib/components/input/src/input.js.map +1 -0
  195. package/lib/components/input/src/input.vue.d.ts +268 -0
  196. package/lib/components/input/src/input.vue.js +10 -0
  197. package/lib/components/input/src/input.vue.js.map +1 -0
  198. package/lib/components/input/src/input.vue2.js +148 -0
  199. package/lib/components/input/src/input.vue2.js.map +1 -0
  200. package/lib/components/searchListPage/index.d.ts +8583 -0
  201. package/lib/components/searchListPage/index.js +13 -0
  202. package/lib/components/searchListPage/index.js.map +1 -0
  203. package/lib/components/searchListPage/src/searchListPage.d.ts +64 -0
  204. package/lib/components/searchListPage/src/searchListPage.js +63 -0
  205. package/lib/components/searchListPage/src/searchListPage.js.map +1 -0
  206. package/lib/components/searchListPage/src/searchListPage.vue.d.ts +2760 -0
  207. package/lib/components/searchListPage/src/searchListPage.vue.js +10 -0
  208. package/lib/components/searchListPage/src/searchListPage.vue.js.map +1 -0
  209. package/lib/components/searchListPage/src/searchListPage.vue2.js +103 -0
  210. package/lib/components/searchListPage/src/searchListPage.vue2.js.map +1 -0
  211. package/lib/components/searchListPage/src/use-search-list-page.d.ts +2671 -0
  212. package/lib/components/searchListPage/src/use-search-list-page.js +179 -0
  213. package/lib/components/searchListPage/src/use-search-list-page.js.map +1 -0
  214. package/lib/components/select/index.d.ts +664 -0
  215. package/lib/components/select/index.js +17 -0
  216. package/lib/components/select/index.js.map +1 -0
  217. package/lib/components/select/src/select.d.ts +283 -0
  218. package/lib/components/select/src/select.js +53 -0
  219. package/lib/components/select/src/select.js.map +1 -0
  220. package/lib/components/select/src/select.vue.d.ts +384 -0
  221. package/lib/components/select/src/select.vue.js +10 -0
  222. package/lib/components/select/src/select.vue.js.map +1 -0
  223. package/lib/components/select/src/select.vue2.js +117 -0
  224. package/lib/components/select/src/select.vue2.js.map +1 -0
  225. package/lib/components/select/src/use-select.d.ts +12 -0
  226. package/lib/components/select/src/use-select.js +89 -0
  227. package/lib/components/select/src/use-select.js.map +1 -0
  228. package/lib/components/table/index.d.ts +2975 -0
  229. package/lib/components/table/index.js +16 -0
  230. package/lib/components/table/index.js.map +1 -0
  231. package/lib/components/table/src/table.d.ts +781 -0
  232. package/lib/components/table/src/table.js +86 -0
  233. package/lib/components/table/src/table.js.map +1 -0
  234. package/lib/components/table/src/table.vue.d.ts +1708 -0
  235. package/lib/components/table/src/table.vue.js +10 -0
  236. package/lib/components/table/src/table.vue.js.map +1 -0
  237. package/lib/components/table/src/table.vue2.js +208 -0
  238. package/lib/components/table/src/table.vue2.js.map +1 -0
  239. package/lib/components/table/src/use-table.d.ts +241 -0
  240. package/lib/components/table/src/use-table.js +264 -0
  241. package/lib/components/table/src/use-table.js.map +1 -0
  242. package/lib/components.d.ts +3 -0
  243. package/lib/components.js +15 -0
  244. package/lib/components.js.map +1 -0
  245. package/lib/directives/index.d.ts +2 -0
  246. package/lib/directives/index.js +10 -0
  247. package/lib/directives/index.js.map +1 -0
  248. package/lib/directives/permission/index.d.ts +6 -0
  249. package/lib/directives/permission/index.js +60 -0
  250. package/lib/directives/permission/index.js.map +1 -0
  251. package/lib/directives/repeat-click/index.d.ts +16 -0
  252. package/lib/directives/repeat-click/index.js +72 -0
  253. package/lib/directives/repeat-click/index.js.map +1 -0
  254. package/lib/directives/vite.config.d.ts +2 -0
  255. package/lib/hooks/index.d.ts +1 -0
  256. package/lib/hooks/index.js +8 -0
  257. package/lib/hooks/index.js.map +1 -0
  258. package/lib/hooks/use-request.d.ts +20 -0
  259. package/lib/hooks/use-request.js +84 -0
  260. package/lib/hooks/use-request.js.map +1 -0
  261. package/lib/index.d.ts +9 -0
  262. package/lib/index.js +53 -0
  263. package/lib/index.js.map +1 -0
  264. package/lib/package.json.js +6 -0
  265. package/lib/package.json.js.map +1 -0
  266. package/lib/theme-chalk/gulpfile.d.ts +0 -0
  267. package/lib/theme-chalk/gulpfile.js +3 -0
  268. package/lib/theme-chalk/gulpfile.js.map +1 -0
  269. package/lib/types/env.d.js +3 -0
  270. package/lib/types/env.d.js.map +1 -0
  271. package/lib/types/global.d.js +3 -0
  272. package/lib/types/global.d.js.map +1 -0
  273. package/lib/types/vue-shim.d.js +3 -0
  274. package/lib/types/vue-shim.d.js.map +1 -0
  275. package/lib/utils/bem.d.ts +10 -0
  276. package/lib/utils/bem.js +33 -0
  277. package/lib/utils/bem.js.map +1 -0
  278. package/lib/utils/cookie.d.ts +7 -0
  279. package/lib/utils/cookie.js +33 -0
  280. package/lib/utils/cookie.js.map +1 -0
  281. package/lib/utils/env.d.ts +3 -0
  282. package/lib/utils/env.js +30 -0
  283. package/lib/utils/env.js.map +1 -0
  284. package/lib/utils/props.d.ts +37 -0
  285. package/lib/utils/props.js +73 -0
  286. package/lib/utils/props.js.map +1 -0
  287. package/lib/utils/request.d.ts +6 -0
  288. package/lib/utils/request.js +162 -0
  289. package/lib/utils/request.js.map +1 -0
  290. package/lib/utils/type.d.ts +15 -0
  291. package/lib/utils/type.js +3 -0
  292. package/lib/utils/type.js.map +1 -0
  293. package/lib/utils/with-install.d.ts +4 -0
  294. package/lib/utils/with-install.js +11 -0
  295. package/lib/utils/with-install.js.map +1 -0
  296. package/lib/version.d.ts +1 -0
  297. package/lib/version.js +6 -0
  298. package/lib/version.js.map +1 -0
  299. package/package.json +27 -0
@@ -0,0 +1,2975 @@
1
+ import Table from './src/table.vue';
2
+ declare const _default: {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
4
+ columns: {
5
+ type: import("vue").PropType<Partial<import("element-plus").TableColumnCtx & {
6
+ [key: string]: any;
7
+ required: boolean | (() => boolean);
8
+ cellRequired: (scope: import("./src/table").TableScope) => boolean;
9
+ headerRender: import("element-plus").TableColumnCtx["renderHeader"];
10
+ disabled: boolean | ((scope: import("./src/table").TableScope) => boolean);
11
+ props: Record<string, any>;
12
+ filter: boolean;
13
+ } & {} & {
14
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
15
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
16
+ }>[]>;
17
+ default: () => never[];
18
+ };
19
+ showSelectionCol: BooleanConstructor;
20
+ showIndexCol: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ align: {
25
+ type: import("vue").PropType<"left" | "center" | "right">;
26
+ default: string;
27
+ };
28
+ indexFormatter: {
29
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["index"]>;
30
+ };
31
+ disabled: BooleanConstructor;
32
+ reserveSelection: BooleanConstructor;
33
+ selectable: {
34
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
35
+ };
36
+ paginationProps: {
37
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/utils/type.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
38
+ default: () => {};
39
+ };
40
+ showPagination: BooleanConstructor;
41
+ isFrontPage: BooleanConstructor;
42
+ actionButtons: {
43
+ type: import("vue").PropType<Partial<{
44
+ readonly link: boolean;
45
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
46
+ readonly disabled: boolean;
47
+ readonly dark: boolean;
48
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
49
+ readonly loading: boolean;
50
+ readonly bg: boolean;
51
+ readonly autofocus: boolean;
52
+ readonly circle: boolean;
53
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
54
+ } & {
55
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
56
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
57
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
58
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
59
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
60
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
61
+ readonly color?: string | undefined;
62
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
63
+ } & {
64
+ name: string;
65
+ prop: string;
66
+ permission: string;
67
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
68
+ scopedSlots: Record<string, () => import("vue").VNode>;
69
+ confirm: boolean;
70
+ confirmText: string;
71
+ } & {} & {
72
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
73
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
74
+ }>[]>;
75
+ default: () => never[];
76
+ };
77
+ linkProps: {
78
+ type: import("vue").PropType<Partial<{
79
+ readonly link: boolean;
80
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
81
+ readonly disabled: boolean;
82
+ readonly dark: boolean;
83
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
84
+ readonly loading: boolean;
85
+ readonly bg: boolean;
86
+ readonly autofocus: boolean;
87
+ readonly circle: boolean;
88
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
89
+ } & {
90
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
91
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
92
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
93
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
94
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
95
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
96
+ readonly color?: string | undefined;
97
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
98
+ } & {
99
+ name: string;
100
+ prop: string;
101
+ permission: string;
102
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
103
+ scopedSlots: Record<string, () => import("vue").VNode>;
104
+ confirm: boolean;
105
+ confirmText: string;
106
+ } & {} & {
107
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
108
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
109
+ }>[]>;
110
+ default: () => never[];
111
+ };
112
+ api: {
113
+ type: import("vue").PropType<import("packages/utils/type.js").Api>;
114
+ };
115
+ method: {
116
+ type: import("vue").PropType<import("axios").Method>;
117
+ };
118
+ reqData: {
119
+ type: ObjectConstructor;
120
+ };
121
+ reqParams: {
122
+ type: ObjectConstructor;
123
+ };
124
+ reqBefore: {
125
+ type: import("vue").PropType<import("packages/utils/type.js").ReqBefore>;
126
+ };
127
+ reqAfter: {
128
+ type: import("vue").PropType<import("packages/utils/type.js").ReqAfter>;
129
+ };
130
+ size: {
131
+ default: string;
132
+ type: import("vue").PropType<import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
133
+ required: false;
134
+ validator: ((val: unknown) => boolean) | undefined;
135
+ __epPropKey: true;
136
+ };
137
+ border: {
138
+ default: boolean;
139
+ prototype: Boolean;
140
+ };
141
+ headerCellStyle: {
142
+ default: () => {
143
+ background: string;
144
+ fontSize: string;
145
+ color: string;
146
+ };
147
+ length?: number | undefined;
148
+ toString?: (() => string) | undefined;
149
+ toLocaleString?: {
150
+ (): string;
151
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
152
+ } | undefined;
153
+ pop?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
154
+ row: any;
155
+ rowIndex: number;
156
+ column: import("element-plus").TableColumnCtx<any>;
157
+ columnIndex: number;
158
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
159
+ push?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
160
+ row: any;
161
+ rowIndex: number;
162
+ column: import("element-plus").TableColumnCtx<any>;
163
+ columnIndex: number;
164
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
165
+ concat?: {
166
+ (...items: ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
167
+ row: any;
168
+ rowIndex: number;
169
+ column: import("element-plus").TableColumnCtx<any>;
170
+ columnIndex: number;
171
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
172
+ row: any;
173
+ rowIndex: number;
174
+ column: import("element-plus").TableColumnCtx<any>;
175
+ columnIndex: number;
176
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
177
+ (...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
178
+ row: any;
179
+ rowIndex: number;
180
+ column: import("element-plus").TableColumnCtx<any>;
181
+ columnIndex: number;
182
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
183
+ row: any;
184
+ rowIndex: number;
185
+ column: import("element-plus").TableColumnCtx<any>;
186
+ columnIndex: number;
187
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null> | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
188
+ row: any;
189
+ rowIndex: number;
190
+ column: import("element-plus").TableColumnCtx<any>;
191
+ columnIndex: number;
192
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
193
+ } | undefined;
194
+ join?: ((separator?: string) => string) | undefined;
195
+ reverse?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
196
+ row: any;
197
+ rowIndex: number;
198
+ column: import("element-plus").TableColumnCtx<any>;
199
+ columnIndex: number;
200
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
201
+ shift?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
202
+ row: any;
203
+ rowIndex: number;
204
+ column: import("element-plus").TableColumnCtx<any>;
205
+ columnIndex: number;
206
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
207
+ slice?: ((start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
208
+ row: any;
209
+ rowIndex: number;
210
+ column: import("element-plus").TableColumnCtx<any>;
211
+ columnIndex: number;
212
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
213
+ sort?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
214
+ row: any;
215
+ rowIndex: number;
216
+ column: import("element-plus").TableColumnCtx<any>;
217
+ columnIndex: number;
218
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
219
+ row: any;
220
+ rowIndex: number;
221
+ column: import("element-plus").TableColumnCtx<any>;
222
+ columnIndex: number;
223
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
224
+ row: any;
225
+ rowIndex: number;
226
+ column: import("element-plus").TableColumnCtx<any>;
227
+ columnIndex: number;
228
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
229
+ splice?: {
230
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
231
+ row: any;
232
+ rowIndex: number;
233
+ column: import("element-plus").TableColumnCtx<any>;
234
+ columnIndex: number;
235
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
236
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
237
+ row: any;
238
+ rowIndex: number;
239
+ column: import("element-plus").TableColumnCtx<any>;
240
+ columnIndex: number;
241
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
242
+ row: any;
243
+ rowIndex: number;
244
+ column: import("element-plus").TableColumnCtx<any>;
245
+ columnIndex: number;
246
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
247
+ } | undefined;
248
+ unshift?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
249
+ row: any;
250
+ rowIndex: number;
251
+ column: import("element-plus").TableColumnCtx<any>;
252
+ columnIndex: number;
253
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
254
+ indexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
255
+ row: any;
256
+ rowIndex: number;
257
+ column: import("element-plus").TableColumnCtx<any>;
258
+ columnIndex: number;
259
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
260
+ lastIndexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
261
+ row: any;
262
+ rowIndex: number;
263
+ column: import("element-plus").TableColumnCtx<any>;
264
+ columnIndex: number;
265
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
266
+ every?: {
267
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
268
+ row: any;
269
+ rowIndex: number;
270
+ column: import("element-plus").TableColumnCtx<any>;
271
+ columnIndex: number;
272
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
273
+ row: any;
274
+ rowIndex: number;
275
+ column: import("element-plus").TableColumnCtx<any>;
276
+ columnIndex: number;
277
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
278
+ row: any;
279
+ rowIndex: number;
280
+ column: import("element-plus").TableColumnCtx<any>;
281
+ columnIndex: number;
282
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): this is S[];
283
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
284
+ row: any;
285
+ rowIndex: number;
286
+ column: import("element-plus").TableColumnCtx<any>;
287
+ columnIndex: number;
288
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
289
+ row: any;
290
+ rowIndex: number;
291
+ column: import("element-plus").TableColumnCtx<any>;
292
+ columnIndex: number;
293
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): boolean;
294
+ } | undefined;
295
+ some?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
296
+ row: any;
297
+ rowIndex: number;
298
+ column: import("element-plus").TableColumnCtx<any>;
299
+ columnIndex: number;
300
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
301
+ row: any;
302
+ rowIndex: number;
303
+ column: import("element-plus").TableColumnCtx<any>;
304
+ columnIndex: number;
305
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => boolean) | undefined;
306
+ forEach?: ((callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
307
+ row: any;
308
+ rowIndex: number;
309
+ column: import("element-plus").TableColumnCtx<any>;
310
+ columnIndex: number;
311
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
312
+ row: any;
313
+ rowIndex: number;
314
+ column: import("element-plus").TableColumnCtx<any>;
315
+ columnIndex: number;
316
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => void, thisArg?: any) => void) | undefined;
317
+ map?: (<U>(callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
318
+ row: any;
319
+ rowIndex: number;
320
+ column: import("element-plus").TableColumnCtx<any>;
321
+ columnIndex: number;
322
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
323
+ row: any;
324
+ rowIndex: number;
325
+ column: import("element-plus").TableColumnCtx<any>;
326
+ columnIndex: number;
327
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, thisArg?: any) => U[]) | undefined;
328
+ filter?: {
329
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
330
+ row: any;
331
+ rowIndex: number;
332
+ column: import("element-plus").TableColumnCtx<any>;
333
+ columnIndex: number;
334
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
335
+ row: any;
336
+ rowIndex: number;
337
+ column: import("element-plus").TableColumnCtx<any>;
338
+ columnIndex: number;
339
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
340
+ row: any;
341
+ rowIndex: number;
342
+ column: import("element-plus").TableColumnCtx<any>;
343
+ columnIndex: number;
344
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S[];
345
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
346
+ row: any;
347
+ rowIndex: number;
348
+ column: import("element-plus").TableColumnCtx<any>;
349
+ columnIndex: number;
350
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
351
+ row: any;
352
+ rowIndex: number;
353
+ column: import("element-plus").TableColumnCtx<any>;
354
+ columnIndex: number;
355
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
356
+ row: any;
357
+ rowIndex: number;
358
+ column: import("element-plus").TableColumnCtx<any>;
359
+ columnIndex: number;
360
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
361
+ } | undefined;
362
+ reduce?: {
363
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
364
+ row: any;
365
+ rowIndex: number;
366
+ column: import("element-plus").TableColumnCtx<any>;
367
+ columnIndex: number;
368
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
369
+ row: any;
370
+ rowIndex: number;
371
+ column: import("element-plus").TableColumnCtx<any>;
372
+ columnIndex: number;
373
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
374
+ row: any;
375
+ rowIndex: number;
376
+ column: import("element-plus").TableColumnCtx<any>;
377
+ columnIndex: number;
378
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
379
+ row: any;
380
+ rowIndex: number;
381
+ column: import("element-plus").TableColumnCtx<any>;
382
+ columnIndex: number;
383
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
384
+ row: any;
385
+ rowIndex: number;
386
+ column: import("element-plus").TableColumnCtx<any>;
387
+ columnIndex: number;
388
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
389
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
390
+ row: any;
391
+ rowIndex: number;
392
+ column: import("element-plus").TableColumnCtx<any>;
393
+ columnIndex: number;
394
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
395
+ row: any;
396
+ rowIndex: number;
397
+ column: import("element-plus").TableColumnCtx<any>;
398
+ columnIndex: number;
399
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
400
+ row: any;
401
+ rowIndex: number;
402
+ column: import("element-plus").TableColumnCtx<any>;
403
+ columnIndex: number;
404
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
405
+ row: any;
406
+ rowIndex: number;
407
+ column: import("element-plus").TableColumnCtx<any>;
408
+ columnIndex: number;
409
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
410
+ row: any;
411
+ rowIndex: number;
412
+ column: import("element-plus").TableColumnCtx<any>;
413
+ columnIndex: number;
414
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
415
+ row: any;
416
+ rowIndex: number;
417
+ column: import("element-plus").TableColumnCtx<any>;
418
+ columnIndex: number;
419
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
420
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
421
+ row: any;
422
+ rowIndex: number;
423
+ column: import("element-plus").TableColumnCtx<any>;
424
+ columnIndex: number;
425
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
426
+ row: any;
427
+ rowIndex: number;
428
+ column: import("element-plus").TableColumnCtx<any>;
429
+ columnIndex: number;
430
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
431
+ } | undefined;
432
+ reduceRight?: {
433
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
434
+ row: any;
435
+ rowIndex: number;
436
+ column: import("element-plus").TableColumnCtx<any>;
437
+ columnIndex: number;
438
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
439
+ row: any;
440
+ rowIndex: number;
441
+ column: import("element-plus").TableColumnCtx<any>;
442
+ columnIndex: number;
443
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
444
+ row: any;
445
+ rowIndex: number;
446
+ column: import("element-plus").TableColumnCtx<any>;
447
+ columnIndex: number;
448
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
449
+ row: any;
450
+ rowIndex: number;
451
+ column: import("element-plus").TableColumnCtx<any>;
452
+ columnIndex: number;
453
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
454
+ row: any;
455
+ rowIndex: number;
456
+ column: import("element-plus").TableColumnCtx<any>;
457
+ columnIndex: number;
458
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
459
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
460
+ row: any;
461
+ rowIndex: number;
462
+ column: import("element-plus").TableColumnCtx<any>;
463
+ columnIndex: number;
464
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
465
+ row: any;
466
+ rowIndex: number;
467
+ column: import("element-plus").TableColumnCtx<any>;
468
+ columnIndex: number;
469
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
470
+ row: any;
471
+ rowIndex: number;
472
+ column: import("element-plus").TableColumnCtx<any>;
473
+ columnIndex: number;
474
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
475
+ row: any;
476
+ rowIndex: number;
477
+ column: import("element-plus").TableColumnCtx<any>;
478
+ columnIndex: number;
479
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
480
+ row: any;
481
+ rowIndex: number;
482
+ column: import("element-plus").TableColumnCtx<any>;
483
+ columnIndex: number;
484
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
485
+ row: any;
486
+ rowIndex: number;
487
+ column: import("element-plus").TableColumnCtx<any>;
488
+ columnIndex: number;
489
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
490
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
491
+ row: any;
492
+ rowIndex: number;
493
+ column: import("element-plus").TableColumnCtx<any>;
494
+ columnIndex: number;
495
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
496
+ row: any;
497
+ rowIndex: number;
498
+ column: import("element-plus").TableColumnCtx<any>;
499
+ columnIndex: number;
500
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
501
+ } | undefined;
502
+ find?: {
503
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
504
+ row: any;
505
+ rowIndex: number;
506
+ column: import("element-plus").TableColumnCtx<any>;
507
+ columnIndex: number;
508
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
509
+ row: any;
510
+ rowIndex: number;
511
+ column: import("element-plus").TableColumnCtx<any>;
512
+ columnIndex: number;
513
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
514
+ row: any;
515
+ rowIndex: number;
516
+ column: import("element-plus").TableColumnCtx<any>;
517
+ columnIndex: number;
518
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
519
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
520
+ row: any;
521
+ rowIndex: number;
522
+ column: import("element-plus").TableColumnCtx<any>;
523
+ columnIndex: number;
524
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
525
+ row: any;
526
+ rowIndex: number;
527
+ column: import("element-plus").TableColumnCtx<any>;
528
+ columnIndex: number;
529
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
530
+ row: any;
531
+ rowIndex: number;
532
+ column: import("element-plus").TableColumnCtx<any>;
533
+ columnIndex: number;
534
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
535
+ } | undefined;
536
+ findIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
537
+ row: any;
538
+ rowIndex: number;
539
+ column: import("element-plus").TableColumnCtx<any>;
540
+ columnIndex: number;
541
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
542
+ row: any;
543
+ rowIndex: number;
544
+ column: import("element-plus").TableColumnCtx<any>;
545
+ columnIndex: number;
546
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
547
+ fill?: ((value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
548
+ row: any;
549
+ rowIndex: number;
550
+ column: import("element-plus").TableColumnCtx<any>;
551
+ columnIndex: number;
552
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
553
+ row: any;
554
+ rowIndex: number;
555
+ column: import("element-plus").TableColumnCtx<any>;
556
+ columnIndex: number;
557
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
558
+ copyWithin?: ((target: number, start: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
559
+ row: any;
560
+ rowIndex: number;
561
+ column: import("element-plus").TableColumnCtx<any>;
562
+ columnIndex: number;
563
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
564
+ entries?: (() => ArrayIterator<[number, ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
565
+ row: any;
566
+ rowIndex: number;
567
+ column: import("element-plus").TableColumnCtx<any>;
568
+ columnIndex: number;
569
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null]>) | undefined;
570
+ keys?: (() => ArrayIterator<number>) | undefined;
571
+ values?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
572
+ row: any;
573
+ rowIndex: number;
574
+ column: import("element-plus").TableColumnCtx<any>;
575
+ columnIndex: number;
576
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
577
+ includes?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
578
+ row: any;
579
+ rowIndex: number;
580
+ column: import("element-plus").TableColumnCtx<any>;
581
+ columnIndex: number;
582
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => boolean) | undefined;
583
+ flatMap?: (<U, This = undefined>(callback: (this: This, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
584
+ row: any;
585
+ rowIndex: number;
586
+ column: import("element-plus").TableColumnCtx<any>;
587
+ columnIndex: number;
588
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
589
+ row: any;
590
+ rowIndex: number;
591
+ column: import("element-plus").TableColumnCtx<any>;
592
+ columnIndex: number;
593
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
594
+ flat?: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | undefined;
595
+ at?: ((index: number) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
596
+ row: any;
597
+ rowIndex: number;
598
+ column: import("element-plus").TableColumnCtx<any>;
599
+ columnIndex: number;
600
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
601
+ findLast?: {
602
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
603
+ row: any;
604
+ rowIndex: number;
605
+ column: import("element-plus").TableColumnCtx<any>;
606
+ columnIndex: number;
607
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
608
+ row: any;
609
+ rowIndex: number;
610
+ column: import("element-plus").TableColumnCtx<any>;
611
+ columnIndex: number;
612
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
613
+ row: any;
614
+ rowIndex: number;
615
+ column: import("element-plus").TableColumnCtx<any>;
616
+ columnIndex: number;
617
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
618
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
619
+ row: any;
620
+ rowIndex: number;
621
+ column: import("element-plus").TableColumnCtx<any>;
622
+ columnIndex: number;
623
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
624
+ row: any;
625
+ rowIndex: number;
626
+ column: import("element-plus").TableColumnCtx<any>;
627
+ columnIndex: number;
628
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
629
+ row: any;
630
+ rowIndex: number;
631
+ column: import("element-plus").TableColumnCtx<any>;
632
+ columnIndex: number;
633
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
634
+ } | undefined;
635
+ findLastIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
636
+ row: any;
637
+ rowIndex: number;
638
+ column: import("element-plus").TableColumnCtx<any>;
639
+ columnIndex: number;
640
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
641
+ row: any;
642
+ rowIndex: number;
643
+ column: import("element-plus").TableColumnCtx<any>;
644
+ columnIndex: number;
645
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
646
+ toReversed?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
647
+ row: any;
648
+ rowIndex: number;
649
+ column: import("element-plus").TableColumnCtx<any>;
650
+ columnIndex: number;
651
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
652
+ toSorted?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
653
+ row: any;
654
+ rowIndex: number;
655
+ column: import("element-plus").TableColumnCtx<any>;
656
+ columnIndex: number;
657
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
658
+ row: any;
659
+ rowIndex: number;
660
+ column: import("element-plus").TableColumnCtx<any>;
661
+ columnIndex: number;
662
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
663
+ row: any;
664
+ rowIndex: number;
665
+ column: import("element-plus").TableColumnCtx<any>;
666
+ columnIndex: number;
667
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
668
+ toSpliced?: {
669
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
670
+ row: any;
671
+ rowIndex: number;
672
+ column: import("element-plus").TableColumnCtx<any>;
673
+ columnIndex: number;
674
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
675
+ row: any;
676
+ rowIndex: number;
677
+ column: import("element-plus").TableColumnCtx<any>;
678
+ columnIndex: number;
679
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
680
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
681
+ row: any;
682
+ rowIndex: number;
683
+ column: import("element-plus").TableColumnCtx<any>;
684
+ columnIndex: number;
685
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
686
+ } | undefined;
687
+ with?: ((index: number, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
688
+ row: any;
689
+ rowIndex: number;
690
+ column: import("element-plus").TableColumnCtx<any>;
691
+ columnIndex: number;
692
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
693
+ row: any;
694
+ rowIndex: number;
695
+ column: import("element-plus").TableColumnCtx<any>;
696
+ columnIndex: number;
697
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
698
+ [Symbol.iterator]?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
699
+ row: any;
700
+ rowIndex: number;
701
+ column: import("element-plus").TableColumnCtx<any>;
702
+ columnIndex: number;
703
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
704
+ [Symbol.unscopables]?: {
705
+ [x: number]: boolean | undefined;
706
+ length?: boolean | undefined;
707
+ toString?: boolean | undefined;
708
+ toLocaleString?: boolean | undefined;
709
+ pop?: boolean | undefined;
710
+ push?: boolean | undefined;
711
+ concat?: boolean | undefined;
712
+ join?: boolean | undefined;
713
+ reverse?: boolean | undefined;
714
+ shift?: boolean | undefined;
715
+ slice?: boolean | undefined;
716
+ sort?: boolean | undefined;
717
+ splice?: boolean | undefined;
718
+ unshift?: boolean | undefined;
719
+ indexOf?: boolean | undefined;
720
+ lastIndexOf?: boolean | undefined;
721
+ every?: boolean | undefined;
722
+ some?: boolean | undefined;
723
+ forEach?: boolean | undefined;
724
+ map?: boolean | undefined;
725
+ filter?: boolean | undefined;
726
+ reduce?: boolean | undefined;
727
+ reduceRight?: boolean | undefined;
728
+ find?: boolean | undefined;
729
+ findIndex?: boolean | undefined;
730
+ fill?: boolean | undefined;
731
+ copyWithin?: boolean | undefined;
732
+ entries?: boolean | undefined;
733
+ keys?: boolean | undefined;
734
+ values?: boolean | undefined;
735
+ includes?: boolean | undefined;
736
+ flatMap?: boolean | undefined;
737
+ flat?: boolean | undefined;
738
+ at?: boolean | undefined;
739
+ findLast?: boolean | undefined;
740
+ findLastIndex?: boolean | undefined;
741
+ toReversed?: boolean | undefined;
742
+ toSorted?: boolean | undefined;
743
+ toSpliced?: boolean | undefined;
744
+ with?: boolean | undefined;
745
+ [Symbol.iterator]?: boolean | undefined;
746
+ readonly [Symbol.unscopables]?: boolean | undefined;
747
+ } | undefined;
748
+ };
749
+ data: {
750
+ type: import("vue").PropType<any[]>;
751
+ default: () => never[];
752
+ };
753
+ width: (NumberConstructor | StringConstructor)[];
754
+ height: (NumberConstructor | StringConstructor)[];
755
+ maxHeight: (NumberConstructor | StringConstructor)[];
756
+ fit: {
757
+ type: BooleanConstructor;
758
+ default: boolean;
759
+ };
760
+ stripe: BooleanConstructor;
761
+ rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
762
+ showHeader: {
763
+ type: BooleanConstructor;
764
+ default: boolean;
765
+ };
766
+ showSummary: BooleanConstructor;
767
+ sumText: StringConstructor;
768
+ summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
769
+ rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
770
+ rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
771
+ cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
772
+ cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
773
+ headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
774
+ headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
775
+ headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
776
+ highlightCurrentRow: BooleanConstructor;
777
+ currentRowKey: (NumberConstructor | StringConstructor)[];
778
+ emptyText: StringConstructor;
779
+ expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
780
+ defaultExpandAll: BooleanConstructor;
781
+ defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
782
+ tooltipEffect: StringConstructor;
783
+ tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
784
+ spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
785
+ selectOnIndeterminate: {
786
+ type: BooleanConstructor;
787
+ default: boolean;
788
+ };
789
+ indent: {
790
+ type: NumberConstructor;
791
+ default: number;
792
+ };
793
+ treeProps: {
794
+ type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
795
+ default: () => {
796
+ hasChildren: string;
797
+ children: string;
798
+ checkStrictly: boolean;
799
+ };
800
+ };
801
+ lazy: BooleanConstructor;
802
+ load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
803
+ style: {
804
+ type: import("vue").PropType<import("element-plus").TableProps<any>["style"]>;
805
+ default: () => {};
806
+ };
807
+ className: {
808
+ type: StringConstructor;
809
+ default: string;
810
+ };
811
+ tableLayout: {
812
+ type: import("vue").PropType<"fixed" | "auto">;
813
+ default: string;
814
+ };
815
+ scrollbarAlwaysOn: BooleanConstructor;
816
+ flexible: BooleanConstructor;
817
+ showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
818
+ tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
819
+ appendFilterPanelTo: StringConstructor;
820
+ scrollbarTabindex: {
821
+ type: (NumberConstructor | StringConstructor)[];
822
+ default: undefined;
823
+ };
824
+ allowDragLastColumn: {
825
+ type: BooleanConstructor;
826
+ default: boolean;
827
+ };
828
+ preserveExpandedContent: BooleanConstructor;
829
+ nativeScrollbar: BooleanConstructor;
830
+ }>> & Readonly<{
831
+ "onCurrent-change"?: ((...args: any[]) => any) | undefined;
832
+ onSelect?: ((...args: any[]) => any) | undefined;
833
+ onScroll?: ((...args: any[]) => any) | undefined;
834
+ "onSelect-all"?: ((...args: any[]) => any) | undefined;
835
+ "onExpand-change"?: ((...args: any[]) => any) | undefined;
836
+ "onHeader-click"?: ((...args: any[]) => any) | undefined;
837
+ "onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
838
+ "onHeader-dragend"?: ((...args: any[]) => any) | undefined;
839
+ "onSelection-change"?: ((...args: any[]) => any) | undefined;
840
+ "onSort-change"?: ((...args: any[]) => any) | undefined;
841
+ "onFilter-change"?: ((...args: any[]) => any) | undefined;
842
+ "onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
843
+ "onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
844
+ "onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
845
+ "onCell-click"?: ((...args: any[]) => any) | undefined;
846
+ "onCell-dblclick"?: ((...args: any[]) => any) | undefined;
847
+ "onRow-click"?: ((...args: any[]) => any) | undefined;
848
+ "onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
849
+ "onRow-dblclick"?: ((...args: any[]) => any) | undefined;
850
+ }>, {
851
+ elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
852
+ elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
853
+ validate: () => import("element-plus").FormValidationResult;
854
+ resetFields: (props: import("element-plus").FormItemProp) => void;
855
+ clearValidate: (props: import("element-plus").FormItemProp) => void;
856
+ search: import("./src/use-table.jsx").ISearch;
857
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
858
+ "current-change": (...args: any[]) => void;
859
+ select: (...args: any[]) => void;
860
+ scroll: (...args: any[]) => void;
861
+ "select-all": (...args: any[]) => void;
862
+ "expand-change": (...args: any[]) => void;
863
+ "header-click": (...args: any[]) => void;
864
+ "header-contextmenu": (...args: any[]) => void;
865
+ "header-dragend": (...args: any[]) => void;
866
+ "selection-change": (...args: any[]) => void;
867
+ "sort-change": (...args: any[]) => void;
868
+ "filter-change": (...args: any[]) => void;
869
+ "cell-mouse-enter": (...args: any[]) => void;
870
+ "cell-mouse-leave": (...args: any[]) => void;
871
+ "cell-contextmenu": (...args: any[]) => void;
872
+ "cell-click": (...args: any[]) => void;
873
+ "cell-dblclick": (...args: any[]) => void;
874
+ "row-click": (...args: any[]) => void;
875
+ "row-contextmenu": (...args: any[]) => void;
876
+ "row-dblclick": (...args: any[]) => void;
877
+ }, import("vue").PublicProps, {
878
+ style: import("vue").StyleValue;
879
+ headerCellStyle: import("element-plus").CellStyle<any> | undefined;
880
+ disabled: boolean;
881
+ className: string;
882
+ size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
883
+ columns: Partial<import("element-plus").TableColumnCtx & {
884
+ [key: string]: any;
885
+ required: boolean | (() => boolean);
886
+ cellRequired: (scope: import("./src/table").TableScope) => boolean;
887
+ headerRender: import("element-plus").TableColumnCtx["renderHeader"];
888
+ disabled: boolean | ((scope: import("./src/table").TableScope) => boolean);
889
+ props: Record<string, any>;
890
+ filter: boolean;
891
+ } & {} & {
892
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
893
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
894
+ }>[];
895
+ showSelectionCol: boolean;
896
+ showIndexCol: boolean;
897
+ align: "right" | "left" | "center";
898
+ reserveSelection: boolean;
899
+ paginationProps: Partial<{
900
+ readonly small: boolean;
901
+ readonly disabled: boolean;
902
+ readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
903
+ readonly popperClass: string;
904
+ readonly pagerCount: number;
905
+ readonly layout: string;
906
+ readonly pageSizes: number[];
907
+ readonly prevText: string;
908
+ readonly nextText: string;
909
+ readonly background: boolean;
910
+ readonly hideOnSinglePage: boolean;
911
+ } & {
912
+ readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
913
+ readonly pageSize?: number | undefined;
914
+ readonly defaultPageSize?: number | undefined;
915
+ readonly total?: number | undefined;
916
+ readonly pageCount?: number | undefined;
917
+ readonly currentPage?: number | undefined;
918
+ readonly defaultCurrentPage?: number | undefined;
919
+ readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
920
+ readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
921
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
922
+ readonly appendSizeTo?: string | undefined;
923
+ } & import("packages/utils/type.js").WithOnPrefixAndCamelCase<{
924
+ 'update:current-page': (val: number) => boolean;
925
+ 'update:page-size': (val: number) => boolean;
926
+ 'size-change': (val: number) => boolean;
927
+ change: (currentPage: number, pageSize: number) => boolean;
928
+ 'current-change': (val: number) => boolean;
929
+ 'prev-click': (val: number) => boolean;
930
+ 'next-click': (val: number) => boolean;
931
+ }>>;
932
+ showPagination: boolean;
933
+ isFrontPage: boolean;
934
+ actionButtons: Partial<{
935
+ readonly link: boolean;
936
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
937
+ readonly disabled: boolean;
938
+ readonly dark: boolean;
939
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
940
+ readonly loading: boolean;
941
+ readonly bg: boolean;
942
+ readonly autofocus: boolean;
943
+ readonly circle: boolean;
944
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
945
+ } & {
946
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
947
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
948
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
949
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
950
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
951
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
952
+ readonly color?: string | undefined;
953
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
954
+ } & {
955
+ name: string;
956
+ prop: string;
957
+ permission: string;
958
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
959
+ scopedSlots: Record<string, () => import("vue").VNode>;
960
+ confirm: boolean;
961
+ confirmText: string;
962
+ } & {} & {
963
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
964
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
965
+ }>[];
966
+ linkProps: Partial<{
967
+ readonly link: boolean;
968
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
969
+ readonly disabled: boolean;
970
+ readonly dark: boolean;
971
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
972
+ readonly loading: boolean;
973
+ readonly bg: boolean;
974
+ readonly autofocus: boolean;
975
+ readonly circle: boolean;
976
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
977
+ } & {
978
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
979
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
980
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
981
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
982
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
983
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
984
+ readonly color?: string | undefined;
985
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
986
+ } & {
987
+ name: string;
988
+ prop: string;
989
+ permission: string;
990
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
991
+ scopedSlots: Record<string, () => import("vue").VNode>;
992
+ confirm: boolean;
993
+ confirmText: string;
994
+ } & {} & {
995
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
996
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
997
+ }>[];
998
+ border: boolean;
999
+ data: any[];
1000
+ fit: boolean;
1001
+ stripe: boolean;
1002
+ showHeader: boolean;
1003
+ showSummary: boolean;
1004
+ highlightCurrentRow: boolean;
1005
+ defaultExpandAll: boolean;
1006
+ selectOnIndeterminate: boolean;
1007
+ indent: number;
1008
+ treeProps: import("element-plus/es/components/table/src/table/defaults.js").TreeProps | undefined;
1009
+ lazy: boolean;
1010
+ tableLayout: "fixed" | "auto";
1011
+ scrollbarAlwaysOn: boolean;
1012
+ flexible: boolean;
1013
+ scrollbarTabindex: string | number;
1014
+ allowDragLastColumn: boolean;
1015
+ preserveExpandedContent: boolean;
1016
+ nativeScrollbar: boolean;
1017
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1018
+ P: {};
1019
+ B: {};
1020
+ D: {};
1021
+ C: {};
1022
+ M: {};
1023
+ Defaults: {};
1024
+ }, Readonly<import("vue").ExtractPropTypes<{
1025
+ columns: {
1026
+ type: import("vue").PropType<Partial<import("element-plus").TableColumnCtx & {
1027
+ [key: string]: any;
1028
+ required: boolean | (() => boolean);
1029
+ cellRequired: (scope: import("./src/table").TableScope) => boolean;
1030
+ headerRender: import("element-plus").TableColumnCtx["renderHeader"];
1031
+ disabled: boolean | ((scope: import("./src/table").TableScope) => boolean);
1032
+ props: Record<string, any>;
1033
+ filter: boolean;
1034
+ } & {} & {
1035
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1036
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1037
+ }>[]>;
1038
+ default: () => never[];
1039
+ };
1040
+ showSelectionCol: BooleanConstructor;
1041
+ showIndexCol: {
1042
+ type: BooleanConstructor;
1043
+ default: boolean;
1044
+ };
1045
+ align: {
1046
+ type: import("vue").PropType<"left" | "center" | "right">;
1047
+ default: string;
1048
+ };
1049
+ indexFormatter: {
1050
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["index"]>;
1051
+ };
1052
+ disabled: BooleanConstructor;
1053
+ reserveSelection: BooleanConstructor;
1054
+ selectable: {
1055
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
1056
+ };
1057
+ paginationProps: {
1058
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/utils/type.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
1059
+ default: () => {};
1060
+ };
1061
+ showPagination: BooleanConstructor;
1062
+ isFrontPage: BooleanConstructor;
1063
+ actionButtons: {
1064
+ type: import("vue").PropType<Partial<{
1065
+ readonly link: boolean;
1066
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
1067
+ readonly disabled: boolean;
1068
+ readonly dark: boolean;
1069
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
1070
+ readonly loading: boolean;
1071
+ readonly bg: boolean;
1072
+ readonly autofocus: boolean;
1073
+ readonly circle: boolean;
1074
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
1075
+ } & {
1076
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
1077
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1078
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1079
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1080
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1081
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1082
+ readonly color?: string | undefined;
1083
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1084
+ } & {
1085
+ name: string;
1086
+ prop: string;
1087
+ permission: string;
1088
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
1089
+ scopedSlots: Record<string, () => import("vue").VNode>;
1090
+ confirm: boolean;
1091
+ confirmText: string;
1092
+ } & {} & {
1093
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1094
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1095
+ }>[]>;
1096
+ default: () => never[];
1097
+ };
1098
+ linkProps: {
1099
+ type: import("vue").PropType<Partial<{
1100
+ readonly link: boolean;
1101
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
1102
+ readonly disabled: boolean;
1103
+ readonly dark: boolean;
1104
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
1105
+ readonly loading: boolean;
1106
+ readonly bg: boolean;
1107
+ readonly autofocus: boolean;
1108
+ readonly circle: boolean;
1109
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
1110
+ } & {
1111
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
1112
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1113
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1114
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1115
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1116
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1117
+ readonly color?: string | undefined;
1118
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1119
+ } & {
1120
+ name: string;
1121
+ prop: string;
1122
+ permission: string;
1123
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
1124
+ scopedSlots: Record<string, () => import("vue").VNode>;
1125
+ confirm: boolean;
1126
+ confirmText: string;
1127
+ } & {} & {
1128
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1129
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1130
+ }>[]>;
1131
+ default: () => never[];
1132
+ };
1133
+ api: {
1134
+ type: import("vue").PropType<import("packages/utils/type.js").Api>;
1135
+ };
1136
+ method: {
1137
+ type: import("vue").PropType<import("axios").Method>;
1138
+ };
1139
+ reqData: {
1140
+ type: ObjectConstructor;
1141
+ };
1142
+ reqParams: {
1143
+ type: ObjectConstructor;
1144
+ };
1145
+ reqBefore: {
1146
+ type: import("vue").PropType<import("packages/utils/type.js").ReqBefore>;
1147
+ };
1148
+ reqAfter: {
1149
+ type: import("vue").PropType<import("packages/utils/type.js").ReqAfter>;
1150
+ };
1151
+ size: {
1152
+ default: string;
1153
+ type: import("vue").PropType<import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
1154
+ required: false;
1155
+ validator: ((val: unknown) => boolean) | undefined;
1156
+ __epPropKey: true;
1157
+ };
1158
+ border: {
1159
+ default: boolean;
1160
+ prototype: Boolean;
1161
+ };
1162
+ headerCellStyle: {
1163
+ default: () => {
1164
+ background: string;
1165
+ fontSize: string;
1166
+ color: string;
1167
+ };
1168
+ length?: number | undefined;
1169
+ toString?: (() => string) | undefined;
1170
+ toLocaleString?: {
1171
+ (): string;
1172
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
1173
+ } | undefined;
1174
+ pop?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1175
+ row: any;
1176
+ rowIndex: number;
1177
+ column: import("element-plus").TableColumnCtx<any>;
1178
+ columnIndex: number;
1179
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
1180
+ push?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1181
+ row: any;
1182
+ rowIndex: number;
1183
+ column: import("element-plus").TableColumnCtx<any>;
1184
+ columnIndex: number;
1185
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
1186
+ concat?: {
1187
+ (...items: ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1188
+ row: any;
1189
+ rowIndex: number;
1190
+ column: import("element-plus").TableColumnCtx<any>;
1191
+ columnIndex: number;
1192
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1193
+ row: any;
1194
+ rowIndex: number;
1195
+ column: import("element-plus").TableColumnCtx<any>;
1196
+ columnIndex: number;
1197
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1198
+ (...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1199
+ row: any;
1200
+ rowIndex: number;
1201
+ column: import("element-plus").TableColumnCtx<any>;
1202
+ columnIndex: number;
1203
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1204
+ row: any;
1205
+ rowIndex: number;
1206
+ column: import("element-plus").TableColumnCtx<any>;
1207
+ columnIndex: number;
1208
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null> | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1209
+ row: any;
1210
+ rowIndex: number;
1211
+ column: import("element-plus").TableColumnCtx<any>;
1212
+ columnIndex: number;
1213
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1214
+ } | undefined;
1215
+ join?: ((separator?: string) => string) | undefined;
1216
+ reverse?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1217
+ row: any;
1218
+ rowIndex: number;
1219
+ column: import("element-plus").TableColumnCtx<any>;
1220
+ columnIndex: number;
1221
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1222
+ shift?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1223
+ row: any;
1224
+ rowIndex: number;
1225
+ column: import("element-plus").TableColumnCtx<any>;
1226
+ columnIndex: number;
1227
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
1228
+ slice?: ((start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1229
+ row: any;
1230
+ rowIndex: number;
1231
+ column: import("element-plus").TableColumnCtx<any>;
1232
+ columnIndex: number;
1233
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1234
+ sort?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1235
+ row: any;
1236
+ rowIndex: number;
1237
+ column: import("element-plus").TableColumnCtx<any>;
1238
+ columnIndex: number;
1239
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1240
+ row: any;
1241
+ rowIndex: number;
1242
+ column: import("element-plus").TableColumnCtx<any>;
1243
+ columnIndex: number;
1244
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1245
+ row: any;
1246
+ rowIndex: number;
1247
+ column: import("element-plus").TableColumnCtx<any>;
1248
+ columnIndex: number;
1249
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1250
+ splice?: {
1251
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1252
+ row: any;
1253
+ rowIndex: number;
1254
+ column: import("element-plus").TableColumnCtx<any>;
1255
+ columnIndex: number;
1256
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1257
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1258
+ row: any;
1259
+ rowIndex: number;
1260
+ column: import("element-plus").TableColumnCtx<any>;
1261
+ columnIndex: number;
1262
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1263
+ row: any;
1264
+ rowIndex: number;
1265
+ column: import("element-plus").TableColumnCtx<any>;
1266
+ columnIndex: number;
1267
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1268
+ } | undefined;
1269
+ unshift?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1270
+ row: any;
1271
+ rowIndex: number;
1272
+ column: import("element-plus").TableColumnCtx<any>;
1273
+ columnIndex: number;
1274
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
1275
+ indexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1276
+ row: any;
1277
+ rowIndex: number;
1278
+ column: import("element-plus").TableColumnCtx<any>;
1279
+ columnIndex: number;
1280
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
1281
+ lastIndexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1282
+ row: any;
1283
+ rowIndex: number;
1284
+ column: import("element-plus").TableColumnCtx<any>;
1285
+ columnIndex: number;
1286
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
1287
+ every?: {
1288
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1289
+ row: any;
1290
+ rowIndex: number;
1291
+ column: import("element-plus").TableColumnCtx<any>;
1292
+ columnIndex: number;
1293
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1294
+ row: any;
1295
+ rowIndex: number;
1296
+ column: import("element-plus").TableColumnCtx<any>;
1297
+ columnIndex: number;
1298
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1299
+ row: any;
1300
+ rowIndex: number;
1301
+ column: import("element-plus").TableColumnCtx<any>;
1302
+ columnIndex: number;
1303
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): this is S[];
1304
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1305
+ row: any;
1306
+ rowIndex: number;
1307
+ column: import("element-plus").TableColumnCtx<any>;
1308
+ columnIndex: number;
1309
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1310
+ row: any;
1311
+ rowIndex: number;
1312
+ column: import("element-plus").TableColumnCtx<any>;
1313
+ columnIndex: number;
1314
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): boolean;
1315
+ } | undefined;
1316
+ some?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1317
+ row: any;
1318
+ rowIndex: number;
1319
+ column: import("element-plus").TableColumnCtx<any>;
1320
+ columnIndex: number;
1321
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1322
+ row: any;
1323
+ rowIndex: number;
1324
+ column: import("element-plus").TableColumnCtx<any>;
1325
+ columnIndex: number;
1326
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => boolean) | undefined;
1327
+ forEach?: ((callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1328
+ row: any;
1329
+ rowIndex: number;
1330
+ column: import("element-plus").TableColumnCtx<any>;
1331
+ columnIndex: number;
1332
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1333
+ row: any;
1334
+ rowIndex: number;
1335
+ column: import("element-plus").TableColumnCtx<any>;
1336
+ columnIndex: number;
1337
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => void, thisArg?: any) => void) | undefined;
1338
+ map?: (<U>(callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1339
+ row: any;
1340
+ rowIndex: number;
1341
+ column: import("element-plus").TableColumnCtx<any>;
1342
+ columnIndex: number;
1343
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1344
+ row: any;
1345
+ rowIndex: number;
1346
+ column: import("element-plus").TableColumnCtx<any>;
1347
+ columnIndex: number;
1348
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, thisArg?: any) => U[]) | undefined;
1349
+ filter?: {
1350
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1351
+ row: any;
1352
+ rowIndex: number;
1353
+ column: import("element-plus").TableColumnCtx<any>;
1354
+ columnIndex: number;
1355
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1356
+ row: any;
1357
+ rowIndex: number;
1358
+ column: import("element-plus").TableColumnCtx<any>;
1359
+ columnIndex: number;
1360
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1361
+ row: any;
1362
+ rowIndex: number;
1363
+ column: import("element-plus").TableColumnCtx<any>;
1364
+ columnIndex: number;
1365
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S[];
1366
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1367
+ row: any;
1368
+ rowIndex: number;
1369
+ column: import("element-plus").TableColumnCtx<any>;
1370
+ columnIndex: number;
1371
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1372
+ row: any;
1373
+ rowIndex: number;
1374
+ column: import("element-plus").TableColumnCtx<any>;
1375
+ columnIndex: number;
1376
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1377
+ row: any;
1378
+ rowIndex: number;
1379
+ column: import("element-plus").TableColumnCtx<any>;
1380
+ columnIndex: number;
1381
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1382
+ } | undefined;
1383
+ reduce?: {
1384
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1385
+ row: any;
1386
+ rowIndex: number;
1387
+ column: import("element-plus").TableColumnCtx<any>;
1388
+ columnIndex: number;
1389
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1390
+ row: any;
1391
+ rowIndex: number;
1392
+ column: import("element-plus").TableColumnCtx<any>;
1393
+ columnIndex: number;
1394
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1395
+ row: any;
1396
+ rowIndex: number;
1397
+ column: import("element-plus").TableColumnCtx<any>;
1398
+ columnIndex: number;
1399
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1400
+ row: any;
1401
+ rowIndex: number;
1402
+ column: import("element-plus").TableColumnCtx<any>;
1403
+ columnIndex: number;
1404
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1405
+ row: any;
1406
+ rowIndex: number;
1407
+ column: import("element-plus").TableColumnCtx<any>;
1408
+ columnIndex: number;
1409
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
1410
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1411
+ row: any;
1412
+ rowIndex: number;
1413
+ column: import("element-plus").TableColumnCtx<any>;
1414
+ columnIndex: number;
1415
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1416
+ row: any;
1417
+ rowIndex: number;
1418
+ column: import("element-plus").TableColumnCtx<any>;
1419
+ columnIndex: number;
1420
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1421
+ row: any;
1422
+ rowIndex: number;
1423
+ column: import("element-plus").TableColumnCtx<any>;
1424
+ columnIndex: number;
1425
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1426
+ row: any;
1427
+ rowIndex: number;
1428
+ column: import("element-plus").TableColumnCtx<any>;
1429
+ columnIndex: number;
1430
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1431
+ row: any;
1432
+ rowIndex: number;
1433
+ column: import("element-plus").TableColumnCtx<any>;
1434
+ columnIndex: number;
1435
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1436
+ row: any;
1437
+ rowIndex: number;
1438
+ column: import("element-plus").TableColumnCtx<any>;
1439
+ columnIndex: number;
1440
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
1441
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1442
+ row: any;
1443
+ rowIndex: number;
1444
+ column: import("element-plus").TableColumnCtx<any>;
1445
+ columnIndex: number;
1446
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1447
+ row: any;
1448
+ rowIndex: number;
1449
+ column: import("element-plus").TableColumnCtx<any>;
1450
+ columnIndex: number;
1451
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
1452
+ } | undefined;
1453
+ reduceRight?: {
1454
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1455
+ row: any;
1456
+ rowIndex: number;
1457
+ column: import("element-plus").TableColumnCtx<any>;
1458
+ columnIndex: number;
1459
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1460
+ row: any;
1461
+ rowIndex: number;
1462
+ column: import("element-plus").TableColumnCtx<any>;
1463
+ columnIndex: number;
1464
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1465
+ row: any;
1466
+ rowIndex: number;
1467
+ column: import("element-plus").TableColumnCtx<any>;
1468
+ columnIndex: number;
1469
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1470
+ row: any;
1471
+ rowIndex: number;
1472
+ column: import("element-plus").TableColumnCtx<any>;
1473
+ columnIndex: number;
1474
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1475
+ row: any;
1476
+ rowIndex: number;
1477
+ column: import("element-plus").TableColumnCtx<any>;
1478
+ columnIndex: number;
1479
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
1480
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1481
+ row: any;
1482
+ rowIndex: number;
1483
+ column: import("element-plus").TableColumnCtx<any>;
1484
+ columnIndex: number;
1485
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1486
+ row: any;
1487
+ rowIndex: number;
1488
+ column: import("element-plus").TableColumnCtx<any>;
1489
+ columnIndex: number;
1490
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1491
+ row: any;
1492
+ rowIndex: number;
1493
+ column: import("element-plus").TableColumnCtx<any>;
1494
+ columnIndex: number;
1495
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1496
+ row: any;
1497
+ rowIndex: number;
1498
+ column: import("element-plus").TableColumnCtx<any>;
1499
+ columnIndex: number;
1500
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1501
+ row: any;
1502
+ rowIndex: number;
1503
+ column: import("element-plus").TableColumnCtx<any>;
1504
+ columnIndex: number;
1505
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1506
+ row: any;
1507
+ rowIndex: number;
1508
+ column: import("element-plus").TableColumnCtx<any>;
1509
+ columnIndex: number;
1510
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
1511
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1512
+ row: any;
1513
+ rowIndex: number;
1514
+ column: import("element-plus").TableColumnCtx<any>;
1515
+ columnIndex: number;
1516
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1517
+ row: any;
1518
+ rowIndex: number;
1519
+ column: import("element-plus").TableColumnCtx<any>;
1520
+ columnIndex: number;
1521
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
1522
+ } | undefined;
1523
+ find?: {
1524
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1525
+ row: any;
1526
+ rowIndex: number;
1527
+ column: import("element-plus").TableColumnCtx<any>;
1528
+ columnIndex: number;
1529
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1530
+ row: any;
1531
+ rowIndex: number;
1532
+ column: import("element-plus").TableColumnCtx<any>;
1533
+ columnIndex: number;
1534
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1535
+ row: any;
1536
+ rowIndex: number;
1537
+ column: import("element-plus").TableColumnCtx<any>;
1538
+ columnIndex: number;
1539
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
1540
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1541
+ row: any;
1542
+ rowIndex: number;
1543
+ column: import("element-plus").TableColumnCtx<any>;
1544
+ columnIndex: number;
1545
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1546
+ row: any;
1547
+ rowIndex: number;
1548
+ column: import("element-plus").TableColumnCtx<any>;
1549
+ columnIndex: number;
1550
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1551
+ row: any;
1552
+ rowIndex: number;
1553
+ column: import("element-plus").TableColumnCtx<any>;
1554
+ columnIndex: number;
1555
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
1556
+ } | undefined;
1557
+ findIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1558
+ row: any;
1559
+ rowIndex: number;
1560
+ column: import("element-plus").TableColumnCtx<any>;
1561
+ columnIndex: number;
1562
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1563
+ row: any;
1564
+ rowIndex: number;
1565
+ column: import("element-plus").TableColumnCtx<any>;
1566
+ columnIndex: number;
1567
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
1568
+ fill?: ((value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1569
+ row: any;
1570
+ rowIndex: number;
1571
+ column: import("element-plus").TableColumnCtx<any>;
1572
+ columnIndex: number;
1573
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1574
+ row: any;
1575
+ rowIndex: number;
1576
+ column: import("element-plus").TableColumnCtx<any>;
1577
+ columnIndex: number;
1578
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1579
+ copyWithin?: ((target: number, start: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1580
+ row: any;
1581
+ rowIndex: number;
1582
+ column: import("element-plus").TableColumnCtx<any>;
1583
+ columnIndex: number;
1584
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1585
+ entries?: (() => ArrayIterator<[number, ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1586
+ row: any;
1587
+ rowIndex: number;
1588
+ column: import("element-plus").TableColumnCtx<any>;
1589
+ columnIndex: number;
1590
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null]>) | undefined;
1591
+ keys?: (() => ArrayIterator<number>) | undefined;
1592
+ values?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1593
+ row: any;
1594
+ rowIndex: number;
1595
+ column: import("element-plus").TableColumnCtx<any>;
1596
+ columnIndex: number;
1597
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
1598
+ includes?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1599
+ row: any;
1600
+ rowIndex: number;
1601
+ column: import("element-plus").TableColumnCtx<any>;
1602
+ columnIndex: number;
1603
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => boolean) | undefined;
1604
+ flatMap?: (<U, This = undefined>(callback: (this: This, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1605
+ row: any;
1606
+ rowIndex: number;
1607
+ column: import("element-plus").TableColumnCtx<any>;
1608
+ columnIndex: number;
1609
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1610
+ row: any;
1611
+ rowIndex: number;
1612
+ column: import("element-plus").TableColumnCtx<any>;
1613
+ columnIndex: number;
1614
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
1615
+ flat?: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | undefined;
1616
+ at?: ((index: number) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1617
+ row: any;
1618
+ rowIndex: number;
1619
+ column: import("element-plus").TableColumnCtx<any>;
1620
+ columnIndex: number;
1621
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
1622
+ findLast?: {
1623
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1624
+ row: any;
1625
+ rowIndex: number;
1626
+ column: import("element-plus").TableColumnCtx<any>;
1627
+ columnIndex: number;
1628
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1629
+ row: any;
1630
+ rowIndex: number;
1631
+ column: import("element-plus").TableColumnCtx<any>;
1632
+ columnIndex: number;
1633
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1634
+ row: any;
1635
+ rowIndex: number;
1636
+ column: import("element-plus").TableColumnCtx<any>;
1637
+ columnIndex: number;
1638
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
1639
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1640
+ row: any;
1641
+ rowIndex: number;
1642
+ column: import("element-plus").TableColumnCtx<any>;
1643
+ columnIndex: number;
1644
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1645
+ row: any;
1646
+ rowIndex: number;
1647
+ column: import("element-plus").TableColumnCtx<any>;
1648
+ columnIndex: number;
1649
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1650
+ row: any;
1651
+ rowIndex: number;
1652
+ column: import("element-plus").TableColumnCtx<any>;
1653
+ columnIndex: number;
1654
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
1655
+ } | undefined;
1656
+ findLastIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1657
+ row: any;
1658
+ rowIndex: number;
1659
+ column: import("element-plus").TableColumnCtx<any>;
1660
+ columnIndex: number;
1661
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1662
+ row: any;
1663
+ rowIndex: number;
1664
+ column: import("element-plus").TableColumnCtx<any>;
1665
+ columnIndex: number;
1666
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
1667
+ toReversed?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1668
+ row: any;
1669
+ rowIndex: number;
1670
+ column: import("element-plus").TableColumnCtx<any>;
1671
+ columnIndex: number;
1672
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1673
+ toSorted?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1674
+ row: any;
1675
+ rowIndex: number;
1676
+ column: import("element-plus").TableColumnCtx<any>;
1677
+ columnIndex: number;
1678
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1679
+ row: any;
1680
+ rowIndex: number;
1681
+ column: import("element-plus").TableColumnCtx<any>;
1682
+ columnIndex: number;
1683
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1684
+ row: any;
1685
+ rowIndex: number;
1686
+ column: import("element-plus").TableColumnCtx<any>;
1687
+ columnIndex: number;
1688
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1689
+ toSpliced?: {
1690
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1691
+ row: any;
1692
+ rowIndex: number;
1693
+ column: import("element-plus").TableColumnCtx<any>;
1694
+ columnIndex: number;
1695
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1696
+ row: any;
1697
+ rowIndex: number;
1698
+ column: import("element-plus").TableColumnCtx<any>;
1699
+ columnIndex: number;
1700
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1701
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1702
+ row: any;
1703
+ rowIndex: number;
1704
+ column: import("element-plus").TableColumnCtx<any>;
1705
+ columnIndex: number;
1706
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1707
+ } | undefined;
1708
+ with?: ((index: number, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1709
+ row: any;
1710
+ rowIndex: number;
1711
+ column: import("element-plus").TableColumnCtx<any>;
1712
+ columnIndex: number;
1713
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1714
+ row: any;
1715
+ rowIndex: number;
1716
+ column: import("element-plus").TableColumnCtx<any>;
1717
+ columnIndex: number;
1718
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1719
+ [Symbol.iterator]?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1720
+ row: any;
1721
+ rowIndex: number;
1722
+ column: import("element-plus").TableColumnCtx<any>;
1723
+ columnIndex: number;
1724
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
1725
+ [Symbol.unscopables]?: {
1726
+ [x: number]: boolean | undefined;
1727
+ length?: boolean | undefined;
1728
+ toString?: boolean | undefined;
1729
+ toLocaleString?: boolean | undefined;
1730
+ pop?: boolean | undefined;
1731
+ push?: boolean | undefined;
1732
+ concat?: boolean | undefined;
1733
+ join?: boolean | undefined;
1734
+ reverse?: boolean | undefined;
1735
+ shift?: boolean | undefined;
1736
+ slice?: boolean | undefined;
1737
+ sort?: boolean | undefined;
1738
+ splice?: boolean | undefined;
1739
+ unshift?: boolean | undefined;
1740
+ indexOf?: boolean | undefined;
1741
+ lastIndexOf?: boolean | undefined;
1742
+ every?: boolean | undefined;
1743
+ some?: boolean | undefined;
1744
+ forEach?: boolean | undefined;
1745
+ map?: boolean | undefined;
1746
+ filter?: boolean | undefined;
1747
+ reduce?: boolean | undefined;
1748
+ reduceRight?: boolean | undefined;
1749
+ find?: boolean | undefined;
1750
+ findIndex?: boolean | undefined;
1751
+ fill?: boolean | undefined;
1752
+ copyWithin?: boolean | undefined;
1753
+ entries?: boolean | undefined;
1754
+ keys?: boolean | undefined;
1755
+ values?: boolean | undefined;
1756
+ includes?: boolean | undefined;
1757
+ flatMap?: boolean | undefined;
1758
+ flat?: boolean | undefined;
1759
+ at?: boolean | undefined;
1760
+ findLast?: boolean | undefined;
1761
+ findLastIndex?: boolean | undefined;
1762
+ toReversed?: boolean | undefined;
1763
+ toSorted?: boolean | undefined;
1764
+ toSpliced?: boolean | undefined;
1765
+ with?: boolean | undefined;
1766
+ [Symbol.iterator]?: boolean | undefined;
1767
+ readonly [Symbol.unscopables]?: boolean | undefined;
1768
+ } | undefined;
1769
+ };
1770
+ data: {
1771
+ type: import("vue").PropType<any[]>;
1772
+ default: () => never[];
1773
+ };
1774
+ width: (NumberConstructor | StringConstructor)[];
1775
+ height: (NumberConstructor | StringConstructor)[];
1776
+ maxHeight: (NumberConstructor | StringConstructor)[];
1777
+ fit: {
1778
+ type: BooleanConstructor;
1779
+ default: boolean;
1780
+ };
1781
+ stripe: BooleanConstructor;
1782
+ rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
1783
+ showHeader: {
1784
+ type: BooleanConstructor;
1785
+ default: boolean;
1786
+ };
1787
+ showSummary: BooleanConstructor;
1788
+ sumText: StringConstructor;
1789
+ summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
1790
+ rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
1791
+ rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
1792
+ cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
1793
+ cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
1794
+ headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
1795
+ headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
1796
+ headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
1797
+ highlightCurrentRow: BooleanConstructor;
1798
+ currentRowKey: (NumberConstructor | StringConstructor)[];
1799
+ emptyText: StringConstructor;
1800
+ expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
1801
+ defaultExpandAll: BooleanConstructor;
1802
+ defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
1803
+ tooltipEffect: StringConstructor;
1804
+ tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
1805
+ spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
1806
+ selectOnIndeterminate: {
1807
+ type: BooleanConstructor;
1808
+ default: boolean;
1809
+ };
1810
+ indent: {
1811
+ type: NumberConstructor;
1812
+ default: number;
1813
+ };
1814
+ treeProps: {
1815
+ type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
1816
+ default: () => {
1817
+ hasChildren: string;
1818
+ children: string;
1819
+ checkStrictly: boolean;
1820
+ };
1821
+ };
1822
+ lazy: BooleanConstructor;
1823
+ load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
1824
+ style: {
1825
+ type: import("vue").PropType<import("element-plus").TableProps<any>["style"]>;
1826
+ default: () => {};
1827
+ };
1828
+ className: {
1829
+ type: StringConstructor;
1830
+ default: string;
1831
+ };
1832
+ tableLayout: {
1833
+ type: import("vue").PropType<"fixed" | "auto">;
1834
+ default: string;
1835
+ };
1836
+ scrollbarAlwaysOn: BooleanConstructor;
1837
+ flexible: BooleanConstructor;
1838
+ showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
1839
+ tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
1840
+ appendFilterPanelTo: StringConstructor;
1841
+ scrollbarTabindex: {
1842
+ type: (NumberConstructor | StringConstructor)[];
1843
+ default: undefined;
1844
+ };
1845
+ allowDragLastColumn: {
1846
+ type: BooleanConstructor;
1847
+ default: boolean;
1848
+ };
1849
+ preserveExpandedContent: BooleanConstructor;
1850
+ nativeScrollbar: BooleanConstructor;
1851
+ }>> & Readonly<{
1852
+ "onCurrent-change"?: ((...args: any[]) => any) | undefined;
1853
+ onSelect?: ((...args: any[]) => any) | undefined;
1854
+ onScroll?: ((...args: any[]) => any) | undefined;
1855
+ "onSelect-all"?: ((...args: any[]) => any) | undefined;
1856
+ "onExpand-change"?: ((...args: any[]) => any) | undefined;
1857
+ "onHeader-click"?: ((...args: any[]) => any) | undefined;
1858
+ "onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
1859
+ "onHeader-dragend"?: ((...args: any[]) => any) | undefined;
1860
+ "onSelection-change"?: ((...args: any[]) => any) | undefined;
1861
+ "onSort-change"?: ((...args: any[]) => any) | undefined;
1862
+ "onFilter-change"?: ((...args: any[]) => any) | undefined;
1863
+ "onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
1864
+ "onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
1865
+ "onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
1866
+ "onCell-click"?: ((...args: any[]) => any) | undefined;
1867
+ "onCell-dblclick"?: ((...args: any[]) => any) | undefined;
1868
+ "onRow-click"?: ((...args: any[]) => any) | undefined;
1869
+ "onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
1870
+ "onRow-dblclick"?: ((...args: any[]) => any) | undefined;
1871
+ }>, {
1872
+ elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
1873
+ elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
1874
+ validate: () => import("element-plus").FormValidationResult;
1875
+ resetFields: (props: import("element-plus").FormItemProp) => void;
1876
+ clearValidate: (props: import("element-plus").FormItemProp) => void;
1877
+ search: import("./src/use-table.jsx").ISearch;
1878
+ }, {}, {}, {}, {
1879
+ style: import("vue").StyleValue;
1880
+ headerCellStyle: import("element-plus").CellStyle<any> | undefined;
1881
+ disabled: boolean;
1882
+ className: string;
1883
+ size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
1884
+ columns: Partial<import("element-plus").TableColumnCtx & {
1885
+ [key: string]: any;
1886
+ required: boolean | (() => boolean);
1887
+ cellRequired: (scope: import("./src/table").TableScope) => boolean;
1888
+ headerRender: import("element-plus").TableColumnCtx["renderHeader"];
1889
+ disabled: boolean | ((scope: import("./src/table").TableScope) => boolean);
1890
+ props: Record<string, any>;
1891
+ filter: boolean;
1892
+ } & {} & {
1893
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1894
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1895
+ }>[];
1896
+ showSelectionCol: boolean;
1897
+ showIndexCol: boolean;
1898
+ align: "right" | "left" | "center";
1899
+ reserveSelection: boolean;
1900
+ paginationProps: Partial<{
1901
+ readonly small: boolean;
1902
+ readonly disabled: boolean;
1903
+ readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
1904
+ readonly popperClass: string;
1905
+ readonly pagerCount: number;
1906
+ readonly layout: string;
1907
+ readonly pageSizes: number[];
1908
+ readonly prevText: string;
1909
+ readonly nextText: string;
1910
+ readonly background: boolean;
1911
+ readonly hideOnSinglePage: boolean;
1912
+ } & {
1913
+ readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
1914
+ readonly pageSize?: number | undefined;
1915
+ readonly defaultPageSize?: number | undefined;
1916
+ readonly total?: number | undefined;
1917
+ readonly pageCount?: number | undefined;
1918
+ readonly currentPage?: number | undefined;
1919
+ readonly defaultCurrentPage?: number | undefined;
1920
+ readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1921
+ readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1922
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
1923
+ readonly appendSizeTo?: string | undefined;
1924
+ } & import("packages/utils/type.js").WithOnPrefixAndCamelCase<{
1925
+ 'update:current-page': (val: number) => boolean;
1926
+ 'update:page-size': (val: number) => boolean;
1927
+ 'size-change': (val: number) => boolean;
1928
+ change: (currentPage: number, pageSize: number) => boolean;
1929
+ 'current-change': (val: number) => boolean;
1930
+ 'prev-click': (val: number) => boolean;
1931
+ 'next-click': (val: number) => boolean;
1932
+ }>>;
1933
+ showPagination: boolean;
1934
+ isFrontPage: boolean;
1935
+ actionButtons: Partial<{
1936
+ readonly link: boolean;
1937
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
1938
+ readonly disabled: boolean;
1939
+ readonly dark: boolean;
1940
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
1941
+ readonly loading: boolean;
1942
+ readonly bg: boolean;
1943
+ readonly autofocus: boolean;
1944
+ readonly circle: boolean;
1945
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
1946
+ } & {
1947
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
1948
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1949
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1950
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1951
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1952
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1953
+ readonly color?: string | undefined;
1954
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1955
+ } & {
1956
+ name: string;
1957
+ prop: string;
1958
+ permission: string;
1959
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
1960
+ scopedSlots: Record<string, () => import("vue").VNode>;
1961
+ confirm: boolean;
1962
+ confirmText: string;
1963
+ } & {} & {
1964
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1965
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1966
+ }>[];
1967
+ linkProps: Partial<{
1968
+ readonly link: boolean;
1969
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
1970
+ readonly disabled: boolean;
1971
+ readonly dark: boolean;
1972
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
1973
+ readonly loading: boolean;
1974
+ readonly bg: boolean;
1975
+ readonly autofocus: boolean;
1976
+ readonly circle: boolean;
1977
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
1978
+ } & {
1979
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
1980
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1981
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1982
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1983
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1984
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1985
+ readonly color?: string | undefined;
1986
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1987
+ } & {
1988
+ name: string;
1989
+ prop: string;
1990
+ permission: string;
1991
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
1992
+ scopedSlots: Record<string, () => import("vue").VNode>;
1993
+ confirm: boolean;
1994
+ confirmText: string;
1995
+ } & {} & {
1996
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1997
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1998
+ }>[];
1999
+ border: boolean;
2000
+ data: any[];
2001
+ fit: boolean;
2002
+ stripe: boolean;
2003
+ showHeader: boolean;
2004
+ showSummary: boolean;
2005
+ highlightCurrentRow: boolean;
2006
+ defaultExpandAll: boolean;
2007
+ selectOnIndeterminate: boolean;
2008
+ indent: number;
2009
+ treeProps: import("element-plus/es/components/table/src/table/defaults.js").TreeProps | undefined;
2010
+ lazy: boolean;
2011
+ tableLayout: "fixed" | "auto";
2012
+ scrollbarAlwaysOn: boolean;
2013
+ flexible: boolean;
2014
+ scrollbarTabindex: string | number;
2015
+ allowDragLastColumn: boolean;
2016
+ preserveExpandedContent: boolean;
2017
+ nativeScrollbar: boolean;
2018
+ }>;
2019
+ __isFragment?: never;
2020
+ __isTeleport?: never;
2021
+ __isSuspense?: never;
2022
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2023
+ columns: {
2024
+ type: import("vue").PropType<import("./src/table").TableColumn[]>;
2025
+ default: () => never[];
2026
+ };
2027
+ showSelectionCol: BooleanConstructor;
2028
+ showIndexCol: {
2029
+ type: BooleanConstructor;
2030
+ default: boolean;
2031
+ };
2032
+ align: {
2033
+ type: import("vue").PropType<"left" | "center" | "right">;
2034
+ default: string;
2035
+ };
2036
+ indexFormatter: {
2037
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["index"]>;
2038
+ };
2039
+ disabled: BooleanConstructor;
2040
+ reserveSelection: BooleanConstructor;
2041
+ selectable: {
2042
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
2043
+ };
2044
+ paginationProps: {
2045
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/utils/type.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
2046
+ default: () => {};
2047
+ };
2048
+ showPagination: BooleanConstructor;
2049
+ isFrontPage: BooleanConstructor;
2050
+ actionButtons: {
2051
+ type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
2052
+ default: () => never[];
2053
+ };
2054
+ linkProps: {
2055
+ type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
2056
+ default: () => never[];
2057
+ };
2058
+ api: {
2059
+ type: import("vue").PropType<import("packages/utils/type.js").Api>;
2060
+ };
2061
+ method: {
2062
+ type: import("vue").PropType<import("axios").Method>;
2063
+ };
2064
+ reqData: {
2065
+ type: ObjectConstructor;
2066
+ };
2067
+ reqParams: {
2068
+ type: ObjectConstructor;
2069
+ };
2070
+ reqBefore: {
2071
+ type: import("vue").PropType<import("packages/utils/type.js").ReqBefore>;
2072
+ };
2073
+ reqAfter: {
2074
+ type: import("vue").PropType<import("packages/utils/type.js").ReqAfter>;
2075
+ };
2076
+ size: {
2077
+ default: string;
2078
+ type: import("vue").PropType<import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
2079
+ required: false;
2080
+ validator: ((val: unknown) => boolean) | undefined;
2081
+ __epPropKey: true;
2082
+ };
2083
+ border: {
2084
+ default: boolean;
2085
+ prototype: Boolean;
2086
+ };
2087
+ headerCellStyle: {
2088
+ default: () => {
2089
+ background: string;
2090
+ fontSize: string;
2091
+ color: string;
2092
+ };
2093
+ length?: number | undefined;
2094
+ toString?: (() => string) | undefined;
2095
+ toLocaleString?: {
2096
+ (): string;
2097
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
2098
+ } | undefined;
2099
+ pop?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2100
+ row: any;
2101
+ rowIndex: number;
2102
+ column: import("element-plus").TableColumnCtx<any>;
2103
+ columnIndex: number;
2104
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
2105
+ push?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2106
+ row: any;
2107
+ rowIndex: number;
2108
+ column: import("element-plus").TableColumnCtx<any>;
2109
+ columnIndex: number;
2110
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
2111
+ concat?: {
2112
+ (...items: ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2113
+ row: any;
2114
+ rowIndex: number;
2115
+ column: import("element-plus").TableColumnCtx<any>;
2116
+ columnIndex: number;
2117
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2118
+ row: any;
2119
+ rowIndex: number;
2120
+ column: import("element-plus").TableColumnCtx<any>;
2121
+ columnIndex: number;
2122
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
2123
+ (...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2124
+ row: any;
2125
+ rowIndex: number;
2126
+ column: import("element-plus").TableColumnCtx<any>;
2127
+ columnIndex: number;
2128
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2129
+ row: any;
2130
+ rowIndex: number;
2131
+ column: import("element-plus").TableColumnCtx<any>;
2132
+ columnIndex: number;
2133
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null> | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2134
+ row: any;
2135
+ rowIndex: number;
2136
+ column: import("element-plus").TableColumnCtx<any>;
2137
+ columnIndex: number;
2138
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
2139
+ } | undefined;
2140
+ join?: ((separator?: string) => string) | undefined;
2141
+ reverse?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2142
+ row: any;
2143
+ rowIndex: number;
2144
+ column: import("element-plus").TableColumnCtx<any>;
2145
+ columnIndex: number;
2146
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
2147
+ shift?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2148
+ row: any;
2149
+ rowIndex: number;
2150
+ column: import("element-plus").TableColumnCtx<any>;
2151
+ columnIndex: number;
2152
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
2153
+ slice?: ((start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2154
+ row: any;
2155
+ rowIndex: number;
2156
+ column: import("element-plus").TableColumnCtx<any>;
2157
+ columnIndex: number;
2158
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
2159
+ sort?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2160
+ row: any;
2161
+ rowIndex: number;
2162
+ column: import("element-plus").TableColumnCtx<any>;
2163
+ columnIndex: number;
2164
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2165
+ row: any;
2166
+ rowIndex: number;
2167
+ column: import("element-plus").TableColumnCtx<any>;
2168
+ columnIndex: number;
2169
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2170
+ row: any;
2171
+ rowIndex: number;
2172
+ column: import("element-plus").TableColumnCtx<any>;
2173
+ columnIndex: number;
2174
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
2175
+ splice?: {
2176
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2177
+ row: any;
2178
+ rowIndex: number;
2179
+ column: import("element-plus").TableColumnCtx<any>;
2180
+ columnIndex: number;
2181
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
2182
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2183
+ row: any;
2184
+ rowIndex: number;
2185
+ column: import("element-plus").TableColumnCtx<any>;
2186
+ columnIndex: number;
2187
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2188
+ row: any;
2189
+ rowIndex: number;
2190
+ column: import("element-plus").TableColumnCtx<any>;
2191
+ columnIndex: number;
2192
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
2193
+ } | undefined;
2194
+ unshift?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2195
+ row: any;
2196
+ rowIndex: number;
2197
+ column: import("element-plus").TableColumnCtx<any>;
2198
+ columnIndex: number;
2199
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
2200
+ indexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2201
+ row: any;
2202
+ rowIndex: number;
2203
+ column: import("element-plus").TableColumnCtx<any>;
2204
+ columnIndex: number;
2205
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
2206
+ lastIndexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2207
+ row: any;
2208
+ rowIndex: number;
2209
+ column: import("element-plus").TableColumnCtx<any>;
2210
+ columnIndex: number;
2211
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
2212
+ every?: {
2213
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2214
+ row: any;
2215
+ rowIndex: number;
2216
+ column: import("element-plus").TableColumnCtx<any>;
2217
+ columnIndex: number;
2218
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2219
+ row: any;
2220
+ rowIndex: number;
2221
+ column: import("element-plus").TableColumnCtx<any>;
2222
+ columnIndex: number;
2223
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2224
+ row: any;
2225
+ rowIndex: number;
2226
+ column: import("element-plus").TableColumnCtx<any>;
2227
+ columnIndex: number;
2228
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): this is S[];
2229
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2230
+ row: any;
2231
+ rowIndex: number;
2232
+ column: import("element-plus").TableColumnCtx<any>;
2233
+ columnIndex: number;
2234
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2235
+ row: any;
2236
+ rowIndex: number;
2237
+ column: import("element-plus").TableColumnCtx<any>;
2238
+ columnIndex: number;
2239
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): boolean;
2240
+ } | undefined;
2241
+ some?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2242
+ row: any;
2243
+ rowIndex: number;
2244
+ column: import("element-plus").TableColumnCtx<any>;
2245
+ columnIndex: number;
2246
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2247
+ row: any;
2248
+ rowIndex: number;
2249
+ column: import("element-plus").TableColumnCtx<any>;
2250
+ columnIndex: number;
2251
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => boolean) | undefined;
2252
+ forEach?: ((callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2253
+ row: any;
2254
+ rowIndex: number;
2255
+ column: import("element-plus").TableColumnCtx<any>;
2256
+ columnIndex: number;
2257
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2258
+ row: any;
2259
+ rowIndex: number;
2260
+ column: import("element-plus").TableColumnCtx<any>;
2261
+ columnIndex: number;
2262
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => void, thisArg?: any) => void) | undefined;
2263
+ map?: (<U>(callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2264
+ row: any;
2265
+ rowIndex: number;
2266
+ column: import("element-plus").TableColumnCtx<any>;
2267
+ columnIndex: number;
2268
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2269
+ row: any;
2270
+ rowIndex: number;
2271
+ column: import("element-plus").TableColumnCtx<any>;
2272
+ columnIndex: number;
2273
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, thisArg?: any) => U[]) | undefined;
2274
+ filter?: {
2275
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2276
+ row: any;
2277
+ rowIndex: number;
2278
+ column: import("element-plus").TableColumnCtx<any>;
2279
+ columnIndex: number;
2280
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2281
+ row: any;
2282
+ rowIndex: number;
2283
+ column: import("element-plus").TableColumnCtx<any>;
2284
+ columnIndex: number;
2285
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2286
+ row: any;
2287
+ rowIndex: number;
2288
+ column: import("element-plus").TableColumnCtx<any>;
2289
+ columnIndex: number;
2290
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S[];
2291
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2292
+ row: any;
2293
+ rowIndex: number;
2294
+ column: import("element-plus").TableColumnCtx<any>;
2295
+ columnIndex: number;
2296
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2297
+ row: any;
2298
+ rowIndex: number;
2299
+ column: import("element-plus").TableColumnCtx<any>;
2300
+ columnIndex: number;
2301
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2302
+ row: any;
2303
+ rowIndex: number;
2304
+ column: import("element-plus").TableColumnCtx<any>;
2305
+ columnIndex: number;
2306
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
2307
+ } | undefined;
2308
+ reduce?: {
2309
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2310
+ row: any;
2311
+ rowIndex: number;
2312
+ column: import("element-plus").TableColumnCtx<any>;
2313
+ columnIndex: number;
2314
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2315
+ row: any;
2316
+ rowIndex: number;
2317
+ column: import("element-plus").TableColumnCtx<any>;
2318
+ columnIndex: number;
2319
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2320
+ row: any;
2321
+ rowIndex: number;
2322
+ column: import("element-plus").TableColumnCtx<any>;
2323
+ columnIndex: number;
2324
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2325
+ row: any;
2326
+ rowIndex: number;
2327
+ column: import("element-plus").TableColumnCtx<any>;
2328
+ columnIndex: number;
2329
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2330
+ row: any;
2331
+ rowIndex: number;
2332
+ column: import("element-plus").TableColumnCtx<any>;
2333
+ columnIndex: number;
2334
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
2335
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2336
+ row: any;
2337
+ rowIndex: number;
2338
+ column: import("element-plus").TableColumnCtx<any>;
2339
+ columnIndex: number;
2340
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2341
+ row: any;
2342
+ rowIndex: number;
2343
+ column: import("element-plus").TableColumnCtx<any>;
2344
+ columnIndex: number;
2345
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2346
+ row: any;
2347
+ rowIndex: number;
2348
+ column: import("element-plus").TableColumnCtx<any>;
2349
+ columnIndex: number;
2350
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2351
+ row: any;
2352
+ rowIndex: number;
2353
+ column: import("element-plus").TableColumnCtx<any>;
2354
+ columnIndex: number;
2355
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2356
+ row: any;
2357
+ rowIndex: number;
2358
+ column: import("element-plus").TableColumnCtx<any>;
2359
+ columnIndex: number;
2360
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2361
+ row: any;
2362
+ rowIndex: number;
2363
+ column: import("element-plus").TableColumnCtx<any>;
2364
+ columnIndex: number;
2365
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
2366
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2367
+ row: any;
2368
+ rowIndex: number;
2369
+ column: import("element-plus").TableColumnCtx<any>;
2370
+ columnIndex: number;
2371
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2372
+ row: any;
2373
+ rowIndex: number;
2374
+ column: import("element-plus").TableColumnCtx<any>;
2375
+ columnIndex: number;
2376
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
2377
+ } | undefined;
2378
+ reduceRight?: {
2379
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2380
+ row: any;
2381
+ rowIndex: number;
2382
+ column: import("element-plus").TableColumnCtx<any>;
2383
+ columnIndex: number;
2384
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2385
+ row: any;
2386
+ rowIndex: number;
2387
+ column: import("element-plus").TableColumnCtx<any>;
2388
+ columnIndex: number;
2389
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2390
+ row: any;
2391
+ rowIndex: number;
2392
+ column: import("element-plus").TableColumnCtx<any>;
2393
+ columnIndex: number;
2394
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2395
+ row: any;
2396
+ rowIndex: number;
2397
+ column: import("element-plus").TableColumnCtx<any>;
2398
+ columnIndex: number;
2399
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2400
+ row: any;
2401
+ rowIndex: number;
2402
+ column: import("element-plus").TableColumnCtx<any>;
2403
+ columnIndex: number;
2404
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
2405
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2406
+ row: any;
2407
+ rowIndex: number;
2408
+ column: import("element-plus").TableColumnCtx<any>;
2409
+ columnIndex: number;
2410
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2411
+ row: any;
2412
+ rowIndex: number;
2413
+ column: import("element-plus").TableColumnCtx<any>;
2414
+ columnIndex: number;
2415
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2416
+ row: any;
2417
+ rowIndex: number;
2418
+ column: import("element-plus").TableColumnCtx<any>;
2419
+ columnIndex: number;
2420
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2421
+ row: any;
2422
+ rowIndex: number;
2423
+ column: import("element-plus").TableColumnCtx<any>;
2424
+ columnIndex: number;
2425
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2426
+ row: any;
2427
+ rowIndex: number;
2428
+ column: import("element-plus").TableColumnCtx<any>;
2429
+ columnIndex: number;
2430
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2431
+ row: any;
2432
+ rowIndex: number;
2433
+ column: import("element-plus").TableColumnCtx<any>;
2434
+ columnIndex: number;
2435
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
2436
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2437
+ row: any;
2438
+ rowIndex: number;
2439
+ column: import("element-plus").TableColumnCtx<any>;
2440
+ columnIndex: number;
2441
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2442
+ row: any;
2443
+ rowIndex: number;
2444
+ column: import("element-plus").TableColumnCtx<any>;
2445
+ columnIndex: number;
2446
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
2447
+ } | undefined;
2448
+ find?: {
2449
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2450
+ row: any;
2451
+ rowIndex: number;
2452
+ column: import("element-plus").TableColumnCtx<any>;
2453
+ columnIndex: number;
2454
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2455
+ row: any;
2456
+ rowIndex: number;
2457
+ column: import("element-plus").TableColumnCtx<any>;
2458
+ columnIndex: number;
2459
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2460
+ row: any;
2461
+ rowIndex: number;
2462
+ column: import("element-plus").TableColumnCtx<any>;
2463
+ columnIndex: number;
2464
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
2465
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2466
+ row: any;
2467
+ rowIndex: number;
2468
+ column: import("element-plus").TableColumnCtx<any>;
2469
+ columnIndex: number;
2470
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2471
+ row: any;
2472
+ rowIndex: number;
2473
+ column: import("element-plus").TableColumnCtx<any>;
2474
+ columnIndex: number;
2475
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2476
+ row: any;
2477
+ rowIndex: number;
2478
+ column: import("element-plus").TableColumnCtx<any>;
2479
+ columnIndex: number;
2480
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
2481
+ } | undefined;
2482
+ findIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2483
+ row: any;
2484
+ rowIndex: number;
2485
+ column: import("element-plus").TableColumnCtx<any>;
2486
+ columnIndex: number;
2487
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2488
+ row: any;
2489
+ rowIndex: number;
2490
+ column: import("element-plus").TableColumnCtx<any>;
2491
+ columnIndex: number;
2492
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
2493
+ fill?: ((value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2494
+ row: any;
2495
+ rowIndex: number;
2496
+ column: import("element-plus").TableColumnCtx<any>;
2497
+ columnIndex: number;
2498
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2499
+ row: any;
2500
+ rowIndex: number;
2501
+ column: import("element-plus").TableColumnCtx<any>;
2502
+ columnIndex: number;
2503
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
2504
+ copyWithin?: ((target: number, start: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2505
+ row: any;
2506
+ rowIndex: number;
2507
+ column: import("element-plus").TableColumnCtx<any>;
2508
+ columnIndex: number;
2509
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
2510
+ entries?: (() => ArrayIterator<[number, ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2511
+ row: any;
2512
+ rowIndex: number;
2513
+ column: import("element-plus").TableColumnCtx<any>;
2514
+ columnIndex: number;
2515
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null]>) | undefined;
2516
+ keys?: (() => ArrayIterator<number>) | undefined;
2517
+ values?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2518
+ row: any;
2519
+ rowIndex: number;
2520
+ column: import("element-plus").TableColumnCtx<any>;
2521
+ columnIndex: number;
2522
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
2523
+ includes?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2524
+ row: any;
2525
+ rowIndex: number;
2526
+ column: import("element-plus").TableColumnCtx<any>;
2527
+ columnIndex: number;
2528
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => boolean) | undefined;
2529
+ flatMap?: (<U, This = undefined>(callback: (this: This, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2530
+ row: any;
2531
+ rowIndex: number;
2532
+ column: import("element-plus").TableColumnCtx<any>;
2533
+ columnIndex: number;
2534
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2535
+ row: any;
2536
+ rowIndex: number;
2537
+ column: import("element-plus").TableColumnCtx<any>;
2538
+ columnIndex: number;
2539
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
2540
+ flat?: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | undefined;
2541
+ at?: ((index: number) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2542
+ row: any;
2543
+ rowIndex: number;
2544
+ column: import("element-plus").TableColumnCtx<any>;
2545
+ columnIndex: number;
2546
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
2547
+ findLast?: {
2548
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2549
+ row: any;
2550
+ rowIndex: number;
2551
+ column: import("element-plus").TableColumnCtx<any>;
2552
+ columnIndex: number;
2553
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2554
+ row: any;
2555
+ rowIndex: number;
2556
+ column: import("element-plus").TableColumnCtx<any>;
2557
+ columnIndex: number;
2558
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2559
+ row: any;
2560
+ rowIndex: number;
2561
+ column: import("element-plus").TableColumnCtx<any>;
2562
+ columnIndex: number;
2563
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
2564
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2565
+ row: any;
2566
+ rowIndex: number;
2567
+ column: import("element-plus").TableColumnCtx<any>;
2568
+ columnIndex: number;
2569
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2570
+ row: any;
2571
+ rowIndex: number;
2572
+ column: import("element-plus").TableColumnCtx<any>;
2573
+ columnIndex: number;
2574
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2575
+ row: any;
2576
+ rowIndex: number;
2577
+ column: import("element-plus").TableColumnCtx<any>;
2578
+ columnIndex: number;
2579
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
2580
+ } | undefined;
2581
+ findLastIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2582
+ row: any;
2583
+ rowIndex: number;
2584
+ column: import("element-plus").TableColumnCtx<any>;
2585
+ columnIndex: number;
2586
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2587
+ row: any;
2588
+ rowIndex: number;
2589
+ column: import("element-plus").TableColumnCtx<any>;
2590
+ columnIndex: number;
2591
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
2592
+ toReversed?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2593
+ row: any;
2594
+ rowIndex: number;
2595
+ column: import("element-plus").TableColumnCtx<any>;
2596
+ columnIndex: number;
2597
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
2598
+ toSorted?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2599
+ row: any;
2600
+ rowIndex: number;
2601
+ column: import("element-plus").TableColumnCtx<any>;
2602
+ columnIndex: number;
2603
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2604
+ row: any;
2605
+ rowIndex: number;
2606
+ column: import("element-plus").TableColumnCtx<any>;
2607
+ columnIndex: number;
2608
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2609
+ row: any;
2610
+ rowIndex: number;
2611
+ column: import("element-plus").TableColumnCtx<any>;
2612
+ columnIndex: number;
2613
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
2614
+ toSpliced?: {
2615
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2616
+ row: any;
2617
+ rowIndex: number;
2618
+ column: import("element-plus").TableColumnCtx<any>;
2619
+ columnIndex: number;
2620
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2621
+ row: any;
2622
+ rowIndex: number;
2623
+ column: import("element-plus").TableColumnCtx<any>;
2624
+ columnIndex: number;
2625
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
2626
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2627
+ row: any;
2628
+ rowIndex: number;
2629
+ column: import("element-plus").TableColumnCtx<any>;
2630
+ columnIndex: number;
2631
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
2632
+ } | undefined;
2633
+ with?: ((index: number, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2634
+ row: any;
2635
+ rowIndex: number;
2636
+ column: import("element-plus").TableColumnCtx<any>;
2637
+ columnIndex: number;
2638
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2639
+ row: any;
2640
+ rowIndex: number;
2641
+ column: import("element-plus").TableColumnCtx<any>;
2642
+ columnIndex: number;
2643
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
2644
+ [Symbol.iterator]?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
2645
+ row: any;
2646
+ rowIndex: number;
2647
+ column: import("element-plus").TableColumnCtx<any>;
2648
+ columnIndex: number;
2649
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
2650
+ [Symbol.unscopables]?: {
2651
+ [x: number]: boolean | undefined;
2652
+ length?: boolean | undefined;
2653
+ toString?: boolean | undefined;
2654
+ toLocaleString?: boolean | undefined;
2655
+ pop?: boolean | undefined;
2656
+ push?: boolean | undefined;
2657
+ concat?: boolean | undefined;
2658
+ join?: boolean | undefined;
2659
+ reverse?: boolean | undefined;
2660
+ shift?: boolean | undefined;
2661
+ slice?: boolean | undefined;
2662
+ sort?: boolean | undefined;
2663
+ splice?: boolean | undefined;
2664
+ unshift?: boolean | undefined;
2665
+ indexOf?: boolean | undefined;
2666
+ lastIndexOf?: boolean | undefined;
2667
+ every?: boolean | undefined;
2668
+ some?: boolean | undefined;
2669
+ forEach?: boolean | undefined;
2670
+ map?: boolean | undefined;
2671
+ filter?: boolean | undefined;
2672
+ reduce?: boolean | undefined;
2673
+ reduceRight?: boolean | undefined;
2674
+ find?: boolean | undefined;
2675
+ findIndex?: boolean | undefined;
2676
+ fill?: boolean | undefined;
2677
+ copyWithin?: boolean | undefined;
2678
+ entries?: boolean | undefined;
2679
+ keys?: boolean | undefined;
2680
+ values?: boolean | undefined;
2681
+ includes?: boolean | undefined;
2682
+ flatMap?: boolean | undefined;
2683
+ flat?: boolean | undefined;
2684
+ at?: boolean | undefined;
2685
+ findLast?: boolean | undefined;
2686
+ findLastIndex?: boolean | undefined;
2687
+ toReversed?: boolean | undefined;
2688
+ toSorted?: boolean | undefined;
2689
+ toSpliced?: boolean | undefined;
2690
+ with?: boolean | undefined;
2691
+ [Symbol.iterator]?: boolean | undefined;
2692
+ readonly [Symbol.unscopables]?: boolean | undefined;
2693
+ } | undefined;
2694
+ };
2695
+ data: {
2696
+ type: import("vue").PropType<any[]>;
2697
+ default: () => never[];
2698
+ };
2699
+ width: (NumberConstructor | StringConstructor)[];
2700
+ height: (NumberConstructor | StringConstructor)[];
2701
+ maxHeight: (NumberConstructor | StringConstructor)[];
2702
+ fit: {
2703
+ type: BooleanConstructor;
2704
+ default: boolean;
2705
+ };
2706
+ stripe: BooleanConstructor;
2707
+ rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
2708
+ showHeader: {
2709
+ type: BooleanConstructor;
2710
+ default: boolean;
2711
+ };
2712
+ showSummary: BooleanConstructor;
2713
+ sumText: StringConstructor;
2714
+ summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
2715
+ rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
2716
+ rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
2717
+ cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
2718
+ cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
2719
+ headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
2720
+ headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
2721
+ headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
2722
+ highlightCurrentRow: BooleanConstructor;
2723
+ currentRowKey: (NumberConstructor | StringConstructor)[];
2724
+ emptyText: StringConstructor;
2725
+ expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
2726
+ defaultExpandAll: BooleanConstructor;
2727
+ defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
2728
+ tooltipEffect: StringConstructor;
2729
+ tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
2730
+ spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
2731
+ selectOnIndeterminate: {
2732
+ type: BooleanConstructor;
2733
+ default: boolean;
2734
+ };
2735
+ indent: {
2736
+ type: NumberConstructor;
2737
+ default: number;
2738
+ };
2739
+ treeProps: {
2740
+ type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
2741
+ default: () => {
2742
+ hasChildren: string;
2743
+ children: string;
2744
+ checkStrictly: boolean;
2745
+ };
2746
+ };
2747
+ lazy: BooleanConstructor;
2748
+ load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
2749
+ style: {
2750
+ type: import("vue").PropType<import("element-plus").TableProps<any>["style"]>;
2751
+ default: () => {};
2752
+ };
2753
+ className: {
2754
+ type: StringConstructor;
2755
+ default: string;
2756
+ };
2757
+ tableLayout: {
2758
+ type: import("vue").PropType<"fixed" | "auto">;
2759
+ default: string;
2760
+ };
2761
+ scrollbarAlwaysOn: BooleanConstructor;
2762
+ flexible: BooleanConstructor;
2763
+ showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
2764
+ tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
2765
+ appendFilterPanelTo: StringConstructor;
2766
+ scrollbarTabindex: {
2767
+ type: (NumberConstructor | StringConstructor)[];
2768
+ default: undefined;
2769
+ };
2770
+ allowDragLastColumn: {
2771
+ type: BooleanConstructor;
2772
+ default: boolean;
2773
+ };
2774
+ preserveExpandedContent: BooleanConstructor;
2775
+ nativeScrollbar: BooleanConstructor;
2776
+ }>> & Readonly<{
2777
+ "onCurrent-change"?: ((...args: any[]) => any) | undefined;
2778
+ onSelect?: ((...args: any[]) => any) | undefined;
2779
+ onScroll?: ((...args: any[]) => any) | undefined;
2780
+ "onSelect-all"?: ((...args: any[]) => any) | undefined;
2781
+ "onExpand-change"?: ((...args: any[]) => any) | undefined;
2782
+ "onHeader-click"?: ((...args: any[]) => any) | undefined;
2783
+ "onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
2784
+ "onHeader-dragend"?: ((...args: any[]) => any) | undefined;
2785
+ "onSelection-change"?: ((...args: any[]) => any) | undefined;
2786
+ "onSort-change"?: ((...args: any[]) => any) | undefined;
2787
+ "onFilter-change"?: ((...args: any[]) => any) | undefined;
2788
+ "onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
2789
+ "onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
2790
+ "onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
2791
+ "onCell-click"?: ((...args: any[]) => any) | undefined;
2792
+ "onCell-dblclick"?: ((...args: any[]) => any) | undefined;
2793
+ "onRow-click"?: ((...args: any[]) => any) | undefined;
2794
+ "onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
2795
+ "onRow-dblclick"?: ((...args: any[]) => any) | undefined;
2796
+ }>, {
2797
+ elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
2798
+ elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
2799
+ validate: () => import("element-plus").FormValidationResult;
2800
+ resetFields: (props: import("element-plus").FormItemProp) => void;
2801
+ clearValidate: (props: import("element-plus").FormItemProp) => void;
2802
+ search: import("./src/use-table.jsx").ISearch;
2803
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2804
+ "current-change": (...args: any[]) => void;
2805
+ select: (...args: any[]) => void;
2806
+ scroll: (...args: any[]) => void;
2807
+ "select-all": (...args: any[]) => void;
2808
+ "expand-change": (...args: any[]) => void;
2809
+ "header-click": (...args: any[]) => void;
2810
+ "header-contextmenu": (...args: any[]) => void;
2811
+ "header-dragend": (...args: any[]) => void;
2812
+ "selection-change": (...args: any[]) => void;
2813
+ "sort-change": (...args: any[]) => void;
2814
+ "filter-change": (...args: any[]) => void;
2815
+ "cell-mouse-enter": (...args: any[]) => void;
2816
+ "cell-mouse-leave": (...args: any[]) => void;
2817
+ "cell-contextmenu": (...args: any[]) => void;
2818
+ "cell-click": (...args: any[]) => void;
2819
+ "cell-dblclick": (...args: any[]) => void;
2820
+ "row-click": (...args: any[]) => void;
2821
+ "row-contextmenu": (...args: any[]) => void;
2822
+ "row-dblclick": (...args: any[]) => void;
2823
+ }, string, {
2824
+ style: import("vue").StyleValue;
2825
+ headerCellStyle: import("element-plus").CellStyle<any> | undefined;
2826
+ disabled: boolean;
2827
+ className: string;
2828
+ size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
2829
+ columns: Partial<import("element-plus").TableColumnCtx & {
2830
+ [key: string]: any;
2831
+ required: boolean | (() => boolean);
2832
+ cellRequired: (scope: import("./src/table").TableScope) => boolean;
2833
+ headerRender: import("element-plus").TableColumnCtx["renderHeader"];
2834
+ disabled: boolean | ((scope: import("./src/table").TableScope) => boolean);
2835
+ props: Record<string, any>;
2836
+ filter: boolean;
2837
+ } & {} & {
2838
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
2839
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
2840
+ }>[];
2841
+ showSelectionCol: boolean;
2842
+ showIndexCol: boolean;
2843
+ align: "right" | "left" | "center";
2844
+ reserveSelection: boolean;
2845
+ paginationProps: Partial<{
2846
+ readonly small: boolean;
2847
+ readonly disabled: boolean;
2848
+ readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
2849
+ readonly popperClass: string;
2850
+ readonly pagerCount: number;
2851
+ readonly layout: string;
2852
+ readonly pageSizes: number[];
2853
+ readonly prevText: string;
2854
+ readonly nextText: string;
2855
+ readonly background: boolean;
2856
+ readonly hideOnSinglePage: boolean;
2857
+ } & {
2858
+ readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
2859
+ readonly pageSize?: number | undefined;
2860
+ readonly defaultPageSize?: number | undefined;
2861
+ readonly total?: number | undefined;
2862
+ readonly pageCount?: number | undefined;
2863
+ readonly currentPage?: number | undefined;
2864
+ readonly defaultCurrentPage?: number | undefined;
2865
+ readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2866
+ readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2867
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
2868
+ readonly appendSizeTo?: string | undefined;
2869
+ } & import("packages/utils/type.js").WithOnPrefixAndCamelCase<{
2870
+ 'update:current-page': (val: number) => boolean;
2871
+ 'update:page-size': (val: number) => boolean;
2872
+ 'size-change': (val: number) => boolean;
2873
+ change: (currentPage: number, pageSize: number) => boolean;
2874
+ 'current-change': (val: number) => boolean;
2875
+ 'prev-click': (val: number) => boolean;
2876
+ 'next-click': (val: number) => boolean;
2877
+ }>>;
2878
+ showPagination: boolean;
2879
+ isFrontPage: boolean;
2880
+ actionButtons: Partial<{
2881
+ readonly link: boolean;
2882
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
2883
+ readonly disabled: boolean;
2884
+ readonly dark: boolean;
2885
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
2886
+ readonly loading: boolean;
2887
+ readonly bg: boolean;
2888
+ readonly autofocus: boolean;
2889
+ readonly circle: boolean;
2890
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
2891
+ } & {
2892
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
2893
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2894
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2895
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
2896
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
2897
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
2898
+ readonly color?: string | undefined;
2899
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
2900
+ } & {
2901
+ name: string;
2902
+ prop: string;
2903
+ permission: string;
2904
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
2905
+ scopedSlots: Record<string, () => import("vue").VNode>;
2906
+ confirm: boolean;
2907
+ confirmText: string;
2908
+ } & {} & {
2909
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
2910
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
2911
+ }>[];
2912
+ linkProps: Partial<{
2913
+ readonly link: boolean;
2914
+ readonly type: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
2915
+ readonly disabled: boolean;
2916
+ readonly dark: boolean;
2917
+ readonly nativeType: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
2918
+ readonly loading: boolean;
2919
+ readonly bg: boolean;
2920
+ readonly autofocus: boolean;
2921
+ readonly circle: boolean;
2922
+ readonly tag: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
2923
+ } & {
2924
+ readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
2925
+ readonly icon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2926
+ readonly loadingIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2927
+ readonly plain?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
2928
+ readonly text?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
2929
+ readonly round?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
2930
+ readonly color?: string | undefined;
2931
+ readonly autoInsertSpace?: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
2932
+ } & {
2933
+ name: string;
2934
+ prop: string;
2935
+ permission: string;
2936
+ onClick: (e: MouseEvent | import("./src/table").TableScope) => void;
2937
+ scopedSlots: Record<string, () => import("vue").VNode>;
2938
+ confirm: boolean;
2939
+ confirmText: string;
2940
+ } & {} & {
2941
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
2942
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
2943
+ }>[];
2944
+ border: boolean;
2945
+ data: any[];
2946
+ fit: boolean;
2947
+ stripe: boolean;
2948
+ showHeader: boolean;
2949
+ showSummary: boolean;
2950
+ highlightCurrentRow: boolean;
2951
+ defaultExpandAll: boolean;
2952
+ selectOnIndeterminate: boolean;
2953
+ indent: number;
2954
+ treeProps: import("element-plus/es/components/table/src/table/defaults.js").TreeProps | undefined;
2955
+ lazy: boolean;
2956
+ tableLayout: "fixed" | "auto";
2957
+ scrollbarAlwaysOn: boolean;
2958
+ flexible: boolean;
2959
+ scrollbarTabindex: string | number;
2960
+ allowDragLastColumn: boolean;
2961
+ preserveExpandedContent: boolean;
2962
+ nativeScrollbar: boolean;
2963
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2964
+ $slots: {
2965
+ [x: string]: ((props: any) => any) | undefined;
2966
+ };
2967
+ }) & import("vue").Plugin;
2968
+ export default _default;
2969
+ export * from './src/table';
2970
+ export type TableInstance = InstanceType<typeof Table>;
2971
+ declare module 'vue' {
2972
+ interface GlobalComponents {
2973
+ EpTable: typeof Table;
2974
+ }
2975
+ }