@qqt-product/system 0.0.1 → 0.0.16

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 (105) hide show
  1. package/dist/index.es.js +53240 -10634
  2. package/dist/index.umd.js +94 -21
  3. package/dist/lib/components/QAccountList/src/QAccountCreate.vue.d.ts +2878 -0
  4. package/dist/lib/components/QAccountList/src/QAccountDetail.vue.d.ts +2871 -0
  5. package/dist/lib/components/QAccountList/src/QAccountEdit.vue.d.ts +2878 -0
  6. package/dist/lib/components/QAccountList/src/QAccountList.vue.d.ts +23 -4
  7. package/dist/lib/components/QBackgroundFileTaskList/src/QBackgroundFileTaskList.vue.d.ts +9 -4
  8. package/dist/lib/components/QElsEmailSendLogList/src/QElsEmailSendLogList.vue.d.ts +9 -4
  9. package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordDetail.vue.d.ts +2864 -0
  10. package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordList.vue.d.ts +2 -3
  11. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsDetail.vue.d.ts +2864 -0
  12. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue.d.ts +2876 -0
  13. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsList.vue.d.ts +29 -14
  14. package/dist/lib/components/QI18nList/src/QI18nList.vue.d.ts +2 -6
  15. package/dist/lib/components/QImChatGroupList/src/QImChatGroupList.vue.d.ts +5 -8
  16. package/dist/lib/components/QMqRecordList/src/QMqRecordList.vue.d.ts +9 -4
  17. package/dist/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue.d.ts +2872 -0
  18. package/dist/lib/components/QPermissionDataList/src/QPermissionDataList.vue.d.ts +126 -0
  19. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue.d.ts +2864 -0
  20. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue.d.ts +2887 -0
  21. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeList.vue.d.ts +25 -5
  22. package/dist/lib/components/QPurchaseNoticeList/src/use-field-select-modal-hook.d.ts +7 -0
  23. package/dist/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateList.vue.d.ts +221 -28
  24. package/dist/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateModal.vue.d.ts +45 -0
  25. package/dist/lib/components/QQuartzJobList/src/QQuartzJobList.vue.d.ts +24 -5
  26. package/dist/lib/components/QRoleList/src/QRoleList.vue.d.ts +23 -7
  27. package/dist/lib/components/QRoleList/src/useConfigData.d.ts +1 -11
  28. package/dist/lib/components/QSupplierAccountList/src/QSupplierAccountList.vue.d.ts +7 -3
  29. package/dist/lib/components/QUsageList/src/QUsageList.vue.d.ts +15 -35
  30. package/dist/lib/components/QUsageList/src/useConfigData.d.ts +111 -10
  31. package/dist/lib/components/QcustomConfigEdit/component/AddDictCodeModal.vue.d.ts +25 -0
  32. package/dist/lib/components/QcustomConfigEdit/component/regexComponent.d.ts +9 -10
  33. package/dist/lib/components/QcustomConfigEdit/src/QcustomConfigEdit.vue.d.ts +1209 -0
  34. package/dist/lib/components/QcustomConfigEdit/src/useConfigData.d.ts +1 -1
  35. package/dist/lib/components/QcustomConfigList/src/QcustomConfigList.vue.d.ts +8 -7
  36. package/dist/lib/components/QsysConfigList/src/QsysConfigList.vue.d.ts +2 -3
  37. package/dist/lib/components/index.d.ts +2 -2
  38. package/dist/lib/components/integratedNodesList/src/QIntegratedNodesDetail.vue.d.ts +2863 -0
  39. package/dist/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue.d.ts +2872 -0
  40. package/dist/lib/components/integratedNodesList/src/index.vue.d.ts +8 -11
  41. package/dist/lib/components/integratedReportSearchList/src/index.vue.d.ts +16 -10
  42. package/dist/lib/components/loginAbnormalLogList/src/index.vue.d.ts +2 -9
  43. package/dist/lib/components/loginLogList/src/index.vue.d.ts +2 -8
  44. package/dist/lib/components/loginSupplierLogList/src/index.vue.d.ts +2 -12
  45. package/dist/lib/components/operateLogList/src/index.vue.d.ts +2 -13
  46. package/dist/style.css +1 -1
  47. package/dist/vite-env.d.ts +13 -13
  48. package/package.json +13 -11
  49. package/src/lib/components/QAccountList/src/QAccountCreate.vue +272 -0
  50. package/src/lib/components/QAccountList/src/QAccountDetail.vue +82 -14
  51. package/src/lib/components/QAccountList/src/QAccountEdit.vue +65 -33
  52. package/src/lib/components/QAccountList/src/QAccountList.vue +532 -530
  53. package/src/lib/components/QBackgroundFileTaskList/src/QBackgroundFileTaskList.vue +143 -137
  54. package/src/lib/components/QElsEmailSendLogList/src/QElsEmailSendLogList.vue +172 -166
  55. package/src/lib/components/QElsMsgRecordList/src/QElsMsgRecordList.vue +123 -124
  56. package/src/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue +66 -18
  57. package/src/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsList.vue +151 -122
  58. package/src/lib/components/QI18nList/src/QI18nList.vue +365 -361
  59. package/src/lib/components/QImChatGroupList/src/QImChatGroupList.vue +103 -94
  60. package/src/lib/components/QMqRecordList/src/QMqRecordList.vue +109 -105
  61. package/src/lib/components/QPermissionDataList/src/QPermissionDataAuth.vue +3 -3
  62. package/src/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue +218 -221
  63. package/src/lib/components/QPermissionDataList/src/QPermissionDataList.vue +110 -117
  64. package/src/lib/components/QPermissionDataList/src/form.vue +109 -109
  65. package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue +1 -1
  66. package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue +120 -32
  67. package/src/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeList.vue +189 -163
  68. package/src/lib/components/QPurchaseNoticeList/src/use-field-select-modal-hook.ts +84 -0
  69. package/src/lib/components/QPurchaseNoticeList/src/useConfigData.ts +22 -22
  70. package/src/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateList.vue +134 -85
  71. package/src/lib/components/QPurchaseNoticeTemplateList/src/QPurchaseNoticeTemplateModal.vue +91 -0
  72. package/src/lib/components/QQuartzJobList/src/QQuartzJobList.vue +276 -263
  73. package/src/lib/components/QRoleList/src/QRoleList.vue +332 -288
  74. package/src/lib/components/QRoleList/src/useConfigData.ts +1 -6
  75. package/src/lib/components/QSupplierAccountList/src/QSupplierAccountList.vue +304 -302
  76. package/src/lib/components/QUsageList/src/QUsageList.vue +287 -82
  77. package/src/lib/components/QUsageList/src/useConfigData.ts +147 -13
  78. package/src/lib/components/QcustomConfigEdit/component/AddDictCodeModal.vue +140 -140
  79. package/src/lib/components/QcustomConfigEdit/component/regexComponent.tsx +28 -28
  80. package/src/lib/components/QcustomConfigEdit/src/QcustomConfigEdit.vue +130 -42
  81. package/src/lib/components/QcustomConfigEdit/src/QcustomConfigRender.tsx +2 -2
  82. package/src/lib/components/QcustomConfigEdit/src/useConfigData.ts +2 -2
  83. package/src/lib/components/QcustomConfigEdit/src/useConstant.ts +12 -12
  84. package/src/lib/components/QcustomConfigList/src/QcustomConfigList.vue +276 -268
  85. package/src/lib/components/QcustomConfigList/src/useConfigData.ts +1 -1
  86. package/src/lib/components/QsysConfigList/src/QsysConfigList.vue +124 -125
  87. package/src/lib/components/index.ts +78 -78
  88. package/src/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue +2 -10
  89. package/src/lib/components/integratedNodesList/src/index.vue +130 -136
  90. package/src/lib/components/integratedReportList/src/index.vue +55 -30
  91. package/src/lib/components/integratedReportSearchList/src/index.vue +106 -66
  92. package/src/lib/components/loginAbnormalLogList/src/index.vue +43 -50
  93. package/src/lib/components/loginLogList/src/index.vue +51 -57
  94. package/src/lib/components/loginSupplierLogList/src/index.vue +53 -63
  95. package/src/lib/components/operateLogList/src/index.vue +46 -57
  96. package/src/vite-env.d.ts +13 -13
  97. package/tsconfig.json +24 -24
  98. package/vite.config.ts +1 -1
  99. package/dist/lib/components/QCompanyermissionList/src/form.vue.d.ts +0 -80
  100. package/dist/lib/components/QCompanyermissionList/src/types.d.ts +0 -44
  101. package/dist/lib/components/integratedReportList/src/index.vue.d.ts +0 -70
  102. package/src/lib/components/QCompanyermissionList/src/editTree.vue +0 -291
  103. package/src/lib/components/QCompanyermissionList/src/form.vue +0 -238
  104. package/src/lib/components/QCompanyermissionList/src/index.vue +0 -309
  105. package/src/lib/components/QCompanyermissionList/src/types.ts +0 -44
@@ -0,0 +1,2878 @@
1
+ import type { SizeType, VxeTableDataRow, VxePagerPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
2
+ import type { DefineComponent, ShallowRef, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
3
+ import type { GlobalPageLayoutTypes } from '@qqt-product/ui';
4
+ import * as customConfigEdits from '../../../utils/global.types';
5
+ declare const _sfc_main: DefineComponent<{
6
+ currentRow: {
7
+ type: null;
8
+ required: true;
9
+ };
10
+ userInfo: {
11
+ type: null;
12
+ required: true;
13
+ };
14
+ }, {
15
+ props: any;
16
+ qHttp: customConfigEdits.HttpClient;
17
+ showEdit: ShallowRef<boolean>;
18
+ currentRow: any;
19
+ layoutRef: Ref<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null>;
20
+ roleOptains: Ref<never[]>;
21
+ groupOptains: Ref<never[]>;
22
+ options: {
23
+ businessType?: string | undefined;
24
+ currentRow?: {
25
+ [x: string]: unknown;
26
+ templateNumber: string;
27
+ templateVersion: number;
28
+ templateAccount: string;
29
+ busAccount: string;
30
+ elsAccount: string;
31
+ } | undefined;
32
+ userInfo?: {
33
+ [x: string]: unknown;
34
+ elsAccount: string;
35
+ subAccount: string;
36
+ serivceUrl: string;
37
+ } | undefined;
38
+ isDetail?: boolean | undefined;
39
+ role?: GlobalPageLayoutTypes.Role | undefined;
40
+ refreshMethods?: ((row?: GlobalPageLayoutTypes.CurrentRow | undefined) => void) | undefined;
41
+ token?: string | undefined;
42
+ pattern?: GlobalPageLayoutTypes.Pattern | undefined;
43
+ localConfig?: {
44
+ editLayout?: string | undefined;
45
+ tempRole?: string | undefined;
46
+ examineLayout?: string | undefined;
47
+ groups?: {
48
+ groupName: string;
49
+ groupNameI18nKey?: string | undefined;
50
+ groupCode: string;
51
+ groupType: GlobalPageLayoutTypes.GroupType;
52
+ sortOrder?: string | undefined;
53
+ buttons?: {
54
+ title: string;
55
+ key: string | symbol;
56
+ args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
57
+ [x: string]: unknown;
58
+ url: string;
59
+ };
60
+ authorityCode?: string | undefined;
61
+ attrs?: GlobalPageLayoutTypes.RecordStringNumber | undefined;
62
+ icon?: {
63
+ type: string;
64
+ size: number;
65
+ color?: string | undefined;
66
+ } | undefined;
67
+ emit?: boolean | undefined;
68
+ emitKey?: string | undefined;
69
+ showMessage?: boolean | undefined;
70
+ checkBefore?: boolean | undefined;
71
+ confirm?: {
72
+ title: string;
73
+ content: string;
74
+ } | undefined;
75
+ isExistFrozenSource?: boolean | undefined;
76
+ isExistFrozenSourceUrl?: string | undefined;
77
+ isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordStringNumber) => GlobalPageLayoutTypes.RecordStringNumber) | undefined;
78
+ disabled?: ((pageData: GlobalPageLayoutTypes.RecordStringNumber) => boolean) | undefined;
79
+ handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
80
+ handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
81
+ callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
82
+ }[] | undefined;
83
+ extend?: {
84
+ [x: string]: unknown;
85
+ [x: number]: unknown;
86
+ vxeGridConfig?: {
87
+ size?: SizeType | undefined;
88
+ loading?: boolean | undefined;
89
+ round?: boolean | undefined;
90
+ id?: string | undefined;
91
+ data?: VxeTableDataRow[] | undefined;
92
+ params?: any;
93
+ pagerConfig?: {
94
+ enabled?: boolean | undefined;
95
+ slots?: any;
96
+ size?: SizeType | undefined;
97
+ layouts?: ("PrevJump" | "PrevPage" | "Number" | "JumpNumber" | "NextPage" | "NextJump" | "Sizes" | "Jump" | "FullJump" | "PageCount" | "Total")[] | undefined;
98
+ currentPage?: number | undefined;
99
+ loading?: boolean | undefined;
100
+ pageSize?: number | undefined;
101
+ total?: number | undefined;
102
+ pagerCount?: number | undefined;
103
+ pageSizes?: (number | {
104
+ label?: string | number | undefined;
105
+ value?: string | number | undefined;
106
+ })[] | undefined;
107
+ align?: string | undefined;
108
+ border?: boolean | undefined;
109
+ background?: boolean | undefined;
110
+ perfect?: boolean | undefined;
111
+ autoHidden?: boolean | undefined;
112
+ transfer?: boolean | undefined;
113
+ className?: VxePagerPropTypes.ClassName | undefined;
114
+ iconPrevPage?: string | undefined;
115
+ iconJumpPrev?: string | undefined;
116
+ iconJumpNext?: string | undefined;
117
+ iconNextPage?: string | undefined;
118
+ iconJumpMore?: string | undefined;
119
+ } | undefined;
120
+ columns?: {
121
+ children?: any[] | undefined;
122
+ slots?: {
123
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
124
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
125
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
126
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
127
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
128
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
129
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
130
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
131
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
132
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
133
+ } | undefined;
134
+ colId?: VxeColumnPropTypes.ColId | undefined;
135
+ type?: VxeColumnPropTypes.Type | undefined;
136
+ field?: string | undefined;
137
+ title?: string | undefined;
138
+ width?: VxeColumnPropTypes.Width | undefined;
139
+ minWidth?: VxeColumnPropTypes.MinWidth | undefined;
140
+ maxWidth?: VxeColumnPropTypes.MaxWidth | undefined;
141
+ resizable?: boolean | undefined;
142
+ fixed?: VxeColumnPropTypes.Fixed | undefined;
143
+ align?: VxeColumnPropTypes.Align | undefined;
144
+ headerAlign?: VxeColumnPropTypes.Align | undefined;
145
+ footerAlign?: VxeColumnPropTypes.Align | undefined;
146
+ showOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
147
+ showHeaderOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
148
+ showFooterOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
149
+ className?: VxeColumnPropTypes.ClassName<VxeTableDataRow> | undefined;
150
+ headerClassName?: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow> | undefined;
151
+ footerClassName?: VxeColumnPropTypes.FooterClassName<VxeTableDataRow> | undefined;
152
+ formatter?: VxeColumnPropTypes.Formatter<VxeTableDataRow> | undefined;
153
+ sortable?: boolean | undefined;
154
+ sortBy?: VxeColumnPropTypes.SortBy<VxeTableDataRow> | undefined;
155
+ sortType?: VxeColumnPropTypes.SortType | undefined;
156
+ filters?: {
157
+ label?: string | number | undefined;
158
+ value?: any;
159
+ data?: any;
160
+ resetValue?: any;
161
+ checked?: boolean | undefined;
162
+ }[] | undefined;
163
+ filterMultiple?: boolean | undefined;
164
+ filterMethod?: VxeColumnPropTypes.FilterMethod<VxeTableDataRow> | undefined;
165
+ filterRender?: {
166
+ options?: any[] | undefined;
167
+ optionProps?: {
168
+ value?: string | undefined;
169
+ label?: string | undefined;
170
+ key?: string | undefined;
171
+ } | undefined;
172
+ optionGroups?: any[] | undefined;
173
+ optionGroupProps?: {
174
+ options?: string | undefined;
175
+ label?: string | undefined;
176
+ key?: string | undefined;
177
+ } | undefined;
178
+ content?: string | undefined;
179
+ name?: string | undefined;
180
+ props?: {
181
+ [key: string]: any;
182
+ } | undefined;
183
+ attrs?: {
184
+ [key: string]: any;
185
+ } | undefined;
186
+ events?: {
187
+ [key: string]: (...args: any[]) => any;
188
+ } | undefined;
189
+ children?: any[] | undefined;
190
+ cellType?: "string" | "number" | undefined;
191
+ } | undefined;
192
+ treeNode?: boolean | undefined;
193
+ visible?: boolean | undefined;
194
+ exportMethod?: VxeColumnPropTypes.ExportMethod<VxeTableDataRow> | undefined;
195
+ footerExportMethod?: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow> | undefined;
196
+ titleHelp?: {
197
+ useHTML?: boolean | undefined;
198
+ content?: VxeTooltipPropTypes.Content | undefined;
199
+ enterable?: boolean | undefined;
200
+ theme?: string | undefined;
201
+ icon?: string | undefined;
202
+ message?: string | undefined;
203
+ } | undefined;
204
+ titlePrefix?: {
205
+ useHTML?: boolean | undefined;
206
+ content?: VxeTooltipPropTypes.Content | undefined;
207
+ enterable?: boolean | undefined;
208
+ theme?: string | undefined;
209
+ icon?: string | undefined;
210
+ message?: string | undefined;
211
+ } | undefined;
212
+ cellType?: VxeColumnPropTypes.CellType | undefined;
213
+ cellRender?: {
214
+ events?: {
215
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
216
+ } | undefined;
217
+ options?: any[] | undefined;
218
+ optionProps?: {
219
+ value?: string | undefined;
220
+ label?: string | undefined;
221
+ key?: string | undefined;
222
+ } | undefined;
223
+ optionGroups?: any[] | undefined;
224
+ optionGroupProps?: {
225
+ options?: string | undefined;
226
+ label?: string | undefined;
227
+ key?: string | undefined;
228
+ } | undefined;
229
+ content?: string | undefined;
230
+ name?: string | undefined;
231
+ props?: {
232
+ [key: string]: any;
233
+ } | undefined;
234
+ attrs?: {
235
+ [key: string]: any;
236
+ } | undefined;
237
+ children?: any[] | undefined;
238
+ cellType?: "string" | "number" | undefined;
239
+ } | undefined;
240
+ editRender?: {
241
+ events?: {
242
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
243
+ } | undefined;
244
+ enabled?: boolean | undefined;
245
+ options?: any[] | undefined;
246
+ optionProps?: {
247
+ value?: string | undefined;
248
+ label?: string | undefined;
249
+ key?: string | undefined;
250
+ } | undefined;
251
+ optionGroups?: any[] | undefined;
252
+ optionGroupProps?: {
253
+ options?: string | undefined;
254
+ label?: string | undefined;
255
+ key?: string | undefined;
256
+ } | undefined;
257
+ autofocus?: string | undefined;
258
+ autoselect?: boolean | undefined;
259
+ defaultValue?: string | number | object | any[] | ((params: {
260
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
261
+ }) => any) | {
262
+ exec: (string: string) => RegExpExecArray | null;
263
+ test: (string: string) => boolean;
264
+ readonly source: string;
265
+ readonly global: boolean;
266
+ readonly ignoreCase: boolean;
267
+ readonly multiline: boolean;
268
+ lastIndex: number;
269
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
270
+ readonly flags: string;
271
+ readonly sticky: boolean;
272
+ readonly unicode: boolean;
273
+ readonly dotAll: boolean;
274
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
275
+ [Symbol.replace]: {
276
+ (string: string, replaceValue: string): string;
277
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
278
+ };
279
+ [Symbol.search]: (string: string) => number;
280
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
281
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
282
+ } | {
283
+ toString: () => string;
284
+ toDateString: () => string;
285
+ toTimeString: () => string;
286
+ toLocaleString: {
287
+ (): string;
288
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
289
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
290
+ };
291
+ toLocaleDateString: {
292
+ (): string;
293
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
294
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
295
+ };
296
+ toLocaleTimeString: {
297
+ (): string;
298
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
299
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
300
+ };
301
+ valueOf: () => number;
302
+ getTime: () => number;
303
+ getFullYear: () => number;
304
+ getUTCFullYear: () => number;
305
+ getMonth: () => number;
306
+ getUTCMonth: () => number;
307
+ getDate: () => number;
308
+ getUTCDate: () => number;
309
+ getDay: () => number;
310
+ getUTCDay: () => number;
311
+ getHours: () => number;
312
+ getUTCHours: () => number;
313
+ getMinutes: () => number;
314
+ getUTCMinutes: () => number;
315
+ getSeconds: () => number;
316
+ getUTCSeconds: () => number;
317
+ getMilliseconds: () => number;
318
+ getUTCMilliseconds: () => number;
319
+ getTimezoneOffset: () => number;
320
+ setTime: (time: number) => number;
321
+ setMilliseconds: (ms: number) => number;
322
+ setUTCMilliseconds: (ms: number) => number;
323
+ setSeconds: (sec: number, ms?: number | undefined) => number;
324
+ setUTCSeconds: (sec: number, ms?: number | undefined) => number;
325
+ setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
326
+ setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
327
+ setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
328
+ setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
329
+ setDate: (date: number) => number;
330
+ setUTCDate: (date: number) => number;
331
+ setMonth: (month: number, date?: number | undefined) => number;
332
+ setUTCMonth: (month: number, date?: number | undefined) => number;
333
+ setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
334
+ setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
335
+ toUTCString: () => string;
336
+ toISOString: () => string;
337
+ toJSON: (key?: any) => string;
338
+ [Symbol.toPrimitive]: {
339
+ (hint: "default"): string;
340
+ (hint: "string"): string;
341
+ (hint: "number"): number;
342
+ (hint: string): string | number;
343
+ };
344
+ } | null | undefined;
345
+ immediate?: boolean | undefined;
346
+ content?: string | undefined;
347
+ placeholder?: string | undefined;
348
+ name?: string | undefined;
349
+ props?: {
350
+ [key: string]: any;
351
+ } | undefined;
352
+ attrs?: {
353
+ [key: string]: any;
354
+ } | undefined;
355
+ children?: any[] | undefined;
356
+ cellType?: "string" | "number" | undefined;
357
+ } | undefined;
358
+ contentRender?: {
359
+ options?: any[] | undefined;
360
+ optionProps?: {
361
+ value?: string | undefined;
362
+ label?: string | undefined;
363
+ key?: string | undefined;
364
+ } | undefined;
365
+ optionGroups?: any[] | undefined;
366
+ optionGroupProps?: {
367
+ options?: string | undefined;
368
+ label?: string | undefined;
369
+ key?: string | undefined;
370
+ } | undefined;
371
+ name?: string | undefined;
372
+ props?: {
373
+ [key: string]: any;
374
+ } | undefined;
375
+ attrs?: {
376
+ [key: string]: any;
377
+ } | undefined;
378
+ events?: {
379
+ [key: string]: (...args: any[]) => any;
380
+ } | undefined;
381
+ children?: any[] | undefined;
382
+ cellType?: "string" | "number" | undefined;
383
+ } | undefined;
384
+ params?: any;
385
+ }[] | undefined;
386
+ height?: VxeTablePropTypes.Height | undefined;
387
+ maxHeight?: VxeTablePropTypes.MaxHeight | undefined;
388
+ resizable?: boolean | undefined;
389
+ stripe?: boolean | undefined;
390
+ border?: VxeTablePropTypes.Border | undefined;
391
+ align?: VxeTablePropTypes.Align | undefined;
392
+ headerAlign?: VxeTablePropTypes.Align | undefined;
393
+ footerAlign?: VxeTablePropTypes.Align | undefined;
394
+ showHeader?: boolean | undefined;
395
+ highlightCurrentRow?: boolean | undefined;
396
+ highlightHoverRow?: boolean | undefined;
397
+ highlightCurrentColumn?: boolean | undefined;
398
+ highlightHoverColumn?: boolean | undefined;
399
+ highlightCell?: boolean | undefined;
400
+ showFooter?: boolean | undefined;
401
+ footerMethod?: VxeTablePropTypes.FooterMethod<VxeTableDataRow> | undefined;
402
+ rowClassName?: VxeTablePropTypes.RowClassName<VxeTableDataRow> | undefined;
403
+ cellClassName?: VxeTablePropTypes.CellClassName<VxeTableDataRow> | undefined;
404
+ headerRowClassName?: VxeTablePropTypes.HeaderRowClassName<VxeTableDataRow> | undefined;
405
+ headerCellClassName?: VxeTablePropTypes.HeaderCellClassName<VxeTableDataRow> | undefined;
406
+ footerRowClassName?: VxeTablePropTypes.FooterRowClassName<VxeTableDataRow> | undefined;
407
+ footerCellClassName?: VxeTablePropTypes.FooterCellClassName<VxeTableDataRow> | undefined;
408
+ cellStyle?: VxeTablePropTypes.CellStyle<VxeTableDataRow> | undefined;
409
+ rowStyle?: VxeTablePropTypes.RowStyle<VxeTableDataRow> | undefined;
410
+ headerCellStyle?: VxeTablePropTypes.HeaderCellStyle<VxeTableDataRow> | undefined;
411
+ headerRowStyle?: VxeTablePropTypes.HeaderRowStyle<VxeTableDataRow> | undefined;
412
+ footerRowStyle?: VxeTablePropTypes.FooterRowStyle<VxeTableDataRow> | undefined;
413
+ footerCellStyle?: VxeTablePropTypes.FooterCellStyle<VxeTableDataRow> | undefined;
414
+ mergeCells?: {
415
+ row: any;
416
+ col: number | {
417
+ property: string;
418
+ type: VxeColumnPropTypes.Type;
419
+ field: string;
420
+ title: string;
421
+ width: VxeColumnPropTypes.Width;
422
+ minWidth: VxeColumnPropTypes.MinWidth;
423
+ maxWidth: VxeColumnPropTypes.MaxWidth;
424
+ resizable: boolean;
425
+ fixed: VxeColumnPropTypes.Fixed;
426
+ align: VxeColumnPropTypes.Align;
427
+ headerAlign: VxeColumnPropTypes.Align;
428
+ footerAlign: VxeColumnPropTypes.Align;
429
+ showOverflow: VxeTablePropTypes.ShowOverflow;
430
+ showHeaderOverflow: VxeTablePropTypes.ShowOverflow;
431
+ showFooterOverflow: VxeTablePropTypes.ShowOverflow;
432
+ className: VxeColumnPropTypes.ClassName<VxeTableDataRow>;
433
+ headerClassName: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow>;
434
+ footerClassName: VxeColumnPropTypes.FooterClassName<VxeTableDataRow>;
435
+ formatter: VxeColumnPropTypes.Formatter<VxeTableDataRow>;
436
+ sortable: boolean;
437
+ sortBy: VxeColumnPropTypes.SortBy<VxeTableDataRow>;
438
+ sortType: VxeColumnPropTypes.SortType;
439
+ filters: {
440
+ label?: string | number | undefined;
441
+ value?: any;
442
+ data?: any;
443
+ resetValue?: any;
444
+ checked?: boolean | undefined;
445
+ }[];
446
+ filterMultiple: boolean;
447
+ filterMethod: VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
448
+ filterRender: {
449
+ options?: any[] | undefined;
450
+ optionProps?: {
451
+ value?: string | undefined;
452
+ label?: string | undefined;
453
+ key?: string | undefined;
454
+ } | undefined;
455
+ optionGroups?: any[] | undefined;
456
+ optionGroupProps?: {
457
+ options?: string | undefined;
458
+ label?: string | undefined;
459
+ key?: string | undefined;
460
+ } | undefined;
461
+ content?: string | undefined;
462
+ name?: string | undefined;
463
+ props?: {
464
+ [key: string]: any;
465
+ } | undefined;
466
+ attrs?: {
467
+ [key: string]: any;
468
+ } | undefined;
469
+ events?: {
470
+ [key: string]: (...args: any[]) => any;
471
+ } | undefined;
472
+ children?: any[] | undefined;
473
+ cellType?: "string" | "number" | undefined;
474
+ };
475
+ treeNode: boolean;
476
+ visible: boolean;
477
+ exportMethod: VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
478
+ footerExportMethod: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow>;
479
+ titleHelp: {
480
+ useHTML?: boolean | undefined;
481
+ content?: VxeTooltipPropTypes.Content | undefined;
482
+ enterable?: boolean | undefined;
483
+ theme?: string | undefined;
484
+ icon?: string | undefined;
485
+ message?: string | undefined;
486
+ };
487
+ titlePrefix: {
488
+ useHTML?: boolean | undefined;
489
+ content?: VxeTooltipPropTypes.Content | undefined;
490
+ enterable?: boolean | undefined;
491
+ theme?: string | undefined;
492
+ icon?: string | undefined;
493
+ message?: string | undefined;
494
+ };
495
+ cellType: VxeColumnPropTypes.CellType;
496
+ cellRender: {
497
+ events?: {
498
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
499
+ } | undefined;
500
+ options?: any[] | undefined;
501
+ optionProps?: {
502
+ value?: string | undefined;
503
+ label?: string | undefined;
504
+ key?: string | undefined;
505
+ } | undefined;
506
+ optionGroups?: any[] | undefined;
507
+ optionGroupProps?: {
508
+ options?: string | undefined;
509
+ label?: string | undefined;
510
+ key?: string | undefined;
511
+ } | undefined;
512
+ content?: string | undefined;
513
+ name?: string | undefined;
514
+ props?: {
515
+ [key: string]: any;
516
+ } | undefined;
517
+ attrs?: {
518
+ [key: string]: any;
519
+ } | undefined;
520
+ children?: any[] | undefined;
521
+ cellType?: "string" | "number" | undefined;
522
+ };
523
+ editRender: {
524
+ events?: {
525
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
526
+ } | undefined;
527
+ enabled?: boolean | undefined;
528
+ options?: any[] | undefined;
529
+ optionProps?: {
530
+ value?: string | undefined;
531
+ label?: string | undefined;
532
+ key?: string | undefined;
533
+ } | undefined;
534
+ optionGroups?: any[] | undefined;
535
+ optionGroupProps?: {
536
+ options?: string | undefined;
537
+ label?: string | undefined;
538
+ key?: string | undefined;
539
+ } | undefined;
540
+ autofocus?: string | undefined;
541
+ autoselect?: boolean | undefined;
542
+ defaultValue?: string | number | object | any[] | ((params: {
543
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
544
+ }) => any) | {
545
+ exec: (string: string) => RegExpExecArray | null;
546
+ test: (string: string) => boolean;
547
+ readonly source: string;
548
+ readonly global: boolean;
549
+ readonly ignoreCase: boolean;
550
+ readonly multiline: boolean;
551
+ lastIndex: number;
552
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
553
+ readonly flags: string;
554
+ readonly sticky: boolean;
555
+ readonly unicode: boolean;
556
+ readonly dotAll: boolean;
557
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
558
+ [Symbol.replace]: {
559
+ (string: string, replaceValue: string): string;
560
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
561
+ };
562
+ [Symbol.search]: (string: string) => number;
563
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
564
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
565
+ } | {
566
+ toString: () => string;
567
+ toDateString: () => string;
568
+ toTimeString: () => string;
569
+ toLocaleString: {
570
+ (): string;
571
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
572
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
573
+ };
574
+ toLocaleDateString: {
575
+ (): string;
576
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
577
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
578
+ };
579
+ toLocaleTimeString: {
580
+ (): string;
581
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
582
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
583
+ };
584
+ valueOf: () => number;
585
+ getTime: () => number;
586
+ getFullYear: () => number;
587
+ getUTCFullYear: () => number;
588
+ getMonth: () => number;
589
+ getUTCMonth: () => number;
590
+ getDate: () => number;
591
+ getUTCDate: () => number;
592
+ getDay: () => number;
593
+ getUTCDay: () => number;
594
+ getHours: () => number;
595
+ getUTCHours: () => number;
596
+ getMinutes: () => number;
597
+ getUTCMinutes: () => number;
598
+ getSeconds: () => number;
599
+ getUTCSeconds: () => number;
600
+ getMilliseconds: () => number;
601
+ getUTCMilliseconds: () => number;
602
+ getTimezoneOffset: () => number;
603
+ setTime: (time: number) => number;
604
+ setMilliseconds: (ms: number) => number;
605
+ setUTCMilliseconds: (ms: number) => number;
606
+ setSeconds: (sec: number, ms?: number | undefined) => number;
607
+ setUTCSeconds: (sec: number, ms?: number | undefined) => number;
608
+ setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
609
+ setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
610
+ setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
611
+ setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
612
+ setDate: (date: number) => number;
613
+ setUTCDate: (date: number) => number;
614
+ setMonth: (month: number, date?: number | undefined) => number;
615
+ setUTCMonth: (month: number, date?: number | undefined) => number;
616
+ setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
617
+ setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
618
+ toUTCString: () => string;
619
+ toISOString: () => string;
620
+ toJSON: (key?: any) => string;
621
+ [Symbol.toPrimitive]: {
622
+ (hint: "default"): string;
623
+ (hint: "string"): string;
624
+ (hint: "number"): number;
625
+ (hint: string): string | number;
626
+ };
627
+ } | null | undefined;
628
+ immediate?: boolean | undefined;
629
+ content?: string | undefined;
630
+ placeholder?: string | undefined;
631
+ name?: string | undefined;
632
+ props?: {
633
+ [key: string]: any;
634
+ } | undefined;
635
+ attrs?: {
636
+ [key: string]: any;
637
+ } | undefined;
638
+ children?: any[] | undefined;
639
+ cellType?: "string" | "number" | undefined;
640
+ };
641
+ contentRender: {
642
+ options?: any[] | undefined;
643
+ optionProps?: {
644
+ value?: string | undefined;
645
+ label?: string | undefined;
646
+ key?: string | undefined;
647
+ } | undefined;
648
+ optionGroups?: any[] | undefined;
649
+ optionGroupProps?: {
650
+ options?: string | undefined;
651
+ label?: string | undefined;
652
+ key?: string | undefined;
653
+ } | undefined;
654
+ name?: string | undefined;
655
+ props?: {
656
+ [key: string]: any;
657
+ } | undefined;
658
+ attrs?: {
659
+ [key: string]: any;
660
+ } | undefined;
661
+ events?: {
662
+ [key: string]: (...args: any[]) => any;
663
+ } | undefined;
664
+ children?: any[] | undefined;
665
+ cellType?: "string" | "number" | undefined;
666
+ };
667
+ params: any;
668
+ slots: {
669
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
670
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
671
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
672
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
673
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
674
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
675
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
676
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
677
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
678
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
679
+ };
680
+ id: string;
681
+ parentId: string;
682
+ level: number;
683
+ rowSpan: number;
684
+ colSpan: number;
685
+ halfVisible: boolean;
686
+ defaultVisible: any;
687
+ defaultFixed: any;
688
+ checked: boolean;
689
+ halfChecked: boolean;
690
+ disabled: boolean;
691
+ order: VxeTablePropTypes.SortOrder;
692
+ sortTime: number;
693
+ renderWidth: number;
694
+ renderHeight: number;
695
+ resizeWidth: number;
696
+ model: {
697
+ update: boolean;
698
+ value: any;
699
+ };
700
+ children: any[];
701
+ renderHeader: (params: VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
702
+ [key: string]: any;
703
+ }>[];
704
+ renderCell: (params: VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
705
+ [key: string]: any;
706
+ }>[];
707
+ renderData: (params: VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
708
+ [key: string]: any;
709
+ }>[];
710
+ renderFooter: (params: VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
711
+ [key: string]: any;
712
+ }>[];
713
+ getTitle: () => string;
714
+ getKey: () => string;
715
+ };
716
+ rowspan: number;
717
+ colspan: number;
718
+ }[] | undefined;
719
+ mergeFooterItems?: {
720
+ row: any;
721
+ col: number | {
722
+ property: string;
723
+ type: VxeColumnPropTypes.Type;
724
+ field: string;
725
+ title: string;
726
+ width: VxeColumnPropTypes.Width;
727
+ minWidth: VxeColumnPropTypes.MinWidth;
728
+ maxWidth: VxeColumnPropTypes.MaxWidth;
729
+ resizable: boolean;
730
+ fixed: VxeColumnPropTypes.Fixed;
731
+ align: VxeColumnPropTypes.Align;
732
+ headerAlign: VxeColumnPropTypes.Align;
733
+ footerAlign: VxeColumnPropTypes.Align;
734
+ showOverflow: VxeTablePropTypes.ShowOverflow;
735
+ showHeaderOverflow: VxeTablePropTypes.ShowOverflow;
736
+ showFooterOverflow: VxeTablePropTypes.ShowOverflow;
737
+ className: VxeColumnPropTypes.ClassName<VxeTableDataRow>;
738
+ headerClassName: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow>;
739
+ footerClassName: VxeColumnPropTypes.FooterClassName<VxeTableDataRow>;
740
+ formatter: VxeColumnPropTypes.Formatter<VxeTableDataRow>;
741
+ sortable: boolean;
742
+ sortBy: VxeColumnPropTypes.SortBy<VxeTableDataRow>;
743
+ sortType: VxeColumnPropTypes.SortType;
744
+ filters: {
745
+ label?: string | number | undefined;
746
+ value?: any;
747
+ data?: any;
748
+ resetValue?: any;
749
+ checked?: boolean | undefined;
750
+ }[];
751
+ filterMultiple: boolean;
752
+ filterMethod: VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
753
+ filterRender: {
754
+ options?: any[] | undefined;
755
+ optionProps?: {
756
+ value?: string | undefined;
757
+ label?: string | undefined;
758
+ key?: string | undefined;
759
+ } | undefined;
760
+ optionGroups?: any[] | undefined;
761
+ optionGroupProps?: {
762
+ options?: string | undefined;
763
+ label?: string | undefined;
764
+ key?: string | undefined;
765
+ } | undefined;
766
+ content?: string | undefined;
767
+ name?: string | undefined;
768
+ props?: {
769
+ [key: string]: any;
770
+ } | undefined;
771
+ attrs?: {
772
+ [key: string]: any;
773
+ } | undefined;
774
+ events?: {
775
+ [key: string]: (...args: any[]) => any;
776
+ } | undefined;
777
+ children?: any[] | undefined;
778
+ cellType?: "string" | "number" | undefined;
779
+ };
780
+ treeNode: boolean;
781
+ visible: boolean;
782
+ exportMethod: VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
783
+ footerExportMethod: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow>;
784
+ titleHelp: {
785
+ useHTML?: boolean | undefined;
786
+ content?: VxeTooltipPropTypes.Content | undefined;
787
+ enterable?: boolean | undefined;
788
+ theme?: string | undefined;
789
+ icon?: string | undefined;
790
+ message?: string | undefined;
791
+ };
792
+ titlePrefix: {
793
+ useHTML?: boolean | undefined;
794
+ content?: VxeTooltipPropTypes.Content | undefined;
795
+ enterable?: boolean | undefined;
796
+ theme?: string | undefined;
797
+ icon?: string | undefined;
798
+ message?: string | undefined;
799
+ };
800
+ cellType: VxeColumnPropTypes.CellType;
801
+ cellRender: {
802
+ events?: {
803
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
804
+ } | undefined;
805
+ options?: any[] | undefined;
806
+ optionProps?: {
807
+ value?: string | undefined;
808
+ label?: string | undefined;
809
+ key?: string | undefined;
810
+ } | undefined;
811
+ optionGroups?: any[] | undefined;
812
+ optionGroupProps?: {
813
+ options?: string | undefined;
814
+ label?: string | undefined;
815
+ key?: string | undefined;
816
+ } | undefined;
817
+ content?: string | undefined;
818
+ name?: string | undefined;
819
+ props?: {
820
+ [key: string]: any;
821
+ } | undefined;
822
+ attrs?: {
823
+ [key: string]: any;
824
+ } | undefined;
825
+ children?: any[] | undefined;
826
+ cellType?: "string" | "number" | undefined;
827
+ };
828
+ editRender: {
829
+ events?: {
830
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
831
+ } | undefined;
832
+ enabled?: boolean | undefined;
833
+ options?: any[] | undefined;
834
+ optionProps?: {
835
+ value?: string | undefined;
836
+ label?: string | undefined;
837
+ key?: string | undefined;
838
+ } | undefined;
839
+ optionGroups?: any[] | undefined;
840
+ optionGroupProps?: {
841
+ options?: string | undefined;
842
+ label?: string | undefined;
843
+ key?: string | undefined;
844
+ } | undefined;
845
+ autofocus?: string | undefined;
846
+ autoselect?: boolean | undefined;
847
+ defaultValue?: string | number | object | any[] | ((params: {
848
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
849
+ }) => any) | {
850
+ exec: (string: string) => RegExpExecArray | null;
851
+ test: (string: string) => boolean;
852
+ readonly source: string;
853
+ readonly global: boolean;
854
+ readonly ignoreCase: boolean;
855
+ readonly multiline: boolean;
856
+ lastIndex: number;
857
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
858
+ readonly flags: string;
859
+ readonly sticky: boolean;
860
+ readonly unicode: boolean;
861
+ readonly dotAll: boolean;
862
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
863
+ [Symbol.replace]: {
864
+ (string: string, replaceValue: string): string;
865
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
866
+ };
867
+ [Symbol.search]: (string: string) => number;
868
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
869
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
870
+ } | {
871
+ toString: () => string;
872
+ toDateString: () => string;
873
+ toTimeString: () => string;
874
+ toLocaleString: {
875
+ (): string;
876
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
877
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
878
+ };
879
+ toLocaleDateString: {
880
+ (): string;
881
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
882
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
883
+ };
884
+ toLocaleTimeString: {
885
+ (): string;
886
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
887
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
888
+ };
889
+ valueOf: () => number;
890
+ getTime: () => number;
891
+ getFullYear: () => number;
892
+ getUTCFullYear: () => number;
893
+ getMonth: () => number;
894
+ getUTCMonth: () => number;
895
+ getDate: () => number;
896
+ getUTCDate: () => number;
897
+ getDay: () => number;
898
+ getUTCDay: () => number;
899
+ getHours: () => number;
900
+ getUTCHours: () => number;
901
+ getMinutes: () => number;
902
+ getUTCMinutes: () => number;
903
+ getSeconds: () => number;
904
+ getUTCSeconds: () => number;
905
+ getMilliseconds: () => number;
906
+ getUTCMilliseconds: () => number;
907
+ getTimezoneOffset: () => number;
908
+ setTime: (time: number) => number;
909
+ setMilliseconds: (ms: number) => number;
910
+ setUTCMilliseconds: (ms: number) => number;
911
+ setSeconds: (sec: number, ms?: number | undefined) => number;
912
+ setUTCSeconds: (sec: number, ms?: number | undefined) => number;
913
+ setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
914
+ setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
915
+ setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
916
+ setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
917
+ setDate: (date: number) => number;
918
+ setUTCDate: (date: number) => number;
919
+ setMonth: (month: number, date?: number | undefined) => number;
920
+ setUTCMonth: (month: number, date?: number | undefined) => number;
921
+ setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
922
+ setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
923
+ toUTCString: () => string;
924
+ toISOString: () => string;
925
+ toJSON: (key?: any) => string;
926
+ [Symbol.toPrimitive]: {
927
+ (hint: "default"): string;
928
+ (hint: "string"): string;
929
+ (hint: "number"): number;
930
+ (hint: string): string | number;
931
+ };
932
+ } | null | undefined;
933
+ immediate?: boolean | undefined;
934
+ content?: string | undefined;
935
+ placeholder?: string | undefined;
936
+ name?: string | undefined;
937
+ props?: {
938
+ [key: string]: any;
939
+ } | undefined;
940
+ attrs?: {
941
+ [key: string]: any;
942
+ } | undefined;
943
+ children?: any[] | undefined;
944
+ cellType?: "string" | "number" | undefined;
945
+ };
946
+ contentRender: {
947
+ options?: any[] | undefined;
948
+ optionProps?: {
949
+ value?: string | undefined;
950
+ label?: string | undefined;
951
+ key?: string | undefined;
952
+ } | undefined;
953
+ optionGroups?: any[] | undefined;
954
+ optionGroupProps?: {
955
+ options?: string | undefined;
956
+ label?: string | undefined;
957
+ key?: string | undefined;
958
+ } | undefined;
959
+ name?: string | undefined;
960
+ props?: {
961
+ [key: string]: any;
962
+ } | undefined;
963
+ attrs?: {
964
+ [key: string]: any;
965
+ } | undefined;
966
+ events?: {
967
+ [key: string]: (...args: any[]) => any;
968
+ } | undefined;
969
+ children?: any[] | undefined;
970
+ cellType?: "string" | "number" | undefined;
971
+ };
972
+ params: any;
973
+ slots: {
974
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
975
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
976
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
977
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
978
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
979
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
980
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
981
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
982
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
983
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
984
+ };
985
+ id: string;
986
+ parentId: string;
987
+ level: number;
988
+ rowSpan: number;
989
+ colSpan: number;
990
+ halfVisible: boolean;
991
+ defaultVisible: any;
992
+ defaultFixed: any;
993
+ checked: boolean;
994
+ halfChecked: boolean;
995
+ disabled: boolean;
996
+ order: VxeTablePropTypes.SortOrder;
997
+ sortTime: number;
998
+ renderWidth: number;
999
+ renderHeight: number;
1000
+ resizeWidth: number;
1001
+ model: {
1002
+ update: boolean;
1003
+ value: any;
1004
+ };
1005
+ children: any[];
1006
+ renderHeader: (params: VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1007
+ [key: string]: any;
1008
+ }>[];
1009
+ renderCell: (params: VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1010
+ [key: string]: any;
1011
+ }>[];
1012
+ renderData: (params: VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1013
+ [key: string]: any;
1014
+ }>[];
1015
+ renderFooter: (params: VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1016
+ [key: string]: any;
1017
+ }>[];
1018
+ getTitle: () => string;
1019
+ getKey: () => string;
1020
+ };
1021
+ rowspan: number;
1022
+ colspan: number;
1023
+ }[] | undefined;
1024
+ spanMethod?: VxeTablePropTypes.SpanMethod<VxeTableDataRow> | undefined;
1025
+ footerSpanMethod?: VxeTablePropTypes.FooterSpanMethod<VxeTableDataRow> | undefined;
1026
+ showOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
1027
+ showHeaderOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
1028
+ showFooterOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
1029
+ columnKey?: boolean | undefined;
1030
+ rowKey?: boolean | undefined;
1031
+ rowId?: string | undefined;
1032
+ keepSource?: boolean | undefined;
1033
+ autoResize?: boolean | undefined;
1034
+ syncResize?: VxeTablePropTypes.SyncResize | undefined;
1035
+ columnConfig?: {
1036
+ useKey?: boolean | undefined;
1037
+ isCurrent?: boolean | undefined;
1038
+ isHover?: boolean | undefined;
1039
+ resizable?: boolean | undefined;
1040
+ width?: VxeColumnPropTypes.Width | undefined;
1041
+ minWidth?: VxeColumnPropTypes.MinWidth | undefined;
1042
+ maxWidth?: VxeColumnPropTypes.MaxWidth | undefined;
1043
+ } | undefined;
1044
+ rowConfig?: {
1045
+ useKey?: boolean | undefined;
1046
+ keyField?: string | undefined;
1047
+ isCurrent?: boolean | undefined;
1048
+ isHover?: boolean | undefined;
1049
+ height?: number | undefined;
1050
+ } | undefined;
1051
+ customConfig?: {
1052
+ storage?: boolean | {
1053
+ visible?: boolean | undefined;
1054
+ resizable?: boolean | undefined;
1055
+ fixed?: boolean | undefined;
1056
+ order?: boolean | undefined;
1057
+ } | undefined;
1058
+ checkMethod?: ((params: {
1059
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1060
+ }) => boolean) | undefined;
1061
+ } | undefined;
1062
+ resizeConfig?: {
1063
+ refreshDelay?: number | undefined;
1064
+ } | undefined;
1065
+ resizableConfig?: {
1066
+ minWidth?: string | number | ((params: {
1067
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1068
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1069
+ columnIndex: number;
1070
+ $columnIndex: number;
1071
+ $rowIndex: number;
1072
+ cell: HTMLElement;
1073
+ }) => string | number) | undefined;
1074
+ maxWidth?: string | number | ((params: {
1075
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1076
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1077
+ columnIndex: number;
1078
+ $columnIndex: number;
1079
+ $rowIndex: number;
1080
+ cell: HTMLElement;
1081
+ }) => string | number) | undefined;
1082
+ } | undefined;
1083
+ seqConfig?: {
1084
+ startIndex?: number | undefined;
1085
+ seqMethod?: ((params: {
1086
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1087
+ columnIndex: number;
1088
+ $columnIndex: number;
1089
+ row: VxeTableDataRow;
1090
+ rowIndex: number;
1091
+ $rowIndex: number;
1092
+ }) => string | number) | undefined;
1093
+ } | undefined;
1094
+ sortConfig?: {
1095
+ defaultSort?: {
1096
+ field: string;
1097
+ order: VxeTablePropTypes.SortOrder;
1098
+ } | {
1099
+ field: string;
1100
+ order: VxeTablePropTypes.SortOrder;
1101
+ }[] | undefined;
1102
+ orders?: VxeTablePropTypes.SortOrder[] | undefined;
1103
+ sortMethod?: ((params: {
1104
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1105
+ data: VxeTableDataRow[];
1106
+ sortList: VxeTableDefines.SortCheckedParams<VxeTableDataRow>[];
1107
+ }) => any[]) | undefined;
1108
+ remote?: boolean | undefined;
1109
+ multiple?: boolean | undefined;
1110
+ chronological?: boolean | undefined;
1111
+ trigger?: "default" | "cell" | undefined;
1112
+ showIcon?: boolean | undefined;
1113
+ iconAsc?: string | undefined;
1114
+ iconDesc?: string | undefined;
1115
+ } | undefined;
1116
+ filterConfig?: {
1117
+ filterMethod?: ((params: {
1118
+ options: VxeTableDefines.FilterOption[];
1119
+ values: any[];
1120
+ cellValue: any;
1121
+ row: VxeTableDataRow;
1122
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1123
+ }) => any) | undefined;
1124
+ remote?: boolean | undefined;
1125
+ showIcon?: boolean | undefined;
1126
+ iconNone?: string | undefined;
1127
+ iconMatch?: string | undefined;
1128
+ } | undefined;
1129
+ radioConfig?: {
1130
+ reserve?: boolean | undefined;
1131
+ labelField?: string | undefined;
1132
+ checkRowKey?: string | number | undefined;
1133
+ checkMethod?: ((params: {
1134
+ row: VxeTableDataRow;
1135
+ }) => boolean) | undefined;
1136
+ visibleMethod?: ((params: {
1137
+ row: VxeTableDataRow;
1138
+ }) => boolean) | undefined;
1139
+ trigger?: "" | "row" | "default" | "cell" | null | undefined;
1140
+ highlight?: boolean | undefined;
1141
+ strict?: boolean | undefined;
1142
+ } | undefined;
1143
+ checkboxConfig?: {
1144
+ reserve?: boolean | undefined;
1145
+ labelField?: string | undefined;
1146
+ checkField?: string | undefined;
1147
+ halfField?: string | undefined;
1148
+ showHeader?: boolean | undefined;
1149
+ checkAll?: boolean | undefined;
1150
+ checkRowKeys?: string[] | number[] | undefined;
1151
+ checkStrictly?: boolean | undefined;
1152
+ strict?: boolean | undefined;
1153
+ checkMethod?: ((params: {
1154
+ row: VxeTableDataRow;
1155
+ }) => boolean) | undefined;
1156
+ visibleMethod?: ((params: {
1157
+ row: VxeTableDataRow;
1158
+ }) => boolean) | undefined;
1159
+ trigger?: "" | "row" | "default" | "cell" | null | undefined;
1160
+ highlight?: boolean | undefined;
1161
+ range?: boolean | undefined;
1162
+ } | undefined;
1163
+ tooltipConfig?: {
1164
+ showAll?: boolean | undefined;
1165
+ theme?: "" | "dark" | "light" | null | undefined;
1166
+ enterable?: boolean | undefined;
1167
+ enterDelay?: number | undefined;
1168
+ leaveDelay?: number | undefined;
1169
+ contentMethod?: ((params: {
1170
+ items: any[];
1171
+ row: VxeTableDataRow;
1172
+ rowIndex: number;
1173
+ $rowIndex: number;
1174
+ _rowIndex: number;
1175
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1176
+ columnIndex: number;
1177
+ $columnIndex: number;
1178
+ _columnIndex: number;
1179
+ type: "" | "footer" | "body" | "header" | null;
1180
+ cell: HTMLElement;
1181
+ $event: any;
1182
+ }) => string | void | null) | undefined;
1183
+ } | undefined;
1184
+ exportConfig?: {
1185
+ filename?: string | undefined;
1186
+ sheetName?: string | undefined;
1187
+ type?: string | undefined;
1188
+ types?: string[] | undefined;
1189
+ mode?: string | undefined;
1190
+ modes?: string[] | undefined;
1191
+ original?: boolean | undefined;
1192
+ message?: boolean | undefined;
1193
+ isHeader?: boolean | undefined;
1194
+ isFooter?: boolean | undefined;
1195
+ isMerge?: boolean | undefined;
1196
+ isColgroup?: boolean | undefined;
1197
+ download?: boolean | undefined;
1198
+ data?: any[] | undefined;
1199
+ columns?: {
1200
+ property: string;
1201
+ type: VxeColumnPropTypes.Type;
1202
+ field: string;
1203
+ title: string;
1204
+ width: VxeColumnPropTypes.Width;
1205
+ minWidth: VxeColumnPropTypes.MinWidth;
1206
+ maxWidth: VxeColumnPropTypes.MaxWidth;
1207
+ resizable: boolean;
1208
+ fixed: VxeColumnPropTypes.Fixed;
1209
+ align: VxeColumnPropTypes.Align;
1210
+ headerAlign: VxeColumnPropTypes.Align;
1211
+ footerAlign: VxeColumnPropTypes.Align;
1212
+ showOverflow: VxeTablePropTypes.ShowOverflow;
1213
+ showHeaderOverflow: VxeTablePropTypes.ShowOverflow;
1214
+ showFooterOverflow: VxeTablePropTypes.ShowOverflow;
1215
+ className: VxeColumnPropTypes.ClassName<VxeTableDataRow>;
1216
+ headerClassName: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow>;
1217
+ footerClassName: VxeColumnPropTypes.FooterClassName<VxeTableDataRow>;
1218
+ formatter: VxeColumnPropTypes.Formatter<VxeTableDataRow>;
1219
+ sortable: boolean;
1220
+ sortBy: VxeColumnPropTypes.SortBy<VxeTableDataRow>;
1221
+ sortType: VxeColumnPropTypes.SortType;
1222
+ filters: {
1223
+ label?: string | number | undefined;
1224
+ value?: any;
1225
+ data?: any;
1226
+ resetValue?: any;
1227
+ checked?: boolean | undefined;
1228
+ }[];
1229
+ filterMultiple: boolean;
1230
+ filterMethod: VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
1231
+ filterRender: {
1232
+ options?: any[] | undefined;
1233
+ optionProps?: {
1234
+ value?: string | undefined;
1235
+ label?: string | undefined;
1236
+ key?: string | undefined;
1237
+ } | undefined;
1238
+ optionGroups?: any[] | undefined;
1239
+ optionGroupProps?: {
1240
+ options?: string | undefined;
1241
+ label?: string | undefined;
1242
+ key?: string | undefined;
1243
+ } | undefined;
1244
+ content?: string | undefined;
1245
+ name?: string | undefined;
1246
+ props?: {
1247
+ [key: string]: any;
1248
+ } | undefined;
1249
+ attrs?: {
1250
+ [key: string]: any;
1251
+ } | undefined;
1252
+ events?: {
1253
+ [key: string]: (...args: any[]) => any;
1254
+ } | undefined;
1255
+ children?: any[] | undefined;
1256
+ cellType?: "string" | "number" | undefined;
1257
+ };
1258
+ treeNode: boolean;
1259
+ visible: boolean;
1260
+ exportMethod: VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
1261
+ footerExportMethod: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow>;
1262
+ titleHelp: {
1263
+ useHTML?: boolean | undefined;
1264
+ content?: VxeTooltipPropTypes.Content | undefined;
1265
+ enterable?: boolean | undefined;
1266
+ theme?: string | undefined;
1267
+ icon?: string | undefined;
1268
+ message?: string | undefined;
1269
+ };
1270
+ titlePrefix: {
1271
+ useHTML?: boolean | undefined;
1272
+ content?: VxeTooltipPropTypes.Content | undefined;
1273
+ enterable?: boolean | undefined;
1274
+ theme?: string | undefined;
1275
+ icon?: string | undefined;
1276
+ message?: string | undefined;
1277
+ };
1278
+ cellType: VxeColumnPropTypes.CellType;
1279
+ cellRender: {
1280
+ events?: {
1281
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
1282
+ } | undefined;
1283
+ options?: any[] | undefined;
1284
+ optionProps?: {
1285
+ value?: string | undefined;
1286
+ label?: string | undefined;
1287
+ key?: string | undefined;
1288
+ } | undefined;
1289
+ optionGroups?: any[] | undefined;
1290
+ optionGroupProps?: {
1291
+ options?: string | undefined;
1292
+ label?: string | undefined;
1293
+ key?: string | undefined;
1294
+ } | undefined;
1295
+ content?: string | undefined;
1296
+ name?: string | undefined;
1297
+ props?: {
1298
+ [key: string]: any;
1299
+ } | undefined;
1300
+ attrs?: {
1301
+ [key: string]: any;
1302
+ } | undefined;
1303
+ children?: any[] | undefined;
1304
+ cellType?: "string" | "number" | undefined;
1305
+ };
1306
+ editRender: {
1307
+ events?: {
1308
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
1309
+ } | undefined;
1310
+ enabled?: boolean | undefined;
1311
+ options?: any[] | undefined;
1312
+ optionProps?: {
1313
+ value?: string | undefined;
1314
+ label?: string | undefined;
1315
+ key?: string | undefined;
1316
+ } | undefined;
1317
+ optionGroups?: any[] | undefined;
1318
+ optionGroupProps?: {
1319
+ options?: string | undefined;
1320
+ label?: string | undefined;
1321
+ key?: string | undefined;
1322
+ } | undefined;
1323
+ autofocus?: string | undefined;
1324
+ autoselect?: boolean | undefined;
1325
+ defaultValue?: string | number | object | any[] | ((params: {
1326
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1327
+ }) => any) | {
1328
+ exec: (string: string) => RegExpExecArray | null;
1329
+ test: (string: string) => boolean;
1330
+ readonly source: string;
1331
+ readonly global: boolean;
1332
+ readonly ignoreCase: boolean;
1333
+ readonly multiline: boolean;
1334
+ lastIndex: number;
1335
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
1336
+ readonly flags: string;
1337
+ readonly sticky: boolean;
1338
+ readonly unicode: boolean;
1339
+ readonly dotAll: boolean;
1340
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1341
+ [Symbol.replace]: {
1342
+ (string: string, replaceValue: string): string;
1343
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1344
+ };
1345
+ [Symbol.search]: (string: string) => number;
1346
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
1347
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
1348
+ } | {
1349
+ toString: () => string;
1350
+ toDateString: () => string;
1351
+ toTimeString: () => string;
1352
+ toLocaleString: {
1353
+ (): string;
1354
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
1355
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
1356
+ };
1357
+ toLocaleDateString: {
1358
+ (): string;
1359
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
1360
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
1361
+ };
1362
+ toLocaleTimeString: {
1363
+ (): string;
1364
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
1365
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
1366
+ };
1367
+ valueOf: () => number;
1368
+ getTime: () => number;
1369
+ getFullYear: () => number;
1370
+ getUTCFullYear: () => number;
1371
+ getMonth: () => number;
1372
+ getUTCMonth: () => number;
1373
+ getDate: () => number;
1374
+ getUTCDate: () => number;
1375
+ getDay: () => number;
1376
+ getUTCDay: () => number;
1377
+ getHours: () => number;
1378
+ getUTCHours: () => number;
1379
+ getMinutes: () => number;
1380
+ getUTCMinutes: () => number;
1381
+ getSeconds: () => number;
1382
+ getUTCSeconds: () => number;
1383
+ getMilliseconds: () => number;
1384
+ getUTCMilliseconds: () => number;
1385
+ getTimezoneOffset: () => number;
1386
+ setTime: (time: number) => number;
1387
+ setMilliseconds: (ms: number) => number;
1388
+ setUTCMilliseconds: (ms: number) => number;
1389
+ setSeconds: (sec: number, ms?: number | undefined) => number;
1390
+ setUTCSeconds: (sec: number, ms?: number | undefined) => number;
1391
+ setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
1392
+ setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
1393
+ setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
1394
+ setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
1395
+ setDate: (date: number) => number;
1396
+ setUTCDate: (date: number) => number;
1397
+ setMonth: (month: number, date?: number | undefined) => number;
1398
+ setUTCMonth: (month: number, date?: number | undefined) => number;
1399
+ setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
1400
+ setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
1401
+ toUTCString: () => string;
1402
+ toISOString: () => string;
1403
+ toJSON: (key?: any) => string;
1404
+ [Symbol.toPrimitive]: {
1405
+ (hint: "default"): string;
1406
+ (hint: "string"): string;
1407
+ (hint: "number"): number;
1408
+ (hint: string): string | number;
1409
+ };
1410
+ } | null | undefined;
1411
+ immediate?: boolean | undefined;
1412
+ content?: string | undefined;
1413
+ placeholder?: string | undefined;
1414
+ name?: string | undefined;
1415
+ props?: {
1416
+ [key: string]: any;
1417
+ } | undefined;
1418
+ attrs?: {
1419
+ [key: string]: any;
1420
+ } | undefined;
1421
+ children?: any[] | undefined;
1422
+ cellType?: "string" | "number" | undefined;
1423
+ };
1424
+ contentRender: {
1425
+ options?: any[] | undefined;
1426
+ optionProps?: {
1427
+ value?: string | undefined;
1428
+ label?: string | undefined;
1429
+ key?: string | undefined;
1430
+ } | undefined;
1431
+ optionGroups?: any[] | undefined;
1432
+ optionGroupProps?: {
1433
+ options?: string | undefined;
1434
+ label?: string | undefined;
1435
+ key?: string | undefined;
1436
+ } | undefined;
1437
+ name?: string | undefined;
1438
+ props?: {
1439
+ [key: string]: any;
1440
+ } | undefined;
1441
+ attrs?: {
1442
+ [key: string]: any;
1443
+ } | undefined;
1444
+ events?: {
1445
+ [key: string]: (...args: any[]) => any;
1446
+ } | undefined;
1447
+ children?: any[] | undefined;
1448
+ cellType?: "string" | "number" | undefined;
1449
+ };
1450
+ params: any;
1451
+ slots: {
1452
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1453
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1454
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1455
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1456
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1457
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1458
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1459
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1460
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1461
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1462
+ };
1463
+ id: string;
1464
+ parentId: string;
1465
+ level: number;
1466
+ rowSpan: number;
1467
+ colSpan: number;
1468
+ halfVisible: boolean;
1469
+ defaultVisible: any;
1470
+ defaultFixed: any;
1471
+ checked: boolean;
1472
+ halfChecked: boolean;
1473
+ disabled: boolean;
1474
+ order: VxeTablePropTypes.SortOrder;
1475
+ sortTime: number;
1476
+ renderWidth: number;
1477
+ renderHeight: number;
1478
+ resizeWidth: number;
1479
+ model: {
1480
+ update: boolean;
1481
+ value: any;
1482
+ };
1483
+ children: any[];
1484
+ renderHeader: (params: VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1485
+ [key: string]: any;
1486
+ }>[];
1487
+ renderCell: (params: VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1488
+ [key: string]: any;
1489
+ }>[];
1490
+ renderData: (params: VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1491
+ [key: string]: any;
1492
+ }>[];
1493
+ renderFooter: (params: VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1494
+ [key: string]: any;
1495
+ }>[];
1496
+ getTitle: () => string;
1497
+ getKey: () => string;
1498
+ }[] | {
1499
+ colid?: number | undefined;
1500
+ type?: string | undefined;
1501
+ field?: string | undefined;
1502
+ }[] | undefined;
1503
+ columnFilterMethod?: ((params: {
1504
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1505
+ $columnIndex: number;
1506
+ }) => boolean) | undefined;
1507
+ dataFilterMethod?: ((params: {
1508
+ row: any;
1509
+ $rowIndex: number;
1510
+ }) => boolean) | undefined;
1511
+ footerFilterMethod?: ((params: {
1512
+ items: any[];
1513
+ $rowIndex: number;
1514
+ }) => boolean) | undefined;
1515
+ remote?: boolean | undefined;
1516
+ useStyle?: boolean | undefined;
1517
+ sheetMethod?: ((params: VxeTableDefines.ExtortSheetMethodParams) => void) | undefined;
1518
+ exportMethod?: ((params: {
1519
+ $table: VxeTableConstructor<any>;
1520
+ $grid?: VxeGridConstructor<any> | undefined;
1521
+ options: VxeTablePropTypes.ExportHandleOptions;
1522
+ }) => Promise<any>) | undefined;
1523
+ beforeExportMethod?: ((params: {
1524
+ options: VxeTablePropTypes.ExportHandleOptions;
1525
+ }) => void) | undefined;
1526
+ afterExportMethod?: ((params: {
1527
+ options: VxeTablePropTypes.ExportHandleOptions;
1528
+ }) => void) | undefined;
1529
+ } | undefined;
1530
+ importConfig?: {
1531
+ types?: string[] | undefined;
1532
+ mode?: string | undefined;
1533
+ modes?: string[] | undefined;
1534
+ message?: boolean | undefined;
1535
+ remote?: boolean | undefined;
1536
+ importMethod?: ((params: {
1537
+ $table: VxeTableConstructor<any>;
1538
+ $grid: VxeGridConstructor<any>;
1539
+ file: File;
1540
+ options: VxeTablePropTypes.ImportHandleOptions;
1541
+ }) => Promise<any>) | undefined;
1542
+ beforeImportMethod?: ((params: {
1543
+ $table: VxeTableConstructor<any>;
1544
+ options: any;
1545
+ }) => void) | undefined;
1546
+ afterImportMethod?: ((params: {
1547
+ $table: VxeTableConstructor<any>;
1548
+ options: any;
1549
+ status: boolean;
1550
+ }) => void) | undefined;
1551
+ } | undefined;
1552
+ printConfig?: {
1553
+ sheetName?: string | undefined;
1554
+ mode?: string | undefined;
1555
+ modes?: string[] | undefined;
1556
+ original?: boolean | undefined;
1557
+ isHeader?: boolean | undefined;
1558
+ isFooter?: boolean | undefined;
1559
+ data?: any[] | undefined;
1560
+ columns?: {
1561
+ property: string;
1562
+ type: VxeColumnPropTypes.Type;
1563
+ field: string;
1564
+ title: string;
1565
+ width: VxeColumnPropTypes.Width;
1566
+ minWidth: VxeColumnPropTypes.MinWidth;
1567
+ maxWidth: VxeColumnPropTypes.MaxWidth;
1568
+ resizable: boolean;
1569
+ fixed: VxeColumnPropTypes.Fixed;
1570
+ align: VxeColumnPropTypes.Align;
1571
+ headerAlign: VxeColumnPropTypes.Align;
1572
+ footerAlign: VxeColumnPropTypes.Align;
1573
+ showOverflow: VxeTablePropTypes.ShowOverflow;
1574
+ showHeaderOverflow: VxeTablePropTypes.ShowOverflow;
1575
+ showFooterOverflow: VxeTablePropTypes.ShowOverflow;
1576
+ className: VxeColumnPropTypes.ClassName<VxeTableDataRow>;
1577
+ headerClassName: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow>;
1578
+ footerClassName: VxeColumnPropTypes.FooterClassName<VxeTableDataRow>;
1579
+ formatter: VxeColumnPropTypes.Formatter<VxeTableDataRow>;
1580
+ sortable: boolean;
1581
+ sortBy: VxeColumnPropTypes.SortBy<VxeTableDataRow>;
1582
+ sortType: VxeColumnPropTypes.SortType;
1583
+ filters: {
1584
+ label?: string | number | undefined;
1585
+ value?: any;
1586
+ data?: any;
1587
+ resetValue?: any;
1588
+ checked?: boolean | undefined;
1589
+ }[];
1590
+ filterMultiple: boolean;
1591
+ filterMethod: VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
1592
+ filterRender: {
1593
+ options?: any[] | undefined;
1594
+ optionProps?: {
1595
+ value?: string | undefined;
1596
+ label?: string | undefined;
1597
+ key?: string | undefined;
1598
+ } | undefined;
1599
+ optionGroups?: any[] | undefined;
1600
+ optionGroupProps?: {
1601
+ options?: string | undefined;
1602
+ label?: string | undefined;
1603
+ key?: string | undefined;
1604
+ } | undefined;
1605
+ content?: string | undefined;
1606
+ name?: string | undefined;
1607
+ props?: {
1608
+ [key: string]: any;
1609
+ } | undefined;
1610
+ attrs?: {
1611
+ [key: string]: any;
1612
+ } | undefined;
1613
+ events?: {
1614
+ [key: string]: (...args: any[]) => any;
1615
+ } | undefined;
1616
+ children?: any[] | undefined;
1617
+ cellType?: "string" | "number" | undefined;
1618
+ };
1619
+ treeNode: boolean;
1620
+ visible: boolean;
1621
+ exportMethod: VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
1622
+ footerExportMethod: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow>;
1623
+ titleHelp: {
1624
+ useHTML?: boolean | undefined;
1625
+ content?: VxeTooltipPropTypes.Content | undefined;
1626
+ enterable?: boolean | undefined;
1627
+ theme?: string | undefined;
1628
+ icon?: string | undefined;
1629
+ message?: string | undefined;
1630
+ };
1631
+ titlePrefix: {
1632
+ useHTML?: boolean | undefined;
1633
+ content?: VxeTooltipPropTypes.Content | undefined;
1634
+ enterable?: boolean | undefined;
1635
+ theme?: string | undefined;
1636
+ icon?: string | undefined;
1637
+ message?: string | undefined;
1638
+ };
1639
+ cellType: VxeColumnPropTypes.CellType;
1640
+ cellRender: {
1641
+ events?: {
1642
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
1643
+ } | undefined;
1644
+ options?: any[] | undefined;
1645
+ optionProps?: {
1646
+ value?: string | undefined;
1647
+ label?: string | undefined;
1648
+ key?: string | undefined;
1649
+ } | undefined;
1650
+ optionGroups?: any[] | undefined;
1651
+ optionGroupProps?: {
1652
+ options?: string | undefined;
1653
+ label?: string | undefined;
1654
+ key?: string | undefined;
1655
+ } | undefined;
1656
+ content?: string | undefined;
1657
+ name?: string | undefined;
1658
+ props?: {
1659
+ [key: string]: any;
1660
+ } | undefined;
1661
+ attrs?: {
1662
+ [key: string]: any;
1663
+ } | undefined;
1664
+ children?: any[] | undefined;
1665
+ cellType?: "string" | "number" | undefined;
1666
+ };
1667
+ editRender: {
1668
+ events?: {
1669
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
1670
+ } | undefined;
1671
+ enabled?: boolean | undefined;
1672
+ options?: any[] | undefined;
1673
+ optionProps?: {
1674
+ value?: string | undefined;
1675
+ label?: string | undefined;
1676
+ key?: string | undefined;
1677
+ } | undefined;
1678
+ optionGroups?: any[] | undefined;
1679
+ optionGroupProps?: {
1680
+ options?: string | undefined;
1681
+ label?: string | undefined;
1682
+ key?: string | undefined;
1683
+ } | undefined;
1684
+ autofocus?: string | undefined;
1685
+ autoselect?: boolean | undefined;
1686
+ defaultValue?: string | number | object | any[] | ((params: {
1687
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1688
+ }) => any) | {
1689
+ exec: (string: string) => RegExpExecArray | null;
1690
+ test: (string: string) => boolean;
1691
+ readonly source: string;
1692
+ readonly global: boolean;
1693
+ readonly ignoreCase: boolean;
1694
+ readonly multiline: boolean;
1695
+ lastIndex: number;
1696
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
1697
+ readonly flags: string;
1698
+ readonly sticky: boolean;
1699
+ readonly unicode: boolean;
1700
+ readonly dotAll: boolean;
1701
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1702
+ [Symbol.replace]: {
1703
+ (string: string, replaceValue: string): string;
1704
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1705
+ };
1706
+ [Symbol.search]: (string: string) => number;
1707
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
1708
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
1709
+ } | {
1710
+ toString: () => string;
1711
+ toDateString: () => string;
1712
+ toTimeString: () => string;
1713
+ toLocaleString: {
1714
+ (): string;
1715
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
1716
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
1717
+ };
1718
+ toLocaleDateString: {
1719
+ (): string;
1720
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
1721
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
1722
+ };
1723
+ toLocaleTimeString: {
1724
+ (): string;
1725
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
1726
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
1727
+ };
1728
+ valueOf: () => number;
1729
+ getTime: () => number;
1730
+ getFullYear: () => number;
1731
+ getUTCFullYear: () => number;
1732
+ getMonth: () => number;
1733
+ getUTCMonth: () => number;
1734
+ getDate: () => number;
1735
+ getUTCDate: () => number;
1736
+ getDay: () => number;
1737
+ getUTCDay: () => number;
1738
+ getHours: () => number;
1739
+ getUTCHours: () => number;
1740
+ getMinutes: () => number;
1741
+ getUTCMinutes: () => number;
1742
+ getSeconds: () => number;
1743
+ getUTCSeconds: () => number;
1744
+ getMilliseconds: () => number;
1745
+ getUTCMilliseconds: () => number;
1746
+ getTimezoneOffset: () => number;
1747
+ setTime: (time: number) => number;
1748
+ setMilliseconds: (ms: number) => number;
1749
+ setUTCMilliseconds: (ms: number) => number;
1750
+ setSeconds: (sec: number, ms?: number | undefined) => number;
1751
+ setUTCSeconds: (sec: number, ms?: number | undefined) => number;
1752
+ setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
1753
+ setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
1754
+ setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
1755
+ setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
1756
+ setDate: (date: number) => number;
1757
+ setUTCDate: (date: number) => number;
1758
+ setMonth: (month: number, date?: number | undefined) => number;
1759
+ setUTCMonth: (month: number, date?: number | undefined) => number;
1760
+ setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
1761
+ setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
1762
+ toUTCString: () => string;
1763
+ toISOString: () => string;
1764
+ toJSON: (key?: any) => string;
1765
+ [Symbol.toPrimitive]: {
1766
+ (hint: "default"): string;
1767
+ (hint: "string"): string;
1768
+ (hint: "number"): number;
1769
+ (hint: string): string | number;
1770
+ };
1771
+ } | null | undefined;
1772
+ immediate?: boolean | undefined;
1773
+ content?: string | undefined;
1774
+ placeholder?: string | undefined;
1775
+ name?: string | undefined;
1776
+ props?: {
1777
+ [key: string]: any;
1778
+ } | undefined;
1779
+ attrs?: {
1780
+ [key: string]: any;
1781
+ } | undefined;
1782
+ children?: any[] | undefined;
1783
+ cellType?: "string" | "number" | undefined;
1784
+ };
1785
+ contentRender: {
1786
+ options?: any[] | undefined;
1787
+ optionProps?: {
1788
+ value?: string | undefined;
1789
+ label?: string | undefined;
1790
+ key?: string | undefined;
1791
+ } | undefined;
1792
+ optionGroups?: any[] | undefined;
1793
+ optionGroupProps?: {
1794
+ options?: string | undefined;
1795
+ label?: string | undefined;
1796
+ key?: string | undefined;
1797
+ } | undefined;
1798
+ name?: string | undefined;
1799
+ props?: {
1800
+ [key: string]: any;
1801
+ } | undefined;
1802
+ attrs?: {
1803
+ [key: string]: any;
1804
+ } | undefined;
1805
+ events?: {
1806
+ [key: string]: (...args: any[]) => any;
1807
+ } | undefined;
1808
+ children?: any[] | undefined;
1809
+ cellType?: "string" | "number" | undefined;
1810
+ };
1811
+ params: any;
1812
+ slots: {
1813
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1814
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1815
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1816
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1817
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1818
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1819
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1820
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1821
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1822
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1823
+ };
1824
+ id: string;
1825
+ parentId: string;
1826
+ level: number;
1827
+ rowSpan: number;
1828
+ colSpan: number;
1829
+ halfVisible: boolean;
1830
+ defaultVisible: any;
1831
+ defaultFixed: any;
1832
+ checked: boolean;
1833
+ halfChecked: boolean;
1834
+ disabled: boolean;
1835
+ order: VxeTablePropTypes.SortOrder;
1836
+ sortTime: number;
1837
+ renderWidth: number;
1838
+ renderHeight: number;
1839
+ resizeWidth: number;
1840
+ model: {
1841
+ update: boolean;
1842
+ value: any;
1843
+ };
1844
+ children: any[];
1845
+ renderHeader: (params: VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1846
+ [key: string]: any;
1847
+ }>[];
1848
+ renderCell: (params: VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1849
+ [key: string]: any;
1850
+ }>[];
1851
+ renderData: (params: VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1852
+ [key: string]: any;
1853
+ }>[];
1854
+ renderFooter: (params: VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1855
+ [key: string]: any;
1856
+ }>[];
1857
+ getTitle: () => string;
1858
+ getKey: () => string;
1859
+ }[] | {
1860
+ colid?: number | undefined;
1861
+ type?: string | undefined;
1862
+ field?: string | undefined;
1863
+ }[] | undefined;
1864
+ style?: string | undefined;
1865
+ content?: string | undefined;
1866
+ columnFilterMethod?: ((params: {
1867
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1868
+ $columnIndex: number;
1869
+ }) => boolean) | undefined;
1870
+ dataFilterMethod?: ((params: {
1871
+ row: any;
1872
+ $rowIndex: number;
1873
+ }) => boolean) | undefined;
1874
+ footerFilterMethod?: ((params: {
1875
+ items: any[];
1876
+ $rowIndex: number;
1877
+ }) => boolean) | undefined;
1878
+ beforePrintMethod?: ((params: {
1879
+ $table: VxeTableConstructor<any> | null;
1880
+ content: string;
1881
+ options: VxeTablePropTypes.PrintHandleOptions;
1882
+ }) => string) | undefined;
1883
+ } | undefined;
1884
+ expandConfig?: {
1885
+ labelField?: string | undefined;
1886
+ expandAll?: boolean | undefined;
1887
+ expandRowKeys?: string[] | number[] | undefined;
1888
+ accordion?: boolean | undefined;
1889
+ trigger?: "" | "row" | "default" | "cell" | null | undefined;
1890
+ lazy?: boolean | undefined;
1891
+ reserve?: boolean | undefined;
1892
+ height?: number | undefined;
1893
+ loadMethod?: ((params: {
1894
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1895
+ row: VxeTableDataRow;
1896
+ rowIndex: number;
1897
+ $rowIndex: number;
1898
+ }) => Promise<void>) | undefined;
1899
+ toggleMethod?: ((params: {
1900
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1901
+ expanded: boolean;
1902
+ row: VxeTableDataRow;
1903
+ rowIndex: number;
1904
+ $rowIndex: number;
1905
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1906
+ columnIndex: number;
1907
+ $columnIndex: number;
1908
+ }) => boolean) | undefined;
1909
+ visibleMethod?: ((params: VxeTableDefines.CellRenderBodyParams<VxeTableDataRow>) => boolean) | undefined;
1910
+ showIcon?: boolean | undefined;
1911
+ iconOpen?: string | undefined;
1912
+ iconClose?: string | undefined;
1913
+ iconLoaded?: string | undefined;
1914
+ } | undefined;
1915
+ treeConfig?: {
1916
+ transform?: boolean | undefined;
1917
+ rowField?: string | undefined;
1918
+ parentField?: string | undefined;
1919
+ children?: string | undefined;
1920
+ mapChildren?: string | undefined;
1921
+ indent?: number | undefined;
1922
+ line?: boolean | undefined;
1923
+ expandAll?: boolean | undefined;
1924
+ expandRowKeys?: string[] | number[] | undefined;
1925
+ accordion?: boolean | undefined;
1926
+ trigger?: "" | "row" | "default" | "cell" | null | undefined;
1927
+ lazy?: boolean | undefined;
1928
+ hasChild?: string | undefined;
1929
+ reserve?: boolean | undefined;
1930
+ loadMethod?: ((params: {
1931
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1932
+ row: VxeTableDataRow;
1933
+ }) => Promise<any[]>) | undefined;
1934
+ toggleMethod?: ((params: {
1935
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1936
+ expanded: boolean;
1937
+ row: VxeTableDataRow;
1938
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1939
+ columnIndex: number;
1940
+ $columnIndex: number;
1941
+ }) => boolean) | undefined;
1942
+ showIcon?: boolean | undefined;
1943
+ iconOpen?: string | undefined;
1944
+ iconClose?: string | undefined;
1945
+ iconLoaded?: string | undefined;
1946
+ } | undefined;
1947
+ menuConfig?: {
1948
+ header?: {
1949
+ disabled?: boolean | undefined;
1950
+ options?: {
1951
+ [x: string]: any;
1952
+ code?: string | undefined;
1953
+ name?: string | undefined;
1954
+ prefixIcon?: string | undefined;
1955
+ suffixIcon?: string | undefined;
1956
+ className?: string | undefined;
1957
+ visible?: boolean | undefined;
1958
+ disabled?: boolean | undefined;
1959
+ children?: {
1960
+ [x: string]: any;
1961
+ code?: string | undefined;
1962
+ name?: string | undefined;
1963
+ prefixIcon?: string | undefined;
1964
+ className?: string | undefined;
1965
+ visible?: boolean | undefined;
1966
+ disabled?: boolean | undefined;
1967
+ params?: any;
1968
+ }[] | undefined;
1969
+ params?: any;
1970
+ }[][] | undefined;
1971
+ } | undefined;
1972
+ body?: {
1973
+ disabled?: boolean | undefined;
1974
+ options?: {
1975
+ [x: string]: any;
1976
+ code?: string | undefined;
1977
+ name?: string | undefined;
1978
+ prefixIcon?: string | undefined;
1979
+ suffixIcon?: string | undefined;
1980
+ className?: string | undefined;
1981
+ visible?: boolean | undefined;
1982
+ disabled?: boolean | undefined;
1983
+ children?: {
1984
+ [x: string]: any;
1985
+ code?: string | undefined;
1986
+ name?: string | undefined;
1987
+ prefixIcon?: string | undefined;
1988
+ className?: string | undefined;
1989
+ visible?: boolean | undefined;
1990
+ disabled?: boolean | undefined;
1991
+ params?: any;
1992
+ }[] | undefined;
1993
+ params?: any;
1994
+ }[][] | undefined;
1995
+ } | undefined;
1996
+ footer?: {
1997
+ disabled?: boolean | undefined;
1998
+ options?: {
1999
+ [x: string]: any;
2000
+ code?: string | undefined;
2001
+ name?: string | undefined;
2002
+ prefixIcon?: string | undefined;
2003
+ suffixIcon?: string | undefined;
2004
+ className?: string | undefined;
2005
+ visible?: boolean | undefined;
2006
+ disabled?: boolean | undefined;
2007
+ children?: {
2008
+ [x: string]: any;
2009
+ code?: string | undefined;
2010
+ name?: string | undefined;
2011
+ prefixIcon?: string | undefined;
2012
+ className?: string | undefined;
2013
+ visible?: boolean | undefined;
2014
+ disabled?: boolean | undefined;
2015
+ params?: any;
2016
+ }[] | undefined;
2017
+ params?: any;
2018
+ }[][] | undefined;
2019
+ } | undefined;
2020
+ trigger?: "" | "default" | "cell" | null | undefined;
2021
+ className?: string | undefined;
2022
+ visibleMethod?: ((params: {
2023
+ type: string;
2024
+ options: VxeTableDefines.MenuFirstOption[][];
2025
+ columns: VxeTableDefines.ColumnInfo<VxeTableDataRow>[];
2026
+ row?: VxeTableDataRow | undefined;
2027
+ rowIndex?: number | undefined;
2028
+ column?: VxeTableDefines.ColumnInfo<VxeTableDataRow> | undefined;
2029
+ columnIndex?: number | undefined;
2030
+ }) => boolean) | undefined;
2031
+ } | undefined;
2032
+ mouseConfig?: {
2033
+ selected?: boolean | undefined;
2034
+ area?: boolean | undefined;
2035
+ extension?: boolean | undefined;
2036
+ } | undefined;
2037
+ areaConfig?: {
2038
+ multiple?: boolean | undefined;
2039
+ selectCellByHeader?: boolean | undefined;
2040
+ extendByCopy?: boolean | undefined;
2041
+ extendByCalc?: boolean | undefined;
2042
+ extendCalcMethod?: ((params: VxeTableProDefines.ExtendCellAreaCalcBaseParams<VxeTableDataRow>) => any[][]) | undefined;
2043
+ extendSetMethod?: ((params: {
2044
+ cellValue: any;
2045
+ row: VxeTableDataRow;
2046
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2047
+ } & VxeTableProDefines.ExtendCellAreaCalcBaseParams<VxeTableDataRow>) => void) | undefined;
2048
+ beforeExtendSetMethod?: ((params: VxeTableProDefines.ExtendCellAreaCalcBaseParams<VxeTableDataRow>) => boolean) | undefined;
2049
+ afterExtendSetMethod?: ((params: {
2050
+ extendValues: any[][];
2051
+ } & VxeTableProDefines.ExtendCellAreaCalcBaseParams<VxeTableDataRow>) => boolean) | undefined;
2052
+ } | undefined;
2053
+ fnrConfig?: {
2054
+ isFind?: boolean | undefined;
2055
+ findMethod?: ((params: {
2056
+ cellValue: any;
2057
+ isWhole: boolean;
2058
+ isRE: boolean;
2059
+ isSensitive: boolean;
2060
+ findValue: string | null;
2061
+ findRE: RegExp | null;
2062
+ }) => boolean) | undefined;
2063
+ beforeFindMethod?: ((params: {
2064
+ isAll: boolean;
2065
+ findValue: string | null;
2066
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2067
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2068
+ }) => boolean) | undefined;
2069
+ afterFindMethod?: ((params: {
2070
+ isAll: boolean;
2071
+ findValue: string | null;
2072
+ result: VxeTableProDefines.FindAndReplaceResult<VxeTableDataRow>[];
2073
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2074
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2075
+ }) => void) | undefined;
2076
+ isReplace?: boolean | undefined;
2077
+ replaceMethod?: ((params: {
2078
+ row: VxeTableDataRow;
2079
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2080
+ cellValue: any;
2081
+ }) => void) | undefined;
2082
+ beforeReplaceMethod?: ((params: {
2083
+ isAll: boolean;
2084
+ findValue: string | null;
2085
+ replaceValue: string;
2086
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2087
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2088
+ }) => boolean) | undefined;
2089
+ afterReplaceMethod?: ((params: {
2090
+ isAll: boolean;
2091
+ findValue: string | null;
2092
+ replaceValue: string;
2093
+ result: VxeTableProDefines.FindAndReplaceResult<VxeTableDataRow>[];
2094
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2095
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2096
+ }) => void) | undefined;
2097
+ } | undefined;
2098
+ keyboardConfig?: {
2099
+ isArrow?: boolean | undefined;
2100
+ isEsc?: boolean | undefined;
2101
+ isDel?: boolean | undefined;
2102
+ isEnter?: boolean | undefined;
2103
+ isShift?: boolean | undefined;
2104
+ isTab?: boolean | undefined;
2105
+ isEdit?: boolean | undefined;
2106
+ isMerge?: boolean | undefined;
2107
+ isClip?: boolean | undefined;
2108
+ isFNR?: boolean | undefined;
2109
+ isChecked?: boolean | undefined;
2110
+ enterToTab?: boolean | undefined;
2111
+ delMethod?: ((params: {
2112
+ row: VxeTableDataRow;
2113
+ rowIndex: number;
2114
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2115
+ columnIndex: number;
2116
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2117
+ }) => void) | undefined;
2118
+ backMethod?: ((params: {
2119
+ row: VxeTableDataRow;
2120
+ rowIndex: number;
2121
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2122
+ columnIndex: number;
2123
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2124
+ }) => void) | undefined;
2125
+ editMethod?: ((params: {
2126
+ row: VxeTableDataRow;
2127
+ rowIndex: number;
2128
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2129
+ columnIndex: number;
2130
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2131
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2132
+ }) => boolean) | undefined;
2133
+ } | undefined;
2134
+ clipConfig?: {
2135
+ isCopy?: boolean | undefined;
2136
+ isCut?: boolean | undefined;
2137
+ isPaste?: boolean | undefined;
2138
+ isFillPaste?: boolean | undefined;
2139
+ isRowIncrement?: boolean | undefined;
2140
+ isColumnIncrement?: boolean | undefined;
2141
+ copyMethod?: ((params: {
2142
+ isCut: boolean;
2143
+ row: VxeTableDataRow;
2144
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2145
+ cellValue: any;
2146
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2147
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2148
+ }) => string) | undefined;
2149
+ beforeCopyMethod?: ((params: {
2150
+ isCut: boolean;
2151
+ activeArea: VxeTableProDefines.MouseActiveCellArea<VxeTableDataRow>;
2152
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2153
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2154
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2155
+ }) => boolean) | undefined;
2156
+ afterCopyMethod?: ((params: {
2157
+ isCut: boolean;
2158
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2159
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2160
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2161
+ }) => boolean) | undefined;
2162
+ cutMethod?: ((params: {
2163
+ row: VxeTableDataRow;
2164
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2165
+ cellValue: any;
2166
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2167
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2168
+ }) => void) | undefined;
2169
+ beforeCutMethod?: ((params: {
2170
+ activeArea: VxeTableProDefines.MouseActiveCellArea<VxeTableDataRow>;
2171
+ cutAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2172
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2173
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2174
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2175
+ }) => boolean) | undefined;
2176
+ afterCutMethod?: ((params: {
2177
+ cutAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2178
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2179
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2180
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2181
+ }) => void) | undefined;
2182
+ pasteMethod?: ((params: {
2183
+ isCut: boolean;
2184
+ row: VxeTableDataRow;
2185
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2186
+ cellValue: any;
2187
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2188
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2189
+ }) => void) | undefined;
2190
+ beforePasteMethod?: ((params: {
2191
+ isCut: boolean;
2192
+ activeArea: VxeTableProDefines.MouseActiveCellArea<VxeTableDataRow>;
2193
+ cutAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2194
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2195
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2196
+ cellValues: string[][];
2197
+ pasteCells: string[][];
2198
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2199
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2200
+ }) => boolean) | undefined;
2201
+ afterPasteMethod?: ((params: {
2202
+ isCut: boolean;
2203
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2204
+ cutAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2205
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2206
+ cellValues: any[][];
2207
+ pasteCells: string[][];
2208
+ insertRows: VxeTableDataRow[];
2209
+ insertColumns: VxeTableDefines.ColumnInfo<VxeTableDataRow>[];
2210
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2211
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2212
+ }) => boolean) | undefined;
2213
+ createRowsMethod?: ((params: {
2214
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2215
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2216
+ cellValues: any[][];
2217
+ pasteCells: string[][];
2218
+ insertRows: VxeTableDataRow[];
2219
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2220
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2221
+ }) => VxeTableDataRow[]) | undefined;
2222
+ createColumnsMethod?: ((params: {
2223
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2224
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
2225
+ cellValues: any[][];
2226
+ pasteCells: string[][];
2227
+ insertColumns: VxeTableDefines.ColumnOptions<VxeTableDataRow>[];
2228
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2229
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2230
+ }) => VxeTableDefines.ColumnOptions<VxeTableDataRow>[]) | undefined;
2231
+ } | undefined;
2232
+ validConfig?: {
2233
+ autoPos?: boolean | undefined;
2234
+ showMessage?: boolean | undefined;
2235
+ message?: string | undefined;
2236
+ maxWidth?: number | undefined;
2237
+ } | undefined;
2238
+ editRules?: VxeTablePropTypes.EditRules<VxeTableDataRow> | undefined;
2239
+ emptyText?: string | undefined;
2240
+ emptyRender?: {
2241
+ name?: string | undefined;
2242
+ props?: {
2243
+ [key: string]: any;
2244
+ } | undefined;
2245
+ attrs?: {
2246
+ [key: string]: any;
2247
+ } | undefined;
2248
+ events?: {
2249
+ [key: string]: (...args: any[]) => any;
2250
+ } | undefined;
2251
+ children?: any[] | undefined;
2252
+ cellType?: "string" | "number" | undefined;
2253
+ } | undefined;
2254
+ loadingConfig?: {
2255
+ icon?: string | undefined;
2256
+ text?: string | undefined;
2257
+ } | undefined;
2258
+ fit?: boolean | undefined;
2259
+ animat?: boolean | undefined;
2260
+ delayHover?: number | undefined;
2261
+ scrollX?: {
2262
+ gt?: number | undefined;
2263
+ oSize?: number | undefined;
2264
+ enabled?: boolean | undefined;
2265
+ scrollToLeftOnChange?: boolean | undefined;
2266
+ } | undefined;
2267
+ scrollY?: {
2268
+ mode?: "default" | "wheel" | undefined;
2269
+ gt?: number | undefined;
2270
+ oSize?: number | undefined;
2271
+ enabled?: boolean | undefined;
2272
+ scrollToTopOnChange?: boolean | undefined;
2273
+ rHeight?: number | undefined;
2274
+ adaptive?: boolean | undefined;
2275
+ } | undefined;
2276
+ proxyConfig?: {
2277
+ [x: string]: any;
2278
+ enabled?: boolean | undefined;
2279
+ autoLoad?: boolean | undefined;
2280
+ message?: boolean | undefined;
2281
+ seq?: boolean | undefined;
2282
+ sort?: boolean | undefined;
2283
+ filter?: boolean | undefined;
2284
+ form?: boolean | undefined;
2285
+ props?: {
2286
+ list?: string | null | undefined;
2287
+ result?: string | undefined;
2288
+ total?: string | undefined;
2289
+ message?: string | undefined;
2290
+ } | undefined;
2291
+ ajax?: {
2292
+ query?: ((params: VxeGridPropTypes.ProxyAjaxQueryParams<VxeTableDataRow>, ...args: any[]) => Promise<any>) | undefined;
2293
+ queryAll?: ((params: VxeGridPropTypes.ProxyAjaxQueryAllParams<VxeTableDataRow>, ...args: any[]) => Promise<any>) | undefined;
2294
+ delete?: ((params: VxeGridPropTypes.ProxyAjaxDeleteParams<VxeTableDataRow>, ...args: any[]) => Promise<any>) | undefined;
2295
+ save?: ((params: VxeGridPropTypes.ProxyAjaxSaveParams<VxeTableDataRow>, ...args: any[]) => Promise<any>) | undefined;
2296
+ } | undefined;
2297
+ } | undefined;
2298
+ toolbarConfig?: {
2299
+ enabled?: boolean | undefined;
2300
+ zoom?: boolean | {
2301
+ escRestore?: boolean | undefined;
2302
+ iconIn?: string | undefined;
2303
+ iconOut?: string | undefined;
2304
+ } | undefined;
2305
+ slots?: {
2306
+ buttons?: string | ((params: {
2307
+ [key: string]: any;
2308
+ }) => JSX.Element | VNode<RendererNode, RendererElement, {
2309
+ [key: string]: any;
2310
+ }>[] | string[] | JSX.Element[]) | undefined;
2311
+ tools?: string | ((params: {
2312
+ [key: string]: any;
2313
+ }) => JSX.Element | VNode<RendererNode, RendererElement, {
2314
+ [key: string]: any;
2315
+ }>[] | string[] | JSX.Element[]) | undefined;
2316
+ } | undefined;
2317
+ size?: SizeType | undefined;
2318
+ id?: string | undefined;
2319
+ loading?: boolean | undefined;
2320
+ resizable?: boolean | {
2321
+ storage?: boolean | undefined;
2322
+ } | undefined;
2323
+ refresh?: boolean | {
2324
+ queryMethod?: ((params: {
2325
+ [key: string]: any;
2326
+ }) => any) | undefined;
2327
+ code?: "" | "query" | "reload" | null | undefined;
2328
+ icon?: string | undefined;
2329
+ iconLoading?: string | undefined;
2330
+ query?: ((params: {
2331
+ [key: string]: any;
2332
+ }) => Promise<any>) | undefined;
2333
+ } | undefined;
2334
+ import?: boolean | {
2335
+ icon?: string | undefined;
2336
+ } | undefined;
2337
+ export?: boolean | {
2338
+ icon?: string | undefined;
2339
+ } | undefined;
2340
+ print?: boolean | {
2341
+ icon?: string | undefined;
2342
+ } | undefined;
2343
+ custom?: boolean | {
2344
+ trigger?: string | undefined;
2345
+ immediate?: boolean | undefined;
2346
+ storage?: boolean | undefined;
2347
+ checkMethod?: ((params: {
2348
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2349
+ }) => boolean) | undefined;
2350
+ isFooter?: boolean | undefined;
2351
+ icon?: string | undefined;
2352
+ } | undefined;
2353
+ buttons?: {
2354
+ dropdowns?: any[] | undefined;
2355
+ buttonRender?: {
2356
+ name?: string | undefined;
2357
+ props?: {
2358
+ [key: string]: any;
2359
+ } | undefined;
2360
+ attrs?: {
2361
+ [key: string]: any;
2362
+ } | undefined;
2363
+ events?: {
2364
+ [key: string]: (...args: any[]) => any;
2365
+ } | undefined;
2366
+ children?: any[] | undefined;
2367
+ cellType?: "string" | "number" | undefined;
2368
+ } | undefined;
2369
+ code?: string | undefined;
2370
+ visible?: boolean | undefined;
2371
+ params?: any;
2372
+ size?: SizeType | undefined;
2373
+ type?: string | undefined;
2374
+ className?: string | undefined;
2375
+ name?: VxeButtonPropTypes.Name | undefined;
2376
+ content?: string | undefined;
2377
+ placement?: string | undefined;
2378
+ status?: string | undefined;
2379
+ icon?: string | undefined;
2380
+ round?: boolean | undefined;
2381
+ circle?: boolean | undefined;
2382
+ disabled?: boolean | undefined;
2383
+ loading?: boolean | undefined;
2384
+ destroyOnClose?: boolean | undefined;
2385
+ transfer?: boolean | undefined;
2386
+ }[] | undefined;
2387
+ tools?: {
2388
+ dropdowns?: any[] | undefined;
2389
+ toolRender?: {
2390
+ name?: string | undefined;
2391
+ props?: {
2392
+ [key: string]: any;
2393
+ } | undefined;
2394
+ attrs?: {
2395
+ [key: string]: any;
2396
+ } | undefined;
2397
+ events?: {
2398
+ [key: string]: (...args: any[]) => any;
2399
+ } | undefined;
2400
+ children?: any[] | undefined;
2401
+ cellType?: "string" | "number" | undefined;
2402
+ } | undefined;
2403
+ code?: string | undefined;
2404
+ visible?: boolean | undefined;
2405
+ params?: any;
2406
+ size?: SizeType | undefined;
2407
+ type?: string | undefined;
2408
+ className?: string | undefined;
2409
+ name?: VxeButtonPropTypes.Name | undefined;
2410
+ content?: string | undefined;
2411
+ placement?: string | undefined;
2412
+ status?: string | undefined;
2413
+ icon?: string | undefined;
2414
+ round?: boolean | undefined;
2415
+ circle?: boolean | undefined;
2416
+ disabled?: boolean | undefined;
2417
+ loading?: boolean | undefined;
2418
+ destroyOnClose?: boolean | undefined;
2419
+ transfer?: boolean | undefined;
2420
+ }[] | undefined;
2421
+ perfect?: boolean | undefined;
2422
+ className?: VxeToolbarPropTypes.ClassName | undefined;
2423
+ } | undefined;
2424
+ formConfig?: {
2425
+ enabled?: boolean | undefined;
2426
+ items?: {
2427
+ title?: string | undefined;
2428
+ field?: string | undefined;
2429
+ span?: VxeFormPropTypes.Span | undefined;
2430
+ align?: VxeFormPropTypes.Align | undefined;
2431
+ titleAlign?: VxeFormPropTypes.Align | undefined;
2432
+ titleWidth?: VxeFormPropTypes.TitleWidth | undefined;
2433
+ titleColon?: boolean | undefined;
2434
+ titleAsterisk?: boolean | undefined;
2435
+ showTitle?: boolean | undefined;
2436
+ className?: VxeFormItemPropTypes.ClassName | undefined;
2437
+ contentClassName?: VxeFormItemPropTypes.ContentClassName | undefined;
2438
+ contentStyle?: VxeFormItemPropTypes.ContentStyle | undefined;
2439
+ titleClassName?: VxeFormItemPropTypes.TitleClassName | undefined;
2440
+ titleStyle?: VxeFormItemPropTypes.TitleStyle | undefined;
2441
+ titlePrefix?: {
2442
+ useHTML?: boolean | undefined;
2443
+ content?: VxeTooltipPropTypes.Content | undefined;
2444
+ enterable?: boolean | undefined;
2445
+ theme?: string | undefined;
2446
+ icon?: string | undefined;
2447
+ message?: string | undefined;
2448
+ } | undefined;
2449
+ titleSuffix?: {
2450
+ useHTML?: boolean | undefined;
2451
+ content?: VxeTooltipPropTypes.Content | undefined;
2452
+ enterable?: boolean | undefined;
2453
+ theme?: string | undefined;
2454
+ icon?: string | undefined;
2455
+ message?: string | undefined;
2456
+ } | undefined;
2457
+ titleOverflow?: VxeFormPropTypes.TitleOverflow | undefined;
2458
+ resetValue?: any;
2459
+ visible?: boolean | undefined;
2460
+ visibleMethod?: VxeFormItemPropTypes.VisibleMethod | undefined;
2461
+ folding?: boolean | undefined;
2462
+ collapseNode?: boolean | undefined;
2463
+ itemRender?: {
2464
+ options?: any[] | undefined;
2465
+ optionProps?: {
2466
+ value?: string | undefined;
2467
+ label?: string | undefined;
2468
+ key?: string | undefined;
2469
+ } | undefined;
2470
+ optionGroups?: any[] | undefined;
2471
+ optionGroupProps?: {
2472
+ options?: string | undefined;
2473
+ label?: string | undefined;
2474
+ key?: string | undefined;
2475
+ } | undefined;
2476
+ content?: string | undefined;
2477
+ autofocus?: string | undefined;
2478
+ defaultValue?: string | number | object | any[] | {
2479
+ exec: (string: string) => RegExpExecArray | null;
2480
+ test: (string: string) => boolean;
2481
+ readonly source: string;
2482
+ readonly global: boolean;
2483
+ readonly ignoreCase: boolean;
2484
+ readonly multiline: boolean;
2485
+ lastIndex: number;
2486
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
2487
+ readonly flags: string;
2488
+ readonly sticky: boolean;
2489
+ readonly unicode: boolean;
2490
+ readonly dotAll: boolean;
2491
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2492
+ [Symbol.replace]: {
2493
+ (string: string, replaceValue: string): string;
2494
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2495
+ };
2496
+ [Symbol.search]: (string: string) => number;
2497
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2498
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2499
+ } | {
2500
+ toString: () => string;
2501
+ toDateString: () => string;
2502
+ toTimeString: () => string;
2503
+ toLocaleString: {
2504
+ (): string;
2505
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
2506
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
2507
+ };
2508
+ toLocaleDateString: {
2509
+ (): string;
2510
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
2511
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
2512
+ };
2513
+ toLocaleTimeString: {
2514
+ (): string;
2515
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
2516
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
2517
+ };
2518
+ valueOf: () => number;
2519
+ getTime: () => number;
2520
+ getFullYear: () => number;
2521
+ getUTCFullYear: () => number;
2522
+ getMonth: () => number;
2523
+ getUTCMonth: () => number;
2524
+ getDate: () => number;
2525
+ getUTCDate: () => number;
2526
+ getDay: () => number;
2527
+ getUTCDay: () => number;
2528
+ getHours: () => number;
2529
+ getUTCHours: () => number;
2530
+ getMinutes: () => number;
2531
+ getUTCMinutes: () => number;
2532
+ getSeconds: () => number;
2533
+ getUTCSeconds: () => number;
2534
+ getMilliseconds: () => number;
2535
+ getUTCMilliseconds: () => number;
2536
+ getTimezoneOffset: () => number;
2537
+ setTime: (time: number) => number;
2538
+ setMilliseconds: (ms: number) => number;
2539
+ setUTCMilliseconds: (ms: number) => number;
2540
+ setSeconds: (sec: number, ms?: number | undefined) => number;
2541
+ setUTCSeconds: (sec: number, ms?: number | undefined) => number;
2542
+ setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
2543
+ setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
2544
+ setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
2545
+ setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
2546
+ setDate: (date: number) => number;
2547
+ setUTCDate: (date: number) => number;
2548
+ setMonth: (month: number, date?: number | undefined) => number;
2549
+ setUTCMonth: (month: number, date?: number | undefined) => number;
2550
+ setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
2551
+ setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
2552
+ toUTCString: () => string;
2553
+ toISOString: () => string;
2554
+ toJSON: (key?: any) => string;
2555
+ [Symbol.toPrimitive]: {
2556
+ (hint: "default"): string;
2557
+ (hint: "string"): string;
2558
+ (hint: "number"): number;
2559
+ (hint: string): string | number;
2560
+ };
2561
+ } | ((params: {
2562
+ item: VxeFormItemProps;
2563
+ }) => any) | null | undefined;
2564
+ name?: string | undefined;
2565
+ props?: {
2566
+ [key: string]: any;
2567
+ } | undefined;
2568
+ attrs?: {
2569
+ [key: string]: any;
2570
+ } | undefined;
2571
+ events?: {
2572
+ [key: string]: (...args: any[]) => any;
2573
+ } | undefined;
2574
+ children?: any[] | undefined;
2575
+ cellType?: "string" | "number" | undefined;
2576
+ } | undefined;
2577
+ slots?: {
2578
+ title?: string | ((params: FormItemTitleRenderParams) => VNode<RendererNode, RendererElement, {
2579
+ [key: string]: any;
2580
+ }>[] | string[] | JSX.Element[]) | null | undefined;
2581
+ default?: string | ((params: FormItemContentRenderParams) => VNode<RendererNode, RendererElement, {
2582
+ [key: string]: any;
2583
+ }>[] | string[] | JSX.Element[]) | null | undefined;
2584
+ } | undefined;
2585
+ children?: any[] | undefined;
2586
+ }[] | undefined;
2587
+ size?: SizeType | undefined;
2588
+ collapseStatus?: boolean | undefined;
2589
+ loading?: boolean | undefined;
2590
+ data?: any;
2591
+ span?: VxeFormPropTypes.Span | undefined;
2592
+ align?: VxeFormPropTypes.Align | undefined;
2593
+ titleAlign?: VxeFormPropTypes.Align | undefined;
2594
+ titleWidth?: VxeFormPropTypes.TitleWidth | undefined;
2595
+ titleColon?: boolean | undefined;
2596
+ titleAsterisk?: boolean | undefined;
2597
+ titleOverflow?: VxeFormPropTypes.TitleOverflow | undefined;
2598
+ className?: VxeFormPropTypes.ClassName | undefined;
2599
+ readonly?: boolean | undefined;
2600
+ rules?: VxeFormPropTypes.Rules | undefined;
2601
+ preventSubmit?: boolean | undefined;
2602
+ validConfig?: {
2603
+ autoPos?: boolean | undefined;
2604
+ showMessage?: boolean | undefined;
2605
+ } | undefined;
2606
+ tooltipConfig?: {
2607
+ theme?: "dark" | "light" | undefined;
2608
+ enterable?: boolean | undefined;
2609
+ leaveDelay?: number | undefined;
2610
+ leaveMethod?: ((params: {
2611
+ $event: Event;
2612
+ }) => boolean) | undefined;
2613
+ } | undefined;
2614
+ customLayout?: boolean | undefined;
2615
+ } | undefined;
2616
+ zoomConfig?: {
2617
+ escRestore?: boolean | undefined;
2618
+ } | undefined;
2619
+ editConfig?: {
2620
+ icon?: string | undefined;
2621
+ enabled?: boolean | undefined;
2622
+ trigger?: "" | "click" | "manual" | "dblclick" | null | undefined;
2623
+ showIcon?: boolean | undefined;
2624
+ mode?: string | undefined;
2625
+ showStatus?: boolean | undefined;
2626
+ showUpdateStatus?: boolean | undefined;
2627
+ showInsertStatus?: boolean | undefined;
2628
+ showAsterisk?: boolean | undefined;
2629
+ autoClear?: boolean | undefined;
2630
+ activeMethod?: ((params: {
2631
+ row: VxeTableDataRow;
2632
+ rowIndex: number;
2633
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2634
+ columnIndex: number;
2635
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
2636
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
2637
+ }) => boolean) | undefined;
2638
+ beforeEditMethod?: GlobalPageLayoutTypes.MixBeforeEditMethod | undefined;
2639
+ } | undefined;
2640
+ } | undefined;
2641
+ } | undefined;
2642
+ show?: boolean | undefined;
2643
+ shake?: boolean | undefined;
2644
+ slot?: boolean | undefined;
2645
+ enableTile?: "0" | "1" | undefined;
2646
+ columns?: {
2647
+ [x: string]: unknown;
2648
+ groupCode: string;
2649
+ title: string;
2650
+ fieldLabelI18nKey?: string | undefined;
2651
+ field: string;
2652
+ fieldType?: string | undefined;
2653
+ helpText?: string | undefined;
2654
+ required?: "0" | "1" | undefined;
2655
+ regex?: string | {
2656
+ exec: (string: string) => RegExpExecArray | null;
2657
+ test: (string: string) => boolean;
2658
+ readonly source: string;
2659
+ readonly global: boolean;
2660
+ readonly ignoreCase: boolean;
2661
+ readonly multiline: boolean;
2662
+ lastIndex: number;
2663
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
2664
+ readonly flags: string;
2665
+ readonly sticky: boolean;
2666
+ readonly unicode: boolean;
2667
+ readonly dotAll: boolean;
2668
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2669
+ [Symbol.replace]: {
2670
+ (string: string, replaceValue: string): string;
2671
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2672
+ };
2673
+ [Symbol.search]: (string: string) => number;
2674
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2675
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2676
+ } | undefined;
2677
+ alertMsg?: string | undefined;
2678
+ callback?: ((ctx: {
2679
+ attrs: {
2680
+ [x: string]: unknown;
2681
+ };
2682
+ slots: Readonly<{
2683
+ [name: string]: Slot<any> | undefined;
2684
+ }>;
2685
+ emit: (event: string, ...args: any[]) => void;
2686
+ expose: (exposed?: Record<string, any> | undefined) => void;
2687
+ } | {
2688
+ attrs: {
2689
+ [x: string]: unknown;
2690
+ };
2691
+ slots: Readonly<{
2692
+ [name: string]: Slot<any> | undefined;
2693
+ }>;
2694
+ emit: (event: string, ...args: any[]) => void;
2695
+ expose: (exposed?: Record<string, any> | undefined) => void;
2696
+ }, payload: GlobalPageLayoutTypes.VxePayload) => void) | undefined;
2697
+ }[] | undefined;
2698
+ formFields?: {
2699
+ [x: string]: unknown;
2700
+ groupCode: string;
2701
+ fieldType: string;
2702
+ fieldLabel: string;
2703
+ fieldName: string;
2704
+ helpText?: string | undefined;
2705
+ required?: "0" | "1" | undefined;
2706
+ regex?: {
2707
+ exec: (string: string) => RegExpExecArray | null;
2708
+ test: (string: string) => boolean;
2709
+ readonly source: string;
2710
+ readonly global: boolean;
2711
+ readonly ignoreCase: boolean;
2712
+ readonly multiline: boolean;
2713
+ lastIndex: number;
2714
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
2715
+ readonly flags: string;
2716
+ readonly sticky: boolean;
2717
+ readonly unicode: boolean;
2718
+ readonly dotAll: boolean;
2719
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2720
+ [Symbol.replace]: {
2721
+ (string: string, replaceValue: string): string;
2722
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2723
+ };
2724
+ [Symbol.search]: (string: string) => number;
2725
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2726
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2727
+ } | undefined;
2728
+ alertMsg?: string | undefined;
2729
+ callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2730
+ }[] | undefined;
2731
+ }[] | undefined;
2732
+ formFields?: {
2733
+ [x: string]: unknown;
2734
+ groupCode: string;
2735
+ fieldType: string;
2736
+ fieldLabel: string;
2737
+ fieldName: string;
2738
+ helpText?: string | undefined;
2739
+ required?: "0" | "1" | undefined;
2740
+ regex?: {
2741
+ exec: (string: string) => RegExpExecArray | null;
2742
+ test: (string: string) => boolean;
2743
+ readonly source: string;
2744
+ readonly global: boolean;
2745
+ readonly ignoreCase: boolean;
2746
+ readonly multiline: boolean;
2747
+ lastIndex: number;
2748
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
2749
+ readonly flags: string;
2750
+ readonly sticky: boolean;
2751
+ readonly unicode: boolean;
2752
+ readonly dotAll: boolean;
2753
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2754
+ [Symbol.replace]: {
2755
+ (string: string, replaceValue: string): string;
2756
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2757
+ };
2758
+ [Symbol.search]: (string: string) => number;
2759
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2760
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2761
+ } | undefined;
2762
+ alertMsg?: string | undefined;
2763
+ callback?: ((ctx: ComponentInternalInstance | null, payload: GlobalPageLayoutTypes.ValuePayload) => void) | undefined;
2764
+ }[] | undefined;
2765
+ itemColumns?: {
2766
+ [x: string]: unknown;
2767
+ groupCode: string;
2768
+ title: string;
2769
+ fieldLabelI18nKey?: string | undefined;
2770
+ field: string;
2771
+ fieldType?: string | undefined;
2772
+ helpText?: string | undefined;
2773
+ required?: "0" | "1" | undefined;
2774
+ regex?: string | {
2775
+ exec: (string: string) => RegExpExecArray | null;
2776
+ test: (string: string) => boolean;
2777
+ readonly source: string;
2778
+ readonly global: boolean;
2779
+ readonly ignoreCase: boolean;
2780
+ readonly multiline: boolean;
2781
+ lastIndex: number;
2782
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
2783
+ readonly flags: string;
2784
+ readonly sticky: boolean;
2785
+ readonly unicode: boolean;
2786
+ readonly dotAll: boolean;
2787
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2788
+ [Symbol.replace]: {
2789
+ (string: string, replaceValue: string): string;
2790
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2791
+ };
2792
+ [Symbol.search]: (string: string) => number;
2793
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2794
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2795
+ } | undefined;
2796
+ alertMsg?: string | undefined;
2797
+ callback?: ((ctx: {
2798
+ attrs: {
2799
+ [x: string]: unknown;
2800
+ };
2801
+ slots: Readonly<{
2802
+ [name: string]: Slot<any> | undefined;
2803
+ }>;
2804
+ emit: (event: string, ...args: any[]) => void;
2805
+ expose: (exposed?: Record<string, any> | undefined) => void;
2806
+ } | {
2807
+ attrs: {
2808
+ [x: string]: unknown;
2809
+ };
2810
+ slots: Readonly<{
2811
+ [name: string]: Slot<any> | undefined;
2812
+ }>;
2813
+ emit: (event: string, ...args: any[]) => void;
2814
+ expose: (exposed?: Record<string, any> | undefined) => void;
2815
+ }, payload: GlobalPageLayoutTypes.VxePayload) => void) | undefined;
2816
+ }[] | undefined;
2817
+ } | undefined;
2818
+ handleAfterRemoteConfig?: (<T>(args: T) => T | Promise<T>) | undefined;
2819
+ detailApi?: string | GlobalPageLayoutTypes.DetailApiFunctionType | undefined;
2820
+ withoutIdDetailApi?: string | undefined;
2821
+ handleAfterDetailApiResponse?: ((args: GlobalPageLayoutTypes.Expose) => void) | undefined;
2822
+ pageButtons?: {
2823
+ title: string;
2824
+ key: string | symbol;
2825
+ args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
2826
+ [x: string]: unknown;
2827
+ url: string;
2828
+ };
2829
+ authorityCode?: string | undefined;
2830
+ attrs?: GlobalPageLayoutTypes.RecordStringNumber | undefined;
2831
+ icon?: {
2832
+ type: string;
2833
+ size: number;
2834
+ color?: string | undefined;
2835
+ } | undefined;
2836
+ emit?: boolean | undefined;
2837
+ emitKey?: string | undefined;
2838
+ showMessage?: boolean | undefined;
2839
+ checkBefore?: boolean | undefined;
2840
+ confirm?: {
2841
+ title: string;
2842
+ content: string;
2843
+ } | undefined;
2844
+ isExistFrozenSource?: boolean | undefined;
2845
+ isExistFrozenSourceUrl?: string | undefined;
2846
+ isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordStringNumber) => GlobalPageLayoutTypes.RecordStringNumber) | undefined;
2847
+ disabled?: ((pageData: GlobalPageLayoutTypes.RecordStringNumber) => boolean) | undefined;
2848
+ handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
2849
+ handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
2850
+ callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
2851
+ }[] | undefined;
2852
+ pageButtonPosition?: GlobalPageLayoutTypes.PageButtonPosition | undefined;
2853
+ hasAdd?: boolean | undefined;
2854
+ isUseLocalData?: boolean | undefined;
2855
+ localData?: GlobalPageLayoutTypes.RecordStringNumber | undefined;
2856
+ showBackIcon?: boolean | undefined;
2857
+ };
2858
+ pageData: Ref<GlobalPageLayoutTypes.RecordStringNumber>;
2859
+ layoutConfig: Ref<GlobalPageLayoutTypes.LayoutConfig>;
2860
+ defaultValues: Ref<GlobalPageLayoutTypes.RecordStringNumber>;
2861
+ stepTriggerValidate: () => void;
2862
+ composeSave: () => void;
2863
+ customLoading: Ref<boolean>;
2864
+ handleCustomSave: () => void;
2865
+ handleValidateSuccess: (button: GlobalPageLayoutTypes.PageButton) => void;
2866
+ getRoleOptains: () => Promise<void>;
2867
+ getGroupOptains: () => Promise<void>;
2868
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2869
+ currentRow: {
2870
+ type: null;
2871
+ required: true;
2872
+ };
2873
+ userInfo: {
2874
+ type: null;
2875
+ required: true;
2876
+ };
2877
+ }>>, {}, {}>;
2878
+ export default _sfc_main;