@explorer-1/vue 0.2.7 → 0.2.9
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 +6 -1
- package/dist/explorer-1-vue.js +6871 -6420
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/{BaseTag/BaseTag.stories.d.ts → BasePill/BasePill.stories.d.ts} +2 -2
- package/dist/src/components/{BaseTag/BaseTag.vue.d.ts → BasePill/BasePill.vue.d.ts} +7 -3
- package/dist/src/components/BlockLinkCard/BlockLinkCard.stories.d.ts +89 -15
- package/dist/src/components/BlockLinkCard/BlockLinkCard.vue.d.ts +66 -7
- package/dist/src/components/BlockLinkCarousel/BlockLinkCarousel.stories.d.ts +70 -2
- package/dist/src/components/BlockLinkTile/BlockLinkTile.vue.d.ts +4 -4
- package/dist/src/components/CalendarButton/CalendarButton.vue.d.ts +2 -2
- package/dist/src/components/CalendarChip/CalendarChip.vue.d.ts +36 -0
- package/dist/src/components/EventCard/EventCard.vue.d.ts +9 -0
- package/dist/src/components/EventDetailHero/EventDetailHero.vue.d.ts +27 -9
- package/dist/src/components/HeroListingIndex/HeroListingIndex.stories.d.ts +1 -0
- package/dist/src/components/HeroListingIndex/HeroListingIndex.vue.d.ts +6 -4
- package/dist/src/components/HeroMedium/HeroMedium.vue.d.ts +28 -2
- package/dist/src/components/Icons/IconProfile.vue.d.ts +2 -0
- package/dist/src/components/Icons/IconSubject.vue.d.ts +2 -0
- package/dist/src/components/Icons/Icons.stories.d.ts +17 -0
- package/dist/src/components/MetadataEduResource/MetadataEduResource.stories.d.ts +55 -0
- package/dist/src/components/MetadataEduResource/MetadataEduResource.vue.d.ts +38 -0
- package/dist/src/components/MetadataEvent/MetadataEvent.stories.d.ts +29 -0
- package/dist/src/components/MetadataEvent/MetadataEvent.vue.d.ts +38 -0
- package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +1 -0
- package/dist/src/components/SearchResultCard/SearchResultCard.stories.d.ts +23 -4
- package/dist/src/components/SearchResultCard/SearchResultCard.vue.d.ts +66 -1
- package/dist/src/components/SearchResultGridItem/SearchResultGridItem.stories.d.ts +7 -0
- package/dist/src/components/SearchResultGridItem/SearchResultGridItem.vue.d.ts +65 -11
- package/dist/src/components/SearchResultsList/SearchResultsList.stories.d.ts +404 -0
- package/dist/src/components/TopicDetailMoreItem/TopicDetailMoreItem.vue.d.ts +8 -4
- package/dist/src/constants.d.ts +4 -0
- package/dist/src/interfaces.d.ts +38 -3
- package/dist/src/templates/PageContent/PageContent.stories.d.ts +1 -0
- package/dist/src/templates/PageEventDetail/PageEventDetail.stories.d.ts +2 -13
- package/dist/src/templates/PageEventDetail/PageEventDetail.vue.d.ts +6 -3
- package/dist/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.d.ts +153 -31
- package/dist/src/utils/mixins.d.ts +1 -1
- package/dist/src/utils/rangeifyGrades.d.ts +3 -0
- package/dist/style.css +1 -1
- package/lib/main.ts +2 -2
- package/package.json +2 -2
- package/src/components/{BaseTag/BaseTag.stories.js → BasePill/BasePill.stories.js} +3 -3
- package/src/components/BasePill/BasePill.vue +54 -0
- package/src/components/BlockLinkCard/BlockLinkCard.stories.js +93 -12
- package/src/components/BlockLinkCard/BlockLinkCard.vue +180 -39
- package/src/components/BlockLinkCarousel/BlockLinkCarousel.stories.js +60 -3
- package/src/components/BlockLinkTile/BlockLinkTile.vue +11 -8
- package/src/components/CalendarChip/CalendarChip.vue +52 -0
- package/src/components/DetailHeadline/DetailHeadline.vue +5 -5
- package/src/components/EventCard/EventCard.vue +28 -88
- package/src/components/EventDetailHero/EventDetailHero.vue +18 -25
- package/src/components/HeroListingIndex/HeroListingIndex.stories.js +1 -0
- package/src/components/HeroListingIndex/HeroListingIndex.vue +8 -3
- package/src/components/HeroMedium/HeroMedium.vue +24 -12
- package/src/components/Icons/IconProfile.vue +30 -0
- package/src/components/Icons/IconSubject.vue +38 -0
- package/src/components/Icons/Icons.stories.ts +15 -0
- package/src/components/MetadataEduResource/MetadataEduResource.stories.js +59 -0
- package/src/components/MetadataEduResource/MetadataEduResource.vue +93 -0
- package/src/components/MetadataEvent/MetadataEvent.stories.js +31 -0
- package/src/components/MetadataEvent/MetadataEvent.vue +164 -0
- package/src/components/NavMobile/NavMobile.vue +3 -1
- package/src/components/SearchResultCard/SearchResultCard.stories.js +22 -5
- package/src/components/SearchResultCard/SearchResultCard.vue +71 -14
- package/src/components/SearchResultGridItem/SearchResultGridItem.stories.js +8 -1
- package/src/components/SearchResultGridItem/SearchResultGridItem.vue +81 -31
- package/src/components/SearchResultsList/SearchResultsList.stories.js +1197 -0
- package/src/components/SearchResultsList/SearchResultsList.vue +1 -0
- package/src/components/TopicDetailMoreItem/TopicDetailMoreItem.vue +12 -8
- package/src/constants.ts +20 -0
- package/src/interfaces.ts +41 -3
- package/src/templates/PageContent/PageContent.stories.js +1 -0
- package/src/templates/PageEventDetail/PageEventDetail.stories.js +1 -1
- package/src/templates/PageEventDetail/PageEventDetail.vue +25 -90
- package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.js +4 -3
- package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue +38 -123
- package/src/utils/mixins.ts +2 -2
- package/src/utils/rangeifyGrades.ts +76 -0
- package/src/components/BaseTag/BaseTag.vue +0 -36
|
@@ -38,6 +38,7 @@ declare const _default: {
|
|
|
38
38
|
IconPlay: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
39
39
|
IconPlus: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
40
40
|
IconPrev: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
41
|
+
IconProfile: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
41
42
|
IconRewindTen: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
42
43
|
IconSearch: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
43
44
|
IconShare: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
@@ -482,6 +483,22 @@ export declare const User: {
|
|
|
482
483
|
template: string;
|
|
483
484
|
};
|
|
484
485
|
};
|
|
486
|
+
export declare const Profile: {
|
|
487
|
+
render: () => {
|
|
488
|
+
components: {
|
|
489
|
+
IconProfile: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
490
|
+
};
|
|
491
|
+
template: string;
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
export declare const Subject: {
|
|
495
|
+
render: () => {
|
|
496
|
+
components: {
|
|
497
|
+
IconSubject: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
498
|
+
};
|
|
499
|
+
template: string;
|
|
500
|
+
};
|
|
501
|
+
};
|
|
485
502
|
export declare const Volume: {
|
|
486
503
|
render: () => {
|
|
487
504
|
components: {
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { default as MetadataEduResource } from './MetadataEduResource.vue';
|
|
2
|
+
declare namespace _default {
|
|
3
|
+
export let title: string;
|
|
4
|
+
export { MetadataEduResource as component };
|
|
5
|
+
export let tags: string[];
|
|
6
|
+
export namespace argTypes {
|
|
7
|
+
namespace variant {
|
|
8
|
+
namespace type {
|
|
9
|
+
let name: string;
|
|
10
|
+
let required: boolean;
|
|
11
|
+
}
|
|
12
|
+
namespace control {
|
|
13
|
+
let type_1: string;
|
|
14
|
+
export { type_1 as type };
|
|
15
|
+
export let options: string[];
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export let excludeStories: RegExp;
|
|
20
|
+
}
|
|
21
|
+
export default _default;
|
|
22
|
+
export namespace MetadataEduResourceData {
|
|
23
|
+
export namespace resource {
|
|
24
|
+
let title_1: string;
|
|
25
|
+
export { title_1 as title };
|
|
26
|
+
export namespace primarySubject {
|
|
27
|
+
let subject: string;
|
|
28
|
+
}
|
|
29
|
+
export let gradeLevels: {
|
|
30
|
+
gradeLevel: string;
|
|
31
|
+
}[];
|
|
32
|
+
}
|
|
33
|
+
export let compact: boolean;
|
|
34
|
+
let variant_1: string;
|
|
35
|
+
export { variant_1 as variant };
|
|
36
|
+
}
|
|
37
|
+
export namespace BaseStory {
|
|
38
|
+
let name_1: string;
|
|
39
|
+
export { name_1 as name };
|
|
40
|
+
export namespace args { }
|
|
41
|
+
}
|
|
42
|
+
export namespace MultipleGradeLevels {
|
|
43
|
+
export namespace args_1 {
|
|
44
|
+
export namespace resource_1 {
|
|
45
|
+
let gradeLevels_1: {
|
|
46
|
+
gradeLevel: string;
|
|
47
|
+
}[];
|
|
48
|
+
export { gradeLevels_1 as gradeLevels };
|
|
49
|
+
}
|
|
50
|
+
export { resource_1 as resource };
|
|
51
|
+
let variant_2: string;
|
|
52
|
+
export { variant_2 as variant };
|
|
53
|
+
}
|
|
54
|
+
export { args_1 as args };
|
|
55
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EduResourceCardObject } from './../../interfaces.ts';
|
|
2
|
+
|
|
3
|
+
interface MetadataEduResourceProps {
|
|
4
|
+
resource: EduResourceCardObject;
|
|
5
|
+
compact?: boolean;
|
|
6
|
+
variant?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MetadataEduResourceProps>, {
|
|
9
|
+
resource: undefined;
|
|
10
|
+
compact: boolean;
|
|
11
|
+
variant: string;
|
|
12
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MetadataEduResourceProps>, {
|
|
13
|
+
resource: undefined;
|
|
14
|
+
compact: boolean;
|
|
15
|
+
variant: string;
|
|
16
|
+
}>>>, {
|
|
17
|
+
variant: string;
|
|
18
|
+
compact: boolean;
|
|
19
|
+
resource: EduResourceCardObject;
|
|
20
|
+
}, {}>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
24
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
+
} : {
|
|
27
|
+
type: import('vue').PropType<T[K]>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
type __VLS_WithDefaults<P, D> = {
|
|
32
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
33
|
+
default: D[K];
|
|
34
|
+
}> : P[K];
|
|
35
|
+
};
|
|
36
|
+
type __VLS_Prettify<T> = {
|
|
37
|
+
[K in keyof T]: T[K];
|
|
38
|
+
} & {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { default as MetadataEvent } from './MetadataEvent.vue';
|
|
2
|
+
declare namespace _default {
|
|
3
|
+
export let title: string;
|
|
4
|
+
export { MetadataEvent as component };
|
|
5
|
+
export let tags: string[];
|
|
6
|
+
export let excludeStories: RegExp;
|
|
7
|
+
}
|
|
8
|
+
export default _default;
|
|
9
|
+
export namespace MetadataEventData {
|
|
10
|
+
namespace event {
|
|
11
|
+
let title_1: string;
|
|
12
|
+
export { title_1 as title };
|
|
13
|
+
export let location: string;
|
|
14
|
+
export let startDate: string;
|
|
15
|
+
export let startDatetime: string;
|
|
16
|
+
export let endDate: string;
|
|
17
|
+
export let ongoing: boolean;
|
|
18
|
+
export let isVirtualEvent: boolean;
|
|
19
|
+
export let endDatetime: string;
|
|
20
|
+
export let locationName: string;
|
|
21
|
+
export let locationLink: string;
|
|
22
|
+
export let customDate: undefined;
|
|
23
|
+
}
|
|
24
|
+
let compact: boolean;
|
|
25
|
+
}
|
|
26
|
+
export namespace BaseStory {
|
|
27
|
+
export let name: string;
|
|
28
|
+
export { MetadataEventData as args };
|
|
29
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EventCardObject } from './../../interfaces.ts';
|
|
2
|
+
|
|
3
|
+
interface MetadataEventProps {
|
|
4
|
+
event: EventCardObject;
|
|
5
|
+
compact?: boolean;
|
|
6
|
+
allowBreak?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MetadataEventProps>, {
|
|
9
|
+
event: undefined;
|
|
10
|
+
compact: boolean;
|
|
11
|
+
allowBreak: boolean;
|
|
12
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MetadataEventProps>, {
|
|
13
|
+
event: undefined;
|
|
14
|
+
compact: boolean;
|
|
15
|
+
allowBreak: boolean;
|
|
16
|
+
}>>>, {
|
|
17
|
+
compact: boolean;
|
|
18
|
+
event: EventCardObject;
|
|
19
|
+
allowBreak: boolean;
|
|
20
|
+
}, {}>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
24
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
+
} : {
|
|
27
|
+
type: import('vue').PropType<T[K]>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
type __VLS_WithDefaults<P, D> = {
|
|
32
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
33
|
+
default: D[K];
|
|
34
|
+
}> : P[K];
|
|
35
|
+
};
|
|
36
|
+
type __VLS_Prettify<T> = {
|
|
37
|
+
[K in keyof T]: T[K];
|
|
38
|
+
} & {};
|
|
@@ -34,7 +34,6 @@ export namespace SearchResultCardData {
|
|
|
34
34
|
}
|
|
35
35
|
let headingLevel_1: string;
|
|
36
36
|
export { headingLevel_1 as headingLevel };
|
|
37
|
-
export let featured: boolean;
|
|
38
37
|
}
|
|
39
38
|
export namespace BaseStory {
|
|
40
39
|
export let name: string;
|
|
@@ -42,11 +41,10 @@ export namespace BaseStory {
|
|
|
42
41
|
}
|
|
43
42
|
export namespace FeaturedResult {
|
|
44
43
|
namespace args {
|
|
45
|
-
let
|
|
46
|
-
export { featured_1 as featured };
|
|
44
|
+
let featured: boolean;
|
|
47
45
|
}
|
|
48
46
|
}
|
|
49
|
-
export namespace
|
|
47
|
+
export namespace EventCard {
|
|
50
48
|
export namespace args_1 {
|
|
51
49
|
export let isEvents: boolean;
|
|
52
50
|
let type_2: string;
|
|
@@ -60,3 +58,24 @@ export namespace EventResult {
|
|
|
60
58
|
}
|
|
61
59
|
export { args_1 as args };
|
|
62
60
|
}
|
|
61
|
+
export namespace PodcastEpisodeCard {
|
|
62
|
+
export namespace args_2 {
|
|
63
|
+
export let isPodcastSeason: boolean;
|
|
64
|
+
let type_3: string;
|
|
65
|
+
export { type_3 as type };
|
|
66
|
+
let compact_1: boolean;
|
|
67
|
+
export { compact_1 as compact };
|
|
68
|
+
}
|
|
69
|
+
export { args_2 as args };
|
|
70
|
+
}
|
|
71
|
+
export namespace EduEventCard {
|
|
72
|
+
export namespace args_3 {
|
|
73
|
+
export let pageContentType: string;
|
|
74
|
+
let startDate_1: string;
|
|
75
|
+
export { startDate_1 as startDate };
|
|
76
|
+
let endDate_1: string;
|
|
77
|
+
export { endDate_1 as endDate };
|
|
78
|
+
export let eventType: string;
|
|
79
|
+
}
|
|
80
|
+
export { args_3 as args };
|
|
81
|
+
}
|
|
@@ -10,26 +10,37 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
10
10
|
type: {
|
|
11
11
|
type: StringConstructor;
|
|
12
12
|
required: false;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
eventType: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
default: undefined;
|
|
13
19
|
};
|
|
14
20
|
topic: {
|
|
15
21
|
type: StringConstructor;
|
|
16
22
|
required: false;
|
|
23
|
+
default: undefined;
|
|
17
24
|
};
|
|
18
25
|
date: {
|
|
19
26
|
type: StringConstructor;
|
|
20
27
|
required: false;
|
|
28
|
+
default: undefined;
|
|
21
29
|
};
|
|
22
30
|
title: {
|
|
23
31
|
type: StringConstructor;
|
|
24
32
|
required: false;
|
|
33
|
+
default: undefined;
|
|
25
34
|
};
|
|
26
35
|
summary: {
|
|
27
36
|
type: StringConstructor;
|
|
28
37
|
required: false;
|
|
38
|
+
default: undefined;
|
|
29
39
|
};
|
|
30
40
|
image: {
|
|
31
41
|
type: ObjectConstructor;
|
|
32
42
|
required: false;
|
|
43
|
+
default: undefined;
|
|
33
44
|
};
|
|
34
45
|
featured: {
|
|
35
46
|
type: BooleanConstructor;
|
|
@@ -56,28 +67,47 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
56
67
|
media: {
|
|
57
68
|
type: StringConstructor;
|
|
58
69
|
required: false;
|
|
70
|
+
default: undefined;
|
|
59
71
|
};
|
|
60
72
|
startTime: {
|
|
61
73
|
type: StringConstructor;
|
|
62
74
|
required: false;
|
|
75
|
+
default: undefined;
|
|
63
76
|
};
|
|
64
77
|
startDate: {
|
|
65
78
|
type: StringConstructor;
|
|
66
79
|
required: false;
|
|
80
|
+
default: undefined;
|
|
67
81
|
};
|
|
68
82
|
endTime: {
|
|
69
83
|
type: StringConstructor;
|
|
70
84
|
required: false;
|
|
85
|
+
default: undefined;
|
|
71
86
|
};
|
|
72
87
|
endDate: {
|
|
73
88
|
type: StringConstructor;
|
|
74
89
|
required: false;
|
|
90
|
+
default: undefined;
|
|
75
91
|
};
|
|
76
92
|
location: {
|
|
77
93
|
type: StringConstructor;
|
|
78
94
|
required: false;
|
|
95
|
+
default: undefined;
|
|
96
|
+
};
|
|
97
|
+
pageContentType: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: undefined;
|
|
79
100
|
};
|
|
80
|
-
}, unknown, unknown, {
|
|
101
|
+
}, unknown, unknown, {
|
|
102
|
+
searchContentTypeToPageType(): import('../../interfaces').DictionaryInterface;
|
|
103
|
+
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
104
|
+
isEdu(state: {
|
|
105
|
+
theme: import('../../interfaces').Explorer1Theme | null;
|
|
106
|
+
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
107
|
+
}, {
|
|
108
|
+
setTheme(value: import('../../interfaces').Explorer1Theme): void;
|
|
109
|
+
}>;
|
|
110
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
81
111
|
url: {
|
|
82
112
|
type: StringConstructor;
|
|
83
113
|
required: false;
|
|
@@ -86,26 +116,37 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
86
116
|
type: {
|
|
87
117
|
type: StringConstructor;
|
|
88
118
|
required: false;
|
|
119
|
+
default: undefined;
|
|
120
|
+
};
|
|
121
|
+
eventType: {
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
required: false;
|
|
124
|
+
default: undefined;
|
|
89
125
|
};
|
|
90
126
|
topic: {
|
|
91
127
|
type: StringConstructor;
|
|
92
128
|
required: false;
|
|
129
|
+
default: undefined;
|
|
93
130
|
};
|
|
94
131
|
date: {
|
|
95
132
|
type: StringConstructor;
|
|
96
133
|
required: false;
|
|
134
|
+
default: undefined;
|
|
97
135
|
};
|
|
98
136
|
title: {
|
|
99
137
|
type: StringConstructor;
|
|
100
138
|
required: false;
|
|
139
|
+
default: undefined;
|
|
101
140
|
};
|
|
102
141
|
summary: {
|
|
103
142
|
type: StringConstructor;
|
|
104
143
|
required: false;
|
|
144
|
+
default: undefined;
|
|
105
145
|
};
|
|
106
146
|
image: {
|
|
107
147
|
type: ObjectConstructor;
|
|
108
148
|
required: false;
|
|
149
|
+
default: undefined;
|
|
109
150
|
};
|
|
110
151
|
featured: {
|
|
111
152
|
type: BooleanConstructor;
|
|
@@ -132,31 +173,55 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
132
173
|
media: {
|
|
133
174
|
type: StringConstructor;
|
|
134
175
|
required: false;
|
|
176
|
+
default: undefined;
|
|
135
177
|
};
|
|
136
178
|
startTime: {
|
|
137
179
|
type: StringConstructor;
|
|
138
180
|
required: false;
|
|
181
|
+
default: undefined;
|
|
139
182
|
};
|
|
140
183
|
startDate: {
|
|
141
184
|
type: StringConstructor;
|
|
142
185
|
required: false;
|
|
186
|
+
default: undefined;
|
|
143
187
|
};
|
|
144
188
|
endTime: {
|
|
145
189
|
type: StringConstructor;
|
|
146
190
|
required: false;
|
|
191
|
+
default: undefined;
|
|
147
192
|
};
|
|
148
193
|
endDate: {
|
|
149
194
|
type: StringConstructor;
|
|
150
195
|
required: false;
|
|
196
|
+
default: undefined;
|
|
151
197
|
};
|
|
152
198
|
location: {
|
|
153
199
|
type: StringConstructor;
|
|
154
200
|
required: false;
|
|
201
|
+
default: undefined;
|
|
202
|
+
};
|
|
203
|
+
pageContentType: {
|
|
204
|
+
type: StringConstructor;
|
|
205
|
+
default: undefined;
|
|
155
206
|
};
|
|
156
207
|
}>>, {
|
|
208
|
+
summary: string;
|
|
209
|
+
title: string;
|
|
210
|
+
image: Record<string, any>;
|
|
211
|
+
type: string;
|
|
212
|
+
date: string;
|
|
157
213
|
url: string;
|
|
214
|
+
startDate: string;
|
|
215
|
+
endDate: string;
|
|
216
|
+
startTime: string;
|
|
217
|
+
endTime: string;
|
|
218
|
+
eventType: string;
|
|
219
|
+
location: string;
|
|
158
220
|
headingLevel: HeadingLevel;
|
|
221
|
+
media: string;
|
|
159
222
|
featured: boolean;
|
|
223
|
+
topic: string;
|
|
224
|
+
pageContentType: string;
|
|
160
225
|
isEvents: boolean;
|
|
161
226
|
isPodcastSeason: boolean;
|
|
162
227
|
isProfiles: boolean;
|
|
@@ -10,6 +10,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
10
10
|
type: StringConstructor;
|
|
11
11
|
required: false;
|
|
12
12
|
};
|
|
13
|
+
eventType: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
};
|
|
13
17
|
topic: {
|
|
14
18
|
type: StringConstructor;
|
|
15
19
|
required: false;
|
|
@@ -18,6 +22,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
18
22
|
type: StringConstructor;
|
|
19
23
|
required: false;
|
|
20
24
|
};
|
|
25
|
+
title: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
required: false;
|
|
28
|
+
};
|
|
29
|
+
image: {
|
|
30
|
+
type: ObjectConstructor;
|
|
31
|
+
required: false;
|
|
32
|
+
};
|
|
21
33
|
startDate: {
|
|
22
34
|
type: StringConstructor;
|
|
23
35
|
required: false;
|
|
@@ -26,13 +38,23 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
26
38
|
type: StringConstructor;
|
|
27
39
|
required: false;
|
|
28
40
|
};
|
|
29
|
-
|
|
41
|
+
startTime: {
|
|
30
42
|
type: StringConstructor;
|
|
31
43
|
required: false;
|
|
44
|
+
default: undefined;
|
|
32
45
|
};
|
|
33
|
-
|
|
34
|
-
type:
|
|
46
|
+
endTime: {
|
|
47
|
+
type: StringConstructor;
|
|
35
48
|
required: false;
|
|
49
|
+
default: undefined;
|
|
50
|
+
};
|
|
51
|
+
ongoing: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
location: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: undefined;
|
|
36
58
|
};
|
|
37
59
|
headingLevel: {
|
|
38
60
|
type: PropType<HeadingLevel>;
|
|
@@ -43,10 +65,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
43
65
|
required: false;
|
|
44
66
|
};
|
|
45
67
|
}, unknown, unknown, {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
68
|
+
searchContentTypeToPageType(): import('../../interfaces').DictionaryInterface;
|
|
69
|
+
typename(): string | undefined;
|
|
70
|
+
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
71
|
+
isEdu(state: {
|
|
72
|
+
theme: import('../../interfaces').Explorer1Theme | null;
|
|
73
|
+
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
74
|
+
}, {
|
|
75
|
+
setTheme(value: import('../../interfaces').Explorer1Theme): void;
|
|
76
|
+
}>;
|
|
50
77
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
51
78
|
url: {
|
|
52
79
|
type: StringConstructor;
|
|
@@ -56,6 +83,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
56
83
|
type: StringConstructor;
|
|
57
84
|
required: false;
|
|
58
85
|
};
|
|
86
|
+
eventType: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
required: false;
|
|
89
|
+
};
|
|
59
90
|
topic: {
|
|
60
91
|
type: StringConstructor;
|
|
61
92
|
required: false;
|
|
@@ -64,6 +95,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
64
95
|
type: StringConstructor;
|
|
65
96
|
required: false;
|
|
66
97
|
};
|
|
98
|
+
title: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
required: false;
|
|
101
|
+
};
|
|
102
|
+
image: {
|
|
103
|
+
type: ObjectConstructor;
|
|
104
|
+
required: false;
|
|
105
|
+
};
|
|
67
106
|
startDate: {
|
|
68
107
|
type: StringConstructor;
|
|
69
108
|
required: false;
|
|
@@ -72,13 +111,23 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
72
111
|
type: StringConstructor;
|
|
73
112
|
required: false;
|
|
74
113
|
};
|
|
75
|
-
|
|
114
|
+
startTime: {
|
|
76
115
|
type: StringConstructor;
|
|
77
116
|
required: false;
|
|
117
|
+
default: undefined;
|
|
78
118
|
};
|
|
79
|
-
|
|
80
|
-
type:
|
|
119
|
+
endTime: {
|
|
120
|
+
type: StringConstructor;
|
|
81
121
|
required: false;
|
|
122
|
+
default: undefined;
|
|
123
|
+
};
|
|
124
|
+
ongoing: {
|
|
125
|
+
type: BooleanConstructor;
|
|
126
|
+
default: boolean;
|
|
127
|
+
};
|
|
128
|
+
location: {
|
|
129
|
+
type: StringConstructor;
|
|
130
|
+
default: undefined;
|
|
82
131
|
};
|
|
83
132
|
headingLevel: {
|
|
84
133
|
type: PropType<HeadingLevel>;
|
|
@@ -88,5 +137,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
88
137
|
type: StringConstructor;
|
|
89
138
|
required: false;
|
|
90
139
|
};
|
|
91
|
-
}>>, {
|
|
140
|
+
}>>, {
|
|
141
|
+
startTime: string;
|
|
142
|
+
endTime: string;
|
|
143
|
+
ongoing: boolean;
|
|
144
|
+
location: string;
|
|
145
|
+
}, {}>;
|
|
92
146
|
export default _default;
|