@mirweb/mir-web-components 0.16.5 → 0.17.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/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 +77 -41
- package/dist/components/blocks/features/features.vue.d.ts +22 -11
- package/dist/components/blocks/hero/hero.vue.d.ts +49 -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 +57 -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 +59 -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 +82 -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 +62 -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 +807 -768
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +10 -2
|
@@ -1,95 +1,131 @@
|
|
|
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: "mir-link--btn button button--primary";
|
|
61
|
+
readonly secondary: "mir-link--btn button button--secondary";
|
|
62
|
+
readonly secondary_dark: "mir-link--btn button button--secondary-dark";
|
|
63
|
+
readonly regular: "regular-link";
|
|
64
|
+
readonly regular_dark: "regular-link-dark";
|
|
65
|
+
readonly regular_light: "regular-link-light";
|
|
66
|
+
readonly regular_blue: "regular-link-blue";
|
|
67
|
+
};
|
|
68
|
+
UNDERLINE: {
|
|
69
|
+
readonly hover: "underline-hover";
|
|
70
|
+
readonly true: "add-underline";
|
|
71
|
+
readonly false: "remove-underline";
|
|
72
|
+
};
|
|
73
|
+
selectedLinkType: import("vue").ComputedRef<any>;
|
|
74
|
+
selectedUnderline: import("vue").ComputedRef<any>;
|
|
46
75
|
props: any;
|
|
47
|
-
attrs: import("vue").ComputedRef<
|
|
48
|
-
disabled: boolean;
|
|
49
|
-
underline: string;
|
|
50
|
-
linkType: string;
|
|
51
|
-
arrow: boolean;
|
|
52
|
-
}>;
|
|
76
|
+
attrs: import("vue").ComputedRef<any>;
|
|
53
77
|
}, 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
78
|
linkType: {
|
|
61
|
-
type:
|
|
62
|
-
required:
|
|
63
|
-
validator: (value: string) => boolean;
|
|
79
|
+
type: null;
|
|
80
|
+
required: true;
|
|
64
81
|
default: string;
|
|
65
82
|
};
|
|
66
|
-
|
|
83
|
+
arrow: {
|
|
67
84
|
type: BooleanConstructor;
|
|
68
85
|
required: false;
|
|
69
86
|
default: boolean;
|
|
70
87
|
};
|
|
71
|
-
|
|
88
|
+
underline: {
|
|
89
|
+
type: null;
|
|
90
|
+
required: false;
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
93
|
+
disabled: {
|
|
72
94
|
type: BooleanConstructor;
|
|
73
95
|
required: false;
|
|
74
96
|
default: boolean;
|
|
75
97
|
};
|
|
76
98
|
}>>, {
|
|
77
99
|
disabled: boolean;
|
|
78
|
-
|
|
79
|
-
linkType: string;
|
|
100
|
+
linkType: any;
|
|
80
101
|
arrow: boolean;
|
|
102
|
+
underline: any;
|
|
81
103
|
}, {}>;
|
|
82
104
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
83
105
|
headline: {
|
|
84
106
|
type: StringConstructor;
|
|
107
|
+
required: true;
|
|
108
|
+
default: string;
|
|
85
109
|
};
|
|
86
110
|
facts: {
|
|
87
|
-
type:
|
|
111
|
+
type: ArrayConstructor;
|
|
88
112
|
required: true;
|
|
89
|
-
|
|
113
|
+
default: () => {
|
|
114
|
+
value: string;
|
|
115
|
+
metric: string;
|
|
116
|
+
}[];
|
|
90
117
|
};
|
|
91
118
|
link: {
|
|
92
|
-
type:
|
|
119
|
+
type: ObjectConstructor;
|
|
120
|
+
required: true;
|
|
121
|
+
default: () => {
|
|
122
|
+
title: string;
|
|
123
|
+
url: string;
|
|
124
|
+
};
|
|
93
125
|
};
|
|
94
|
-
}>>, {
|
|
126
|
+
}>>, {
|
|
127
|
+
link: Record<string, any>;
|
|
128
|
+
headline: string;
|
|
129
|
+
facts: unknown[];
|
|
130
|
+
}, {}>;
|
|
95
131
|
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,77 @@ 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: "mir-link--btn button button--primary";
|
|
160
|
+
readonly secondary: "mir-link--btn button button--secondary";
|
|
161
|
+
readonly secondary_dark: "mir-link--btn button button--secondary-dark";
|
|
162
|
+
readonly regular: "regular-link";
|
|
163
|
+
readonly regular_dark: "regular-link-dark";
|
|
164
|
+
readonly regular_light: "regular-link-light";
|
|
165
|
+
readonly regular_blue: "regular-link-blue";
|
|
166
|
+
};
|
|
167
|
+
UNDERLINE: {
|
|
168
|
+
readonly hover: "underline-hover";
|
|
169
|
+
readonly true: "add-underline";
|
|
170
|
+
readonly false: "remove-underline";
|
|
171
|
+
};
|
|
172
|
+
selectedLinkType: import("vue").ComputedRef<any>;
|
|
173
|
+
selectedUnderline: import("vue").ComputedRef<any>;
|
|
153
174
|
props: any;
|
|
154
|
-
attrs: import("vue").ComputedRef<
|
|
155
|
-
disabled: boolean;
|
|
156
|
-
underline: string;
|
|
157
|
-
linkType: string;
|
|
158
|
-
arrow: boolean;
|
|
159
|
-
}>;
|
|
175
|
+
attrs: import("vue").ComputedRef<any>;
|
|
160
176
|
}, 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
177
|
linkType: {
|
|
168
|
-
type:
|
|
169
|
-
required:
|
|
170
|
-
validator: (value: string) => boolean;
|
|
178
|
+
type: null;
|
|
179
|
+
required: true;
|
|
171
180
|
default: string;
|
|
172
181
|
};
|
|
173
|
-
|
|
182
|
+
arrow: {
|
|
174
183
|
type: BooleanConstructor;
|
|
175
184
|
required: false;
|
|
176
185
|
default: boolean;
|
|
177
186
|
};
|
|
178
|
-
|
|
187
|
+
underline: {
|
|
188
|
+
type: null;
|
|
189
|
+
required: false;
|
|
190
|
+
default: string;
|
|
191
|
+
};
|
|
192
|
+
disabled: {
|
|
179
193
|
type: BooleanConstructor;
|
|
180
194
|
required: false;
|
|
181
195
|
default: boolean;
|
|
182
196
|
};
|
|
183
197
|
}>>, {
|
|
184
198
|
disabled: boolean;
|
|
185
|
-
|
|
186
|
-
linkType: string;
|
|
199
|
+
linkType: any;
|
|
187
200
|
arrow: boolean;
|
|
201
|
+
underline: any;
|
|
188
202
|
}, {}>;
|
|
189
203
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
190
204
|
headline: {
|
|
@@ -192,7 +206,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
192
206
|
required: true;
|
|
193
207
|
};
|
|
194
208
|
video: {
|
|
195
|
-
type: () =>
|
|
209
|
+
type: () => Video;
|
|
196
210
|
required: true;
|
|
197
211
|
};
|
|
198
212
|
}>>, {}, {}>;
|
|
@@ -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;
|