@davincihealthcare/elty-design-system-vue 1.13.5 → 1.13.7
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 +7 -6
- 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 +74 -74
- 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 +4699 -4558
- 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,9 +40,9 @@ 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
|
+
onClick: (() => unknown) | (() => Promise<unknown>);
|
|
44
44
|
label: string;
|
|
45
|
-
icon: import(
|
|
45
|
+
icon: import('./ElIcon.vue').ElIconProps;
|
|
46
46
|
size: "base" | "xs" | "sm" | "l" | "xl";
|
|
47
47
|
loading: boolean;
|
|
48
48
|
error: boolean;
|
|
@@ -59,56 +59,56 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
59
59
|
readonly dark: boolean;
|
|
60
60
|
readonly variant: "primary" | "secondary" | "tertiary";
|
|
61
61
|
readonly loadOnClick: boolean;
|
|
62
|
-
readonly onClick?: (() => unknown) | undefined;
|
|
63
|
-
readonly icon?: import(
|
|
62
|
+
readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
|
|
63
|
+
readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
|
|
64
64
|
readonly iconRight?: boolean | undefined;
|
|
65
|
-
} & import(
|
|
65
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
66
66
|
disabled: {
|
|
67
|
-
type: import(
|
|
67
|
+
type: import('vue').PropType<boolean>;
|
|
68
68
|
default: boolean;
|
|
69
69
|
};
|
|
70
70
|
type: {
|
|
71
|
-
type: import(
|
|
71
|
+
type: import('vue').PropType<"button" | "submit" | "reset">;
|
|
72
72
|
default: string;
|
|
73
73
|
};
|
|
74
74
|
onClick: {
|
|
75
|
-
type: import(
|
|
75
|
+
type: import('vue').PropType<(() => unknown) | (() => Promise<unknown>)>;
|
|
76
76
|
default: undefined;
|
|
77
77
|
};
|
|
78
78
|
label: {
|
|
79
|
-
type: import(
|
|
79
|
+
type: import('vue').PropType<string>;
|
|
80
80
|
required: true;
|
|
81
81
|
default: string;
|
|
82
82
|
};
|
|
83
83
|
icon: {
|
|
84
|
-
type: import(
|
|
84
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
85
85
|
default: undefined;
|
|
86
86
|
};
|
|
87
87
|
size: {
|
|
88
|
-
type: import(
|
|
88
|
+
type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
|
|
89
89
|
default: string;
|
|
90
90
|
};
|
|
91
91
|
loading: {
|
|
92
|
-
type: import(
|
|
92
|
+
type: import('vue').PropType<boolean>;
|
|
93
93
|
default: boolean;
|
|
94
94
|
};
|
|
95
95
|
error: {
|
|
96
|
-
type: import(
|
|
96
|
+
type: import('vue').PropType<boolean>;
|
|
97
97
|
default: boolean;
|
|
98
98
|
};
|
|
99
99
|
dark: {
|
|
100
|
-
type: import(
|
|
100
|
+
type: import('vue').PropType<boolean>;
|
|
101
101
|
default: boolean;
|
|
102
102
|
};
|
|
103
103
|
iconRight: {
|
|
104
|
-
type: import(
|
|
104
|
+
type: import('vue').PropType<boolean>;
|
|
105
105
|
};
|
|
106
106
|
variant: {
|
|
107
|
-
type: import(
|
|
107
|
+
type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
|
|
108
108
|
default: string;
|
|
109
109
|
};
|
|
110
110
|
loadOnClick: {
|
|
111
|
-
type: import(
|
|
111
|
+
type: import('vue').PropType<boolean>;
|
|
112
112
|
default: boolean;
|
|
113
113
|
};
|
|
114
114
|
}>>, "disabled" | "type" | "onClick" | "label" | "icon" | "size" | "loading" | "error" | "dark" | "variant" | "loadOnClick">, "size" | "variant"> | undefined;
|
|
@@ -121,44 +121,44 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
121
121
|
action: undefined;
|
|
122
122
|
isOpen: undefined;
|
|
123
123
|
minWidth: undefined;
|
|
124
|
-
}>, {}, unknown, {}, {}, import(
|
|
124
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
125
125
|
"click:action": () => void;
|
|
126
126
|
"update:is-open": (isOpen: boolean) => void;
|
|
127
|
-
}, string, import(
|
|
127
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
128
128
|
items: ({
|
|
129
129
|
onClick?: (() => void) | undefined;
|
|
130
130
|
} & Partial<{
|
|
131
131
|
disabled: boolean;
|
|
132
132
|
text: string;
|
|
133
|
-
avatar: import(
|
|
133
|
+
avatar: import('./types').AvatarParameters;
|
|
134
134
|
check: boolean;
|
|
135
|
-
leadingIcon: import(
|
|
135
|
+
leadingIcon: import('./ElIcon.vue').ElIconProps;
|
|
136
136
|
}> & Omit<{
|
|
137
137
|
readonly disabled: boolean;
|
|
138
138
|
readonly text: string;
|
|
139
139
|
readonly check: boolean;
|
|
140
|
-
readonly avatar?: import(
|
|
141
|
-
readonly leadingIcon?: import(
|
|
142
|
-
} & 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<{
|
|
143
143
|
disabled: {
|
|
144
|
-
type: import(
|
|
144
|
+
type: import('vue').PropType<boolean>;
|
|
145
145
|
default: boolean;
|
|
146
146
|
};
|
|
147
147
|
text: {
|
|
148
|
-
type: import(
|
|
148
|
+
type: import('vue').PropType<string>;
|
|
149
149
|
required: true;
|
|
150
150
|
default: string;
|
|
151
151
|
};
|
|
152
152
|
avatar: {
|
|
153
|
-
type: import(
|
|
153
|
+
type: import('vue').PropType<import('./types').AvatarParameters>;
|
|
154
154
|
default: undefined;
|
|
155
155
|
};
|
|
156
156
|
check: {
|
|
157
|
-
type: import(
|
|
157
|
+
type: import('vue').PropType<boolean>;
|
|
158
158
|
default: boolean;
|
|
159
159
|
};
|
|
160
160
|
leadingIcon: {
|
|
161
|
-
type: import(
|
|
161
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
162
162
|
default: undefined;
|
|
163
163
|
};
|
|
164
164
|
}>>, "disabled" | "text" | "avatar" | "check" | "leadingIcon">)[];
|
|
@@ -166,9 +166,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
166
166
|
action?: Omit<Partial<{
|
|
167
167
|
disabled: boolean;
|
|
168
168
|
type: "button" | "submit" | "reset";
|
|
169
|
-
onClick: () => unknown;
|
|
169
|
+
onClick: (() => unknown) | (() => Promise<unknown>);
|
|
170
170
|
label: string;
|
|
171
|
-
icon: import(
|
|
171
|
+
icon: import('./ElIcon.vue').ElIconProps;
|
|
172
172
|
size: "base" | "xs" | "sm" | "l" | "xl";
|
|
173
173
|
loading: boolean;
|
|
174
174
|
error: boolean;
|
|
@@ -185,56 +185,56 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
185
185
|
readonly dark: boolean;
|
|
186
186
|
readonly variant: "primary" | "secondary" | "tertiary";
|
|
187
187
|
readonly loadOnClick: boolean;
|
|
188
|
-
readonly onClick?: (() => unknown) | undefined;
|
|
189
|
-
readonly icon?: import(
|
|
188
|
+
readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
|
|
189
|
+
readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
|
|
190
190
|
readonly iconRight?: boolean | undefined;
|
|
191
|
-
} & import(
|
|
191
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
192
192
|
disabled: {
|
|
193
|
-
type: import(
|
|
193
|
+
type: import('vue').PropType<boolean>;
|
|
194
194
|
default: boolean;
|
|
195
195
|
};
|
|
196
196
|
type: {
|
|
197
|
-
type: import(
|
|
197
|
+
type: import('vue').PropType<"button" | "submit" | "reset">;
|
|
198
198
|
default: string;
|
|
199
199
|
};
|
|
200
200
|
onClick: {
|
|
201
|
-
type: import(
|
|
201
|
+
type: import('vue').PropType<(() => unknown) | (() => Promise<unknown>)>;
|
|
202
202
|
default: undefined;
|
|
203
203
|
};
|
|
204
204
|
label: {
|
|
205
|
-
type: import(
|
|
205
|
+
type: import('vue').PropType<string>;
|
|
206
206
|
required: true;
|
|
207
207
|
default: string;
|
|
208
208
|
};
|
|
209
209
|
icon: {
|
|
210
|
-
type: import(
|
|
210
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
211
211
|
default: undefined;
|
|
212
212
|
};
|
|
213
213
|
size: {
|
|
214
|
-
type: import(
|
|
214
|
+
type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
|
|
215
215
|
default: string;
|
|
216
216
|
};
|
|
217
217
|
loading: {
|
|
218
|
-
type: import(
|
|
218
|
+
type: import('vue').PropType<boolean>;
|
|
219
219
|
default: boolean;
|
|
220
220
|
};
|
|
221
221
|
error: {
|
|
222
|
-
type: import(
|
|
222
|
+
type: import('vue').PropType<boolean>;
|
|
223
223
|
default: boolean;
|
|
224
224
|
};
|
|
225
225
|
dark: {
|
|
226
|
-
type: import(
|
|
226
|
+
type: import('vue').PropType<boolean>;
|
|
227
227
|
default: boolean;
|
|
228
228
|
};
|
|
229
229
|
iconRight: {
|
|
230
|
-
type: import(
|
|
230
|
+
type: import('vue').PropType<boolean>;
|
|
231
231
|
};
|
|
232
232
|
variant: {
|
|
233
|
-
type: import(
|
|
233
|
+
type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
|
|
234
234
|
default: string;
|
|
235
235
|
};
|
|
236
236
|
loadOnClick: {
|
|
237
|
-
type: import(
|
|
237
|
+
type: import('vue').PropType<boolean>;
|
|
238
238
|
default: boolean;
|
|
239
239
|
};
|
|
240
240
|
}>>, "disabled" | "type" | "onClick" | "label" | "icon" | "size" | "loading" | "error" | "dark" | "variant" | "loadOnClick">, "size" | "variant"> | undefined;
|
|
@@ -256,9 +256,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
256
256
|
action: Omit<Partial<{
|
|
257
257
|
disabled: boolean;
|
|
258
258
|
type: "button" | "submit" | "reset";
|
|
259
|
-
onClick: () => unknown;
|
|
259
|
+
onClick: (() => unknown) | (() => Promise<unknown>);
|
|
260
260
|
label: string;
|
|
261
|
-
icon: import(
|
|
261
|
+
icon: import('./ElIcon.vue').ElIconProps;
|
|
262
262
|
size: "base" | "xs" | "sm" | "l" | "xl";
|
|
263
263
|
loading: boolean;
|
|
264
264
|
error: boolean;
|
|
@@ -275,56 +275,56 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
275
275
|
readonly dark: boolean;
|
|
276
276
|
readonly variant: "primary" | "secondary" | "tertiary";
|
|
277
277
|
readonly loadOnClick: boolean;
|
|
278
|
-
readonly onClick?: (() => unknown) | undefined;
|
|
279
|
-
readonly icon?: import(
|
|
278
|
+
readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
|
|
279
|
+
readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
|
|
280
280
|
readonly iconRight?: boolean | undefined;
|
|
281
|
-
} & import(
|
|
281
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
282
282
|
disabled: {
|
|
283
|
-
type: import(
|
|
283
|
+
type: import('vue').PropType<boolean>;
|
|
284
284
|
default: boolean;
|
|
285
285
|
};
|
|
286
286
|
type: {
|
|
287
|
-
type: import(
|
|
287
|
+
type: import('vue').PropType<"button" | "submit" | "reset">;
|
|
288
288
|
default: string;
|
|
289
289
|
};
|
|
290
290
|
onClick: {
|
|
291
|
-
type: import(
|
|
291
|
+
type: import('vue').PropType<(() => unknown) | (() => Promise<unknown>)>;
|
|
292
292
|
default: undefined;
|
|
293
293
|
};
|
|
294
294
|
label: {
|
|
295
|
-
type: import(
|
|
295
|
+
type: import('vue').PropType<string>;
|
|
296
296
|
required: true;
|
|
297
297
|
default: string;
|
|
298
298
|
};
|
|
299
299
|
icon: {
|
|
300
|
-
type: import(
|
|
300
|
+
type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
|
|
301
301
|
default: undefined;
|
|
302
302
|
};
|
|
303
303
|
size: {
|
|
304
|
-
type: import(
|
|
304
|
+
type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
|
|
305
305
|
default: string;
|
|
306
306
|
};
|
|
307
307
|
loading: {
|
|
308
|
-
type: import(
|
|
308
|
+
type: import('vue').PropType<boolean>;
|
|
309
309
|
default: boolean;
|
|
310
310
|
};
|
|
311
311
|
error: {
|
|
312
|
-
type: import(
|
|
312
|
+
type: import('vue').PropType<boolean>;
|
|
313
313
|
default: boolean;
|
|
314
314
|
};
|
|
315
315
|
dark: {
|
|
316
|
-
type: import(
|
|
316
|
+
type: import('vue').PropType<boolean>;
|
|
317
317
|
default: boolean;
|
|
318
318
|
};
|
|
319
319
|
iconRight: {
|
|
320
|
-
type: import(
|
|
320
|
+
type: import('vue').PropType<boolean>;
|
|
321
321
|
};
|
|
322
322
|
variant: {
|
|
323
|
-
type: import(
|
|
323
|
+
type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
|
|
324
324
|
default: string;
|
|
325
325
|
};
|
|
326
326
|
loadOnClick: {
|
|
327
|
-
type: import(
|
|
327
|
+
type: import('vue').PropType<boolean>;
|
|
328
328
|
default: boolean;
|
|
329
329
|
};
|
|
330
330
|
}>>, "disabled" | "type" | "onClick" | "label" | "icon" | "size" | "loading" | "error" | "dark" | "variant" | "loadOnClick">, "size" | "variant">;
|
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;
|
package/dist/ElTooltip.vue.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare const elTooltipPositions: readonly ["bottom-left", "bottom", "bottom-right", "top-left", "top", "top-right", "left", "left-start", "left-end", "right", "right-start", "right-end"];
|
|
2
2
|
export type ElTooltipPosition = (typeof elTooltipPositions)[number];
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
text: string;
|
|
5
5
|
position?: "bottom-left" | "bottom" | "bottom-right" | "top-left" | "top" | "top-right" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end" | undefined;
|
|
6
|
-
}>, {}, unknown, {}, {}, import(
|
|
6
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
text: string;
|
|
8
8
|
position?: "bottom-left" | "bottom" | "bottom-right" | "top-left" | "top" | "top-right" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end" | undefined;
|
|
9
9
|
}>>>, {}, {}>, {
|