@mirweb/mir-web-components 0.17.3 → 0.17.5
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 +5 -144
- package/dist/components/atoms/image/image.vue.d.ts +5 -82
- package/dist/components/atoms/label/label.vue.d.ts +5 -27
- package/dist/components/atoms/link/link.vue.d.ts +4 -4
- package/dist/components/atoms/radio-button/radio-button.vue.d.ts +5 -70
- package/dist/components/atoms/select/select.vue.d.ts +5 -101
- package/dist/components/atoms/slider/slider.vue.d.ts +5 -185
- package/dist/components/atoms/text-field/text-field.vue.d.ts +4 -4
- package/dist/components/atoms/textarea/textarea.vue.d.ts +5 -95
- package/dist/components/atoms/video/video.vue.d.ts +5 -121
- package/dist/components/blocks/facts/facts.vue.d.ts +5 -133
- package/dist/components/blocks/features/features.vue.d.ts +5 -124
- 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 -215
- package/dist/components/blocks/image/image.vue.d.ts +5 -114
- package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts +5 -278
- 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 -170
- package/dist/components/blocks/promo/promo.vue.d.ts +5 -399
- 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 -185
- 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 -160
- package/dist/components/molecules/bullet-list/bullet-list.vue.d.ts +5 -54
- package/dist/components/molecules/card/card.vue.d.ts +5 -369
- 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 -129
- 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 +1052 -1495
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +15 -17
- package/dist/vite-env.d.ts +0 -1
|
@@ -1,129 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
rel?: string;
|
|
7
|
-
linkType?: string;
|
|
8
|
-
disabled?: boolean;
|
|
9
|
-
arrow?: boolean;
|
|
10
|
-
}
|
|
11
|
-
interface FooterSection {
|
|
12
|
-
title: string;
|
|
13
|
-
links: Link[];
|
|
14
|
-
}
|
|
15
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
16
|
-
footerSections: {
|
|
17
|
-
type: () => FooterSection[];
|
|
18
|
-
default: () => never[];
|
|
19
|
-
};
|
|
20
|
-
privacyPolicy: {
|
|
21
|
-
type: () => Link;
|
|
22
|
-
default: () => void;
|
|
23
|
-
};
|
|
24
|
-
cookiePolicy: {
|
|
25
|
-
type: () => Link;
|
|
26
|
-
default: () => void;
|
|
27
|
-
};
|
|
28
|
-
socialMedia: {
|
|
29
|
-
type: () => Link[];
|
|
30
|
-
default: () => never[];
|
|
31
|
-
validator: (value: Link[]) => boolean;
|
|
32
|
-
};
|
|
33
|
-
}, {
|
|
34
|
-
AtomLink: import("vue").DefineComponent<{
|
|
35
|
-
linkType: {
|
|
36
|
-
type: null;
|
|
37
|
-
required: true;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
arrow: {
|
|
41
|
-
type: BooleanConstructor;
|
|
42
|
-
required: false;
|
|
43
|
-
default: boolean;
|
|
44
|
-
};
|
|
45
|
-
underline: {
|
|
46
|
-
type: null;
|
|
47
|
-
required: false;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
disabled: {
|
|
51
|
-
type: BooleanConstructor;
|
|
52
|
-
required: false;
|
|
53
|
-
default: boolean;
|
|
54
|
-
};
|
|
55
|
-
}, {
|
|
56
|
-
LINKTYPES: {
|
|
57
|
-
readonly primary: "mir-link--btn button button--primary";
|
|
58
|
-
readonly secondary: "mir-link--btn button button--secondary";
|
|
59
|
-
readonly secondary_dark: "mir-link--btn button button--secondary-dark";
|
|
60
|
-
readonly regular: "regular-link";
|
|
61
|
-
readonly regular_dark: "regular-link-dark";
|
|
62
|
-
readonly regular_light: "regular-link-light";
|
|
63
|
-
readonly regular_blue: "regular-link-blue";
|
|
64
|
-
};
|
|
65
|
-
UNDERLINE: {
|
|
66
|
-
readonly hover: "underline-hover";
|
|
67
|
-
readonly true: "add-underline";
|
|
68
|
-
readonly false: "remove-underline";
|
|
69
|
-
};
|
|
70
|
-
selectedLinkType: import("vue").ComputedRef<any>;
|
|
71
|
-
selectedUnderline: import("vue").ComputedRef<any>;
|
|
72
|
-
props: any;
|
|
73
|
-
attrs: import("vue").ComputedRef<{
|
|
74
|
-
[x: string]: import("vue").Ref<any>;
|
|
75
|
-
}>;
|
|
76
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
77
|
-
linkType: {
|
|
78
|
-
type: null;
|
|
79
|
-
required: true;
|
|
80
|
-
default: string;
|
|
81
|
-
};
|
|
82
|
-
arrow: {
|
|
83
|
-
type: BooleanConstructor;
|
|
84
|
-
required: false;
|
|
85
|
-
default: boolean;
|
|
86
|
-
};
|
|
87
|
-
underline: {
|
|
88
|
-
type: null;
|
|
89
|
-
required: false;
|
|
90
|
-
default: string;
|
|
91
|
-
};
|
|
92
|
-
disabled: {
|
|
93
|
-
type: BooleanConstructor;
|
|
94
|
-
required: false;
|
|
95
|
-
default: boolean;
|
|
96
|
-
};
|
|
97
|
-
}>>, {
|
|
98
|
-
disabled: boolean;
|
|
99
|
-
linkType: any;
|
|
100
|
-
arrow: boolean;
|
|
101
|
-
underline: any;
|
|
102
|
-
}, {}>;
|
|
103
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "changeRegionClicked"[], "changeRegionClicked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
104
|
-
footerSections: {
|
|
105
|
-
type: () => FooterSection[];
|
|
106
|
-
default: () => never[];
|
|
107
|
-
};
|
|
108
|
-
privacyPolicy: {
|
|
109
|
-
type: () => Link;
|
|
110
|
-
default: () => void;
|
|
111
|
-
};
|
|
112
|
-
cookiePolicy: {
|
|
113
|
-
type: () => Link;
|
|
114
|
-
default: () => void;
|
|
115
|
-
};
|
|
116
|
-
socialMedia: {
|
|
117
|
-
type: () => Link[];
|
|
118
|
-
default: () => never[];
|
|
119
|
-
validator: (value: Link[]) => boolean;
|
|
120
|
-
};
|
|
121
|
-
}>> & {
|
|
122
|
-
onChangeRegionClicked?: ((...args: any[]) => any) | undefined;
|
|
123
|
-
}, {
|
|
124
|
-
footerSections: FooterSection[];
|
|
125
|
-
privacyPolicy: Link;
|
|
126
|
-
cookiePolicy: Link;
|
|
127
|
-
socialMedia: Link[];
|
|
128
|
-
}, {}>;
|
|
129
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/footer/footer.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/footer/footer.vue?vue&type=style&index=0&scoped=cf5ea14f&lang.scss";
|
|
3
|
+
declare const _default: any;
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=footer.vue.d.ts.map
|
|
@@ -1,38 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
}, {
|
|
11
|
-
clickEventListener: ((e: MouseEvent) => void) | null;
|
|
12
|
-
props: any;
|
|
13
|
-
burgerState: import("vue").Ref<boolean>;
|
|
14
|
-
showDropDown: import("vue").Ref<boolean>;
|
|
15
|
-
emit: (event: "update:burgerState" | "update:showDropDown" | "clickSearch", ...args: any[]) => void;
|
|
16
|
-
toggleDropDown: () => void;
|
|
17
|
-
toggleBurger: () => void;
|
|
18
|
-
navSearchButton: import("vue").Ref<HTMLButtonElement | null>;
|
|
19
|
-
mobileSearchButton: import("vue").Ref<HTMLButtonElement | null>;
|
|
20
|
-
defocusSearchButton: () => void;
|
|
21
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:burgerState" | "update:showDropDown" | "clickSearch")[], "update:burgerState" | "update:showDropDown" | "clickSearch", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
burgerState: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
showDropDown: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
}>> & {
|
|
31
|
-
"onUpdate:burgerState"?: ((...args: any[]) => any) | undefined;
|
|
32
|
-
"onUpdate:showDropDown"?: ((...args: any[]) => any) | undefined;
|
|
33
|
-
onClickSearch?: ((...args: any[]) => any) | undefined;
|
|
34
|
-
}, {
|
|
35
|
-
burgerState: boolean;
|
|
36
|
-
showDropDown: boolean;
|
|
37
|
-
}, {}>;
|
|
38
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/header/header.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/header/header.vue?vue&type=style&index=0&lang.scss";
|
|
3
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/header/header.vue?vue&type=style&index=1&scoped=e129834d&lang.scss";
|
|
4
|
+
declare const _default: any;
|
|
5
|
+
export default _default;
|
|
6
|
+
//# sourceMappingURL=header.vue.d.ts.map
|
|
@@ -1,23 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
paragraph: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
-
headline: {
|
|
12
|
-
type: StringConstructor;
|
|
13
|
-
default: string;
|
|
14
|
-
};
|
|
15
|
-
paragraph: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
}>>, {
|
|
20
|
-
headline: string;
|
|
21
|
-
paragraph: string;
|
|
22
|
-
}, {}>;
|
|
23
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/language-switcher/language-switcher.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/language-switcher/language-switcher.vue?vue&type=style&index=0&scoped=f345ee1f&lang.scss";
|
|
3
|
+
declare const _default: any;
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=language-switcher.vue.d.ts.map
|
|
@@ -1,71 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
isNextDisabled: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
required: true;
|
|
9
|
-
};
|
|
10
|
-
}, {
|
|
11
|
-
AtomButton: import("vue").DefineComponent<{
|
|
12
|
-
variant: {
|
|
13
|
-
type: null;
|
|
14
|
-
required: true;
|
|
15
|
-
default: string;
|
|
16
|
-
};
|
|
17
|
-
ariaLabel: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
required: true;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
buttonText: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
required: false;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
}, {
|
|
28
|
-
VARIANTS: {
|
|
29
|
-
readonly primary: "primary";
|
|
30
|
-
readonly secondary: "secondary";
|
|
31
|
-
readonly close: "close";
|
|
32
|
-
readonly next: "next";
|
|
33
|
-
readonly previous: "previous";
|
|
34
|
-
};
|
|
35
|
-
selectedVariant: import("vue").ComputedRef<any>;
|
|
36
|
-
props: any;
|
|
37
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
-
variant: {
|
|
39
|
-
type: null;
|
|
40
|
-
required: true;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
ariaLabel: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
required: true;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
buttonText: {
|
|
49
|
-
type: StringConstructor;
|
|
50
|
-
required: false;
|
|
51
|
-
default: string;
|
|
52
|
-
};
|
|
53
|
-
}>>, {
|
|
54
|
-
variant: any;
|
|
55
|
-
ariaLabel: string;
|
|
56
|
-
buttonText: string;
|
|
57
|
-
}, {}>;
|
|
58
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("next" | "previous")[], "next" | "previous", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
-
isPreviousDisabled: {
|
|
60
|
-
type: BooleanConstructor;
|
|
61
|
-
required: true;
|
|
62
|
-
};
|
|
63
|
-
isNextDisabled: {
|
|
64
|
-
type: BooleanConstructor;
|
|
65
|
-
required: true;
|
|
66
|
-
};
|
|
67
|
-
}>> & {
|
|
68
|
-
onNext?: ((...args: any[]) => any) | undefined;
|
|
69
|
-
onPrevious?: ((...args: any[]) => any) | undefined;
|
|
70
|
-
}, {}, {}>;
|
|
71
|
-
export default _sfc_main;
|
|
1
|
+
export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/pagination/pagination.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/pagination/pagination.vue?vue&type=style&index=0&scoped=9eec8df7&lang.scss";
|
|
3
|
+
declare const _default: any;
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=pagination.vue.d.ts.map
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/search/search.vue?vue&type=style&index=0&scoped=623adb82&lang.scss";
|
|
2
|
+
declare const _default: any;
|
|
2
3
|
export default _default;
|
|
4
|
+
//# sourceMappingURL=search.vue.d.ts.map
|
package/dist/main.d.ts
CHANGED