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