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