@davincihealthcare/elty-design-system-vue 1.47.3 → 1.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ElAccordion.vue.d.ts +4 -4
- package/dist/ElActionButton.vue.d.ts +3 -3
- package/dist/ElAvatar.vue.d.ts +4 -4
- package/dist/ElBadge.vue.d.ts +2 -2
- package/dist/ElButton.vue.d.ts +22 -22
- package/dist/ElCalendarCard.vue.d.ts +15 -15
- package/dist/ElCalendarCell.vue.d.ts +8 -8
- package/dist/ElClipToAnchor.vue.d.ts +4 -4
- package/dist/ElContainerTemplate.vue.d.ts +12 -48
- package/dist/ElDrawer.vue.d.ts +21 -16
- package/dist/ElDropdown.vue.d.ts +20 -262
- package/dist/ElFile.vue.d.ts +2 -2
- package/dist/ElIcon.vue.d.ts +4 -4
- package/dist/ElIconButton.vue.d.ts +1 -1
- package/dist/ElInlineBanner.vue.d.ts +12 -187
- package/dist/ElItem.vue.d.ts +15 -15
- package/dist/ElLogo.vue.d.ts +4 -4
- package/dist/ElModal.vue.d.ts +34 -182
- package/dist/ElSpinner.vue.d.ts +6 -6
- package/dist/ElSuggestionChip.vue.d.ts +2 -2
- package/dist/ElTab.vue.d.ts +6 -6
- package/dist/ElTabGroup.vue.d.ts +4 -2
- package/dist/ElTableHead.vue.d.ts +6 -6
- package/dist/ElTag.vue.d.ts +10 -10
- package/dist/ElTextCell.vue.d.ts +4 -4
- package/dist/ElTooltip.vue.d.ts +2 -2
- package/dist/ElVerticalTab.vue.d.ts +22 -114
- package/dist/_CustomTransition.vue.d.ts +8 -6
- package/dist/forms/ElInputCheckbox.vue.d.ts +6 -6
- package/dist/forms/ElInputContainer.vue.d.ts +15 -13
- package/dist/forms/ElInputDate.vue.d.ts +2 -2
- package/dist/forms/ElInputFile.vue.d.ts +2 -2
- package/dist/forms/ElInputRadioButton.vue.d.ts +6 -4
- package/dist/forms/ElInputSearch.vue.d.ts +24 -323
- package/dist/forms/ElInputSelect.vue.d.ts +3 -2
- package/dist/forms/ElInputSwitch.vue.d.ts +8 -8
- package/dist/forms/ElInputText.vue.d.ts +2 -2
- package/dist/forms/input.d.ts +1 -1
- package/dist/index.js +2185 -2163
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +12 -12
- package/dist/index.umd.cjs.map +1 -1
- package/dist/table/ElServerSideTable.vue.d.ts +11 -3
- package/dist/table/ElTable.vue.d.ts +2 -2
- package/dist/tailwind.plugin.d.ts +2 -2
- package/package.json +3 -4
- package/dist/table/ElTablePagination.vue.d.ts +0 -61
|
@@ -1,125 +1,33 @@
|
|
|
1
|
+
import { default as ElBadge } from './ElBadge.vue';
|
|
2
|
+
import { default as ElIcon } from './ElIcon.vue';
|
|
3
|
+
import { default as ElAvatar } from './ElAvatar.vue';
|
|
4
|
+
|
|
1
5
|
export declare const elVerticalTabColors: readonly ["primary", "secondary"];
|
|
2
6
|
export type ElVerticalTabColors = (typeof elVerticalTabColors)[number];
|
|
3
7
|
export declare const elVerticalTabStatus: readonly ["default", "hover", "active"];
|
|
4
8
|
export type ElVerticalTabStatus = (typeof elVerticalTabStatus)[number];
|
|
5
9
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
-
icon?:
|
|
7
|
-
|
|
8
|
-
readonly solid?: boolean | undefined;
|
|
9
|
-
readonly disabled?: boolean | undefined;
|
|
10
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
11
|
-
name: {
|
|
12
|
-
type: import('vue').PropType<import('./ElIcon.vue').IconNames>;
|
|
13
|
-
required: true;
|
|
14
|
-
};
|
|
15
|
-
solid: {
|
|
16
|
-
type: import('vue').PropType<boolean>;
|
|
17
|
-
};
|
|
18
|
-
disabled: {
|
|
19
|
-
type: import('vue').PropType<boolean>;
|
|
20
|
-
};
|
|
21
|
-
}>>, never>) | undefined;
|
|
22
|
-
avatar?: (Partial<{
|
|
23
|
-
label: string;
|
|
24
|
-
picture: string;
|
|
25
|
-
size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
26
|
-
}> & Omit<{
|
|
27
|
-
readonly size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
28
|
-
readonly label?: string | undefined;
|
|
29
|
-
readonly picture?: string | undefined;
|
|
30
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
31
|
-
label: {
|
|
32
|
-
type: import('vue').PropType<string>;
|
|
33
|
-
default: undefined;
|
|
34
|
-
};
|
|
35
|
-
picture: {
|
|
36
|
-
type: import('vue').PropType<string>;
|
|
37
|
-
default: undefined;
|
|
38
|
-
};
|
|
39
|
-
size: {
|
|
40
|
-
type: import('vue').PropType<"xxs" | "xs" | "sm" | "md" | "lg" | "xl">;
|
|
41
|
-
required: true;
|
|
42
|
-
default: string;
|
|
43
|
-
};
|
|
44
|
-
}>>, "label" | "picture" | "size">) | undefined;
|
|
10
|
+
icon?: InstanceType<typeof ElIcon>["$props"];
|
|
11
|
+
avatar?: InstanceType<typeof ElAvatar>["$props"];
|
|
45
12
|
primaryRow: string;
|
|
46
|
-
secondaryRow?: string
|
|
47
|
-
tertiaryRow?: string
|
|
48
|
-
lineClamp?: 1 | 2
|
|
49
|
-
time?: string
|
|
50
|
-
badge?:
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
54
|
-
value: {
|
|
55
|
-
type: import('vue').PropType<string>;
|
|
56
|
-
};
|
|
57
|
-
color: {
|
|
58
|
-
type: import('vue').PropType<"red" | "primary" | "secondary">;
|
|
59
|
-
required: true;
|
|
60
|
-
};
|
|
61
|
-
}>>, never>) | undefined;
|
|
62
|
-
color?: "primary" | "secondary" | undefined;
|
|
63
|
-
status?: "default" | "active" | "hover" | undefined;
|
|
13
|
+
secondaryRow?: string;
|
|
14
|
+
tertiaryRow?: string;
|
|
15
|
+
lineClamp?: 1 | 2;
|
|
16
|
+
time?: string;
|
|
17
|
+
badge?: InstanceType<typeof ElBadge>["$props"];
|
|
18
|
+
color?: ElVerticalTabColors;
|
|
19
|
+
status?: ElVerticalTabStatus;
|
|
64
20
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
65
|
-
icon?:
|
|
66
|
-
|
|
67
|
-
readonly solid?: boolean | undefined;
|
|
68
|
-
readonly disabled?: boolean | undefined;
|
|
69
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
70
|
-
name: {
|
|
71
|
-
type: import('vue').PropType<import('./ElIcon.vue').IconNames>;
|
|
72
|
-
required: true;
|
|
73
|
-
};
|
|
74
|
-
solid: {
|
|
75
|
-
type: import('vue').PropType<boolean>;
|
|
76
|
-
};
|
|
77
|
-
disabled: {
|
|
78
|
-
type: import('vue').PropType<boolean>;
|
|
79
|
-
};
|
|
80
|
-
}>>, never>) | undefined;
|
|
81
|
-
avatar?: (Partial<{
|
|
82
|
-
label: string;
|
|
83
|
-
picture: string;
|
|
84
|
-
size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
85
|
-
}> & Omit<{
|
|
86
|
-
readonly size: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
87
|
-
readonly label?: string | undefined;
|
|
88
|
-
readonly picture?: string | undefined;
|
|
89
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
90
|
-
label: {
|
|
91
|
-
type: import('vue').PropType<string>;
|
|
92
|
-
default: undefined;
|
|
93
|
-
};
|
|
94
|
-
picture: {
|
|
95
|
-
type: import('vue').PropType<string>;
|
|
96
|
-
default: undefined;
|
|
97
|
-
};
|
|
98
|
-
size: {
|
|
99
|
-
type: import('vue').PropType<"xxs" | "xs" | "sm" | "md" | "lg" | "xl">;
|
|
100
|
-
required: true;
|
|
101
|
-
default: string;
|
|
102
|
-
};
|
|
103
|
-
}>>, "label" | "picture" | "size">) | undefined;
|
|
21
|
+
icon?: InstanceType<typeof ElIcon>["$props"];
|
|
22
|
+
avatar?: InstanceType<typeof ElAvatar>["$props"];
|
|
104
23
|
primaryRow: string;
|
|
105
|
-
secondaryRow?: string
|
|
106
|
-
tertiaryRow?: string
|
|
107
|
-
lineClamp?: 1 | 2
|
|
108
|
-
time?: string
|
|
109
|
-
badge?:
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
113
|
-
value: {
|
|
114
|
-
type: import('vue').PropType<string>;
|
|
115
|
-
};
|
|
116
|
-
color: {
|
|
117
|
-
type: import('vue').PropType<"red" | "primary" | "secondary">;
|
|
118
|
-
required: true;
|
|
119
|
-
};
|
|
120
|
-
}>>, never>) | undefined;
|
|
121
|
-
color?: "primary" | "secondary" | undefined;
|
|
122
|
-
status?: "default" | "active" | "hover" | undefined;
|
|
24
|
+
secondaryRow?: string;
|
|
25
|
+
tertiaryRow?: string;
|
|
26
|
+
lineClamp?: 1 | 2;
|
|
27
|
+
time?: string;
|
|
28
|
+
badge?: InstanceType<typeof ElBadge>["$props"];
|
|
29
|
+
color?: ElVerticalTabColors;
|
|
30
|
+
status?: ElVerticalTabStatus;
|
|
123
31
|
}>>>, {}, {}>, {
|
|
124
32
|
"traling-slot"?(_: {}): any;
|
|
125
33
|
}>;
|
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
5
|
name: "fade" | "scale" | "slide-x-fade" | "slide-y-fade" | "flip-x" | "expand" | "slide-y" | "slide-x";
|
|
3
|
-
mode?: "out-in" | "in-out"
|
|
6
|
+
mode?: "out-in" | "in-out";
|
|
4
7
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
8
|
onEnter: () => void;
|
|
6
9
|
onLeave: () => void;
|
|
7
10
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
11
|
name: "fade" | "scale" | "slide-x-fade" | "slide-y-fade" | "flip-x" | "expand" | "slide-y" | "slide-x";
|
|
9
|
-
mode?: "out-in" | "in-out"
|
|
12
|
+
mode?: "out-in" | "in-out";
|
|
10
13
|
}>>> & {
|
|
11
14
|
onOnEnter?: (() => any) | undefined;
|
|
12
15
|
onOnLeave?: (() => any) | undefined;
|
|
13
|
-
}, {}, {}
|
|
14
|
-
|
|
15
|
-
}>;
|
|
16
|
+
}, {}, {}>;
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
16
18
|
export default _default;
|
|
17
19
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
20
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -8,17 +8,17 @@ export declare const elInputCheckboxModelValues: readonly [true, false, "indeter
|
|
|
8
8
|
export type ElInputCheckboxModelValues = (typeof elInputCheckboxModelValues)[number];
|
|
9
9
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
10
10
|
modelValue: {
|
|
11
|
-
type: PropType<
|
|
11
|
+
type: PropType<ElInputCheckboxModelValues>;
|
|
12
12
|
default: boolean;
|
|
13
13
|
required: true;
|
|
14
14
|
};
|
|
15
15
|
size: {
|
|
16
|
-
type: PropType<
|
|
16
|
+
type: PropType<ElInputCheckboxSizes>;
|
|
17
17
|
default: string;
|
|
18
18
|
required: false;
|
|
19
19
|
};
|
|
20
20
|
color: {
|
|
21
|
-
type: PropType<
|
|
21
|
+
type: PropType<ElInputCheckboxColors>;
|
|
22
22
|
default: string;
|
|
23
23
|
required: false;
|
|
24
24
|
};
|
|
@@ -75,17 +75,17 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
75
75
|
"update:modelValue": (val: boolean | "indeterminate") => void;
|
|
76
76
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
77
77
|
modelValue: {
|
|
78
|
-
type: PropType<
|
|
78
|
+
type: PropType<ElInputCheckboxModelValues>;
|
|
79
79
|
default: boolean;
|
|
80
80
|
required: true;
|
|
81
81
|
};
|
|
82
82
|
size: {
|
|
83
|
-
type: PropType<
|
|
83
|
+
type: PropType<ElInputCheckboxSizes>;
|
|
84
84
|
default: string;
|
|
85
85
|
required: false;
|
|
86
86
|
};
|
|
87
87
|
color: {
|
|
88
|
-
type: PropType<
|
|
88
|
+
type: PropType<ElInputCheckboxColors>;
|
|
89
89
|
default: string;
|
|
90
90
|
required: false;
|
|
91
91
|
};
|
|
@@ -1,4 +1,16 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
leading?(_: {
|
|
3
|
+
error: boolean;
|
|
4
|
+
}): any;
|
|
5
|
+
default?(_: {
|
|
6
|
+
error: boolean;
|
|
7
|
+
}): any;
|
|
8
|
+
trailing?(_: {
|
|
9
|
+
error: boolean;
|
|
10
|
+
}): any;
|
|
11
|
+
after?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
2
14
|
label: {
|
|
3
15
|
type: StringConstructor;
|
|
4
16
|
default: string;
|
|
@@ -51,18 +63,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
51
63
|
errorMessage: string | boolean;
|
|
52
64
|
hiddenErrorMessage: boolean;
|
|
53
65
|
setRequiredMark: boolean;
|
|
54
|
-
}, {}
|
|
55
|
-
|
|
56
|
-
error: boolean;
|
|
57
|
-
}): any;
|
|
58
|
-
default?(_: {
|
|
59
|
-
error: boolean;
|
|
60
|
-
}): any;
|
|
61
|
-
trailing?(_: {
|
|
62
|
-
error: boolean;
|
|
63
|
-
}): any;
|
|
64
|
-
after?(_: {}): any;
|
|
65
|
-
}>;
|
|
66
|
+
}, {}>;
|
|
67
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
66
68
|
export default _default;
|
|
67
69
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
68
70
|
new (): {
|
|
@@ -5,7 +5,7 @@ export declare const elInputDateTypes: readonly ["date", "datetime-local", "time
|
|
|
5
5
|
export type ElInputDateType = (typeof elInputDateTypes)[number];
|
|
6
6
|
declare const _default: import('vue').DefineComponent<{
|
|
7
7
|
type: {
|
|
8
|
-
type: PropType<
|
|
8
|
+
type: PropType<ElInputDateType>;
|
|
9
9
|
default: string;
|
|
10
10
|
};
|
|
11
11
|
modelValue: {
|
|
@@ -61,7 +61,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
61
61
|
"update:readableString": (value: string) => void;
|
|
62
62
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
63
63
|
type: {
|
|
64
|
-
type: PropType<
|
|
64
|
+
type: PropType<ElInputDateType>;
|
|
65
65
|
default: string;
|
|
66
66
|
};
|
|
67
67
|
modelValue: {
|
|
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
16
16
|
default: boolean;
|
|
17
17
|
};
|
|
18
18
|
fileType: {
|
|
19
|
-
type: PropType<
|
|
19
|
+
type: PropType<ElInputFileType>;
|
|
20
20
|
default: string;
|
|
21
21
|
required: false;
|
|
22
22
|
};
|
|
@@ -71,7 +71,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
71
71
|
default: boolean;
|
|
72
72
|
};
|
|
73
73
|
fileType: {
|
|
74
|
-
type: PropType<
|
|
74
|
+
type: PropType<ElInputFileType>;
|
|
75
75
|
default: string;
|
|
76
76
|
required: false;
|
|
77
77
|
};
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
|
|
3
3
|
export declare const elRadioButtonSizes: readonly ["xs", "xxs"];
|
|
4
|
+
type ElRadioButtonSizes = (typeof elRadioButtonSizes)[number];
|
|
4
5
|
export declare const elRadioButtonColors: readonly ["primary", "secondary", "inactive"];
|
|
6
|
+
type ElRadioButtonColors = (typeof elRadioButtonColors)[number];
|
|
5
7
|
declare const _default: import('vue').DefineComponent<{
|
|
6
8
|
id: {
|
|
7
9
|
type: StringConstructor;
|
|
@@ -28,7 +30,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
28
30
|
required: true;
|
|
29
31
|
};
|
|
30
32
|
size: {
|
|
31
|
-
type: PropType<
|
|
33
|
+
type: PropType<ElRadioButtonSizes>;
|
|
32
34
|
default: string;
|
|
33
35
|
required: false;
|
|
34
36
|
};
|
|
@@ -41,7 +43,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
41
43
|
required: true;
|
|
42
44
|
};
|
|
43
45
|
color: {
|
|
44
|
-
type: PropType<
|
|
46
|
+
type: PropType<ElRadioButtonColors>;
|
|
45
47
|
required: false;
|
|
46
48
|
default: string;
|
|
47
49
|
};
|
|
@@ -73,7 +75,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
73
75
|
required: true;
|
|
74
76
|
};
|
|
75
77
|
size: {
|
|
76
|
-
type: PropType<
|
|
78
|
+
type: PropType<ElRadioButtonSizes>;
|
|
77
79
|
default: string;
|
|
78
80
|
required: false;
|
|
79
81
|
};
|
|
@@ -86,7 +88,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
86
88
|
required: true;
|
|
87
89
|
};
|
|
88
90
|
color: {
|
|
89
|
-
type: PropType<
|
|
91
|
+
type: PropType<ElRadioButtonColors>;
|
|
90
92
|
required: false;
|
|
91
93
|
default: string;
|
|
92
94
|
};
|