@mirweb/mir-web-components 0.17.4 → 0.17.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.
- package/dist/components/atoms/button/button.vue.d.ts +4 -4
- package/dist/components/atoms/checkbox/checkbox.vue.d.ts +5 -70
- package/dist/components/atoms/chip/chip.vue.d.ts +5 -24
- package/dist/components/atoms/dropdown/dropdown.vue.d.ts +4 -4
- package/dist/components/atoms/image/image.vue.d.ts +5 -91
- package/dist/components/atoms/label/label.vue.d.ts +5 -31
- package/dist/components/atoms/link/link.vue.d.ts +4 -4
- package/dist/components/atoms/radio-button/radio-button.vue.d.ts +5 -81
- package/dist/components/atoms/select/select.vue.d.ts +5 -79
- package/dist/components/atoms/slider/slider.vue.d.ts +4 -4
- package/dist/components/atoms/text-field/text-field.vue.d.ts +4 -4
- package/dist/components/atoms/textarea/textarea.vue.d.ts +5 -103
- package/dist/components/atoms/video/video.vue.d.ts +5 -152
- package/dist/components/blocks/facts/facts.vue.d.ts +5 -133
- package/dist/components/blocks/features/features.vue.d.ts +5 -134
- package/dist/components/blocks/form-script/form-script.vue.d.ts +5 -14
- package/dist/components/blocks/headline/headline.vue.d.ts +5 -31
- package/dist/components/blocks/hero/hero.vue.d.ts +5 -232
- package/dist/components/blocks/image/image.vue.d.ts +5 -114
- package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts +4 -4
- package/dist/components/blocks/logo-wall/logo-wall.vue.d.ts +5 -188
- package/dist/components/blocks/micro-stories/micro-stories.vue.d.ts +4 -4
- package/dist/components/blocks/policy/policy.vue.d.ts +3 -1
- package/dist/components/blocks/product-hero/product-hero.vue.d.ts +5 -187
- package/dist/components/blocks/promo/promo.vue.d.ts +4 -4
- package/dist/components/blocks/quote/quote.vue.d.ts +5 -122
- package/dist/components/blocks/rich-text/rich-text-columns.vue.d.ts +3 -1
- package/dist/components/blocks/rich-text/rich-text.vue.d.ts +5 -211
- package/dist/components/blocks/timeline/timeline.vue.d.ts +5 -103
- package/dist/components/blocks/triple-card-display/triple-card-display.vue.d.ts +6 -32
- package/dist/components/blocks/vimeo/vimeo.vue.d.ts +5 -23
- package/dist/components/molecules/address/address.vue.d.ts +5 -143
- package/dist/components/molecules/bullet-list/bullet-list.vue.d.ts +5 -54
- package/dist/components/molecules/card/card.vue.d.ts +4 -4
- package/dist/components/molecules/event-card/event-card.vue.d.ts +5 -71
- package/dist/components/molecules/modal/modal.vue.d.ts +5 -77
- package/dist/components/molecules/text-card/text-card.vue.d.ts +5 -55
- package/dist/components/organisms/404/404.vue.d.ts +5 -12
- package/dist/components/organisms/filter/filter.vue.d.ts +5 -16
- package/dist/components/organisms/footer/footer.vue.d.ts +5 -141
- package/dist/components/organisms/header/header.vue.d.ts +6 -38
- package/dist/components/organisms/language-switcher/language-switcher.vue.d.ts +5 -23
- package/dist/components/organisms/pagination/pagination.vue.d.ts +5 -71
- package/dist/components/organisms/search/search.vue.d.ts +3 -1
- package/dist/main.d.ts +1 -3
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +694 -735
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +16 -17
- package/dist/vite-env.d.ts +0 -1
|
@@ -1,187 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
};
|
|
7
|
-
videoSrc: {
|
|
8
|
-
type: StringConstructor;
|
|
9
|
-
default: string;
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
|
-
ariaLabel: {
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
default: string;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
imgSrc: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
default: string;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
}, {
|
|
23
|
-
AtomVideo: import("vue").DefineComponent<{
|
|
24
|
-
play: {
|
|
25
|
-
type: BooleanConstructor;
|
|
26
|
-
required: false;
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
src: {
|
|
30
|
-
type: StringConstructor;
|
|
31
|
-
required: true;
|
|
32
|
-
};
|
|
33
|
-
localVideo: {
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
required: false;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
ariaLabel: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
required: true;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
title: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
required: false;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
controls: {
|
|
49
|
-
type: BooleanConstructor;
|
|
50
|
-
required: false;
|
|
51
|
-
default: boolean;
|
|
52
|
-
};
|
|
53
|
-
poster: {
|
|
54
|
-
type: StringConstructor;
|
|
55
|
-
required: false;
|
|
56
|
-
default: string;
|
|
57
|
-
};
|
|
58
|
-
width: {
|
|
59
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
60
|
-
required: false;
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
height: {
|
|
64
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
65
|
-
required: false;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
autoplay: {
|
|
69
|
-
type: BooleanConstructor;
|
|
70
|
-
required: false;
|
|
71
|
-
default: boolean;
|
|
72
|
-
};
|
|
73
|
-
loop: {
|
|
74
|
-
type: BooleanConstructor;
|
|
75
|
-
required: false;
|
|
76
|
-
default: boolean;
|
|
77
|
-
};
|
|
78
|
-
muted: {
|
|
79
|
-
type: BooleanConstructor;
|
|
80
|
-
required: false;
|
|
81
|
-
default: boolean;
|
|
82
|
-
};
|
|
83
|
-
}, {
|
|
84
|
-
props: any;
|
|
85
|
-
videoRef: import("vue").Ref<HTMLVideoElement | null>;
|
|
86
|
-
resetVideo: () => void;
|
|
87
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
88
|
-
play: {
|
|
89
|
-
type: BooleanConstructor;
|
|
90
|
-
required: false;
|
|
91
|
-
default: boolean;
|
|
92
|
-
};
|
|
93
|
-
src: {
|
|
94
|
-
type: StringConstructor;
|
|
95
|
-
required: true;
|
|
96
|
-
};
|
|
97
|
-
localVideo: {
|
|
98
|
-
type: BooleanConstructor;
|
|
99
|
-
required: false;
|
|
100
|
-
default: boolean;
|
|
101
|
-
};
|
|
102
|
-
ariaLabel: {
|
|
103
|
-
type: StringConstructor;
|
|
104
|
-
required: true;
|
|
105
|
-
default: string;
|
|
106
|
-
};
|
|
107
|
-
title: {
|
|
108
|
-
type: StringConstructor;
|
|
109
|
-
required: false;
|
|
110
|
-
default: string;
|
|
111
|
-
};
|
|
112
|
-
controls: {
|
|
113
|
-
type: BooleanConstructor;
|
|
114
|
-
required: false;
|
|
115
|
-
default: boolean;
|
|
116
|
-
};
|
|
117
|
-
poster: {
|
|
118
|
-
type: StringConstructor;
|
|
119
|
-
required: false;
|
|
120
|
-
default: string;
|
|
121
|
-
};
|
|
122
|
-
width: {
|
|
123
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
124
|
-
required: false;
|
|
125
|
-
default: string;
|
|
126
|
-
};
|
|
127
|
-
height: {
|
|
128
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
129
|
-
required: false;
|
|
130
|
-
default: string;
|
|
131
|
-
};
|
|
132
|
-
autoplay: {
|
|
133
|
-
type: BooleanConstructor;
|
|
134
|
-
required: false;
|
|
135
|
-
default: boolean;
|
|
136
|
-
};
|
|
137
|
-
loop: {
|
|
138
|
-
type: BooleanConstructor;
|
|
139
|
-
required: false;
|
|
140
|
-
default: boolean;
|
|
141
|
-
};
|
|
142
|
-
muted: {
|
|
143
|
-
type: BooleanConstructor;
|
|
144
|
-
required: false;
|
|
145
|
-
default: boolean;
|
|
146
|
-
};
|
|
147
|
-
}>>, {
|
|
148
|
-
ariaLabel: string;
|
|
149
|
-
width: string | number;
|
|
150
|
-
height: string | number;
|
|
151
|
-
play: boolean;
|
|
152
|
-
localVideo: boolean;
|
|
153
|
-
title: string;
|
|
154
|
-
controls: boolean;
|
|
155
|
-
poster: string;
|
|
156
|
-
autoplay: boolean;
|
|
157
|
-
loop: boolean;
|
|
158
|
-
muted: boolean;
|
|
159
|
-
}, {}>;
|
|
160
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
161
|
-
headline: {
|
|
162
|
-
type: StringConstructor;
|
|
163
|
-
default: string;
|
|
164
|
-
required: true;
|
|
165
|
-
};
|
|
166
|
-
videoSrc: {
|
|
167
|
-
type: StringConstructor;
|
|
168
|
-
default: string;
|
|
169
|
-
required: true;
|
|
170
|
-
};
|
|
171
|
-
ariaLabel: {
|
|
172
|
-
type: StringConstructor;
|
|
173
|
-
default: string;
|
|
174
|
-
required: true;
|
|
175
|
-
};
|
|
176
|
-
imgSrc: {
|
|
177
|
-
type: StringConstructor;
|
|
178
|
-
default: string;
|
|
179
|
-
required: true;
|
|
180
|
-
};
|
|
181
|
-
}>>, {
|
|
182
|
-
ariaLabel: string;
|
|
183
|
-
headline: string;
|
|
184
|
-
imgSrc: string;
|
|
185
|
-
videoSrc: string;
|
|
186
|
-
}, {}>;
|
|
187
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/product-hero/product-hero.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/product-hero/product-hero.vue?vue&type=style&index=0&scoped=a4551025&lang.scss";
|
|
3
|
+
declare const _default: any;
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=product-hero.vue.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/promo/promo.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/promo/promo.vue?vue&type=style&index=0&scoped=7e80a0f0&lang.scss";
|
|
3
|
-
declare const _default: any;
|
|
4
|
-
export default _default;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/promo/promo.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/promo/promo.vue?vue&type=style&index=0&scoped=7e80a0f0&lang.scss";
|
|
3
|
+
declare const _default: any;
|
|
4
|
+
export default _default;
|
|
5
5
|
//# sourceMappingURL=promo.vue.d.ts.map
|
|
@@ -1,122 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
author: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
required: true;
|
|
9
|
-
};
|
|
10
|
-
authorTitle: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
required: true;
|
|
13
|
-
};
|
|
14
|
-
authorImage: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
required: false;
|
|
17
|
-
default: undefined;
|
|
18
|
-
};
|
|
19
|
-
}, {
|
|
20
|
-
AtomImage: import("vue").DefineComponent<{
|
|
21
|
-
src: {
|
|
22
|
-
type: StringConstructor;
|
|
23
|
-
required: false;
|
|
24
|
-
default: undefined;
|
|
25
|
-
};
|
|
26
|
-
srcset: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
required: false;
|
|
29
|
-
default: undefined;
|
|
30
|
-
};
|
|
31
|
-
sizes: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
required: false;
|
|
34
|
-
default: undefined;
|
|
35
|
-
};
|
|
36
|
-
alt: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
required: false;
|
|
39
|
-
default: undefined;
|
|
40
|
-
};
|
|
41
|
-
width: {
|
|
42
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
43
|
-
required: false;
|
|
44
|
-
default: undefined;
|
|
45
|
-
};
|
|
46
|
-
height: {
|
|
47
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
48
|
-
required: false;
|
|
49
|
-
default: string;
|
|
50
|
-
};
|
|
51
|
-
loading: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
required: false;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
57
|
-
src: {
|
|
58
|
-
type: StringConstructor;
|
|
59
|
-
required: false;
|
|
60
|
-
default: undefined;
|
|
61
|
-
};
|
|
62
|
-
srcset: {
|
|
63
|
-
type: StringConstructor;
|
|
64
|
-
required: false;
|
|
65
|
-
default: undefined;
|
|
66
|
-
};
|
|
67
|
-
sizes: {
|
|
68
|
-
type: StringConstructor;
|
|
69
|
-
required: false;
|
|
70
|
-
default: undefined;
|
|
71
|
-
};
|
|
72
|
-
alt: {
|
|
73
|
-
type: StringConstructor;
|
|
74
|
-
required: false;
|
|
75
|
-
default: undefined;
|
|
76
|
-
};
|
|
77
|
-
width: {
|
|
78
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
79
|
-
required: false;
|
|
80
|
-
default: undefined;
|
|
81
|
-
};
|
|
82
|
-
height: {
|
|
83
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
84
|
-
required: false;
|
|
85
|
-
default: string;
|
|
86
|
-
};
|
|
87
|
-
loading: {
|
|
88
|
-
type: StringConstructor;
|
|
89
|
-
required: false;
|
|
90
|
-
default: string;
|
|
91
|
-
};
|
|
92
|
-
}>>, {
|
|
93
|
-
src: string;
|
|
94
|
-
srcset: string;
|
|
95
|
-
sizes: string;
|
|
96
|
-
alt: string;
|
|
97
|
-
width: string | number;
|
|
98
|
-
height: string | number;
|
|
99
|
-
loading: string;
|
|
100
|
-
}, {}>;
|
|
101
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
102
|
-
quote: {
|
|
103
|
-
type: StringConstructor;
|
|
104
|
-
required: true;
|
|
105
|
-
};
|
|
106
|
-
author: {
|
|
107
|
-
type: StringConstructor;
|
|
108
|
-
required: true;
|
|
109
|
-
};
|
|
110
|
-
authorTitle: {
|
|
111
|
-
type: StringConstructor;
|
|
112
|
-
required: true;
|
|
113
|
-
};
|
|
114
|
-
authorImage: {
|
|
115
|
-
type: StringConstructor;
|
|
116
|
-
required: false;
|
|
117
|
-
default: undefined;
|
|
118
|
-
};
|
|
119
|
-
}>>, {
|
|
120
|
-
authorImage: string;
|
|
121
|
-
}, {}>;
|
|
122
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/quote/quote.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/quote/quote.vue?vue&type=style&index=0&scoped=e3cc8e27&lang.scss";
|
|
3
|
+
declare const _default: any;
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=quote.vue.d.ts.map
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/rich-text/rich-text-columns.vue?vue&type=style&index=0&scoped=3abe0bb4&lang.scss";
|
|
2
|
+
declare const _default: any;
|
|
2
3
|
export default _default;
|
|
4
|
+
//# sourceMappingURL=rich-text-columns.vue.d.ts.map
|
|
@@ -1,211 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
image?: boolean;
|
|
7
|
-
imageClip?: boolean;
|
|
8
|
-
bgColor?: string;
|
|
9
|
-
label?: string;
|
|
10
|
-
};
|
|
11
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
12
|
-
headline: {
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
required: false;
|
|
15
|
-
default: string;
|
|
16
|
-
};
|
|
17
|
-
leftAligned: {
|
|
18
|
-
type: BooleanConstructor;
|
|
19
|
-
required: false;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
links: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
required: false;
|
|
25
|
-
default: boolean;
|
|
26
|
-
};
|
|
27
|
-
bulletList: {
|
|
28
|
-
type: BooleanConstructor;
|
|
29
|
-
required: false;
|
|
30
|
-
default: boolean;
|
|
31
|
-
};
|
|
32
|
-
image: {
|
|
33
|
-
type: BooleanConstructor;
|
|
34
|
-
required: false;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
imageClip: {
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
required: false;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
bgColor: {
|
|
43
|
-
type: StringConstructor;
|
|
44
|
-
required: false;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
label: {
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
required: false;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
}, {
|
|
53
|
-
AtomImage: import("vue").DefineComponent<{
|
|
54
|
-
src: {
|
|
55
|
-
type: StringConstructor;
|
|
56
|
-
required: false;
|
|
57
|
-
default: undefined;
|
|
58
|
-
};
|
|
59
|
-
srcset: {
|
|
60
|
-
type: StringConstructor;
|
|
61
|
-
required: false;
|
|
62
|
-
default: undefined;
|
|
63
|
-
};
|
|
64
|
-
sizes: {
|
|
65
|
-
type: StringConstructor;
|
|
66
|
-
required: false;
|
|
67
|
-
default: undefined;
|
|
68
|
-
};
|
|
69
|
-
alt: {
|
|
70
|
-
type: StringConstructor;
|
|
71
|
-
required: false;
|
|
72
|
-
default: undefined;
|
|
73
|
-
};
|
|
74
|
-
width: {
|
|
75
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
76
|
-
required: false;
|
|
77
|
-
default: undefined;
|
|
78
|
-
};
|
|
79
|
-
height: {
|
|
80
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
81
|
-
required: false;
|
|
82
|
-
default: string;
|
|
83
|
-
};
|
|
84
|
-
loading: {
|
|
85
|
-
type: StringConstructor;
|
|
86
|
-
required: false;
|
|
87
|
-
default: string;
|
|
88
|
-
};
|
|
89
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
|
-
src: {
|
|
91
|
-
type: StringConstructor;
|
|
92
|
-
required: false;
|
|
93
|
-
default: undefined;
|
|
94
|
-
};
|
|
95
|
-
srcset: {
|
|
96
|
-
type: StringConstructor;
|
|
97
|
-
required: false;
|
|
98
|
-
default: undefined;
|
|
99
|
-
};
|
|
100
|
-
sizes: {
|
|
101
|
-
type: StringConstructor;
|
|
102
|
-
required: false;
|
|
103
|
-
default: undefined;
|
|
104
|
-
};
|
|
105
|
-
alt: {
|
|
106
|
-
type: StringConstructor;
|
|
107
|
-
required: false;
|
|
108
|
-
default: undefined;
|
|
109
|
-
};
|
|
110
|
-
width: {
|
|
111
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
112
|
-
required: false;
|
|
113
|
-
default: undefined;
|
|
114
|
-
};
|
|
115
|
-
height: {
|
|
116
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
117
|
-
required: false;
|
|
118
|
-
default: string;
|
|
119
|
-
};
|
|
120
|
-
loading: {
|
|
121
|
-
type: StringConstructor;
|
|
122
|
-
required: false;
|
|
123
|
-
default: string;
|
|
124
|
-
};
|
|
125
|
-
}>>, {
|
|
126
|
-
src: string;
|
|
127
|
-
srcset: string;
|
|
128
|
-
sizes: string;
|
|
129
|
-
alt: string;
|
|
130
|
-
width: string | number;
|
|
131
|
-
height: string | number;
|
|
132
|
-
loading: string;
|
|
133
|
-
}, {}>;
|
|
134
|
-
AtomLabel: import("vue").DefineComponent<{
|
|
135
|
-
text: {
|
|
136
|
-
type: StringConstructor;
|
|
137
|
-
required: true;
|
|
138
|
-
};
|
|
139
|
-
labelDark: {
|
|
140
|
-
type: BooleanConstructor;
|
|
141
|
-
required: false;
|
|
142
|
-
default: boolean;
|
|
143
|
-
};
|
|
144
|
-
}, {
|
|
145
|
-
props: any;
|
|
146
|
-
ariaLabel: import("vue").ComputedRef<string>;
|
|
147
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
148
|
-
text: {
|
|
149
|
-
type: StringConstructor;
|
|
150
|
-
required: true;
|
|
151
|
-
};
|
|
152
|
-
labelDark: {
|
|
153
|
-
type: BooleanConstructor;
|
|
154
|
-
required: false;
|
|
155
|
-
default: boolean;
|
|
156
|
-
};
|
|
157
|
-
}>>, {
|
|
158
|
-
labelDark: boolean;
|
|
159
|
-
}, {}>;
|
|
160
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
161
|
-
headline: {
|
|
162
|
-
type: StringConstructor;
|
|
163
|
-
required: false;
|
|
164
|
-
default: string;
|
|
165
|
-
};
|
|
166
|
-
leftAligned: {
|
|
167
|
-
type: BooleanConstructor;
|
|
168
|
-
required: false;
|
|
169
|
-
default: boolean;
|
|
170
|
-
};
|
|
171
|
-
links: {
|
|
172
|
-
type: BooleanConstructor;
|
|
173
|
-
required: false;
|
|
174
|
-
default: boolean;
|
|
175
|
-
};
|
|
176
|
-
bulletList: {
|
|
177
|
-
type: BooleanConstructor;
|
|
178
|
-
required: false;
|
|
179
|
-
default: boolean;
|
|
180
|
-
};
|
|
181
|
-
image: {
|
|
182
|
-
type: BooleanConstructor;
|
|
183
|
-
required: false;
|
|
184
|
-
default: boolean;
|
|
185
|
-
};
|
|
186
|
-
imageClip: {
|
|
187
|
-
type: BooleanConstructor;
|
|
188
|
-
required: false;
|
|
189
|
-
default: boolean;
|
|
190
|
-
};
|
|
191
|
-
bgColor: {
|
|
192
|
-
type: StringConstructor;
|
|
193
|
-
required: false;
|
|
194
|
-
default: string;
|
|
195
|
-
};
|
|
196
|
-
label: {
|
|
197
|
-
type: StringConstructor;
|
|
198
|
-
required: false;
|
|
199
|
-
default: string;
|
|
200
|
-
};
|
|
201
|
-
}>>, {
|
|
202
|
-
label: string;
|
|
203
|
-
image: boolean;
|
|
204
|
-
headline: string;
|
|
205
|
-
bgColor: string;
|
|
206
|
-
leftAligned: boolean;
|
|
207
|
-
links: boolean;
|
|
208
|
-
bulletList: boolean;
|
|
209
|
-
imageClip: boolean;
|
|
210
|
-
}, {}>;
|
|
211
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/rich-text/rich-text.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/rich-text/rich-text.vue?vue&type=style&index=0&scoped=7bcde564&lang.scss";
|
|
3
|
+
declare const _default: any;
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=rich-text.vue.d.ts.map
|
|
@@ -1,103 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
alt?: string;
|
|
7
|
-
};
|
|
8
|
-
text: JSON;
|
|
9
|
-
}
|
|
10
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
11
|
-
timelineItems: {
|
|
12
|
-
type: () => TimelineItem[];
|
|
13
|
-
required: true;
|
|
14
|
-
};
|
|
15
|
-
}, {
|
|
16
|
-
AtomImage: import("vue").DefineComponent<{
|
|
17
|
-
src: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
required: false;
|
|
20
|
-
default: undefined;
|
|
21
|
-
};
|
|
22
|
-
srcset: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
required: false;
|
|
25
|
-
default: undefined;
|
|
26
|
-
};
|
|
27
|
-
sizes: {
|
|
28
|
-
type: StringConstructor;
|
|
29
|
-
required: false;
|
|
30
|
-
default: undefined;
|
|
31
|
-
};
|
|
32
|
-
alt: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
required: false;
|
|
35
|
-
default: undefined;
|
|
36
|
-
};
|
|
37
|
-
width: {
|
|
38
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
39
|
-
required: false;
|
|
40
|
-
default: undefined;
|
|
41
|
-
};
|
|
42
|
-
height: {
|
|
43
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
44
|
-
required: false;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
loading: {
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
required: false;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
-
src: {
|
|
54
|
-
type: StringConstructor;
|
|
55
|
-
required: false;
|
|
56
|
-
default: undefined;
|
|
57
|
-
};
|
|
58
|
-
srcset: {
|
|
59
|
-
type: StringConstructor;
|
|
60
|
-
required: false;
|
|
61
|
-
default: undefined;
|
|
62
|
-
};
|
|
63
|
-
sizes: {
|
|
64
|
-
type: StringConstructor;
|
|
65
|
-
required: false;
|
|
66
|
-
default: undefined;
|
|
67
|
-
};
|
|
68
|
-
alt: {
|
|
69
|
-
type: StringConstructor;
|
|
70
|
-
required: false;
|
|
71
|
-
default: undefined;
|
|
72
|
-
};
|
|
73
|
-
width: {
|
|
74
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
75
|
-
required: false;
|
|
76
|
-
default: undefined;
|
|
77
|
-
};
|
|
78
|
-
height: {
|
|
79
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
80
|
-
required: false;
|
|
81
|
-
default: string;
|
|
82
|
-
};
|
|
83
|
-
loading: {
|
|
84
|
-
type: StringConstructor;
|
|
85
|
-
required: false;
|
|
86
|
-
default: string;
|
|
87
|
-
};
|
|
88
|
-
}>>, {
|
|
89
|
-
src: string;
|
|
90
|
-
srcset: string;
|
|
91
|
-
sizes: string;
|
|
92
|
-
alt: string;
|
|
93
|
-
width: string | number;
|
|
94
|
-
height: string | number;
|
|
95
|
-
loading: string;
|
|
96
|
-
}, {}>;
|
|
97
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
98
|
-
timelineItems: {
|
|
99
|
-
type: () => TimelineItem[];
|
|
100
|
-
required: true;
|
|
101
|
-
};
|
|
102
|
-
}>>, {}, {}>;
|
|
103
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/timeline/timeline.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/timeline/timeline.vue?vue&type=style&index=0&scoped=78d319df&lang.scss";
|
|
3
|
+
declare const _default: any;
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=timeline.vue.d.ts.map
|
|
@@ -1,32 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
bgColor: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
headline: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
paragraph: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
bgColor: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
}>>, {
|
|
28
|
-
headline: string;
|
|
29
|
-
paragraph: string;
|
|
30
|
-
bgColor: string;
|
|
31
|
-
}, {}>;
|
|
32
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/triple-card-display/triple-card-display.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/triple-card-display/triple-card-display.vue?vue&type=style&index=0&lang.scss";
|
|
3
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/triple-card-display/triple-card-display.vue?vue&type=style&index=1&scoped=d77943df&lang.scss";
|
|
4
|
+
declare const _default: any;
|
|
5
|
+
export default _default;
|
|
6
|
+
//# sourceMappingURL=triple-card-display.vue.d.ts.map
|