@davincihealthcare/elty-design-system-vue 1.47.0 → 1.47.2
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/ElVerticalTab.vue.d.ts +3 -3
- package/dist/forms/ElInputSearch.vue.d.ts +8 -6
- package/dist/index.js +3745 -3737
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +17 -17
- package/dist/index.umd.cjs.map +1 -1
- package/dist/table/ElServerSideTable.vue.d.ts +1 -4
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const elVerticalTabColors: readonly ["primary", "secondary"];
|
|
2
2
|
export type ElVerticalTabColors = (typeof elVerticalTabColors)[number];
|
|
3
|
-
export declare const elVerticalTabStatus: readonly ["default", "active"];
|
|
3
|
+
export declare const elVerticalTabStatus: readonly ["default", "hover", "active"];
|
|
4
4
|
export type ElVerticalTabStatus = (typeof elVerticalTabStatus)[number];
|
|
5
5
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
icon?: (Partial<{}> & Omit<{
|
|
@@ -60,7 +60,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
60
60
|
};
|
|
61
61
|
}>>, never>) | undefined;
|
|
62
62
|
color?: "primary" | "secondary" | undefined;
|
|
63
|
-
status?: "default" | "active" | undefined;
|
|
63
|
+
status?: "default" | "active" | "hover" | undefined;
|
|
64
64
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
65
65
|
icon?: (Partial<{}> & Omit<{
|
|
66
66
|
readonly name: import('./ElIcon.vue').IconNames;
|
|
@@ -119,7 +119,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
119
119
|
};
|
|
120
120
|
}>>, never>) | undefined;
|
|
121
121
|
color?: "primary" | "secondary" | undefined;
|
|
122
|
-
status?: "default" | "active" | undefined;
|
|
122
|
+
status?: "default" | "active" | "hover" | undefined;
|
|
123
123
|
}>>>, {}, {}>, {
|
|
124
124
|
"traling-slot"?(_: {}): any;
|
|
125
125
|
}>;
|
|
@@ -63,7 +63,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
63
63
|
type: PropType<boolean>;
|
|
64
64
|
};
|
|
65
65
|
}>>, never> | undefined;
|
|
66
|
-
readonly status?: "default" | "active" | undefined;
|
|
66
|
+
readonly status?: "default" | "active" | "hover" | undefined;
|
|
67
67
|
readonly secondaryRow?: string | undefined;
|
|
68
68
|
readonly tertiaryRow?: string | undefined;
|
|
69
69
|
readonly lineClamp?: 1 | 2 | undefined;
|
|
@@ -157,7 +157,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
157
157
|
type: PropType<"primary" | "secondary">;
|
|
158
158
|
};
|
|
159
159
|
status: {
|
|
160
|
-
type: PropType<"default" | "active">;
|
|
160
|
+
type: PropType<"default" | "active" | "hover">;
|
|
161
161
|
};
|
|
162
162
|
}>>, never>)[]>;
|
|
163
163
|
default: undefined;
|
|
@@ -228,6 +228,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
228
228
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
229
229
|
"update:modelValue": (...args: any[]) => void;
|
|
230
230
|
onResultClick: (...args: any[]) => void;
|
|
231
|
+
onResultHover: (...args: any[]) => void;
|
|
231
232
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
232
233
|
isOpen: {
|
|
233
234
|
required: true;
|
|
@@ -285,7 +286,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
285
286
|
type: PropType<boolean>;
|
|
286
287
|
};
|
|
287
288
|
}>>, never> | undefined;
|
|
288
|
-
readonly status?: "default" | "active" | undefined;
|
|
289
|
+
readonly status?: "default" | "active" | "hover" | undefined;
|
|
289
290
|
readonly secondaryRow?: string | undefined;
|
|
290
291
|
readonly tertiaryRow?: string | undefined;
|
|
291
292
|
readonly lineClamp?: 1 | 2 | undefined;
|
|
@@ -379,7 +380,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
379
380
|
type: PropType<"primary" | "secondary">;
|
|
380
381
|
};
|
|
381
382
|
status: {
|
|
382
|
-
type: PropType<"default" | "active">;
|
|
383
|
+
type: PropType<"default" | "active" | "hover">;
|
|
383
384
|
};
|
|
384
385
|
}>>, never>)[]>;
|
|
385
386
|
default: undefined;
|
|
@@ -450,6 +451,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
450
451
|
}>> & {
|
|
451
452
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
452
453
|
onOnResultClick?: ((...args: any[]) => any) | undefined;
|
|
454
|
+
onOnResultHover?: ((...args: any[]) => any) | undefined;
|
|
453
455
|
}, {
|
|
454
456
|
name: string;
|
|
455
457
|
disabled: boolean;
|
|
@@ -505,7 +507,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
505
507
|
type: PropType<boolean>;
|
|
506
508
|
};
|
|
507
509
|
}>>, never> | undefined;
|
|
508
|
-
readonly status?: "default" | "active" | undefined;
|
|
510
|
+
readonly status?: "default" | "active" | "hover" | undefined;
|
|
509
511
|
readonly secondaryRow?: string | undefined;
|
|
510
512
|
readonly tertiaryRow?: string | undefined;
|
|
511
513
|
readonly lineClamp?: 1 | 2 | undefined;
|
|
@@ -599,7 +601,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
599
601
|
type: PropType<"primary" | "secondary">;
|
|
600
602
|
};
|
|
601
603
|
status: {
|
|
602
|
-
type: PropType<"default" | "active">;
|
|
604
|
+
type: PropType<"default" | "active" | "hover">;
|
|
603
605
|
};
|
|
604
606
|
}>>, never>)[];
|
|
605
607
|
status: "default" | "filled" | "blank";
|