@davincihealthcare/elty-design-system-vue 1.47.2 → 1.48.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 +10 -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 +1366 -1353
- 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
|
@@ -2,16 +2,16 @@ export declare const elAccordionColors: readonly ["primary", "secondary"];
|
|
|
2
2
|
export type ElAccordionColor = (typeof elAccordionColors)[number];
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
label: string;
|
|
5
|
-
open?: boolean
|
|
6
|
-
color?:
|
|
5
|
+
open?: boolean;
|
|
6
|
+
color?: ElAccordionColor;
|
|
7
7
|
}>, {
|
|
8
8
|
color: string;
|
|
9
9
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
10
|
"update:open": (open?: boolean | undefined) => void;
|
|
11
11
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
12
|
label: string;
|
|
13
|
-
open?: boolean
|
|
14
|
-
color?:
|
|
13
|
+
open?: boolean;
|
|
14
|
+
color?: ElAccordionColor;
|
|
15
15
|
}>, {
|
|
16
16
|
color: string;
|
|
17
17
|
}>>> & {
|
|
@@ -30,9 +30,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
30
30
|
}>>> & {
|
|
31
31
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
32
32
|
}, {
|
|
33
|
-
color:
|
|
34
|
-
size:
|
|
35
|
-
status:
|
|
33
|
+
color: ElActionButtonColors;
|
|
34
|
+
size: ElActionButtonSizes;
|
|
35
|
+
status: ElActionButtonStatus;
|
|
36
36
|
}, {}>;
|
|
37
37
|
export default _default;
|
|
38
38
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
package/dist/ElAvatar.vue.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export declare const elAvatarSizes: readonly ["xxs", "xs", "sm", "md", "lg", "xl"];
|
|
2
2
|
export type ElAvatarSize = (typeof elAvatarSizes)[number];
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
picture?: string
|
|
4
|
+
picture?: string;
|
|
5
5
|
size: ElAvatarSize;
|
|
6
|
-
label?: string
|
|
6
|
+
label?: string;
|
|
7
7
|
}>, {
|
|
8
8
|
picture: undefined;
|
|
9
9
|
size: string;
|
|
10
10
|
label: undefined;
|
|
11
11
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
-
picture?: string
|
|
12
|
+
picture?: string;
|
|
13
13
|
size: ElAvatarSize;
|
|
14
|
-
label?: string
|
|
14
|
+
label?: string;
|
|
15
15
|
}>, {
|
|
16
16
|
picture: undefined;
|
|
17
17
|
size: string;
|
package/dist/ElBadge.vue.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const elBadgeColors: readonly ["primary", "secondary", "red"];
|
|
2
2
|
export type ElBadgeColors = (typeof elBadgeColors)[number];
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
value?: string
|
|
4
|
+
value?: string;
|
|
5
5
|
color: ElBadgeColors;
|
|
6
6
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
-
value?: string
|
|
7
|
+
value?: string;
|
|
8
8
|
color: ElBadgeColors;
|
|
9
9
|
}>>>, {}, {}>;
|
|
10
10
|
export default _default;
|
package/dist/ElButton.vue.d.ts
CHANGED
|
@@ -6,18 +6,18 @@ export type ElButtonSize = (typeof elButtonSizes)[number];
|
|
|
6
6
|
export declare const elButtonVariants: readonly ["primary", "secondary", "tertiary"];
|
|
7
7
|
export type ElButtonVariant = (typeof elButtonVariants)[number];
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
-
disabled?: boolean
|
|
10
|
-
dark?: boolean
|
|
11
|
-
loading?: boolean
|
|
12
|
-
icon?: ElIconProps
|
|
13
|
-
iconRight?: boolean
|
|
14
|
-
error?: boolean
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
dark?: boolean;
|
|
11
|
+
loading?: boolean;
|
|
12
|
+
icon?: ElIconProps;
|
|
13
|
+
iconRight?: boolean;
|
|
14
|
+
error?: boolean;
|
|
15
15
|
label: string;
|
|
16
|
-
size?:
|
|
17
|
-
variant?:
|
|
18
|
-
type?: ButtonHTMLAttributes[
|
|
19
|
-
loadOnClick?: boolean
|
|
20
|
-
onClick?: (() => unknown) | (() => Promise<unknown>)
|
|
16
|
+
size?: ElButtonSize;
|
|
17
|
+
variant?: ElButtonVariant;
|
|
18
|
+
type?: ButtonHTMLAttributes["type"];
|
|
19
|
+
loadOnClick?: boolean;
|
|
20
|
+
onClick?: (() => unknown) | (() => Promise<unknown>);
|
|
21
21
|
}>, {
|
|
22
22
|
disabled: boolean;
|
|
23
23
|
dark: boolean;
|
|
@@ -31,18 +31,18 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
31
31
|
loadOnClick: boolean;
|
|
32
32
|
onClick: undefined;
|
|
33
33
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
34
|
-
disabled?: boolean
|
|
35
|
-
dark?: boolean
|
|
36
|
-
loading?: boolean
|
|
37
|
-
icon?: ElIconProps
|
|
38
|
-
iconRight?: boolean
|
|
39
|
-
error?: boolean
|
|
34
|
+
disabled?: boolean;
|
|
35
|
+
dark?: boolean;
|
|
36
|
+
loading?: boolean;
|
|
37
|
+
icon?: ElIconProps;
|
|
38
|
+
iconRight?: boolean;
|
|
39
|
+
error?: boolean;
|
|
40
40
|
label: string;
|
|
41
|
-
size?:
|
|
42
|
-
variant?:
|
|
43
|
-
type?: ButtonHTMLAttributes[
|
|
44
|
-
loadOnClick?: boolean
|
|
45
|
-
onClick?: (() => unknown) | (() => Promise<unknown>)
|
|
41
|
+
size?: ElButtonSize;
|
|
42
|
+
variant?: ElButtonVariant;
|
|
43
|
+
type?: ButtonHTMLAttributes["type"];
|
|
44
|
+
loadOnClick?: boolean;
|
|
45
|
+
onClick?: (() => unknown) | (() => Promise<unknown>);
|
|
46
46
|
}>, {
|
|
47
47
|
disabled: boolean;
|
|
48
48
|
dark: boolean;
|
|
@@ -3,14 +3,14 @@ export type ElCalendarCardColor = (typeof elCalendarCardColors)[number];
|
|
|
3
3
|
export declare const elCalendarCardStatuses: readonly ["confirmed", "to-be-confirmed", "past"];
|
|
4
4
|
export type ElCalendarCardStatus = (typeof elCalendarCardStatuses)[number];
|
|
5
5
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
-
height?: number
|
|
6
|
+
height?: number;
|
|
7
7
|
color: ElCalendarCardColor;
|
|
8
|
-
status?:
|
|
9
|
-
primaryRow?: string
|
|
10
|
-
secondaryRow?: string
|
|
11
|
-
tertiaryRow?: string
|
|
12
|
-
horizontalPaddingLeft?: boolean
|
|
13
|
-
cursor?: "default" | "pointer"
|
|
8
|
+
status?: ElCalendarCardStatus;
|
|
9
|
+
primaryRow?: string;
|
|
10
|
+
secondaryRow?: string;
|
|
11
|
+
tertiaryRow?: string;
|
|
12
|
+
horizontalPaddingLeft?: boolean;
|
|
13
|
+
cursor?: "default" | "pointer";
|
|
14
14
|
}>, {
|
|
15
15
|
height: number;
|
|
16
16
|
color: string;
|
|
@@ -22,14 +22,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
22
22
|
horizontalPaddingLeft: boolean;
|
|
23
23
|
cursor: string;
|
|
24
24
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
25
|
-
height?: number
|
|
25
|
+
height?: number;
|
|
26
26
|
color: ElCalendarCardColor;
|
|
27
|
-
status?:
|
|
28
|
-
primaryRow?: string
|
|
29
|
-
secondaryRow?: string
|
|
30
|
-
tertiaryRow?: string
|
|
31
|
-
horizontalPaddingLeft?: boolean
|
|
32
|
-
cursor?: "default" | "pointer"
|
|
27
|
+
status?: ElCalendarCardStatus;
|
|
28
|
+
primaryRow?: string;
|
|
29
|
+
secondaryRow?: string;
|
|
30
|
+
tertiaryRow?: string;
|
|
31
|
+
horizontalPaddingLeft?: boolean;
|
|
32
|
+
cursor?: "default" | "pointer";
|
|
33
33
|
}>, {
|
|
34
34
|
height: number;
|
|
35
35
|
color: string;
|
|
@@ -48,7 +48,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
48
48
|
secondaryRow: string;
|
|
49
49
|
tertiaryRow: string;
|
|
50
50
|
horizontalPaddingLeft: boolean;
|
|
51
|
-
cursor:
|
|
51
|
+
cursor: "default" | "pointer";
|
|
52
52
|
}, {}>;
|
|
53
53
|
export default _default;
|
|
54
54
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -3,20 +3,20 @@ export type ElCalendarCellColor = (typeof elCalendarCellColors)[number];
|
|
|
3
3
|
export declare const elCalendarCellAvailabilities: readonly ["not-available", "for-doctors", "for-patients"];
|
|
4
4
|
export type ElCalendarCellAvailability = (typeof elCalendarCellAvailabilities)[number];
|
|
5
5
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
-
height?: number
|
|
7
|
-
color?:
|
|
8
|
-
availability?:
|
|
9
|
-
label?: string
|
|
6
|
+
height?: number;
|
|
7
|
+
color?: ElCalendarCellColor;
|
|
8
|
+
availability?: ElCalendarCellAvailability;
|
|
9
|
+
label?: string;
|
|
10
10
|
}>, {
|
|
11
11
|
height: number;
|
|
12
12
|
color: undefined;
|
|
13
13
|
availability: string;
|
|
14
14
|
label: undefined;
|
|
15
15
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
16
|
-
height?: number
|
|
17
|
-
color?:
|
|
18
|
-
availability?:
|
|
19
|
-
label?: string
|
|
16
|
+
height?: number;
|
|
17
|
+
color?: ElCalendarCellColor;
|
|
18
|
+
availability?: ElCalendarCellAvailability;
|
|
19
|
+
label?: string;
|
|
20
20
|
}>, {
|
|
21
21
|
height: number;
|
|
22
22
|
color: undefined;
|
|
@@ -2,14 +2,14 @@ export declare const elClipToAnchorPositions: readonly ["bottom-left", "bottom",
|
|
|
2
2
|
export type ElClipToAnchorPosition = (typeof elClipToAnchorPositions)[number];
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
anchor: HTMLElement;
|
|
5
|
-
matchAnchorWidth?: boolean
|
|
5
|
+
matchAnchorWidth?: boolean;
|
|
6
6
|
position: ElClipToAnchorPosition;
|
|
7
|
-
minWidth?: number
|
|
7
|
+
minWidth?: number;
|
|
8
8
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
9
|
anchor: HTMLElement;
|
|
10
|
-
matchAnchorWidth?: boolean
|
|
10
|
+
matchAnchorWidth?: boolean;
|
|
11
11
|
position: ElClipToAnchorPosition;
|
|
12
|
-
minWidth?: number
|
|
12
|
+
minWidth?: number;
|
|
13
13
|
}>>>, {}, {}>, {
|
|
14
14
|
default?(_: {
|
|
15
15
|
isVisible: boolean;
|
|
@@ -1,65 +1,29 @@
|
|
|
1
|
+
import { default as ElTabGroup } from './ElTabGroup.vue';
|
|
2
|
+
|
|
1
3
|
export declare const elContainerTemplateVariants: readonly ["table", "drawer"];
|
|
2
4
|
export type ElContainerTemplateVariant = (typeof elContainerTemplateVariants)[number];
|
|
3
5
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
6
|
title: string;
|
|
5
|
-
description?: string
|
|
6
|
-
tabs?:
|
|
7
|
-
|
|
8
|
-
readonly tabs: import('./ElTabGroup.vue').ElTab[];
|
|
9
|
-
readonly color?: "primary" | "secondary" | undefined;
|
|
10
|
-
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
11
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
12
|
-
modelValue: {
|
|
13
|
-
type: import('vue').PropType<string>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
tabs: {
|
|
17
|
-
type: import('vue').PropType<import('./ElTabGroup.vue').ElTab[]>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
color: {
|
|
21
|
-
type: import('vue').PropType<"primary" | "secondary">;
|
|
22
|
-
};
|
|
23
|
-
}>> & {
|
|
24
|
-
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
25
|
-
}, never>) | undefined;
|
|
26
|
-
selectedTab?: string | undefined;
|
|
7
|
+
description?: string;
|
|
8
|
+
tabs?: InstanceType<typeof ElTabGroup>["$props"];
|
|
9
|
+
selectedTab?: string;
|
|
27
10
|
variant: {
|
|
28
|
-
name:
|
|
11
|
+
name: "table";
|
|
29
12
|
} | {
|
|
30
|
-
name:
|
|
13
|
+
name: "drawer";
|
|
31
14
|
drawerTitle: string;
|
|
32
15
|
};
|
|
33
16
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
17
|
onTabChange: (tab: string) => void;
|
|
35
18
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
36
19
|
title: string;
|
|
37
|
-
description?: string
|
|
38
|
-
tabs?:
|
|
39
|
-
|
|
40
|
-
readonly tabs: import('./ElTabGroup.vue').ElTab[];
|
|
41
|
-
readonly color?: "primary" | "secondary" | undefined;
|
|
42
|
-
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
43
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
44
|
-
modelValue: {
|
|
45
|
-
type: import('vue').PropType<string>;
|
|
46
|
-
required: true;
|
|
47
|
-
};
|
|
48
|
-
tabs: {
|
|
49
|
-
type: import('vue').PropType<import('./ElTabGroup.vue').ElTab[]>;
|
|
50
|
-
required: true;
|
|
51
|
-
};
|
|
52
|
-
color: {
|
|
53
|
-
type: import('vue').PropType<"primary" | "secondary">;
|
|
54
|
-
};
|
|
55
|
-
}>> & {
|
|
56
|
-
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
57
|
-
}, never>) | undefined;
|
|
58
|
-
selectedTab?: string | undefined;
|
|
20
|
+
description?: string;
|
|
21
|
+
tabs?: InstanceType<typeof ElTabGroup>["$props"];
|
|
22
|
+
selectedTab?: string;
|
|
59
23
|
variant: {
|
|
60
|
-
name:
|
|
24
|
+
name: "table";
|
|
61
25
|
} | {
|
|
62
|
-
name:
|
|
26
|
+
name: "drawer";
|
|
63
27
|
drawerTitle: string;
|
|
64
28
|
};
|
|
65
29
|
}>>> & {
|
package/dist/ElDrawer.vue.d.ts
CHANGED
|
@@ -1,26 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
})
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { default as ElInputText } from './forms/ElInputText.vue';
|
|
2
|
+
import { default as ElTabGroup } from './ElTabGroup.vue';
|
|
3
|
+
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
+
headline?: string;
|
|
9
|
+
action?: Pick<InstanceType<(typeof ElTabGroup)["$props"]>, "label"> & {
|
|
10
|
+
onClick?: () => void;
|
|
11
|
+
};
|
|
12
|
+
tabs?: InstanceType<(typeof ElTabGroup)["$props"]>;
|
|
13
|
+
input?: InstanceType<(typeof ElInputText)["$props"]>;
|
|
8
14
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
15
|
"update:tabs": (tabs: any) => void;
|
|
10
16
|
"update:input": (tabs: any) => void;
|
|
11
17
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
-
headline?: string
|
|
13
|
-
action?:
|
|
14
|
-
onClick?: (
|
|
15
|
-
}
|
|
16
|
-
tabs?:
|
|
17
|
-
input?:
|
|
18
|
+
headline?: string;
|
|
19
|
+
action?: Pick<InstanceType<(typeof ElTabGroup)["$props"]>, "label"> & {
|
|
20
|
+
onClick?: () => void;
|
|
21
|
+
};
|
|
22
|
+
tabs?: InstanceType<(typeof ElTabGroup)["$props"]>;
|
|
23
|
+
input?: InstanceType<(typeof ElInputText)["$props"]>;
|
|
18
24
|
}>>> & {
|
|
19
25
|
"onUpdate:tabs"?: ((tabs: any) => any) | undefined;
|
|
20
26
|
"onUpdate:input"?: ((tabs: any) => any) | undefined;
|
|
21
|
-
}, {}, {}
|
|
22
|
-
|
|
23
|
-
}>;
|
|
27
|
+
}, {}, {}>;
|
|
28
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
24
29
|
export default _default;
|
|
25
30
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
31
|
type __VLS_TypePropsToRuntimeProps<T> = {
|