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