@davincihealthcare/elty-design-system-vue 1.13.4 → 1.13.6
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 +33 -33
- package/dist/ElAvatar.vue.d.ts +2 -2
- package/dist/ElBadge.vue.d.ts +2 -2
- package/dist/ElButton.vue.d.ts +14 -3
- package/dist/ElCalendarCard.vue.d.ts +2 -2
- package/dist/ElCalendarCell.vue.d.ts +2 -2
- package/dist/ElClipToAnchor.vue.d.ts +2 -2
- package/dist/ElDrawer.vue.d.ts +3 -3
- package/dist/ElDropdown.vue.d.ts +101 -65
- package/dist/ElFile.vue.d.ts +3 -3
- package/dist/ElIcon.vue.d.ts +2 -2
- package/dist/ElIconButton.vue.d.ts +4 -3
- package/dist/ElItem.vue.d.ts +4 -3
- package/dist/ElLogo.vue.d.ts +2 -2
- package/dist/ElSortingHeader.vue.d.ts +2 -2
- package/dist/ElSuggestionChip.vue.d.ts +2 -2
- package/dist/ElTab.vue.d.ts +3 -3
- package/dist/ElTabGroup.vue.d.ts +3 -3
- package/dist/ElTableHead.vue.d.ts +3 -2
- package/dist/ElTabs.vue.d.ts +3 -3
- package/dist/ElTag.vue.d.ts +3 -2
- package/dist/ElTextCell.vue.d.ts +2 -2
- package/dist/ElToast.vue.d.ts +1 -1
- package/dist/ElTooltip.vue.d.ts +2 -2
- package/dist/_CustomTransition.vue.d.ts +3 -3
- package/dist/forms/ElInputCheckbox.vue.d.ts +4 -3
- package/dist/forms/ElInputContainer.vue.d.ts +2 -2
- package/dist/forms/ElInputDate.vue.d.ts +5 -4
- package/dist/forms/ElInputFile.vue.d.ts +4 -3
- package/dist/forms/ElInputMeasureUnit.vue.d.ts +5 -4
- package/dist/forms/ElInputNumber.vue.d.ts +6 -5
- package/dist/forms/ElInputPhone.vue.d.ts +6 -5
- package/dist/forms/ElInputSelect.vue.d.ts +6 -5
- package/dist/forms/ElInputText.vue.d.ts +6 -5
- package/dist/forms/ElInputTextarea.vue.d.ts +6 -5
- package/dist/forms/input.d.ts +3 -3
- package/dist/forms/utils.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4635 -4485
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +21 -19
- package/dist/index.umd.cjs.map +1 -1
- package/dist/tailwind.plugin.d.ts +2 -2
- package/dist/utils.d.ts +1 -0
- package/package.json +1 -1
package/dist/ElDropdown.vue.d.ts
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
items: ({
|
|
3
3
|
onClick?: (() => void) | undefined;
|
|
4
4
|
} & Partial<{
|
|
5
5
|
disabled: boolean;
|
|
6
6
|
text: string;
|
|
7
|
-
avatar: import(
|
|
7
|
+
avatar: import('./types').AvatarParameters;
|
|
8
8
|
check: boolean;
|
|
9
|
-
leadingIcon: import(
|
|
9
|
+
leadingIcon: import('./ElIcon.vue').ElIconProps;
|
|
10
10
|
}> & Omit<{
|
|
11
11
|
readonly disabled: boolean;
|
|
12
12
|
readonly text: string;
|
|
13
13
|
readonly check: boolean;
|
|
14
|
-
readonly avatar?: import(
|
|
15
|
-
readonly leadingIcon?: import(
|
|
16
|
-
} & import(
|
|
14
|
+
readonly avatar?: import('./types').AvatarParameters | undefined;
|
|
15
|
+
readonly leadingIcon?: import('./ElIcon.vue').ElIconProps | undefined;
|
|
16
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
17
17
|
disabled: {
|
|
18
|
-
type: import(
|
|
18
|
+
type: import('vue').PropType<boolean>;
|
|
19
19
|
default: boolean;
|
|
20
20
|
};
|
|
21
21
|
text: {
|
|
22
|
-
type: import(
|
|
22
|
+
type: import('vue').PropType<string>;
|
|
23
23
|
required: true;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
26
|
avatar: {
|
|
27
|
-
type: import(
|
|
27
|
+
type: import('vue').PropType<import('./types').AvatarParameters>;
|
|
28
28
|
default: undefined;
|
|
29
29
|
};
|
|
30
30
|
check: {
|
|
31
|
-
type: import(
|
|
31
|
+
type: import('vue').PropType<boolean>;
|
|
32
32
|
default: boolean;
|
|
33
33
|
};
|
|
34
34
|
leadingIcon: {
|
|
35
|
-
type: import(
|
|
35
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
36
36
|
default: undefined;
|
|
37
37
|
};
|
|
38
38
|
}>>, "disabled" | "text" | "avatar" | "check" | "leadingIcon">)[];
|
|
@@ -40,13 +40,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
40
40
|
action?: Omit<Partial<{
|
|
41
41
|
disabled: boolean;
|
|
42
42
|
type: "button" | "submit" | "reset";
|
|
43
|
+
onClick: () => unknown;
|
|
43
44
|
label: string;
|
|
44
|
-
icon: import(
|
|
45
|
+
icon: import('./ElIcon.vue').ElIconProps;
|
|
45
46
|
size: "base" | "xs" | "sm" | "l" | "xl";
|
|
46
47
|
loading: boolean;
|
|
47
48
|
error: boolean;
|
|
48
49
|
dark: boolean;
|
|
49
50
|
variant: "primary" | "secondary" | "tertiary";
|
|
51
|
+
loadOnClick: boolean;
|
|
50
52
|
}> & Omit<{
|
|
51
53
|
readonly disabled: boolean;
|
|
52
54
|
readonly type: "button" | "submit" | "reset";
|
|
@@ -56,50 +58,60 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
56
58
|
readonly error: boolean;
|
|
57
59
|
readonly dark: boolean;
|
|
58
60
|
readonly variant: "primary" | "secondary" | "tertiary";
|
|
59
|
-
readonly
|
|
61
|
+
readonly loadOnClick: boolean;
|
|
62
|
+
readonly onClick?: (() => unknown) | undefined;
|
|
63
|
+
readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
|
|
60
64
|
readonly iconRight?: boolean | undefined;
|
|
61
|
-
} & import(
|
|
65
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
62
66
|
disabled: {
|
|
63
|
-
type: import(
|
|
67
|
+
type: import('vue').PropType<boolean>;
|
|
64
68
|
default: boolean;
|
|
65
69
|
};
|
|
66
70
|
type: {
|
|
67
|
-
type: import(
|
|
71
|
+
type: import('vue').PropType<"button" | "submit" | "reset">;
|
|
68
72
|
default: string;
|
|
69
73
|
};
|
|
74
|
+
onClick: {
|
|
75
|
+
type: import('vue').PropType<() => unknown>;
|
|
76
|
+
default: undefined;
|
|
77
|
+
};
|
|
70
78
|
label: {
|
|
71
|
-
type: import(
|
|
79
|
+
type: import('vue').PropType<string>;
|
|
72
80
|
required: true;
|
|
73
81
|
default: string;
|
|
74
82
|
};
|
|
75
83
|
icon: {
|
|
76
|
-
type: import(
|
|
84
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
77
85
|
default: undefined;
|
|
78
86
|
};
|
|
79
87
|
size: {
|
|
80
|
-
type: import(
|
|
88
|
+
type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
|
|
81
89
|
default: string;
|
|
82
90
|
};
|
|
83
91
|
loading: {
|
|
84
|
-
type: import(
|
|
92
|
+
type: import('vue').PropType<boolean>;
|
|
85
93
|
default: boolean;
|
|
86
94
|
};
|
|
87
95
|
error: {
|
|
88
|
-
type: import(
|
|
96
|
+
type: import('vue').PropType<boolean>;
|
|
89
97
|
default: boolean;
|
|
90
98
|
};
|
|
91
99
|
dark: {
|
|
92
|
-
type: import(
|
|
100
|
+
type: import('vue').PropType<boolean>;
|
|
93
101
|
default: boolean;
|
|
94
102
|
};
|
|
95
103
|
iconRight: {
|
|
96
|
-
type: import(
|
|
104
|
+
type: import('vue').PropType<boolean>;
|
|
97
105
|
};
|
|
98
106
|
variant: {
|
|
99
|
-
type: import(
|
|
107
|
+
type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
|
|
100
108
|
default: string;
|
|
101
109
|
};
|
|
102
|
-
|
|
110
|
+
loadOnClick: {
|
|
111
|
+
type: import('vue').PropType<boolean>;
|
|
112
|
+
default: boolean;
|
|
113
|
+
};
|
|
114
|
+
}>>, "disabled" | "type" | "onClick" | "label" | "icon" | "size" | "loading" | "error" | "dark" | "variant" | "loadOnClick">, "size" | "variant"> | undefined;
|
|
103
115
|
left?: boolean | undefined;
|
|
104
116
|
right?: boolean | undefined;
|
|
105
117
|
minWidth?: number | undefined;
|
|
@@ -109,44 +121,44 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
109
121
|
action: undefined;
|
|
110
122
|
isOpen: undefined;
|
|
111
123
|
minWidth: undefined;
|
|
112
|
-
}>, {}, unknown, {}, {}, import(
|
|
124
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
113
125
|
"click:action": () => void;
|
|
114
126
|
"update:is-open": (isOpen: boolean) => void;
|
|
115
|
-
}, string, import(
|
|
127
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
116
128
|
items: ({
|
|
117
129
|
onClick?: (() => void) | undefined;
|
|
118
130
|
} & Partial<{
|
|
119
131
|
disabled: boolean;
|
|
120
132
|
text: string;
|
|
121
|
-
avatar: import(
|
|
133
|
+
avatar: import('./types').AvatarParameters;
|
|
122
134
|
check: boolean;
|
|
123
|
-
leadingIcon: import(
|
|
135
|
+
leadingIcon: import('./ElIcon.vue').ElIconProps;
|
|
124
136
|
}> & Omit<{
|
|
125
137
|
readonly disabled: boolean;
|
|
126
138
|
readonly text: string;
|
|
127
139
|
readonly check: boolean;
|
|
128
|
-
readonly avatar?: import(
|
|
129
|
-
readonly leadingIcon?: import(
|
|
130
|
-
} & import(
|
|
140
|
+
readonly avatar?: import('./types').AvatarParameters | undefined;
|
|
141
|
+
readonly leadingIcon?: import('./ElIcon.vue').ElIconProps | undefined;
|
|
142
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
131
143
|
disabled: {
|
|
132
|
-
type: import(
|
|
144
|
+
type: import('vue').PropType<boolean>;
|
|
133
145
|
default: boolean;
|
|
134
146
|
};
|
|
135
147
|
text: {
|
|
136
|
-
type: import(
|
|
148
|
+
type: import('vue').PropType<string>;
|
|
137
149
|
required: true;
|
|
138
150
|
default: string;
|
|
139
151
|
};
|
|
140
152
|
avatar: {
|
|
141
|
-
type: import(
|
|
153
|
+
type: import('vue').PropType<import('./types').AvatarParameters>;
|
|
142
154
|
default: undefined;
|
|
143
155
|
};
|
|
144
156
|
check: {
|
|
145
|
-
type: import(
|
|
157
|
+
type: import('vue').PropType<boolean>;
|
|
146
158
|
default: boolean;
|
|
147
159
|
};
|
|
148
160
|
leadingIcon: {
|
|
149
|
-
type: import(
|
|
161
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
150
162
|
default: undefined;
|
|
151
163
|
};
|
|
152
164
|
}>>, "disabled" | "text" | "avatar" | "check" | "leadingIcon">)[];
|
|
@@ -154,13 +166,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
154
166
|
action?: Omit<Partial<{
|
|
155
167
|
disabled: boolean;
|
|
156
168
|
type: "button" | "submit" | "reset";
|
|
169
|
+
onClick: () => unknown;
|
|
157
170
|
label: string;
|
|
158
|
-
icon: import(
|
|
171
|
+
icon: import('./ElIcon.vue').ElIconProps;
|
|
159
172
|
size: "base" | "xs" | "sm" | "l" | "xl";
|
|
160
173
|
loading: boolean;
|
|
161
174
|
error: boolean;
|
|
162
175
|
dark: boolean;
|
|
163
176
|
variant: "primary" | "secondary" | "tertiary";
|
|
177
|
+
loadOnClick: boolean;
|
|
164
178
|
}> & Omit<{
|
|
165
179
|
readonly disabled: boolean;
|
|
166
180
|
readonly type: "button" | "submit" | "reset";
|
|
@@ -170,50 +184,60 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
170
184
|
readonly error: boolean;
|
|
171
185
|
readonly dark: boolean;
|
|
172
186
|
readonly variant: "primary" | "secondary" | "tertiary";
|
|
173
|
-
readonly
|
|
187
|
+
readonly loadOnClick: boolean;
|
|
188
|
+
readonly onClick?: (() => unknown) | undefined;
|
|
189
|
+
readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
|
|
174
190
|
readonly iconRight?: boolean | undefined;
|
|
175
|
-
} & import(
|
|
191
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
176
192
|
disabled: {
|
|
177
|
-
type: import(
|
|
193
|
+
type: import('vue').PropType<boolean>;
|
|
178
194
|
default: boolean;
|
|
179
195
|
};
|
|
180
196
|
type: {
|
|
181
|
-
type: import(
|
|
197
|
+
type: import('vue').PropType<"button" | "submit" | "reset">;
|
|
182
198
|
default: string;
|
|
183
199
|
};
|
|
200
|
+
onClick: {
|
|
201
|
+
type: import('vue').PropType<() => unknown>;
|
|
202
|
+
default: undefined;
|
|
203
|
+
};
|
|
184
204
|
label: {
|
|
185
|
-
type: import(
|
|
205
|
+
type: import('vue').PropType<string>;
|
|
186
206
|
required: true;
|
|
187
207
|
default: string;
|
|
188
208
|
};
|
|
189
209
|
icon: {
|
|
190
|
-
type: import(
|
|
210
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
191
211
|
default: undefined;
|
|
192
212
|
};
|
|
193
213
|
size: {
|
|
194
|
-
type: import(
|
|
214
|
+
type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
|
|
195
215
|
default: string;
|
|
196
216
|
};
|
|
197
217
|
loading: {
|
|
198
|
-
type: import(
|
|
218
|
+
type: import('vue').PropType<boolean>;
|
|
199
219
|
default: boolean;
|
|
200
220
|
};
|
|
201
221
|
error: {
|
|
202
|
-
type: import(
|
|
222
|
+
type: import('vue').PropType<boolean>;
|
|
203
223
|
default: boolean;
|
|
204
224
|
};
|
|
205
225
|
dark: {
|
|
206
|
-
type: import(
|
|
226
|
+
type: import('vue').PropType<boolean>;
|
|
207
227
|
default: boolean;
|
|
208
228
|
};
|
|
209
229
|
iconRight: {
|
|
210
|
-
type: import(
|
|
230
|
+
type: import('vue').PropType<boolean>;
|
|
211
231
|
};
|
|
212
232
|
variant: {
|
|
213
|
-
type: import(
|
|
233
|
+
type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
|
|
214
234
|
default: string;
|
|
215
235
|
};
|
|
216
|
-
|
|
236
|
+
loadOnClick: {
|
|
237
|
+
type: import('vue').PropType<boolean>;
|
|
238
|
+
default: boolean;
|
|
239
|
+
};
|
|
240
|
+
}>>, "disabled" | "type" | "onClick" | "label" | "icon" | "size" | "loading" | "error" | "dark" | "variant" | "loadOnClick">, "size" | "variant"> | undefined;
|
|
217
241
|
left?: boolean | undefined;
|
|
218
242
|
right?: boolean | undefined;
|
|
219
243
|
minWidth?: number | undefined;
|
|
@@ -232,13 +256,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
232
256
|
action: Omit<Partial<{
|
|
233
257
|
disabled: boolean;
|
|
234
258
|
type: "button" | "submit" | "reset";
|
|
259
|
+
onClick: () => unknown;
|
|
235
260
|
label: string;
|
|
236
|
-
icon: import(
|
|
261
|
+
icon: import('./ElIcon.vue').ElIconProps;
|
|
237
262
|
size: "base" | "xs" | "sm" | "l" | "xl";
|
|
238
263
|
loading: boolean;
|
|
239
264
|
error: boolean;
|
|
240
265
|
dark: boolean;
|
|
241
266
|
variant: "primary" | "secondary" | "tertiary";
|
|
267
|
+
loadOnClick: boolean;
|
|
242
268
|
}> & Omit<{
|
|
243
269
|
readonly disabled: boolean;
|
|
244
270
|
readonly type: "button" | "submit" | "reset";
|
|
@@ -248,50 +274,60 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
248
274
|
readonly error: boolean;
|
|
249
275
|
readonly dark: boolean;
|
|
250
276
|
readonly variant: "primary" | "secondary" | "tertiary";
|
|
251
|
-
readonly
|
|
277
|
+
readonly loadOnClick: boolean;
|
|
278
|
+
readonly onClick?: (() => unknown) | undefined;
|
|
279
|
+
readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
|
|
252
280
|
readonly iconRight?: boolean | undefined;
|
|
253
|
-
} & import(
|
|
281
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
254
282
|
disabled: {
|
|
255
|
-
type: import(
|
|
283
|
+
type: import('vue').PropType<boolean>;
|
|
256
284
|
default: boolean;
|
|
257
285
|
};
|
|
258
286
|
type: {
|
|
259
|
-
type: import(
|
|
287
|
+
type: import('vue').PropType<"button" | "submit" | "reset">;
|
|
260
288
|
default: string;
|
|
261
289
|
};
|
|
290
|
+
onClick: {
|
|
291
|
+
type: import('vue').PropType<() => unknown>;
|
|
292
|
+
default: undefined;
|
|
293
|
+
};
|
|
262
294
|
label: {
|
|
263
|
-
type: import(
|
|
295
|
+
type: import('vue').PropType<string>;
|
|
264
296
|
required: true;
|
|
265
297
|
default: string;
|
|
266
298
|
};
|
|
267
299
|
icon: {
|
|
268
|
-
type: import(
|
|
300
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
269
301
|
default: undefined;
|
|
270
302
|
};
|
|
271
303
|
size: {
|
|
272
|
-
type: import(
|
|
304
|
+
type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
|
|
273
305
|
default: string;
|
|
274
306
|
};
|
|
275
307
|
loading: {
|
|
276
|
-
type: import(
|
|
308
|
+
type: import('vue').PropType<boolean>;
|
|
277
309
|
default: boolean;
|
|
278
310
|
};
|
|
279
311
|
error: {
|
|
280
|
-
type: import(
|
|
312
|
+
type: import('vue').PropType<boolean>;
|
|
281
313
|
default: boolean;
|
|
282
314
|
};
|
|
283
315
|
dark: {
|
|
284
|
-
type: import(
|
|
316
|
+
type: import('vue').PropType<boolean>;
|
|
285
317
|
default: boolean;
|
|
286
318
|
};
|
|
287
319
|
iconRight: {
|
|
288
|
-
type: import(
|
|
320
|
+
type: import('vue').PropType<boolean>;
|
|
289
321
|
};
|
|
290
322
|
variant: {
|
|
291
|
-
type: import(
|
|
323
|
+
type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
|
|
292
324
|
default: string;
|
|
293
325
|
};
|
|
294
|
-
|
|
326
|
+
loadOnClick: {
|
|
327
|
+
type: import('vue').PropType<boolean>;
|
|
328
|
+
default: boolean;
|
|
329
|
+
};
|
|
330
|
+
}>>, "disabled" | "type" | "onClick" | "label" | "icon" | "size" | "loading" | "error" | "dark" | "variant" | "loadOnClick">, "size" | "variant">;
|
|
295
331
|
isOpen: boolean;
|
|
296
332
|
}, {}>, {
|
|
297
333
|
anchor?(_: {
|
package/dist/ElFile.vue.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export declare const elFileVariants: readonly ["primary", "alpha", "outlined"];
|
|
2
2
|
export type ElFileVariant = (typeof elFileVariants)[number];
|
|
3
|
-
declare const _default: import(
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
variant: ElFileVariant;
|
|
5
5
|
name: string;
|
|
6
6
|
format?: string | undefined;
|
|
7
|
-
}>, {}, unknown, {}, {}, import(
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
8
|
close: () => void;
|
|
9
|
-
}, string, import(
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
10
|
variant: ElFileVariant;
|
|
11
11
|
name: string;
|
|
12
12
|
format?: string | undefined;
|
package/dist/ElIcon.vue.d.ts
CHANGED
|
@@ -8,11 +8,11 @@ export type ElIconProps = {
|
|
|
8
8
|
cursorPointer?: boolean;
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
};
|
|
11
|
-
declare const _default: import(
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
12
12
|
name: IconNames;
|
|
13
13
|
solid?: boolean | undefined;
|
|
14
14
|
disabled?: boolean | undefined;
|
|
15
|
-
}>, {}, unknown, {}, {}, import(
|
|
15
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
16
16
|
name: IconNames;
|
|
17
17
|
solid?: boolean | undefined;
|
|
18
18
|
disabled?: boolean | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElIconProps } from './ElIcon.vue';
|
|
2
|
+
|
|
2
3
|
export interface ElIconButtonProps {
|
|
3
4
|
icon: ElIconProps;
|
|
4
5
|
tooltip?: string;
|
|
@@ -10,16 +11,16 @@ export interface ElIconButtonProps {
|
|
|
10
11
|
}
|
|
11
12
|
export declare const elIconButtonSizes: readonly ["xs", "sm", "base", "l", "xl"];
|
|
12
13
|
export type ElIconButtonSize = (typeof elIconButtonSizes)[number];
|
|
13
|
-
declare const _default: import(
|
|
14
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ElIconButtonProps>, {
|
|
14
15
|
tooltip: undefined;
|
|
15
16
|
size: string;
|
|
16
17
|
disabled: boolean;
|
|
17
18
|
loading: boolean;
|
|
18
19
|
badge: boolean;
|
|
19
20
|
error: boolean;
|
|
20
|
-
}>, {}, unknown, {}, {}, import(
|
|
21
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
22
|
click: () => void;
|
|
22
|
-
}, string, import(
|
|
23
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ElIconButtonProps>, {
|
|
23
24
|
tooltip: undefined;
|
|
24
25
|
size: string;
|
|
25
26
|
disabled: boolean;
|
package/dist/ElItem.vue.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { ElIconProps } from './ElIcon.vue';
|
|
2
1
|
import { AvatarParameters } from './types';
|
|
3
|
-
|
|
2
|
+
import { ElIconProps } from './ElIcon.vue';
|
|
3
|
+
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
5
|
text: string;
|
|
5
6
|
check?: boolean | undefined;
|
|
6
7
|
leadingIcon?: ElIconProps | undefined;
|
|
@@ -12,7 +13,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
12
13
|
leadingIcon: undefined;
|
|
13
14
|
avatar: undefined;
|
|
14
15
|
disabled: boolean;
|
|
15
|
-
}>, {}, unknown, {}, {}, import(
|
|
16
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
16
17
|
text: string;
|
|
17
18
|
check?: boolean | undefined;
|
|
18
19
|
leadingIcon?: ElIconProps | undefined;
|
package/dist/ElLogo.vue.d.ts
CHANGED
|
@@ -2,13 +2,13 @@ export declare const elLogoColors: readonly ["two-tone", "white", "dark"];
|
|
|
2
2
|
export type ElLogoColors = (typeof elLogoColors)[number];
|
|
3
3
|
export declare const elLogoVariants: readonly ["full", "compact", "basic"];
|
|
4
4
|
export type ElLogoVariants = (typeof elLogoVariants)[number];
|
|
5
|
-
declare const _default: import(
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
color?: "dark" | "two-tone" | "white" | undefined;
|
|
7
7
|
variant?: "full" | "compact" | "basic" | undefined;
|
|
8
8
|
}>, {
|
|
9
9
|
color: string;
|
|
10
10
|
variant: string;
|
|
11
|
-
}>, {}, unknown, {}, {}, import(
|
|
11
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
12
|
color?: "dark" | "two-tone" | "white" | undefined;
|
|
13
13
|
variant?: "full" | "compact" | "basic" | undefined;
|
|
14
14
|
}>, {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const elSortingHeaderDirections: readonly ["down", "up"];
|
|
2
2
|
export type ElSortingHeaderDirection = (typeof elSortingHeaderDirections)[number];
|
|
3
|
-
declare const _default: import(
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
direction: ElSortingHeaderDirection;
|
|
5
5
|
}>, {
|
|
6
6
|
direction: string;
|
|
7
|
-
}>, {}, unknown, {}, {}, import(
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
8
|
direction: ElSortingHeaderDirection;
|
|
9
9
|
}>, {
|
|
10
10
|
direction: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
label: string;
|
|
3
3
|
focused?: boolean | undefined;
|
|
4
|
-
}>, {}, unknown, {}, {}, import(
|
|
4
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
5
5
|
label: string;
|
|
6
6
|
focused?: boolean | undefined;
|
|
7
7
|
}>>>, {}, {}>;
|
package/dist/ElTab.vue.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export declare const elTabStatuses: readonly ["active", "inactive", "disabled"];
|
|
2
2
|
export type ElTabStatues = (typeof elTabStatuses)[number];
|
|
3
|
-
declare const _default: import(
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
label: string;
|
|
5
5
|
status: ElTabStatues;
|
|
6
|
-
}>, {}, unknown, {}, {}, import(
|
|
6
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
7
|
click: () => void;
|
|
8
|
-
}, string, import(
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
9
|
label: string;
|
|
10
10
|
status: ElTabStatues;
|
|
11
11
|
}>>> & {
|
package/dist/ElTabGroup.vue.d.ts
CHANGED
|
@@ -2,12 +2,12 @@ export type ElTabs = Array<{
|
|
|
2
2
|
label: string;
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
}>;
|
|
5
|
-
declare const _default: import(
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
modelValue: string;
|
|
7
7
|
tabs: ElTabs;
|
|
8
|
-
}>, {}, unknown, {}, {}, import(
|
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
9
|
"update:modelValue": (modelValue: string) => void;
|
|
10
|
-
}, string, import(
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
11
11
|
modelValue: string;
|
|
12
12
|
tabs: ElTabs;
|
|
13
13
|
}>>> & {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElSortingHeaderDirection } from './ElSortingHeader.vue';
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
label: string;
|
|
4
5
|
sortingDirection?: "down" | "up" | undefined;
|
|
5
6
|
alignRight?: boolean | undefined;
|
|
@@ -12,7 +13,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
12
13
|
sortingDirection: undefined;
|
|
13
14
|
alignRight: boolean;
|
|
14
15
|
checkbox: undefined;
|
|
15
|
-
}>, {}, unknown, {}, {}, import(
|
|
16
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
16
17
|
label: string;
|
|
17
18
|
sortingDirection?: "down" | "up" | undefined;
|
|
18
19
|
alignRight?: boolean | undefined;
|
package/dist/ElTabs.vue.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
modelValue: string;
|
|
3
3
|
tabs: Array<{
|
|
4
4
|
label: string;
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
}>;
|
|
7
|
-
}>, {}, unknown, {}, {}, import(
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
8
|
"update:modelValue": (modelValue: string) => void;
|
|
9
|
-
}, string, import(
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
10
|
modelValue: string;
|
|
11
11
|
tabs: Array<{
|
|
12
12
|
label: string;
|
package/dist/ElTag.vue.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ElIconProps } from './ElIcon.vue';
|
|
2
|
+
|
|
2
3
|
export declare const elTagColors: readonly ["primary", "rose", "pink", "purple", "indigo", "blue", "cyan", "gray", "teal", "green", "yellow", "orange", "red"];
|
|
3
4
|
export type ElTagColor = (typeof elTagColors)[number];
|
|
4
5
|
export declare const elTagSizes: readonly ["xxs", "xs"];
|
|
5
6
|
export type ElTagSize = (typeof elTagSizes)[number];
|
|
6
|
-
declare const _default: import(
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
7
8
|
text: string;
|
|
8
9
|
color?: "pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "red" | "purple" | "indigo" | "primary" | "teal" | "gray" | "blue" | undefined;
|
|
9
10
|
size?: "xs" | "xxs" | undefined;
|
|
@@ -16,7 +17,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
16
17
|
outlined: boolean;
|
|
17
18
|
leadingIcon: undefined;
|
|
18
19
|
trailingIcon: undefined;
|
|
19
|
-
}>, {}, unknown, {}, {}, import(
|
|
20
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
20
21
|
text: string;
|
|
21
22
|
color?: "pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "red" | "purple" | "indigo" | "primary" | "teal" | "gray" | "blue" | undefined;
|
|
22
23
|
size?: "xs" | "xxs" | undefined;
|
package/dist/ElTextCell.vue.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export declare const elTextCellStyles: readonly ["normal", "semibold", "underline"];
|
|
2
2
|
export type ElTextCellStyle = (typeof elTextCellStyles)[number];
|
|
3
|
-
declare const _default: import(
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
label?: string | undefined;
|
|
5
5
|
style?: "normal" | "semibold" | "underline" | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
label: string;
|
|
8
8
|
style: string;
|
|
9
|
-
}>, {}, unknown, {}, {}, import(
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
10
|
label?: string | undefined;
|
|
11
11
|
style?: "normal" | "semibold" | "underline" | undefined;
|
|
12
12
|
}>, {
|
package/dist/ElToast.vue.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ export interface ToastOptions {
|
|
|
7
7
|
allowDuplicates?: boolean;
|
|
8
8
|
}
|
|
9
9
|
export declare const toast: (msg: string, options?: Partial<ToastOptions>) => void;
|
|
10
|
-
declare const _default: import(
|
|
10
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
11
11
|
export default _default;
|