@explorer-1/vue 0.1.9 → 0.2.1
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 +1 -0
- package/dist/explorer-1-vue.js +3666 -3606
- package/dist/explorer-1-vue.umd.cjs +12 -12
- package/dist/src/components/BlockCard/BlockCard.vue.d.ts +9 -0
- package/dist/src/components/BlockLinkCard/BlockLinkCard.vue.d.ts +30 -0
- package/dist/src/components/BlockRelatedLinks/BlockRelatedLinks.vue.d.ts +11 -0
- package/dist/src/components/BlockStreamfield/BlockStreamfield.stories.d.ts +17 -0
- package/dist/src/components/CalendarButton/CalendarButton.stories.d.ts +2 -62
- package/dist/src/components/CalendarButton/CalendarButton.vue.d.ts +26 -7
- package/dist/src/components/DetailHeadline/DetailHeadline.stories.d.ts +13 -1
- package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +28 -3
- package/dist/src/components/EventDetailHero/EventDetailHero.vue.d.ts +8 -1
- package/dist/src/templates/PageEventDetail/PageEventDetail.stories.d.ts +3 -1
- package/dist/src/templates/PageImageDetail/PageImageDetail.stories.d.ts +17 -0
- package/dist/src/templates/PageNewsDetail/PageNewsDetail.stories.d.ts +136 -0
- package/dist/src/templates/edu/PageContentEdu.stories.d.ts +1 -0
- package/dist/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.d.ts +128 -0
- package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +72 -3
- package/dist/src/templates/edu/PageEduResourceArticle/PageEduResourceArticle.stories.d.ts +17 -0
- package/dist/src/templates/www/PageCuratedGallery/PageCuratedGallery.stories.d.ts +17 -0
- package/dist/src/templates/www/PageRoboticsDetail/PageRoboticsDetail.stories.d.ts +17 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/BaseTag/BaseTag.vue +2 -2
- package/src/components/BlockCard/BlockCard.vue +8 -5
- package/src/components/BlockInlineImage/BlockInlineImage.vue +1 -1
- package/src/components/BlockLinkCard/BlockLinkCard.vue +33 -13
- package/src/components/BlockLinkCarousel/BlockLinkCarousel.vue +0 -1
- package/src/components/BlockRelatedLinks/BlockRelatedLinks.vue +6 -1
- package/src/components/BlockStreamfield/BlockStreamfield.stories.js +1 -0
- package/src/components/BlockStreamfield/BlockStreamfield.vue +3 -0
- package/src/components/CalendarButton/CalendarButton.stories.js +1 -19
- package/src/components/CalendarButton/CalendarButton.vue +43 -17
- package/src/components/EventDetailHero/EventDetailHero.vue +26 -31
- package/src/components/MixinCarousel/MixinCarousel.vue +1 -1
- package/src/components/TheFooter/TheFooter.vue +6 -8
- package/src/components/ThumbnailCarousel/ThumbnailCarousel.stories.js +1 -0
- package/src/main.ts +1 -1
- package/src/templates/PageEventDetail/PageEventDetail.stories.js +3 -1
- package/src/templates/PageEventDetail/PageEventDetail.vue +3 -3
- package/src/templates/PageImageDetail/PageImageDetail.stories.js +2 -6
- package/src/templates/edu/PageContentEdu.stories.js +1 -0
- package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.js +130 -0
- package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue +419 -0
|
@@ -131,6 +131,23 @@ export namespace BaseStory {
|
|
|
131
131
|
};
|
|
132
132
|
};
|
|
133
133
|
caption: string;
|
|
134
|
+
} | {
|
|
135
|
+
blockType: string;
|
|
136
|
+
text: string;
|
|
137
|
+
alignTo: string;
|
|
138
|
+
image: {
|
|
139
|
+
alt: string;
|
|
140
|
+
src: {
|
|
141
|
+
height: number;
|
|
142
|
+
url: string;
|
|
143
|
+
width: number;
|
|
144
|
+
};
|
|
145
|
+
original: string;
|
|
146
|
+
caption: string;
|
|
147
|
+
credit: string;
|
|
148
|
+
detailUrl: string;
|
|
149
|
+
};
|
|
150
|
+
displayCaption: boolean;
|
|
134
151
|
} | {
|
|
135
152
|
blockType: string;
|
|
136
153
|
heading: string;
|
|
@@ -341,6 +358,23 @@ export namespace InlineHero {
|
|
|
341
358
|
};
|
|
342
359
|
};
|
|
343
360
|
caption: string;
|
|
361
|
+
} | {
|
|
362
|
+
blockType: string;
|
|
363
|
+
text: string;
|
|
364
|
+
alignTo: string;
|
|
365
|
+
image: {
|
|
366
|
+
alt: string;
|
|
367
|
+
src: {
|
|
368
|
+
height: number;
|
|
369
|
+
url: string;
|
|
370
|
+
width: number;
|
|
371
|
+
};
|
|
372
|
+
original: string;
|
|
373
|
+
caption: string;
|
|
374
|
+
credit: string;
|
|
375
|
+
detailUrl: string;
|
|
376
|
+
};
|
|
377
|
+
displayCaption: boolean;
|
|
344
378
|
} | {
|
|
345
379
|
blockType: string;
|
|
346
380
|
heading: string;
|
|
@@ -570,6 +604,23 @@ export namespace HeroCarousel {
|
|
|
570
604
|
};
|
|
571
605
|
};
|
|
572
606
|
caption: string;
|
|
607
|
+
} | {
|
|
608
|
+
blockType: string;
|
|
609
|
+
text: string;
|
|
610
|
+
alignTo: string;
|
|
611
|
+
image: {
|
|
612
|
+
alt: string;
|
|
613
|
+
src: {
|
|
614
|
+
height: number;
|
|
615
|
+
url: string;
|
|
616
|
+
width: number;
|
|
617
|
+
};
|
|
618
|
+
original: string;
|
|
619
|
+
caption: string;
|
|
620
|
+
credit: string;
|
|
621
|
+
detailUrl: string;
|
|
622
|
+
};
|
|
623
|
+
displayCaption: boolean;
|
|
573
624
|
} | {
|
|
574
625
|
blockType: string;
|
|
575
626
|
heading: string;
|
|
@@ -745,6 +796,23 @@ export namespace HeroImageComparison {
|
|
|
745
796
|
};
|
|
746
797
|
};
|
|
747
798
|
caption: string;
|
|
799
|
+
} | {
|
|
800
|
+
blockType: string;
|
|
801
|
+
text: string;
|
|
802
|
+
alignTo: string;
|
|
803
|
+
image: {
|
|
804
|
+
alt: string;
|
|
805
|
+
src: {
|
|
806
|
+
height: number;
|
|
807
|
+
url: string;
|
|
808
|
+
width: number;
|
|
809
|
+
};
|
|
810
|
+
original: string;
|
|
811
|
+
caption: string;
|
|
812
|
+
credit: string;
|
|
813
|
+
detailUrl: string;
|
|
814
|
+
};
|
|
815
|
+
displayCaption: boolean;
|
|
748
816
|
} | {
|
|
749
817
|
blockType: string;
|
|
750
818
|
heading: string;
|
|
@@ -916,6 +984,23 @@ export namespace HeroVideo {
|
|
|
916
984
|
};
|
|
917
985
|
};
|
|
918
986
|
caption: string;
|
|
987
|
+
} | {
|
|
988
|
+
blockType: string;
|
|
989
|
+
text: string;
|
|
990
|
+
alignTo: string;
|
|
991
|
+
image: {
|
|
992
|
+
alt: string;
|
|
993
|
+
src: {
|
|
994
|
+
height: number;
|
|
995
|
+
url: string;
|
|
996
|
+
width: number;
|
|
997
|
+
};
|
|
998
|
+
original: string;
|
|
999
|
+
caption: string;
|
|
1000
|
+
credit: string;
|
|
1001
|
+
detailUrl: string;
|
|
1002
|
+
};
|
|
1003
|
+
displayCaption: boolean;
|
|
919
1004
|
} | {
|
|
920
1005
|
blockType: string;
|
|
921
1006
|
heading: string;
|
|
@@ -1079,6 +1164,23 @@ export namespace HeroVideoEmbed {
|
|
|
1079
1164
|
};
|
|
1080
1165
|
};
|
|
1081
1166
|
caption: string;
|
|
1167
|
+
} | {
|
|
1168
|
+
blockType: string;
|
|
1169
|
+
text: string;
|
|
1170
|
+
alignTo: string;
|
|
1171
|
+
image: {
|
|
1172
|
+
alt: string;
|
|
1173
|
+
src: {
|
|
1174
|
+
height: number;
|
|
1175
|
+
url: string;
|
|
1176
|
+
width: number;
|
|
1177
|
+
};
|
|
1178
|
+
original: string;
|
|
1179
|
+
caption: string;
|
|
1180
|
+
credit: string;
|
|
1181
|
+
detailUrl: string;
|
|
1182
|
+
};
|
|
1183
|
+
displayCaption: boolean;
|
|
1082
1184
|
} | {
|
|
1083
1185
|
blockType: string;
|
|
1084
1186
|
heading: string;
|
|
@@ -1233,6 +1335,23 @@ export namespace NoHero {
|
|
|
1233
1335
|
};
|
|
1234
1336
|
};
|
|
1235
1337
|
caption: string;
|
|
1338
|
+
} | {
|
|
1339
|
+
blockType: string;
|
|
1340
|
+
text: string;
|
|
1341
|
+
alignTo: string;
|
|
1342
|
+
image: {
|
|
1343
|
+
alt: string;
|
|
1344
|
+
src: {
|
|
1345
|
+
height: number;
|
|
1346
|
+
url: string;
|
|
1347
|
+
width: number;
|
|
1348
|
+
};
|
|
1349
|
+
original: string;
|
|
1350
|
+
caption: string;
|
|
1351
|
+
credit: string;
|
|
1352
|
+
detailUrl: string;
|
|
1353
|
+
};
|
|
1354
|
+
displayCaption: boolean;
|
|
1236
1355
|
} | {
|
|
1237
1356
|
blockType: string;
|
|
1238
1357
|
heading: string;
|
|
@@ -1388,6 +1507,23 @@ export namespace WithTopper {
|
|
|
1388
1507
|
};
|
|
1389
1508
|
};
|
|
1390
1509
|
caption: string;
|
|
1510
|
+
} | {
|
|
1511
|
+
blockType: string;
|
|
1512
|
+
text: string;
|
|
1513
|
+
alignTo: string;
|
|
1514
|
+
image: {
|
|
1515
|
+
alt: string;
|
|
1516
|
+
src: {
|
|
1517
|
+
height: number;
|
|
1518
|
+
url: string;
|
|
1519
|
+
width: number;
|
|
1520
|
+
};
|
|
1521
|
+
original: string;
|
|
1522
|
+
caption: string;
|
|
1523
|
+
credit: string;
|
|
1524
|
+
detailUrl: string;
|
|
1525
|
+
};
|
|
1526
|
+
displayCaption: boolean;
|
|
1391
1527
|
} | {
|
|
1392
1528
|
blockType: string;
|
|
1393
1529
|
heading: string;
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { default as PageEduEventDetail } from './PageEduEventDetail.vue';
|
|
2
|
+
import { BlockLinkCardCarouselData } from './../../../components/BlockLinkCarousel/BlockLinkCarousel.stories.js';
|
|
3
|
+
declare namespace _default {
|
|
4
|
+
export let title: string;
|
|
5
|
+
export { PageEduEventDetail as component };
|
|
6
|
+
export let tags: string[];
|
|
7
|
+
export namespace parameters {
|
|
8
|
+
namespace html {
|
|
9
|
+
let root: string;
|
|
10
|
+
}
|
|
11
|
+
let layout: string;
|
|
12
|
+
}
|
|
13
|
+
export let excludeStories: RegExp;
|
|
14
|
+
}
|
|
15
|
+
export default _default;
|
|
16
|
+
export namespace BaseStory {
|
|
17
|
+
let name: string;
|
|
18
|
+
namespace args {
|
|
19
|
+
namespace data {
|
|
20
|
+
export let id: string;
|
|
21
|
+
let title_1: string;
|
|
22
|
+
export { title_1 as title };
|
|
23
|
+
export let slug: string;
|
|
24
|
+
export let url: string;
|
|
25
|
+
export let startDate: string;
|
|
26
|
+
export let startDatetime: string;
|
|
27
|
+
export let startTime: string;
|
|
28
|
+
export let endDate: string;
|
|
29
|
+
export let endDatetime: string;
|
|
30
|
+
export let endTime: string;
|
|
31
|
+
export let isAllDay: boolean;
|
|
32
|
+
export let timezone: string;
|
|
33
|
+
export let eventType: string;
|
|
34
|
+
export let summary: string;
|
|
35
|
+
export let locationName: string;
|
|
36
|
+
export let registerLink: {
|
|
37
|
+
text: string;
|
|
38
|
+
document: string;
|
|
39
|
+
page: {
|
|
40
|
+
url: string;
|
|
41
|
+
};
|
|
42
|
+
externalLink: string;
|
|
43
|
+
}[];
|
|
44
|
+
export namespace eventImage {
|
|
45
|
+
export let __typename: string;
|
|
46
|
+
export let srcSet: string;
|
|
47
|
+
export let original: string;
|
|
48
|
+
export namespace src {
|
|
49
|
+
let __typename_1: string;
|
|
50
|
+
export { __typename_1 as __typename };
|
|
51
|
+
let url_1: string;
|
|
52
|
+
export { url_1 as url };
|
|
53
|
+
export let width: string;
|
|
54
|
+
export let height: string;
|
|
55
|
+
}
|
|
56
|
+
let title_2: string;
|
|
57
|
+
export { title_2 as title };
|
|
58
|
+
export let alt: string;
|
|
59
|
+
export let caption: string;
|
|
60
|
+
export let credit: string;
|
|
61
|
+
export let detailUrl: null;
|
|
62
|
+
}
|
|
63
|
+
export namespace thumbnailImage {
|
|
64
|
+
let alt_1: string;
|
|
65
|
+
export { alt_1 as alt };
|
|
66
|
+
let original_1: string;
|
|
67
|
+
export { original_1 as original };
|
|
68
|
+
}
|
|
69
|
+
export let targetAudience: string;
|
|
70
|
+
export let body: ({
|
|
71
|
+
blockType: string;
|
|
72
|
+
heading: string;
|
|
73
|
+
listItem: {
|
|
74
|
+
text: string;
|
|
75
|
+
}[];
|
|
76
|
+
} | {
|
|
77
|
+
blockType: string;
|
|
78
|
+
value: string;
|
|
79
|
+
})[];
|
|
80
|
+
export let relatedEvents: {
|
|
81
|
+
endDate: null;
|
|
82
|
+
startDate: string;
|
|
83
|
+
thumbnailImage: {
|
|
84
|
+
src: {
|
|
85
|
+
height: string;
|
|
86
|
+
url: string;
|
|
87
|
+
width: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
title: string;
|
|
91
|
+
url: string;
|
|
92
|
+
}[];
|
|
93
|
+
export let speakers: ({
|
|
94
|
+
host: string;
|
|
95
|
+
id: string;
|
|
96
|
+
internalLink: null;
|
|
97
|
+
name: string;
|
|
98
|
+
title: string;
|
|
99
|
+
image?: undefined;
|
|
100
|
+
} | {
|
|
101
|
+
host: string;
|
|
102
|
+
id: string;
|
|
103
|
+
image: {
|
|
104
|
+
alt: string;
|
|
105
|
+
src: {
|
|
106
|
+
height: string;
|
|
107
|
+
url: string;
|
|
108
|
+
width: string;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
internalLink: null;
|
|
112
|
+
name: string;
|
|
113
|
+
title: string;
|
|
114
|
+
})[];
|
|
115
|
+
export let relatedLinks: {
|
|
116
|
+
blockType: string;
|
|
117
|
+
heading: string;
|
|
118
|
+
links: {
|
|
119
|
+
document: null;
|
|
120
|
+
externalLink: string;
|
|
121
|
+
page: null;
|
|
122
|
+
text: string;
|
|
123
|
+
}[];
|
|
124
|
+
}[];
|
|
125
|
+
export { BlockLinkCardCarouselData as relatedContent };
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
@@ -52,6 +52,23 @@ export namespace BaseStory {
|
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
caption: string;
|
|
55
|
+
} | {
|
|
56
|
+
blockType: string;
|
|
57
|
+
text: string;
|
|
58
|
+
alignTo: string;
|
|
59
|
+
image: {
|
|
60
|
+
alt: string;
|
|
61
|
+
src: {
|
|
62
|
+
height: number;
|
|
63
|
+
url: string;
|
|
64
|
+
width: number;
|
|
65
|
+
};
|
|
66
|
+
original: string;
|
|
67
|
+
caption: string;
|
|
68
|
+
credit: string;
|
|
69
|
+
detailUrl: string;
|
|
70
|
+
};
|
|
71
|
+
displayCaption: boolean;
|
|
55
72
|
} | {
|
|
56
73
|
blockType: string;
|
|
57
74
|
heading: string;
|
|
@@ -65,7 +82,13 @@ export namespace BaseStory {
|
|
|
65
82
|
slug: string;
|
|
66
83
|
url: string;
|
|
67
84
|
title: string;
|
|
68
|
-
|
|
85
|
+
publicationDate: string;
|
|
86
|
+
authors: {
|
|
87
|
+
author: {
|
|
88
|
+
name: string;
|
|
89
|
+
organization: string;
|
|
90
|
+
};
|
|
91
|
+
}[];
|
|
69
92
|
getTopicsForDisplay: {
|
|
70
93
|
title: string;
|
|
71
94
|
url: string;
|
|
@@ -164,6 +187,23 @@ export namespace InlineHero {
|
|
|
164
187
|
};
|
|
165
188
|
};
|
|
166
189
|
caption: string;
|
|
190
|
+
} | {
|
|
191
|
+
blockType: string;
|
|
192
|
+
text: string;
|
|
193
|
+
alignTo: string;
|
|
194
|
+
image: {
|
|
195
|
+
alt: string;
|
|
196
|
+
src: {
|
|
197
|
+
height: number;
|
|
198
|
+
url: string;
|
|
199
|
+
width: number;
|
|
200
|
+
};
|
|
201
|
+
original: string;
|
|
202
|
+
caption: string;
|
|
203
|
+
credit: string;
|
|
204
|
+
detailUrl: string;
|
|
205
|
+
};
|
|
206
|
+
displayCaption: boolean;
|
|
167
207
|
} | {
|
|
168
208
|
blockType: string;
|
|
169
209
|
heading: string;
|
|
@@ -177,7 +217,13 @@ export namespace InlineHero {
|
|
|
177
217
|
slug: string;
|
|
178
218
|
url: string;
|
|
179
219
|
title: string;
|
|
180
|
-
|
|
220
|
+
publicationDate: string;
|
|
221
|
+
authors: {
|
|
222
|
+
author: {
|
|
223
|
+
name: string;
|
|
224
|
+
organization: string;
|
|
225
|
+
};
|
|
226
|
+
}[];
|
|
181
227
|
getTopicsForDisplay: {
|
|
182
228
|
title: string;
|
|
183
229
|
url: string;
|
|
@@ -277,6 +323,23 @@ export namespace NoHero {
|
|
|
277
323
|
};
|
|
278
324
|
};
|
|
279
325
|
caption: string;
|
|
326
|
+
} | {
|
|
327
|
+
blockType: string;
|
|
328
|
+
text: string;
|
|
329
|
+
alignTo: string;
|
|
330
|
+
image: {
|
|
331
|
+
alt: string;
|
|
332
|
+
src: {
|
|
333
|
+
height: number;
|
|
334
|
+
url: string;
|
|
335
|
+
width: number;
|
|
336
|
+
};
|
|
337
|
+
original: string;
|
|
338
|
+
caption: string;
|
|
339
|
+
credit: string;
|
|
340
|
+
detailUrl: string;
|
|
341
|
+
};
|
|
342
|
+
displayCaption: boolean;
|
|
280
343
|
} | {
|
|
281
344
|
blockType: string;
|
|
282
345
|
heading: string;
|
|
@@ -290,7 +353,13 @@ export namespace NoHero {
|
|
|
290
353
|
slug: string;
|
|
291
354
|
url: string;
|
|
292
355
|
title: string;
|
|
293
|
-
|
|
356
|
+
publicationDate: string;
|
|
357
|
+
authors: {
|
|
358
|
+
author: {
|
|
359
|
+
name: string;
|
|
360
|
+
organization: string;
|
|
361
|
+
};
|
|
362
|
+
}[];
|
|
294
363
|
getTopicsForDisplay: {
|
|
295
364
|
title: string;
|
|
296
365
|
url: string;
|
|
@@ -69,6 +69,23 @@ export namespace BaseStory {
|
|
|
69
69
|
};
|
|
70
70
|
};
|
|
71
71
|
caption: string;
|
|
72
|
+
} | {
|
|
73
|
+
blockType: string;
|
|
74
|
+
text: string;
|
|
75
|
+
alignTo: string;
|
|
76
|
+
image: {
|
|
77
|
+
alt: string;
|
|
78
|
+
src: {
|
|
79
|
+
height: number;
|
|
80
|
+
url: string;
|
|
81
|
+
width: number;
|
|
82
|
+
};
|
|
83
|
+
original: string;
|
|
84
|
+
caption: string;
|
|
85
|
+
credit: string;
|
|
86
|
+
detailUrl: string;
|
|
87
|
+
};
|
|
88
|
+
displayCaption: boolean;
|
|
72
89
|
} | {
|
|
73
90
|
blockType: string;
|
|
74
91
|
heading: string;
|
|
@@ -42,6 +42,23 @@ export namespace BaseStory {
|
|
|
42
42
|
};
|
|
43
43
|
};
|
|
44
44
|
caption: string;
|
|
45
|
+
} | {
|
|
46
|
+
blockType: string;
|
|
47
|
+
text: string;
|
|
48
|
+
alignTo: string;
|
|
49
|
+
image: {
|
|
50
|
+
alt: string;
|
|
51
|
+
src: {
|
|
52
|
+
height: number;
|
|
53
|
+
url: string;
|
|
54
|
+
width: number;
|
|
55
|
+
};
|
|
56
|
+
original: string;
|
|
57
|
+
caption: string;
|
|
58
|
+
credit: string;
|
|
59
|
+
detailUrl: string;
|
|
60
|
+
};
|
|
61
|
+
displayCaption: boolean;
|
|
45
62
|
} | {
|
|
46
63
|
blockType: string;
|
|
47
64
|
heading: string;
|
|
@@ -116,6 +116,23 @@ export namespace Template {
|
|
|
116
116
|
};
|
|
117
117
|
};
|
|
118
118
|
caption: string;
|
|
119
|
+
} | {
|
|
120
|
+
blockType: string;
|
|
121
|
+
text: string;
|
|
122
|
+
alignTo: string;
|
|
123
|
+
image: {
|
|
124
|
+
alt: string;
|
|
125
|
+
src: {
|
|
126
|
+
height: number;
|
|
127
|
+
url: string;
|
|
128
|
+
width: number;
|
|
129
|
+
};
|
|
130
|
+
original: string;
|
|
131
|
+
caption: string;
|
|
132
|
+
credit: string;
|
|
133
|
+
detailUrl: string;
|
|
134
|
+
};
|
|
135
|
+
displayCaption: boolean;
|
|
119
136
|
} | {
|
|
120
137
|
blockType: string;
|
|
121
138
|
heading: string;
|