el-plus 0.0.57 → 0.0.59
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 +93 -279
- package/dist/index.full.min.js +2 -1
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +2 -1
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +93 -279
- package/es/components/buttons/index.d.ts +6 -6
- package/es/components/buttons/src/buttons-vue.d.ts +2 -2
- package/es/components/date-picker-range/index.d.ts +3 -3
- package/es/components/date-picker-range/src/date-picker-range.vue.d.ts +1 -1
- package/es/components/input/index.d.ts +3 -3
- package/es/components/input/src/input.vue.d.ts +1 -1
- package/es/components/search-list-page/index.d.ts +30 -30
- package/es/components/search-list-page/src/search-list-page.vue.d.ts +10 -10
- package/es/components/search-list-page/src/use-search-list-page.d.ts +10 -10
- package/es/components/table/index.d.ts +6 -6
- package/es/components/table/src/table.vue.d.ts +2 -2
- package/es/components/table/src/use-table.d.ts +2 -2
- package/es/components/uni-vue/src/use-uni-vue.mjs +66 -20
- package/es/components/uni-vue/src/use-uni-vue.mjs.map +1 -1
- package/es/hooks/use-locale.mjs +20 -50
- package/es/hooks/use-locale.mjs.map +1 -1
- package/es/hooks/use-navigation.mjs +6 -6
- package/es/hooks/use-navigation.mjs.map +1 -1
- package/es/package.json.mjs +1 -1
- package/es/types/global.d.ts +1 -0
- package/lib/components/buttons/index.d.ts +6 -6
- package/lib/components/buttons/src/buttons-vue.d.ts +2 -2
- package/lib/components/date-picker-range/index.d.ts +3 -3
- package/lib/components/date-picker-range/src/date-picker-range.vue.d.ts +1 -1
- package/lib/components/input/index.d.ts +3 -3
- package/lib/components/input/src/input.vue.d.ts +1 -1
- package/lib/components/search-list-page/index.d.ts +30 -30
- package/lib/components/search-list-page/src/search-list-page.vue.d.ts +10 -10
- package/lib/components/search-list-page/src/use-search-list-page.d.ts +10 -10
- package/lib/components/table/index.d.ts +6 -6
- package/lib/components/table/src/table.vue.d.ts +2 -2
- package/lib/components/table/src/use-table.d.ts +2 -2
- package/lib/components/uni-vue/src/use-uni-vue.js +65 -19
- package/lib/components/uni-vue/src/use-uni-vue.js.map +1 -1
- package/lib/hooks/use-locale.js +20 -50
- package/lib/hooks/use-locale.js.map +1 -1
- package/lib/hooks/use-navigation.js +6 -6
- package/lib/hooks/use-navigation.js.map +1 -1
- package/lib/package.json.js +1 -1
- package/lib/types/global.d.ts +1 -0
- package/package.json +1 -1
|
@@ -129,7 +129,6 @@ export declare const EpInput: {
|
|
|
129
129
|
mouseleave: (evt: MouseEvent) => void;
|
|
130
130
|
"update:modelValue": (value: string) => void;
|
|
131
131
|
}, import("vue").PublicProps, {
|
|
132
|
-
placeholder: string;
|
|
133
132
|
id: string;
|
|
134
133
|
type: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string) | (() => import("element-plus").InputType) | ((new (...args: any[]) => string) | (() => import("element-plus").InputType))[], unknown, unknown>;
|
|
135
134
|
disabled: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -137,6 +136,7 @@ export declare const EpInput: {
|
|
|
137
136
|
autofocus: boolean;
|
|
138
137
|
clearable: true;
|
|
139
138
|
nonzero: boolean;
|
|
139
|
+
placeholder: string;
|
|
140
140
|
thousand: boolean;
|
|
141
141
|
inputmode: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined) | ((new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined))[], unknown, unknown>;
|
|
142
142
|
modelModifiers: import("element-plus").InputModelModifiers;
|
|
@@ -275,7 +275,6 @@ export declare const EpInput: {
|
|
|
275
275
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
276
276
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
277
277
|
}>, {}, {}, {}, {}, {
|
|
278
|
-
placeholder: string;
|
|
279
278
|
id: string;
|
|
280
279
|
type: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string) | (() => import("element-plus").InputType) | ((new (...args: any[]) => string) | (() => import("element-plus").InputType))[], unknown, unknown>;
|
|
281
280
|
disabled: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -283,6 +282,7 @@ export declare const EpInput: {
|
|
|
283
282
|
autofocus: boolean;
|
|
284
283
|
clearable: true;
|
|
285
284
|
nonzero: boolean;
|
|
285
|
+
placeholder: string;
|
|
286
286
|
thousand: boolean;
|
|
287
287
|
inputmode: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined) | ((new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined))[], unknown, unknown>;
|
|
288
288
|
modelModifiers: import("element-plus").InputModelModifiers;
|
|
@@ -431,7 +431,6 @@ export declare const EpInput: {
|
|
|
431
431
|
mouseleave: (evt: MouseEvent) => void;
|
|
432
432
|
"update:modelValue": (value: string) => void;
|
|
433
433
|
}, string, {
|
|
434
|
-
placeholder: string;
|
|
435
434
|
id: string;
|
|
436
435
|
type: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string) | (() => import("element-plus").InputType) | ((new (...args: any[]) => string) | (() => import("element-plus").InputType))[], unknown, unknown>;
|
|
437
436
|
disabled: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -439,6 +438,7 @@ export declare const EpInput: {
|
|
|
439
438
|
autofocus: boolean;
|
|
440
439
|
clearable: true;
|
|
441
440
|
nonzero: boolean;
|
|
441
|
+
placeholder: string;
|
|
442
442
|
thousand: boolean;
|
|
443
443
|
inputmode: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined) | ((new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined))[], unknown, unknown>;
|
|
444
444
|
modelModifiers: import("element-plus").InputModelModifiers;
|
|
@@ -235,7 +235,6 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
235
235
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
236
236
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
237
237
|
}>, {
|
|
238
|
-
placeholder: string;
|
|
239
238
|
id: string;
|
|
240
239
|
type: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string) | (() => import("element-plus").InputType) | ((new (...args: any[]) => string) | (() => import("element-plus").InputType))[], unknown, unknown>;
|
|
241
240
|
disabled: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -243,6 +242,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
243
242
|
autofocus: boolean;
|
|
244
243
|
clearable: true;
|
|
245
244
|
nonzero: boolean;
|
|
245
|
+
placeholder: string;
|
|
246
246
|
thousand: boolean;
|
|
247
247
|
inputmode: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined) | ((new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined))[], unknown, unknown>;
|
|
248
248
|
modelModifiers: import("element-plus").InputModelModifiers;
|
|
@@ -170,13 +170,13 @@ export declare const EpSearchListPage: {
|
|
|
170
170
|
readonly nextText: string;
|
|
171
171
|
readonly hideOnSinglePage: boolean;
|
|
172
172
|
} & {
|
|
173
|
-
readonly total?: number | undefined;
|
|
174
|
-
readonly currentPage?: number | undefined;
|
|
175
173
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
176
174
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
177
175
|
readonly pageSize?: number | undefined;
|
|
178
176
|
readonly defaultPageSize?: number | undefined;
|
|
177
|
+
readonly total?: number | undefined;
|
|
179
178
|
readonly pageCount?: number | undefined;
|
|
179
|
+
readonly currentPage?: number | undefined;
|
|
180
180
|
readonly defaultCurrentPage?: number | undefined;
|
|
181
181
|
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;
|
|
182
182
|
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;
|
|
@@ -278,13 +278,13 @@ export declare const EpSearchListPage: {
|
|
|
278
278
|
readonly nextText: string;
|
|
279
279
|
readonly hideOnSinglePage: boolean;
|
|
280
280
|
} & {
|
|
281
|
-
readonly total?: number | undefined;
|
|
282
|
-
readonly currentPage?: number | undefined;
|
|
283
281
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
284
282
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
285
283
|
readonly pageSize?: number | undefined;
|
|
286
284
|
readonly defaultPageSize?: number | undefined;
|
|
285
|
+
readonly total?: number | undefined;
|
|
287
286
|
readonly pageCount?: number | undefined;
|
|
287
|
+
readonly currentPage?: number | undefined;
|
|
288
288
|
readonly defaultCurrentPage?: number | undefined;
|
|
289
289
|
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;
|
|
290
290
|
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;
|
|
@@ -344,8 +344,6 @@ export declare const EpSearchListPage: {
|
|
|
344
344
|
readonly allowDragLastColumn: boolean;
|
|
345
345
|
readonly preserveExpandedContent: boolean;
|
|
346
346
|
readonly nativeScrollbar: boolean;
|
|
347
|
-
readonly emptyText?: string | undefined;
|
|
348
|
-
readonly sumText?: string | undefined;
|
|
349
347
|
readonly method?: import("axios").Method | undefined;
|
|
350
348
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
351
349
|
readonly width?: string | number | undefined;
|
|
@@ -383,7 +381,9 @@ export declare const EpSearchListPage: {
|
|
|
383
381
|
readonly customColumnModule?: string | number | undefined;
|
|
384
382
|
readonly height?: string | number | undefined;
|
|
385
383
|
readonly maxHeight?: string | number | undefined;
|
|
384
|
+
readonly sumText?: string | undefined;
|
|
386
385
|
readonly currentRowKey?: string | number | undefined;
|
|
386
|
+
readonly emptyText?: string | undefined;
|
|
387
387
|
readonly tooltipEffect?: string | undefined;
|
|
388
388
|
readonly appendFilterPanelTo?: string | undefined;
|
|
389
389
|
readonly scrollbarTabindex?: string | number | undefined;
|
|
@@ -1259,13 +1259,13 @@ export declare const EpSearchListPage: {
|
|
|
1259
1259
|
readonly nextText: string;
|
|
1260
1260
|
readonly hideOnSinglePage: boolean;
|
|
1261
1261
|
} & {
|
|
1262
|
-
readonly total?: number | undefined;
|
|
1263
|
-
readonly currentPage?: number | undefined;
|
|
1264
1262
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
1265
1263
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
1266
1264
|
readonly pageSize?: number | undefined;
|
|
1267
1265
|
readonly defaultPageSize?: number | undefined;
|
|
1266
|
+
readonly total?: number | undefined;
|
|
1268
1267
|
readonly pageCount?: number | undefined;
|
|
1268
|
+
readonly currentPage?: number | undefined;
|
|
1269
1269
|
readonly defaultCurrentPage?: number | undefined;
|
|
1270
1270
|
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;
|
|
1271
1271
|
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;
|
|
@@ -1387,13 +1387,13 @@ export declare const EpSearchListPage: {
|
|
|
1387
1387
|
readonly nextText: string;
|
|
1388
1388
|
readonly hideOnSinglePage: boolean;
|
|
1389
1389
|
} & {
|
|
1390
|
-
readonly total?: number | undefined;
|
|
1391
|
-
readonly currentPage?: number | undefined;
|
|
1392
1390
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
1393
1391
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
1394
1392
|
readonly pageSize?: number | undefined;
|
|
1395
1393
|
readonly defaultPageSize?: number | undefined;
|
|
1394
|
+
readonly total?: number | undefined;
|
|
1396
1395
|
readonly pageCount?: number | undefined;
|
|
1396
|
+
readonly currentPage?: number | undefined;
|
|
1397
1397
|
readonly defaultCurrentPage?: number | undefined;
|
|
1398
1398
|
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;
|
|
1399
1399
|
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;
|
|
@@ -2779,13 +2779,13 @@ export declare const EpSearchListPage: {
|
|
|
2779
2779
|
readonly nextText: string;
|
|
2780
2780
|
readonly hideOnSinglePage: boolean;
|
|
2781
2781
|
} & {
|
|
2782
|
-
readonly total?: number | undefined;
|
|
2783
|
-
readonly currentPage?: number | undefined;
|
|
2784
2782
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
2785
2783
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
2786
2784
|
readonly pageSize?: number | undefined;
|
|
2787
2785
|
readonly defaultPageSize?: number | undefined;
|
|
2786
|
+
readonly total?: number | undefined;
|
|
2788
2787
|
readonly pageCount?: number | undefined;
|
|
2788
|
+
readonly currentPage?: number | undefined;
|
|
2789
2789
|
readonly defaultCurrentPage?: number | undefined;
|
|
2790
2790
|
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;
|
|
2791
2791
|
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;
|
|
@@ -2887,13 +2887,13 @@ export declare const EpSearchListPage: {
|
|
|
2887
2887
|
readonly nextText: string;
|
|
2888
2888
|
readonly hideOnSinglePage: boolean;
|
|
2889
2889
|
} & {
|
|
2890
|
-
readonly total?: number | undefined;
|
|
2891
|
-
readonly currentPage?: number | undefined;
|
|
2892
2890
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
2893
2891
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
2894
2892
|
readonly pageSize?: number | undefined;
|
|
2895
2893
|
readonly defaultPageSize?: number | undefined;
|
|
2894
|
+
readonly total?: number | undefined;
|
|
2896
2895
|
readonly pageCount?: number | undefined;
|
|
2896
|
+
readonly currentPage?: number | undefined;
|
|
2897
2897
|
readonly defaultCurrentPage?: number | undefined;
|
|
2898
2898
|
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;
|
|
2899
2899
|
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;
|
|
@@ -2953,8 +2953,6 @@ export declare const EpSearchListPage: {
|
|
|
2953
2953
|
readonly allowDragLastColumn: boolean;
|
|
2954
2954
|
readonly preserveExpandedContent: boolean;
|
|
2955
2955
|
readonly nativeScrollbar: boolean;
|
|
2956
|
-
readonly emptyText?: string | undefined;
|
|
2957
|
-
readonly sumText?: string | undefined;
|
|
2958
2956
|
readonly method?: import("axios").Method | undefined;
|
|
2959
2957
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
2960
2958
|
readonly width?: string | number | undefined;
|
|
@@ -2992,7 +2990,9 @@ export declare const EpSearchListPage: {
|
|
|
2992
2990
|
readonly customColumnModule?: string | number | undefined;
|
|
2993
2991
|
readonly height?: string | number | undefined;
|
|
2994
2992
|
readonly maxHeight?: string | number | undefined;
|
|
2993
|
+
readonly sumText?: string | undefined;
|
|
2995
2994
|
readonly currentRowKey?: string | number | undefined;
|
|
2995
|
+
readonly emptyText?: string | undefined;
|
|
2996
2996
|
readonly tooltipEffect?: string | undefined;
|
|
2997
2997
|
readonly appendFilterPanelTo?: string | undefined;
|
|
2998
2998
|
readonly scrollbarTabindex?: string | number | undefined;
|
|
@@ -3868,13 +3868,13 @@ export declare const EpSearchListPage: {
|
|
|
3868
3868
|
readonly nextText: string;
|
|
3869
3869
|
readonly hideOnSinglePage: boolean;
|
|
3870
3870
|
} & {
|
|
3871
|
-
readonly total?: number | undefined;
|
|
3872
|
-
readonly currentPage?: number | undefined;
|
|
3873
3871
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
3874
3872
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
3875
3873
|
readonly pageSize?: number | undefined;
|
|
3876
3874
|
readonly defaultPageSize?: number | undefined;
|
|
3875
|
+
readonly total?: number | undefined;
|
|
3877
3876
|
readonly pageCount?: number | undefined;
|
|
3877
|
+
readonly currentPage?: number | undefined;
|
|
3878
3878
|
readonly defaultCurrentPage?: number | undefined;
|
|
3879
3879
|
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;
|
|
3880
3880
|
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;
|
|
@@ -3996,13 +3996,13 @@ export declare const EpSearchListPage: {
|
|
|
3996
3996
|
readonly nextText: string;
|
|
3997
3997
|
readonly hideOnSinglePage: boolean;
|
|
3998
3998
|
} & {
|
|
3999
|
-
readonly total?: number | undefined;
|
|
4000
|
-
readonly currentPage?: number | undefined;
|
|
4001
3999
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
4002
4000
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
4003
4001
|
readonly pageSize?: number | undefined;
|
|
4004
4002
|
readonly defaultPageSize?: number | undefined;
|
|
4003
|
+
readonly total?: number | undefined;
|
|
4005
4004
|
readonly pageCount?: number | undefined;
|
|
4005
|
+
readonly currentPage?: number | undefined;
|
|
4006
4006
|
readonly defaultCurrentPage?: number | undefined;
|
|
4007
4007
|
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;
|
|
4008
4008
|
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;
|
|
@@ -5335,13 +5335,13 @@ export declare const EpSearchListPage: {
|
|
|
5335
5335
|
readonly nextText: string;
|
|
5336
5336
|
readonly hideOnSinglePage: boolean;
|
|
5337
5337
|
} & {
|
|
5338
|
-
readonly total?: number | undefined;
|
|
5339
|
-
readonly currentPage?: number | undefined;
|
|
5340
5338
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
5341
5339
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
5342
5340
|
readonly pageSize?: number | undefined;
|
|
5343
5341
|
readonly defaultPageSize?: number | undefined;
|
|
5342
|
+
readonly total?: number | undefined;
|
|
5344
5343
|
readonly pageCount?: number | undefined;
|
|
5344
|
+
readonly currentPage?: number | undefined;
|
|
5345
5345
|
readonly defaultCurrentPage?: number | undefined;
|
|
5346
5346
|
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;
|
|
5347
5347
|
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;
|
|
@@ -5443,13 +5443,13 @@ export declare const EpSearchListPage: {
|
|
|
5443
5443
|
readonly nextText: string;
|
|
5444
5444
|
readonly hideOnSinglePage: boolean;
|
|
5445
5445
|
} & {
|
|
5446
|
-
readonly total?: number | undefined;
|
|
5447
|
-
readonly currentPage?: number | undefined;
|
|
5448
5446
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
5449
5447
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
5450
5448
|
readonly pageSize?: number | undefined;
|
|
5451
5449
|
readonly defaultPageSize?: number | undefined;
|
|
5450
|
+
readonly total?: number | undefined;
|
|
5452
5451
|
readonly pageCount?: number | undefined;
|
|
5452
|
+
readonly currentPage?: number | undefined;
|
|
5453
5453
|
readonly defaultCurrentPage?: number | undefined;
|
|
5454
5454
|
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;
|
|
5455
5455
|
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;
|
|
@@ -5509,8 +5509,6 @@ export declare const EpSearchListPage: {
|
|
|
5509
5509
|
readonly allowDragLastColumn: boolean;
|
|
5510
5510
|
readonly preserveExpandedContent: boolean;
|
|
5511
5511
|
readonly nativeScrollbar: boolean;
|
|
5512
|
-
readonly emptyText?: string | undefined;
|
|
5513
|
-
readonly sumText?: string | undefined;
|
|
5514
5512
|
readonly method?: import("axios").Method | undefined;
|
|
5515
5513
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
5516
5514
|
readonly width?: string | number | undefined;
|
|
@@ -5548,7 +5546,9 @@ export declare const EpSearchListPage: {
|
|
|
5548
5546
|
readonly customColumnModule?: string | number | undefined;
|
|
5549
5547
|
readonly height?: string | number | undefined;
|
|
5550
5548
|
readonly maxHeight?: string | number | undefined;
|
|
5549
|
+
readonly sumText?: string | undefined;
|
|
5551
5550
|
readonly currentRowKey?: string | number | undefined;
|
|
5551
|
+
readonly emptyText?: string | undefined;
|
|
5552
5552
|
readonly tooltipEffect?: string | undefined;
|
|
5553
5553
|
readonly appendFilterPanelTo?: string | undefined;
|
|
5554
5554
|
readonly scrollbarTabindex?: string | number | undefined;
|
|
@@ -6386,13 +6386,13 @@ export declare const EpSearchListPage: {
|
|
|
6386
6386
|
readonly nextText: string;
|
|
6387
6387
|
readonly hideOnSinglePage: boolean;
|
|
6388
6388
|
} & {
|
|
6389
|
-
readonly total?: number | undefined;
|
|
6390
|
-
readonly currentPage?: number | undefined;
|
|
6391
6389
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
6392
6390
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
6393
6391
|
readonly pageSize?: number | undefined;
|
|
6394
6392
|
readonly defaultPageSize?: number | undefined;
|
|
6393
|
+
readonly total?: number | undefined;
|
|
6395
6394
|
readonly pageCount?: number | undefined;
|
|
6395
|
+
readonly currentPage?: number | undefined;
|
|
6396
6396
|
readonly defaultCurrentPage?: number | undefined;
|
|
6397
6397
|
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;
|
|
6398
6398
|
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;
|
|
@@ -6514,13 +6514,13 @@ export declare const EpSearchListPage: {
|
|
|
6514
6514
|
readonly nextText: string;
|
|
6515
6515
|
readonly hideOnSinglePage: boolean;
|
|
6516
6516
|
} & {
|
|
6517
|
-
readonly total?: number | undefined;
|
|
6518
|
-
readonly currentPage?: number | undefined;
|
|
6519
6517
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
6520
6518
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
6521
6519
|
readonly pageSize?: number | undefined;
|
|
6522
6520
|
readonly defaultPageSize?: number | undefined;
|
|
6521
|
+
readonly total?: number | undefined;
|
|
6523
6522
|
readonly pageCount?: number | undefined;
|
|
6523
|
+
readonly currentPage?: number | undefined;
|
|
6524
6524
|
readonly defaultCurrentPage?: number | undefined;
|
|
6525
6525
|
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;
|
|
6526
6526
|
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;
|
|
@@ -123,13 +123,13 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
123
123
|
readonly nextText: string;
|
|
124
124
|
readonly hideOnSinglePage: boolean;
|
|
125
125
|
} & {
|
|
126
|
-
readonly total?: number | undefined;
|
|
127
|
-
readonly currentPage?: number | undefined;
|
|
128
126
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
129
127
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
130
128
|
readonly pageSize?: number | undefined;
|
|
131
129
|
readonly defaultPageSize?: number | undefined;
|
|
130
|
+
readonly total?: number | undefined;
|
|
132
131
|
readonly pageCount?: number | undefined;
|
|
132
|
+
readonly currentPage?: number | undefined;
|
|
133
133
|
readonly defaultCurrentPage?: number | undefined;
|
|
134
134
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
135
135
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -231,13 +231,13 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
231
231
|
readonly nextText: string;
|
|
232
232
|
readonly hideOnSinglePage: boolean;
|
|
233
233
|
} & {
|
|
234
|
-
readonly total?: number | undefined;
|
|
235
|
-
readonly currentPage?: number | undefined;
|
|
236
234
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
237
235
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
238
236
|
readonly pageSize?: number | undefined;
|
|
239
237
|
readonly defaultPageSize?: number | undefined;
|
|
238
|
+
readonly total?: number | undefined;
|
|
240
239
|
readonly pageCount?: number | undefined;
|
|
240
|
+
readonly currentPage?: number | undefined;
|
|
241
241
|
readonly defaultCurrentPage?: number | undefined;
|
|
242
242
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
243
243
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -297,8 +297,6 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
297
297
|
readonly allowDragLastColumn: boolean;
|
|
298
298
|
readonly preserveExpandedContent: boolean;
|
|
299
299
|
readonly nativeScrollbar: boolean;
|
|
300
|
-
readonly emptyText?: string | undefined;
|
|
301
|
-
readonly sumText?: string | undefined;
|
|
302
300
|
readonly method?: import("axios").Method | undefined;
|
|
303
301
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
304
302
|
readonly width?: string | number | undefined;
|
|
@@ -336,7 +334,9 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
336
334
|
readonly customColumnModule?: string | number | undefined;
|
|
337
335
|
readonly height?: string | number | undefined;
|
|
338
336
|
readonly maxHeight?: string | number | undefined;
|
|
337
|
+
readonly sumText?: string | undefined;
|
|
339
338
|
readonly currentRowKey?: string | number | undefined;
|
|
339
|
+
readonly emptyText?: string | undefined;
|
|
340
340
|
readonly tooltipEffect?: string | undefined;
|
|
341
341
|
readonly appendFilterPanelTo?: string | undefined;
|
|
342
342
|
readonly scrollbarTabindex?: string | number | undefined;
|
|
@@ -1174,13 +1174,13 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
1174
1174
|
readonly nextText: string;
|
|
1175
1175
|
readonly hideOnSinglePage: boolean;
|
|
1176
1176
|
} & {
|
|
1177
|
-
readonly total?: number | undefined;
|
|
1178
|
-
readonly currentPage?: number | undefined;
|
|
1179
1177
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
1180
1178
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
1181
1179
|
readonly pageSize?: number | undefined;
|
|
1182
1180
|
readonly defaultPageSize?: number | undefined;
|
|
1181
|
+
readonly total?: number | undefined;
|
|
1183
1182
|
readonly pageCount?: number | undefined;
|
|
1183
|
+
readonly currentPage?: number | undefined;
|
|
1184
1184
|
readonly defaultCurrentPage?: number | undefined;
|
|
1185
1185
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
1186
1186
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -1302,13 +1302,13 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
1302
1302
|
readonly nextText: string;
|
|
1303
1303
|
readonly hideOnSinglePage: boolean;
|
|
1304
1304
|
} & {
|
|
1305
|
-
readonly total?: number | undefined;
|
|
1306
|
-
readonly currentPage?: number | undefined;
|
|
1307
1305
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
1308
1306
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
1309
1307
|
readonly pageSize?: number | undefined;
|
|
1310
1308
|
readonly defaultPageSize?: number | undefined;
|
|
1309
|
+
readonly total?: number | undefined;
|
|
1311
1310
|
readonly pageCount?: number | undefined;
|
|
1311
|
+
readonly currentPage?: number | undefined;
|
|
1312
1312
|
readonly defaultCurrentPage?: number | undefined;
|
|
1313
1313
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
1314
1314
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -126,13 +126,13 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
126
126
|
readonly nextText: string;
|
|
127
127
|
readonly hideOnSinglePage: boolean;
|
|
128
128
|
} & {
|
|
129
|
-
readonly total?: number | undefined;
|
|
130
|
-
readonly currentPage?: number | undefined;
|
|
131
129
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
132
130
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
133
131
|
readonly pageSize?: number | undefined;
|
|
134
132
|
readonly defaultPageSize?: number | undefined;
|
|
133
|
+
readonly total?: number | undefined;
|
|
135
134
|
readonly pageCount?: number | undefined;
|
|
135
|
+
readonly currentPage?: number | undefined;
|
|
136
136
|
readonly defaultCurrentPage?: number | undefined;
|
|
137
137
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
138
138
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -234,13 +234,13 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
234
234
|
readonly nextText: string;
|
|
235
235
|
readonly hideOnSinglePage: boolean;
|
|
236
236
|
} & {
|
|
237
|
-
readonly total?: number | undefined;
|
|
238
|
-
readonly currentPage?: number | undefined;
|
|
239
237
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
240
238
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
241
239
|
readonly pageSize?: number | undefined;
|
|
242
240
|
readonly defaultPageSize?: number | undefined;
|
|
241
|
+
readonly total?: number | undefined;
|
|
243
242
|
readonly pageCount?: number | undefined;
|
|
243
|
+
readonly currentPage?: number | undefined;
|
|
244
244
|
readonly defaultCurrentPage?: number | undefined;
|
|
245
245
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
246
246
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -300,8 +300,6 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
300
300
|
readonly allowDragLastColumn: boolean;
|
|
301
301
|
readonly preserveExpandedContent: boolean;
|
|
302
302
|
readonly nativeScrollbar: boolean;
|
|
303
|
-
readonly emptyText?: string | undefined;
|
|
304
|
-
readonly sumText?: string | undefined;
|
|
305
303
|
readonly method?: import("axios").Method | undefined;
|
|
306
304
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
307
305
|
readonly width?: string | number | undefined;
|
|
@@ -339,7 +337,9 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
339
337
|
readonly customColumnModule?: string | number | undefined;
|
|
340
338
|
readonly height?: string | number | undefined;
|
|
341
339
|
readonly maxHeight?: string | number | undefined;
|
|
340
|
+
readonly sumText?: string | undefined;
|
|
342
341
|
readonly currentRowKey?: string | number | undefined;
|
|
342
|
+
readonly emptyText?: string | undefined;
|
|
343
343
|
readonly tooltipEffect?: string | undefined;
|
|
344
344
|
readonly appendFilterPanelTo?: string | undefined;
|
|
345
345
|
readonly scrollbarTabindex?: string | number | undefined;
|
|
@@ -1177,13 +1177,13 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
1177
1177
|
readonly nextText: string;
|
|
1178
1178
|
readonly hideOnSinglePage: boolean;
|
|
1179
1179
|
} & {
|
|
1180
|
-
readonly total?: number | undefined;
|
|
1181
|
-
readonly currentPage?: number | undefined;
|
|
1182
1180
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
1183
1181
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
1184
1182
|
readonly pageSize?: number | undefined;
|
|
1185
1183
|
readonly defaultPageSize?: number | undefined;
|
|
1184
|
+
readonly total?: number | undefined;
|
|
1186
1185
|
readonly pageCount?: number | undefined;
|
|
1186
|
+
readonly currentPage?: number | undefined;
|
|
1187
1187
|
readonly defaultCurrentPage?: number | undefined;
|
|
1188
1188
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
1189
1189
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -1305,13 +1305,13 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
1305
1305
|
readonly nextText: string;
|
|
1306
1306
|
readonly hideOnSinglePage: boolean;
|
|
1307
1307
|
} & {
|
|
1308
|
-
readonly total?: number | undefined;
|
|
1309
|
-
readonly currentPage?: number | undefined;
|
|
1310
1308
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
1311
1309
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
1312
1310
|
readonly pageSize?: number | undefined;
|
|
1313
1311
|
readonly defaultPageSize?: number | undefined;
|
|
1312
|
+
readonly total?: number | undefined;
|
|
1314
1313
|
readonly pageCount?: number | undefined;
|
|
1314
|
+
readonly currentPage?: number | undefined;
|
|
1315
1315
|
readonly defaultCurrentPage?: number | undefined;
|
|
1316
1316
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
1317
1317
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -857,13 +857,13 @@ export declare const EpTable: {
|
|
|
857
857
|
readonly nextText: string;
|
|
858
858
|
readonly hideOnSinglePage: boolean;
|
|
859
859
|
} & {
|
|
860
|
-
readonly total?: number | undefined;
|
|
861
|
-
readonly currentPage?: number | undefined;
|
|
862
860
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
863
861
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
864
862
|
readonly pageSize?: number | undefined;
|
|
865
863
|
readonly defaultPageSize?: number | undefined;
|
|
864
|
+
readonly total?: number | undefined;
|
|
866
865
|
readonly pageCount?: number | undefined;
|
|
866
|
+
readonly currentPage?: number | undefined;
|
|
867
867
|
readonly defaultCurrentPage?: number | undefined;
|
|
868
868
|
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;
|
|
869
869
|
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;
|
|
@@ -1788,13 +1788,13 @@ export declare const EpTable: {
|
|
|
1788
1788
|
readonly nextText: string;
|
|
1789
1789
|
readonly hideOnSinglePage: boolean;
|
|
1790
1790
|
} & {
|
|
1791
|
-
readonly total?: number | undefined;
|
|
1792
|
-
readonly currentPage?: number | undefined;
|
|
1793
1791
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
1794
1792
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
1795
1793
|
readonly pageSize?: number | undefined;
|
|
1796
1794
|
readonly defaultPageSize?: number | undefined;
|
|
1795
|
+
readonly total?: number | undefined;
|
|
1797
1796
|
readonly pageCount?: number | undefined;
|
|
1797
|
+
readonly currentPage?: number | undefined;
|
|
1798
1798
|
readonly defaultCurrentPage?: number | undefined;
|
|
1799
1799
|
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;
|
|
1800
1800
|
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;
|
|
@@ -2678,13 +2678,13 @@ export declare const EpTable: {
|
|
|
2678
2678
|
readonly nextText: string;
|
|
2679
2679
|
readonly hideOnSinglePage: boolean;
|
|
2680
2680
|
} & {
|
|
2681
|
-
readonly total?: number | undefined;
|
|
2682
|
-
readonly currentPage?: number | undefined;
|
|
2683
2681
|
readonly size?: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
2684
2682
|
readonly popperStyle?: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
2685
2683
|
readonly pageSize?: number | undefined;
|
|
2686
2684
|
readonly defaultPageSize?: number | undefined;
|
|
2685
|
+
readonly total?: number | undefined;
|
|
2687
2686
|
readonly pageCount?: number | undefined;
|
|
2687
|
+
readonly currentPage?: number | undefined;
|
|
2688
2688
|
readonly defaultCurrentPage?: number | undefined;
|
|
2689
2689
|
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;
|
|
2690
2690
|
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;
|
|
@@ -1590,13 +1590,13 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
1590
1590
|
readonly nextText: string;
|
|
1591
1591
|
readonly hideOnSinglePage: boolean;
|
|
1592
1592
|
} & {
|
|
1593
|
-
readonly total?: number | undefined;
|
|
1594
|
-
readonly currentPage?: number | undefined;
|
|
1595
1593
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
1596
1594
|
readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
1597
1595
|
readonly pageSize?: number | undefined;
|
|
1598
1596
|
readonly defaultPageSize?: number | undefined;
|
|
1597
|
+
readonly total?: number | undefined;
|
|
1599
1598
|
readonly pageCount?: number | undefined;
|
|
1599
|
+
readonly currentPage?: number | undefined;
|
|
1600
1600
|
readonly defaultCurrentPage?: number | undefined;
|
|
1601
1601
|
readonly prevIcon?: import("element-plus/es/utils").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;
|
|
1602
1602
|
readonly nextIcon?: import("element-plus/es/utils").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;
|
|
@@ -26,13 +26,13 @@ export declare const useTable: (props: TableProps) => {
|
|
|
26
26
|
prevText?: string | undefined;
|
|
27
27
|
nextText?: string | undefined;
|
|
28
28
|
hideOnSinglePage?: boolean | undefined;
|
|
29
|
-
total?: number | undefined;
|
|
30
|
-
currentPage?: number | undefined;
|
|
31
29
|
size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
32
30
|
popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
|
|
33
31
|
pageSize?: number | undefined;
|
|
34
32
|
defaultPageSize?: number | undefined;
|
|
33
|
+
total?: number | undefined;
|
|
35
34
|
pageCount?: number | undefined;
|
|
35
|
+
currentPage?: number | undefined;
|
|
36
36
|
defaultCurrentPage?: number | undefined;
|
|
37
37
|
prevIcon?: import("element-plus/es/utils").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;
|
|
38
38
|
nextIcon?: import("element-plus/es/utils").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;
|