@mirweb/mir-web-components 0.16.4 → 0.17.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/README.md +0 -1
- package/dist/components/atoms/button/button.vue.d.ts +5 -32
- package/dist/components/atoms/checkbox/checkbox.vue.d.ts +26 -12
- package/dist/components/atoms/chip/chip.vue.d.ts +8 -2
- package/dist/components/atoms/image/image.vue.d.ts +7 -3
- package/dist/components/atoms/link/link.vue.d.ts +5 -61
- package/dist/components/atoms/radio-button/radio-button.vue.d.ts +17 -5
- package/dist/components/atoms/slider/slider.vue.d.ts +24 -9
- package/dist/components/atoms/text-field/text-field.vue.d.ts +6 -0
- package/dist/components/atoms/textarea/textarea.vue.d.ts +18 -0
- package/dist/components/atoms/video/video.vue.d.ts +9 -2
- package/dist/components/blocks/facts/facts.vue.d.ts +76 -41
- package/dist/components/blocks/features/features.vue.d.ts +22 -11
- package/dist/components/blocks/hero/hero.vue.d.ts +48 -35
- package/dist/components/blocks/image/image.vue.d.ts +12 -4
- package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts +24 -10
- package/dist/components/blocks/logo-wall/logo-wall.vue.d.ts +56 -39
- package/dist/components/blocks/micro-stories/micro-stories.vue.d.ts +6 -8
- package/dist/components/blocks/product-hero/product-hero.vue.d.ts +9 -2
- package/dist/components/blocks/promo/promo.vue.d.ts +58 -35
- package/dist/components/blocks/quote/quote.vue.d.ts +12 -4
- package/dist/components/blocks/rich-text/rich-text.vue.d.ts +13 -3
- package/dist/components/blocks/timeline/timeline.vue.d.ts +10 -6
- package/dist/components/blocks/triple-card-display/triple-card-display.vue.d.ts +1 -3
- package/dist/components/blocks/vimeo/vimeo.vue.d.ts +8 -1
- package/dist/components/molecules/address/address.vue.d.ts +81 -41
- package/dist/components/molecules/bullet-list/bullet-list.vue.d.ts +10 -10
- package/dist/components/molecules/card/card.vue.d.ts +79 -22
- package/dist/components/molecules/modal/modal.vue.d.ts +24 -9
- package/dist/components/organisms/footer/footer.vue.d.ts +61 -49
- package/dist/components/organisms/header/header.vue.d.ts +0 -1
- package/dist/components/organisms/language-switcher/language-switcher.vue.d.ts +8 -1
- package/dist/components/organisms/pagination/pagination.vue.d.ts +24 -8
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +842 -807
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +10 -2
|
@@ -1,95 +1,130 @@
|
|
|
1
|
-
interface
|
|
2
|
-
value:
|
|
3
|
-
metric:
|
|
1
|
+
interface Fact {
|
|
2
|
+
value: string;
|
|
3
|
+
metric: string;
|
|
4
4
|
}
|
|
5
|
-
interface
|
|
5
|
+
interface Link {
|
|
6
6
|
title: string;
|
|
7
7
|
url: string;
|
|
8
8
|
}
|
|
9
|
+
export type Props = {
|
|
10
|
+
headline: string;
|
|
11
|
+
facts: Fact[];
|
|
12
|
+
link: Link;
|
|
13
|
+
};
|
|
9
14
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
10
15
|
headline: {
|
|
11
16
|
type: StringConstructor;
|
|
17
|
+
required: true;
|
|
18
|
+
default: string;
|
|
12
19
|
};
|
|
13
20
|
facts: {
|
|
14
|
-
type:
|
|
21
|
+
type: ArrayConstructor;
|
|
15
22
|
required: true;
|
|
16
|
-
|
|
23
|
+
default: () => {
|
|
24
|
+
value: string;
|
|
25
|
+
metric: string;
|
|
26
|
+
}[];
|
|
17
27
|
};
|
|
18
28
|
link: {
|
|
19
|
-
type:
|
|
29
|
+
type: ObjectConstructor;
|
|
30
|
+
required: true;
|
|
31
|
+
default: () => {
|
|
32
|
+
title: string;
|
|
33
|
+
url: string;
|
|
34
|
+
};
|
|
20
35
|
};
|
|
21
36
|
}, {
|
|
22
37
|
AtomLink: import("vue").DefineComponent<{
|
|
23
|
-
underline: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
required: false;
|
|
26
|
-
validator: (value: string) => boolean;
|
|
27
|
-
default: string;
|
|
28
|
-
};
|
|
29
38
|
linkType: {
|
|
30
|
-
type:
|
|
31
|
-
required:
|
|
32
|
-
validator: (value: string) => boolean;
|
|
39
|
+
type: null;
|
|
40
|
+
required: true;
|
|
33
41
|
default: string;
|
|
34
42
|
};
|
|
35
|
-
|
|
43
|
+
arrow: {
|
|
36
44
|
type: BooleanConstructor;
|
|
37
45
|
required: false;
|
|
38
46
|
default: boolean;
|
|
39
47
|
};
|
|
40
|
-
|
|
48
|
+
underline: {
|
|
49
|
+
type: null;
|
|
50
|
+
required: false;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
disabled: {
|
|
41
54
|
type: BooleanConstructor;
|
|
42
55
|
required: false;
|
|
43
56
|
default: boolean;
|
|
44
57
|
};
|
|
45
58
|
}, {
|
|
59
|
+
LINKTYPES: {
|
|
60
|
+
readonly primary: "primary";
|
|
61
|
+
readonly secondary: "secondary";
|
|
62
|
+
readonly secondary_dark: "secondary-dark";
|
|
63
|
+
readonly regular: "regular";
|
|
64
|
+
readonly regular_dark: "regular-dark";
|
|
65
|
+
readonly regular_light: "regular-light";
|
|
66
|
+
readonly regular_blue: "regular-blue";
|
|
67
|
+
};
|
|
68
|
+
UNDERLINE: {
|
|
69
|
+
readonly hover: "hover";
|
|
70
|
+
readonly true: "true";
|
|
71
|
+
readonly false: "false";
|
|
72
|
+
};
|
|
73
|
+
selectedStyle: import("vue").ComputedRef<any>;
|
|
46
74
|
props: any;
|
|
47
|
-
attrs: import("vue").ComputedRef<
|
|
48
|
-
disabled: boolean;
|
|
49
|
-
underline: string;
|
|
50
|
-
linkType: string;
|
|
51
|
-
arrow: boolean;
|
|
52
|
-
}>;
|
|
75
|
+
attrs: import("vue").ComputedRef<any>;
|
|
53
76
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
|
-
underline: {
|
|
55
|
-
type: StringConstructor;
|
|
56
|
-
required: false;
|
|
57
|
-
validator: (value: string) => boolean;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
77
|
linkType: {
|
|
61
|
-
type:
|
|
62
|
-
required:
|
|
63
|
-
validator: (value: string) => boolean;
|
|
78
|
+
type: null;
|
|
79
|
+
required: true;
|
|
64
80
|
default: string;
|
|
65
81
|
};
|
|
66
|
-
|
|
82
|
+
arrow: {
|
|
67
83
|
type: BooleanConstructor;
|
|
68
84
|
required: false;
|
|
69
85
|
default: boolean;
|
|
70
86
|
};
|
|
71
|
-
|
|
87
|
+
underline: {
|
|
88
|
+
type: null;
|
|
89
|
+
required: false;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
disabled: {
|
|
72
93
|
type: BooleanConstructor;
|
|
73
94
|
required: false;
|
|
74
95
|
default: boolean;
|
|
75
96
|
};
|
|
76
97
|
}>>, {
|
|
77
98
|
disabled: boolean;
|
|
78
|
-
|
|
79
|
-
linkType: string;
|
|
99
|
+
linkType: any;
|
|
80
100
|
arrow: boolean;
|
|
101
|
+
underline: any;
|
|
81
102
|
}, {}>;
|
|
82
103
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
83
104
|
headline: {
|
|
84
105
|
type: StringConstructor;
|
|
106
|
+
required: true;
|
|
107
|
+
default: string;
|
|
85
108
|
};
|
|
86
109
|
facts: {
|
|
87
|
-
type:
|
|
110
|
+
type: ArrayConstructor;
|
|
88
111
|
required: true;
|
|
89
|
-
|
|
112
|
+
default: () => {
|
|
113
|
+
value: string;
|
|
114
|
+
metric: string;
|
|
115
|
+
}[];
|
|
90
116
|
};
|
|
91
117
|
link: {
|
|
92
|
-
type:
|
|
118
|
+
type: ObjectConstructor;
|
|
119
|
+
required: true;
|
|
120
|
+
default: () => {
|
|
121
|
+
title: string;
|
|
122
|
+
url: string;
|
|
123
|
+
};
|
|
93
124
|
};
|
|
94
|
-
}>>, {
|
|
125
|
+
}>>, {
|
|
126
|
+
link: Record<string, any>;
|
|
127
|
+
headline: string;
|
|
128
|
+
facts: unknown[];
|
|
129
|
+
}, {}>;
|
|
95
130
|
export default _sfc_main;
|
|
@@ -1,23 +1,25 @@
|
|
|
1
|
-
interface
|
|
2
|
-
icon:
|
|
1
|
+
interface Element {
|
|
2
|
+
icon: Icon;
|
|
3
3
|
headline: string;
|
|
4
4
|
body: string;
|
|
5
5
|
}
|
|
6
|
-
interface
|
|
6
|
+
interface Icon {
|
|
7
7
|
src: string;
|
|
8
8
|
alt: string;
|
|
9
9
|
}
|
|
10
10
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
11
11
|
headline: {
|
|
12
12
|
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
13
14
|
};
|
|
14
15
|
body: {
|
|
15
16
|
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
16
18
|
};
|
|
17
19
|
elements: {
|
|
18
|
-
type: () =>
|
|
20
|
+
type: () => Element[];
|
|
19
21
|
required: true;
|
|
20
|
-
validator(value:
|
|
22
|
+
validator(value: Element[]): boolean;
|
|
21
23
|
};
|
|
22
24
|
}, {
|
|
23
25
|
AtomImage: import("vue").DefineComponent<{
|
|
@@ -34,6 +36,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
34
36
|
sizes: {
|
|
35
37
|
type: StringConstructor;
|
|
36
38
|
required: false;
|
|
39
|
+
default: undefined;
|
|
37
40
|
};
|
|
38
41
|
alt: {
|
|
39
42
|
type: StringConstructor;
|
|
@@ -43,6 +46,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
43
46
|
width: {
|
|
44
47
|
type: (StringConstructor | NumberConstructor)[];
|
|
45
48
|
required: false;
|
|
49
|
+
default: undefined;
|
|
46
50
|
};
|
|
47
51
|
height: {
|
|
48
52
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -54,9 +58,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
58
|
required: false;
|
|
55
59
|
default: string;
|
|
56
60
|
};
|
|
57
|
-
}, {
|
|
58
|
-
props: any;
|
|
59
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
61
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
60
62
|
src: {
|
|
61
63
|
type: StringConstructor;
|
|
62
64
|
required: false;
|
|
@@ -70,6 +72,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
70
72
|
sizes: {
|
|
71
73
|
type: StringConstructor;
|
|
72
74
|
required: false;
|
|
75
|
+
default: undefined;
|
|
73
76
|
};
|
|
74
77
|
alt: {
|
|
75
78
|
type: StringConstructor;
|
|
@@ -79,6 +82,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
79
82
|
width: {
|
|
80
83
|
type: (StringConstructor | NumberConstructor)[];
|
|
81
84
|
required: false;
|
|
85
|
+
default: undefined;
|
|
82
86
|
};
|
|
83
87
|
height: {
|
|
84
88
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -93,21 +97,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
93
97
|
}>>, {
|
|
94
98
|
src: string;
|
|
95
99
|
srcset: string;
|
|
100
|
+
sizes: string;
|
|
96
101
|
alt: string;
|
|
102
|
+
width: string | number;
|
|
97
103
|
height: string | number;
|
|
98
104
|
loading: string;
|
|
99
105
|
}, {}>;
|
|
100
106
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
101
107
|
headline: {
|
|
102
108
|
type: StringConstructor;
|
|
109
|
+
default: string;
|
|
103
110
|
};
|
|
104
111
|
body: {
|
|
105
112
|
type: StringConstructor;
|
|
113
|
+
default: string;
|
|
106
114
|
};
|
|
107
115
|
elements: {
|
|
108
|
-
type: () =>
|
|
116
|
+
type: () => Element[];
|
|
109
117
|
required: true;
|
|
110
|
-
validator(value:
|
|
118
|
+
validator(value: Element[]): boolean;
|
|
111
119
|
};
|
|
112
|
-
}>>, {
|
|
120
|
+
}>>, {
|
|
121
|
+
headline: string;
|
|
122
|
+
body: string;
|
|
123
|
+
}, {}>;
|
|
113
124
|
export default _sfc_main;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface
|
|
1
|
+
interface Video {
|
|
2
2
|
src: string;
|
|
3
3
|
alt: string;
|
|
4
4
|
poster: string;
|
|
@@ -9,7 +9,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
11
|
video: {
|
|
12
|
-
type: () =>
|
|
12
|
+
type: () => Video;
|
|
13
13
|
required: true;
|
|
14
14
|
};
|
|
15
15
|
}, {
|
|
@@ -40,7 +40,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
40
40
|
type: BooleanConstructor;
|
|
41
41
|
default: boolean;
|
|
42
42
|
};
|
|
43
|
-
poster:
|
|
43
|
+
poster: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
44
47
|
width: {
|
|
45
48
|
type: (StringConstructor | NumberConstructor)[];
|
|
46
49
|
default: string;
|
|
@@ -92,7 +95,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
92
95
|
type: BooleanConstructor;
|
|
93
96
|
default: boolean;
|
|
94
97
|
};
|
|
95
|
-
poster:
|
|
98
|
+
poster: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
96
102
|
width: {
|
|
97
103
|
type: (StringConstructor | NumberConstructor)[];
|
|
98
104
|
default: string;
|
|
@@ -122,69 +128,76 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
122
128
|
localVideo: boolean;
|
|
123
129
|
title: string;
|
|
124
130
|
controls: boolean;
|
|
131
|
+
poster: string;
|
|
125
132
|
autoplay: boolean;
|
|
126
133
|
loop: boolean;
|
|
127
134
|
muted: boolean;
|
|
128
135
|
}, {}>;
|
|
129
136
|
AtomLink: import("vue").DefineComponent<{
|
|
130
|
-
underline: {
|
|
131
|
-
type: StringConstructor;
|
|
132
|
-
required: false;
|
|
133
|
-
validator: (value: string) => boolean;
|
|
134
|
-
default: string;
|
|
135
|
-
};
|
|
136
137
|
linkType: {
|
|
137
|
-
type:
|
|
138
|
-
required:
|
|
139
|
-
validator: (value: string) => boolean;
|
|
138
|
+
type: null;
|
|
139
|
+
required: true;
|
|
140
140
|
default: string;
|
|
141
141
|
};
|
|
142
|
-
|
|
142
|
+
arrow: {
|
|
143
143
|
type: BooleanConstructor;
|
|
144
144
|
required: false;
|
|
145
145
|
default: boolean;
|
|
146
146
|
};
|
|
147
|
-
|
|
147
|
+
underline: {
|
|
148
|
+
type: null;
|
|
149
|
+
required: false;
|
|
150
|
+
default: string;
|
|
151
|
+
};
|
|
152
|
+
disabled: {
|
|
148
153
|
type: BooleanConstructor;
|
|
149
154
|
required: false;
|
|
150
155
|
default: boolean;
|
|
151
156
|
};
|
|
152
157
|
}, {
|
|
158
|
+
LINKTYPES: {
|
|
159
|
+
readonly primary: "primary";
|
|
160
|
+
readonly secondary: "secondary";
|
|
161
|
+
readonly secondary_dark: "secondary-dark";
|
|
162
|
+
readonly regular: "regular";
|
|
163
|
+
readonly regular_dark: "regular-dark";
|
|
164
|
+
readonly regular_light: "regular-light";
|
|
165
|
+
readonly regular_blue: "regular-blue";
|
|
166
|
+
};
|
|
167
|
+
UNDERLINE: {
|
|
168
|
+
readonly hover: "hover";
|
|
169
|
+
readonly true: "true";
|
|
170
|
+
readonly false: "false";
|
|
171
|
+
};
|
|
172
|
+
selectedStyle: import("vue").ComputedRef<any>;
|
|
153
173
|
props: any;
|
|
154
|
-
attrs: import("vue").ComputedRef<
|
|
155
|
-
disabled: boolean;
|
|
156
|
-
underline: string;
|
|
157
|
-
linkType: string;
|
|
158
|
-
arrow: boolean;
|
|
159
|
-
}>;
|
|
174
|
+
attrs: import("vue").ComputedRef<any>;
|
|
160
175
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
161
|
-
underline: {
|
|
162
|
-
type: StringConstructor;
|
|
163
|
-
required: false;
|
|
164
|
-
validator: (value: string) => boolean;
|
|
165
|
-
default: string;
|
|
166
|
-
};
|
|
167
176
|
linkType: {
|
|
168
|
-
type:
|
|
169
|
-
required:
|
|
170
|
-
validator: (value: string) => boolean;
|
|
177
|
+
type: null;
|
|
178
|
+
required: true;
|
|
171
179
|
default: string;
|
|
172
180
|
};
|
|
173
|
-
|
|
181
|
+
arrow: {
|
|
174
182
|
type: BooleanConstructor;
|
|
175
183
|
required: false;
|
|
176
184
|
default: boolean;
|
|
177
185
|
};
|
|
178
|
-
|
|
186
|
+
underline: {
|
|
187
|
+
type: null;
|
|
188
|
+
required: false;
|
|
189
|
+
default: string;
|
|
190
|
+
};
|
|
191
|
+
disabled: {
|
|
179
192
|
type: BooleanConstructor;
|
|
180
193
|
required: false;
|
|
181
194
|
default: boolean;
|
|
182
195
|
};
|
|
183
196
|
}>>, {
|
|
184
197
|
disabled: boolean;
|
|
185
|
-
|
|
186
|
-
linkType: string;
|
|
198
|
+
linkType: any;
|
|
187
199
|
arrow: boolean;
|
|
200
|
+
underline: any;
|
|
188
201
|
}, {}>;
|
|
189
202
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
190
203
|
headline: {
|
|
@@ -192,7 +205,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
192
205
|
required: true;
|
|
193
206
|
};
|
|
194
207
|
video: {
|
|
195
|
-
type: () =>
|
|
208
|
+
type: () => Video;
|
|
196
209
|
required: true;
|
|
197
210
|
};
|
|
198
211
|
}>>, {}, {}>;
|
|
@@ -2,6 +2,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2
2
|
caption: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: false;
|
|
5
|
+
default: string;
|
|
5
6
|
};
|
|
6
7
|
src: {
|
|
7
8
|
type: StringConstructor;
|
|
@@ -26,6 +27,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
26
27
|
sizes: {
|
|
27
28
|
type: StringConstructor;
|
|
28
29
|
required: false;
|
|
30
|
+
default: undefined;
|
|
29
31
|
};
|
|
30
32
|
alt: {
|
|
31
33
|
type: StringConstructor;
|
|
@@ -35,6 +37,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
35
37
|
width: {
|
|
36
38
|
type: (StringConstructor | NumberConstructor)[];
|
|
37
39
|
required: false;
|
|
40
|
+
default: undefined;
|
|
38
41
|
};
|
|
39
42
|
height: {
|
|
40
43
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -46,9 +49,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
46
49
|
required: false;
|
|
47
50
|
default: string;
|
|
48
51
|
};
|
|
49
|
-
}, {
|
|
50
|
-
props: any;
|
|
51
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
52
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
52
53
|
src: {
|
|
53
54
|
type: StringConstructor;
|
|
54
55
|
required: false;
|
|
@@ -62,6 +63,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
62
63
|
sizes: {
|
|
63
64
|
type: StringConstructor;
|
|
64
65
|
required: false;
|
|
66
|
+
default: undefined;
|
|
65
67
|
};
|
|
66
68
|
alt: {
|
|
67
69
|
type: StringConstructor;
|
|
@@ -71,6 +73,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
71
73
|
width: {
|
|
72
74
|
type: (StringConstructor | NumberConstructor)[];
|
|
73
75
|
required: false;
|
|
76
|
+
default: undefined;
|
|
74
77
|
};
|
|
75
78
|
height: {
|
|
76
79
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -85,7 +88,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
85
88
|
}>>, {
|
|
86
89
|
src: string;
|
|
87
90
|
srcset: string;
|
|
91
|
+
sizes: string;
|
|
88
92
|
alt: string;
|
|
93
|
+
width: string | number;
|
|
89
94
|
height: string | number;
|
|
90
95
|
loading: string;
|
|
91
96
|
}, {}>;
|
|
@@ -93,6 +98,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
93
98
|
caption: {
|
|
94
99
|
type: StringConstructor;
|
|
95
100
|
required: false;
|
|
101
|
+
default: string;
|
|
96
102
|
};
|
|
97
103
|
src: {
|
|
98
104
|
type: StringConstructor;
|
|
@@ -102,5 +108,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
102
108
|
type: StringConstructor;
|
|
103
109
|
required: true;
|
|
104
110
|
};
|
|
105
|
-
}>>, {
|
|
111
|
+
}>>, {
|
|
112
|
+
caption: string;
|
|
113
|
+
}, {}>;
|
|
106
114
|
export default _sfc_main;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
interface
|
|
1
|
+
interface Media {
|
|
2
2
|
src: string;
|
|
3
3
|
alt: string;
|
|
4
4
|
}
|
|
5
5
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
6
6
|
mediaLarge: {
|
|
7
|
-
type: () =>
|
|
7
|
+
type: () => Media;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
10
|
mediaType: {
|
|
@@ -13,12 +13,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
validator(value: string): boolean;
|
|
14
14
|
};
|
|
15
15
|
mediaSmall: {
|
|
16
|
-
type: () =>
|
|
16
|
+
type: () => Media[];
|
|
17
17
|
required: true;
|
|
18
18
|
};
|
|
19
19
|
body: {
|
|
20
20
|
type: StringConstructor;
|
|
21
21
|
required: false;
|
|
22
|
+
default: string;
|
|
22
23
|
};
|
|
23
24
|
flipHorizontal: {
|
|
24
25
|
type: BooleanConstructor;
|
|
@@ -48,6 +49,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
48
49
|
sizes: {
|
|
49
50
|
type: StringConstructor;
|
|
50
51
|
required: false;
|
|
52
|
+
default: undefined;
|
|
51
53
|
};
|
|
52
54
|
alt: {
|
|
53
55
|
type: StringConstructor;
|
|
@@ -57,6 +59,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
57
59
|
width: {
|
|
58
60
|
type: (StringConstructor | NumberConstructor)[];
|
|
59
61
|
required: false;
|
|
62
|
+
default: undefined;
|
|
60
63
|
};
|
|
61
64
|
height: {
|
|
62
65
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -68,9 +71,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
68
71
|
required: false;
|
|
69
72
|
default: string;
|
|
70
73
|
};
|
|
71
|
-
}, {
|
|
72
|
-
props: any;
|
|
73
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
74
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
74
75
|
src: {
|
|
75
76
|
type: StringConstructor;
|
|
76
77
|
required: false;
|
|
@@ -84,6 +85,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
84
85
|
sizes: {
|
|
85
86
|
type: StringConstructor;
|
|
86
87
|
required: false;
|
|
88
|
+
default: undefined;
|
|
87
89
|
};
|
|
88
90
|
alt: {
|
|
89
91
|
type: StringConstructor;
|
|
@@ -93,6 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
93
95
|
width: {
|
|
94
96
|
type: (StringConstructor | NumberConstructor)[];
|
|
95
97
|
required: false;
|
|
98
|
+
default: undefined;
|
|
96
99
|
};
|
|
97
100
|
height: {
|
|
98
101
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -107,7 +110,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
107
110
|
}>>, {
|
|
108
111
|
src: string;
|
|
109
112
|
srcset: string;
|
|
113
|
+
sizes: string;
|
|
110
114
|
alt: string;
|
|
115
|
+
width: string | number;
|
|
111
116
|
height: string | number;
|
|
112
117
|
loading: string;
|
|
113
118
|
}, {}>;
|
|
@@ -138,7 +143,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
138
143
|
type: BooleanConstructor;
|
|
139
144
|
default: boolean;
|
|
140
145
|
};
|
|
141
|
-
poster:
|
|
146
|
+
poster: {
|
|
147
|
+
type: StringConstructor;
|
|
148
|
+
default: string;
|
|
149
|
+
};
|
|
142
150
|
width: {
|
|
143
151
|
type: (StringConstructor | NumberConstructor)[];
|
|
144
152
|
default: string;
|
|
@@ -190,7 +198,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
190
198
|
type: BooleanConstructor;
|
|
191
199
|
default: boolean;
|
|
192
200
|
};
|
|
193
|
-
poster:
|
|
201
|
+
poster: {
|
|
202
|
+
type: StringConstructor;
|
|
203
|
+
default: string;
|
|
204
|
+
};
|
|
194
205
|
width: {
|
|
195
206
|
type: (StringConstructor | NumberConstructor)[];
|
|
196
207
|
default: string;
|
|
@@ -220,13 +231,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
220
231
|
localVideo: boolean;
|
|
221
232
|
title: string;
|
|
222
233
|
controls: boolean;
|
|
234
|
+
poster: string;
|
|
223
235
|
autoplay: boolean;
|
|
224
236
|
loop: boolean;
|
|
225
237
|
muted: boolean;
|
|
226
238
|
}, {}>;
|
|
227
239
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
228
240
|
mediaLarge: {
|
|
229
|
-
type: () =>
|
|
241
|
+
type: () => Media;
|
|
230
242
|
required: true;
|
|
231
243
|
};
|
|
232
244
|
mediaType: {
|
|
@@ -235,12 +247,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
235
247
|
validator(value: string): boolean;
|
|
236
248
|
};
|
|
237
249
|
mediaSmall: {
|
|
238
|
-
type: () =>
|
|
250
|
+
type: () => Media[];
|
|
239
251
|
required: true;
|
|
240
252
|
};
|
|
241
253
|
body: {
|
|
242
254
|
type: StringConstructor;
|
|
243
255
|
required: false;
|
|
256
|
+
default: string;
|
|
244
257
|
};
|
|
245
258
|
flipHorizontal: {
|
|
246
259
|
type: BooleanConstructor;
|
|
@@ -257,6 +270,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
257
270
|
};
|
|
258
271
|
}>>, {
|
|
259
272
|
mediaType: string;
|
|
273
|
+
body: string;
|
|
260
274
|
flipHorizontal: boolean;
|
|
261
275
|
flipVertical: boolean;
|
|
262
276
|
bgColor: string;
|