el-plus 0.0.25 → 0.0.26

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 (50) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/index.full.js +2 -2
  3. package/dist/index.full.min.js +1 -1
  4. package/dist/index.full.min.mjs +1 -1
  5. package/dist/index.full.mjs +2 -2
  6. package/es/components/buttons/index.d.ts +17 -17
  7. package/es/components/buttons/src/buttons-vue.d.ts +2 -2
  8. package/es/components/custom-column/index.d.ts +12 -12
  9. package/es/components/custom-column/src/custom-column.d.ts +2 -2
  10. package/es/components/custom-column/src/custom-column.vue.d.ts +6 -6
  11. package/es/components/form/src/form.vue.d.ts +5 -5
  12. package/es/components/header/index.d.ts +14 -14
  13. package/es/components/header/src/header.vue.d.ts +3 -3
  14. package/es/components/search-list-page/index.d.ts +245 -245
  15. package/es/components/search-list-page/src/search-list-page.d.ts +4 -4
  16. package/es/components/search-list-page/src/search-list-page.vue.d.ts +26 -26
  17. package/es/components/search-list-page/src/use-search-list-page.d.ts +19 -19
  18. package/es/components/select/index.d.ts +12 -12
  19. package/es/components/select/src/select.d.ts +4 -4
  20. package/es/components/select/src/select.vue.d.ts +8 -8
  21. package/es/components/table/index.d.ts +30 -30
  22. package/es/components/table/src/table.vue.d.ts +15 -15
  23. package/es/components/title/index.d.ts +11 -11
  24. package/es/components/title/src/title.vue.d.ts +1 -1
  25. package/es/hooks/dialog/use-choose-dialog.d.ts +1 -1
  26. package/es/hooks/dialog/use-form-dialog.d.ts +1 -1
  27. package/es/package.json.mjs +1 -1
  28. package/lib/components/buttons/index.d.ts +17 -17
  29. package/lib/components/buttons/src/buttons-vue.d.ts +2 -2
  30. package/lib/components/custom-column/index.d.ts +12 -12
  31. package/lib/components/custom-column/src/custom-column.d.ts +2 -2
  32. package/lib/components/custom-column/src/custom-column.vue.d.ts +6 -6
  33. package/lib/components/form/src/form.vue.d.ts +5 -5
  34. package/lib/components/header/index.d.ts +14 -14
  35. package/lib/components/header/src/header.vue.d.ts +3 -3
  36. package/lib/components/search-list-page/index.d.ts +245 -245
  37. package/lib/components/search-list-page/src/search-list-page.d.ts +4 -4
  38. package/lib/components/search-list-page/src/search-list-page.vue.d.ts +26 -26
  39. package/lib/components/search-list-page/src/use-search-list-page.d.ts +19 -19
  40. package/lib/components/select/index.d.ts +12 -12
  41. package/lib/components/select/src/select.d.ts +4 -4
  42. package/lib/components/select/src/select.vue.d.ts +8 -8
  43. package/lib/components/table/index.d.ts +30 -30
  44. package/lib/components/table/src/table.vue.d.ts +15 -15
  45. package/lib/components/title/index.d.ts +11 -11
  46. package/lib/components/title/src/title.vue.d.ts +1 -1
  47. package/lib/hooks/dialog/use-choose-dialog.d.ts +1 -1
  48. package/lib/hooks/dialog/use-form-dialog.d.ts +1 -1
  49. package/lib/package.json.js +1 -1
  50. package/package.json +1 -1
@@ -5,17 +5,17 @@ export declare const EpSearchListPage: {
5
5
  };
6
6
  readonly showOperationColumn: BooleanConstructor;
7
7
  readonly formItemList: {
8
- readonly type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
9
- readonly default: () => import("packages/el-plus/index.js").FormItemProps[];
8
+ readonly type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
9
+ readonly default: () => import("el-plus/es/index").FormItemProps[];
10
10
  };
11
11
  readonly leftButtons: {
12
12
  readonly type: import("vue").PropType<Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
13
13
  name: string;
14
14
  prop: string;
15
15
  permission: string;
16
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
16
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
17
17
  scopedSlots: Record<string, () => import("vue").VNode>;
18
- disabled: import("packages/utils/props.js").IDisabled;
18
+ disabled: import("el-plus/es/utils/props").IDisabled;
19
19
  confirm: boolean;
20
20
  confirmText: string;
21
21
  } & {} & {
@@ -28,9 +28,9 @@ export declare const EpSearchListPage: {
28
28
  readonly type: import("vue").PropType<Partial<import("element-plus").TableColumnCtx & {
29
29
  [key: string]: any;
30
30
  required: boolean | (() => boolean);
31
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
31
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
32
32
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
33
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
33
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
34
34
  type: string;
35
35
  props: Record<string, any>;
36
36
  filter: boolean;
@@ -53,9 +53,9 @@ export declare const EpSearchListPage: {
53
53
  name: string;
54
54
  prop: string;
55
55
  permission: string;
56
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
56
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
57
57
  scopedSlots: Record<string, () => import("vue").VNode>;
58
- disabled: import("packages/utils/props.js").IDisabled;
58
+ disabled: import("el-plus/es/utils/props").IDisabled;
59
59
  confirm: boolean;
60
60
  confirmText: string;
61
61
  } & {} & {
@@ -69,9 +69,9 @@ export declare const EpSearchListPage: {
69
69
  name: string;
70
70
  prop: string;
71
71
  permission: string;
72
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
72
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
73
73
  scopedSlots: Record<string, () => import("vue").VNode>;
74
- disabled: import("packages/utils/props.js").IDisabled;
74
+ disabled: import("el-plus/es/utils/props").IDisabled;
75
75
  confirm: boolean;
76
76
  confirmText: string;
77
77
  } & {} & {
@@ -104,10 +104,10 @@ export declare const EpSearchListPage: {
104
104
  readonly default: true;
105
105
  };
106
106
  readonly api: {
107
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
107
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
108
108
  };
109
109
  readonly method: {
110
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
110
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
111
111
  };
112
112
  readonly reqData: {
113
113
  type: ObjectConstructor;
@@ -116,10 +116,10 @@ export declare const EpSearchListPage: {
116
116
  type: ObjectConstructor;
117
117
  };
118
118
  readonly reqBefore: {
119
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
119
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
120
120
  };
121
121
  readonly reqAfter: {
122
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
122
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
123
123
  };
124
124
  }>> & Readonly<{}>, {
125
125
  search: (isInitSearch?: boolean) => Promise<void>;
@@ -140,9 +140,9 @@ export declare const EpSearchListPage: {
140
140
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
141
141
  [key: string]: any;
142
142
  required: boolean | (() => boolean);
143
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
143
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
144
144
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
145
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
145
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
146
146
  type: string;
147
147
  props: Record<string, any>;
148
148
  filter: boolean;
@@ -180,7 +180,7 @@ export declare const EpSearchListPage: {
180
180
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
181
181
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
182
182
  readonly appendSizeTo?: string | undefined;
183
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
183
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
184
184
  'update:current-page': (val: number) => boolean;
185
185
  'update:page-size': (val: number) => boolean;
186
186
  'size-change': (val: number) => boolean;
@@ -195,9 +195,9 @@ export declare const EpSearchListPage: {
195
195
  name: string;
196
196
  prop: string;
197
197
  permission: string;
198
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
198
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
199
199
  scopedSlots: Record<string, () => import("vue").VNode>;
200
- disabled: import("packages/utils/props.js").IDisabled;
200
+ disabled: import("el-plus/es/utils/props").IDisabled;
201
201
  confirm: boolean;
202
202
  confirmText: string;
203
203
  } & {} & {
@@ -208,9 +208,9 @@ export declare const EpSearchListPage: {
208
208
  name: string;
209
209
  prop: string;
210
210
  permission: string;
211
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
211
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
212
212
  scopedSlots: Record<string, () => import("vue").VNode>;
213
- disabled: import("packages/utils/props.js").IDisabled;
213
+ disabled: import("el-plus/es/utils/props").IDisabled;
214
214
  confirm: boolean;
215
215
  confirmText: string;
216
216
  } & {} & {
@@ -247,9 +247,9 @@ export declare const EpSearchListPage: {
247
247
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
248
248
  [key: string]: any;
249
249
  required: boolean | (() => boolean);
250
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
250
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
251
251
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
252
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
252
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
253
253
  type: string;
254
254
  props: Record<string, any>;
255
255
  filter: boolean;
@@ -287,7 +287,7 @@ export declare const EpSearchListPage: {
287
287
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
288
288
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
289
289
  readonly appendSizeTo?: string | undefined;
290
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
290
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
291
291
  'update:current-page': (val: number) => boolean;
292
292
  'update:page-size': (val: number) => boolean;
293
293
  'size-change': (val: number) => boolean;
@@ -302,9 +302,9 @@ export declare const EpSearchListPage: {
302
302
  name: string;
303
303
  prop: string;
304
304
  permission: string;
305
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
305
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
306
306
  scopedSlots: Record<string, () => import("vue").VNode>;
307
- disabled: import("packages/utils/props.js").IDisabled;
307
+ disabled: import("el-plus/es/utils/props").IDisabled;
308
308
  confirm: boolean;
309
309
  confirmText: string;
310
310
  } & {} & {
@@ -315,9 +315,9 @@ export declare const EpSearchListPage: {
315
315
  name: string;
316
316
  prop: string;
317
317
  permission: string;
318
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
318
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
319
319
  scopedSlots: Record<string, () => import("vue").VNode>;
320
- disabled: import("packages/utils/props.js").IDisabled;
320
+ disabled: import("el-plus/es/utils/props").IDisabled;
321
321
  confirm: boolean;
322
322
  confirmText: string;
323
323
  } & {} & {
@@ -340,14 +340,14 @@ export declare const EpSearchListPage: {
340
340
  readonly allowDragLastColumn: boolean;
341
341
  readonly preserveExpandedContent: boolean;
342
342
  readonly nativeScrollbar: boolean;
343
- readonly method?: import("packages/types/axios.js").Method | undefined;
343
+ readonly method?: import("el-plus/es/types/axios").Method | undefined;
344
344
  readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
345
345
  readonly width?: string | number | undefined;
346
- readonly api?: import("packages/types/axios.js").Api | undefined;
346
+ readonly api?: import("el-plus/es/types/axios").Api | undefined;
347
347
  readonly reqData?: Record<string, any> | undefined;
348
348
  readonly reqParams?: Record<string, any> | undefined;
349
- readonly reqBefore?: import("packages/types/axios.js").ReqBefore | undefined;
350
- readonly reqAfter?: import("packages/types/axios.js").ReqAfter | undefined;
349
+ readonly reqBefore?: import("el-plus/es/types/axios").ReqBefore | undefined;
350
+ readonly reqAfter?: import("el-plus/es/types/axios").ReqAfter | undefined;
351
351
  readonly rowKey?: string | ((row: any) => string) | undefined;
352
352
  readonly summaryMethod?: import("element-plus").SummaryMethod<any> | undefined;
353
353
  readonly rowClassName?: import("element-plus").ColumnCls<any> | undefined;
@@ -403,9 +403,9 @@ export declare const EpSearchListPage: {
403
403
  type: import("vue").PropType<Partial<import("element-plus").TableColumnCtx & {
404
404
  [key: string]: any;
405
405
  required: boolean | (() => boolean);
406
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
406
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
407
407
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
408
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
408
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
409
409
  type: string;
410
410
  props: Record<string, any>;
411
411
  filter: boolean;
@@ -442,7 +442,7 @@ export declare const EpSearchListPage: {
442
442
  type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
443
443
  };
444
444
  readonly paginationProps: {
445
- type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/types/utils.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
445
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
446
446
  default: () => {};
447
447
  };
448
448
  readonly showPagination: BooleanConstructor;
@@ -452,9 +452,9 @@ export declare const EpSearchListPage: {
452
452
  name: string;
453
453
  prop: string;
454
454
  permission: string;
455
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
455
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
456
456
  scopedSlots: Record<string, () => import("vue").VNode>;
457
- disabled: import("packages/utils/props.js").IDisabled;
457
+ disabled: import("el-plus/es/utils/props").IDisabled;
458
458
  confirm: boolean;
459
459
  confirmText: string;
460
460
  } & {} & {
@@ -468,9 +468,9 @@ export declare const EpSearchListPage: {
468
468
  name: string;
469
469
  prop: string;
470
470
  permission: string;
471
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
471
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
472
472
  scopedSlots: Record<string, () => import("vue").VNode>;
473
- disabled: import("packages/utils/props.js").IDisabled;
473
+ disabled: import("el-plus/es/utils/props").IDisabled;
474
474
  confirm: boolean;
475
475
  confirmText: string;
476
476
  } & {} & {
@@ -487,10 +487,10 @@ export declare const EpSearchListPage: {
487
487
  type: import("vue").PropType<number | string>;
488
488
  };
489
489
  readonly api: {
490
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
490
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
491
491
  };
492
492
  readonly method: {
493
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
493
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
494
494
  };
495
495
  readonly reqData: {
496
496
  type: ObjectConstructor;
@@ -499,10 +499,10 @@ export declare const EpSearchListPage: {
499
499
  type: ObjectConstructor;
500
500
  };
501
501
  readonly reqBefore: {
502
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
502
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
503
503
  };
504
504
  readonly reqAfter: {
505
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
505
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
506
506
  };
507
507
  readonly size: {
508
508
  default: string;
@@ -1225,9 +1225,9 @@ export declare const EpSearchListPage: {
1225
1225
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
1226
1226
  [key: string]: any;
1227
1227
  required: boolean | (() => boolean);
1228
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
1228
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
1229
1229
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
1230
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
1230
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
1231
1231
  type: string;
1232
1232
  props: Record<string, any>;
1233
1233
  filter: boolean;
@@ -1265,7 +1265,7 @@ export declare const EpSearchListPage: {
1265
1265
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1266
1266
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1267
1267
  readonly appendSizeTo?: string | undefined;
1268
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
1268
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
1269
1269
  'update:current-page': (val: number) => boolean;
1270
1270
  'update:page-size': (val: number) => boolean;
1271
1271
  'size-change': (val: number) => boolean;
@@ -1280,9 +1280,9 @@ export declare const EpSearchListPage: {
1280
1280
  name: string;
1281
1281
  prop: string;
1282
1282
  permission: string;
1283
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
1283
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
1284
1284
  scopedSlots: Record<string, () => import("vue").VNode>;
1285
- disabled: import("packages/utils/props.js").IDisabled;
1285
+ disabled: import("el-plus/es/utils/props").IDisabled;
1286
1286
  confirm: boolean;
1287
1287
  confirmText: string;
1288
1288
  } & {} & {
@@ -1293,9 +1293,9 @@ export declare const EpSearchListPage: {
1293
1293
  name: string;
1294
1294
  prop: string;
1295
1295
  permission: string;
1296
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
1296
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
1297
1297
  scopedSlots: Record<string, () => import("vue").VNode>;
1298
- disabled: import("packages/utils/props.js").IDisabled;
1298
+ disabled: import("el-plus/es/utils/props").IDisabled;
1299
1299
  confirm: boolean;
1300
1300
  confirmText: string;
1301
1301
  } & {} & {
@@ -1352,9 +1352,9 @@ export declare const EpSearchListPage: {
1352
1352
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
1353
1353
  [key: string]: any;
1354
1354
  required: boolean | (() => boolean);
1355
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
1355
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
1356
1356
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
1357
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
1357
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
1358
1358
  type: string;
1359
1359
  props: Record<string, any>;
1360
1360
  filter: boolean;
@@ -1392,7 +1392,7 @@ export declare const EpSearchListPage: {
1392
1392
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1393
1393
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1394
1394
  readonly appendSizeTo?: string | undefined;
1395
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
1395
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
1396
1396
  'update:current-page': (val: number) => boolean;
1397
1397
  'update:page-size': (val: number) => boolean;
1398
1398
  'size-change': (val: number) => boolean;
@@ -1407,9 +1407,9 @@ export declare const EpSearchListPage: {
1407
1407
  name: string;
1408
1408
  prop: string;
1409
1409
  permission: string;
1410
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
1410
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
1411
1411
  scopedSlots: Record<string, () => import("vue").VNode>;
1412
- disabled: import("packages/utils/props.js").IDisabled;
1412
+ disabled: import("el-plus/es/utils/props").IDisabled;
1413
1413
  confirm: boolean;
1414
1414
  confirmText: string;
1415
1415
  } & {} & {
@@ -1420,9 +1420,9 @@ export declare const EpSearchListPage: {
1420
1420
  name: string;
1421
1421
  prop: string;
1422
1422
  permission: string;
1423
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
1423
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
1424
1424
  scopedSlots: Record<string, () => import("vue").VNode>;
1425
- disabled: import("packages/utils/props.js").IDisabled;
1425
+ disabled: import("el-plus/es/utils/props").IDisabled;
1426
1426
  confirm: boolean;
1427
1427
  confirmText: string;
1428
1428
  } & {} & {
@@ -1451,9 +1451,9 @@ export declare const EpSearchListPage: {
1451
1451
  type: import("vue").PropType<Partial<import("element-plus").TableColumnCtx & {
1452
1452
  [key: string]: any;
1453
1453
  required: boolean | (() => boolean);
1454
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
1454
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
1455
1455
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
1456
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
1456
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
1457
1457
  type: string;
1458
1458
  props: Record<string, any>;
1459
1459
  filter: boolean;
@@ -1490,7 +1490,7 @@ export declare const EpSearchListPage: {
1490
1490
  type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
1491
1491
  };
1492
1492
  readonly paginationProps: {
1493
- type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/types/utils.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
1493
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
1494
1494
  default: () => {};
1495
1495
  };
1496
1496
  readonly showPagination: BooleanConstructor;
@@ -1500,9 +1500,9 @@ export declare const EpSearchListPage: {
1500
1500
  name: string;
1501
1501
  prop: string;
1502
1502
  permission: string;
1503
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
1503
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
1504
1504
  scopedSlots: Record<string, () => import("vue").VNode>;
1505
- disabled: import("packages/utils/props.js").IDisabled;
1505
+ disabled: import("el-plus/es/utils/props").IDisabled;
1506
1506
  confirm: boolean;
1507
1507
  confirmText: string;
1508
1508
  } & {} & {
@@ -1516,9 +1516,9 @@ export declare const EpSearchListPage: {
1516
1516
  name: string;
1517
1517
  prop: string;
1518
1518
  permission: string;
1519
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
1519
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
1520
1520
  scopedSlots: Record<string, () => import("vue").VNode>;
1521
- disabled: import("packages/utils/props.js").IDisabled;
1521
+ disabled: import("el-plus/es/utils/props").IDisabled;
1522
1522
  confirm: boolean;
1523
1523
  confirmText: string;
1524
1524
  } & {} & {
@@ -1535,10 +1535,10 @@ export declare const EpSearchListPage: {
1535
1535
  type: import("vue").PropType<number | string>;
1536
1536
  };
1537
1537
  readonly api: {
1538
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
1538
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
1539
1539
  };
1540
1540
  readonly method: {
1541
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
1541
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
1542
1542
  };
1543
1543
  readonly reqData: {
1544
1544
  type: ObjectConstructor;
@@ -1547,10 +1547,10 @@ export declare const EpSearchListPage: {
1547
1547
  type: ObjectConstructor;
1548
1548
  };
1549
1549
  readonly reqBefore: {
1550
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
1550
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
1551
1551
  };
1552
1552
  readonly reqAfter: {
1553
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
1553
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
1554
1554
  };
1555
1555
  readonly size: {
1556
1556
  default: string;
@@ -2278,7 +2278,7 @@ export declare const EpSearchListPage: {
2278
2278
  inlineMessage: boolean;
2279
2279
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
2280
2280
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
2281
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
2281
+ formItemList: import("el-plus/es/index").FormItemProps[];
2282
2282
  isShowFold: boolean;
2283
2283
  showFieldCount: number;
2284
2284
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -2297,7 +2297,7 @@ export declare const EpSearchListPage: {
2297
2297
  readonly inlineMessage: boolean;
2298
2298
  readonly showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
2299
2299
  readonly scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
2300
- readonly formItemList: import("packages/el-plus/index.js").FormItemProps[];
2300
+ readonly formItemList: import("el-plus/es/index").FormItemProps[];
2301
2301
  readonly isShowFold: boolean;
2302
2302
  readonly showFieldCount: number;
2303
2303
  readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -2352,8 +2352,8 @@ export declare const EpSearchListPage: {
2352
2352
  readonly __epPropKey: true;
2353
2353
  };
2354
2354
  formItemList: {
2355
- type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
2356
- default: () => import("packages/el-plus/index.js").FormItemProps[];
2355
+ type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
2356
+ default: () => import("el-plus/es/index").FormItemProps[];
2357
2357
  };
2358
2358
  isShowFold: BooleanConstructor;
2359
2359
  showFieldCount: {
@@ -2408,7 +2408,7 @@ export declare const EpSearchListPage: {
2408
2408
  inlineMessage: boolean;
2409
2409
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
2410
2410
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
2411
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
2411
+ formItemList: import("el-plus/es/index").FormItemProps[];
2412
2412
  isShowFold: boolean;
2413
2413
  showFieldCount: number;
2414
2414
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -2447,7 +2447,7 @@ export declare const EpSearchListPage: {
2447
2447
  inlineMessage: boolean;
2448
2448
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
2449
2449
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
2450
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
2450
+ formItemList: import("el-plus/es/index").FormItemProps[];
2451
2451
  isShowFold: boolean;
2452
2452
  showFieldCount: number;
2453
2453
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -2481,8 +2481,8 @@ export declare const EpSearchListPage: {
2481
2481
  readonly __epPropKey: true;
2482
2482
  };
2483
2483
  formItemList: {
2484
- type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
2485
- default: () => import("packages/el-plus/index.js").FormItemProps[];
2484
+ type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
2485
+ default: () => import("el-plus/es/index").FormItemProps[];
2486
2486
  };
2487
2487
  isShowFold: BooleanConstructor;
2488
2488
  showFieldCount: {
@@ -2529,14 +2529,14 @@ export declare const EpSearchListPage: {
2529
2529
  };
2530
2530
  }) | null>>;
2531
2531
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
2532
- readonly formItemList: import("packages/el-plus/index.js").FormItemProps[];
2532
+ readonly formItemList: import("el-plus/es/index").FormItemProps[];
2533
2533
  readonly formData: Record<string, any>;
2534
2534
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
2535
2535
  [key: string]: any;
2536
2536
  required: boolean | (() => boolean);
2537
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
2537
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
2538
2538
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
2539
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
2539
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
2540
2540
  type: string;
2541
2541
  props: Record<string, any>;
2542
2542
  filter: boolean;
@@ -2553,9 +2553,9 @@ export declare const EpSearchListPage: {
2553
2553
  name: string;
2554
2554
  prop: string;
2555
2555
  permission: string;
2556
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2556
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2557
2557
  scopedSlots: Record<string, () => import("vue").VNode>;
2558
- disabled: import("packages/utils/props.js").IDisabled;
2558
+ disabled: import("el-plus/es/utils/props").IDisabled;
2559
2559
  confirm: boolean;
2560
2560
  confirmText: string;
2561
2561
  } & {} & {
@@ -2566,9 +2566,9 @@ export declare const EpSearchListPage: {
2566
2566
  name: string;
2567
2567
  prop: string;
2568
2568
  permission: string;
2569
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2569
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2570
2570
  scopedSlots: Record<string, () => import("vue").VNode>;
2571
- disabled: import("packages/utils/props.js").IDisabled;
2571
+ disabled: import("el-plus/es/utils/props").IDisabled;
2572
2572
  confirm: boolean;
2573
2573
  confirmText: string;
2574
2574
  } & {} & {
@@ -2581,9 +2581,9 @@ export declare const EpSearchListPage: {
2581
2581
  name: string;
2582
2582
  prop: string;
2583
2583
  permission: string;
2584
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2584
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2585
2585
  scopedSlots: Record<string, () => import("vue").VNode>;
2586
- disabled: import("packages/utils/props.js").IDisabled;
2586
+ disabled: import("el-plus/es/utils/props").IDisabled;
2587
2587
  confirm: boolean;
2588
2588
  confirmText: string;
2589
2589
  } & {} & {
@@ -2604,17 +2604,17 @@ export declare const EpSearchListPage: {
2604
2604
  };
2605
2605
  readonly showOperationColumn: BooleanConstructor;
2606
2606
  readonly formItemList: {
2607
- readonly type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
2608
- readonly default: () => import("packages/el-plus/index.js").FormItemProps[];
2607
+ readonly type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
2608
+ readonly default: () => import("el-plus/es/index").FormItemProps[];
2609
2609
  };
2610
2610
  readonly leftButtons: {
2611
2611
  readonly type: import("vue").PropType<Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
2612
2612
  name: string;
2613
2613
  prop: string;
2614
2614
  permission: string;
2615
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2615
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2616
2616
  scopedSlots: Record<string, () => import("vue").VNode>;
2617
- disabled: import("packages/utils/props.js").IDisabled;
2617
+ disabled: import("el-plus/es/utils/props").IDisabled;
2618
2618
  confirm: boolean;
2619
2619
  confirmText: string;
2620
2620
  } & {} & {
@@ -2627,9 +2627,9 @@ export declare const EpSearchListPage: {
2627
2627
  readonly type: import("vue").PropType<Partial<import("element-plus").TableColumnCtx & {
2628
2628
  [key: string]: any;
2629
2629
  required: boolean | (() => boolean);
2630
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
2630
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
2631
2631
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
2632
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
2632
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
2633
2633
  type: string;
2634
2634
  props: Record<string, any>;
2635
2635
  filter: boolean;
@@ -2652,9 +2652,9 @@ export declare const EpSearchListPage: {
2652
2652
  name: string;
2653
2653
  prop: string;
2654
2654
  permission: string;
2655
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2655
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2656
2656
  scopedSlots: Record<string, () => import("vue").VNode>;
2657
- disabled: import("packages/utils/props.js").IDisabled;
2657
+ disabled: import("el-plus/es/utils/props").IDisabled;
2658
2658
  confirm: boolean;
2659
2659
  confirmText: string;
2660
2660
  } & {} & {
@@ -2668,9 +2668,9 @@ export declare const EpSearchListPage: {
2668
2668
  name: string;
2669
2669
  prop: string;
2670
2670
  permission: string;
2671
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2671
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2672
2672
  scopedSlots: Record<string, () => import("vue").VNode>;
2673
- disabled: import("packages/utils/props.js").IDisabled;
2673
+ disabled: import("el-plus/es/utils/props").IDisabled;
2674
2674
  confirm: boolean;
2675
2675
  confirmText: string;
2676
2676
  } & {} & {
@@ -2703,10 +2703,10 @@ export declare const EpSearchListPage: {
2703
2703
  readonly default: true;
2704
2704
  };
2705
2705
  readonly api: {
2706
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
2706
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
2707
2707
  };
2708
2708
  readonly method: {
2709
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
2709
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
2710
2710
  };
2711
2711
  readonly reqData: {
2712
2712
  type: ObjectConstructor;
@@ -2715,10 +2715,10 @@ export declare const EpSearchListPage: {
2715
2715
  type: ObjectConstructor;
2716
2716
  };
2717
2717
  readonly reqBefore: {
2718
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
2718
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
2719
2719
  };
2720
2720
  readonly reqAfter: {
2721
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
2721
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
2722
2722
  };
2723
2723
  }>> & Readonly<{}>, {
2724
2724
  search: (isInitSearch?: boolean) => Promise<void>;
@@ -2739,9 +2739,9 @@ export declare const EpSearchListPage: {
2739
2739
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
2740
2740
  [key: string]: any;
2741
2741
  required: boolean | (() => boolean);
2742
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
2742
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
2743
2743
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
2744
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
2744
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
2745
2745
  type: string;
2746
2746
  props: Record<string, any>;
2747
2747
  filter: boolean;
@@ -2779,7 +2779,7 @@ export declare const EpSearchListPage: {
2779
2779
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2780
2780
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2781
2781
  readonly appendSizeTo?: string | undefined;
2782
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
2782
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
2783
2783
  'update:current-page': (val: number) => boolean;
2784
2784
  'update:page-size': (val: number) => boolean;
2785
2785
  'size-change': (val: number) => boolean;
@@ -2794,9 +2794,9 @@ export declare const EpSearchListPage: {
2794
2794
  name: string;
2795
2795
  prop: string;
2796
2796
  permission: string;
2797
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2797
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2798
2798
  scopedSlots: Record<string, () => import("vue").VNode>;
2799
- disabled: import("packages/utils/props.js").IDisabled;
2799
+ disabled: import("el-plus/es/utils/props").IDisabled;
2800
2800
  confirm: boolean;
2801
2801
  confirmText: string;
2802
2802
  } & {} & {
@@ -2807,9 +2807,9 @@ export declare const EpSearchListPage: {
2807
2807
  name: string;
2808
2808
  prop: string;
2809
2809
  permission: string;
2810
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2810
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2811
2811
  scopedSlots: Record<string, () => import("vue").VNode>;
2812
- disabled: import("packages/utils/props.js").IDisabled;
2812
+ disabled: import("el-plus/es/utils/props").IDisabled;
2813
2813
  confirm: boolean;
2814
2814
  confirmText: string;
2815
2815
  } & {} & {
@@ -2846,9 +2846,9 @@ export declare const EpSearchListPage: {
2846
2846
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
2847
2847
  [key: string]: any;
2848
2848
  required: boolean | (() => boolean);
2849
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
2849
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
2850
2850
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
2851
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
2851
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
2852
2852
  type: string;
2853
2853
  props: Record<string, any>;
2854
2854
  filter: boolean;
@@ -2886,7 +2886,7 @@ export declare const EpSearchListPage: {
2886
2886
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2887
2887
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
2888
2888
  readonly appendSizeTo?: string | undefined;
2889
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
2889
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
2890
2890
  'update:current-page': (val: number) => boolean;
2891
2891
  'update:page-size': (val: number) => boolean;
2892
2892
  'size-change': (val: number) => boolean;
@@ -2901,9 +2901,9 @@ export declare const EpSearchListPage: {
2901
2901
  name: string;
2902
2902
  prop: string;
2903
2903
  permission: string;
2904
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2904
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2905
2905
  scopedSlots: Record<string, () => import("vue").VNode>;
2906
- disabled: import("packages/utils/props.js").IDisabled;
2906
+ disabled: import("el-plus/es/utils/props").IDisabled;
2907
2907
  confirm: boolean;
2908
2908
  confirmText: string;
2909
2909
  } & {} & {
@@ -2914,9 +2914,9 @@ export declare const EpSearchListPage: {
2914
2914
  name: string;
2915
2915
  prop: string;
2916
2916
  permission: string;
2917
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
2917
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
2918
2918
  scopedSlots: Record<string, () => import("vue").VNode>;
2919
- disabled: import("packages/utils/props.js").IDisabled;
2919
+ disabled: import("el-plus/es/utils/props").IDisabled;
2920
2920
  confirm: boolean;
2921
2921
  confirmText: string;
2922
2922
  } & {} & {
@@ -2939,14 +2939,14 @@ export declare const EpSearchListPage: {
2939
2939
  readonly allowDragLastColumn: boolean;
2940
2940
  readonly preserveExpandedContent: boolean;
2941
2941
  readonly nativeScrollbar: boolean;
2942
- readonly method?: import("packages/types/axios.js").Method | undefined;
2942
+ readonly method?: import("el-plus/es/types/axios").Method | undefined;
2943
2943
  readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
2944
2944
  readonly width?: string | number | undefined;
2945
- readonly api?: import("packages/types/axios.js").Api | undefined;
2945
+ readonly api?: import("el-plus/es/types/axios").Api | undefined;
2946
2946
  readonly reqData?: Record<string, any> | undefined;
2947
2947
  readonly reqParams?: Record<string, any> | undefined;
2948
- readonly reqBefore?: import("packages/types/axios.js").ReqBefore | undefined;
2949
- readonly reqAfter?: import("packages/types/axios.js").ReqAfter | undefined;
2948
+ readonly reqBefore?: import("el-plus/es/types/axios").ReqBefore | undefined;
2949
+ readonly reqAfter?: import("el-plus/es/types/axios").ReqAfter | undefined;
2950
2950
  readonly rowKey?: string | ((row: any) => string) | undefined;
2951
2951
  readonly summaryMethod?: import("element-plus").SummaryMethod<any> | undefined;
2952
2952
  readonly rowClassName?: import("element-plus").ColumnCls<any> | undefined;
@@ -3002,9 +3002,9 @@ export declare const EpSearchListPage: {
3002
3002
  type: import("vue").PropType<Partial<import("element-plus").TableColumnCtx & {
3003
3003
  [key: string]: any;
3004
3004
  required: boolean | (() => boolean);
3005
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
3005
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
3006
3006
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
3007
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
3007
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
3008
3008
  type: string;
3009
3009
  props: Record<string, any>;
3010
3010
  filter: boolean;
@@ -3041,7 +3041,7 @@ export declare const EpSearchListPage: {
3041
3041
  type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
3042
3042
  };
3043
3043
  readonly paginationProps: {
3044
- type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/types/utils.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
3044
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
3045
3045
  default: () => {};
3046
3046
  };
3047
3047
  readonly showPagination: BooleanConstructor;
@@ -3051,9 +3051,9 @@ export declare const EpSearchListPage: {
3051
3051
  name: string;
3052
3052
  prop: string;
3053
3053
  permission: string;
3054
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
3054
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
3055
3055
  scopedSlots: Record<string, () => import("vue").VNode>;
3056
- disabled: import("packages/utils/props.js").IDisabled;
3056
+ disabled: import("el-plus/es/utils/props").IDisabled;
3057
3057
  confirm: boolean;
3058
3058
  confirmText: string;
3059
3059
  } & {} & {
@@ -3067,9 +3067,9 @@ export declare const EpSearchListPage: {
3067
3067
  name: string;
3068
3068
  prop: string;
3069
3069
  permission: string;
3070
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
3070
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
3071
3071
  scopedSlots: Record<string, () => import("vue").VNode>;
3072
- disabled: import("packages/utils/props.js").IDisabled;
3072
+ disabled: import("el-plus/es/utils/props").IDisabled;
3073
3073
  confirm: boolean;
3074
3074
  confirmText: string;
3075
3075
  } & {} & {
@@ -3086,10 +3086,10 @@ export declare const EpSearchListPage: {
3086
3086
  type: import("vue").PropType<number | string>;
3087
3087
  };
3088
3088
  readonly api: {
3089
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
3089
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
3090
3090
  };
3091
3091
  readonly method: {
3092
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
3092
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
3093
3093
  };
3094
3094
  readonly reqData: {
3095
3095
  type: ObjectConstructor;
@@ -3098,10 +3098,10 @@ export declare const EpSearchListPage: {
3098
3098
  type: ObjectConstructor;
3099
3099
  };
3100
3100
  readonly reqBefore: {
3101
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
3101
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
3102
3102
  };
3103
3103
  readonly reqAfter: {
3104
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
3104
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
3105
3105
  };
3106
3106
  readonly size: {
3107
3107
  default: string;
@@ -3824,9 +3824,9 @@ export declare const EpSearchListPage: {
3824
3824
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
3825
3825
  [key: string]: any;
3826
3826
  required: boolean | (() => boolean);
3827
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
3827
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
3828
3828
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
3829
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
3829
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
3830
3830
  type: string;
3831
3831
  props: Record<string, any>;
3832
3832
  filter: boolean;
@@ -3864,7 +3864,7 @@ export declare const EpSearchListPage: {
3864
3864
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
3865
3865
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
3866
3866
  readonly appendSizeTo?: string | undefined;
3867
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
3867
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
3868
3868
  'update:current-page': (val: number) => boolean;
3869
3869
  'update:page-size': (val: number) => boolean;
3870
3870
  'size-change': (val: number) => boolean;
@@ -3879,9 +3879,9 @@ export declare const EpSearchListPage: {
3879
3879
  name: string;
3880
3880
  prop: string;
3881
3881
  permission: string;
3882
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
3882
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
3883
3883
  scopedSlots: Record<string, () => import("vue").VNode>;
3884
- disabled: import("packages/utils/props.js").IDisabled;
3884
+ disabled: import("el-plus/es/utils/props").IDisabled;
3885
3885
  confirm: boolean;
3886
3886
  confirmText: string;
3887
3887
  } & {} & {
@@ -3892,9 +3892,9 @@ export declare const EpSearchListPage: {
3892
3892
  name: string;
3893
3893
  prop: string;
3894
3894
  permission: string;
3895
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
3895
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
3896
3896
  scopedSlots: Record<string, () => import("vue").VNode>;
3897
- disabled: import("packages/utils/props.js").IDisabled;
3897
+ disabled: import("el-plus/es/utils/props").IDisabled;
3898
3898
  confirm: boolean;
3899
3899
  confirmText: string;
3900
3900
  } & {} & {
@@ -3951,9 +3951,9 @@ export declare const EpSearchListPage: {
3951
3951
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
3952
3952
  [key: string]: any;
3953
3953
  required: boolean | (() => boolean);
3954
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
3954
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
3955
3955
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
3956
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
3956
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
3957
3957
  type: string;
3958
3958
  props: Record<string, any>;
3959
3959
  filter: boolean;
@@ -3991,7 +3991,7 @@ export declare const EpSearchListPage: {
3991
3991
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
3992
3992
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
3993
3993
  readonly appendSizeTo?: string | undefined;
3994
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
3994
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
3995
3995
  'update:current-page': (val: number) => boolean;
3996
3996
  'update:page-size': (val: number) => boolean;
3997
3997
  'size-change': (val: number) => boolean;
@@ -4006,9 +4006,9 @@ export declare const EpSearchListPage: {
4006
4006
  name: string;
4007
4007
  prop: string;
4008
4008
  permission: string;
4009
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
4009
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
4010
4010
  scopedSlots: Record<string, () => import("vue").VNode>;
4011
- disabled: import("packages/utils/props.js").IDisabled;
4011
+ disabled: import("el-plus/es/utils/props").IDisabled;
4012
4012
  confirm: boolean;
4013
4013
  confirmText: string;
4014
4014
  } & {} & {
@@ -4019,9 +4019,9 @@ export declare const EpSearchListPage: {
4019
4019
  name: string;
4020
4020
  prop: string;
4021
4021
  permission: string;
4022
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
4022
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
4023
4023
  scopedSlots: Record<string, () => import("vue").VNode>;
4024
- disabled: import("packages/utils/props.js").IDisabled;
4024
+ disabled: import("el-plus/es/utils/props").IDisabled;
4025
4025
  confirm: boolean;
4026
4026
  confirmText: string;
4027
4027
  } & {} & {
@@ -4050,9 +4050,9 @@ export declare const EpSearchListPage: {
4050
4050
  type: import("vue").PropType<Partial<import("element-plus").TableColumnCtx & {
4051
4051
  [key: string]: any;
4052
4052
  required: boolean | (() => boolean);
4053
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
4053
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
4054
4054
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
4055
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
4055
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
4056
4056
  type: string;
4057
4057
  props: Record<string, any>;
4058
4058
  filter: boolean;
@@ -4089,7 +4089,7 @@ export declare const EpSearchListPage: {
4089
4089
  type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
4090
4090
  };
4091
4091
  readonly paginationProps: {
4092
- type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/types/utils.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
4092
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
4093
4093
  default: () => {};
4094
4094
  };
4095
4095
  readonly showPagination: BooleanConstructor;
@@ -4099,9 +4099,9 @@ export declare const EpSearchListPage: {
4099
4099
  name: string;
4100
4100
  prop: string;
4101
4101
  permission: string;
4102
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
4102
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
4103
4103
  scopedSlots: Record<string, () => import("vue").VNode>;
4104
- disabled: import("packages/utils/props.js").IDisabled;
4104
+ disabled: import("el-plus/es/utils/props").IDisabled;
4105
4105
  confirm: boolean;
4106
4106
  confirmText: string;
4107
4107
  } & {} & {
@@ -4115,9 +4115,9 @@ export declare const EpSearchListPage: {
4115
4115
  name: string;
4116
4116
  prop: string;
4117
4117
  permission: string;
4118
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
4118
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
4119
4119
  scopedSlots: Record<string, () => import("vue").VNode>;
4120
- disabled: import("packages/utils/props.js").IDisabled;
4120
+ disabled: import("el-plus/es/utils/props").IDisabled;
4121
4121
  confirm: boolean;
4122
4122
  confirmText: string;
4123
4123
  } & {} & {
@@ -4134,10 +4134,10 @@ export declare const EpSearchListPage: {
4134
4134
  type: import("vue").PropType<number | string>;
4135
4135
  };
4136
4136
  readonly api: {
4137
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
4137
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
4138
4138
  };
4139
4139
  readonly method: {
4140
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
4140
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
4141
4141
  };
4142
4142
  readonly reqData: {
4143
4143
  type: ObjectConstructor;
@@ -4146,10 +4146,10 @@ export declare const EpSearchListPage: {
4146
4146
  type: ObjectConstructor;
4147
4147
  };
4148
4148
  readonly reqBefore: {
4149
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
4149
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
4150
4150
  };
4151
4151
  readonly reqAfter: {
4152
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
4152
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
4153
4153
  };
4154
4154
  readonly size: {
4155
4155
  default: string;
@@ -4877,7 +4877,7 @@ export declare const EpSearchListPage: {
4877
4877
  inlineMessage: boolean;
4878
4878
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
4879
4879
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
4880
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
4880
+ formItemList: import("el-plus/es/index").FormItemProps[];
4881
4881
  isShowFold: boolean;
4882
4882
  showFieldCount: number;
4883
4883
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -4896,7 +4896,7 @@ export declare const EpSearchListPage: {
4896
4896
  readonly inlineMessage: boolean;
4897
4897
  readonly showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
4898
4898
  readonly scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
4899
- readonly formItemList: import("packages/el-plus/index.js").FormItemProps[];
4899
+ readonly formItemList: import("el-plus/es/index").FormItemProps[];
4900
4900
  readonly isShowFold: boolean;
4901
4901
  readonly showFieldCount: number;
4902
4902
  readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -4951,8 +4951,8 @@ export declare const EpSearchListPage: {
4951
4951
  readonly __epPropKey: true;
4952
4952
  };
4953
4953
  formItemList: {
4954
- type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
4955
- default: () => import("packages/el-plus/index.js").FormItemProps[];
4954
+ type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
4955
+ default: () => import("el-plus/es/index").FormItemProps[];
4956
4956
  };
4957
4957
  isShowFold: BooleanConstructor;
4958
4958
  showFieldCount: {
@@ -5007,7 +5007,7 @@ export declare const EpSearchListPage: {
5007
5007
  inlineMessage: boolean;
5008
5008
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
5009
5009
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
5010
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
5010
+ formItemList: import("el-plus/es/index").FormItemProps[];
5011
5011
  isShowFold: boolean;
5012
5012
  showFieldCount: number;
5013
5013
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -5046,7 +5046,7 @@ export declare const EpSearchListPage: {
5046
5046
  inlineMessage: boolean;
5047
5047
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
5048
5048
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
5049
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
5049
+ formItemList: import("el-plus/es/index").FormItemProps[];
5050
5050
  isShowFold: boolean;
5051
5051
  showFieldCount: number;
5052
5052
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -5080,8 +5080,8 @@ export declare const EpSearchListPage: {
5080
5080
  readonly __epPropKey: true;
5081
5081
  };
5082
5082
  formItemList: {
5083
- type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
5084
- default: () => import("packages/el-plus/index.js").FormItemProps[];
5083
+ type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
5084
+ default: () => import("el-plus/es/index").FormItemProps[];
5085
5085
  };
5086
5086
  isShowFold: BooleanConstructor;
5087
5087
  showFieldCount: {
@@ -5128,14 +5128,14 @@ export declare const EpSearchListPage: {
5128
5128
  };
5129
5129
  }) | null>>;
5130
5130
  }, {}, {}, {}, {
5131
- readonly formItemList: import("packages/el-plus/index.js").FormItemProps[];
5131
+ readonly formItemList: import("el-plus/es/index").FormItemProps[];
5132
5132
  readonly formData: Record<string, any>;
5133
5133
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
5134
5134
  [key: string]: any;
5135
5135
  required: boolean | (() => boolean);
5136
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
5136
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
5137
5137
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
5138
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
5138
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
5139
5139
  type: string;
5140
5140
  props: Record<string, any>;
5141
5141
  filter: boolean;
@@ -5152,9 +5152,9 @@ export declare const EpSearchListPage: {
5152
5152
  name: string;
5153
5153
  prop: string;
5154
5154
  permission: string;
5155
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
5155
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
5156
5156
  scopedSlots: Record<string, () => import("vue").VNode>;
5157
- disabled: import("packages/utils/props.js").IDisabled;
5157
+ disabled: import("el-plus/es/utils/props").IDisabled;
5158
5158
  confirm: boolean;
5159
5159
  confirmText: string;
5160
5160
  } & {} & {
@@ -5165,9 +5165,9 @@ export declare const EpSearchListPage: {
5165
5165
  name: string;
5166
5166
  prop: string;
5167
5167
  permission: string;
5168
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
5168
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
5169
5169
  scopedSlots: Record<string, () => import("vue").VNode>;
5170
- disabled: import("packages/utils/props.js").IDisabled;
5170
+ disabled: import("el-plus/es/utils/props").IDisabled;
5171
5171
  confirm: boolean;
5172
5172
  confirmText: string;
5173
5173
  } & {} & {
@@ -5180,9 +5180,9 @@ export declare const EpSearchListPage: {
5180
5180
  name: string;
5181
5181
  prop: string;
5182
5182
  permission: string;
5183
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
5183
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
5184
5184
  scopedSlots: Record<string, () => import("vue").VNode>;
5185
- disabled: import("packages/utils/props.js").IDisabled;
5185
+ disabled: import("el-plus/es/utils/props").IDisabled;
5186
5186
  confirm: boolean;
5187
5187
  confirmText: string;
5188
5188
  } & {} & {
@@ -5200,15 +5200,15 @@ export declare const EpSearchListPage: {
5200
5200
  };
5201
5201
  readonly showOperationColumn: BooleanConstructor;
5202
5202
  readonly formItemList: {
5203
- readonly type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
5204
- readonly default: () => import("packages/el-plus/index.js").FormItemProps[];
5203
+ readonly type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
5204
+ readonly default: () => import("el-plus/es/index").FormItemProps[];
5205
5205
  };
5206
5206
  readonly leftButtons: {
5207
- readonly type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
5207
+ readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
5208
5208
  readonly default: () => never[];
5209
5209
  };
5210
5210
  readonly columns: {
5211
- readonly type: import("vue").PropType<import("packages/el-plus/index.js").TableColumn[]>;
5211
+ readonly type: import("vue").PropType<import("el-plus/es/index").TableColumn[]>;
5212
5212
  readonly default: () => never[];
5213
5213
  };
5214
5214
  readonly minWidth: {
@@ -5219,11 +5219,11 @@ export declare const EpSearchListPage: {
5219
5219
  readonly default: number;
5220
5220
  };
5221
5221
  readonly actionButtons: {
5222
- readonly type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
5222
+ readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
5223
5223
  readonly default: () => never[];
5224
5224
  };
5225
5225
  readonly formatColumns: {
5226
- readonly type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
5226
+ readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
5227
5227
  readonly default: () => never[];
5228
5228
  };
5229
5229
  readonly showSelectionCol: BooleanConstructor;
@@ -5250,10 +5250,10 @@ export declare const EpSearchListPage: {
5250
5250
  readonly default: true;
5251
5251
  };
5252
5252
  readonly api: {
5253
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
5253
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
5254
5254
  };
5255
5255
  readonly method: {
5256
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
5256
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
5257
5257
  };
5258
5258
  readonly reqData: {
5259
5259
  type: ObjectConstructor;
@@ -5262,10 +5262,10 @@ export declare const EpSearchListPage: {
5262
5262
  type: ObjectConstructor;
5263
5263
  };
5264
5264
  readonly reqBefore: {
5265
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
5265
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
5266
5266
  };
5267
5267
  readonly reqAfter: {
5268
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
5268
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
5269
5269
  };
5270
5270
  }>> & Readonly<{}>, {
5271
5271
  search: (isInitSearch?: boolean) => Promise<void>;
@@ -5286,9 +5286,9 @@ export declare const EpSearchListPage: {
5286
5286
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
5287
5287
  [key: string]: any;
5288
5288
  required: boolean | (() => boolean);
5289
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
5289
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
5290
5290
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
5291
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
5291
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
5292
5292
  type: string;
5293
5293
  props: Record<string, any>;
5294
5294
  filter: boolean;
@@ -5326,7 +5326,7 @@ export declare const EpSearchListPage: {
5326
5326
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
5327
5327
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
5328
5328
  readonly appendSizeTo?: string | undefined;
5329
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
5329
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
5330
5330
  'update:current-page': (val: number) => boolean;
5331
5331
  'update:page-size': (val: number) => boolean;
5332
5332
  'size-change': (val: number) => boolean;
@@ -5341,9 +5341,9 @@ export declare const EpSearchListPage: {
5341
5341
  name: string;
5342
5342
  prop: string;
5343
5343
  permission: string;
5344
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
5344
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
5345
5345
  scopedSlots: Record<string, () => import("vue").VNode>;
5346
- disabled: import("packages/utils/props.js").IDisabled;
5346
+ disabled: import("el-plus/es/utils/props").IDisabled;
5347
5347
  confirm: boolean;
5348
5348
  confirmText: string;
5349
5349
  } & {} & {
@@ -5354,9 +5354,9 @@ export declare const EpSearchListPage: {
5354
5354
  name: string;
5355
5355
  prop: string;
5356
5356
  permission: string;
5357
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
5357
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
5358
5358
  scopedSlots: Record<string, () => import("vue").VNode>;
5359
- disabled: import("packages/utils/props.js").IDisabled;
5359
+ disabled: import("el-plus/es/utils/props").IDisabled;
5360
5360
  confirm: boolean;
5361
5361
  confirmText: string;
5362
5362
  } & {} & {
@@ -5393,9 +5393,9 @@ export declare const EpSearchListPage: {
5393
5393
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
5394
5394
  [key: string]: any;
5395
5395
  required: boolean | (() => boolean);
5396
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
5396
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
5397
5397
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
5398
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
5398
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
5399
5399
  type: string;
5400
5400
  props: Record<string, any>;
5401
5401
  filter: boolean;
@@ -5433,7 +5433,7 @@ export declare const EpSearchListPage: {
5433
5433
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
5434
5434
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
5435
5435
  readonly appendSizeTo?: string | undefined;
5436
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
5436
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
5437
5437
  'update:current-page': (val: number) => boolean;
5438
5438
  'update:page-size': (val: number) => boolean;
5439
5439
  'size-change': (val: number) => boolean;
@@ -5448,9 +5448,9 @@ export declare const EpSearchListPage: {
5448
5448
  name: string;
5449
5449
  prop: string;
5450
5450
  permission: string;
5451
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
5451
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
5452
5452
  scopedSlots: Record<string, () => import("vue").VNode>;
5453
- disabled: import("packages/utils/props.js").IDisabled;
5453
+ disabled: import("el-plus/es/utils/props").IDisabled;
5454
5454
  confirm: boolean;
5455
5455
  confirmText: string;
5456
5456
  } & {} & {
@@ -5461,9 +5461,9 @@ export declare const EpSearchListPage: {
5461
5461
  name: string;
5462
5462
  prop: string;
5463
5463
  permission: string;
5464
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
5464
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
5465
5465
  scopedSlots: Record<string, () => import("vue").VNode>;
5466
- disabled: import("packages/utils/props.js").IDisabled;
5466
+ disabled: import("el-plus/es/utils/props").IDisabled;
5467
5467
  confirm: boolean;
5468
5468
  confirmText: string;
5469
5469
  } & {} & {
@@ -5486,14 +5486,14 @@ export declare const EpSearchListPage: {
5486
5486
  readonly allowDragLastColumn: boolean;
5487
5487
  readonly preserveExpandedContent: boolean;
5488
5488
  readonly nativeScrollbar: boolean;
5489
- readonly method?: import("packages/types/axios.js").Method | undefined;
5489
+ readonly method?: import("el-plus/es/types/axios").Method | undefined;
5490
5490
  readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
5491
5491
  readonly width?: string | number | undefined;
5492
- readonly api?: import("packages/types/axios.js").Api | undefined;
5492
+ readonly api?: import("el-plus/es/types/axios").Api | undefined;
5493
5493
  readonly reqData?: Record<string, any> | undefined;
5494
5494
  readonly reqParams?: Record<string, any> | undefined;
5495
- readonly reqBefore?: import("packages/types/axios.js").ReqBefore | undefined;
5496
- readonly reqAfter?: import("packages/types/axios.js").ReqAfter | undefined;
5495
+ readonly reqBefore?: import("el-plus/es/types/axios").ReqBefore | undefined;
5496
+ readonly reqAfter?: import("el-plus/es/types/axios").ReqAfter | undefined;
5497
5497
  readonly rowKey?: string | ((row: any) => string) | undefined;
5498
5498
  readonly summaryMethod?: import("element-plus").SummaryMethod<any> | undefined;
5499
5499
  readonly rowClassName?: import("element-plus").ColumnCls<any> | undefined;
@@ -5546,7 +5546,7 @@ export declare const EpSearchListPage: {
5546
5546
  $el: any;
5547
5547
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5548
5548
  readonly columns: {
5549
- type: import("vue").PropType<import("packages/el-plus/index.js").TableColumn[]>;
5549
+ type: import("vue").PropType<import("el-plus/es/index").TableColumn[]>;
5550
5550
  default: () => never[];
5551
5551
  };
5552
5552
  readonly showSelectionCol: BooleanConstructor;
@@ -5575,17 +5575,17 @@ export declare const EpSearchListPage: {
5575
5575
  type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
5576
5576
  };
5577
5577
  readonly paginationProps: {
5578
- type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/types/utils.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
5578
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
5579
5579
  default: () => {};
5580
5580
  };
5581
5581
  readonly showPagination: BooleanConstructor;
5582
5582
  readonly isFrontPage: BooleanConstructor;
5583
5583
  readonly actionButtons: {
5584
- type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
5584
+ type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
5585
5585
  default: () => never[];
5586
5586
  };
5587
5587
  readonly formatColumns: {
5588
- type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
5588
+ type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
5589
5589
  default: () => never[];
5590
5590
  };
5591
5591
  readonly isInitSearch: {
@@ -5596,10 +5596,10 @@ export declare const EpSearchListPage: {
5596
5596
  type: import("vue").PropType<number | string>;
5597
5597
  };
5598
5598
  readonly api: {
5599
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
5599
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
5600
5600
  };
5601
5601
  readonly method: {
5602
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
5602
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
5603
5603
  };
5604
5604
  readonly reqData: {
5605
5605
  type: ObjectConstructor;
@@ -5608,10 +5608,10 @@ export declare const EpSearchListPage: {
5608
5608
  type: ObjectConstructor;
5609
5609
  };
5610
5610
  readonly reqBefore: {
5611
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
5611
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
5612
5612
  };
5613
5613
  readonly reqAfter: {
5614
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
5614
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
5615
5615
  };
5616
5616
  readonly size: {
5617
5617
  default: string;
@@ -6334,9 +6334,9 @@ export declare const EpSearchListPage: {
6334
6334
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
6335
6335
  [key: string]: any;
6336
6336
  required: boolean | (() => boolean);
6337
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
6337
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
6338
6338
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
6339
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
6339
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
6340
6340
  type: string;
6341
6341
  props: Record<string, any>;
6342
6342
  filter: boolean;
@@ -6374,7 +6374,7 @@ export declare const EpSearchListPage: {
6374
6374
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
6375
6375
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
6376
6376
  readonly appendSizeTo?: string | undefined;
6377
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
6377
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
6378
6378
  'update:current-page': (val: number) => boolean;
6379
6379
  'update:page-size': (val: number) => boolean;
6380
6380
  'size-change': (val: number) => boolean;
@@ -6389,9 +6389,9 @@ export declare const EpSearchListPage: {
6389
6389
  name: string;
6390
6390
  prop: string;
6391
6391
  permission: string;
6392
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
6392
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
6393
6393
  scopedSlots: Record<string, () => import("vue").VNode>;
6394
- disabled: import("packages/utils/props.js").IDisabled;
6394
+ disabled: import("el-plus/es/utils/props").IDisabled;
6395
6395
  confirm: boolean;
6396
6396
  confirmText: string;
6397
6397
  } & {} & {
@@ -6402,9 +6402,9 @@ export declare const EpSearchListPage: {
6402
6402
  name: string;
6403
6403
  prop: string;
6404
6404
  permission: string;
6405
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
6405
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
6406
6406
  scopedSlots: Record<string, () => import("vue").VNode>;
6407
- disabled: import("packages/utils/props.js").IDisabled;
6407
+ disabled: import("el-plus/es/utils/props").IDisabled;
6408
6408
  confirm: boolean;
6409
6409
  confirmText: string;
6410
6410
  } & {} & {
@@ -6461,9 +6461,9 @@ export declare const EpSearchListPage: {
6461
6461
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
6462
6462
  [key: string]: any;
6463
6463
  required: boolean | (() => boolean);
6464
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
6464
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
6465
6465
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
6466
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
6466
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
6467
6467
  type: string;
6468
6468
  props: Record<string, any>;
6469
6469
  filter: boolean;
@@ -6501,7 +6501,7 @@ export declare const EpSearchListPage: {
6501
6501
  readonly prevIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
6502
6502
  readonly nextIcon?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
6503
6503
  readonly appendSizeTo?: string | undefined;
6504
- } & import("packages/types/utils.js").WithOnPrefixAndCamelCase<{
6504
+ } & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<{
6505
6505
  'update:current-page': (val: number) => boolean;
6506
6506
  'update:page-size': (val: number) => boolean;
6507
6507
  'size-change': (val: number) => boolean;
@@ -6516,9 +6516,9 @@ export declare const EpSearchListPage: {
6516
6516
  name: string;
6517
6517
  prop: string;
6518
6518
  permission: string;
6519
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
6519
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
6520
6520
  scopedSlots: Record<string, () => import("vue").VNode>;
6521
- disabled: import("packages/utils/props.js").IDisabled;
6521
+ disabled: import("el-plus/es/utils/props").IDisabled;
6522
6522
  confirm: boolean;
6523
6523
  confirmText: string;
6524
6524
  } & {} & {
@@ -6529,9 +6529,9 @@ export declare const EpSearchListPage: {
6529
6529
  name: string;
6530
6530
  prop: string;
6531
6531
  permission: string;
6532
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
6532
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
6533
6533
  scopedSlots: Record<string, () => import("vue").VNode>;
6534
- disabled: import("packages/utils/props.js").IDisabled;
6534
+ disabled: import("el-plus/es/utils/props").IDisabled;
6535
6535
  confirm: boolean;
6536
6536
  confirmText: string;
6537
6537
  } & {} & {
@@ -6557,7 +6557,7 @@ export declare const EpSearchListPage: {
6557
6557
  readonly nativeScrollbar: boolean;
6558
6558
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
6559
6559
  readonly columns: {
6560
- type: import("vue").PropType<import("packages/el-plus/index.js").TableColumn[]>;
6560
+ type: import("vue").PropType<import("el-plus/es/index").TableColumn[]>;
6561
6561
  default: () => never[];
6562
6562
  };
6563
6563
  readonly showSelectionCol: BooleanConstructor;
@@ -6586,17 +6586,17 @@ export declare const EpSearchListPage: {
6586
6586
  type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
6587
6587
  };
6588
6588
  readonly paginationProps: {
6589
- type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/types/utils.js").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
6589
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("el-plus/es/types/utils").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
6590
6590
  default: () => {};
6591
6591
  };
6592
6592
  readonly showPagination: BooleanConstructor;
6593
6593
  readonly isFrontPage: BooleanConstructor;
6594
6594
  readonly actionButtons: {
6595
- type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
6595
+ type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
6596
6596
  default: () => never[];
6597
6597
  };
6598
6598
  readonly formatColumns: {
6599
- type: import("vue").PropType<import("packages/el-plus/index.js").ButtonProps[]>;
6599
+ type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
6600
6600
  default: () => never[];
6601
6601
  };
6602
6602
  readonly isInitSearch: {
@@ -6607,10 +6607,10 @@ export declare const EpSearchListPage: {
6607
6607
  type: import("vue").PropType<number | string>;
6608
6608
  };
6609
6609
  readonly api: {
6610
- type: import("vue").PropType<import("packages/types/axios.js").Api>;
6610
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
6611
6611
  };
6612
6612
  readonly method: {
6613
- type: import("vue").PropType<import("packages/types/axios.js").Method>;
6613
+ type: import("vue").PropType<import("el-plus/es/types/axios").Method>;
6614
6614
  };
6615
6615
  readonly reqData: {
6616
6616
  type: ObjectConstructor;
@@ -6619,10 +6619,10 @@ export declare const EpSearchListPage: {
6619
6619
  type: ObjectConstructor;
6620
6620
  };
6621
6621
  readonly reqBefore: {
6622
- type: import("vue").PropType<import("packages/types/axios.js").ReqBefore>;
6622
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqBefore>;
6623
6623
  };
6624
6624
  readonly reqAfter: {
6625
- type: import("vue").PropType<import("packages/types/axios.js").ReqAfter>;
6625
+ type: import("vue").PropType<import("el-plus/es/types/axios").ReqAfter>;
6626
6626
  };
6627
6627
  readonly size: {
6628
6628
  default: string;
@@ -7350,7 +7350,7 @@ export declare const EpSearchListPage: {
7350
7350
  inlineMessage: boolean;
7351
7351
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
7352
7352
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
7353
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
7353
+ formItemList: import("el-plus/es/index").FormItemProps[];
7354
7354
  isShowFold: boolean;
7355
7355
  showFieldCount: number;
7356
7356
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -7369,7 +7369,7 @@ export declare const EpSearchListPage: {
7369
7369
  readonly inlineMessage: boolean;
7370
7370
  readonly showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
7371
7371
  readonly scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
7372
- readonly formItemList: import("packages/el-plus/index.js").FormItemProps[];
7372
+ readonly formItemList: import("el-plus/es/index").FormItemProps[];
7373
7373
  readonly isShowFold: boolean;
7374
7374
  readonly showFieldCount: number;
7375
7375
  readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -7424,8 +7424,8 @@ export declare const EpSearchListPage: {
7424
7424
  readonly __epPropKey: true;
7425
7425
  };
7426
7426
  formItemList: {
7427
- type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
7428
- default: () => import("packages/el-plus/index.js").FormItemProps[];
7427
+ type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
7428
+ default: () => import("el-plus/es/index").FormItemProps[];
7429
7429
  };
7430
7430
  isShowFold: BooleanConstructor;
7431
7431
  showFieldCount: {
@@ -7480,7 +7480,7 @@ export declare const EpSearchListPage: {
7480
7480
  inlineMessage: boolean;
7481
7481
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
7482
7482
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
7483
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
7483
+ formItemList: import("el-plus/es/index").FormItemProps[];
7484
7484
  isShowFold: boolean;
7485
7485
  showFieldCount: number;
7486
7486
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -7519,7 +7519,7 @@ export declare const EpSearchListPage: {
7519
7519
  inlineMessage: boolean;
7520
7520
  showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
7521
7521
  scrollIntoViewOptions: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
7522
- formItemList: import("packages/el-plus/index.js").FormItemProps[];
7522
+ formItemList: import("el-plus/es/index").FormItemProps[];
7523
7523
  isShowFold: boolean;
7524
7524
  showFieldCount: number;
7525
7525
  requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
@@ -7553,8 +7553,8 @@ export declare const EpSearchListPage: {
7553
7553
  readonly __epPropKey: true;
7554
7554
  };
7555
7555
  formItemList: {
7556
- type: import("vue").PropType<import("packages/el-plus/index.js").FormItemProps[]>;
7557
- default: () => import("packages/el-plus/index.js").FormItemProps[];
7556
+ type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
7557
+ default: () => import("el-plus/es/index").FormItemProps[];
7558
7558
  };
7559
7559
  isShowFold: BooleanConstructor;
7560
7560
  showFieldCount: {
@@ -7601,14 +7601,14 @@ export declare const EpSearchListPage: {
7601
7601
  };
7602
7602
  }) | null>>;
7603
7603
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
7604
- readonly formItemList: import("packages/el-plus/index.js").FormItemProps[];
7604
+ readonly formItemList: import("el-plus/es/index").FormItemProps[];
7605
7605
  readonly formData: Record<string, any>;
7606
7606
  readonly columns: Partial<import("element-plus").TableColumnCtx & {
7607
7607
  [key: string]: any;
7608
7608
  required: boolean | (() => boolean);
7609
- cellRequired: (scope: import("packages/el-plus/index.js").TableScope) => boolean;
7609
+ cellRequired: (scope: import("el-plus/es/index").TableScope) => boolean;
7610
7610
  headerRender: import("element-plus").TableColumnCtx["renderHeader"];
7611
- disabled: boolean | ((scope: import("packages/el-plus/index.js").TableScope) => boolean);
7611
+ disabled: boolean | ((scope: import("el-plus/es/index").TableScope) => boolean);
7612
7612
  type: string;
7613
7613
  props: Record<string, any>;
7614
7614
  filter: boolean;
@@ -7625,9 +7625,9 @@ export declare const EpSearchListPage: {
7625
7625
  name: string;
7626
7626
  prop: string;
7627
7627
  permission: string;
7628
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
7628
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
7629
7629
  scopedSlots: Record<string, () => import("vue").VNode>;
7630
- disabled: import("packages/utils/props.js").IDisabled;
7630
+ disabled: import("el-plus/es/utils/props").IDisabled;
7631
7631
  confirm: boolean;
7632
7632
  confirmText: string;
7633
7633
  } & {} & {
@@ -7638,9 +7638,9 @@ export declare const EpSearchListPage: {
7638
7638
  name: string;
7639
7639
  prop: string;
7640
7640
  permission: string;
7641
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
7641
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
7642
7642
  scopedSlots: Record<string, () => import("vue").VNode>;
7643
- disabled: import("packages/utils/props.js").IDisabled;
7643
+ disabled: import("el-plus/es/utils/props").IDisabled;
7644
7644
  confirm: boolean;
7645
7645
  confirmText: string;
7646
7646
  } & {} & {
@@ -7653,9 +7653,9 @@ export declare const EpSearchListPage: {
7653
7653
  name: string;
7654
7654
  prop: string;
7655
7655
  permission: string;
7656
- onClick: (e: MouseEvent | import("packages/el-plus/index.js").TableScope) => void;
7656
+ onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
7657
7657
  scopedSlots: Record<string, () => import("vue").VNode>;
7658
- disabled: import("packages/utils/props.js").IDisabled;
7658
+ disabled: import("el-plus/es/utils/props").IDisabled;
7659
7659
  confirm: boolean;
7660
7660
  confirmText: string;
7661
7661
  } & {} & {