@explorer-1/vue 0.2.26 → 0.2.28
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 +1162 -1112
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/AboutTheAuthor/AboutTheAuthor.stories.d.ts +30 -0
- package/dist/src/components/BaseImage/BaseImage.stories.d.ts +1 -1
- package/dist/src/components/BaseImage/BaseImage.vue.d.ts +1 -1
- package/dist/src/components/BasePill/BasePill.vue.d.ts +4 -0
- package/dist/src/components/BlockLinkCard/BlockLinkCard.vue.d.ts +3 -3
- package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +10 -7
- package/dist/src/components/EventCard/EventCard.vue.d.ts +1 -1
- package/dist/src/components/HeroLarge/HeroLarge.vue.d.ts +45 -3
- package/dist/src/components/HeroMedium/HeroMedium.vue.d.ts +1 -1
- package/dist/src/components/MetadataEduResource/MetadataEduResource.vue.d.ts +1 -1
- package/dist/src/components/MetadataEvent/MetadataEvent.vue.d.ts +1 -1
- package/dist/src/components/MixinAnimationCaret/MixinAnimationCaret.stories.d.ts +1 -1
- package/dist/src/components/MixinAnimationCaret/MixinAnimationCaret.vue.d.ts +1 -1
- package/dist/src/components/SearchResultCard/SearchResultCard.vue.d.ts +3 -3
- package/dist/src/components/TextInput/TextInput.vue.d.ts +9 -9
- package/dist/src/interfaces.d.ts +9 -1
- package/dist/src/templates/edu/PageEduCollectionsDetail/PageEduCollectionsDetail.stories.d.ts +123 -0
- package/dist/src/templates/edu/PageEduLesson/PageEduLesson.stories.d.ts +3 -0
- package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +30 -0
- package/dist/src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.stories.d.ts +3 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/AboutTheAuthor/AboutTheAuthor.stories.js +50 -0
- package/src/components/AboutTheAuthor/AboutTheAuthor.vue +90 -0
- package/src/components/BasePill/BasePill.vue +4 -1
- package/src/components/BlockLinkCard/BlockLinkCard.vue +2 -2
- package/src/components/BlockText/BlockText.vue +3 -3
- package/src/components/DetailHeadline/DetailHeadline.vue +2 -3
- package/src/components/HeroInlineMedia/HeroInlineMedia.vue +77 -0
- package/src/components/HeroLarge/HeroLarge.vue +49 -10
- package/src/components/HeroMedium/HeroMedium.vue +1 -1
- package/src/components/MetaPanel/MetaPanel.vue +1 -1
- package/src/components/MetaPanelItems/MetaPanelItems.vue +11 -8
- package/src/constants.ts +11 -0
- package/src/interfaces.ts +6 -1
- package/src/templates/edu/PageEduCollectionsDetail/PageEduCollectionsDetail.stories.js +103 -0
- package/src/templates/edu/PageEduCollectionsDetail/PageEduCollectionsDetail.vue +146 -0
- package/src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.stories.js +3 -1
- package/src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.vue +28 -42
- package/src/templates/edu/PageEduLesson/PageEduLesson.stories.js +2 -0
- package/src/templates/edu/PageEduLesson/PageEduLesson.vue +13 -37
- package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.js +3 -8
- package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +10 -1
- package/src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.stories.js +2 -0
- package/src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.vue +11 -50
- package/src/templates/www/PageRoboticsDetail/PageRoboticsDetail.vue +1 -1
- package/src/templates/www/PageTopicDetail/PageTopicDetail.vue +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { default as AboutTheAuthor } from './AboutTheAuthor.vue';
|
|
2
|
+
declare namespace _default {
|
|
3
|
+
export let title: string;
|
|
4
|
+
export { AboutTheAuthor as component };
|
|
5
|
+
export let tags: string[];
|
|
6
|
+
export let excludeStories: RegExp;
|
|
7
|
+
}
|
|
8
|
+
export default _default;
|
|
9
|
+
export const AboutTheAuthorData: {
|
|
10
|
+
author: {
|
|
11
|
+
biography: string;
|
|
12
|
+
image: {
|
|
13
|
+
src: {
|
|
14
|
+
url: string;
|
|
15
|
+
width: number;
|
|
16
|
+
height: number;
|
|
17
|
+
};
|
|
18
|
+
alt: string;
|
|
19
|
+
};
|
|
20
|
+
jobTitle: string;
|
|
21
|
+
name: string;
|
|
22
|
+
organization: string;
|
|
23
|
+
};
|
|
24
|
+
}[];
|
|
25
|
+
export namespace BaseStory {
|
|
26
|
+
let name: string;
|
|
27
|
+
namespace args {
|
|
28
|
+
export { AboutTheAuthorData as authors };
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -2,19 +2,23 @@ interface BasePillProps {
|
|
|
2
2
|
variant?: string;
|
|
3
3
|
size?: string;
|
|
4
4
|
contentType?: string;
|
|
5
|
+
invert?: boolean;
|
|
5
6
|
}
|
|
6
7
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<BasePillProps>, {
|
|
7
8
|
variant: string;
|
|
8
9
|
size: string;
|
|
9
10
|
contentType: undefined;
|
|
11
|
+
invert: boolean;
|
|
10
12
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<BasePillProps>, {
|
|
11
13
|
variant: string;
|
|
12
14
|
size: string;
|
|
13
15
|
contentType: undefined;
|
|
16
|
+
invert: boolean;
|
|
14
17
|
}>>>, {
|
|
15
18
|
variant: string;
|
|
16
19
|
size: string;
|
|
17
20
|
contentType: string;
|
|
21
|
+
invert: boolean;
|
|
18
22
|
}, {}>, {
|
|
19
23
|
default?(_: {}): any;
|
|
20
24
|
}>;
|
|
@@ -180,9 +180,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
180
180
|
data: Card;
|
|
181
181
|
label: string;
|
|
182
182
|
title: string;
|
|
183
|
-
size: string;
|
|
184
|
-
date: string;
|
|
185
|
-
url: string;
|
|
186
183
|
startDate: string;
|
|
187
184
|
endDate: string;
|
|
188
185
|
startDatetime: string;
|
|
@@ -190,6 +187,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
190
187
|
eventType: string;
|
|
191
188
|
ongoing: boolean;
|
|
192
189
|
location: string;
|
|
190
|
+
size: string;
|
|
191
|
+
url: string;
|
|
192
|
+
date: string;
|
|
193
193
|
headingLevel: HeadingLevel;
|
|
194
194
|
thumbnailImage: Record<string, any>;
|
|
195
195
|
externalLink: string;
|
|
@@ -9,7 +9,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
9
9
|
default: undefined;
|
|
10
10
|
};
|
|
11
11
|
author: {
|
|
12
|
-
type: PropType<AuthorObject |
|
|
12
|
+
type: PropType<AuthorObject | {
|
|
13
|
+
author: AuthorObject;
|
|
14
|
+
}[]>;
|
|
13
15
|
required: false;
|
|
14
16
|
default: undefined;
|
|
15
17
|
};
|
|
@@ -62,10 +64,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
62
64
|
hasByline(): boolean;
|
|
63
65
|
hasData(): boolean;
|
|
64
66
|
pubDatetime(): string | undefined;
|
|
65
|
-
authors():
|
|
66
|
-
name: string;
|
|
67
|
-
organization: string;
|
|
68
|
-
}[] | undefined;
|
|
67
|
+
authors(): AuthorObject[] | undefined;
|
|
69
68
|
pillLabel(): string | undefined;
|
|
70
69
|
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
71
70
|
isEdu(state: {
|
|
@@ -81,7 +80,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
81
80
|
default: undefined;
|
|
82
81
|
};
|
|
83
82
|
author: {
|
|
84
|
-
type: PropType<AuthorObject |
|
|
83
|
+
type: PropType<AuthorObject | {
|
|
84
|
+
author: AuthorObject;
|
|
85
|
+
}[]>;
|
|
85
86
|
required: false;
|
|
86
87
|
default: undefined;
|
|
87
88
|
};
|
|
@@ -131,7 +132,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
131
132
|
}>>, {
|
|
132
133
|
label: string;
|
|
133
134
|
title: string;
|
|
134
|
-
author: AuthorObject |
|
|
135
|
+
author: AuthorObject | {
|
|
136
|
+
author: AuthorObject;
|
|
137
|
+
}[];
|
|
135
138
|
publicationDate: string;
|
|
136
139
|
publicationTime: string;
|
|
137
140
|
readTime: string;
|
|
@@ -1,46 +1,88 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{
|
|
2
|
-
|
|
2
|
+
label: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: false;
|
|
5
|
+
default: undefined;
|
|
6
|
+
};
|
|
7
|
+
customPill: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
customPillType: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
required: false;
|
|
15
|
+
default: undefined;
|
|
5
16
|
};
|
|
6
17
|
title: {
|
|
7
18
|
type: StringConstructor;
|
|
8
19
|
required: false;
|
|
20
|
+
default: undefined;
|
|
9
21
|
};
|
|
10
22
|
summary: {
|
|
11
23
|
type: StringConstructor;
|
|
12
24
|
required: false;
|
|
25
|
+
default: undefined;
|
|
13
26
|
};
|
|
14
27
|
image: {
|
|
15
28
|
type: ObjectConstructor;
|
|
16
29
|
required: false;
|
|
30
|
+
default: undefined;
|
|
17
31
|
};
|
|
18
32
|
hasOverlay: {
|
|
19
33
|
type: BooleanConstructor;
|
|
20
34
|
default: boolean;
|
|
21
35
|
};
|
|
22
|
-
}, unknown, unknown, {
|
|
23
|
-
|
|
36
|
+
}, unknown, unknown, {
|
|
37
|
+
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
38
|
+
isEdu(state: {
|
|
39
|
+
theme: import('../../interfaces').Explorer1Theme | null;
|
|
40
|
+
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
41
|
+
}, {
|
|
42
|
+
setTheme(value: import('../../interfaces').Explorer1Theme): void;
|
|
43
|
+
}>;
|
|
44
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
45
|
+
label: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
required: false;
|
|
48
|
+
default: undefined;
|
|
49
|
+
};
|
|
50
|
+
customPill: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
required: false;
|
|
53
|
+
default: undefined;
|
|
54
|
+
};
|
|
55
|
+
customPillType: {
|
|
24
56
|
type: StringConstructor;
|
|
25
57
|
required: false;
|
|
58
|
+
default: undefined;
|
|
26
59
|
};
|
|
27
60
|
title: {
|
|
28
61
|
type: StringConstructor;
|
|
29
62
|
required: false;
|
|
63
|
+
default: undefined;
|
|
30
64
|
};
|
|
31
65
|
summary: {
|
|
32
66
|
type: StringConstructor;
|
|
33
67
|
required: false;
|
|
68
|
+
default: undefined;
|
|
34
69
|
};
|
|
35
70
|
image: {
|
|
36
71
|
type: ObjectConstructor;
|
|
37
72
|
required: false;
|
|
73
|
+
default: undefined;
|
|
38
74
|
};
|
|
39
75
|
hasOverlay: {
|
|
40
76
|
type: BooleanConstructor;
|
|
41
77
|
default: boolean;
|
|
42
78
|
};
|
|
43
79
|
}>>, {
|
|
80
|
+
label: string;
|
|
81
|
+
summary: string;
|
|
82
|
+
title: string;
|
|
83
|
+
image: Record<string, any>;
|
|
84
|
+
customPill: string;
|
|
85
|
+
customPillType: string;
|
|
44
86
|
hasOverlay: boolean;
|
|
45
87
|
}, {}>;
|
|
46
88
|
export default _default;
|
|
@@ -86,9 +86,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
86
86
|
}>>, {
|
|
87
87
|
compact: boolean;
|
|
88
88
|
customLabel: string;
|
|
89
|
-
feature: Record<string, any>;
|
|
90
89
|
customPill: string;
|
|
91
90
|
customPillType: string;
|
|
91
|
+
feature: Record<string, any>;
|
|
92
92
|
cta: string;
|
|
93
93
|
customVideo: Record<string, any>;
|
|
94
94
|
customImage: Record<string, any>;
|
|
@@ -15,8 +15,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
15
15
|
variant: string;
|
|
16
16
|
}>>>, {
|
|
17
17
|
variant: string;
|
|
18
|
-
compact: boolean;
|
|
19
18
|
resource: EduResourceCardObject;
|
|
19
|
+
compact: boolean;
|
|
20
20
|
}, {}>;
|
|
21
21
|
export default _default;
|
|
22
22
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -20,8 +20,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
20
20
|
showLocation: boolean;
|
|
21
21
|
showTime: boolean;
|
|
22
22
|
}>>>, {
|
|
23
|
-
compact: boolean;
|
|
24
23
|
event: EventCardObject;
|
|
24
|
+
compact: boolean;
|
|
25
25
|
allowBreak: boolean;
|
|
26
26
|
showLocation: boolean;
|
|
27
27
|
showTime: boolean;
|
|
@@ -53,10 +53,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
53
53
|
required: false;
|
|
54
54
|
};
|
|
55
55
|
}>>, {
|
|
56
|
+
inline: boolean;
|
|
56
57
|
passedWrapperClass: string;
|
|
57
58
|
arrowClass: string;
|
|
58
59
|
color: string;
|
|
59
60
|
marginLeft: string;
|
|
60
|
-
inline: boolean;
|
|
61
61
|
}, {}>;
|
|
62
62
|
export default _default;
|
|
@@ -208,15 +208,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
208
208
|
summary: string;
|
|
209
209
|
title: string;
|
|
210
210
|
image: Record<string, any>;
|
|
211
|
-
type: string;
|
|
212
|
-
date: string;
|
|
213
|
-
url: string;
|
|
214
211
|
startDate: string;
|
|
215
212
|
endDate: string;
|
|
216
213
|
startTime: string;
|
|
217
214
|
endTime: string;
|
|
218
215
|
eventType: string;
|
|
219
216
|
location: string;
|
|
217
|
+
type: string;
|
|
218
|
+
url: string;
|
|
219
|
+
date: string;
|
|
220
220
|
headingLevel: HeadingLevel;
|
|
221
221
|
media: string;
|
|
222
222
|
featured: boolean;
|
|
@@ -12,14 +12,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
12
12
|
type: import('vue').PropType<string>;
|
|
13
13
|
default: undefined;
|
|
14
14
|
};
|
|
15
|
-
required: {
|
|
16
|
-
type: import('vue').PropType<boolean>;
|
|
17
|
-
default: boolean;
|
|
18
|
-
};
|
|
19
15
|
type: {
|
|
20
16
|
type: import('vue').PropType<string>;
|
|
21
17
|
default: string;
|
|
22
18
|
};
|
|
19
|
+
required: {
|
|
20
|
+
type: import('vue').PropType<boolean>;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
23
|
placeholder: {
|
|
24
24
|
type: import('vue').PropType<string>;
|
|
25
25
|
default: undefined;
|
|
@@ -64,14 +64,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
64
64
|
type: import('vue').PropType<string>;
|
|
65
65
|
default: undefined;
|
|
66
66
|
};
|
|
67
|
-
required: {
|
|
68
|
-
type: import('vue').PropType<boolean>;
|
|
69
|
-
default: boolean;
|
|
70
|
-
};
|
|
71
67
|
type: {
|
|
72
68
|
type: import('vue').PropType<string>;
|
|
73
69
|
default: string;
|
|
74
70
|
};
|
|
71
|
+
required: {
|
|
72
|
+
type: import('vue').PropType<boolean>;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
75
|
placeholder: {
|
|
76
76
|
type: import('vue').PropType<string>;
|
|
77
77
|
default: undefined;
|
|
@@ -105,8 +105,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
105
105
|
}, {
|
|
106
106
|
title: string;
|
|
107
107
|
pattern: string;
|
|
108
|
-
required: boolean;
|
|
109
108
|
type: string;
|
|
109
|
+
required: boolean;
|
|
110
110
|
placeholder: string;
|
|
111
111
|
showLabel: boolean;
|
|
112
112
|
maxlength: string;
|
package/dist/src/interfaces.d.ts
CHANGED
|
@@ -171,7 +171,10 @@ export interface Attributes {
|
|
|
171
171
|
}
|
|
172
172
|
export interface AuthorObject {
|
|
173
173
|
name: string;
|
|
174
|
-
organization
|
|
174
|
+
organization?: string;
|
|
175
|
+
image?: ImageObject;
|
|
176
|
+
jobTitle?: string;
|
|
177
|
+
biography?: string;
|
|
175
178
|
}
|
|
176
179
|
export interface Topic {
|
|
177
180
|
title: string;
|
|
@@ -181,6 +184,7 @@ export type MetadataType = 'event' | 'resource';
|
|
|
181
184
|
export interface LabelObject {
|
|
182
185
|
label?: string;
|
|
183
186
|
variant: string;
|
|
187
|
+
icons?: string;
|
|
184
188
|
type?: MetadataType;
|
|
185
189
|
}
|
|
186
190
|
export interface PillDictionaryInterface {
|
|
@@ -197,6 +201,7 @@ export type MetaPanelTheme = 'primary' | 'secondary' | 'stars';
|
|
|
197
201
|
export interface PageObject {
|
|
198
202
|
__typename: string;
|
|
199
203
|
contentType: string;
|
|
204
|
+
lastPublishedAt?: string;
|
|
200
205
|
breadcrumb?: string;
|
|
201
206
|
slug: string;
|
|
202
207
|
url: string;
|
|
@@ -239,6 +244,9 @@ export interface EduResourceStandardItem {
|
|
|
239
244
|
}
|
|
240
245
|
export interface PageEduResourcesObject extends PageObject {
|
|
241
246
|
hero?: StreamfieldBlockData[];
|
|
247
|
+
authors?: {
|
|
248
|
+
author: AuthorObject;
|
|
249
|
+
}[];
|
|
242
250
|
primarySubject?: EduResourcesSubject;
|
|
243
251
|
additionalSubjects?: EduResourcesSubject[];
|
|
244
252
|
gradeLevels?: EduResourcesGradeLevel[];
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { default as PageEduCollectionsDetail } from './PageEduCollectionsDetail.vue';
|
|
2
|
+
import { BlockLinkCardCarouselData } from './../../../components/BlockLinkCarousel/BlockLinkCarousel.stories.js';
|
|
3
|
+
declare namespace _default {
|
|
4
|
+
export let title: string;
|
|
5
|
+
export { PageEduCollectionsDetail as component };
|
|
6
|
+
export let tags: string[];
|
|
7
|
+
export let decorators: (() => {
|
|
8
|
+
template: string;
|
|
9
|
+
})[];
|
|
10
|
+
export namespace parameters {
|
|
11
|
+
let layout: string;
|
|
12
|
+
namespace html {
|
|
13
|
+
let root: string;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export let excludeStories: RegExp;
|
|
17
|
+
}
|
|
18
|
+
export default _default;
|
|
19
|
+
export namespace BaseStory {
|
|
20
|
+
let name: string;
|
|
21
|
+
namespace args {
|
|
22
|
+
namespace data {
|
|
23
|
+
export let __typename: string;
|
|
24
|
+
let title_1: string;
|
|
25
|
+
export { title_1 as title };
|
|
26
|
+
export let lastPublishedAt: string;
|
|
27
|
+
export let url: string;
|
|
28
|
+
export let pageType: string;
|
|
29
|
+
export let contentType: string;
|
|
30
|
+
export let showJumpMenu: boolean;
|
|
31
|
+
export let showMetaPanel: boolean;
|
|
32
|
+
export namespace thumbnailImage {
|
|
33
|
+
let __typename_1: string;
|
|
34
|
+
export { __typename_1 as __typename };
|
|
35
|
+
export let original: string;
|
|
36
|
+
export let alt: string;
|
|
37
|
+
}
|
|
38
|
+
export namespace heroImage {
|
|
39
|
+
export namespace src {
|
|
40
|
+
let url_1: string;
|
|
41
|
+
export { url_1 as url };
|
|
42
|
+
export let width: number;
|
|
43
|
+
export let height: number;
|
|
44
|
+
}
|
|
45
|
+
export let srcSet: string;
|
|
46
|
+
export namespace screenMd {
|
|
47
|
+
let url_2: string;
|
|
48
|
+
export { url_2 as url };
|
|
49
|
+
}
|
|
50
|
+
export namespace screenSm {
|
|
51
|
+
let url_3: string;
|
|
52
|
+
export { url_3 as url };
|
|
53
|
+
}
|
|
54
|
+
let alt_1: string;
|
|
55
|
+
export { alt_1 as alt };
|
|
56
|
+
}
|
|
57
|
+
export let heroImageCaption: string;
|
|
58
|
+
export let heroConstrain: boolean;
|
|
59
|
+
export let heroPosition: string;
|
|
60
|
+
export namespace primarySubject {
|
|
61
|
+
let subject: string;
|
|
62
|
+
}
|
|
63
|
+
export let additionalSubjects: {
|
|
64
|
+
subject: string;
|
|
65
|
+
}[];
|
|
66
|
+
export let gradeLevels: {
|
|
67
|
+
gradeLevel: string;
|
|
68
|
+
}[];
|
|
69
|
+
export let body: {
|
|
70
|
+
blockType: string;
|
|
71
|
+
value: string;
|
|
72
|
+
}[];
|
|
73
|
+
export let relatedLinks: {
|
|
74
|
+
blockType: string;
|
|
75
|
+
heading: string;
|
|
76
|
+
links: ({
|
|
77
|
+
text: string;
|
|
78
|
+
document: {
|
|
79
|
+
url: string;
|
|
80
|
+
};
|
|
81
|
+
page: string;
|
|
82
|
+
externalLink: string;
|
|
83
|
+
} | {
|
|
84
|
+
text: string;
|
|
85
|
+
document: string;
|
|
86
|
+
page: {
|
|
87
|
+
url: string;
|
|
88
|
+
};
|
|
89
|
+
externalLink: string;
|
|
90
|
+
} | {
|
|
91
|
+
text: string;
|
|
92
|
+
document: string;
|
|
93
|
+
page: string;
|
|
94
|
+
externalLink: string;
|
|
95
|
+
})[];
|
|
96
|
+
};
|
|
97
|
+
export let relatedContentHeading: string;
|
|
98
|
+
export { BlockLinkCardCarouselData as relatedContent };
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
export namespace Inline {
|
|
103
|
+
export namespace args_1 {
|
|
104
|
+
export namespace data_1 {
|
|
105
|
+
let heroPosition_1: string;
|
|
106
|
+
export { heroPosition_1 as heroPosition };
|
|
107
|
+
let heroConstrain_1: boolean;
|
|
108
|
+
export { heroConstrain_1 as heroConstrain };
|
|
109
|
+
}
|
|
110
|
+
export { data_1 as data };
|
|
111
|
+
}
|
|
112
|
+
export { args_1 as args };
|
|
113
|
+
}
|
|
114
|
+
export namespace NoMetaPanel {
|
|
115
|
+
export namespace args_2 {
|
|
116
|
+
export namespace data_2 {
|
|
117
|
+
let showMetaPanel_1: boolean;
|
|
118
|
+
export { showMetaPanel_1 as showMetaPanel };
|
|
119
|
+
}
|
|
120
|
+
export { data_2 as data };
|
|
121
|
+
}
|
|
122
|
+
export { args_2 as args };
|
|
123
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as PageEduLesson } from './PageEduLesson.vue';
|
|
2
|
+
import { AboutTheAuthorData } from './../../../components/AboutTheAuthor/AboutTheAuthor.stories';
|
|
2
3
|
import { BlockLinkCardCarouselData } from './../../../components/BlockLinkCarousel/BlockLinkCarousel.stories.js';
|
|
3
4
|
declare namespace _default {
|
|
4
5
|
export let title: string;
|
|
@@ -29,12 +30,14 @@ export namespace BaseStory {
|
|
|
29
30
|
export let seoTitle: string;
|
|
30
31
|
export let slug: string;
|
|
31
32
|
export let publicationDate: string;
|
|
33
|
+
export let lastPublishedAt: string;
|
|
32
34
|
export namespace thumbnailImage {
|
|
33
35
|
let __typename_1: string;
|
|
34
36
|
export { __typename_1 as __typename };
|
|
35
37
|
export let original: string;
|
|
36
38
|
export let alt: string;
|
|
37
39
|
}
|
|
40
|
+
export { AboutTheAuthorData as authors };
|
|
38
41
|
export let hero: {
|
|
39
42
|
blockType: string;
|
|
40
43
|
imageInline: {
|
|
@@ -518,6 +518,16 @@ export namespace BaseStory {
|
|
|
518
518
|
readTime: string;
|
|
519
519
|
authors: {
|
|
520
520
|
author: {
|
|
521
|
+
biography: string;
|
|
522
|
+
image: {
|
|
523
|
+
src: {
|
|
524
|
+
url: string;
|
|
525
|
+
width: number;
|
|
526
|
+
height: number;
|
|
527
|
+
};
|
|
528
|
+
alt: string;
|
|
529
|
+
};
|
|
530
|
+
jobTitle: string;
|
|
521
531
|
name: string;
|
|
522
532
|
organization: string;
|
|
523
533
|
};
|
|
@@ -1088,6 +1098,16 @@ export namespace InlineHero {
|
|
|
1088
1098
|
readTime: string;
|
|
1089
1099
|
authors: {
|
|
1090
1100
|
author: {
|
|
1101
|
+
biography: string;
|
|
1102
|
+
image: {
|
|
1103
|
+
src: {
|
|
1104
|
+
url: string;
|
|
1105
|
+
width: number;
|
|
1106
|
+
height: number;
|
|
1107
|
+
};
|
|
1108
|
+
alt: string;
|
|
1109
|
+
};
|
|
1110
|
+
jobTitle: string;
|
|
1091
1111
|
name: string;
|
|
1092
1112
|
organization: string;
|
|
1093
1113
|
};
|
|
@@ -1658,6 +1678,16 @@ export namespace NoHero {
|
|
|
1658
1678
|
readTime: string;
|
|
1659
1679
|
authors: {
|
|
1660
1680
|
author: {
|
|
1681
|
+
biography: string;
|
|
1682
|
+
image: {
|
|
1683
|
+
src: {
|
|
1684
|
+
url: string;
|
|
1685
|
+
width: number;
|
|
1686
|
+
height: number;
|
|
1687
|
+
};
|
|
1688
|
+
alt: string;
|
|
1689
|
+
};
|
|
1690
|
+
jobTitle: string;
|
|
1661
1691
|
name: string;
|
|
1662
1692
|
organization: string;
|
|
1663
1693
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as PageEduTeachableMoment } from './PageEduTeachableMoment.vue';
|
|
2
|
+
import { AboutTheAuthorData } from './../../../components/AboutTheAuthor/AboutTheAuthor.stories';
|
|
2
3
|
import { BlockLinkCardCarouselData } from './../../../components/BlockLinkCarousel/BlockLinkCarousel.stories.js';
|
|
3
4
|
declare namespace _default {
|
|
4
5
|
export let title: string;
|
|
@@ -22,6 +23,7 @@ export namespace BaseStory {
|
|
|
22
23
|
export let __typename: string;
|
|
23
24
|
let title_1: string;
|
|
24
25
|
export { title_1 as title };
|
|
26
|
+
export let lastPublishedAt: string;
|
|
25
27
|
export let url: string;
|
|
26
28
|
export let pageType: string;
|
|
27
29
|
export let contentType: string;
|
|
@@ -32,6 +34,7 @@ export namespace BaseStory {
|
|
|
32
34
|
export let original: string;
|
|
33
35
|
export let alt: string;
|
|
34
36
|
}
|
|
37
|
+
export { AboutTheAuthorData as authors };
|
|
35
38
|
export let hero: {
|
|
36
39
|
blockType: string;
|
|
37
40
|
imageInline: {
|