@davincihealthcare/elty-design-system-vue 1.47.3 → 1.48.0
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/dist/ElAccordion.vue.d.ts +4 -4
- package/dist/ElActionButton.vue.d.ts +3 -3
- package/dist/ElAvatar.vue.d.ts +4 -4
- package/dist/ElBadge.vue.d.ts +2 -2
- package/dist/ElButton.vue.d.ts +22 -22
- package/dist/ElCalendarCard.vue.d.ts +15 -15
- package/dist/ElCalendarCell.vue.d.ts +8 -8
- package/dist/ElClipToAnchor.vue.d.ts +4 -4
- package/dist/ElContainerTemplate.vue.d.ts +12 -48
- package/dist/ElDrawer.vue.d.ts +21 -16
- package/dist/ElDropdown.vue.d.ts +20 -262
- package/dist/ElFile.vue.d.ts +2 -2
- package/dist/ElIcon.vue.d.ts +4 -4
- package/dist/ElIconButton.vue.d.ts +1 -1
- package/dist/ElInlineBanner.vue.d.ts +10 -187
- package/dist/ElItem.vue.d.ts +15 -15
- package/dist/ElLogo.vue.d.ts +4 -4
- package/dist/ElModal.vue.d.ts +34 -182
- package/dist/ElSpinner.vue.d.ts +6 -6
- package/dist/ElSuggestionChip.vue.d.ts +2 -2
- package/dist/ElTab.vue.d.ts +6 -6
- package/dist/ElTabGroup.vue.d.ts +4 -2
- package/dist/ElTableHead.vue.d.ts +6 -6
- package/dist/ElTag.vue.d.ts +10 -10
- package/dist/ElTextCell.vue.d.ts +4 -4
- package/dist/ElTooltip.vue.d.ts +2 -2
- package/dist/ElVerticalTab.vue.d.ts +22 -114
- package/dist/_CustomTransition.vue.d.ts +8 -6
- package/dist/forms/ElInputCheckbox.vue.d.ts +6 -6
- package/dist/forms/ElInputContainer.vue.d.ts +15 -13
- package/dist/forms/ElInputDate.vue.d.ts +2 -2
- package/dist/forms/ElInputFile.vue.d.ts +2 -2
- package/dist/forms/ElInputRadioButton.vue.d.ts +6 -4
- package/dist/forms/ElInputSearch.vue.d.ts +24 -323
- package/dist/forms/ElInputSelect.vue.d.ts +3 -2
- package/dist/forms/ElInputSwitch.vue.d.ts +8 -8
- package/dist/forms/ElInputText.vue.d.ts +2 -2
- package/dist/forms/input.d.ts +1 -1
- package/dist/index.js +1364 -1349
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +12 -12
- package/dist/index.umd.cjs.map +1 -1
- package/dist/table/ElServerSideTable.vue.d.ts +11 -3
- package/dist/table/ElTable.vue.d.ts +2 -2
- package/dist/tailwind.plugin.d.ts +2 -2
- package/package.json +3 -4
- package/dist/table/ElTablePagination.vue.d.ts +0 -61
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { ElButton } from '..';
|
|
3
|
+
import { default as ElVerticalTab } from '../ElVerticalTab.vue';
|
|
3
4
|
import { default as ElIcon } from '../ElIcon.vue';
|
|
4
5
|
|
|
5
6
|
export declare const elInputSearchColors: readonly ["primary", "secondary"];
|
|
@@ -12,7 +13,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
12
13
|
type: import('vue').PropType<any>;
|
|
13
14
|
};
|
|
14
15
|
status: {
|
|
15
|
-
type: PropType<
|
|
16
|
+
type: PropType<ElInputSearchStatus>;
|
|
16
17
|
default: string;
|
|
17
18
|
};
|
|
18
19
|
text: {
|
|
@@ -20,165 +21,26 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
20
21
|
default: undefined;
|
|
21
22
|
};
|
|
22
23
|
results: {
|
|
23
|
-
type: PropType<
|
|
24
|
-
readonly primaryRow: string;
|
|
25
|
-
readonly time?: string | undefined;
|
|
26
|
-
readonly color?: "primary" | "secondary" | undefined;
|
|
27
|
-
readonly avatar?: (Partial<{
|
|
28
|
-
label: string;
|
|
29
|
-
picture: string;
|
|
30
|
-
size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
31
|
-
}> & Omit<{
|
|
32
|
-
readonly size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
33
|
-
readonly label?: string | undefined;
|
|
34
|
-
readonly picture?: string | undefined;
|
|
35
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
36
|
-
label: {
|
|
37
|
-
type: PropType<string>;
|
|
38
|
-
default: undefined;
|
|
39
|
-
};
|
|
40
|
-
picture: {
|
|
41
|
-
type: PropType<string>;
|
|
42
|
-
default: undefined;
|
|
43
|
-
};
|
|
44
|
-
size: {
|
|
45
|
-
type: PropType<"xxs" | "xs" | "sm" | "md" | "lg" | "xl">;
|
|
46
|
-
required: true;
|
|
47
|
-
default: string;
|
|
48
|
-
};
|
|
49
|
-
}>>, "label" | "picture" | "size">) | undefined;
|
|
50
|
-
readonly icon?: Omit<{
|
|
51
|
-
readonly name: import('../ElIcon.vue').IconNames;
|
|
52
|
-
readonly solid?: boolean | undefined;
|
|
53
|
-
readonly disabled?: boolean | undefined;
|
|
54
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
55
|
-
name: {
|
|
56
|
-
type: PropType<import('../ElIcon.vue').IconNames>;
|
|
57
|
-
required: true;
|
|
58
|
-
};
|
|
59
|
-
solid: {
|
|
60
|
-
type: PropType<boolean>;
|
|
61
|
-
};
|
|
62
|
-
disabled: {
|
|
63
|
-
type: PropType<boolean>;
|
|
64
|
-
};
|
|
65
|
-
}>>, never> | undefined;
|
|
66
|
-
readonly status?: "default" | "active" | "hover" | undefined;
|
|
67
|
-
readonly secondaryRow?: string | undefined;
|
|
68
|
-
readonly tertiaryRow?: string | undefined;
|
|
69
|
-
readonly lineClamp?: 1 | 2 | undefined;
|
|
70
|
-
readonly badge?: Omit<{
|
|
71
|
-
readonly color: "red" | "primary" | "secondary";
|
|
72
|
-
readonly value?: string | undefined;
|
|
73
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
74
|
-
value: {
|
|
75
|
-
type: PropType<string>;
|
|
76
|
-
};
|
|
77
|
-
color: {
|
|
78
|
-
type: PropType<"red" | "primary" | "secondary">;
|
|
79
|
-
required: true;
|
|
80
|
-
};
|
|
81
|
-
}>>, never> | undefined;
|
|
82
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
83
|
-
icon: {
|
|
84
|
-
type: PropType<Partial<{}> & Omit<{
|
|
85
|
-
readonly name: import('../ElIcon.vue').IconNames;
|
|
86
|
-
readonly solid?: boolean | undefined;
|
|
87
|
-
readonly disabled?: boolean | undefined;
|
|
88
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
89
|
-
name: {
|
|
90
|
-
type: PropType<import('../ElIcon.vue').IconNames>;
|
|
91
|
-
required: true;
|
|
92
|
-
};
|
|
93
|
-
solid: {
|
|
94
|
-
type: PropType<boolean>;
|
|
95
|
-
};
|
|
96
|
-
disabled: {
|
|
97
|
-
type: PropType<boolean>;
|
|
98
|
-
};
|
|
99
|
-
}>>, never>>;
|
|
100
|
-
};
|
|
101
|
-
avatar: {
|
|
102
|
-
type: PropType<Partial<{
|
|
103
|
-
label: string;
|
|
104
|
-
picture: string;
|
|
105
|
-
size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
106
|
-
}> & Omit<{
|
|
107
|
-
readonly size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
108
|
-
readonly label?: string | undefined;
|
|
109
|
-
readonly picture?: string | undefined;
|
|
110
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
111
|
-
label: {
|
|
112
|
-
type: PropType<string>;
|
|
113
|
-
default: undefined;
|
|
114
|
-
};
|
|
115
|
-
picture: {
|
|
116
|
-
type: PropType<string>;
|
|
117
|
-
default: undefined;
|
|
118
|
-
};
|
|
119
|
-
size: {
|
|
120
|
-
type: PropType<"xxs" | "xs" | "sm" | "md" | "lg" | "xl">;
|
|
121
|
-
required: true;
|
|
122
|
-
default: string;
|
|
123
|
-
};
|
|
124
|
-
}>>, "label" | "picture" | "size">>;
|
|
125
|
-
};
|
|
126
|
-
primaryRow: {
|
|
127
|
-
type: PropType<string>;
|
|
128
|
-
required: true;
|
|
129
|
-
};
|
|
130
|
-
secondaryRow: {
|
|
131
|
-
type: PropType<string>;
|
|
132
|
-
};
|
|
133
|
-
tertiaryRow: {
|
|
134
|
-
type: PropType<string>;
|
|
135
|
-
};
|
|
136
|
-
lineClamp: {
|
|
137
|
-
type: PropType<1 | 2>;
|
|
138
|
-
};
|
|
139
|
-
time: {
|
|
140
|
-
type: PropType<string>;
|
|
141
|
-
};
|
|
142
|
-
badge: {
|
|
143
|
-
type: PropType<Partial<{}> & Omit<{
|
|
144
|
-
readonly color: "red" | "primary" | "secondary";
|
|
145
|
-
readonly value?: string | undefined;
|
|
146
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
147
|
-
value: {
|
|
148
|
-
type: PropType<string>;
|
|
149
|
-
};
|
|
150
|
-
color: {
|
|
151
|
-
type: PropType<"red" | "primary" | "secondary">;
|
|
152
|
-
required: true;
|
|
153
|
-
};
|
|
154
|
-
}>>, never>>;
|
|
155
|
-
};
|
|
156
|
-
color: {
|
|
157
|
-
type: PropType<"primary" | "secondary">;
|
|
158
|
-
};
|
|
159
|
-
status: {
|
|
160
|
-
type: PropType<"default" | "active" | "hover">;
|
|
161
|
-
};
|
|
162
|
-
}>>, never>)[]>;
|
|
24
|
+
type: PropType<InstanceType<typeof ElVerticalTab>["$props"][]>;
|
|
163
25
|
default: undefined;
|
|
164
26
|
};
|
|
165
27
|
footer: {
|
|
166
28
|
type: PropType<{
|
|
167
29
|
text: string;
|
|
168
|
-
button: InstanceType<typeof ElButton>[
|
|
30
|
+
button: InstanceType<typeof ElButton>["$props"];
|
|
169
31
|
}>;
|
|
170
32
|
default: undefined;
|
|
171
33
|
};
|
|
172
34
|
blankResults: {
|
|
173
35
|
type: PropType<{
|
|
174
|
-
icon: InstanceType<typeof ElIcon>[
|
|
36
|
+
icon: InstanceType<typeof ElIcon>["$props"];
|
|
175
37
|
primaryRow: string;
|
|
176
|
-
secondaryRow?: string
|
|
38
|
+
secondaryRow?: string;
|
|
177
39
|
}>;
|
|
178
40
|
default: undefined;
|
|
179
41
|
};
|
|
180
42
|
color: {
|
|
181
|
-
type: PropType<
|
|
43
|
+
type: PropType<ElInputSearchColors>;
|
|
182
44
|
default: string;
|
|
183
45
|
};
|
|
184
46
|
modelValue: {
|
|
@@ -235,7 +97,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
235
97
|
type: import('vue').PropType<any>;
|
|
236
98
|
};
|
|
237
99
|
status: {
|
|
238
|
-
type: PropType<
|
|
100
|
+
type: PropType<ElInputSearchStatus>;
|
|
239
101
|
default: string;
|
|
240
102
|
};
|
|
241
103
|
text: {
|
|
@@ -243,165 +105,26 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
243
105
|
default: undefined;
|
|
244
106
|
};
|
|
245
107
|
results: {
|
|
246
|
-
type: PropType<
|
|
247
|
-
readonly primaryRow: string;
|
|
248
|
-
readonly time?: string | undefined;
|
|
249
|
-
readonly color?: "primary" | "secondary" | undefined;
|
|
250
|
-
readonly avatar?: (Partial<{
|
|
251
|
-
label: string;
|
|
252
|
-
picture: string;
|
|
253
|
-
size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
254
|
-
}> & Omit<{
|
|
255
|
-
readonly size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
256
|
-
readonly label?: string | undefined;
|
|
257
|
-
readonly picture?: string | undefined;
|
|
258
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
259
|
-
label: {
|
|
260
|
-
type: PropType<string>;
|
|
261
|
-
default: undefined;
|
|
262
|
-
};
|
|
263
|
-
picture: {
|
|
264
|
-
type: PropType<string>;
|
|
265
|
-
default: undefined;
|
|
266
|
-
};
|
|
267
|
-
size: {
|
|
268
|
-
type: PropType<"xxs" | "xs" | "sm" | "md" | "lg" | "xl">;
|
|
269
|
-
required: true;
|
|
270
|
-
default: string;
|
|
271
|
-
};
|
|
272
|
-
}>>, "label" | "picture" | "size">) | undefined;
|
|
273
|
-
readonly icon?: Omit<{
|
|
274
|
-
readonly name: import('../ElIcon.vue').IconNames;
|
|
275
|
-
readonly solid?: boolean | undefined;
|
|
276
|
-
readonly disabled?: boolean | undefined;
|
|
277
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
278
|
-
name: {
|
|
279
|
-
type: PropType<import('../ElIcon.vue').IconNames>;
|
|
280
|
-
required: true;
|
|
281
|
-
};
|
|
282
|
-
solid: {
|
|
283
|
-
type: PropType<boolean>;
|
|
284
|
-
};
|
|
285
|
-
disabled: {
|
|
286
|
-
type: PropType<boolean>;
|
|
287
|
-
};
|
|
288
|
-
}>>, never> | undefined;
|
|
289
|
-
readonly status?: "default" | "active" | "hover" | undefined;
|
|
290
|
-
readonly secondaryRow?: string | undefined;
|
|
291
|
-
readonly tertiaryRow?: string | undefined;
|
|
292
|
-
readonly lineClamp?: 1 | 2 | undefined;
|
|
293
|
-
readonly badge?: Omit<{
|
|
294
|
-
readonly color: "red" | "primary" | "secondary";
|
|
295
|
-
readonly value?: string | undefined;
|
|
296
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
297
|
-
value: {
|
|
298
|
-
type: PropType<string>;
|
|
299
|
-
};
|
|
300
|
-
color: {
|
|
301
|
-
type: PropType<"red" | "primary" | "secondary">;
|
|
302
|
-
required: true;
|
|
303
|
-
};
|
|
304
|
-
}>>, never> | undefined;
|
|
305
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
306
|
-
icon: {
|
|
307
|
-
type: PropType<Partial<{}> & Omit<{
|
|
308
|
-
readonly name: import('../ElIcon.vue').IconNames;
|
|
309
|
-
readonly solid?: boolean | undefined;
|
|
310
|
-
readonly disabled?: boolean | undefined;
|
|
311
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
312
|
-
name: {
|
|
313
|
-
type: PropType<import('../ElIcon.vue').IconNames>;
|
|
314
|
-
required: true;
|
|
315
|
-
};
|
|
316
|
-
solid: {
|
|
317
|
-
type: PropType<boolean>;
|
|
318
|
-
};
|
|
319
|
-
disabled: {
|
|
320
|
-
type: PropType<boolean>;
|
|
321
|
-
};
|
|
322
|
-
}>>, never>>;
|
|
323
|
-
};
|
|
324
|
-
avatar: {
|
|
325
|
-
type: PropType<Partial<{
|
|
326
|
-
label: string;
|
|
327
|
-
picture: string;
|
|
328
|
-
size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
329
|
-
}> & Omit<{
|
|
330
|
-
readonly size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
331
|
-
readonly label?: string | undefined;
|
|
332
|
-
readonly picture?: string | undefined;
|
|
333
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
334
|
-
label: {
|
|
335
|
-
type: PropType<string>;
|
|
336
|
-
default: undefined;
|
|
337
|
-
};
|
|
338
|
-
picture: {
|
|
339
|
-
type: PropType<string>;
|
|
340
|
-
default: undefined;
|
|
341
|
-
};
|
|
342
|
-
size: {
|
|
343
|
-
type: PropType<"xxs" | "xs" | "sm" | "md" | "lg" | "xl">;
|
|
344
|
-
required: true;
|
|
345
|
-
default: string;
|
|
346
|
-
};
|
|
347
|
-
}>>, "label" | "picture" | "size">>;
|
|
348
|
-
};
|
|
349
|
-
primaryRow: {
|
|
350
|
-
type: PropType<string>;
|
|
351
|
-
required: true;
|
|
352
|
-
};
|
|
353
|
-
secondaryRow: {
|
|
354
|
-
type: PropType<string>;
|
|
355
|
-
};
|
|
356
|
-
tertiaryRow: {
|
|
357
|
-
type: PropType<string>;
|
|
358
|
-
};
|
|
359
|
-
lineClamp: {
|
|
360
|
-
type: PropType<1 | 2>;
|
|
361
|
-
};
|
|
362
|
-
time: {
|
|
363
|
-
type: PropType<string>;
|
|
364
|
-
};
|
|
365
|
-
badge: {
|
|
366
|
-
type: PropType<Partial<{}> & Omit<{
|
|
367
|
-
readonly color: "red" | "primary" | "secondary";
|
|
368
|
-
readonly value?: string | undefined;
|
|
369
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
370
|
-
value: {
|
|
371
|
-
type: PropType<string>;
|
|
372
|
-
};
|
|
373
|
-
color: {
|
|
374
|
-
type: PropType<"red" | "primary" | "secondary">;
|
|
375
|
-
required: true;
|
|
376
|
-
};
|
|
377
|
-
}>>, never>>;
|
|
378
|
-
};
|
|
379
|
-
color: {
|
|
380
|
-
type: PropType<"primary" | "secondary">;
|
|
381
|
-
};
|
|
382
|
-
status: {
|
|
383
|
-
type: PropType<"default" | "active" | "hover">;
|
|
384
|
-
};
|
|
385
|
-
}>>, never>)[]>;
|
|
108
|
+
type: PropType<InstanceType<typeof ElVerticalTab>["$props"][]>;
|
|
386
109
|
default: undefined;
|
|
387
110
|
};
|
|
388
111
|
footer: {
|
|
389
112
|
type: PropType<{
|
|
390
113
|
text: string;
|
|
391
|
-
button: InstanceType<typeof ElButton>[
|
|
114
|
+
button: InstanceType<typeof ElButton>["$props"];
|
|
392
115
|
}>;
|
|
393
116
|
default: undefined;
|
|
394
117
|
};
|
|
395
118
|
blankResults: {
|
|
396
119
|
type: PropType<{
|
|
397
|
-
icon: InstanceType<typeof ElIcon>[
|
|
120
|
+
icon: InstanceType<typeof ElIcon>["$props"];
|
|
398
121
|
primaryRow: string;
|
|
399
|
-
secondaryRow?: string
|
|
122
|
+
secondaryRow?: string;
|
|
400
123
|
}>;
|
|
401
124
|
default: undefined;
|
|
402
125
|
};
|
|
403
126
|
color: {
|
|
404
|
-
type: PropType<
|
|
127
|
+
type: PropType<ElInputSearchColors>;
|
|
405
128
|
default: string;
|
|
406
129
|
};
|
|
407
130
|
modelValue: {
|
|
@@ -457,7 +180,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
457
180
|
disabled: boolean;
|
|
458
181
|
footer: {
|
|
459
182
|
text: string;
|
|
460
|
-
button: InstanceType<typeof ElButton>[
|
|
183
|
+
button: InstanceType<typeof ElButton>["$props"];
|
|
461
184
|
};
|
|
462
185
|
label: string;
|
|
463
186
|
text: string;
|
|
@@ -467,30 +190,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
467
190
|
results: (Partial<{}> & Omit<{
|
|
468
191
|
readonly primaryRow: string;
|
|
469
192
|
readonly time?: string | undefined;
|
|
470
|
-
readonly color?:
|
|
471
|
-
readonly avatar?: (
|
|
472
|
-
label: string;
|
|
473
|
-
picture: string;
|
|
474
|
-
size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
475
|
-
}> & Omit<{
|
|
476
|
-
readonly size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
477
|
-
readonly label?: string | undefined;
|
|
478
|
-
readonly picture?: string | undefined;
|
|
479
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
480
|
-
label: {
|
|
481
|
-
type: PropType<string>;
|
|
482
|
-
default: undefined;
|
|
483
|
-
};
|
|
484
|
-
picture: {
|
|
485
|
-
type: PropType<string>;
|
|
486
|
-
default: undefined;
|
|
487
|
-
};
|
|
488
|
-
size: {
|
|
489
|
-
type: PropType<"xxs" | "xs" | "sm" | "md" | "lg" | "xl">;
|
|
490
|
-
required: true;
|
|
491
|
-
default: string;
|
|
492
|
-
};
|
|
493
|
-
}>>, "label" | "picture" | "size">) | undefined;
|
|
193
|
+
readonly color?: import('../ElVerticalTab.vue').ElVerticalTabColors | undefined;
|
|
194
|
+
readonly avatar?: InstanceType<typeof import('..').ElAvatar>["$props"] | undefined;
|
|
494
195
|
readonly icon?: Omit<{
|
|
495
196
|
readonly name: import('../ElIcon.vue').IconNames;
|
|
496
197
|
readonly solid?: boolean | undefined;
|
|
@@ -507,12 +208,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
507
208
|
type: PropType<boolean>;
|
|
508
209
|
};
|
|
509
210
|
}>>, never> | undefined;
|
|
510
|
-
readonly status?:
|
|
211
|
+
readonly status?: import('../ElVerticalTab.vue').ElVerticalTabStatus | undefined;
|
|
511
212
|
readonly secondaryRow?: string | undefined;
|
|
512
213
|
readonly tertiaryRow?: string | undefined;
|
|
513
|
-
readonly lineClamp?: 1 | 2 | undefined;
|
|
214
|
+
readonly lineClamp?: (1 | 2) | undefined;
|
|
514
215
|
readonly badge?: Omit<{
|
|
515
|
-
readonly color:
|
|
216
|
+
readonly color: import('..').ElBadgeColors;
|
|
516
217
|
readonly value?: string | undefined;
|
|
517
218
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
518
219
|
value: {
|
|
@@ -546,9 +247,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
546
247
|
type: PropType<Partial<{
|
|
547
248
|
label: string;
|
|
548
249
|
picture: string;
|
|
549
|
-
size:
|
|
250
|
+
size: import('..').ElAvatarSize;
|
|
550
251
|
}> & Omit<{
|
|
551
|
-
readonly size:
|
|
252
|
+
readonly size: import('..').ElAvatarSize;
|
|
552
253
|
readonly label?: string | undefined;
|
|
553
254
|
readonly picture?: string | undefined;
|
|
554
255
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -585,7 +286,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
585
286
|
};
|
|
586
287
|
badge: {
|
|
587
288
|
type: PropType<Partial<{}> & Omit<{
|
|
588
|
-
readonly color:
|
|
289
|
+
readonly color: import('..').ElBadgeColors;
|
|
589
290
|
readonly value?: string | undefined;
|
|
590
291
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
591
292
|
value: {
|
|
@@ -610,9 +311,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
610
311
|
hiddenErrorMessage: boolean;
|
|
611
312
|
validation: string;
|
|
612
313
|
blankResults: {
|
|
613
|
-
icon: InstanceType<typeof ElIcon>[
|
|
314
|
+
icon: InstanceType<typeof ElIcon>["$props"];
|
|
614
315
|
primaryRow: string;
|
|
615
|
-
secondaryRow?: string
|
|
316
|
+
secondaryRow?: string;
|
|
616
317
|
};
|
|
617
318
|
}, {}>, {
|
|
618
319
|
info?(_: {}): any;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AutocompleteOptionType } from './utils';
|
|
2
|
+
import { ElClipToAnchorPosition } from '../ElClipToAnchor.vue';
|
|
2
3
|
import { OptionType } from '../types';
|
|
3
4
|
import { PropType } from 'vue';
|
|
4
5
|
|
|
@@ -27,7 +28,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
27
28
|
default: boolean;
|
|
28
29
|
};
|
|
29
30
|
positionToAnchor: {
|
|
30
|
-
type: PropType<
|
|
31
|
+
type: PropType<ElClipToAnchorPosition>;
|
|
31
32
|
required: false;
|
|
32
33
|
default: string;
|
|
33
34
|
};
|
|
@@ -93,7 +94,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
93
94
|
default: boolean;
|
|
94
95
|
};
|
|
95
96
|
positionToAnchor: {
|
|
96
|
-
type: PropType<
|
|
97
|
+
type: PropType<ElClipToAnchorPosition>;
|
|
97
98
|
required: false;
|
|
98
99
|
default: string;
|
|
99
100
|
};
|
|
@@ -5,11 +5,11 @@ type ElSwitchColors = (typeof elSwitchColors)[number];
|
|
|
5
5
|
export declare const elSwitchAligns: readonly ["left", "right"];
|
|
6
6
|
type ElSwitchAligns = (typeof elSwitchAligns)[number];
|
|
7
7
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
-
modelValue?: boolean
|
|
8
|
+
modelValue?: boolean;
|
|
9
9
|
label: string;
|
|
10
|
-
size?:
|
|
11
|
-
color?:
|
|
12
|
-
align?:
|
|
10
|
+
size?: ElSwitchSizes;
|
|
11
|
+
color?: ElSwitchColors;
|
|
12
|
+
align?: ElSwitchAligns;
|
|
13
13
|
}>, {
|
|
14
14
|
size: string;
|
|
15
15
|
color: string;
|
|
@@ -17,11 +17,11 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
17
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
18
|
"update:modelValue": (val: boolean) => void;
|
|
19
19
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
20
|
-
modelValue?: boolean
|
|
20
|
+
modelValue?: boolean;
|
|
21
21
|
label: string;
|
|
22
|
-
size?:
|
|
23
|
-
color?:
|
|
24
|
-
align?:
|
|
22
|
+
size?: ElSwitchSizes;
|
|
23
|
+
color?: ElSwitchColors;
|
|
24
|
+
align?: ElSwitchAligns;
|
|
25
25
|
}>, {
|
|
26
26
|
size: string;
|
|
27
27
|
color: string;
|
|
@@ -6,7 +6,7 @@ export declare const elInputTextTypes: readonly ["text", "password"];
|
|
|
6
6
|
export type ElInputTextType = (typeof elInputTextTypes)[number];
|
|
7
7
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
8
8
|
type: {
|
|
9
|
-
type: PropType<
|
|
9
|
+
type: PropType<ElInputTextType>;
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
leadingIcon: {
|
|
@@ -75,7 +75,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
75
75
|
"update:modelValue": (value: TextualValueType) => void;
|
|
76
76
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
77
77
|
type: {
|
|
78
|
-
type: PropType<
|
|
78
|
+
type: PropType<ElInputTextType>;
|
|
79
79
|
default: string;
|
|
80
80
|
};
|
|
81
81
|
leadingIcon: {
|
package/dist/forms/input.d.ts
CHANGED
|
@@ -270,6 +270,6 @@ export declare function useInput<T = string>(initialValue: Ref<T>, validations:
|
|
|
270
270
|
value: Ref<T>;
|
|
271
271
|
uuid: string;
|
|
272
272
|
meta: import('vee-validate').FieldMeta<T>;
|
|
273
|
-
setValue: (value: T, shouldValidate?: boolean
|
|
273
|
+
setValue: (value: T, shouldValidate?: boolean) => void;
|
|
274
274
|
};
|
|
275
275
|
export declare function showRequiredMark(validations: string[], forceHideMark?: boolean | undefined): boolean;
|