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
|
@@ -67,74 +67,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
67
67
|
};
|
|
68
68
|
model: ObjectConstructor;
|
|
69
69
|
rules: {
|
|
70
|
-
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").
|
|
70
|
+
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>>;
|
|
71
71
|
readonly required: false;
|
|
72
72
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
73
73
|
__epPropKey: true;
|
|
74
74
|
};
|
|
75
|
-
labelPosition:
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
__epPropKey: true;
|
|
80
|
-
} & {
|
|
81
|
-
readonly default: "right";
|
|
82
|
-
};
|
|
83
|
-
requireAsteriskPosition: {
|
|
84
|
-
readonly type: import("vue").PropType<"left" | "right">;
|
|
85
|
-
readonly required: false;
|
|
86
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
87
|
-
__epPropKey: true;
|
|
88
|
-
} & {
|
|
89
|
-
readonly default: "left";
|
|
90
|
-
};
|
|
91
|
-
labelWidth: {
|
|
92
|
-
readonly type: import("vue").PropType<string | number>;
|
|
93
|
-
readonly required: false;
|
|
94
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
95
|
-
__epPropKey: true;
|
|
96
|
-
} & {
|
|
97
|
-
readonly default: "";
|
|
98
|
-
};
|
|
99
|
-
labelSuffix: {
|
|
100
|
-
readonly type: import("vue").PropType<string>;
|
|
101
|
-
readonly required: false;
|
|
102
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
103
|
-
__epPropKey: true;
|
|
104
|
-
} & {
|
|
105
|
-
readonly default: "";
|
|
106
|
-
};
|
|
75
|
+
labelPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right" | "top", unknown, "right", boolean>;
|
|
76
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right", unknown, "left", boolean>;
|
|
77
|
+
labelWidth: import("element-plus/es/utils/index.mjs").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
78
|
+
labelSuffix: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
107
79
|
inline: BooleanConstructor;
|
|
108
80
|
inlineMessage: BooleanConstructor;
|
|
109
81
|
statusIcon: BooleanConstructor;
|
|
110
|
-
showMessage:
|
|
111
|
-
|
|
112
|
-
readonly required: false;
|
|
113
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
114
|
-
__epPropKey: true;
|
|
115
|
-
} & {
|
|
116
|
-
readonly default: true;
|
|
117
|
-
};
|
|
118
|
-
validateOnRuleChange: {
|
|
119
|
-
readonly type: import("vue").PropType<boolean>;
|
|
120
|
-
readonly required: false;
|
|
121
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
122
|
-
__epPropKey: true;
|
|
123
|
-
} & {
|
|
124
|
-
readonly default: true;
|
|
125
|
-
};
|
|
82
|
+
showMessage: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
83
|
+
validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
126
84
|
hideRequiredAsterisk: BooleanConstructor;
|
|
127
85
|
scrollToError: BooleanConstructor;
|
|
128
|
-
scrollIntoViewOptions:
|
|
129
|
-
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
130
|
-
readonly required: false;
|
|
131
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
132
|
-
__epPropKey: true;
|
|
133
|
-
} & {
|
|
134
|
-
readonly default: true;
|
|
135
|
-
};
|
|
86
|
+
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>;
|
|
136
87
|
size: {
|
|
137
|
-
readonly type: import("vue").PropType<"" | "
|
|
88
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", unknown>>;
|
|
138
89
|
readonly required: false;
|
|
139
90
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
140
91
|
__epPropKey: true;
|
|
@@ -214,74 +165,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
214
165
|
};
|
|
215
166
|
model: ObjectConstructor;
|
|
216
167
|
rules: {
|
|
217
|
-
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus").
|
|
168
|
+
readonly type: import("vue").PropType<Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>>;
|
|
218
169
|
readonly required: false;
|
|
219
170
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
220
171
|
__epPropKey: true;
|
|
221
172
|
};
|
|
222
|
-
labelPosition:
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
__epPropKey: true;
|
|
227
|
-
} & {
|
|
228
|
-
readonly default: "right";
|
|
229
|
-
};
|
|
230
|
-
requireAsteriskPosition: {
|
|
231
|
-
readonly type: import("vue").PropType<"left" | "right">;
|
|
232
|
-
readonly required: false;
|
|
233
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
234
|
-
__epPropKey: true;
|
|
235
|
-
} & {
|
|
236
|
-
readonly default: "left";
|
|
237
|
-
};
|
|
238
|
-
labelWidth: {
|
|
239
|
-
readonly type: import("vue").PropType<string | number>;
|
|
240
|
-
readonly required: false;
|
|
241
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
242
|
-
__epPropKey: true;
|
|
243
|
-
} & {
|
|
244
|
-
readonly default: "";
|
|
245
|
-
};
|
|
246
|
-
labelSuffix: {
|
|
247
|
-
readonly type: import("vue").PropType<string>;
|
|
248
|
-
readonly required: false;
|
|
249
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
250
|
-
__epPropKey: true;
|
|
251
|
-
} & {
|
|
252
|
-
readonly default: "";
|
|
253
|
-
};
|
|
173
|
+
labelPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right" | "top", unknown, "right", boolean>;
|
|
174
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, "left" | "right", unknown, "left", boolean>;
|
|
175
|
+
labelWidth: import("element-plus/es/utils/index.mjs").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
176
|
+
labelSuffix: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
254
177
|
inline: BooleanConstructor;
|
|
255
178
|
inlineMessage: BooleanConstructor;
|
|
256
179
|
statusIcon: BooleanConstructor;
|
|
257
|
-
showMessage:
|
|
258
|
-
|
|
259
|
-
readonly required: false;
|
|
260
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
261
|
-
__epPropKey: true;
|
|
262
|
-
} & {
|
|
263
|
-
readonly default: true;
|
|
264
|
-
};
|
|
265
|
-
validateOnRuleChange: {
|
|
266
|
-
readonly type: import("vue").PropType<boolean>;
|
|
267
|
-
readonly required: false;
|
|
268
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
269
|
-
__epPropKey: true;
|
|
270
|
-
} & {
|
|
271
|
-
readonly default: true;
|
|
272
|
-
};
|
|
180
|
+
showMessage: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
181
|
+
validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
273
182
|
hideRequiredAsterisk: BooleanConstructor;
|
|
274
183
|
scrollToError: BooleanConstructor;
|
|
275
|
-
scrollIntoViewOptions:
|
|
276
|
-
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
277
|
-
readonly required: false;
|
|
278
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
279
|
-
__epPropKey: true;
|
|
280
|
-
} & {
|
|
281
|
-
readonly default: true;
|
|
282
|
-
};
|
|
184
|
+
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>;
|
|
283
185
|
size: {
|
|
284
|
-
readonly type: import("vue").PropType<"" | "
|
|
186
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", unknown>>;
|
|
285
187
|
readonly required: false;
|
|
286
188
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
287
189
|
__epPropKey: true;
|
|
@@ -316,16 +218,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
316
218
|
hideSubmit: boolean;
|
|
317
219
|
hideReset: boolean;
|
|
318
220
|
hideButtons: boolean;
|
|
319
|
-
labelPosition: "left" | "right" | "top"
|
|
320
|
-
requireAsteriskPosition: "left" | "right"
|
|
321
|
-
labelWidth:
|
|
221
|
+
labelPosition: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "left" | "right" | "top", unknown>;
|
|
222
|
+
requireAsteriskPosition: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "left" | "right", unknown>;
|
|
223
|
+
labelWidth: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
322
224
|
labelSuffix: string;
|
|
323
225
|
inlineMessage: boolean;
|
|
324
226
|
statusIcon: boolean;
|
|
325
|
-
showMessage:
|
|
326
|
-
validateOnRuleChange:
|
|
227
|
+
showMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
228
|
+
validateOnRuleChange: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
327
229
|
hideRequiredAsterisk: boolean;
|
|
328
230
|
scrollToError: boolean;
|
|
329
|
-
scrollIntoViewOptions: boolean | ScrollIntoViewOptions
|
|
231
|
+
scrollIntoViewOptions: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions) | ((new (...args: any[]) => boolean | ScrollIntoViewOptions) | (() => boolean | ScrollIntoViewOptions))[], unknown, unknown>;
|
|
330
232
|
}, import("vue").SlotsType<import("./table-query.api").TableQuerySlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
331
233
|
export default _default;
|
|
@@ -91,7 +91,7 @@ export declare const tableProps: {
|
|
|
91
91
|
type: PropType<any[]>;
|
|
92
92
|
default: () => never[];
|
|
93
93
|
};
|
|
94
|
-
load: PropType<import("element-plus
|
|
94
|
+
load: PropType<import("element-plus").TableProps<any>["load"]>;
|
|
95
95
|
className: {
|
|
96
96
|
type: StringConstructor;
|
|
97
97
|
default: string;
|
|
@@ -103,43 +103,43 @@ export declare const tableProps: {
|
|
|
103
103
|
default: boolean;
|
|
104
104
|
};
|
|
105
105
|
lazy: BooleanConstructor;
|
|
106
|
-
showOverflowTooltip: PropType<import("element-plus
|
|
107
|
-
tooltipFormatter: PropType<import("element-plus
|
|
108
|
-
cellClassName: PropType<import("element-plus
|
|
106
|
+
showOverflowTooltip: PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
|
|
107
|
+
tooltipFormatter: PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
|
|
108
|
+
cellClassName: PropType<import("element-plus").TableProps<any>["cellClassName"]>;
|
|
109
109
|
indent: {
|
|
110
110
|
type: NumberConstructor;
|
|
111
111
|
default: number;
|
|
112
112
|
};
|
|
113
|
-
rowStyle: PropType<import("element-plus
|
|
113
|
+
rowStyle: PropType<import("element-plus").TableProps<any>["rowStyle"]>;
|
|
114
114
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
115
115
|
defaultExpandAll: BooleanConstructor;
|
|
116
116
|
stripe: BooleanConstructor;
|
|
117
|
-
rowKey: PropType<import("element-plus
|
|
117
|
+
rowKey: PropType<import("element-plus").TableProps<any>["rowKey"]>;
|
|
118
118
|
showHeader: {
|
|
119
119
|
type: BooleanConstructor;
|
|
120
120
|
default: boolean;
|
|
121
121
|
};
|
|
122
122
|
showSummary: BooleanConstructor;
|
|
123
|
-
summaryMethod: PropType<import("element-plus
|
|
124
|
-
rowClassName: PropType<import("element-plus
|
|
125
|
-
cellStyle: PropType<import("element-plus
|
|
126
|
-
headerRowClassName: PropType<import("element-plus
|
|
127
|
-
headerRowStyle: PropType<import("element-plus
|
|
128
|
-
headerCellClassName: PropType<import("element-plus
|
|
129
|
-
headerCellStyle: PropType<import("element-plus
|
|
123
|
+
summaryMethod: PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
|
|
124
|
+
rowClassName: PropType<import("element-plus").TableProps<any>["rowClassName"]>;
|
|
125
|
+
cellStyle: PropType<import("element-plus").TableProps<any>["cellStyle"]>;
|
|
126
|
+
headerRowClassName: PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
|
|
127
|
+
headerRowStyle: PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
|
|
128
|
+
headerCellClassName: PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
|
|
129
|
+
headerCellStyle: PropType<import("element-plus").TableProps<any>["headerCellStyle"]>;
|
|
130
130
|
highlightCurrentRow: BooleanConstructor;
|
|
131
131
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
132
|
-
expandRowKeys: PropType<import("element-plus
|
|
133
|
-
defaultSort: PropType<import("element-plus
|
|
132
|
+
expandRowKeys: PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
|
|
133
|
+
defaultSort: PropType<import("element-plus").TableProps<any>["defaultSort"]>;
|
|
134
134
|
tooltipEffect: StringConstructor;
|
|
135
|
-
tooltipOptions: PropType<import("element-plus
|
|
136
|
-
spanMethod: PropType<import("element-plus
|
|
135
|
+
tooltipOptions: PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
|
|
136
|
+
spanMethod: PropType<import("element-plus").TableProps<any>["spanMethod"]>;
|
|
137
137
|
selectOnIndeterminate: {
|
|
138
138
|
type: BooleanConstructor;
|
|
139
139
|
default: boolean;
|
|
140
140
|
};
|
|
141
141
|
treeProps: {
|
|
142
|
-
type: PropType<import("element-plus
|
|
142
|
+
type: PropType<import("element-plus").TableProps<any>["treeProps"]>;
|
|
143
143
|
default: () => {
|
|
144
144
|
hasChildren: string;
|
|
145
145
|
children: string;
|
|
@@ -76,7 +76,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
76
76
|
type: import("vue").PropType<any[]>;
|
|
77
77
|
default: () => never[];
|
|
78
78
|
};
|
|
79
|
-
load: import("vue").PropType<import("element-plus
|
|
79
|
+
load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
|
|
80
80
|
className: {
|
|
81
81
|
type: StringConstructor;
|
|
82
82
|
default: string;
|
|
@@ -88,43 +88,43 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
88
88
|
default: boolean;
|
|
89
89
|
};
|
|
90
90
|
lazy: BooleanConstructor;
|
|
91
|
-
showOverflowTooltip: import("vue").PropType<import("element-plus
|
|
92
|
-
tooltipFormatter: import("vue").PropType<import("element-plus
|
|
93
|
-
cellClassName: import("vue").PropType<import("element-plus
|
|
91
|
+
showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
|
|
92
|
+
tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
|
|
93
|
+
cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
|
|
94
94
|
indent: {
|
|
95
95
|
type: NumberConstructor;
|
|
96
96
|
default: number;
|
|
97
97
|
};
|
|
98
|
-
rowStyle: import("vue").PropType<import("element-plus
|
|
98
|
+
rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
|
|
99
99
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
100
100
|
defaultExpandAll: BooleanConstructor;
|
|
101
101
|
stripe: BooleanConstructor;
|
|
102
|
-
rowKey: import("vue").PropType<import("element-plus
|
|
102
|
+
rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
|
|
103
103
|
showHeader: {
|
|
104
104
|
type: BooleanConstructor;
|
|
105
105
|
default: boolean;
|
|
106
106
|
};
|
|
107
107
|
showSummary: BooleanConstructor;
|
|
108
|
-
summaryMethod: import("vue").PropType<import("element-plus
|
|
109
|
-
rowClassName: import("vue").PropType<import("element-plus
|
|
110
|
-
cellStyle: import("vue").PropType<import("element-plus
|
|
111
|
-
headerRowClassName: import("vue").PropType<import("element-plus
|
|
112
|
-
headerRowStyle: import("vue").PropType<import("element-plus
|
|
113
|
-
headerCellClassName: import("vue").PropType<import("element-plus
|
|
114
|
-
headerCellStyle: import("vue").PropType<import("element-plus
|
|
108
|
+
summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
|
|
109
|
+
rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
|
|
110
|
+
cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
|
|
111
|
+
headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
|
|
112
|
+
headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
|
|
113
|
+
headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
|
|
114
|
+
headerCellStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerCellStyle"]>;
|
|
115
115
|
highlightCurrentRow: BooleanConstructor;
|
|
116
116
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
117
|
-
expandRowKeys: import("vue").PropType<import("element-plus
|
|
118
|
-
defaultSort: import("vue").PropType<import("element-plus
|
|
117
|
+
expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
|
|
118
|
+
defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
|
|
119
119
|
tooltipEffect: StringConstructor;
|
|
120
|
-
tooltipOptions: import("vue").PropType<import("element-plus
|
|
121
|
-
spanMethod: import("vue").PropType<import("element-plus
|
|
120
|
+
tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
|
|
121
|
+
spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
|
|
122
122
|
selectOnIndeterminate: {
|
|
123
123
|
type: BooleanConstructor;
|
|
124
124
|
default: boolean;
|
|
125
125
|
};
|
|
126
126
|
treeProps: {
|
|
127
|
-
type: import("vue").PropType<import("element-plus
|
|
127
|
+
type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
|
|
128
128
|
default: () => {
|
|
129
129
|
hasChildren: string;
|
|
130
130
|
children: string;
|
|
@@ -257,7 +257,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
257
257
|
type: import("vue").PropType<any[]>;
|
|
258
258
|
default: () => never[];
|
|
259
259
|
};
|
|
260
|
-
load: import("vue").PropType<import("element-plus
|
|
260
|
+
load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
|
|
261
261
|
className: {
|
|
262
262
|
type: StringConstructor;
|
|
263
263
|
default: string;
|
|
@@ -269,43 +269,43 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
269
269
|
default: boolean;
|
|
270
270
|
};
|
|
271
271
|
lazy: BooleanConstructor;
|
|
272
|
-
showOverflowTooltip: import("vue").PropType<import("element-plus
|
|
273
|
-
tooltipFormatter: import("vue").PropType<import("element-plus
|
|
274
|
-
cellClassName: import("vue").PropType<import("element-plus
|
|
272
|
+
showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
|
|
273
|
+
tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
|
|
274
|
+
cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
|
|
275
275
|
indent: {
|
|
276
276
|
type: NumberConstructor;
|
|
277
277
|
default: number;
|
|
278
278
|
};
|
|
279
|
-
rowStyle: import("vue").PropType<import("element-plus
|
|
279
|
+
rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
|
|
280
280
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
281
281
|
defaultExpandAll: BooleanConstructor;
|
|
282
282
|
stripe: BooleanConstructor;
|
|
283
|
-
rowKey: import("vue").PropType<import("element-plus
|
|
283
|
+
rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
|
|
284
284
|
showHeader: {
|
|
285
285
|
type: BooleanConstructor;
|
|
286
286
|
default: boolean;
|
|
287
287
|
};
|
|
288
288
|
showSummary: BooleanConstructor;
|
|
289
|
-
summaryMethod: import("vue").PropType<import("element-plus
|
|
290
|
-
rowClassName: import("vue").PropType<import("element-plus
|
|
291
|
-
cellStyle: import("vue").PropType<import("element-plus
|
|
292
|
-
headerRowClassName: import("vue").PropType<import("element-plus
|
|
293
|
-
headerRowStyle: import("vue").PropType<import("element-plus
|
|
294
|
-
headerCellClassName: import("vue").PropType<import("element-plus
|
|
295
|
-
headerCellStyle: import("vue").PropType<import("element-plus
|
|
289
|
+
summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
|
|
290
|
+
rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
|
|
291
|
+
cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
|
|
292
|
+
headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
|
|
293
|
+
headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
|
|
294
|
+
headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
|
|
295
|
+
headerCellStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerCellStyle"]>;
|
|
296
296
|
highlightCurrentRow: BooleanConstructor;
|
|
297
297
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
298
|
-
expandRowKeys: import("vue").PropType<import("element-plus
|
|
299
|
-
defaultSort: import("vue").PropType<import("element-plus
|
|
298
|
+
expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
|
|
299
|
+
defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
|
|
300
300
|
tooltipEffect: StringConstructor;
|
|
301
|
-
tooltipOptions: import("vue").PropType<import("element-plus
|
|
302
|
-
spanMethod: import("vue").PropType<import("element-plus
|
|
301
|
+
tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
|
|
302
|
+
spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
|
|
303
303
|
selectOnIndeterminate: {
|
|
304
304
|
type: BooleanConstructor;
|
|
305
305
|
default: boolean;
|
|
306
306
|
};
|
|
307
307
|
treeProps: {
|
|
308
|
-
type: import("vue").PropType<import("element-plus
|
|
308
|
+
type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
|
|
309
309
|
default: () => {
|
|
310
310
|
hasChildren: string;
|
|
311
311
|
children: string;
|