el-plus 0.0.33 → 0.0.35
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.
- package/CHANGELOG.md +12 -0
- package/dist/index.full.js +6 -4
- package/dist/index.full.min.js +1 -1
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +1 -1
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +6 -4
- package/es/components/buttons/index.d.ts +9 -9
- package/es/components/buttons/src/buttons-vue.d.ts +3 -3
- package/es/components/date-picker-range/index.d.ts +9 -9
- package/es/components/date-picker-range/src/date-picker-range.vue.d.ts +3 -3
- package/es/components/form/index.d.ts +6 -6
- package/es/components/form/src/form-item-vue.d.ts +1 -1
- package/es/components/form/src/form.vue.d.ts +2 -2
- package/es/components/input/index.d.ts +6 -6
- package/es/components/input/src/input.vue.d.ts +2 -2
- package/es/components/search-list-page/index.d.ts +87 -87
- package/es/components/search-list-page/src/search-list-page.vue.d.ts +29 -29
- package/es/components/search-list-page/src/use-search-list-page.d.ts +27 -27
- package/es/components/select/index.d.ts +12 -12
- package/es/components/select/src/select.vue.d.ts +4 -4
- package/es/components/table/index.d.ts +12 -12
- package/es/components/table/src/table.vue.d.ts +4 -4
- package/es/hooks/dialog/use-dialog.mjs +5 -3
- package/es/hooks/dialog/use-dialog.mjs.map +1 -1
- package/es/package.json.mjs +1 -1
- package/lib/components/buttons/index.d.ts +9 -9
- package/lib/components/buttons/src/buttons-vue.d.ts +3 -3
- package/lib/components/date-picker-range/index.d.ts +9 -9
- package/lib/components/date-picker-range/src/date-picker-range.vue.d.ts +3 -3
- package/lib/components/form/index.d.ts +6 -6
- package/lib/components/form/src/form-item-vue.d.ts +1 -1
- package/lib/components/form/src/form.vue.d.ts +2 -2
- package/lib/components/input/index.d.ts +6 -6
- package/lib/components/input/src/input.vue.d.ts +2 -2
- package/lib/components/search-list-page/index.d.ts +87 -87
- package/lib/components/search-list-page/src/search-list-page.vue.d.ts +29 -29
- package/lib/components/search-list-page/src/use-search-list-page.d.ts +27 -27
- package/lib/components/select/index.d.ts +12 -12
- package/lib/components/select/src/select.vue.d.ts +4 -4
- package/lib/components/table/index.d.ts +12 -12
- package/lib/components/table/src/table.vue.d.ts +4 -4
- package/lib/hooks/dialog/use-dialog.js +4 -2
- package/lib/hooks/dialog/use-dialog.js.map +1 -1
- package/lib/package.json.js +1 -1
- package/package.json +13 -3
|
@@ -133,11 +133,9 @@ export declare const EpSearchListPage: {
|
|
|
133
133
|
readonly style: import("vue").StyleValue;
|
|
134
134
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
135
135
|
readonly disabled: boolean;
|
|
136
|
-
readonly className: string;
|
|
137
|
-
readonly border: boolean;
|
|
138
|
-
readonly align: "center" | "left" | "right";
|
|
139
136
|
readonly lazy: boolean;
|
|
140
137
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
138
|
+
readonly className: string;
|
|
141
139
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
142
140
|
[key: string]: any;
|
|
143
141
|
required: boolean | (() => boolean);
|
|
@@ -155,6 +153,7 @@ export declare const EpSearchListPage: {
|
|
|
155
153
|
readonly showSelectionCol: boolean;
|
|
156
154
|
readonly showSingleSelectionCol: boolean;
|
|
157
155
|
readonly showIndexCol: boolean;
|
|
156
|
+
readonly align: "center" | "right" | "left";
|
|
158
157
|
readonly actionColWidth: string | number | undefined;
|
|
159
158
|
readonly reserveSelection: boolean;
|
|
160
159
|
readonly paginationProps: Partial<{
|
|
@@ -163,8 +162,8 @@ export declare const EpSearchListPage: {
|
|
|
163
162
|
readonly disabled: boolean;
|
|
164
163
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
165
164
|
readonly popperClass: string;
|
|
166
|
-
readonly layout: string;
|
|
167
165
|
readonly pagerCount: number;
|
|
166
|
+
readonly layout: string;
|
|
168
167
|
readonly pageSizes: number[];
|
|
169
168
|
readonly prevText: string;
|
|
170
169
|
readonly nextText: string;
|
|
@@ -220,6 +219,7 @@ export declare const EpSearchListPage: {
|
|
|
220
219
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
221
220
|
}>[];
|
|
222
221
|
readonly isInitSearch: boolean;
|
|
222
|
+
readonly border: boolean;
|
|
223
223
|
readonly fit: boolean;
|
|
224
224
|
readonly stripe: boolean;
|
|
225
225
|
readonly showHeader: boolean;
|
|
@@ -241,11 +241,9 @@ export declare const EpSearchListPage: {
|
|
|
241
241
|
readonly style: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null;
|
|
242
242
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
243
243
|
readonly disabled: boolean;
|
|
244
|
-
readonly className: string;
|
|
245
|
-
readonly border: boolean;
|
|
246
|
-
readonly align: "center" | "left" | "right";
|
|
247
244
|
readonly lazy: boolean;
|
|
248
245
|
readonly headerCellStyle: import("element-plus").CellStyle<any>;
|
|
246
|
+
readonly className: string;
|
|
249
247
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
250
248
|
[key: string]: any;
|
|
251
249
|
required: boolean | (() => boolean);
|
|
@@ -263,6 +261,7 @@ export declare const EpSearchListPage: {
|
|
|
263
261
|
readonly showSelectionCol: boolean;
|
|
264
262
|
readonly showSingleSelectionCol: boolean;
|
|
265
263
|
readonly showIndexCol: boolean;
|
|
264
|
+
readonly align: "center" | "right" | "left";
|
|
266
265
|
readonly actionColWidth: string | number;
|
|
267
266
|
readonly reserveSelection: boolean;
|
|
268
267
|
readonly paginationProps: Partial<{
|
|
@@ -271,8 +270,8 @@ export declare const EpSearchListPage: {
|
|
|
271
270
|
readonly disabled: boolean;
|
|
272
271
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
273
272
|
readonly popperClass: string;
|
|
274
|
-
readonly layout: string;
|
|
275
273
|
readonly pagerCount: number;
|
|
274
|
+
readonly layout: string;
|
|
276
275
|
readonly pageSizes: number[];
|
|
277
276
|
readonly prevText: string;
|
|
278
277
|
readonly nextText: string;
|
|
@@ -328,6 +327,7 @@ export declare const EpSearchListPage: {
|
|
|
328
327
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
329
328
|
}>[];
|
|
330
329
|
readonly isInitSearch: boolean;
|
|
330
|
+
readonly border: boolean;
|
|
331
331
|
readonly fit: boolean;
|
|
332
332
|
readonly stripe: boolean;
|
|
333
333
|
readonly showHeader: boolean;
|
|
@@ -386,7 +386,7 @@ export declare const EpSearchListPage: {
|
|
|
386
386
|
readonly tooltipEffect?: string | undefined;
|
|
387
387
|
readonly appendFilterPanelTo?: string | undefined;
|
|
388
388
|
readonly scrollbarTabindex?: string | number | undefined;
|
|
389
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "
|
|
389
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
|
|
390
390
|
$attrs: {
|
|
391
391
|
[x: string]: unknown;
|
|
392
392
|
};
|
|
@@ -1221,11 +1221,9 @@ export declare const EpSearchListPage: {
|
|
|
1221
1221
|
readonly style: import("vue").StyleValue;
|
|
1222
1222
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
1223
1223
|
readonly disabled: boolean;
|
|
1224
|
-
readonly className: string;
|
|
1225
|
-
readonly border: boolean;
|
|
1226
|
-
readonly align: "center" | "left" | "right";
|
|
1227
1224
|
readonly lazy: boolean;
|
|
1228
1225
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
1226
|
+
readonly className: string;
|
|
1229
1227
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
1230
1228
|
[key: string]: any;
|
|
1231
1229
|
required: boolean | (() => boolean);
|
|
@@ -1243,6 +1241,7 @@ export declare const EpSearchListPage: {
|
|
|
1243
1241
|
readonly showSelectionCol: boolean;
|
|
1244
1242
|
readonly showSingleSelectionCol: boolean;
|
|
1245
1243
|
readonly showIndexCol: boolean;
|
|
1244
|
+
readonly align: "center" | "right" | "left";
|
|
1246
1245
|
readonly actionColWidth: string | number | undefined;
|
|
1247
1246
|
readonly reserveSelection: boolean;
|
|
1248
1247
|
readonly paginationProps: Partial<{
|
|
@@ -1251,8 +1250,8 @@ export declare const EpSearchListPage: {
|
|
|
1251
1250
|
readonly disabled: boolean;
|
|
1252
1251
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1253
1252
|
readonly popperClass: string;
|
|
1254
|
-
readonly layout: string;
|
|
1255
1253
|
readonly pagerCount: number;
|
|
1254
|
+
readonly layout: string;
|
|
1256
1255
|
readonly pageSizes: number[];
|
|
1257
1256
|
readonly prevText: string;
|
|
1258
1257
|
readonly nextText: string;
|
|
@@ -1308,6 +1307,7 @@ export declare const EpSearchListPage: {
|
|
|
1308
1307
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
1309
1308
|
}>[];
|
|
1310
1309
|
readonly isInitSearch: boolean;
|
|
1310
|
+
readonly border: boolean;
|
|
1311
1311
|
readonly fit: boolean;
|
|
1312
1312
|
readonly stripe: boolean;
|
|
1313
1313
|
readonly showHeader: boolean;
|
|
@@ -1349,11 +1349,9 @@ export declare const EpSearchListPage: {
|
|
|
1349
1349
|
readonly style: import("vue").StyleValue;
|
|
1350
1350
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
1351
1351
|
readonly disabled: boolean;
|
|
1352
|
-
readonly className: string;
|
|
1353
|
-
readonly border: boolean;
|
|
1354
|
-
readonly align: "center" | "left" | "right";
|
|
1355
1352
|
readonly lazy: boolean;
|
|
1356
1353
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
1354
|
+
readonly className: string;
|
|
1357
1355
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
1358
1356
|
[key: string]: any;
|
|
1359
1357
|
required: boolean | (() => boolean);
|
|
@@ -1371,6 +1369,7 @@ export declare const EpSearchListPage: {
|
|
|
1371
1369
|
readonly showSelectionCol: boolean;
|
|
1372
1370
|
readonly showSingleSelectionCol: boolean;
|
|
1373
1371
|
readonly showIndexCol: boolean;
|
|
1372
|
+
readonly align: "center" | "right" | "left";
|
|
1374
1373
|
readonly actionColWidth: string | number | undefined;
|
|
1375
1374
|
readonly reserveSelection: boolean;
|
|
1376
1375
|
readonly paginationProps: Partial<{
|
|
@@ -1379,8 +1378,8 @@ export declare const EpSearchListPage: {
|
|
|
1379
1378
|
readonly disabled: boolean;
|
|
1380
1379
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1381
1380
|
readonly popperClass: string;
|
|
1382
|
-
readonly layout: string;
|
|
1383
1381
|
readonly pagerCount: number;
|
|
1382
|
+
readonly layout: string;
|
|
1384
1383
|
readonly pageSizes: number[];
|
|
1385
1384
|
readonly prevText: string;
|
|
1386
1385
|
readonly nextText: string;
|
|
@@ -1436,6 +1435,7 @@ export declare const EpSearchListPage: {
|
|
|
1436
1435
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
1437
1436
|
}>[];
|
|
1438
1437
|
readonly isInitSearch: boolean;
|
|
1438
|
+
readonly border: boolean;
|
|
1439
1439
|
readonly fit: boolean;
|
|
1440
1440
|
readonly stripe: boolean;
|
|
1441
1441
|
readonly showHeader: boolean;
|
|
@@ -2259,7 +2259,7 @@ export declare const EpSearchListPage: {
|
|
|
2259
2259
|
};
|
|
2260
2260
|
readonly preserveExpandedContent: BooleanConstructor;
|
|
2261
2261
|
readonly nativeScrollbar: BooleanConstructor;
|
|
2262
|
-
}>> & Readonly<{}>, "search" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "
|
|
2262
|
+
}>> & Readonly<{}>, "search" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
|
|
2263
2263
|
elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
|
|
2264
2264
|
elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
|
|
2265
2265
|
validate: () => import("element-plus").FormValidationResult;
|
|
@@ -2281,14 +2281,14 @@ export declare const EpSearchListPage: {
|
|
|
2281
2281
|
disabled: boolean;
|
|
2282
2282
|
hideRequiredAsterisk: boolean;
|
|
2283
2283
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
2284
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
2284
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
2285
2285
|
inlineMessage: boolean;
|
|
2286
2286
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
2287
2287
|
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>;
|
|
2288
2288
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
2289
2289
|
isShowFold: boolean;
|
|
2290
2290
|
showFieldCount: number;
|
|
2291
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
2291
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
2292
2292
|
labelSuffix: string;
|
|
2293
2293
|
inline: boolean;
|
|
2294
2294
|
statusIcon: boolean;
|
|
@@ -2300,22 +2300,22 @@ export declare const EpSearchListPage: {
|
|
|
2300
2300
|
readonly disabled: boolean;
|
|
2301
2301
|
readonly hideRequiredAsterisk: boolean;
|
|
2302
2302
|
readonly labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
2303
|
-
readonly labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
2303
|
+
readonly labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
2304
2304
|
readonly inlineMessage: boolean;
|
|
2305
2305
|
readonly showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
2306
2306
|
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>;
|
|
2307
2307
|
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
2308
2308
|
readonly isShowFold: boolean;
|
|
2309
2309
|
readonly showFieldCount: number;
|
|
2310
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
2310
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
2311
2311
|
readonly labelSuffix: string;
|
|
2312
2312
|
readonly inline: boolean;
|
|
2313
2313
|
readonly statusIcon: boolean;
|
|
2314
2314
|
readonly validateOnRuleChange: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
2315
2315
|
readonly scrollToError: boolean;
|
|
2316
|
+
readonly modelValue?: Record<string, unknown> | undefined;
|
|
2316
2317
|
readonly rules?: Partial<Record<string, import("element-plus/es/utils/typescript.js").Arrayable<import("element-plus").FormItemRule>>> | undefined;
|
|
2317
2318
|
readonly model?: Record<string, any> | undefined;
|
|
2318
|
-
readonly modelValue?: Record<string, unknown> | undefined;
|
|
2319
2319
|
readonly onToggleStatus?: ((status: boolean) => any) | undefined;
|
|
2320
2320
|
readonly onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
2321
2321
|
readonly "onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
|
|
@@ -2411,14 +2411,14 @@ export declare const EpSearchListPage: {
|
|
|
2411
2411
|
disabled: boolean;
|
|
2412
2412
|
hideRequiredAsterisk: boolean;
|
|
2413
2413
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
2414
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
2414
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
2415
2415
|
inlineMessage: boolean;
|
|
2416
2416
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
2417
2417
|
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>;
|
|
2418
2418
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
2419
2419
|
isShowFold: boolean;
|
|
2420
2420
|
showFieldCount: number;
|
|
2421
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
2421
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
2422
2422
|
labelSuffix: string;
|
|
2423
2423
|
inline: boolean;
|
|
2424
2424
|
statusIcon: boolean;
|
|
@@ -2450,14 +2450,14 @@ export declare const EpSearchListPage: {
|
|
|
2450
2450
|
disabled: boolean;
|
|
2451
2451
|
hideRequiredAsterisk: boolean;
|
|
2452
2452
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
2453
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
2453
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
2454
2454
|
inlineMessage: boolean;
|
|
2455
2455
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
2456
2456
|
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>;
|
|
2457
2457
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
2458
2458
|
isShowFold: boolean;
|
|
2459
2459
|
showFieldCount: number;
|
|
2460
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
2460
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
2461
2461
|
labelSuffix: string;
|
|
2462
2462
|
inline: boolean;
|
|
2463
2463
|
statusIcon: boolean;
|
|
@@ -2536,8 +2536,6 @@ export declare const EpSearchListPage: {
|
|
|
2536
2536
|
};
|
|
2537
2537
|
}) | null>>;
|
|
2538
2538
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
2539
|
-
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
2540
|
-
readonly formData: Record<string, any>;
|
|
2541
2539
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
2542
2540
|
[key: string]: any;
|
|
2543
2541
|
required: boolean | (() => boolean);
|
|
@@ -2584,6 +2582,8 @@ export declare const EpSearchListPage: {
|
|
|
2584
2582
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2585
2583
|
}>[];
|
|
2586
2584
|
readonly isInitSearch: boolean;
|
|
2585
|
+
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
2586
|
+
readonly formData: Record<string, any>;
|
|
2587
2587
|
readonly showOperationColumn: boolean;
|
|
2588
2588
|
readonly leftButtons: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
2589
2589
|
name: string;
|
|
@@ -2740,11 +2740,9 @@ export declare const EpSearchListPage: {
|
|
|
2740
2740
|
readonly style: import("vue").StyleValue;
|
|
2741
2741
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
2742
2742
|
readonly disabled: boolean;
|
|
2743
|
-
readonly className: string;
|
|
2744
|
-
readonly border: boolean;
|
|
2745
|
-
readonly align: "center" | "left" | "right";
|
|
2746
2743
|
readonly lazy: boolean;
|
|
2747
2744
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
2745
|
+
readonly className: string;
|
|
2748
2746
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
2749
2747
|
[key: string]: any;
|
|
2750
2748
|
required: boolean | (() => boolean);
|
|
@@ -2762,6 +2760,7 @@ export declare const EpSearchListPage: {
|
|
|
2762
2760
|
readonly showSelectionCol: boolean;
|
|
2763
2761
|
readonly showSingleSelectionCol: boolean;
|
|
2764
2762
|
readonly showIndexCol: boolean;
|
|
2763
|
+
readonly align: "center" | "right" | "left";
|
|
2765
2764
|
readonly actionColWidth: string | number | undefined;
|
|
2766
2765
|
readonly reserveSelection: boolean;
|
|
2767
2766
|
readonly paginationProps: Partial<{
|
|
@@ -2770,8 +2769,8 @@ export declare const EpSearchListPage: {
|
|
|
2770
2769
|
readonly disabled: boolean;
|
|
2771
2770
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
2772
2771
|
readonly popperClass: string;
|
|
2773
|
-
readonly layout: string;
|
|
2774
2772
|
readonly pagerCount: number;
|
|
2773
|
+
readonly layout: string;
|
|
2775
2774
|
readonly pageSizes: number[];
|
|
2776
2775
|
readonly prevText: string;
|
|
2777
2776
|
readonly nextText: string;
|
|
@@ -2827,6 +2826,7 @@ export declare const EpSearchListPage: {
|
|
|
2827
2826
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2828
2827
|
}>[];
|
|
2829
2828
|
readonly isInitSearch: boolean;
|
|
2829
|
+
readonly border: boolean;
|
|
2830
2830
|
readonly fit: boolean;
|
|
2831
2831
|
readonly stripe: boolean;
|
|
2832
2832
|
readonly showHeader: boolean;
|
|
@@ -2848,11 +2848,9 @@ export declare const EpSearchListPage: {
|
|
|
2848
2848
|
readonly style: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null;
|
|
2849
2849
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
2850
2850
|
readonly disabled: boolean;
|
|
2851
|
-
readonly className: string;
|
|
2852
|
-
readonly border: boolean;
|
|
2853
|
-
readonly align: "center" | "left" | "right";
|
|
2854
2851
|
readonly lazy: boolean;
|
|
2855
2852
|
readonly headerCellStyle: import("element-plus").CellStyle<any>;
|
|
2853
|
+
readonly className: string;
|
|
2856
2854
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
2857
2855
|
[key: string]: any;
|
|
2858
2856
|
required: boolean | (() => boolean);
|
|
@@ -2870,6 +2868,7 @@ export declare const EpSearchListPage: {
|
|
|
2870
2868
|
readonly showSelectionCol: boolean;
|
|
2871
2869
|
readonly showSingleSelectionCol: boolean;
|
|
2872
2870
|
readonly showIndexCol: boolean;
|
|
2871
|
+
readonly align: "center" | "right" | "left";
|
|
2873
2872
|
readonly actionColWidth: string | number;
|
|
2874
2873
|
readonly reserveSelection: boolean;
|
|
2875
2874
|
readonly paginationProps: Partial<{
|
|
@@ -2878,8 +2877,8 @@ export declare const EpSearchListPage: {
|
|
|
2878
2877
|
readonly disabled: boolean;
|
|
2879
2878
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
2880
2879
|
readonly popperClass: string;
|
|
2881
|
-
readonly layout: string;
|
|
2882
2880
|
readonly pagerCount: number;
|
|
2881
|
+
readonly layout: string;
|
|
2883
2882
|
readonly pageSizes: number[];
|
|
2884
2883
|
readonly prevText: string;
|
|
2885
2884
|
readonly nextText: string;
|
|
@@ -2935,6 +2934,7 @@ export declare const EpSearchListPage: {
|
|
|
2935
2934
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2936
2935
|
}>[];
|
|
2937
2936
|
readonly isInitSearch: boolean;
|
|
2937
|
+
readonly border: boolean;
|
|
2938
2938
|
readonly fit: boolean;
|
|
2939
2939
|
readonly stripe: boolean;
|
|
2940
2940
|
readonly showHeader: boolean;
|
|
@@ -2993,7 +2993,7 @@ export declare const EpSearchListPage: {
|
|
|
2993
2993
|
readonly tooltipEffect?: string | undefined;
|
|
2994
2994
|
readonly appendFilterPanelTo?: string | undefined;
|
|
2995
2995
|
readonly scrollbarTabindex?: string | number | undefined;
|
|
2996
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "
|
|
2996
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
|
|
2997
2997
|
$attrs: {
|
|
2998
2998
|
[x: string]: unknown;
|
|
2999
2999
|
};
|
|
@@ -3828,11 +3828,9 @@ export declare const EpSearchListPage: {
|
|
|
3828
3828
|
readonly style: import("vue").StyleValue;
|
|
3829
3829
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
3830
3830
|
readonly disabled: boolean;
|
|
3831
|
-
readonly className: string;
|
|
3832
|
-
readonly border: boolean;
|
|
3833
|
-
readonly align: "center" | "left" | "right";
|
|
3834
3831
|
readonly lazy: boolean;
|
|
3835
3832
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
3833
|
+
readonly className: string;
|
|
3836
3834
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
3837
3835
|
[key: string]: any;
|
|
3838
3836
|
required: boolean | (() => boolean);
|
|
@@ -3850,6 +3848,7 @@ export declare const EpSearchListPage: {
|
|
|
3850
3848
|
readonly showSelectionCol: boolean;
|
|
3851
3849
|
readonly showSingleSelectionCol: boolean;
|
|
3852
3850
|
readonly showIndexCol: boolean;
|
|
3851
|
+
readonly align: "center" | "right" | "left";
|
|
3853
3852
|
readonly actionColWidth: string | number | undefined;
|
|
3854
3853
|
readonly reserveSelection: boolean;
|
|
3855
3854
|
readonly paginationProps: Partial<{
|
|
@@ -3858,8 +3857,8 @@ export declare const EpSearchListPage: {
|
|
|
3858
3857
|
readonly disabled: boolean;
|
|
3859
3858
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
3860
3859
|
readonly popperClass: string;
|
|
3861
|
-
readonly layout: string;
|
|
3862
3860
|
readonly pagerCount: number;
|
|
3861
|
+
readonly layout: string;
|
|
3863
3862
|
readonly pageSizes: number[];
|
|
3864
3863
|
readonly prevText: string;
|
|
3865
3864
|
readonly nextText: string;
|
|
@@ -3915,6 +3914,7 @@ export declare const EpSearchListPage: {
|
|
|
3915
3914
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
3916
3915
|
}>[];
|
|
3917
3916
|
readonly isInitSearch: boolean;
|
|
3917
|
+
readonly border: boolean;
|
|
3918
3918
|
readonly fit: boolean;
|
|
3919
3919
|
readonly stripe: boolean;
|
|
3920
3920
|
readonly showHeader: boolean;
|
|
@@ -3956,11 +3956,9 @@ export declare const EpSearchListPage: {
|
|
|
3956
3956
|
readonly style: import("vue").StyleValue;
|
|
3957
3957
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
3958
3958
|
readonly disabled: boolean;
|
|
3959
|
-
readonly className: string;
|
|
3960
|
-
readonly border: boolean;
|
|
3961
|
-
readonly align: "center" | "left" | "right";
|
|
3962
3959
|
readonly lazy: boolean;
|
|
3963
3960
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
3961
|
+
readonly className: string;
|
|
3964
3962
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
3965
3963
|
[key: string]: any;
|
|
3966
3964
|
required: boolean | (() => boolean);
|
|
@@ -3978,6 +3976,7 @@ export declare const EpSearchListPage: {
|
|
|
3978
3976
|
readonly showSelectionCol: boolean;
|
|
3979
3977
|
readonly showSingleSelectionCol: boolean;
|
|
3980
3978
|
readonly showIndexCol: boolean;
|
|
3979
|
+
readonly align: "center" | "right" | "left";
|
|
3981
3980
|
readonly actionColWidth: string | number | undefined;
|
|
3982
3981
|
readonly reserveSelection: boolean;
|
|
3983
3982
|
readonly paginationProps: Partial<{
|
|
@@ -3986,8 +3985,8 @@ export declare const EpSearchListPage: {
|
|
|
3986
3985
|
readonly disabled: boolean;
|
|
3987
3986
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
3988
3987
|
readonly popperClass: string;
|
|
3989
|
-
readonly layout: string;
|
|
3990
3988
|
readonly pagerCount: number;
|
|
3989
|
+
readonly layout: string;
|
|
3991
3990
|
readonly pageSizes: number[];
|
|
3992
3991
|
readonly prevText: string;
|
|
3993
3992
|
readonly nextText: string;
|
|
@@ -4043,6 +4042,7 @@ export declare const EpSearchListPage: {
|
|
|
4043
4042
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
4044
4043
|
}>[];
|
|
4045
4044
|
readonly isInitSearch: boolean;
|
|
4045
|
+
readonly border: boolean;
|
|
4046
4046
|
readonly fit: boolean;
|
|
4047
4047
|
readonly stripe: boolean;
|
|
4048
4048
|
readonly showHeader: boolean;
|
|
@@ -4866,7 +4866,7 @@ export declare const EpSearchListPage: {
|
|
|
4866
4866
|
};
|
|
4867
4867
|
readonly preserveExpandedContent: BooleanConstructor;
|
|
4868
4868
|
readonly nativeScrollbar: BooleanConstructor;
|
|
4869
|
-
}>> & Readonly<{}>, "search" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "
|
|
4869
|
+
}>> & Readonly<{}>, "search" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
|
|
4870
4870
|
elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
|
|
4871
4871
|
elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
|
|
4872
4872
|
validate: () => import("element-plus").FormValidationResult;
|
|
@@ -4888,14 +4888,14 @@ export declare const EpSearchListPage: {
|
|
|
4888
4888
|
disabled: boolean;
|
|
4889
4889
|
hideRequiredAsterisk: boolean;
|
|
4890
4890
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
4891
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
4891
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
4892
4892
|
inlineMessage: boolean;
|
|
4893
4893
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
4894
4894
|
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>;
|
|
4895
4895
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
4896
4896
|
isShowFold: boolean;
|
|
4897
4897
|
showFieldCount: number;
|
|
4898
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
4898
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
4899
4899
|
labelSuffix: string;
|
|
4900
4900
|
inline: boolean;
|
|
4901
4901
|
statusIcon: boolean;
|
|
@@ -4907,22 +4907,22 @@ export declare const EpSearchListPage: {
|
|
|
4907
4907
|
readonly disabled: boolean;
|
|
4908
4908
|
readonly hideRequiredAsterisk: boolean;
|
|
4909
4909
|
readonly labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
4910
|
-
readonly labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
4910
|
+
readonly labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
4911
4911
|
readonly inlineMessage: boolean;
|
|
4912
4912
|
readonly showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
4913
4913
|
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>;
|
|
4914
4914
|
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
4915
4915
|
readonly isShowFold: boolean;
|
|
4916
4916
|
readonly showFieldCount: number;
|
|
4917
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
4917
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
4918
4918
|
readonly labelSuffix: string;
|
|
4919
4919
|
readonly inline: boolean;
|
|
4920
4920
|
readonly statusIcon: boolean;
|
|
4921
4921
|
readonly validateOnRuleChange: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
4922
4922
|
readonly scrollToError: boolean;
|
|
4923
|
+
readonly modelValue?: Record<string, unknown> | undefined;
|
|
4923
4924
|
readonly rules?: Partial<Record<string, import("element-plus/es/utils/typescript.js").Arrayable<import("element-plus").FormItemRule>>> | undefined;
|
|
4924
4925
|
readonly model?: Record<string, any> | undefined;
|
|
4925
|
-
readonly modelValue?: Record<string, unknown> | undefined;
|
|
4926
4926
|
readonly onToggleStatus?: ((status: boolean) => any) | undefined;
|
|
4927
4927
|
readonly onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
4928
4928
|
readonly "onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
|
|
@@ -5018,14 +5018,14 @@ export declare const EpSearchListPage: {
|
|
|
5018
5018
|
disabled: boolean;
|
|
5019
5019
|
hideRequiredAsterisk: boolean;
|
|
5020
5020
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
5021
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
5021
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
5022
5022
|
inlineMessage: boolean;
|
|
5023
5023
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
5024
5024
|
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>;
|
|
5025
5025
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
5026
5026
|
isShowFold: boolean;
|
|
5027
5027
|
showFieldCount: number;
|
|
5028
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
5028
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
5029
5029
|
labelSuffix: string;
|
|
5030
5030
|
inline: boolean;
|
|
5031
5031
|
statusIcon: boolean;
|
|
@@ -5057,14 +5057,14 @@ export declare const EpSearchListPage: {
|
|
|
5057
5057
|
disabled: boolean;
|
|
5058
5058
|
hideRequiredAsterisk: boolean;
|
|
5059
5059
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
5060
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
5060
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
5061
5061
|
inlineMessage: boolean;
|
|
5062
5062
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
5063
5063
|
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>;
|
|
5064
5064
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
5065
5065
|
isShowFold: boolean;
|
|
5066
5066
|
showFieldCount: number;
|
|
5067
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
5067
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
5068
5068
|
labelSuffix: string;
|
|
5069
5069
|
inline: boolean;
|
|
5070
5070
|
statusIcon: boolean;
|
|
@@ -5143,8 +5143,6 @@ export declare const EpSearchListPage: {
|
|
|
5143
5143
|
};
|
|
5144
5144
|
}) | null>>;
|
|
5145
5145
|
}, {}, {}, {}, {
|
|
5146
|
-
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
5147
|
-
readonly formData: Record<string, any>;
|
|
5148
5146
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
5149
5147
|
[key: string]: any;
|
|
5150
5148
|
required: boolean | (() => boolean);
|
|
@@ -5191,6 +5189,8 @@ export declare const EpSearchListPage: {
|
|
|
5191
5189
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
5192
5190
|
}>[];
|
|
5193
5191
|
readonly isInitSearch: boolean;
|
|
5192
|
+
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
5193
|
+
readonly formData: Record<string, any>;
|
|
5194
5194
|
readonly showOperationColumn: boolean;
|
|
5195
5195
|
readonly leftButtons: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
5196
5196
|
name: string;
|
|
@@ -5294,11 +5294,9 @@ export declare const EpSearchListPage: {
|
|
|
5294
5294
|
readonly style: import("vue").StyleValue;
|
|
5295
5295
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
5296
5296
|
readonly disabled: boolean;
|
|
5297
|
-
readonly className: string;
|
|
5298
|
-
readonly border: boolean;
|
|
5299
|
-
readonly align: "center" | "left" | "right";
|
|
5300
5297
|
readonly lazy: boolean;
|
|
5301
5298
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
5299
|
+
readonly className: string;
|
|
5302
5300
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
5303
5301
|
[key: string]: any;
|
|
5304
5302
|
required: boolean | (() => boolean);
|
|
@@ -5316,6 +5314,7 @@ export declare const EpSearchListPage: {
|
|
|
5316
5314
|
readonly showSelectionCol: boolean;
|
|
5317
5315
|
readonly showSingleSelectionCol: boolean;
|
|
5318
5316
|
readonly showIndexCol: boolean;
|
|
5317
|
+
readonly align: "center" | "right" | "left";
|
|
5319
5318
|
readonly actionColWidth: string | number | undefined;
|
|
5320
5319
|
readonly reserveSelection: boolean;
|
|
5321
5320
|
readonly paginationProps: Partial<{
|
|
@@ -5324,8 +5323,8 @@ export declare const EpSearchListPage: {
|
|
|
5324
5323
|
readonly disabled: boolean;
|
|
5325
5324
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
5326
5325
|
readonly popperClass: string;
|
|
5327
|
-
readonly layout: string;
|
|
5328
5326
|
readonly pagerCount: number;
|
|
5327
|
+
readonly layout: string;
|
|
5329
5328
|
readonly pageSizes: number[];
|
|
5330
5329
|
readonly prevText: string;
|
|
5331
5330
|
readonly nextText: string;
|
|
@@ -5381,6 +5380,7 @@ export declare const EpSearchListPage: {
|
|
|
5381
5380
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
5382
5381
|
}>[];
|
|
5383
5382
|
readonly isInitSearch: boolean;
|
|
5383
|
+
readonly border: boolean;
|
|
5384
5384
|
readonly fit: boolean;
|
|
5385
5385
|
readonly stripe: boolean;
|
|
5386
5386
|
readonly showHeader: boolean;
|
|
@@ -5402,11 +5402,9 @@ export declare const EpSearchListPage: {
|
|
|
5402
5402
|
readonly style: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null;
|
|
5403
5403
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
5404
5404
|
readonly disabled: boolean;
|
|
5405
|
-
readonly className: string;
|
|
5406
|
-
readonly border: boolean;
|
|
5407
|
-
readonly align: "center" | "left" | "right";
|
|
5408
5405
|
readonly lazy: boolean;
|
|
5409
5406
|
readonly headerCellStyle: import("element-plus").CellStyle<any>;
|
|
5407
|
+
readonly className: string;
|
|
5410
5408
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
5411
5409
|
[key: string]: any;
|
|
5412
5410
|
required: boolean | (() => boolean);
|
|
@@ -5424,6 +5422,7 @@ export declare const EpSearchListPage: {
|
|
|
5424
5422
|
readonly showSelectionCol: boolean;
|
|
5425
5423
|
readonly showSingleSelectionCol: boolean;
|
|
5426
5424
|
readonly showIndexCol: boolean;
|
|
5425
|
+
readonly align: "center" | "right" | "left";
|
|
5427
5426
|
readonly actionColWidth: string | number;
|
|
5428
5427
|
readonly reserveSelection: boolean;
|
|
5429
5428
|
readonly paginationProps: Partial<{
|
|
@@ -5432,8 +5431,8 @@ export declare const EpSearchListPage: {
|
|
|
5432
5431
|
readonly disabled: boolean;
|
|
5433
5432
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
5434
5433
|
readonly popperClass: string;
|
|
5435
|
-
readonly layout: string;
|
|
5436
5434
|
readonly pagerCount: number;
|
|
5435
|
+
readonly layout: string;
|
|
5437
5436
|
readonly pageSizes: number[];
|
|
5438
5437
|
readonly prevText: string;
|
|
5439
5438
|
readonly nextText: string;
|
|
@@ -5489,6 +5488,7 @@ export declare const EpSearchListPage: {
|
|
|
5489
5488
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
5490
5489
|
}>[];
|
|
5491
5490
|
readonly isInitSearch: boolean;
|
|
5491
|
+
readonly border: boolean;
|
|
5492
5492
|
readonly fit: boolean;
|
|
5493
5493
|
readonly stripe: boolean;
|
|
5494
5494
|
readonly showHeader: boolean;
|
|
@@ -5547,7 +5547,7 @@ export declare const EpSearchListPage: {
|
|
|
5547
5547
|
readonly tooltipEffect?: string | undefined;
|
|
5548
5548
|
readonly appendFilterPanelTo?: string | undefined;
|
|
5549
5549
|
readonly scrollbarTabindex?: string | number | undefined;
|
|
5550
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "
|
|
5550
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
|
|
5551
5551
|
$attrs: {
|
|
5552
5552
|
[x: string]: unknown;
|
|
5553
5553
|
};
|
|
@@ -6344,11 +6344,9 @@ export declare const EpSearchListPage: {
|
|
|
6344
6344
|
readonly style: import("vue").StyleValue;
|
|
6345
6345
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
6346
6346
|
readonly disabled: boolean;
|
|
6347
|
-
readonly className: string;
|
|
6348
|
-
readonly border: boolean;
|
|
6349
|
-
readonly align: "center" | "left" | "right";
|
|
6350
6347
|
readonly lazy: boolean;
|
|
6351
6348
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
6349
|
+
readonly className: string;
|
|
6352
6350
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
6353
6351
|
[key: string]: any;
|
|
6354
6352
|
required: boolean | (() => boolean);
|
|
@@ -6366,6 +6364,7 @@ export declare const EpSearchListPage: {
|
|
|
6366
6364
|
readonly showSelectionCol: boolean;
|
|
6367
6365
|
readonly showSingleSelectionCol: boolean;
|
|
6368
6366
|
readonly showIndexCol: boolean;
|
|
6367
|
+
readonly align: "center" | "right" | "left";
|
|
6369
6368
|
readonly actionColWidth: string | number | undefined;
|
|
6370
6369
|
readonly reserveSelection: boolean;
|
|
6371
6370
|
readonly paginationProps: Partial<{
|
|
@@ -6374,8 +6373,8 @@ export declare const EpSearchListPage: {
|
|
|
6374
6373
|
readonly disabled: boolean;
|
|
6375
6374
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
6376
6375
|
readonly popperClass: string;
|
|
6377
|
-
readonly layout: string;
|
|
6378
6376
|
readonly pagerCount: number;
|
|
6377
|
+
readonly layout: string;
|
|
6379
6378
|
readonly pageSizes: number[];
|
|
6380
6379
|
readonly prevText: string;
|
|
6381
6380
|
readonly nextText: string;
|
|
@@ -6431,6 +6430,7 @@ export declare const EpSearchListPage: {
|
|
|
6431
6430
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
6432
6431
|
}>[];
|
|
6433
6432
|
readonly isInitSearch: boolean;
|
|
6433
|
+
readonly border: boolean;
|
|
6434
6434
|
readonly fit: boolean;
|
|
6435
6435
|
readonly stripe: boolean;
|
|
6436
6436
|
readonly showHeader: boolean;
|
|
@@ -6472,11 +6472,9 @@ export declare const EpSearchListPage: {
|
|
|
6472
6472
|
readonly style: import("vue").StyleValue;
|
|
6473
6473
|
readonly size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
6474
6474
|
readonly disabled: boolean;
|
|
6475
|
-
readonly className: string;
|
|
6476
|
-
readonly border: boolean;
|
|
6477
|
-
readonly align: "center" | "left" | "right";
|
|
6478
6475
|
readonly lazy: boolean;
|
|
6479
6476
|
readonly headerCellStyle: import("element-plus").CellStyle<any> | undefined;
|
|
6477
|
+
readonly className: string;
|
|
6480
6478
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
6481
6479
|
[key: string]: any;
|
|
6482
6480
|
required: boolean | (() => boolean);
|
|
@@ -6494,6 +6492,7 @@ export declare const EpSearchListPage: {
|
|
|
6494
6492
|
readonly showSelectionCol: boolean;
|
|
6495
6493
|
readonly showSingleSelectionCol: boolean;
|
|
6496
6494
|
readonly showIndexCol: boolean;
|
|
6495
|
+
readonly align: "center" | "right" | "left";
|
|
6497
6496
|
readonly actionColWidth: string | number | undefined;
|
|
6498
6497
|
readonly reserveSelection: boolean;
|
|
6499
6498
|
readonly paginationProps: Partial<{
|
|
@@ -6502,8 +6501,8 @@ export declare const EpSearchListPage: {
|
|
|
6502
6501
|
readonly disabled: boolean;
|
|
6503
6502
|
readonly teleported: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
6504
6503
|
readonly popperClass: string;
|
|
6505
|
-
readonly layout: string;
|
|
6506
6504
|
readonly pagerCount: number;
|
|
6505
|
+
readonly layout: string;
|
|
6507
6506
|
readonly pageSizes: number[];
|
|
6508
6507
|
readonly prevText: string;
|
|
6509
6508
|
readonly nextText: string;
|
|
@@ -6559,6 +6558,7 @@ export declare const EpSearchListPage: {
|
|
|
6559
6558
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
6560
6559
|
}>[];
|
|
6561
6560
|
readonly isInitSearch: boolean;
|
|
6561
|
+
readonly border: boolean;
|
|
6562
6562
|
readonly fit: boolean;
|
|
6563
6563
|
readonly stripe: boolean;
|
|
6564
6564
|
readonly showHeader: boolean;
|
|
@@ -7344,7 +7344,7 @@ export declare const EpSearchListPage: {
|
|
|
7344
7344
|
};
|
|
7345
7345
|
readonly preserveExpandedContent: BooleanConstructor;
|
|
7346
7346
|
readonly nativeScrollbar: BooleanConstructor;
|
|
7347
|
-
}>> & Readonly<{}>, "search" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "
|
|
7347
|
+
}>> & Readonly<{}>, "search" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
|
|
7348
7348
|
elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
|
|
7349
7349
|
elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
|
|
7350
7350
|
validate: () => import("element-plus").FormValidationResult;
|
|
@@ -7366,14 +7366,14 @@ export declare const EpSearchListPage: {
|
|
|
7366
7366
|
disabled: boolean;
|
|
7367
7367
|
hideRequiredAsterisk: boolean;
|
|
7368
7368
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
7369
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
7369
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
7370
7370
|
inlineMessage: boolean;
|
|
7371
7371
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
7372
7372
|
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>;
|
|
7373
7373
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
7374
7374
|
isShowFold: boolean;
|
|
7375
7375
|
showFieldCount: number;
|
|
7376
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
7376
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
7377
7377
|
labelSuffix: string;
|
|
7378
7378
|
inline: boolean;
|
|
7379
7379
|
statusIcon: boolean;
|
|
@@ -7385,22 +7385,22 @@ export declare const EpSearchListPage: {
|
|
|
7385
7385
|
readonly disabled: boolean;
|
|
7386
7386
|
readonly hideRequiredAsterisk: boolean;
|
|
7387
7387
|
readonly labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
7388
|
-
readonly labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
7388
|
+
readonly labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
7389
7389
|
readonly inlineMessage: boolean;
|
|
7390
7390
|
readonly showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
7391
7391
|
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>;
|
|
7392
7392
|
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
7393
7393
|
readonly isShowFold: boolean;
|
|
7394
7394
|
readonly showFieldCount: number;
|
|
7395
|
-
readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
7395
|
+
readonly requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
7396
7396
|
readonly labelSuffix: string;
|
|
7397
7397
|
readonly inline: boolean;
|
|
7398
7398
|
readonly statusIcon: boolean;
|
|
7399
7399
|
readonly validateOnRuleChange: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
7400
7400
|
readonly scrollToError: boolean;
|
|
7401
|
+
readonly modelValue?: Record<string, unknown> | undefined;
|
|
7401
7402
|
readonly rules?: Partial<Record<string, import("element-plus/es/utils/typescript.js").Arrayable<import("element-plus").FormItemRule>>> | undefined;
|
|
7402
7403
|
readonly model?: Record<string, any> | undefined;
|
|
7403
|
-
readonly modelValue?: Record<string, unknown> | undefined;
|
|
7404
7404
|
readonly onToggleStatus?: ((status: boolean) => any) | undefined;
|
|
7405
7405
|
readonly onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
7406
7406
|
readonly "onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
|
|
@@ -7496,14 +7496,14 @@ export declare const EpSearchListPage: {
|
|
|
7496
7496
|
disabled: boolean;
|
|
7497
7497
|
hideRequiredAsterisk: boolean;
|
|
7498
7498
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
7499
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
7499
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
7500
7500
|
inlineMessage: boolean;
|
|
7501
7501
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
7502
7502
|
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>;
|
|
7503
7503
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
7504
7504
|
isShowFold: boolean;
|
|
7505
7505
|
showFieldCount: number;
|
|
7506
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
7506
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
7507
7507
|
labelSuffix: string;
|
|
7508
7508
|
inline: boolean;
|
|
7509
7509
|
statusIcon: boolean;
|
|
@@ -7535,14 +7535,14 @@ export declare const EpSearchListPage: {
|
|
|
7535
7535
|
disabled: boolean;
|
|
7536
7536
|
hideRequiredAsterisk: boolean;
|
|
7537
7537
|
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
7538
|
-
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "
|
|
7538
|
+
labelPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "top" | "right" | "left", unknown>;
|
|
7539
7539
|
inlineMessage: boolean;
|
|
7540
7540
|
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
7541
7541
|
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>;
|
|
7542
7542
|
formItemList: import("el-plus/es/index").FormItemProps[];
|
|
7543
7543
|
isShowFold: boolean;
|
|
7544
7544
|
showFieldCount: number;
|
|
7545
|
-
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "
|
|
7545
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
7546
7546
|
labelSuffix: string;
|
|
7547
7547
|
inline: boolean;
|
|
7548
7548
|
statusIcon: boolean;
|
|
@@ -7621,8 +7621,6 @@ export declare const EpSearchListPage: {
|
|
|
7621
7621
|
};
|
|
7622
7622
|
}) | null>>;
|
|
7623
7623
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
7624
|
-
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
7625
|
-
readonly formData: Record<string, any>;
|
|
7626
7624
|
readonly columns: Partial<import("element-plus").TableColumnCtx & {
|
|
7627
7625
|
[key: string]: any;
|
|
7628
7626
|
required: boolean | (() => boolean);
|
|
@@ -7669,6 +7667,8 @@ export declare const EpSearchListPage: {
|
|
|
7669
7667
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
7670
7668
|
}>[];
|
|
7671
7669
|
readonly isInitSearch: boolean;
|
|
7670
|
+
readonly formItemList: import("el-plus/es/index").FormItemProps[];
|
|
7671
|
+
readonly formData: Record<string, any>;
|
|
7672
7672
|
readonly showOperationColumn: boolean;
|
|
7673
7673
|
readonly leftButtons: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
7674
7674
|
name: string;
|