@mirweb/mir-web-components 0.17.2 → 0.17.4

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.
Files changed (25) hide show
  1. package/dist/components/atoms/dropdown/dropdown.vue.d.ts +5 -144
  2. package/dist/components/atoms/image/image.vue.d.ts +9 -0
  3. package/dist/components/atoms/label/label.vue.d.ts +6 -2
  4. package/dist/components/atoms/radio-button/radio-button.vue.d.ts +21 -10
  5. package/dist/components/atoms/select/select.vue.d.ts +16 -38
  6. package/dist/components/atoms/slider/slider.vue.d.ts +5 -185
  7. package/dist/components/atoms/text-field/text-field.vue.d.ts +1 -1
  8. package/dist/components/atoms/textarea/textarea.vue.d.ts +26 -18
  9. package/dist/components/atoms/video/video.vue.d.ts +36 -5
  10. package/dist/components/blocks/features/features.vue.d.ts +14 -4
  11. package/dist/components/blocks/hero/hero.vue.d.ts +22 -5
  12. package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts +5 -278
  13. package/dist/components/blocks/product-hero/product-hero.vue.d.ts +22 -5
  14. package/dist/components/blocks/promo/promo.vue.d.ts +5 -399
  15. package/dist/components/blocks/rich-text/rich-text.vue.d.ts +28 -2
  16. package/dist/components/molecules/address/address.vue.d.ts +11 -28
  17. package/dist/components/molecules/card/card.vue.d.ts +5 -369
  18. package/dist/components/molecules/event-card/event-card.vue.d.ts +2 -2
  19. package/dist/components/molecules/text-card/text-card.vue.d.ts +2 -2
  20. package/dist/components/organisms/footer/footer.vue.d.ts +30 -18
  21. package/dist/mir-web-components.cjs.js +1 -1
  22. package/dist/mir-web-components.css +1 -1
  23. package/dist/mir-web-components.es.js +1066 -1468
  24. package/dist/mir-web-components.umd.js +2 -2
  25. package/package.json +1 -1
@@ -1,369 +1,5 @@
1
- declare const _sfc_main: import("vue").DefineComponent<{
2
- variant: {
3
- type: StringConstructor;
4
- default: string;
5
- validator: (value: string) => boolean;
6
- };
7
- theme: {
8
- type: StringConstructor;
9
- default: string;
10
- validator: (value: string) => boolean;
11
- };
12
- linkType: {
13
- type: StringConstructor;
14
- default: string;
15
- validator: (value: string) => boolean;
16
- };
17
- headline: {
18
- type: StringConstructor;
19
- default: string;
20
- };
21
- paragraph: {
22
- type: StringConstructor;
23
- default: string;
24
- };
25
- size: {
26
- type: StringConstructor;
27
- default: string;
28
- validator: (value: string) => boolean;
29
- };
30
- mediaType: {
31
- type: StringConstructor;
32
- default: string;
33
- validator: (value: string) => boolean;
34
- };
35
- orientation: {
36
- type: StringConstructor;
37
- default: string;
38
- validator: (value: string) => boolean;
39
- };
40
- srcSet: {
41
- type: StringConstructor;
42
- default: string;
43
- };
44
- url: {
45
- type: StringConstructor;
46
- default: string;
47
- };
48
- imgSrc: {
49
- type: StringConstructor;
50
- default: string;
51
- };
52
- videoSrc: {
53
- type: StringConstructor;
54
- default: string;
55
- };
56
- arialabel: {
57
- type: StringConstructor;
58
- default: string;
59
- };
60
- poster: {
61
- type: StringConstructor;
62
- default: string;
63
- };
64
- labelText: {
65
- type: StringConstructor;
66
- default: string;
67
- };
68
- alt: {
69
- type: StringConstructor;
70
- default: string;
71
- };
72
- }, {
73
- slots: Readonly<{
74
- [name: string]: import("vue").Slot<any> | undefined;
75
- }>;
76
- isPlaying: import("vue").Ref<boolean>;
77
- AtomImage: import("vue").DefineComponent<{
78
- src: {
79
- type: StringConstructor;
80
- required: false;
81
- default: undefined;
82
- };
83
- srcset: {
84
- type: StringConstructor;
85
- required: false;
86
- default: undefined;
87
- };
88
- sizes: {
89
- type: StringConstructor;
90
- required: false;
91
- default: undefined;
92
- };
93
- alt: {
94
- type: StringConstructor;
95
- required: false;
96
- default: undefined;
97
- };
98
- width: {
99
- type: (StringConstructor | NumberConstructor)[];
100
- required: false;
101
- default: undefined;
102
- };
103
- height: {
104
- type: (StringConstructor | NumberConstructor)[];
105
- required: false;
106
- default: string;
107
- };
108
- loading: {
109
- type: StringConstructor;
110
- required: false;
111
- default: string;
112
- };
113
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
114
- src: {
115
- type: StringConstructor;
116
- required: false;
117
- default: undefined;
118
- };
119
- srcset: {
120
- type: StringConstructor;
121
- required: false;
122
- default: undefined;
123
- };
124
- sizes: {
125
- type: StringConstructor;
126
- required: false;
127
- default: undefined;
128
- };
129
- alt: {
130
- type: StringConstructor;
131
- required: false;
132
- default: undefined;
133
- };
134
- width: {
135
- type: (StringConstructor | NumberConstructor)[];
136
- required: false;
137
- default: undefined;
138
- };
139
- height: {
140
- type: (StringConstructor | NumberConstructor)[];
141
- required: false;
142
- default: string;
143
- };
144
- loading: {
145
- type: StringConstructor;
146
- required: false;
147
- default: string;
148
- };
149
- }>>, {
150
- src: string;
151
- srcset: string;
152
- sizes: string;
153
- alt: string;
154
- width: string | number;
155
- height: string | number;
156
- loading: string;
157
- }, {}>;
158
- AtomVideo: import("vue").DefineComponent<{
159
- play: {
160
- type: BooleanConstructor;
161
- default: boolean;
162
- };
163
- src: {
164
- type: StringConstructor;
165
- required: true;
166
- default: undefined;
167
- };
168
- localVideo: {
169
- type: BooleanConstructor;
170
- default: boolean;
171
- };
172
- ariaLabel: {
173
- type: StringConstructor;
174
- default: string;
175
- required: true;
176
- };
177
- title: {
178
- type: StringConstructor;
179
- default: string;
180
- };
181
- controls: {
182
- type: BooleanConstructor;
183
- default: boolean;
184
- };
185
- poster: {
186
- type: StringConstructor;
187
- default: string;
188
- };
189
- width: {
190
- type: (StringConstructor | NumberConstructor)[];
191
- default: string;
192
- };
193
- height: {
194
- type: (StringConstructor | NumberConstructor)[];
195
- default: string;
196
- };
197
- autoplay: {
198
- type: BooleanConstructor;
199
- default: boolean;
200
- };
201
- loop: {
202
- type: BooleanConstructor;
203
- default: boolean;
204
- };
205
- muted: {
206
- type: BooleanConstructor;
207
- default: boolean;
208
- };
209
- }, {
210
- props: any;
211
- videoRef: import("vue").Ref<HTMLVideoElement | null>;
212
- resetVideo: () => void;
213
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
214
- play: {
215
- type: BooleanConstructor;
216
- default: boolean;
217
- };
218
- src: {
219
- type: StringConstructor;
220
- required: true;
221
- default: undefined;
222
- };
223
- localVideo: {
224
- type: BooleanConstructor;
225
- default: boolean;
226
- };
227
- ariaLabel: {
228
- type: StringConstructor;
229
- default: string;
230
- required: true;
231
- };
232
- title: {
233
- type: StringConstructor;
234
- default: string;
235
- };
236
- controls: {
237
- type: BooleanConstructor;
238
- default: boolean;
239
- };
240
- poster: {
241
- type: StringConstructor;
242
- default: string;
243
- };
244
- width: {
245
- type: (StringConstructor | NumberConstructor)[];
246
- default: string;
247
- };
248
- height: {
249
- type: (StringConstructor | NumberConstructor)[];
250
- default: string;
251
- };
252
- autoplay: {
253
- type: BooleanConstructor;
254
- default: boolean;
255
- };
256
- loop: {
257
- type: BooleanConstructor;
258
- default: boolean;
259
- };
260
- muted: {
261
- type: BooleanConstructor;
262
- default: boolean;
263
- };
264
- }>>, {
265
- ariaLabel: string;
266
- src: string;
267
- width: string | number;
268
- height: string | number;
269
- play: boolean;
270
- localVideo: boolean;
271
- title: string;
272
- controls: boolean;
273
- poster: string;
274
- autoplay: boolean;
275
- loop: boolean;
276
- muted: boolean;
277
- }, {}>;
278
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clicked"[], "clicked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
279
- variant: {
280
- type: StringConstructor;
281
- default: string;
282
- validator: (value: string) => boolean;
283
- };
284
- theme: {
285
- type: StringConstructor;
286
- default: string;
287
- validator: (value: string) => boolean;
288
- };
289
- linkType: {
290
- type: StringConstructor;
291
- default: string;
292
- validator: (value: string) => boolean;
293
- };
294
- headline: {
295
- type: StringConstructor;
296
- default: string;
297
- };
298
- paragraph: {
299
- type: StringConstructor;
300
- default: string;
301
- };
302
- size: {
303
- type: StringConstructor;
304
- default: string;
305
- validator: (value: string) => boolean;
306
- };
307
- mediaType: {
308
- type: StringConstructor;
309
- default: string;
310
- validator: (value: string) => boolean;
311
- };
312
- orientation: {
313
- type: StringConstructor;
314
- default: string;
315
- validator: (value: string) => boolean;
316
- };
317
- srcSet: {
318
- type: StringConstructor;
319
- default: string;
320
- };
321
- url: {
322
- type: StringConstructor;
323
- default: string;
324
- };
325
- imgSrc: {
326
- type: StringConstructor;
327
- default: string;
328
- };
329
- videoSrc: {
330
- type: StringConstructor;
331
- default: string;
332
- };
333
- arialabel: {
334
- type: StringConstructor;
335
- default: string;
336
- };
337
- poster: {
338
- type: StringConstructor;
339
- default: string;
340
- };
341
- labelText: {
342
- type: StringConstructor;
343
- default: string;
344
- };
345
- alt: {
346
- type: StringConstructor;
347
- default: string;
348
- };
349
- }>> & {
350
- onClicked?: ((...args: any[]) => any) | undefined;
351
- }, {
352
- variant: string;
353
- alt: string;
354
- linkType: string;
355
- labelText: string;
356
- url: string;
357
- poster: string;
358
- theme: string;
359
- headline: string;
360
- paragraph: string;
361
- size: string;
362
- mediaType: string;
363
- orientation: string;
364
- srcSet: string;
365
- imgSrc: string;
366
- videoSrc: string;
367
- arialabel: string;
368
- }, {}>;
369
- export default _sfc_main;
1
+ export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/molecules/card/card.vue?vue&type=script&setup=true&lang.ts";
2
+ import "/home/runner/work/componentlibrary/componentlibrary/src/components/molecules/card/card.vue?vue&type=style&index=0&scoped=4928c68e&lang.scss";
3
+ declare const _default: any;
4
+ export default _default;
5
+ //# sourceMappingURL=card.vue.d.ts.map
@@ -27,8 +27,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
27
27
  };
28
28
  labelDark: {
29
29
  type: BooleanConstructor;
30
- default: boolean;
31
30
  required: false;
31
+ default: boolean;
32
32
  };
33
33
  }, {
34
34
  props: any;
@@ -40,8 +40,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
40
40
  };
41
41
  labelDark: {
42
42
  type: BooleanConstructor;
43
- default: boolean;
44
43
  required: false;
44
+ default: boolean;
45
45
  };
46
46
  }>>, {
47
47
  labelDark: boolean;
@@ -19,8 +19,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
19
19
  };
20
20
  labelDark: {
21
21
  type: BooleanConstructor;
22
- default: boolean;
23
22
  required: false;
23
+ default: boolean;
24
24
  };
25
25
  }, {
26
26
  props: any;
@@ -32,8 +32,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
32
32
  };
33
33
  labelDark: {
34
34
  type: BooleanConstructor;
35
- default: boolean;
36
35
  required: false;
36
+ default: boolean;
37
37
  };
38
38
  }>>, {
39
39
  labelDark: boolean;
@@ -12,23 +12,32 @@ interface FooterSection {
12
12
  title: string;
13
13
  links: Link[];
14
14
  }
15
+ export type Props = {
16
+ footerSections?: FooterSection[];
17
+ privacyPolicy?: Link;
18
+ cookiePolicy?: Link;
19
+ socialMedia?: Link[];
20
+ };
15
21
  declare const _sfc_main: import("vue").DefineComponent<{
16
22
  footerSections: {
17
- type: () => FooterSection[];
23
+ type: ArrayConstructor;
24
+ required: false;
18
25
  default: () => never[];
19
26
  };
20
27
  privacyPolicy: {
21
- type: () => Link;
22
- default: () => void;
28
+ type: ObjectConstructor;
29
+ required: false;
30
+ default: undefined;
23
31
  };
24
32
  cookiePolicy: {
25
- type: () => Link;
26
- default: () => void;
33
+ type: ObjectConstructor;
34
+ required: false;
35
+ default: undefined;
27
36
  };
28
37
  socialMedia: {
29
- type: () => Link[];
38
+ type: ArrayConstructor;
39
+ required: false;
30
40
  default: () => never[];
31
- validator: (value: Link[]) => boolean;
32
41
  };
33
42
  }, {
34
43
  AtomLink: import("vue").DefineComponent<{
@@ -102,28 +111,31 @@ declare const _sfc_main: import("vue").DefineComponent<{
102
111
  }, {}>;
103
112
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "changeRegionClicked"[], "changeRegionClicked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
104
113
  footerSections: {
105
- type: () => FooterSection[];
114
+ type: ArrayConstructor;
115
+ required: false;
106
116
  default: () => never[];
107
117
  };
108
118
  privacyPolicy: {
109
- type: () => Link;
110
- default: () => void;
119
+ type: ObjectConstructor;
120
+ required: false;
121
+ default: undefined;
111
122
  };
112
123
  cookiePolicy: {
113
- type: () => Link;
114
- default: () => void;
124
+ type: ObjectConstructor;
125
+ required: false;
126
+ default: undefined;
115
127
  };
116
128
  socialMedia: {
117
- type: () => Link[];
129
+ type: ArrayConstructor;
130
+ required: false;
118
131
  default: () => never[];
119
- validator: (value: Link[]) => boolean;
120
132
  };
121
133
  }>> & {
122
134
  onChangeRegionClicked?: ((...args: any[]) => any) | undefined;
123
135
  }, {
124
- footerSections: FooterSection[];
125
- privacyPolicy: Link;
126
- cookiePolicy: Link;
127
- socialMedia: Link[];
136
+ footerSections: unknown[];
137
+ privacyPolicy: Record<string, any>;
138
+ cookiePolicy: Record<string, any>;
139
+ socialMedia: unknown[];
128
140
  }, {}>;
129
141
  export default _sfc_main;