@explorer-1/vue 0.2.39 → 0.2.41
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/components.d.ts +3 -0
- package/dist/explorer-1-vue.js +4912 -4553
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/BasePill/BasePill.vue.d.ts +4 -10
- package/dist/src/components/BaseSwimlane/BaseSwimlane.vue.d.ts +2 -2
- package/dist/src/components/BlockIframeEmbed/BlockIframeEmbed.vue.d.ts +9 -1
- package/dist/src/components/BlockImage/BlockImageFullBleed.vue.d.ts +23 -4
- package/dist/src/components/BlockImage/BlockImageStandard.vue.d.ts +23 -4
- package/dist/src/components/BlockImageComparison/BlockImageComparison.vue.d.ts +11 -1
- package/dist/src/components/BlockVideo/BlockVideo.vue.d.ts +19 -1
- package/dist/src/components/BlockVideoEmbed/BlockVideoEmbed.vue.d.ts +9 -0
- package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +9 -0
- package/dist/src/components/HeroListingIndex/HeroListingIndex.stories.d.ts +82 -93
- package/dist/src/components/MetadataEduResource/MetadataEduResource.vue.d.ts +4 -0
- package/dist/src/components/MetadataEvent/MetadataEvent.stories.d.ts +1 -0
- package/dist/src/components/MixinCarousel/MixinCarousel.stories.d.ts +4 -4
- package/dist/src/components/MixinCarousel/MixinCarousel.vue.d.ts +2 -2
- package/dist/src/components/MixinFancybox/MixinFancybox.vue.d.ts +1 -1
- package/dist/src/components/NavDesktop/NavDesktop.stories.d.ts +4 -4
- package/dist/src/components/NavDesktop/NavDesktop.vue.d.ts +2 -2
- package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +2 -2
- package/dist/src/components/NavMobile/NavMobile.stories.d.ts +3 -3
- package/dist/src/components/NavMobile/NavMobile.vue.d.ts +1 -1
- package/dist/src/components/NavMobile/NavMobileEdu.stories.d.ts +3 -3
- package/dist/src/components/NavSecondary/NavSecondaryDropdown.vue.d.ts +4 -4
- package/dist/src/components/NewsDetailMediaContact/NewsDetailMediaContact.vue.d.ts +1 -1
- package/dist/src/components/SearchFilterGroup/SearchFilterGroup.vue.d.ts +7 -0
- package/dist/src/components/SearchResultCard/SearchResultCard.vue.d.ts +54 -5
- package/dist/src/components/SearchResultGridItem/SearchResultGridItem.vue.d.ts +42 -4
- package/dist/src/components/TextArea/TextArea.vue.d.ts +9 -9
- package/dist/src/components/TextInput/TextInput.vue.d.ts +9 -9
- package/dist/src/constants.d.ts +12 -2
- package/dist/src/interfaces.d.ts +16 -9
- package/dist/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.stories.d.ts +284 -0
- package/dist/src/templates/edu/PageEduLesson/PageEduLesson.stories.d.ts +8 -2
- package/dist/src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.stories.d.ts +359 -0
- package/dist/src/utils/getHeadingId.d.ts +1 -3
- package/dist/src/utils/lookupContentType.d.ts +3 -0
- package/dist/src/utils/mixins.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/BaseButton/BaseButton.vue +3 -3
- package/src/components/BaseCarousel/BaseCarousel.vue +152 -0
- package/src/components/BaseImageCaption/BaseImageCaption.vue +10 -7
- package/src/components/BlockImage/BlockImageFullBleed.vue +37 -7
- package/src/components/BlockImage/BlockImageStandard.vue +36 -8
- package/src/components/BlockImageComparison/BlockImageComparison.vue +23 -20
- package/src/components/BlockLinkCard/BlockLinkCard.vue +1 -0
- package/src/components/BlockRelatedLinks/RelatedLink.vue +2 -2
- package/src/components/BlockVideo/BlockVideo.vue +22 -2
- package/src/components/BlockVideoEmbed/BlockVideoEmbed.vue +10 -2
- package/src/components/DetailHeadline/DetailHeadline.vue +11 -6
- package/src/components/HeroListingIndex/HeroListingIndex.stories.js +92 -100
- package/src/components/HeroListingIndex/HeroListingIndex.vue +13 -15
- package/src/components/HeroMedium/HeroMedium.vue +1 -1
- package/src/components/MetadataEduResource/MetadataEduResource.vue +8 -2
- package/src/components/MetadataEvent/MetadataEvent.stories.js +1 -0
- package/src/components/MetadataEvent/MetadataEvent.vue +24 -8
- package/src/components/NavDesktop/NavDesktop.vue +6 -4
- package/src/components/NavDesktopEdu/NavDesktopEdu.vue +7 -3
- package/src/components/NavMobile/NavMobile.vue +5 -3
- package/src/components/NewsDetailMediaContact/NewsDetailMediaContact.vue +5 -3
- package/src/components/SearchFilterGroup/SearchFilterGroup.vue +26 -24
- package/src/components/SearchResultCard/SearchResultCard.vue +17 -1
- package/src/components/SearchResultGridItem/SearchResultGridItem.vue +17 -1
- package/src/components/SearchResultsList/SearchResultsList.vue +25 -1
- package/src/interfaces.ts +4 -0
- package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.stories.js +13 -4
- package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.vue +36 -18
- package/src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.vue +1 -0
- package/src/templates/www/PageTimeline/PageTimeline.vue +5 -1
- package/src/utils/mixins.ts +8 -6
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
interface BasePillProps {
|
|
2
|
+
text?: string;
|
|
2
3
|
variant?: string;
|
|
3
4
|
size?: string;
|
|
4
5
|
contentType?: string;
|
|
5
6
|
invert?: boolean;
|
|
6
7
|
}
|
|
7
|
-
declare const _default:
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<BasePillProps>, {
|
|
8
9
|
variant: string;
|
|
9
10
|
size: string;
|
|
10
11
|
contentType: undefined;
|
|
@@ -17,11 +18,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
17
18
|
}>>>, {
|
|
18
19
|
variant: string;
|
|
19
20
|
size: string;
|
|
20
|
-
contentType: string;
|
|
21
21
|
invert: boolean;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}>;
|
|
22
|
+
contentType: string;
|
|
23
|
+
}, {}>;
|
|
25
24
|
export default _default;
|
|
26
25
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
26
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -40,8 +39,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
40
39
|
type __VLS_Prettify<T> = {
|
|
41
40
|
[K in keyof T]: T[K];
|
|
42
41
|
} & {};
|
|
43
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
44
|
-
new (): {
|
|
45
|
-
$slots: S;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
@@ -75,9 +75,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
75
75
|
};
|
|
76
76
|
}>>, {
|
|
77
77
|
transition: string;
|
|
78
|
-
words: unknown[];
|
|
79
|
-
rows: number;
|
|
80
78
|
scale: number;
|
|
79
|
+
rows: number;
|
|
80
|
+
words: unknown[];
|
|
81
81
|
transitionDuration: number;
|
|
82
82
|
transitionDelay: number;
|
|
83
83
|
pauseOnHover: boolean;
|
|
@@ -5,7 +5,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
5
5
|
};
|
|
6
6
|
}, unknown, {
|
|
7
7
|
lazyNative: boolean;
|
|
8
|
-
}, {
|
|
8
|
+
}, {
|
|
9
|
+
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
10
|
+
isEdu(state: {
|
|
11
|
+
theme: import('../../interfaces').Explorer1Theme | null;
|
|
12
|
+
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
13
|
+
}, {
|
|
14
|
+
setTheme(value: import('../../interfaces').Explorer1Theme): void;
|
|
15
|
+
}>;
|
|
16
|
+
}, {
|
|
9
17
|
featureDetectIframeLazyLoad(): void;
|
|
10
18
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
19
|
data: {
|
|
@@ -4,7 +4,7 @@ import { ImageObject } from './../../interfaces';
|
|
|
4
4
|
declare const _default: import('vue').DefineComponent<{
|
|
5
5
|
data: {
|
|
6
6
|
type: PropType<ImageObject>;
|
|
7
|
-
|
|
7
|
+
default: undefined;
|
|
8
8
|
};
|
|
9
9
|
displayCaption: {
|
|
10
10
|
type: BooleanConstructor;
|
|
@@ -12,7 +12,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
12
12
|
};
|
|
13
13
|
caption: {
|
|
14
14
|
type: StringConstructor;
|
|
15
|
-
|
|
15
|
+
default: undefined;
|
|
16
|
+
};
|
|
17
|
+
customDetailUrl: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: undefined;
|
|
16
20
|
};
|
|
17
21
|
constrain: {
|
|
18
22
|
type: BooleanConstructor;
|
|
@@ -23,12 +27,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
23
27
|
}, {
|
|
24
28
|
theCaption(): string | undefined;
|
|
25
29
|
theSrcSet(): string | undefined;
|
|
30
|
+
theCredit(): string | undefined;
|
|
26
31
|
theData(): ImageObject | undefined;
|
|
27
32
|
hasCaptionArea(): boolean;
|
|
33
|
+
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
34
|
+
isEdu(state: {
|
|
35
|
+
theme: import('./../../interfaces').Explorer1Theme | null;
|
|
36
|
+
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
37
|
+
}, {
|
|
38
|
+
setTheme(value: import('./../../interfaces').Explorer1Theme): void;
|
|
39
|
+
}>;
|
|
28
40
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
29
41
|
data: {
|
|
30
42
|
type: PropType<ImageObject>;
|
|
31
|
-
|
|
43
|
+
default: undefined;
|
|
32
44
|
};
|
|
33
45
|
displayCaption: {
|
|
34
46
|
type: BooleanConstructor;
|
|
@@ -36,14 +48,21 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
36
48
|
};
|
|
37
49
|
caption: {
|
|
38
50
|
type: StringConstructor;
|
|
39
|
-
|
|
51
|
+
default: undefined;
|
|
52
|
+
};
|
|
53
|
+
customDetailUrl: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: undefined;
|
|
40
56
|
};
|
|
41
57
|
constrain: {
|
|
42
58
|
type: BooleanConstructor;
|
|
43
59
|
default: boolean;
|
|
44
60
|
};
|
|
45
61
|
}>>, {
|
|
62
|
+
caption: string;
|
|
63
|
+
data: ImageObject;
|
|
46
64
|
displayCaption: boolean;
|
|
65
|
+
customDetailUrl: string;
|
|
47
66
|
constrain: boolean;
|
|
48
67
|
}, {}>;
|
|
49
68
|
export default _default;
|
|
@@ -4,7 +4,7 @@ import { ImageObject } from './../../interfaces';
|
|
|
4
4
|
declare const _default: import('vue').DefineComponent<{
|
|
5
5
|
data: {
|
|
6
6
|
type: PropType<ImageObject>;
|
|
7
|
-
|
|
7
|
+
default: undefined;
|
|
8
8
|
};
|
|
9
9
|
displayCaption: {
|
|
10
10
|
type: BooleanConstructor;
|
|
@@ -12,7 +12,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
12
12
|
};
|
|
13
13
|
caption: {
|
|
14
14
|
type: StringConstructor;
|
|
15
|
-
|
|
15
|
+
default: undefined;
|
|
16
|
+
};
|
|
17
|
+
customDetailUrl: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: undefined;
|
|
16
20
|
};
|
|
17
21
|
constrain: {
|
|
18
22
|
type: BooleanConstructor;
|
|
@@ -20,12 +24,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
20
24
|
};
|
|
21
25
|
}, unknown, unknown, {
|
|
22
26
|
theCaption(): string | undefined;
|
|
27
|
+
theCredit(): string | undefined;
|
|
23
28
|
theData(): ImageObject | undefined;
|
|
24
29
|
hasCaptionArea(): boolean;
|
|
30
|
+
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
31
|
+
isEdu(state: {
|
|
32
|
+
theme: import('./../../interfaces').Explorer1Theme | null;
|
|
33
|
+
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
34
|
+
}, {
|
|
35
|
+
setTheme(value: import('./../../interfaces').Explorer1Theme): void;
|
|
36
|
+
}>;
|
|
25
37
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
26
38
|
data: {
|
|
27
39
|
type: PropType<ImageObject>;
|
|
28
|
-
|
|
40
|
+
default: undefined;
|
|
29
41
|
};
|
|
30
42
|
displayCaption: {
|
|
31
43
|
type: BooleanConstructor;
|
|
@@ -33,14 +45,21 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
33
45
|
};
|
|
34
46
|
caption: {
|
|
35
47
|
type: StringConstructor;
|
|
36
|
-
|
|
48
|
+
default: undefined;
|
|
49
|
+
};
|
|
50
|
+
customDetailUrl: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: undefined;
|
|
37
53
|
};
|
|
38
54
|
constrain: {
|
|
39
55
|
type: BooleanConstructor;
|
|
40
56
|
default: boolean;
|
|
41
57
|
};
|
|
42
58
|
}>>, {
|
|
59
|
+
caption: string;
|
|
60
|
+
data: ImageObject;
|
|
43
61
|
displayCaption: boolean;
|
|
62
|
+
customDetailUrl: string;
|
|
44
63
|
constrain: boolean;
|
|
45
64
|
}, {}>;
|
|
46
65
|
export default _default;
|
|
@@ -3,6 +3,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
3
3
|
type: ObjectConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
+
customDetailUrl: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: undefined;
|
|
9
|
+
};
|
|
6
10
|
}, unknown, unknown, {
|
|
7
11
|
theBeforeImageSrc(): any;
|
|
8
12
|
theAfterImageSrc(): any;
|
|
@@ -11,5 +15,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
11
15
|
type: ObjectConstructor;
|
|
12
16
|
required: true;
|
|
13
17
|
};
|
|
14
|
-
|
|
18
|
+
customDetailUrl: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: undefined;
|
|
21
|
+
};
|
|
22
|
+
}>>, {
|
|
23
|
+
customDetailUrl: string;
|
|
24
|
+
}, {}>;
|
|
15
25
|
export default _default;
|
|
@@ -7,7 +7,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
7
7
|
type: BooleanConstructor;
|
|
8
8
|
default: boolean;
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
customDetailUrl: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
}, unknown, unknown, {
|
|
15
|
+
hasCaption(): any;
|
|
16
|
+
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
17
|
+
isEdu(state: {
|
|
18
|
+
theme: import('../../interfaces').Explorer1Theme | null;
|
|
19
|
+
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
20
|
+
}, {
|
|
21
|
+
setTheme(value: import('../../interfaces').Explorer1Theme): void;
|
|
22
|
+
}>;
|
|
23
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
24
|
data: {
|
|
12
25
|
type: ObjectConstructor;
|
|
13
26
|
required: false;
|
|
@@ -16,7 +29,12 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
16
29
|
type: BooleanConstructor;
|
|
17
30
|
default: boolean;
|
|
18
31
|
};
|
|
32
|
+
customDetailUrl: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: undefined;
|
|
35
|
+
};
|
|
19
36
|
}>>, {
|
|
20
37
|
autoplay: boolean;
|
|
38
|
+
customDetailUrl: string;
|
|
21
39
|
}, {}>;
|
|
22
40
|
export default _default;
|
|
@@ -15,6 +15,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
15
15
|
required: false;
|
|
16
16
|
default: undefined;
|
|
17
17
|
};
|
|
18
|
+
customDetailUrl: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: undefined;
|
|
21
|
+
};
|
|
18
22
|
}, unknown, unknown, {}, {
|
|
19
23
|
addIframeLazyLoad(): void;
|
|
20
24
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -23,7 +27,12 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
23
27
|
required: false;
|
|
24
28
|
default: undefined;
|
|
25
29
|
};
|
|
30
|
+
customDetailUrl: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: undefined;
|
|
33
|
+
};
|
|
26
34
|
}>>, {
|
|
27
35
|
data: Partial<BlockData>;
|
|
36
|
+
customDetailUrl: string;
|
|
28
37
|
}, {}>;
|
|
29
38
|
export default _default;
|
|
@@ -58,6 +58,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
58
58
|
type: BooleanConstructor;
|
|
59
59
|
default: boolean;
|
|
60
60
|
};
|
|
61
|
+
hideDate: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
61
65
|
}, unknown, unknown, {
|
|
62
66
|
hasTag(): boolean;
|
|
63
67
|
hasEyebrow(): boolean;
|
|
@@ -129,6 +133,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
129
133
|
type: BooleanConstructor;
|
|
130
134
|
default: boolean;
|
|
131
135
|
};
|
|
136
|
+
hideDate: {
|
|
137
|
+
type: BooleanConstructor;
|
|
138
|
+
default: boolean;
|
|
139
|
+
};
|
|
132
140
|
}>>, {
|
|
133
141
|
label: string;
|
|
134
142
|
title: string;
|
|
@@ -143,5 +151,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
143
151
|
pill: boolean;
|
|
144
152
|
pillColor: string;
|
|
145
153
|
schema: boolean;
|
|
154
|
+
hideDate: boolean;
|
|
146
155
|
}, {}>;
|
|
147
156
|
export default _default;
|
|
@@ -9,29 +9,27 @@ declare namespace _default {
|
|
|
9
9
|
}
|
|
10
10
|
export default _default;
|
|
11
11
|
export namespace HeroListingIndexData {
|
|
12
|
-
namespace
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
export { url_3 as url };
|
|
34
|
-
}
|
|
12
|
+
namespace featuredPage {
|
|
13
|
+
export let __typename: string;
|
|
14
|
+
export let topicLabel: string;
|
|
15
|
+
export let url: string;
|
|
16
|
+
let title_1: string;
|
|
17
|
+
export { title_1 as title };
|
|
18
|
+
export namespace image {
|
|
19
|
+
namespace src {
|
|
20
|
+
let url_1: string;
|
|
21
|
+
export { url_1 as url };
|
|
22
|
+
export let width: number;
|
|
23
|
+
export let height: number;
|
|
24
|
+
}
|
|
25
|
+
let srcSet: string;
|
|
26
|
+
namespace screenMd {
|
|
27
|
+
let url_2: string;
|
|
28
|
+
export { url_2 as url };
|
|
29
|
+
}
|
|
30
|
+
namespace screenSm {
|
|
31
|
+
let url_3: string;
|
|
32
|
+
export { url_3 as url };
|
|
35
33
|
}
|
|
36
34
|
}
|
|
37
35
|
}
|
|
@@ -40,7 +38,7 @@ export namespace BaseStory {
|
|
|
40
38
|
let name: string;
|
|
41
39
|
namespace args {
|
|
42
40
|
export let customLabel: string;
|
|
43
|
-
import pageData = HeroListingIndexData.
|
|
41
|
+
import pageData = HeroListingIndexData.featuredPage;
|
|
44
42
|
export { pageData };
|
|
45
43
|
}
|
|
46
44
|
}
|
|
@@ -49,32 +47,29 @@ export namespace NewsImageHero {
|
|
|
49
47
|
let customLabel_1: string;
|
|
50
48
|
export { customLabel_1 as customLabel };
|
|
51
49
|
export namespace pageData_1 {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
height: number;
|
|
66
|
-
};
|
|
67
|
-
srcSet: string;
|
|
68
|
-
screenMd: {
|
|
69
|
-
url: string;
|
|
70
|
-
};
|
|
71
|
-
screenSm: {
|
|
72
|
-
url: string;
|
|
73
|
-
};
|
|
50
|
+
let topicLabel_1: string;
|
|
51
|
+
export { topicLabel_1 as topicLabel };
|
|
52
|
+
let url_4: string;
|
|
53
|
+
export { url_4 as url };
|
|
54
|
+
let title_2: string;
|
|
55
|
+
export { title_2 as title };
|
|
56
|
+
export let heroBlocks: {
|
|
57
|
+
blockType: string;
|
|
58
|
+
listingPageHeroImage: {
|
|
59
|
+
src: {
|
|
60
|
+
url: string;
|
|
61
|
+
width: number;
|
|
62
|
+
height: number;
|
|
74
63
|
};
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
64
|
+
srcSet: string;
|
|
65
|
+
screenMd: {
|
|
66
|
+
url: string;
|
|
67
|
+
};
|
|
68
|
+
screenSm: {
|
|
69
|
+
url: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
}[];
|
|
78
73
|
}
|
|
79
74
|
export { pageData_1 as pageData };
|
|
80
75
|
}
|
|
@@ -85,23 +80,20 @@ export namespace NewsVideoHero {
|
|
|
85
80
|
let customLabel_2: string;
|
|
86
81
|
export { customLabel_2 as customLabel };
|
|
87
82
|
export namespace pageData_2 {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
export { heroBlocks_1 as heroBlocks };
|
|
103
|
-
}
|
|
104
|
-
export { featured_2 as featured };
|
|
83
|
+
let topicLabel_2: string;
|
|
84
|
+
export { topicLabel_2 as topicLabel };
|
|
85
|
+
let url_5: string;
|
|
86
|
+
export { url_5 as url };
|
|
87
|
+
let title_3: string;
|
|
88
|
+
export { title_3 as title };
|
|
89
|
+
let heroBlocks_1: {
|
|
90
|
+
blockType: string;
|
|
91
|
+
video: {
|
|
92
|
+
file: string;
|
|
93
|
+
fileWebm: string;
|
|
94
|
+
};
|
|
95
|
+
}[];
|
|
96
|
+
export { heroBlocks_1 as heroBlocks };
|
|
105
97
|
}
|
|
106
98
|
export { pageData_2 as pageData };
|
|
107
99
|
}
|
|
@@ -112,35 +104,32 @@ export namespace NewsCarouselHero {
|
|
|
112
104
|
let customLabel_3: string;
|
|
113
105
|
export { customLabel_3 as customLabel };
|
|
114
106
|
export namespace pageData_3 {
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
height: number;
|
|
130
|
-
};
|
|
131
|
-
srcSet: string;
|
|
132
|
-
screenMd: {
|
|
133
|
-
url: string;
|
|
134
|
-
};
|
|
135
|
-
screenSm: {
|
|
136
|
-
url: string;
|
|
137
|
-
};
|
|
107
|
+
let topicLabel_3: string;
|
|
108
|
+
export { topicLabel_3 as topicLabel };
|
|
109
|
+
let url_6: string;
|
|
110
|
+
export { url_6 as url };
|
|
111
|
+
let title_4: string;
|
|
112
|
+
export { title_4 as title };
|
|
113
|
+
let heroBlocks_2: {
|
|
114
|
+
blockType: string;
|
|
115
|
+
blocks: {
|
|
116
|
+
listingPageHeroImage: {
|
|
117
|
+
src: {
|
|
118
|
+
url: string;
|
|
119
|
+
width: number;
|
|
120
|
+
height: number;
|
|
138
121
|
};
|
|
139
|
-
|
|
122
|
+
srcSet: string;
|
|
123
|
+
screenMd: {
|
|
124
|
+
url: string;
|
|
125
|
+
};
|
|
126
|
+
screenSm: {
|
|
127
|
+
url: string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
140
130
|
}[];
|
|
141
|
-
|
|
142
|
-
}
|
|
143
|
-
export { featured_3 as featured };
|
|
131
|
+
}[];
|
|
132
|
+
export { heroBlocks_2 as heroBlocks };
|
|
144
133
|
}
|
|
145
134
|
export { pageData_3 as pageData };
|
|
146
135
|
}
|
|
@@ -4,19 +4,23 @@ interface MetadataEduResourceProps {
|
|
|
4
4
|
resource: EduResourceCardObject;
|
|
5
5
|
compact?: boolean;
|
|
6
6
|
variant?: string;
|
|
7
|
+
showTime: boolean;
|
|
7
8
|
}
|
|
8
9
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MetadataEduResourceProps>, {
|
|
9
10
|
resource: undefined;
|
|
10
11
|
compact: boolean;
|
|
12
|
+
showTime: boolean;
|
|
11
13
|
variant: string;
|
|
12
14
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MetadataEduResourceProps>, {
|
|
13
15
|
resource: undefined;
|
|
14
16
|
compact: boolean;
|
|
17
|
+
showTime: boolean;
|
|
15
18
|
variant: string;
|
|
16
19
|
}>>>, {
|
|
17
20
|
variant: string;
|
|
18
21
|
resource: EduResourceCardObject;
|
|
19
22
|
compact: boolean;
|
|
23
|
+
showTime: boolean;
|
|
20
24
|
}, {}>;
|
|
21
25
|
export default _default;
|
|
22
26
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -19,6 +19,7 @@ export namespace MetadataEventData {
|
|
|
19
19
|
export let endTime: string;
|
|
20
20
|
export let ongoing: boolean;
|
|
21
21
|
export let isVirtualEvent: boolean;
|
|
22
|
+
export let isInPersonEvent: boolean;
|
|
22
23
|
export let locationName: string;
|
|
23
24
|
export let locationLink: string;
|
|
24
25
|
export let customDate: undefined;
|
|
@@ -122,11 +122,11 @@ export namespace BaseStory {
|
|
|
122
122
|
};
|
|
123
123
|
}>>, {
|
|
124
124
|
variant: string;
|
|
125
|
+
initialSlide: number;
|
|
126
|
+
slidesPerView: number;
|
|
125
127
|
indent: string;
|
|
126
128
|
noLinks: boolean;
|
|
127
|
-
slidesPerView: number;
|
|
128
129
|
center: boolean;
|
|
129
|
-
initialSlide: number;
|
|
130
130
|
}, {}>;
|
|
131
131
|
};
|
|
132
132
|
setup(): {
|
|
@@ -249,11 +249,11 @@ export namespace BaseCarouselWLink {
|
|
|
249
249
|
};
|
|
250
250
|
}>>, {
|
|
251
251
|
variant: string;
|
|
252
|
+
initialSlide: number;
|
|
253
|
+
slidesPerView: number;
|
|
252
254
|
indent: string;
|
|
253
255
|
noLinks: boolean;
|
|
254
|
-
slidesPerView: number;
|
|
255
256
|
center: boolean;
|
|
256
|
-
initialSlide: number;
|
|
257
257
|
}, {}>;
|
|
258
258
|
};
|
|
259
259
|
setup(): {
|
|
@@ -109,10 +109,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
109
109
|
};
|
|
110
110
|
}>>, {
|
|
111
111
|
variant: string;
|
|
112
|
+
initialSlide: number;
|
|
113
|
+
slidesPerView: number;
|
|
112
114
|
indent: string;
|
|
113
115
|
noLinks: boolean;
|
|
114
|
-
slidesPerView: number;
|
|
115
116
|
center: boolean;
|
|
116
|
-
initialSlide: number;
|
|
117
117
|
}, {}>;
|
|
118
118
|
export default _default;
|
|
@@ -144,10 +144,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
144
144
|
validator: (prop: unknown) => boolean;
|
|
145
145
|
};
|
|
146
146
|
}>>, {
|
|
147
|
+
theme: string;
|
|
147
148
|
infinite: boolean;
|
|
148
149
|
showThumbnails: boolean;
|
|
149
150
|
animated: boolean;
|
|
150
151
|
galleryName: string;
|
|
151
|
-
theme: string;
|
|
152
152
|
}, {}>;
|
|
153
153
|
export default _default;
|
|
@@ -336,8 +336,8 @@ export namespace BaseStory {
|
|
|
336
336
|
}>;
|
|
337
337
|
}, {
|
|
338
338
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
339
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
340
|
-
checkActiveMore(): boolean;
|
|
339
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
340
|
+
checkActiveMore(): boolean | undefined;
|
|
341
341
|
toggleSearch(): void;
|
|
342
342
|
closeSearch(): void;
|
|
343
343
|
openSearch(): void;
|
|
@@ -449,8 +449,8 @@ export namespace NavInverted {
|
|
|
449
449
|
}>;
|
|
450
450
|
}, {
|
|
451
451
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
452
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
453
|
-
checkActiveMore(): boolean;
|
|
452
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
453
|
+
checkActiveMore(): boolean | undefined;
|
|
454
454
|
toggleSearch(): void;
|
|
455
455
|
closeSearch(): void;
|
|
456
456
|
openSearch(): void;
|
|
@@ -47,8 +47,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
47
47
|
}>;
|
|
48
48
|
}, {
|
|
49
49
|
getUrlKey(item: LinkObject): string | null;
|
|
50
|
-
checkActive(item: LinkObject): boolean;
|
|
51
|
-
checkActiveMore(): boolean;
|
|
50
|
+
checkActive(item: LinkObject): boolean | undefined;
|
|
51
|
+
checkActiveMore(): boolean | undefined;
|
|
52
52
|
toggleSearch(): void;
|
|
53
53
|
closeSearch(): void;
|
|
54
54
|
openSearch(): void;
|
|
@@ -285,8 +285,8 @@ export namespace BaseStory {
|
|
|
285
285
|
}>;
|
|
286
286
|
}, {
|
|
287
287
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
288
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
289
|
-
checkActiveMore(): boolean;
|
|
288
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
289
|
+
checkActiveMore(): boolean | undefined;
|
|
290
290
|
toggleSearch(): void;
|
|
291
291
|
closeSearch(): void;
|
|
292
292
|
openSearch(): void;
|