@davincihealthcare/elty-design-system-vue 1.13.5 → 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.
Files changed (45) hide show
  1. package/dist/ElAccordion.vue.d.ts +33 -33
  2. package/dist/ElAvatar.vue.d.ts +2 -2
  3. package/dist/ElBadge.vue.d.ts +2 -2
  4. package/dist/ElButton.vue.d.ts +4 -3
  5. package/dist/ElCalendarCard.vue.d.ts +2 -2
  6. package/dist/ElCalendarCell.vue.d.ts +2 -2
  7. package/dist/ElClipToAnchor.vue.d.ts +2 -2
  8. package/dist/ElDrawer.vue.d.ts +3 -3
  9. package/dist/ElDropdown.vue.d.ts +68 -68
  10. package/dist/ElFile.vue.d.ts +3 -3
  11. package/dist/ElIcon.vue.d.ts +2 -2
  12. package/dist/ElIconButton.vue.d.ts +4 -3
  13. package/dist/ElItem.vue.d.ts +4 -3
  14. package/dist/ElLogo.vue.d.ts +2 -2
  15. package/dist/ElSortingHeader.vue.d.ts +2 -2
  16. package/dist/ElSuggestionChip.vue.d.ts +2 -2
  17. package/dist/ElTab.vue.d.ts +3 -3
  18. package/dist/ElTabGroup.vue.d.ts +3 -3
  19. package/dist/ElTableHead.vue.d.ts +3 -2
  20. package/dist/ElTabs.vue.d.ts +3 -3
  21. package/dist/ElTag.vue.d.ts +3 -2
  22. package/dist/ElTextCell.vue.d.ts +2 -2
  23. package/dist/ElToast.vue.d.ts +1 -1
  24. package/dist/ElTooltip.vue.d.ts +2 -2
  25. package/dist/_CustomTransition.vue.d.ts +3 -3
  26. package/dist/forms/ElInputCheckbox.vue.d.ts +4 -3
  27. package/dist/forms/ElInputContainer.vue.d.ts +2 -2
  28. package/dist/forms/ElInputDate.vue.d.ts +5 -4
  29. package/dist/forms/ElInputFile.vue.d.ts +4 -3
  30. package/dist/forms/ElInputMeasureUnit.vue.d.ts +5 -4
  31. package/dist/forms/ElInputNumber.vue.d.ts +6 -5
  32. package/dist/forms/ElInputPhone.vue.d.ts +6 -5
  33. package/dist/forms/ElInputSelect.vue.d.ts +6 -5
  34. package/dist/forms/ElInputText.vue.d.ts +6 -5
  35. package/dist/forms/ElInputTextarea.vue.d.ts +6 -5
  36. package/dist/forms/input.d.ts +3 -3
  37. package/dist/forms/utils.d.ts +2 -2
  38. package/dist/index.d.ts +1 -0
  39. package/dist/index.js +4699 -4558
  40. package/dist/index.js.map +1 -1
  41. package/dist/index.umd.cjs +21 -19
  42. package/dist/index.umd.cjs.map +1 -1
  43. package/dist/tailwind.plugin.d.ts +2 -2
  44. package/dist/utils.d.ts +1 -0
  45. package/package.json +1 -1
@@ -1,38 +1,38 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("./types").AvatarParameters;
7
+ avatar: import('./types').AvatarParameters;
8
8
  check: boolean;
9
- leadingIcon: import("./ElIcon.vue").ElIconProps;
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("./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<{
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("vue").PropType<boolean>;
18
+ type: import('vue').PropType<boolean>;
19
19
  default: boolean;
20
20
  };
21
21
  text: {
22
- type: import("vue").PropType<string>;
22
+ type: import('vue').PropType<string>;
23
23
  required: true;
24
24
  default: string;
25
25
  };
26
26
  avatar: {
27
- type: import("vue").PropType<import("./types").AvatarParameters>;
27
+ type: import('vue').PropType<import('./types').AvatarParameters>;
28
28
  default: undefined;
29
29
  };
30
30
  check: {
31
- type: import("vue").PropType<boolean>;
31
+ type: import('vue').PropType<boolean>;
32
32
  default: boolean;
33
33
  };
34
34
  leadingIcon: {
35
- type: import("vue").PropType<import("./ElIcon.vue").ElIconProps>;
35
+ type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
36
36
  default: undefined;
37
37
  };
38
38
  }>>, "disabled" | "text" | "avatar" | "check" | "leadingIcon">)[];
@@ -42,7 +42,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
42
42
  type: "button" | "submit" | "reset";
43
43
  onClick: () => unknown;
44
44
  label: string;
45
- icon: import("./ElIcon.vue").ElIconProps;
45
+ icon: import('./ElIcon.vue').ElIconProps;
46
46
  size: "base" | "xs" | "sm" | "l" | "xl";
47
47
  loading: boolean;
48
48
  error: boolean;
@@ -60,55 +60,55 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
60
60
  readonly variant: "primary" | "secondary" | "tertiary";
61
61
  readonly loadOnClick: boolean;
62
62
  readonly onClick?: (() => unknown) | undefined;
63
- readonly icon?: import("./ElIcon.vue").ElIconProps | undefined;
63
+ readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
64
64
  readonly iconRight?: boolean | undefined;
65
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
65
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
66
66
  disabled: {
67
- type: import("vue").PropType<boolean>;
67
+ type: import('vue').PropType<boolean>;
68
68
  default: boolean;
69
69
  };
70
70
  type: {
71
- type: import("vue").PropType<"button" | "submit" | "reset">;
71
+ type: import('vue').PropType<"button" | "submit" | "reset">;
72
72
  default: string;
73
73
  };
74
74
  onClick: {
75
- type: import("vue").PropType<() => unknown>;
75
+ type: import('vue').PropType<() => unknown>;
76
76
  default: undefined;
77
77
  };
78
78
  label: {
79
- type: import("vue").PropType<string>;
79
+ type: import('vue').PropType<string>;
80
80
  required: true;
81
81
  default: string;
82
82
  };
83
83
  icon: {
84
- type: import("vue").PropType<import("./ElIcon.vue").ElIconProps>;
84
+ type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
85
85
  default: undefined;
86
86
  };
87
87
  size: {
88
- type: import("vue").PropType<"base" | "xs" | "sm" | "l" | "xl">;
88
+ type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
89
89
  default: string;
90
90
  };
91
91
  loading: {
92
- type: import("vue").PropType<boolean>;
92
+ type: import('vue').PropType<boolean>;
93
93
  default: boolean;
94
94
  };
95
95
  error: {
96
- type: import("vue").PropType<boolean>;
96
+ type: import('vue').PropType<boolean>;
97
97
  default: boolean;
98
98
  };
99
99
  dark: {
100
- type: import("vue").PropType<boolean>;
100
+ type: import('vue').PropType<boolean>;
101
101
  default: boolean;
102
102
  };
103
103
  iconRight: {
104
- type: import("vue").PropType<boolean>;
104
+ type: import('vue').PropType<boolean>;
105
105
  };
106
106
  variant: {
107
- type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
107
+ type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
108
108
  default: string;
109
109
  };
110
110
  loadOnClick: {
111
- type: import("vue").PropType<boolean>;
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
124
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
125
125
  "click:action": () => void;
126
126
  "update:is-open": (isOpen: boolean) => void;
127
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("./types").AvatarParameters;
133
+ avatar: import('./types').AvatarParameters;
134
134
  check: boolean;
135
- leadingIcon: import("./ElIcon.vue").ElIconProps;
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("./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<{
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("vue").PropType<boolean>;
144
+ type: import('vue').PropType<boolean>;
145
145
  default: boolean;
146
146
  };
147
147
  text: {
148
- type: import("vue").PropType<string>;
148
+ type: import('vue').PropType<string>;
149
149
  required: true;
150
150
  default: string;
151
151
  };
152
152
  avatar: {
153
- type: import("vue").PropType<import("./types").AvatarParameters>;
153
+ type: import('vue').PropType<import('./types').AvatarParameters>;
154
154
  default: undefined;
155
155
  };
156
156
  check: {
157
- type: import("vue").PropType<boolean>;
157
+ type: import('vue').PropType<boolean>;
158
158
  default: boolean;
159
159
  };
160
160
  leadingIcon: {
161
- type: import("vue").PropType<import("./ElIcon.vue").ElIconProps>;
161
+ type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
162
162
  default: undefined;
163
163
  };
164
164
  }>>, "disabled" | "text" | "avatar" | "check" | "leadingIcon">)[];
@@ -168,7 +168,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
168
168
  type: "button" | "submit" | "reset";
169
169
  onClick: () => unknown;
170
170
  label: string;
171
- icon: import("./ElIcon.vue").ElIconProps;
171
+ icon: import('./ElIcon.vue').ElIconProps;
172
172
  size: "base" | "xs" | "sm" | "l" | "xl";
173
173
  loading: boolean;
174
174
  error: boolean;
@@ -186,55 +186,55 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
186
186
  readonly variant: "primary" | "secondary" | "tertiary";
187
187
  readonly loadOnClick: boolean;
188
188
  readonly onClick?: (() => unknown) | undefined;
189
- readonly icon?: import("./ElIcon.vue").ElIconProps | undefined;
189
+ readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
190
190
  readonly iconRight?: boolean | undefined;
191
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
191
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
192
192
  disabled: {
193
- type: import("vue").PropType<boolean>;
193
+ type: import('vue').PropType<boolean>;
194
194
  default: boolean;
195
195
  };
196
196
  type: {
197
- type: import("vue").PropType<"button" | "submit" | "reset">;
197
+ type: import('vue').PropType<"button" | "submit" | "reset">;
198
198
  default: string;
199
199
  };
200
200
  onClick: {
201
- type: import("vue").PropType<() => unknown>;
201
+ type: import('vue').PropType<() => unknown>;
202
202
  default: undefined;
203
203
  };
204
204
  label: {
205
- type: import("vue").PropType<string>;
205
+ type: import('vue').PropType<string>;
206
206
  required: true;
207
207
  default: string;
208
208
  };
209
209
  icon: {
210
- type: import("vue").PropType<import("./ElIcon.vue").ElIconProps>;
210
+ type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
211
211
  default: undefined;
212
212
  };
213
213
  size: {
214
- type: import("vue").PropType<"base" | "xs" | "sm" | "l" | "xl">;
214
+ type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
215
215
  default: string;
216
216
  };
217
217
  loading: {
218
- type: import("vue").PropType<boolean>;
218
+ type: import('vue').PropType<boolean>;
219
219
  default: boolean;
220
220
  };
221
221
  error: {
222
- type: import("vue").PropType<boolean>;
222
+ type: import('vue').PropType<boolean>;
223
223
  default: boolean;
224
224
  };
225
225
  dark: {
226
- type: import("vue").PropType<boolean>;
226
+ type: import('vue').PropType<boolean>;
227
227
  default: boolean;
228
228
  };
229
229
  iconRight: {
230
- type: import("vue").PropType<boolean>;
230
+ type: import('vue').PropType<boolean>;
231
231
  };
232
232
  variant: {
233
- type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
233
+ type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
234
234
  default: string;
235
235
  };
236
236
  loadOnClick: {
237
- type: import("vue").PropType<boolean>;
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;
@@ -258,7 +258,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
258
258
  type: "button" | "submit" | "reset";
259
259
  onClick: () => unknown;
260
260
  label: string;
261
- icon: import("./ElIcon.vue").ElIconProps;
261
+ icon: import('./ElIcon.vue').ElIconProps;
262
262
  size: "base" | "xs" | "sm" | "l" | "xl";
263
263
  loading: boolean;
264
264
  error: boolean;
@@ -276,55 +276,55 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
276
276
  readonly variant: "primary" | "secondary" | "tertiary";
277
277
  readonly loadOnClick: boolean;
278
278
  readonly onClick?: (() => unknown) | undefined;
279
- readonly icon?: import("./ElIcon.vue").ElIconProps | undefined;
279
+ readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
280
280
  readonly iconRight?: boolean | undefined;
281
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
281
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
282
282
  disabled: {
283
- type: import("vue").PropType<boolean>;
283
+ type: import('vue').PropType<boolean>;
284
284
  default: boolean;
285
285
  };
286
286
  type: {
287
- type: import("vue").PropType<"button" | "submit" | "reset">;
287
+ type: import('vue').PropType<"button" | "submit" | "reset">;
288
288
  default: string;
289
289
  };
290
290
  onClick: {
291
- type: import("vue").PropType<() => unknown>;
291
+ type: import('vue').PropType<() => unknown>;
292
292
  default: undefined;
293
293
  };
294
294
  label: {
295
- type: import("vue").PropType<string>;
295
+ type: import('vue').PropType<string>;
296
296
  required: true;
297
297
  default: string;
298
298
  };
299
299
  icon: {
300
- type: import("vue").PropType<import("./ElIcon.vue").ElIconProps>;
300
+ type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
301
301
  default: undefined;
302
302
  };
303
303
  size: {
304
- type: import("vue").PropType<"base" | "xs" | "sm" | "l" | "xl">;
304
+ type: import('vue').PropType<"base" | "xs" | "sm" | "l" | "xl">;
305
305
  default: string;
306
306
  };
307
307
  loading: {
308
- type: import("vue").PropType<boolean>;
308
+ type: import('vue').PropType<boolean>;
309
309
  default: boolean;
310
310
  };
311
311
  error: {
312
- type: import("vue").PropType<boolean>;
312
+ type: import('vue').PropType<boolean>;
313
313
  default: boolean;
314
314
  };
315
315
  dark: {
316
- type: import("vue").PropType<boolean>;
316
+ type: import('vue').PropType<boolean>;
317
317
  default: boolean;
318
318
  };
319
319
  iconRight: {
320
- type: import("vue").PropType<boolean>;
320
+ type: import('vue').PropType<boolean>;
321
321
  };
322
322
  variant: {
323
- type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
323
+ type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
324
324
  default: string;
325
325
  };
326
326
  loadOnClick: {
327
- type: import("vue").PropType<boolean>;
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">;
@@ -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("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
8
  close: () => void;
9
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
10
10
  variant: ElFileVariant;
11
11
  name: string;
12
12
  format?: string | undefined;
@@ -8,11 +8,11 @@ export type ElIconProps = {
8
8
  cursorPointer?: boolean;
9
9
  disabled?: boolean;
10
10
  };
11
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
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("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ElIconButtonProps>, {
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
21
22
  click: () => void;
22
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ElIconButtonProps>, {
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;
@@ -1,6 +1,7 @@
1
- import { ElIconProps } from './ElIcon.vue';
2
1
  import { AvatarParameters } from './types';
3
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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;
@@ -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("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
4
  direction: ElSortingHeaderDirection;
5
5
  }>, {
6
6
  direction: string;
7
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
2
  label: string;
3
3
  focused?: boolean | undefined;
4
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
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
  }>>>, {}, {}>;
@@ -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("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
4
4
  label: string;
5
5
  status: ElTabStatues;
6
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
7
  click: () => void;
8
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
8
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
9
  label: string;
10
10
  status: ElTabStatues;
11
11
  }>>> & {
@@ -2,12 +2,12 @@ export type ElTabs = Array<{
2
2
  label: string;
3
3
  disabled?: boolean;
4
4
  }>;
5
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
5
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
6
6
  modelValue: string;
7
7
  tabs: ElTabs;
8
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
9
  "update:modelValue": (modelValue: string) => void;
10
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
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
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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;
@@ -1,12 +1,12 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
8
  "update:modelValue": (modelValue: string) => void;
9
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
10
10
  modelValue: string;
11
11
  tabs: Array<{
12
12
  label: string;
@@ -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("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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;
@@ -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("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
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
  }>, {
@@ -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("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
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;
@@ -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("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
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("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
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
  }>>>, {}, {}>, {
@@ -1,10 +1,10 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
2
  name: "fade" | "scale" | "slide-x-fade" | "slide-y-fade" | "flip-x" | "expand" | "slide-y" | "slide-x";
3
3
  mode?: "out-in" | "in-out" | undefined;
4
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
5
  onEnter: () => void;
6
6
  onLeave: () => void;
7
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
8
8
  name: "fade" | "scale" | "slide-x-fade" | "slide-y-fade" | "flip-x" | "expand" | "slide-y" | "slide-x";
9
9
  mode?: "out-in" | "in-out" | undefined;
10
10
  }>>> & {