@muenchen/muc-patternlab-vue 1.8.1 → 1.9.1
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/assets/temporary/custom-style.css +1 -1
- package/dist/components/Banner/MucBanner.stories.d.ts +3 -3
- package/dist/components/Banner/MucBanner.vue.d.ts +16 -14
- package/dist/components/BuisnessHours/BusinessHourType.d.ts +25 -0
- package/dist/components/BuisnessHours/BusinessHours.stories.d.ts +116 -0
- package/dist/components/Button/MucButton.stories.d.ts +29 -3
- package/dist/components/Button/MucButton.vue.d.ts +35 -18
- package/dist/components/Callout/MucCallout.stories.d.ts +3 -3
- package/dist/components/Callout/MucCallout.vue.d.ts +24 -22
- package/dist/components/Card/MucCard.stories.d.ts +6 -6
- package/dist/components/Card/MucCard.vue.d.ts +14 -12
- package/dist/components/Card/MucCardContainer.stories.d.ts +12 -12
- package/dist/components/Card/MucCardContainer.vue.d.ts +4 -2
- package/dist/components/Comment/MucComment.stories.d.ts +3 -3
- package/dist/components/Comment/MucComment.vue.d.ts +32 -30
- package/dist/components/Comment/MucCommentText.stories.d.ts +93 -0
- package/dist/components/Comment/MucCommentText.vue.d.ts +10 -10
- package/dist/components/Icon/MucIcon.stories.d.ts +43 -0
- package/dist/components/Icon/MucIcon.vue.d.ts +29 -0
- package/dist/components/Icon/index.d.ts +3 -0
- package/dist/components/Intro/MucIntro.stories.d.ts +3 -3
- package/dist/components/Intro/MucIntro.vue.d.ts +14 -12
- package/dist/components/index.d.ts +2 -1
- package/dist/muc-patternlab-vue.es.js +168 -146
- package/dist/style.css +1 -1
- package/package.json +5 -6
- package/src/components/BuisnessHours/BusinessHourType.ts +28 -0
- package/src/components/BuisnessHours/BusinessHours.stories.ts +108 -0
- package/src/components/BuisnessHours/MucBusinessHours.vue +166 -0
- package/src/components/Button/MucButton.stories.ts +8 -0
- package/src/components/Button/MucButton.vue +14 -3
- package/src/components/Card/MucCard.stories.ts +1 -1
- package/src/components/Card/MucCardContainer.stories.ts +1 -1
- package/src/components/Card/MucCardContainer.vue +1 -1
- package/src/components/Comment/MucComment.stories.ts +2 -3
- package/src/components/Comment/MucCommentText.stories.ts +38 -0
- package/src/components/Comment/MucCommentText.vue +15 -7
- package/src/components/Icon/MucIcon.stories.ts +35 -0
- package/src/components/Icon/MucIcon.vue +23 -0
- package/src/components/Icon/index.ts +3 -0
- package/src/components/Intro/MucIntro.vue +10 -9
- package/src/components/index.ts +2 -0
- package/dist/types/components/Banner/MucBanner.stories.d.ts +0 -76
- package/dist/types/components/Banner/MucBanner.vue.d.ts +0 -52
- package/dist/types/components/Banner/index.d.ts +0 -2
- package/dist/types/components/Button/MucButton.stories.d.ts +0 -132
- package/dist/types/components/Button/MucButton.vue.d.ts +0 -78
- package/dist/types/components/Button/index.d.ts +0 -2
- package/dist/types/components/Callout/MucCallout.stories.d.ts +0 -89
- package/dist/types/components/Callout/MucCallout.vue.d.ts +0 -71
- package/dist/types/components/Callout/index.d.ts +0 -2
- package/dist/types/components/Card/MucCard.stories.d.ts +0 -165
- package/dist/types/components/Card/MucCard.vue.d.ts +0 -44
- package/dist/types/components/Card/MucCardContainer.stories.d.ts +0 -148
- package/dist/types/components/Card/MucCardContainer.vue.d.ts +0 -17
- package/dist/types/components/Card/index.d.ts +0 -3
- package/dist/types/components/Comment/CommentType.d.ts +0 -2
- package/dist/types/components/Comment/MucComment.stories.d.ts +0 -106
- package/dist/types/components/Comment/MucComment.vue.d.ts +0 -103
- package/dist/types/components/Comment/MucCommentText.vue.d.ts +0 -47
- package/dist/types/components/Comment/index.d.ts +0 -3
- package/dist/types/components/Intro/MucIntro.stories.d.ts +0 -97
- package/dist/types/components/Intro/MucIntro.vue.d.ts +0 -52
- package/dist/types/components/Intro/index.d.ts +0 -2
- package/dist/types/components/index.d.ts +0 -7
- package/dist/types/index.d.ts +0 -7
|
@@ -27,9 +27,9 @@ declare const _default: {
|
|
|
27
27
|
}>>, {}, {}, {}, {}, {
|
|
28
28
|
type: "info" | "warning" | "emergency";
|
|
29
29
|
}>;
|
|
30
|
-
__isFragment?:
|
|
31
|
-
__isTeleport?:
|
|
32
|
-
__isSuspense?:
|
|
30
|
+
__isFragment?: never;
|
|
31
|
+
__isTeleport?: never;
|
|
32
|
+
__isSuspense?: never;
|
|
33
33
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
34
34
|
type: {
|
|
35
35
|
type: import('vue').PropType<"info" | "warning" | "emergency">;
|
|
@@ -1,31 +1,33 @@
|
|
|
1
1
|
type bannerType = "info" | "warning" | "emergency";
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): Readonly<{
|
|
3
|
+
/**
|
|
4
|
+
* Text-content of the banner.
|
|
5
|
+
*/
|
|
6
|
+
default(): any;
|
|
7
|
+
}> & {
|
|
8
|
+
/**
|
|
9
|
+
* Text-content of the banner.
|
|
10
|
+
*/
|
|
11
|
+
default(): any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
14
|
/**
|
|
4
15
|
* Changes the style of the banner. Available types are `info`, `warning` and `emergency`.
|
|
5
16
|
*/
|
|
6
|
-
type?: bannerType
|
|
17
|
+
type?: bannerType;
|
|
7
18
|
}>, {
|
|
8
19
|
type: string;
|
|
9
20
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
21
|
/**
|
|
11
22
|
* Changes the style of the banner. Available types are `info`, `warning` and `emergency`.
|
|
12
23
|
*/
|
|
13
|
-
type?: bannerType
|
|
24
|
+
type?: bannerType;
|
|
14
25
|
}>, {
|
|
15
26
|
type: string;
|
|
16
27
|
}>>>, {
|
|
17
28
|
type: bannerType;
|
|
18
|
-
}, {}
|
|
19
|
-
|
|
20
|
-
* Text-content of the banner.
|
|
21
|
-
*/
|
|
22
|
-
default(): any;
|
|
23
|
-
}> & {
|
|
24
|
-
/**
|
|
25
|
-
* Text-content of the banner.
|
|
26
|
-
*/
|
|
27
|
-
default(): any;
|
|
28
|
-
}>;
|
|
29
|
+
}, {}>;
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
29
31
|
export default _default;
|
|
30
32
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
31
33
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shorthand notation of all seven days in german.
|
|
3
|
+
*
|
|
4
|
+
* @typedef {"Mo" | "Di" | "Mi" | "Do" | "Fr" | "Sa" | "So"} WeekDays
|
|
5
|
+
*/
|
|
6
|
+
type WeekDays = "Mo" | "Di" | "Mi" | "Do" | "Fr" | "Sa" | "So";
|
|
7
|
+
/**
|
|
8
|
+
* @typedef {Object} OpeningHour
|
|
9
|
+
* @property {string} from - The start time of the opening period (in 'HH:mm' format).
|
|
10
|
+
* @property {string} to - The end time of the opening period (in 'HH:mm' format).
|
|
11
|
+
*/
|
|
12
|
+
type OpeningHour = {
|
|
13
|
+
from: string;
|
|
14
|
+
to: string;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* @typedef {Object} BusinessHourType
|
|
18
|
+
* @property {WeekDays} weekDay - The day of the week for which the opening hours apply.
|
|
19
|
+
* @property {OpeningHour[]} openingHours - A list of opening hours for the specified day of the week.
|
|
20
|
+
*/
|
|
21
|
+
type BusinessHourType = {
|
|
22
|
+
weekDay: WeekDays;
|
|
23
|
+
openingHours: OpeningHour[];
|
|
24
|
+
};
|
|
25
|
+
export type { BusinessHourType, OpeningHour, WeekDays };
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
component: {
|
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
4
|
+
icon: {
|
|
5
|
+
type: import('vue').PropType<string>;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
businessHours: {
|
|
9
|
+
type: import('vue').PropType<import('./BusinessHourType').BusinessHourType[]>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
toggleable: {
|
|
13
|
+
type: import('vue').PropType<boolean>;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
icon: {
|
|
18
|
+
type: import('vue').PropType<string>;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
businessHours: {
|
|
22
|
+
type: import('vue').PropType<import('./BusinessHourType').BusinessHourType[]>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
toggleable: {
|
|
26
|
+
type: import('vue').PropType<boolean>;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>>, {
|
|
30
|
+
icon: string;
|
|
31
|
+
toggleable: boolean;
|
|
32
|
+
}, true, {}, {}, {
|
|
33
|
+
P: {};
|
|
34
|
+
B: {};
|
|
35
|
+
D: {};
|
|
36
|
+
C: {};
|
|
37
|
+
M: {};
|
|
38
|
+
Defaults: {};
|
|
39
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
40
|
+
icon: {
|
|
41
|
+
type: import('vue').PropType<string>;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
businessHours: {
|
|
45
|
+
type: import('vue').PropType<import('./BusinessHourType').BusinessHourType[]>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
toggleable: {
|
|
49
|
+
type: import('vue').PropType<boolean>;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
}>>, {}, {}, {}, {}, {
|
|
53
|
+
icon: string;
|
|
54
|
+
toggleable: boolean;
|
|
55
|
+
}>;
|
|
56
|
+
__isFragment?: never;
|
|
57
|
+
__isTeleport?: never;
|
|
58
|
+
__isSuspense?: never;
|
|
59
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
60
|
+
icon: {
|
|
61
|
+
type: import('vue').PropType<string>;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
businessHours: {
|
|
65
|
+
type: import('vue').PropType<import('./BusinessHourType').BusinessHourType[]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
toggleable: {
|
|
69
|
+
type: import('vue').PropType<boolean>;
|
|
70
|
+
default: boolean;
|
|
71
|
+
};
|
|
72
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
73
|
+
icon: string;
|
|
74
|
+
toggleable: boolean;
|
|
75
|
+
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
76
|
+
$slots: Readonly<{
|
|
77
|
+
hint(): any;
|
|
78
|
+
}> & {
|
|
79
|
+
hint(): any;
|
|
80
|
+
};
|
|
81
|
+
});
|
|
82
|
+
title: string;
|
|
83
|
+
tags: string[];
|
|
84
|
+
parameters: {
|
|
85
|
+
docs: {
|
|
86
|
+
description: {
|
|
87
|
+
component: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
export default _default;
|
|
93
|
+
export declare const Default: {
|
|
94
|
+
args: {
|
|
95
|
+
businessHours: {
|
|
96
|
+
weekDay: string;
|
|
97
|
+
openingHours: {
|
|
98
|
+
from: string;
|
|
99
|
+
to: string;
|
|
100
|
+
}[];
|
|
101
|
+
}[];
|
|
102
|
+
toggleable: boolean;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
export declare const Fixed: {
|
|
106
|
+
args: {
|
|
107
|
+
toggleable: boolean;
|
|
108
|
+
businessHours: {
|
|
109
|
+
weekDay: string;
|
|
110
|
+
openingHours: {
|
|
111
|
+
from: string;
|
|
112
|
+
to: string;
|
|
113
|
+
}[];
|
|
114
|
+
}[];
|
|
115
|
+
};
|
|
116
|
+
};
|
|
@@ -12,6 +12,10 @@ declare const _default: {
|
|
|
12
12
|
type: import('vue').PropType<boolean>;
|
|
13
13
|
default: boolean;
|
|
14
14
|
};
|
|
15
|
+
iconAnimated: {
|
|
16
|
+
type: import('vue').PropType<boolean>;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
15
19
|
}>> & {
|
|
16
20
|
onClick?: (() => any) | undefined;
|
|
17
21
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -28,11 +32,16 @@ declare const _default: {
|
|
|
28
32
|
type: import('vue').PropType<boolean>;
|
|
29
33
|
default: boolean;
|
|
30
34
|
};
|
|
35
|
+
iconAnimated: {
|
|
36
|
+
type: import('vue').PropType<boolean>;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
31
39
|
}>> & {
|
|
32
40
|
onClick?: (() => any) | undefined;
|
|
33
41
|
}, {
|
|
34
42
|
variant: "primary" | "secondary" | "ghost";
|
|
35
43
|
disabled: boolean;
|
|
44
|
+
iconAnimated: boolean;
|
|
36
45
|
}, true, {}, {}, {
|
|
37
46
|
P: {};
|
|
38
47
|
B: {};
|
|
@@ -52,15 +61,20 @@ declare const _default: {
|
|
|
52
61
|
type: import('vue').PropType<boolean>;
|
|
53
62
|
default: boolean;
|
|
54
63
|
};
|
|
64
|
+
iconAnimated: {
|
|
65
|
+
type: import('vue').PropType<boolean>;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
55
68
|
}>> & {
|
|
56
69
|
onClick?: (() => any) | undefined;
|
|
57
70
|
}, {}, {}, {}, {}, {
|
|
58
71
|
variant: "primary" | "secondary" | "ghost";
|
|
59
72
|
disabled: boolean;
|
|
73
|
+
iconAnimated: boolean;
|
|
60
74
|
}>;
|
|
61
|
-
__isFragment?:
|
|
62
|
-
__isTeleport?:
|
|
63
|
-
__isSuspense?:
|
|
75
|
+
__isFragment?: never;
|
|
76
|
+
__isTeleport?: never;
|
|
77
|
+
__isSuspense?: never;
|
|
64
78
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
65
79
|
icon: {
|
|
66
80
|
type: import('vue').PropType<string>;
|
|
@@ -73,6 +87,10 @@ declare const _default: {
|
|
|
73
87
|
type: import('vue').PropType<boolean>;
|
|
74
88
|
default: boolean;
|
|
75
89
|
};
|
|
90
|
+
iconAnimated: {
|
|
91
|
+
type: import('vue').PropType<boolean>;
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
76
94
|
}>> & {
|
|
77
95
|
onClick?: (() => any) | undefined;
|
|
78
96
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -80,6 +98,7 @@ declare const _default: {
|
|
|
80
98
|
}, string, {
|
|
81
99
|
variant: "primary" | "secondary" | "ghost";
|
|
82
100
|
disabled: boolean;
|
|
101
|
+
iconAnimated: boolean;
|
|
83
102
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
84
103
|
$slots: Readonly<{
|
|
85
104
|
default(): any;
|
|
@@ -130,3 +149,10 @@ export declare const Icon: {
|
|
|
130
149
|
icon: string;
|
|
131
150
|
};
|
|
132
151
|
};
|
|
152
|
+
export declare const IconAnimated: {
|
|
153
|
+
args: {
|
|
154
|
+
default: string;
|
|
155
|
+
icon: string;
|
|
156
|
+
iconAnimated: boolean;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
@@ -1,22 +1,40 @@
|
|
|
1
1
|
type buttonType = "primary" | "secondary" | "ghost";
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): Readonly<{
|
|
3
|
+
/**
|
|
4
|
+
* Display content inside the button.
|
|
5
|
+
*/
|
|
6
|
+
default(): any;
|
|
7
|
+
}> & {
|
|
8
|
+
/**
|
|
9
|
+
* Display content inside the button.
|
|
10
|
+
*/
|
|
11
|
+
default(): any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
14
|
/**
|
|
4
15
|
* The variant prop gives you easy access to several different button styles.
|
|
5
16
|
*
|
|
6
17
|
* Available are `primary`, `secondary` and `ghost`.
|
|
7
18
|
*/
|
|
8
|
-
variant?: buttonType
|
|
19
|
+
variant?: buttonType;
|
|
9
20
|
/**
|
|
10
21
|
* Let`s you indicate that the button is not currently interactive or clickable.
|
|
11
22
|
*/
|
|
12
|
-
disabled?: boolean
|
|
23
|
+
disabled?: boolean;
|
|
13
24
|
/**
|
|
14
25
|
* Choose an icon to be appended behind the slot. No icon will be placed if the prop is left empty.
|
|
15
26
|
*/
|
|
16
|
-
icon?: string
|
|
27
|
+
icon?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Wether the Icon should be animated on hover (slide-right) or not.
|
|
30
|
+
*
|
|
31
|
+
* Default is `false`
|
|
32
|
+
*/
|
|
33
|
+
iconAnimated?: boolean;
|
|
17
34
|
}>, {
|
|
18
35
|
variant: string;
|
|
19
36
|
disabled: boolean;
|
|
37
|
+
iconAnimated: boolean;
|
|
20
38
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
39
|
click: () => void;
|
|
22
40
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -25,34 +43,33 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
25
43
|
*
|
|
26
44
|
* Available are `primary`, `secondary` and `ghost`.
|
|
27
45
|
*/
|
|
28
|
-
variant?: buttonType
|
|
46
|
+
variant?: buttonType;
|
|
29
47
|
/**
|
|
30
48
|
* Let`s you indicate that the button is not currently interactive or clickable.
|
|
31
49
|
*/
|
|
32
|
-
disabled?: boolean
|
|
50
|
+
disabled?: boolean;
|
|
33
51
|
/**
|
|
34
52
|
* Choose an icon to be appended behind the slot. No icon will be placed if the prop is left empty.
|
|
35
53
|
*/
|
|
36
|
-
icon?: string
|
|
54
|
+
icon?: string;
|
|
55
|
+
/**
|
|
56
|
+
* Wether the Icon should be animated on hover (slide-right) or not.
|
|
57
|
+
*
|
|
58
|
+
* Default is `false`
|
|
59
|
+
*/
|
|
60
|
+
iconAnimated?: boolean;
|
|
37
61
|
}>, {
|
|
38
62
|
variant: string;
|
|
39
63
|
disabled: boolean;
|
|
64
|
+
iconAnimated: boolean;
|
|
40
65
|
}>>> & {
|
|
41
66
|
onClick?: (() => any) | undefined;
|
|
42
67
|
}, {
|
|
43
68
|
variant: buttonType;
|
|
44
69
|
disabled: boolean;
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
*/
|
|
49
|
-
default(): any;
|
|
50
|
-
}> & {
|
|
51
|
-
/**
|
|
52
|
-
* Display content inside the button.
|
|
53
|
-
*/
|
|
54
|
-
default(): any;
|
|
55
|
-
}>;
|
|
70
|
+
iconAnimated: boolean;
|
|
71
|
+
}, {}>;
|
|
72
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
56
73
|
export default _default;
|
|
57
74
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
58
75
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -27,9 +27,9 @@ declare const _default: {
|
|
|
27
27
|
}>>, {}, {}, {}, {}, {
|
|
28
28
|
type: "info" | "warning" | "success" | "error";
|
|
29
29
|
}>;
|
|
30
|
-
__isFragment?:
|
|
31
|
-
__isTeleport?:
|
|
32
|
-
__isSuspense?:
|
|
30
|
+
__isFragment?: never;
|
|
31
|
+
__isTeleport?: never;
|
|
32
|
+
__isSuspense?: never;
|
|
33
33
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
34
34
|
type: {
|
|
35
35
|
type: import('vue').PropType<"info" | "warning" | "success" | "error">;
|
|
@@ -1,25 +1,5 @@
|
|
|
1
1
|
type calloutType = "info" | "warning" | "success" | "error";
|
|
2
|
-
declare
|
|
3
|
-
/**
|
|
4
|
-
* Type of the callout, default is `info`.
|
|
5
|
-
*
|
|
6
|
-
* Available are `info`, `warning`, `success` and `error`.
|
|
7
|
-
*/
|
|
8
|
-
type?: calloutType | undefined;
|
|
9
|
-
}>, {
|
|
10
|
-
type: string;
|
|
11
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
-
/**
|
|
13
|
-
* Type of the callout, default is `info`.
|
|
14
|
-
*
|
|
15
|
-
* Available are `info`, `warning`, `success` and `error`.
|
|
16
|
-
*/
|
|
17
|
-
type?: calloutType | undefined;
|
|
18
|
-
}>, {
|
|
19
|
-
type: string;
|
|
20
|
-
}>>>, {
|
|
21
|
-
type: calloutType;
|
|
22
|
-
}, {}>, Readonly<{
|
|
2
|
+
declare function __VLS_template(): Readonly<{
|
|
23
3
|
/**
|
|
24
4
|
* Icon shown above the callout. Defaults to icons matching the type.
|
|
25
5
|
*/
|
|
@@ -45,7 +25,29 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
45
25
|
* Content beneath the heading shown as text.
|
|
46
26
|
*/
|
|
47
27
|
content(): any;
|
|
48
|
-
}
|
|
28
|
+
};
|
|
29
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
30
|
+
/**
|
|
31
|
+
* Type of the callout, default is `info`.
|
|
32
|
+
*
|
|
33
|
+
* Available are `info`, `warning`, `success` and `error`.
|
|
34
|
+
*/
|
|
35
|
+
type?: calloutType;
|
|
36
|
+
}>, {
|
|
37
|
+
type: string;
|
|
38
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
39
|
+
/**
|
|
40
|
+
* Type of the callout, default is `info`.
|
|
41
|
+
*
|
|
42
|
+
* Available are `info`, `warning`, `success` and `error`.
|
|
43
|
+
*/
|
|
44
|
+
type?: calloutType;
|
|
45
|
+
}>, {
|
|
46
|
+
type: string;
|
|
47
|
+
}>>>, {
|
|
48
|
+
type: calloutType;
|
|
49
|
+
}, {}>;
|
|
50
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
49
51
|
export default _default;
|
|
50
52
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
51
53
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -43,9 +43,9 @@ declare const _default: {
|
|
|
43
43
|
}>> & {
|
|
44
44
|
onClick?: ((click: Event) => any) | undefined;
|
|
45
45
|
}, {}, {}, {}, {}, {}>;
|
|
46
|
-
__isFragment?:
|
|
47
|
-
__isTeleport?:
|
|
48
|
-
__isSuspense?:
|
|
46
|
+
__isFragment?: never;
|
|
47
|
+
__isTeleport?: never;
|
|
48
|
+
__isSuspense?: never;
|
|
49
49
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
50
50
|
title: {
|
|
51
51
|
type: import('vue').PropType<string>;
|
|
@@ -135,9 +135,9 @@ export declare const WithHeaderPrefix: () => {
|
|
|
135
135
|
}>> & {
|
|
136
136
|
onClick?: ((click: Event) => any) | undefined;
|
|
137
137
|
}, {}, {}, {}, {}, {}>;
|
|
138
|
-
__isFragment?:
|
|
139
|
-
__isTeleport?:
|
|
140
|
-
__isSuspense?:
|
|
138
|
+
__isFragment?: never;
|
|
139
|
+
__isTeleport?: never;
|
|
140
|
+
__isSuspense?: never;
|
|
141
141
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
142
142
|
title: {
|
|
143
143
|
type: import('vue').PropType<string>;
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
declare
|
|
2
|
-
title: string;
|
|
3
|
-
tagline: string;
|
|
4
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
|
-
click: (click: Event) => void;
|
|
6
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
-
title: string;
|
|
8
|
-
tagline: string;
|
|
9
|
-
}>>> & {
|
|
10
|
-
onClick?: ((click: Event) => any) | undefined;
|
|
11
|
-
}, {}, {}>, Readonly<{
|
|
1
|
+
declare function __VLS_template(): Readonly<{
|
|
12
2
|
/**
|
|
13
3
|
* Icon shown above the callout. Defaults to icons matching the type.
|
|
14
4
|
*/
|
|
@@ -26,7 +16,19 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
26
16
|
* Content beneath the heading shown as text.
|
|
27
17
|
*/
|
|
28
18
|
content(): any;
|
|
29
|
-
}
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
21
|
+
title: string;
|
|
22
|
+
tagline: string;
|
|
23
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
24
|
+
click: (click: Event) => void;
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
26
|
+
title: string;
|
|
27
|
+
tagline: string;
|
|
28
|
+
}>>> & {
|
|
29
|
+
onClick?: ((click: Event) => any) | undefined;
|
|
30
|
+
}, {}, {}>;
|
|
31
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
30
32
|
export default _default;
|
|
31
33
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
32
34
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -9,9 +9,9 @@ declare const _default: {
|
|
|
9
9
|
M: {};
|
|
10
10
|
Defaults: {};
|
|
11
11
|
}, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
|
|
12
|
-
__isFragment?:
|
|
13
|
-
__isTeleport?:
|
|
14
|
-
__isSuspense?:
|
|
12
|
+
__isFragment?: never;
|
|
13
|
+
__isTeleport?: never;
|
|
14
|
+
__isSuspense?: never;
|
|
15
15
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
16
16
|
$slots: Readonly<{
|
|
17
17
|
default(): any;
|
|
@@ -29,9 +29,9 @@ declare const _default: {
|
|
|
29
29
|
M: {};
|
|
30
30
|
Defaults: {};
|
|
31
31
|
}, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
|
|
32
|
-
__isFragment?:
|
|
33
|
-
__isTeleport?:
|
|
34
|
-
__isSuspense?:
|
|
32
|
+
__isFragment?: never;
|
|
33
|
+
__isTeleport?: never;
|
|
34
|
+
__isSuspense?: never;
|
|
35
35
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
36
36
|
$slots: Readonly<{
|
|
37
37
|
default(): any;
|
|
@@ -64,9 +64,9 @@ export declare const Template: () => {
|
|
|
64
64
|
M: {};
|
|
65
65
|
Defaults: {};
|
|
66
66
|
}, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
|
|
67
|
-
__isFragment?:
|
|
68
|
-
__isTeleport?:
|
|
69
|
-
__isSuspense?:
|
|
67
|
+
__isFragment?: never;
|
|
68
|
+
__isTeleport?: never;
|
|
69
|
+
__isSuspense?: never;
|
|
70
70
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
71
71
|
$slots: Readonly<{
|
|
72
72
|
default(): any;
|
|
@@ -118,9 +118,9 @@ export declare const Template: () => {
|
|
|
118
118
|
}>> & {
|
|
119
119
|
onClick?: ((click: Event) => any) | undefined;
|
|
120
120
|
}, {}, {}, {}, {}, {}>;
|
|
121
|
-
__isFragment?:
|
|
122
|
-
__isTeleport?:
|
|
123
|
-
__isSuspense?:
|
|
121
|
+
__isFragment?: never;
|
|
122
|
+
__isTeleport?: never;
|
|
123
|
+
__isSuspense?: never;
|
|
124
124
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
125
125
|
title: {
|
|
126
126
|
type: import('vue').PropType<string>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): Readonly<{
|
|
2
2
|
/**
|
|
3
3
|
* MucCards can be put into this slot.
|
|
4
4
|
*/
|
|
@@ -8,7 +8,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}
|
|
|
8
8
|
* MucCards can be put into this slot.
|
|
9
9
|
*/
|
|
10
10
|
default(): any;
|
|
11
|
-
}
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
13
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
12
14
|
export default _default;
|
|
13
15
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
16
|
new (): {
|
|
@@ -39,9 +39,9 @@ declare const _default: {
|
|
|
39
39
|
}>>, {}, {}, {}, {}, {
|
|
40
40
|
variant: import('./CommentType').default;
|
|
41
41
|
}>;
|
|
42
|
-
__isFragment?:
|
|
43
|
-
__isTeleport?:
|
|
44
|
-
__isSuspense?:
|
|
42
|
+
__isFragment?: never;
|
|
43
|
+
__isTeleport?: never;
|
|
44
|
+
__isSuspense?: never;
|
|
45
45
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
46
46
|
variant: {
|
|
47
47
|
type: import('vue').PropType<import('./CommentType').default>;
|