cosey 0.10.17 → 0.10.19
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/components/copy/copy.d.ts +1 -1
- package/components/copy/index.d.ts +3 -3
- package/components/editor/contents/widget-popover.d.ts +203 -265
- package/components/field/components/remote-select/remote-select.api.d.ts +3 -3
- package/components/field/components/remote-select/remote-select.d.ts +5 -5
- package/components/field/field.api.d.ts +5 -5
- package/components/form/form-item.api.d.ts +9 -44
- package/components/form/form-item.vue.js +2 -2
- package/components/form/form.api.d.ts +9 -58
- package/components/form/form.d.ts +24 -122
- package/components/form/index.d.ts +54 -201
- package/components/form-dialog/form-dialog.api.d.ts +17 -108
- package/components/form-dialog/form-dialog.d.ts +36 -218
- package/components/form-drawer/form-drawer.api.d.ts +24 -133
- package/components/form-drawer/form-drawer.d.ts +53 -271
- package/components/form-drawer/index.d.ts +102 -423
- package/components/form-group/form-group.api.d.ts +6 -27
- package/components/form-group/form-group.d.ts +13 -55
- package/components/form-group/index.d.ts +24 -87
- package/components/form-list/form-list.api.d.ts +9 -44
- package/components/form-list/form-list.vue.js +2 -2
- package/components/form-list/index.d.ts +9 -9
- package/components/form-query/form-query.api.d.ts +9 -58
- package/components/form-query/form-query.d.ts +24 -122
- package/components/form-query/index.d.ts +45 -192
- package/components/image-card/image-card.api.d.ts +12 -68
- package/components/image-card/image-card.d.ts +27 -139
- package/components/image-card/index.d.ts +45 -213
- package/components/remote-select/index.d.ts +144 -614
- package/components/remote-select/remote-select.api.d.ts +33 -158
- package/components/remote-select/remote-select.d.ts +69 -318
- package/components/remote-select/remote-select.js +1 -1
- package/components/remote-select/remote-select.style.js +3 -1
- package/components/stack-dialog/index.d.ts +81 -396
- package/components/stack-dialog/stack-dialog.api.d.ts +17 -122
- package/components/stack-dialog/stack-dialog.d.ts +44 -254
- package/components/table/index.d.ts +72 -170
- package/components/table/table-column/table-column.api.d.ts +13 -13
- package/components/table/table-column/table-column.d.ts +7 -7
- package/components/table/table-export/table-export.api.d.ts +17 -108
- package/components/table/table-export/table-export.d.ts +36 -218
- package/components/table/table-footer/index.d.ts +3 -3
- package/components/table/table-query/table-query.api.d.ts +9 -58
- package/components/table/table-query/table-query.d.ts +24 -122
- package/components/table/table.d.ts +18 -18
- package/components/table/table.vue.d.ts +36 -36
- package/components/week-range-picker/index.d.ts +331 -466
- package/components/week-range-picker/week-range-picker.api.d.ts +106 -151
- package/components/week-range-picker/week-range-picker.d.ts +212 -302
- package/layout/layout-menu/layout-menu.vue.js +4 -3
- package/layout/layout-menu/style/index.js +3 -0
- package/locale/lang/ar.d.ts +6 -0
- package/locale/lang/en.d.ts +6 -0
- package/locale/lang/zh-cn.d.ts +9 -3
- package/package.json +10 -3
|
@@ -95,74 +95,25 @@ declare const _Table: {
|
|
|
95
95
|
};
|
|
96
96
|
model: ObjectConstructor;
|
|
97
97
|
rules: {
|
|
98
|
-
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").
|
|
98
|
+
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>>;
|
|
99
99
|
readonly required: false;
|
|
100
100
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
101
101
|
__epPropKey: true;
|
|
102
102
|
};
|
|
103
|
-
labelPosition:
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
__epPropKey: true;
|
|
108
|
-
} & {
|
|
109
|
-
readonly default: "right";
|
|
110
|
-
};
|
|
111
|
-
requireAsteriskPosition: {
|
|
112
|
-
readonly type: import("vue").PropType<"left" | "right">;
|
|
113
|
-
readonly required: false;
|
|
114
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
115
|
-
__epPropKey: true;
|
|
116
|
-
} & {
|
|
117
|
-
readonly default: "left";
|
|
118
|
-
};
|
|
119
|
-
labelWidth: {
|
|
120
|
-
readonly type: import("vue").PropType<string | number>;
|
|
121
|
-
readonly required: false;
|
|
122
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
123
|
-
__epPropKey: true;
|
|
124
|
-
} & {
|
|
125
|
-
readonly default: "";
|
|
126
|
-
};
|
|
127
|
-
labelSuffix: {
|
|
128
|
-
readonly type: import("vue").PropType<string>;
|
|
129
|
-
readonly required: false;
|
|
130
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
131
|
-
__epPropKey: true;
|
|
132
|
-
} & {
|
|
133
|
-
readonly default: "";
|
|
134
|
-
};
|
|
103
|
+
labelPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right" | "top", unknown, "right", boolean>;
|
|
104
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right", unknown, "left", boolean>;
|
|
105
|
+
labelWidth: import("element-plus/es/utils/index.mjs").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
106
|
+
labelSuffix: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
135
107
|
inline: BooleanConstructor;
|
|
136
108
|
inlineMessage: BooleanConstructor;
|
|
137
109
|
statusIcon: BooleanConstructor;
|
|
138
|
-
showMessage:
|
|
139
|
-
|
|
140
|
-
readonly required: false;
|
|
141
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
142
|
-
__epPropKey: true;
|
|
143
|
-
} & {
|
|
144
|
-
readonly default: true;
|
|
145
|
-
};
|
|
146
|
-
validateOnRuleChange: {
|
|
147
|
-
readonly type: import("vue").PropType<boolean>;
|
|
148
|
-
readonly required: false;
|
|
149
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
150
|
-
__epPropKey: true;
|
|
151
|
-
} & {
|
|
152
|
-
readonly default: true;
|
|
153
|
-
};
|
|
110
|
+
showMessage: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
111
|
+
validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
154
112
|
hideRequiredAsterisk: BooleanConstructor;
|
|
155
113
|
scrollToError: BooleanConstructor;
|
|
156
|
-
scrollIntoViewOptions:
|
|
157
|
-
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
158
|
-
readonly required: false;
|
|
159
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
160
|
-
__epPropKey: true;
|
|
161
|
-
} & {
|
|
162
|
-
readonly default: true;
|
|
163
|
-
};
|
|
114
|
+
scrollIntoViewOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown, true, boolean>;
|
|
164
115
|
size: {
|
|
165
|
-
readonly type: import("vue").PropType<"" | "
|
|
116
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", unknown>>;
|
|
166
117
|
readonly required: false;
|
|
167
118
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
168
119
|
__epPropKey: true;
|
|
@@ -220,7 +171,7 @@ declare const _Table: {
|
|
|
220
171
|
type: import("vue").PropType<any[]>;
|
|
221
172
|
default: () => never[];
|
|
222
173
|
};
|
|
223
|
-
load: import("vue").PropType<import("element-plus
|
|
174
|
+
load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
|
|
224
175
|
className: {
|
|
225
176
|
type: StringConstructor;
|
|
226
177
|
default: string;
|
|
@@ -232,43 +183,43 @@ declare const _Table: {
|
|
|
232
183
|
default: boolean;
|
|
233
184
|
};
|
|
234
185
|
lazy: BooleanConstructor;
|
|
235
|
-
showOverflowTooltip: import("vue").PropType<import("element-plus
|
|
236
|
-
tooltipFormatter: import("vue").PropType<import("element-plus
|
|
237
|
-
cellClassName: import("vue").PropType<import("element-plus
|
|
186
|
+
showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
|
|
187
|
+
tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
|
|
188
|
+
cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
|
|
238
189
|
indent: {
|
|
239
190
|
type: NumberConstructor;
|
|
240
191
|
default: number;
|
|
241
192
|
};
|
|
242
|
-
rowStyle: import("vue").PropType<import("element-plus
|
|
193
|
+
rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
|
|
243
194
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
244
195
|
defaultExpandAll: BooleanConstructor;
|
|
245
196
|
stripe: BooleanConstructor;
|
|
246
|
-
rowKey: import("vue").PropType<import("element-plus
|
|
197
|
+
rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
|
|
247
198
|
showHeader: {
|
|
248
199
|
type: BooleanConstructor;
|
|
249
200
|
default: boolean;
|
|
250
201
|
};
|
|
251
202
|
showSummary: BooleanConstructor;
|
|
252
|
-
summaryMethod: import("vue").PropType<import("element-plus
|
|
253
|
-
rowClassName: import("vue").PropType<import("element-plus
|
|
254
|
-
cellStyle: import("vue").PropType<import("element-plus
|
|
255
|
-
headerRowClassName: import("vue").PropType<import("element-plus
|
|
256
|
-
headerRowStyle: import("vue").PropType<import("element-plus
|
|
257
|
-
headerCellClassName: import("vue").PropType<import("element-plus
|
|
258
|
-
headerCellStyle: import("vue").PropType<import("element-plus
|
|
203
|
+
summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
|
|
204
|
+
rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
|
|
205
|
+
cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
|
|
206
|
+
headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
|
|
207
|
+
headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
|
|
208
|
+
headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
|
|
209
|
+
headerCellStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerCellStyle"]>;
|
|
259
210
|
highlightCurrentRow: BooleanConstructor;
|
|
260
211
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
261
|
-
expandRowKeys: import("vue").PropType<import("element-plus
|
|
262
|
-
defaultSort: import("vue").PropType<import("element-plus
|
|
212
|
+
expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
|
|
213
|
+
defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
|
|
263
214
|
tooltipEffect: StringConstructor;
|
|
264
|
-
tooltipOptions: import("vue").PropType<import("element-plus
|
|
265
|
-
spanMethod: import("vue").PropType<import("element-plus
|
|
215
|
+
tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
|
|
216
|
+
spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
|
|
266
217
|
selectOnIndeterminate: {
|
|
267
218
|
type: BooleanConstructor;
|
|
268
219
|
default: boolean;
|
|
269
220
|
};
|
|
270
221
|
treeProps: {
|
|
271
|
-
type: import("vue").PropType<import("element-plus
|
|
222
|
+
type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
|
|
272
223
|
default: () => {
|
|
273
224
|
hasChildren: string;
|
|
274
225
|
children: string;
|
|
@@ -452,74 +403,25 @@ declare const _Table: {
|
|
|
452
403
|
};
|
|
453
404
|
model: ObjectConstructor;
|
|
454
405
|
rules: {
|
|
455
|
-
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").
|
|
406
|
+
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>>;
|
|
456
407
|
readonly required: false;
|
|
457
408
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
458
409
|
__epPropKey: true;
|
|
459
410
|
};
|
|
460
|
-
labelPosition:
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
__epPropKey: true;
|
|
465
|
-
} & {
|
|
466
|
-
readonly default: "right";
|
|
467
|
-
};
|
|
468
|
-
requireAsteriskPosition: {
|
|
469
|
-
readonly type: import("vue").PropType<"left" | "right">;
|
|
470
|
-
readonly required: false;
|
|
471
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
472
|
-
__epPropKey: true;
|
|
473
|
-
} & {
|
|
474
|
-
readonly default: "left";
|
|
475
|
-
};
|
|
476
|
-
labelWidth: {
|
|
477
|
-
readonly type: import("vue").PropType<string | number>;
|
|
478
|
-
readonly required: false;
|
|
479
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
480
|
-
__epPropKey: true;
|
|
481
|
-
} & {
|
|
482
|
-
readonly default: "";
|
|
483
|
-
};
|
|
484
|
-
labelSuffix: {
|
|
485
|
-
readonly type: import("vue").PropType<string>;
|
|
486
|
-
readonly required: false;
|
|
487
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
488
|
-
__epPropKey: true;
|
|
489
|
-
} & {
|
|
490
|
-
readonly default: "";
|
|
491
|
-
};
|
|
411
|
+
labelPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right" | "top", unknown, "right", boolean>;
|
|
412
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right", unknown, "left", boolean>;
|
|
413
|
+
labelWidth: import("element-plus/es/utils/index.mjs").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
414
|
+
labelSuffix: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
492
415
|
inline: BooleanConstructor;
|
|
493
416
|
inlineMessage: BooleanConstructor;
|
|
494
417
|
statusIcon: BooleanConstructor;
|
|
495
|
-
showMessage:
|
|
496
|
-
|
|
497
|
-
readonly required: false;
|
|
498
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
499
|
-
__epPropKey: true;
|
|
500
|
-
} & {
|
|
501
|
-
readonly default: true;
|
|
502
|
-
};
|
|
503
|
-
validateOnRuleChange: {
|
|
504
|
-
readonly type: import("vue").PropType<boolean>;
|
|
505
|
-
readonly required: false;
|
|
506
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
507
|
-
__epPropKey: true;
|
|
508
|
-
} & {
|
|
509
|
-
readonly default: true;
|
|
510
|
-
};
|
|
418
|
+
showMessage: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
419
|
+
validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
511
420
|
hideRequiredAsterisk: BooleanConstructor;
|
|
512
421
|
scrollToError: BooleanConstructor;
|
|
513
|
-
scrollIntoViewOptions:
|
|
514
|
-
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
515
|
-
readonly required: false;
|
|
516
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
517
|
-
__epPropKey: true;
|
|
518
|
-
} & {
|
|
519
|
-
readonly default: true;
|
|
520
|
-
};
|
|
422
|
+
scrollIntoViewOptions: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown, true, boolean>;
|
|
521
423
|
size: {
|
|
522
|
-
readonly type: import("vue").PropType<"" | "
|
|
424
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", unknown>>;
|
|
523
425
|
readonly required: false;
|
|
524
426
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
525
427
|
__epPropKey: true;
|
|
@@ -577,7 +479,7 @@ declare const _Table: {
|
|
|
577
479
|
type: import("vue").PropType<any[]>;
|
|
578
480
|
default: () => never[];
|
|
579
481
|
};
|
|
580
|
-
load: import("vue").PropType<import("element-plus
|
|
482
|
+
load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
|
|
581
483
|
className: {
|
|
582
484
|
type: StringConstructor;
|
|
583
485
|
default: string;
|
|
@@ -589,43 +491,43 @@ declare const _Table: {
|
|
|
589
491
|
default: boolean;
|
|
590
492
|
};
|
|
591
493
|
lazy: BooleanConstructor;
|
|
592
|
-
showOverflowTooltip: import("vue").PropType<import("element-plus
|
|
593
|
-
tooltipFormatter: import("vue").PropType<import("element-plus
|
|
594
|
-
cellClassName: import("vue").PropType<import("element-plus
|
|
494
|
+
showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
|
|
495
|
+
tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
|
|
496
|
+
cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
|
|
595
497
|
indent: {
|
|
596
498
|
type: NumberConstructor;
|
|
597
499
|
default: number;
|
|
598
500
|
};
|
|
599
|
-
rowStyle: import("vue").PropType<import("element-plus
|
|
501
|
+
rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
|
|
600
502
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
601
503
|
defaultExpandAll: BooleanConstructor;
|
|
602
504
|
stripe: BooleanConstructor;
|
|
603
|
-
rowKey: import("vue").PropType<import("element-plus
|
|
505
|
+
rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
|
|
604
506
|
showHeader: {
|
|
605
507
|
type: BooleanConstructor;
|
|
606
508
|
default: boolean;
|
|
607
509
|
};
|
|
608
510
|
showSummary: BooleanConstructor;
|
|
609
|
-
summaryMethod: import("vue").PropType<import("element-plus
|
|
610
|
-
rowClassName: import("vue").PropType<import("element-plus
|
|
611
|
-
cellStyle: import("vue").PropType<import("element-plus
|
|
612
|
-
headerRowClassName: import("vue").PropType<import("element-plus
|
|
613
|
-
headerRowStyle: import("vue").PropType<import("element-plus
|
|
614
|
-
headerCellClassName: import("vue").PropType<import("element-plus
|
|
615
|
-
headerCellStyle: import("vue").PropType<import("element-plus
|
|
511
|
+
summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
|
|
512
|
+
rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
|
|
513
|
+
cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
|
|
514
|
+
headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
|
|
515
|
+
headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
|
|
516
|
+
headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
|
|
517
|
+
headerCellStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerCellStyle"]>;
|
|
616
518
|
highlightCurrentRow: BooleanConstructor;
|
|
617
519
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
618
|
-
expandRowKeys: import("vue").PropType<import("element-plus
|
|
619
|
-
defaultSort: import("vue").PropType<import("element-plus
|
|
520
|
+
expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
|
|
521
|
+
defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
|
|
620
522
|
tooltipEffect: StringConstructor;
|
|
621
|
-
tooltipOptions: import("vue").PropType<import("element-plus
|
|
622
|
-
spanMethod: import("vue").PropType<import("element-plus
|
|
523
|
+
tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
|
|
524
|
+
spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
|
|
623
525
|
selectOnIndeterminate: {
|
|
624
526
|
type: BooleanConstructor;
|
|
625
527
|
default: boolean;
|
|
626
528
|
};
|
|
627
529
|
treeProps: {
|
|
628
|
-
type: import("vue").PropType<import("element-plus
|
|
530
|
+
type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
|
|
629
531
|
default: () => {
|
|
630
532
|
hasChildren: string;
|
|
631
533
|
children: string;
|
|
@@ -789,7 +691,7 @@ declare const _Table: {
|
|
|
789
691
|
type: import("vue").PropType<any[]>;
|
|
790
692
|
default: () => never[];
|
|
791
693
|
};
|
|
792
|
-
load: import("vue").PropType<import("element-plus
|
|
694
|
+
load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
|
|
793
695
|
className: {
|
|
794
696
|
type: StringConstructor;
|
|
795
697
|
default: string;
|
|
@@ -801,43 +703,43 @@ declare const _Table: {
|
|
|
801
703
|
default: boolean;
|
|
802
704
|
};
|
|
803
705
|
lazy: BooleanConstructor;
|
|
804
|
-
showOverflowTooltip: import("vue").PropType<import("element-plus
|
|
805
|
-
tooltipFormatter: import("vue").PropType<import("element-plus
|
|
806
|
-
cellClassName: import("vue").PropType<import("element-plus
|
|
706
|
+
showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
|
|
707
|
+
tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
|
|
708
|
+
cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
|
|
807
709
|
indent: {
|
|
808
710
|
type: NumberConstructor;
|
|
809
711
|
default: number;
|
|
810
712
|
};
|
|
811
|
-
rowStyle: import("vue").PropType<import("element-plus
|
|
713
|
+
rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
|
|
812
714
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
813
715
|
defaultExpandAll: BooleanConstructor;
|
|
814
716
|
stripe: BooleanConstructor;
|
|
815
|
-
rowKey: import("vue").PropType<import("element-plus
|
|
717
|
+
rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
|
|
816
718
|
showHeader: {
|
|
817
719
|
type: BooleanConstructor;
|
|
818
720
|
default: boolean;
|
|
819
721
|
};
|
|
820
722
|
showSummary: BooleanConstructor;
|
|
821
|
-
summaryMethod: import("vue").PropType<import("element-plus
|
|
822
|
-
rowClassName: import("vue").PropType<import("element-plus
|
|
823
|
-
cellStyle: import("vue").PropType<import("element-plus
|
|
824
|
-
headerRowClassName: import("vue").PropType<import("element-plus
|
|
825
|
-
headerRowStyle: import("vue").PropType<import("element-plus
|
|
826
|
-
headerCellClassName: import("vue").PropType<import("element-plus
|
|
827
|
-
headerCellStyle: import("vue").PropType<import("element-plus
|
|
723
|
+
summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
|
|
724
|
+
rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
|
|
725
|
+
cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
|
|
726
|
+
headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
|
|
727
|
+
headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
|
|
728
|
+
headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
|
|
729
|
+
headerCellStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerCellStyle"]>;
|
|
828
730
|
highlightCurrentRow: BooleanConstructor;
|
|
829
731
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
830
|
-
expandRowKeys: import("vue").PropType<import("element-plus
|
|
831
|
-
defaultSort: import("vue").PropType<import("element-plus
|
|
732
|
+
expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
|
|
733
|
+
defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
|
|
832
734
|
tooltipEffect: StringConstructor;
|
|
833
|
-
tooltipOptions: import("vue").PropType<import("element-plus
|
|
834
|
-
spanMethod: import("vue").PropType<import("element-plus
|
|
735
|
+
tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
|
|
736
|
+
spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
|
|
835
737
|
selectOnIndeterminate: {
|
|
836
738
|
type: BooleanConstructor;
|
|
837
739
|
default: boolean;
|
|
838
740
|
};
|
|
839
741
|
treeProps: {
|
|
840
|
-
type: import("vue").PropType<import("element-plus
|
|
742
|
+
type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
|
|
841
743
|
default: () => {
|
|
842
744
|
hasChildren: string;
|
|
843
745
|
children: string;
|
|
@@ -77,13 +77,13 @@ export declare const tableColumnProps: {
|
|
|
77
77
|
type: (NumberConstructor | StringConstructor)[];
|
|
78
78
|
default: string;
|
|
79
79
|
};
|
|
80
|
-
renderHeader: PropType<
|
|
80
|
+
renderHeader: PropType<TableColumnCtx<any>["renderHeader"]>;
|
|
81
81
|
sortable: {
|
|
82
82
|
type: (BooleanConstructor | StringConstructor)[];
|
|
83
83
|
default: boolean;
|
|
84
84
|
};
|
|
85
|
-
sortMethod: PropType<
|
|
86
|
-
sortBy: PropType<
|
|
85
|
+
sortMethod: PropType<TableColumnCtx<any>["sortMethod"]>;
|
|
86
|
+
sortBy: PropType<TableColumnCtx<any>["sortBy"]>;
|
|
87
87
|
resizable: {
|
|
88
88
|
type: BooleanConstructor;
|
|
89
89
|
default: boolean;
|
|
@@ -91,28 +91,28 @@ export declare const tableColumnProps: {
|
|
|
91
91
|
columnKey: StringConstructor;
|
|
92
92
|
headerAlign: StringConstructor;
|
|
93
93
|
showOverflowTooltip: {
|
|
94
|
-
type: PropType<
|
|
94
|
+
type: PropType<TableColumnCtx<any>["showOverflowTooltip"]>;
|
|
95
95
|
default: undefined;
|
|
96
96
|
};
|
|
97
|
-
tooltipFormatter: PropType<
|
|
97
|
+
tooltipFormatter: PropType<TableColumnCtx<any>["tooltipFormatter"]>;
|
|
98
98
|
fixed: (BooleanConstructor | StringConstructor)[];
|
|
99
|
-
formatter: PropType<
|
|
100
|
-
selectable: PropType<
|
|
99
|
+
formatter: PropType<TableColumnCtx<any>["formatter"]>;
|
|
100
|
+
selectable: PropType<TableColumnCtx<any>["selectable"]>;
|
|
101
101
|
reserveSelection: BooleanConstructor;
|
|
102
|
-
filterMethod: PropType<
|
|
103
|
-
filteredValue: PropType<
|
|
104
|
-
filters: PropType<
|
|
102
|
+
filterMethod: PropType<TableColumnCtx<any>["filterMethod"]>;
|
|
103
|
+
filteredValue: PropType<TableColumnCtx<any>["filteredValue"]>;
|
|
104
|
+
filters: PropType<TableColumnCtx<any>["filters"]>;
|
|
105
105
|
filterPlacement: StringConstructor;
|
|
106
106
|
filterMultiple: {
|
|
107
107
|
type: BooleanConstructor;
|
|
108
108
|
default: boolean;
|
|
109
109
|
};
|
|
110
110
|
filterClassName: StringConstructor;
|
|
111
|
-
index: PropType<
|
|
111
|
+
index: PropType<TableColumnCtx<any>["index"]>;
|
|
112
112
|
sortOrders: {
|
|
113
|
-
type: PropType<
|
|
113
|
+
type: PropType<TableColumnCtx<any>["sortOrders"]>;
|
|
114
114
|
default: () => (string | null)[];
|
|
115
|
-
validator: (val:
|
|
115
|
+
validator: (val: TableColumnCtx<any>["sortOrders"]) => boolean;
|
|
116
116
|
};
|
|
117
117
|
};
|
|
118
118
|
export interface TableColumnSlots {
|
|
@@ -7,13 +7,13 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
7
7
|
type?: string | undefined;
|
|
8
8
|
filters?: import("element-plus/es/components/table/src/table-column/defaults.mjs").Filters | undefined;
|
|
9
9
|
index?: number | ((index: number) => number) | undefined;
|
|
10
|
-
formatter?: ((row: any, column: import("element-plus
|
|
10
|
+
formatter?: ((row: any, column: import("element-plus").TableColumnCtx<any>, cellValue: any, index: number) => import("vue").VNode | string) | undefined;
|
|
11
11
|
className?: string | undefined;
|
|
12
12
|
labelClassName?: string | undefined;
|
|
13
13
|
property?: string | undefined;
|
|
14
14
|
prop?: string | undefined;
|
|
15
15
|
renderHeader?: ((data: {
|
|
16
|
-
column: import("element-plus
|
|
16
|
+
column: import("element-plus").TableColumnCtx<any>;
|
|
17
17
|
$index: number;
|
|
18
18
|
store: import("element-plus/es/components/table/src/store/index.mjs").Store<any>;
|
|
19
19
|
_self: any;
|
|
@@ -24,7 +24,7 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
24
24
|
resizable?: boolean | undefined;
|
|
25
25
|
columnKey?: string | undefined;
|
|
26
26
|
headerAlign?: string | undefined;
|
|
27
|
-
showOverflowTooltip?: boolean | Partial<Pick<import("element-plus
|
|
27
|
+
showOverflowTooltip?: boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "transition" | "enterable" | "appendTo" | "placement" | "popperClass" | "showArrow" | "effect" | "popperOptions" | "showAfter" | "hideAfter">> | undefined;
|
|
28
28
|
selectable?: ((row: any, index: number) => boolean) | undefined;
|
|
29
29
|
reserveSelection?: boolean | undefined;
|
|
30
30
|
filterMethod?: import("element-plus/es/components/table/src/table-column/defaults.mjs").FilterMethods<any> | undefined;
|
|
@@ -51,13 +51,13 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
51
51
|
type?: string | undefined;
|
|
52
52
|
filters?: import("element-plus/es/components/table/src/table-column/defaults.mjs").Filters | undefined;
|
|
53
53
|
index?: number | ((index: number) => number) | undefined;
|
|
54
|
-
formatter?: ((row: any, column: import("element-plus
|
|
54
|
+
formatter?: ((row: any, column: import("element-plus").TableColumnCtx<any>, cellValue: any, index: number) => import("vue").VNode | string) | undefined;
|
|
55
55
|
className?: string | undefined;
|
|
56
56
|
labelClassName?: string | undefined;
|
|
57
57
|
property?: string | undefined;
|
|
58
58
|
prop?: string | undefined;
|
|
59
59
|
renderHeader?: ((data: {
|
|
60
|
-
column: import("element-plus
|
|
60
|
+
column: import("element-plus").TableColumnCtx<any>;
|
|
61
61
|
$index: number;
|
|
62
62
|
store: import("element-plus/es/components/table/src/store/index.mjs").Store<any>;
|
|
63
63
|
_self: any;
|
|
@@ -68,7 +68,7 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
68
68
|
resizable?: boolean | undefined;
|
|
69
69
|
columnKey?: string | undefined;
|
|
70
70
|
headerAlign?: string | undefined;
|
|
71
|
-
showOverflowTooltip?: boolean | Partial<Pick<import("element-plus
|
|
71
|
+
showOverflowTooltip?: boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "transition" | "enterable" | "appendTo" | "placement" | "popperClass" | "showArrow" | "effect" | "popperOptions" | "showAfter" | "hideAfter">> | undefined;
|
|
72
72
|
selectable?: ((row: any, index: number) => boolean) | undefined;
|
|
73
73
|
reserveSelection?: boolean | undefined;
|
|
74
74
|
filterMethod?: import("element-plus/es/components/table/src/table-column/defaults.mjs").FilterMethods<any> | undefined;
|
|
@@ -95,7 +95,7 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
95
95
|
align: "left" | "right" | "center" | undefined;
|
|
96
96
|
sortable: string | boolean;
|
|
97
97
|
resizable: boolean;
|
|
98
|
-
showOverflowTooltip: boolean | Partial<Pick<import("element-plus
|
|
98
|
+
showOverflowTooltip: boolean | Partial<Pick<import("element-plus").ElTooltipProps, "offset" | "transition" | "enterable" | "appendTo" | "placement" | "popperClass" | "showArrow" | "effect" | "popperOptions" | "showAfter" | "hideAfter">> | undefined;
|
|
99
99
|
reserveSelection: boolean;
|
|
100
100
|
filterMultiple: boolean;
|
|
101
101
|
sortOrders: (import("element-plus/es/components/table/src/table/defaults.mjs").TableSortOrder | null)[];
|