@explorer-1/vue 0.2.3 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/components.d.ts +6 -3
  2. package/dist/explorer-1-vue.js +5603 -5375
  3. package/dist/explorer-1-vue.umd.cjs +12 -12
  4. package/dist/src/components/BlockCardGrid/BlockCardGrid.stories.d.ts +60 -0
  5. package/dist/src/components/BlockCardGrid/BlockCardGrid.vue.d.ts +33 -0
  6. package/dist/src/components/{BlockCard/BlockCard.stories.d.ts → BlockCardGridItem/BlockCardGridItem.stories.d.ts} +18 -4
  7. package/dist/src/components/{BlockCardGroup/BlockCardGroup.vue.d.ts → BlockCardGridItem/BlockCardGridItem.vue.d.ts} +10 -12
  8. package/dist/src/components/{BlockCard/BlockCard.vue.d.ts → BlockCardGridItem/BlockCardGridItemElement.vue.d.ts} +20 -14
  9. package/dist/src/components/BlockCircleImageCard/BlockCircleImageCard.stories.d.ts +1 -0
  10. package/dist/src/components/BlockHeading/BlockHeading.vue.d.ts +25 -2
  11. package/dist/src/components/BlockLinkCard/BlockLinkCard.stories.d.ts +1 -0
  12. package/dist/src/components/BlockLinkTile/BlockLinkTile.stories.d.ts +1 -0
  13. package/dist/src/components/BlockListCards/BlockListCards.stories.d.ts +1 -0
  14. package/dist/src/components/BlockStreamfield/BlockStreamfield.stories.d.ts +60 -0
  15. package/dist/src/components/BlockStreamfield/BlockStreamfield.vue.d.ts +2 -3
  16. package/dist/src/components/DetailHeadline/DetailHeadline.stories.d.ts +30 -1
  17. package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +37 -0
  18. package/dist/src/components/LayoutHelper/LayoutHelper.vue.d.ts +9 -0
  19. package/dist/src/components/NavDesktop/NavDesktop.stories.d.ts +3 -0
  20. package/dist/src/components/NavDesktop/NavDesktop.vue.d.ts +1 -0
  21. package/dist/src/components/NavDesktop/NavDesktopDropdown.vue.d.ts +1 -0
  22. package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +1 -0
  23. package/dist/src/components/NavDropdownToggle/NavDropdownToggle.vue.d.ts +19 -6
  24. package/dist/src/components/NavJumpMenu/NavJumpMenu.stories.d.ts +31 -0
  25. package/dist/src/components/NavMobile/NavMobile.stories.d.ts +30 -3
  26. package/dist/src/components/NavMobile/NavMobile.vue.d.ts +1 -0
  27. package/dist/src/components/NavMobile/NavMobileDropdown.vue.d.ts +9 -1
  28. package/dist/src/components/NavMobile/NavMobileEdu.stories.d.ts +3 -0
  29. package/dist/src/components/NavMobile/NavMobileSecondaryDropdown.vue.d.ts +7 -0
  30. package/dist/src/components/NavSecondary/NavSecondary.stories.d.ts +8 -0
  31. package/dist/src/components/NavSecondary/NavSecondary.vue.d.ts +23 -1
  32. package/dist/src/components/NavSecondary/NavSecondaryDropdown.vue.d.ts +33 -2
  33. package/dist/src/components/NavSecondary/NavSecondaryDropdownContent.vue.d.ts +11 -1
  34. package/dist/src/components/NavSecondary/NavSecondaryLink.vue.d.ts +21 -3
  35. package/dist/src/components/ThumbnailCarousel/ThumbnailCarousel.stories.d.ts +1 -0
  36. package/dist/src/docs/foundation/grid_layouthelpers.stories.d.ts +36 -0
  37. package/dist/src/interfaces.d.ts +13 -3
  38. package/dist/src/store/header.d.ts +2 -0
  39. package/dist/src/templates/PageNewsDetail/PageNewsDetail.stories.d.ts +8 -0
  40. package/dist/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.stories.d.ts → PageEduExplainerArticle/PageEduExplainerArticle.stories.d.ts} +4 -2
  41. package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +1007 -6
  42. package/dist/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.stories.d.ts +60 -0
  43. package/dist/src/templates/www/PageRoboticsDetail/PageRoboticsDetail.stories.d.ts +29 -2
  44. package/dist/src/utils/eventBus.d.ts +1 -0
  45. package/dist/src/utils/getHeadingId.d.ts +1 -0
  46. package/dist/src/utils/mixins.d.ts +1 -1
  47. package/dist/style.css +1 -1
  48. package/package.json +3 -2
  49. package/src/components/BaseAudio/BaseAudio.vue +3 -4
  50. package/src/components/BaseLink/BaseLink.vue +2 -0
  51. package/src/components/BaseTag/BaseTag.vue +4 -4
  52. package/src/components/BlockHeading/BlockHeading.vue +28 -0
  53. package/src/components/BlockStreamfield/BlockStreamfield.vue +5 -1
  54. package/src/components/DetailHeadline/DetailHeadline.stories.js +28 -2
  55. package/src/components/DetailHeadline/DetailHeadline.vue +85 -32
  56. package/src/components/NavDesktop/NavDesktopDropdown.vue +2 -4
  57. package/src/components/NavDropdownToggle/NavDropdownToggle.vue +8 -3
  58. package/src/components/NavJumpMenu/NavJumpMenu.stories.js +47 -0
  59. package/src/components/NavJumpMenu/NavJumpMenu.vue +141 -0
  60. package/src/components/NavJumpMenu/NavJumpMenuContent.vue +74 -0
  61. package/src/components/NavMobile/NavMobile.vue +2 -4
  62. package/src/components/NavMobile/NavMobileDropdown.vue +8 -4
  63. package/src/components/NavMobile/NavMobileSecondaryDropdown.vue +4 -1
  64. package/src/components/NavSecondary/NavSecondary.stories.js +8 -3
  65. package/src/components/NavSecondary/NavSecondary.vue +26 -6
  66. package/src/components/NavSecondary/NavSecondaryDropdown.vue +52 -17
  67. package/src/components/NavSecondary/NavSecondaryDropdownContent.vue +5 -1
  68. package/src/components/NavSecondary/NavSecondaryLink.vue +38 -11
  69. package/src/interfaces.ts +7 -1
  70. package/src/store/header.ts +6 -1
  71. package/src/templates/PageNewsDetail/PageNewsDetail.stories.js +1 -0
  72. package/src/templates/PageNewsDetail/PageNewsDetail.vue +1 -0
  73. package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue +2 -2
  74. package/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.stories.js → PageEduExplainerArticle/PageEduExplainerArticle.stories.js} +8 -6
  75. package/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.vue → PageEduExplainerArticle/PageEduExplainerArticle.vue} +5 -2
  76. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.js +7 -4
  77. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +18 -2
  78. package/src/utils/eventBus.ts +3 -0
  79. package/src/utils/getHeadingId.ts +5 -0
  80. package/src/utils/mixins.ts +5 -1
  81. package/dist/src/components/BlockCardGroup/BlockCardGroup.stories.d.ts +0 -32
@@ -26,13 +26,65 @@ export namespace BaseStory {
26
26
  body: ({
27
27
  blockType: string;
28
28
  heading: string;
29
- level: string;
30
- size: string;
29
+ text: string;
30
+ page: {
31
+ url: string;
32
+ };
33
+ externalLink: string;
31
34
  } | {
32
35
  blockType: string;
33
36
  title: string;
34
37
  caption: string;
35
38
  url: string;
39
+ } | {
40
+ blockType: string;
41
+ fullBleed: boolean;
42
+ image: {
43
+ alt: string;
44
+ caption: string;
45
+ credit: string;
46
+ detailUrl: string;
47
+ original: string;
48
+ src: {
49
+ height: number;
50
+ url: string;
51
+ width: number;
52
+ };
53
+ srcSet: string;
54
+ };
55
+ imageFullBleed: {
56
+ alt: string;
57
+ caption: string;
58
+ credit: string;
59
+ detailUrl: string;
60
+ original: string;
61
+ src: {
62
+ width: number;
63
+ height: number;
64
+ url: string;
65
+ };
66
+ srcCropped: {
67
+ width: number;
68
+ height: number;
69
+ url: string;
70
+ };
71
+ screenXs: {
72
+ url: string;
73
+ width: number;
74
+ };
75
+ screenLg: {
76
+ url: string;
77
+ width: number;
78
+ };
79
+ screenXl: {
80
+ url: string;
81
+ width: number;
82
+ };
83
+ screenThreexl: {
84
+ url: string;
85
+ width: number;
86
+ };
87
+ };
36
88
  } | {
37
89
  blockType: string;
38
90
  beforeImage: {
@@ -52,6 +104,41 @@ export namespace BaseStory {
52
104
  };
53
105
  };
54
106
  caption: string;
107
+ } | {
108
+ id: string;
109
+ blockType: string;
110
+ galleryTitle: string;
111
+ galleryDescription: string;
112
+ coverImage: {
113
+ alt: string;
114
+ title: string;
115
+ caption: string;
116
+ credit: string;
117
+ detailUrl: string;
118
+ original: string;
119
+ src: {
120
+ height: string;
121
+ url: string;
122
+ width: string;
123
+ };
124
+ srcSet: string;
125
+ };
126
+ gallerySlides: {
127
+ image: {
128
+ alt: string;
129
+ title: string;
130
+ caption: string;
131
+ credit: string;
132
+ detailUrl: string;
133
+ original: string;
134
+ src: {
135
+ height: string;
136
+ url: string;
137
+ width: string;
138
+ };
139
+ srcSet: string;
140
+ };
141
+ }[];
55
142
  } | {
56
143
  blockType: string;
57
144
  text: string;
@@ -75,14 +162,260 @@ export namespace BaseStory {
75
162
  listItem: {
76
163
  text: string;
77
164
  }[];
165
+ } | {
166
+ blockType: string;
167
+ field: string;
168
+ items: ({
169
+ description: string;
170
+ heading: string;
171
+ image: {
172
+ src: {
173
+ url: string;
174
+ width: string;
175
+ height: string;
176
+ };
177
+ };
178
+ links: ({
179
+ externalLink: string;
180
+ page: null;
181
+ text: string;
182
+ } | {
183
+ externalLink: null;
184
+ page: {
185
+ url: string;
186
+ };
187
+ text: string;
188
+ })[];
189
+ } | {
190
+ description: string;
191
+ heading: string;
192
+ image: {
193
+ src: {
194
+ url: string;
195
+ width: string;
196
+ height: string;
197
+ };
198
+ };
199
+ links: {
200
+ externalLink: null;
201
+ page: null;
202
+ document: {
203
+ url: string;
204
+ };
205
+ text: string;
206
+ }[];
207
+ })[];
208
+ } | {
209
+ blockType: string;
210
+ quote: string;
211
+ attribution: string;
212
+ quoteLink: {
213
+ externalLink: string;
214
+ page: {
215
+ url: string;
216
+ };
217
+ }[];
218
+ thumbnail: {
219
+ src: string;
220
+ alt: string;
221
+ };
222
+ } | {
223
+ blockType: string;
224
+ heading: string;
225
+ links: ({
226
+ text: string;
227
+ document: {
228
+ url: string;
229
+ };
230
+ page: string;
231
+ externalLink: string;
232
+ } | {
233
+ text: string;
234
+ document: string;
235
+ page: {
236
+ url: string;
237
+ };
238
+ externalLink: string;
239
+ } | {
240
+ text: string;
241
+ document: string;
242
+ page: string;
243
+ externalLink: string;
244
+ })[];
245
+ } | {
246
+ blockType: string;
247
+ table: string;
248
+ } | {
249
+ blockType: string;
250
+ video: {
251
+ duration: string;
252
+ file: string;
253
+ fileExtension: string;
254
+ fileOgg: string;
255
+ fileWebm: string;
256
+ height: null;
257
+ id: string;
258
+ sources: string;
259
+ title: string;
260
+ type: string;
261
+ width: null;
262
+ };
263
+ caption: string;
264
+ credit: string;
265
+ } | {
266
+ level: string;
267
+ size: string;
268
+ blockType: string;
269
+ heading: string;
270
+ value?: undefined;
271
+ showTitle?: undefined;
272
+ items?: undefined;
273
+ field?: undefined;
78
274
  } | {
79
275
  blockType: string;
80
276
  value: string;
277
+ heading?: undefined;
278
+ level?: undefined;
279
+ showTitle?: undefined;
280
+ items?: undefined;
281
+ field?: undefined;
282
+ } | {
283
+ blockType: string;
284
+ heading: string;
285
+ level: string;
286
+ value?: undefined;
287
+ showTitle?: undefined;
288
+ items?: undefined;
289
+ field?: undefined;
290
+ } | {
291
+ heading: string;
292
+ introduction: string;
293
+ buttonText: string;
294
+ image: {
295
+ full: {
296
+ url: string;
297
+ width: number;
298
+ height: number;
299
+ };
300
+ half: {
301
+ url: string;
302
+ width: number;
303
+ height: number;
304
+ };
305
+ };
306
+ fullWidthImage: boolean;
307
+ teaserPage: ({
308
+ blockType: string;
309
+ page?: undefined;
310
+ } | {
311
+ blockType: string;
312
+ page: {
313
+ label: string;
314
+ title: string;
315
+ url: string;
316
+ };
317
+ })[];
318
+ blockType: string;
319
+ value?: undefined;
320
+ level?: undefined;
321
+ showTitle?: undefined;
322
+ items?: undefined;
323
+ field?: undefined;
324
+ } | {
325
+ blockType: string;
326
+ showTitle: boolean;
327
+ items: {
328
+ image: {
329
+ alt: string;
330
+ title: string;
331
+ caption: string;
332
+ credit: string;
333
+ detailUrl: string;
334
+ original: string;
335
+ src: {
336
+ height: string;
337
+ url: string;
338
+ width: string;
339
+ };
340
+ srcSet: string;
341
+ };
342
+ }[];
343
+ value?: undefined;
344
+ heading?: undefined;
345
+ level?: undefined;
346
+ field?: undefined;
347
+ } | {
348
+ blockType: string;
349
+ embed: {
350
+ embed: string;
351
+ };
352
+ caption: string;
353
+ credit: string;
354
+ value?: undefined;
355
+ heading?: undefined;
356
+ level?: undefined;
357
+ showTitle?: undefined;
358
+ items?: undefined;
359
+ field?: undefined;
360
+ } | {
361
+ blockType: string;
362
+ field: string;
363
+ items: ({
364
+ label: string;
365
+ title: string;
366
+ description: string;
367
+ image: {
368
+ alt: string;
369
+ src: {
370
+ height: number;
371
+ url: string;
372
+ width: number;
373
+ };
374
+ srcSet: string;
375
+ };
376
+ link: {
377
+ page: null;
378
+ externalLink: string;
379
+ };
380
+ } | {
381
+ label: string;
382
+ title: string;
383
+ description: string;
384
+ image: {
385
+ alt: string;
386
+ src: {
387
+ height: number;
388
+ url: string;
389
+ width: number;
390
+ };
391
+ srcSet: string;
392
+ };
393
+ link: {
394
+ page: {
395
+ url: string;
396
+ };
397
+ externalLink: string;
398
+ };
399
+ } | {
400
+ label: string;
401
+ title: string;
402
+ description: string;
403
+ image: null;
404
+ link: {
405
+ page: null;
406
+ externalLink: string;
407
+ };
408
+ })[];
409
+ value?: undefined;
410
+ heading?: undefined;
411
+ level?: undefined;
412
+ showTitle?: undefined;
81
413
  })[];
82
414
  slug: string;
83
415
  url: string;
84
416
  title: string;
85
417
  publicationDate: string;
418
+ readTime: string;
86
419
  authors: {
87
420
  author: {
88
421
  name: string;
@@ -158,16 +491,69 @@ export namespace InlineHero {
158
491
  export namespace args_1 {
159
492
  let data_1: {
160
493
  heroPosition: string;
494
+ showJumpMenu: boolean;
161
495
  body: ({
162
496
  blockType: string;
163
497
  heading: string;
164
- level: string;
165
- size: string;
498
+ text: string;
499
+ page: {
500
+ url: string;
501
+ };
502
+ externalLink: string;
166
503
  } | {
167
504
  blockType: string;
168
505
  title: string;
169
506
  caption: string;
170
507
  url: string;
508
+ } | {
509
+ blockType: string;
510
+ fullBleed: boolean;
511
+ image: {
512
+ alt: string;
513
+ caption: string;
514
+ credit: string;
515
+ detailUrl: string;
516
+ original: string;
517
+ src: {
518
+ height: number;
519
+ url: string;
520
+ width: number;
521
+ };
522
+ srcSet: string;
523
+ };
524
+ imageFullBleed: {
525
+ alt: string;
526
+ caption: string;
527
+ credit: string;
528
+ detailUrl: string;
529
+ original: string;
530
+ src: {
531
+ width: number;
532
+ height: number;
533
+ url: string;
534
+ };
535
+ srcCropped: {
536
+ width: number;
537
+ height: number;
538
+ url: string;
539
+ };
540
+ screenXs: {
541
+ url: string;
542
+ width: number;
543
+ };
544
+ screenLg: {
545
+ url: string;
546
+ width: number;
547
+ };
548
+ screenXl: {
549
+ url: string;
550
+ width: number;
551
+ };
552
+ screenThreexl: {
553
+ url: string;
554
+ width: number;
555
+ };
556
+ };
171
557
  } | {
172
558
  blockType: string;
173
559
  beforeImage: {
@@ -187,6 +573,41 @@ export namespace InlineHero {
187
573
  };
188
574
  };
189
575
  caption: string;
576
+ } | {
577
+ id: string;
578
+ blockType: string;
579
+ galleryTitle: string;
580
+ galleryDescription: string;
581
+ coverImage: {
582
+ alt: string;
583
+ title: string;
584
+ caption: string;
585
+ credit: string;
586
+ detailUrl: string;
587
+ original: string;
588
+ src: {
589
+ height: string;
590
+ url: string;
591
+ width: string;
592
+ };
593
+ srcSet: string;
594
+ };
595
+ gallerySlides: {
596
+ image: {
597
+ alt: string;
598
+ title: string;
599
+ caption: string;
600
+ credit: string;
601
+ detailUrl: string;
602
+ original: string;
603
+ src: {
604
+ height: string;
605
+ url: string;
606
+ width: string;
607
+ };
608
+ srcSet: string;
609
+ };
610
+ }[];
190
611
  } | {
191
612
  blockType: string;
192
613
  text: string;
@@ -210,14 +631,260 @@ export namespace InlineHero {
210
631
  listItem: {
211
632
  text: string;
212
633
  }[];
634
+ } | {
635
+ blockType: string;
636
+ field: string;
637
+ items: ({
638
+ description: string;
639
+ heading: string;
640
+ image: {
641
+ src: {
642
+ url: string;
643
+ width: string;
644
+ height: string;
645
+ };
646
+ };
647
+ links: ({
648
+ externalLink: string;
649
+ page: null;
650
+ text: string;
651
+ } | {
652
+ externalLink: null;
653
+ page: {
654
+ url: string;
655
+ };
656
+ text: string;
657
+ })[];
658
+ } | {
659
+ description: string;
660
+ heading: string;
661
+ image: {
662
+ src: {
663
+ url: string;
664
+ width: string;
665
+ height: string;
666
+ };
667
+ };
668
+ links: {
669
+ externalLink: null;
670
+ page: null;
671
+ document: {
672
+ url: string;
673
+ };
674
+ text: string;
675
+ }[];
676
+ })[];
677
+ } | {
678
+ blockType: string;
679
+ quote: string;
680
+ attribution: string;
681
+ quoteLink: {
682
+ externalLink: string;
683
+ page: {
684
+ url: string;
685
+ };
686
+ }[];
687
+ thumbnail: {
688
+ src: string;
689
+ alt: string;
690
+ };
691
+ } | {
692
+ blockType: string;
693
+ heading: string;
694
+ links: ({
695
+ text: string;
696
+ document: {
697
+ url: string;
698
+ };
699
+ page: string;
700
+ externalLink: string;
701
+ } | {
702
+ text: string;
703
+ document: string;
704
+ page: {
705
+ url: string;
706
+ };
707
+ externalLink: string;
708
+ } | {
709
+ text: string;
710
+ document: string;
711
+ page: string;
712
+ externalLink: string;
713
+ })[];
714
+ } | {
715
+ blockType: string;
716
+ table: string;
717
+ } | {
718
+ blockType: string;
719
+ video: {
720
+ duration: string;
721
+ file: string;
722
+ fileExtension: string;
723
+ fileOgg: string;
724
+ fileWebm: string;
725
+ height: null;
726
+ id: string;
727
+ sources: string;
728
+ title: string;
729
+ type: string;
730
+ width: null;
731
+ };
732
+ caption: string;
733
+ credit: string;
734
+ } | {
735
+ level: string;
736
+ size: string;
737
+ blockType: string;
738
+ heading: string;
739
+ value?: undefined;
740
+ showTitle?: undefined;
741
+ items?: undefined;
742
+ field?: undefined;
213
743
  } | {
214
744
  blockType: string;
215
745
  value: string;
746
+ heading?: undefined;
747
+ level?: undefined;
748
+ showTitle?: undefined;
749
+ items?: undefined;
750
+ field?: undefined;
751
+ } | {
752
+ blockType: string;
753
+ heading: string;
754
+ level: string;
755
+ value?: undefined;
756
+ showTitle?: undefined;
757
+ items?: undefined;
758
+ field?: undefined;
759
+ } | {
760
+ heading: string;
761
+ introduction: string;
762
+ buttonText: string;
763
+ image: {
764
+ full: {
765
+ url: string;
766
+ width: number;
767
+ height: number;
768
+ };
769
+ half: {
770
+ url: string;
771
+ width: number;
772
+ height: number;
773
+ };
774
+ };
775
+ fullWidthImage: boolean;
776
+ teaserPage: ({
777
+ blockType: string;
778
+ page?: undefined;
779
+ } | {
780
+ blockType: string;
781
+ page: {
782
+ label: string;
783
+ title: string;
784
+ url: string;
785
+ };
786
+ })[];
787
+ blockType: string;
788
+ value?: undefined;
789
+ level?: undefined;
790
+ showTitle?: undefined;
791
+ items?: undefined;
792
+ field?: undefined;
793
+ } | {
794
+ blockType: string;
795
+ showTitle: boolean;
796
+ items: {
797
+ image: {
798
+ alt: string;
799
+ title: string;
800
+ caption: string;
801
+ credit: string;
802
+ detailUrl: string;
803
+ original: string;
804
+ src: {
805
+ height: string;
806
+ url: string;
807
+ width: string;
808
+ };
809
+ srcSet: string;
810
+ };
811
+ }[];
812
+ value?: undefined;
813
+ heading?: undefined;
814
+ level?: undefined;
815
+ field?: undefined;
816
+ } | {
817
+ blockType: string;
818
+ embed: {
819
+ embed: string;
820
+ };
821
+ caption: string;
822
+ credit: string;
823
+ value?: undefined;
824
+ heading?: undefined;
825
+ level?: undefined;
826
+ showTitle?: undefined;
827
+ items?: undefined;
828
+ field?: undefined;
829
+ } | {
830
+ blockType: string;
831
+ field: string;
832
+ items: ({
833
+ label: string;
834
+ title: string;
835
+ description: string;
836
+ image: {
837
+ alt: string;
838
+ src: {
839
+ height: number;
840
+ url: string;
841
+ width: number;
842
+ };
843
+ srcSet: string;
844
+ };
845
+ link: {
846
+ page: null;
847
+ externalLink: string;
848
+ };
849
+ } | {
850
+ label: string;
851
+ title: string;
852
+ description: string;
853
+ image: {
854
+ alt: string;
855
+ src: {
856
+ height: number;
857
+ url: string;
858
+ width: number;
859
+ };
860
+ srcSet: string;
861
+ };
862
+ link: {
863
+ page: {
864
+ url: string;
865
+ };
866
+ externalLink: string;
867
+ };
868
+ } | {
869
+ label: string;
870
+ title: string;
871
+ description: string;
872
+ image: null;
873
+ link: {
874
+ page: null;
875
+ externalLink: string;
876
+ };
877
+ })[];
878
+ value?: undefined;
879
+ heading?: undefined;
880
+ level?: undefined;
881
+ showTitle?: undefined;
216
882
  })[];
217
883
  slug: string;
218
884
  url: string;
219
885
  title: string;
220
886
  publicationDate: string;
887
+ readTime: string;
221
888
  authors: {
222
889
  author: {
223
890
  name: string;
@@ -294,16 +961,69 @@ export namespace NoHero {
294
961
  export namespace args_2 {
295
962
  let data_2: {
296
963
  hero: never[];
964
+ showJumpMenu: boolean;
297
965
  body: ({
298
966
  blockType: string;
299
967
  heading: string;
300
- level: string;
301
- size: string;
968
+ text: string;
969
+ page: {
970
+ url: string;
971
+ };
972
+ externalLink: string;
302
973
  } | {
303
974
  blockType: string;
304
975
  title: string;
305
976
  caption: string;
306
977
  url: string;
978
+ } | {
979
+ blockType: string;
980
+ fullBleed: boolean;
981
+ image: {
982
+ alt: string;
983
+ caption: string;
984
+ credit: string;
985
+ detailUrl: string;
986
+ original: string;
987
+ src: {
988
+ height: number;
989
+ url: string;
990
+ width: number;
991
+ };
992
+ srcSet: string;
993
+ };
994
+ imageFullBleed: {
995
+ alt: string;
996
+ caption: string;
997
+ credit: string;
998
+ detailUrl: string;
999
+ original: string;
1000
+ src: {
1001
+ width: number;
1002
+ height: number;
1003
+ url: string;
1004
+ };
1005
+ srcCropped: {
1006
+ width: number;
1007
+ height: number;
1008
+ url: string;
1009
+ };
1010
+ screenXs: {
1011
+ url: string;
1012
+ width: number;
1013
+ };
1014
+ screenLg: {
1015
+ url: string;
1016
+ width: number;
1017
+ };
1018
+ screenXl: {
1019
+ url: string;
1020
+ width: number;
1021
+ };
1022
+ screenThreexl: {
1023
+ url: string;
1024
+ width: number;
1025
+ };
1026
+ };
307
1027
  } | {
308
1028
  blockType: string;
309
1029
  beforeImage: {
@@ -323,6 +1043,41 @@ export namespace NoHero {
323
1043
  };
324
1044
  };
325
1045
  caption: string;
1046
+ } | {
1047
+ id: string;
1048
+ blockType: string;
1049
+ galleryTitle: string;
1050
+ galleryDescription: string;
1051
+ coverImage: {
1052
+ alt: string;
1053
+ title: string;
1054
+ caption: string;
1055
+ credit: string;
1056
+ detailUrl: string;
1057
+ original: string;
1058
+ src: {
1059
+ height: string;
1060
+ url: string;
1061
+ width: string;
1062
+ };
1063
+ srcSet: string;
1064
+ };
1065
+ gallerySlides: {
1066
+ image: {
1067
+ alt: string;
1068
+ title: string;
1069
+ caption: string;
1070
+ credit: string;
1071
+ detailUrl: string;
1072
+ original: string;
1073
+ src: {
1074
+ height: string;
1075
+ url: string;
1076
+ width: string;
1077
+ };
1078
+ srcSet: string;
1079
+ };
1080
+ }[];
326
1081
  } | {
327
1082
  blockType: string;
328
1083
  text: string;
@@ -346,14 +1101,260 @@ export namespace NoHero {
346
1101
  listItem: {
347
1102
  text: string;
348
1103
  }[];
1104
+ } | {
1105
+ blockType: string;
1106
+ field: string;
1107
+ items: ({
1108
+ description: string;
1109
+ heading: string;
1110
+ image: {
1111
+ src: {
1112
+ url: string;
1113
+ width: string;
1114
+ height: string;
1115
+ };
1116
+ };
1117
+ links: ({
1118
+ externalLink: string;
1119
+ page: null;
1120
+ text: string;
1121
+ } | {
1122
+ externalLink: null;
1123
+ page: {
1124
+ url: string;
1125
+ };
1126
+ text: string;
1127
+ })[];
1128
+ } | {
1129
+ description: string;
1130
+ heading: string;
1131
+ image: {
1132
+ src: {
1133
+ url: string;
1134
+ width: string;
1135
+ height: string;
1136
+ };
1137
+ };
1138
+ links: {
1139
+ externalLink: null;
1140
+ page: null;
1141
+ document: {
1142
+ url: string;
1143
+ };
1144
+ text: string;
1145
+ }[];
1146
+ })[];
1147
+ } | {
1148
+ blockType: string;
1149
+ quote: string;
1150
+ attribution: string;
1151
+ quoteLink: {
1152
+ externalLink: string;
1153
+ page: {
1154
+ url: string;
1155
+ };
1156
+ }[];
1157
+ thumbnail: {
1158
+ src: string;
1159
+ alt: string;
1160
+ };
1161
+ } | {
1162
+ blockType: string;
1163
+ heading: string;
1164
+ links: ({
1165
+ text: string;
1166
+ document: {
1167
+ url: string;
1168
+ };
1169
+ page: string;
1170
+ externalLink: string;
1171
+ } | {
1172
+ text: string;
1173
+ document: string;
1174
+ page: {
1175
+ url: string;
1176
+ };
1177
+ externalLink: string;
1178
+ } | {
1179
+ text: string;
1180
+ document: string;
1181
+ page: string;
1182
+ externalLink: string;
1183
+ })[];
1184
+ } | {
1185
+ blockType: string;
1186
+ table: string;
1187
+ } | {
1188
+ blockType: string;
1189
+ video: {
1190
+ duration: string;
1191
+ file: string;
1192
+ fileExtension: string;
1193
+ fileOgg: string;
1194
+ fileWebm: string;
1195
+ height: null;
1196
+ id: string;
1197
+ sources: string;
1198
+ title: string;
1199
+ type: string;
1200
+ width: null;
1201
+ };
1202
+ caption: string;
1203
+ credit: string;
1204
+ } | {
1205
+ level: string;
1206
+ size: string;
1207
+ blockType: string;
1208
+ heading: string;
1209
+ value?: undefined;
1210
+ showTitle?: undefined;
1211
+ items?: undefined;
1212
+ field?: undefined;
349
1213
  } | {
350
1214
  blockType: string;
351
1215
  value: string;
1216
+ heading?: undefined;
1217
+ level?: undefined;
1218
+ showTitle?: undefined;
1219
+ items?: undefined;
1220
+ field?: undefined;
1221
+ } | {
1222
+ blockType: string;
1223
+ heading: string;
1224
+ level: string;
1225
+ value?: undefined;
1226
+ showTitle?: undefined;
1227
+ items?: undefined;
1228
+ field?: undefined;
1229
+ } | {
1230
+ heading: string;
1231
+ introduction: string;
1232
+ buttonText: string;
1233
+ image: {
1234
+ full: {
1235
+ url: string;
1236
+ width: number;
1237
+ height: number;
1238
+ };
1239
+ half: {
1240
+ url: string;
1241
+ width: number;
1242
+ height: number;
1243
+ };
1244
+ };
1245
+ fullWidthImage: boolean;
1246
+ teaserPage: ({
1247
+ blockType: string;
1248
+ page?: undefined;
1249
+ } | {
1250
+ blockType: string;
1251
+ page: {
1252
+ label: string;
1253
+ title: string;
1254
+ url: string;
1255
+ };
1256
+ })[];
1257
+ blockType: string;
1258
+ value?: undefined;
1259
+ level?: undefined;
1260
+ showTitle?: undefined;
1261
+ items?: undefined;
1262
+ field?: undefined;
1263
+ } | {
1264
+ blockType: string;
1265
+ showTitle: boolean;
1266
+ items: {
1267
+ image: {
1268
+ alt: string;
1269
+ title: string;
1270
+ caption: string;
1271
+ credit: string;
1272
+ detailUrl: string;
1273
+ original: string;
1274
+ src: {
1275
+ height: string;
1276
+ url: string;
1277
+ width: string;
1278
+ };
1279
+ srcSet: string;
1280
+ };
1281
+ }[];
1282
+ value?: undefined;
1283
+ heading?: undefined;
1284
+ level?: undefined;
1285
+ field?: undefined;
1286
+ } | {
1287
+ blockType: string;
1288
+ embed: {
1289
+ embed: string;
1290
+ };
1291
+ caption: string;
1292
+ credit: string;
1293
+ value?: undefined;
1294
+ heading?: undefined;
1295
+ level?: undefined;
1296
+ showTitle?: undefined;
1297
+ items?: undefined;
1298
+ field?: undefined;
1299
+ } | {
1300
+ blockType: string;
1301
+ field: string;
1302
+ items: ({
1303
+ label: string;
1304
+ title: string;
1305
+ description: string;
1306
+ image: {
1307
+ alt: string;
1308
+ src: {
1309
+ height: number;
1310
+ url: string;
1311
+ width: number;
1312
+ };
1313
+ srcSet: string;
1314
+ };
1315
+ link: {
1316
+ page: null;
1317
+ externalLink: string;
1318
+ };
1319
+ } | {
1320
+ label: string;
1321
+ title: string;
1322
+ description: string;
1323
+ image: {
1324
+ alt: string;
1325
+ src: {
1326
+ height: number;
1327
+ url: string;
1328
+ width: number;
1329
+ };
1330
+ srcSet: string;
1331
+ };
1332
+ link: {
1333
+ page: {
1334
+ url: string;
1335
+ };
1336
+ externalLink: string;
1337
+ };
1338
+ } | {
1339
+ label: string;
1340
+ title: string;
1341
+ description: string;
1342
+ image: null;
1343
+ link: {
1344
+ page: null;
1345
+ externalLink: string;
1346
+ };
1347
+ })[];
1348
+ value?: undefined;
1349
+ heading?: undefined;
1350
+ level?: undefined;
1351
+ showTitle?: undefined;
352
1352
  })[];
353
1353
  slug: string;
354
1354
  url: string;
355
1355
  title: string;
356
1356
  publicationDate: string;
1357
+ readTime: string;
357
1358
  authors: {
358
1359
  author: {
359
1360
  name: string;