@explorer-1/vue 0.2.22 → 0.2.23

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 (48) hide show
  1. package/components.d.ts +2 -0
  2. package/dist/explorer-1-vue.js +8119 -7836
  3. package/dist/explorer-1-vue.umd.cjs +14 -14
  4. package/dist/src/components/BaseAccordionItem/BaseAccordionItem.vue.d.ts +54 -0
  5. package/dist/src/components/BaseButton/BaseButton.stories.d.ts +0 -13
  6. package/dist/src/components/BaseButton/BaseButton.vue.d.ts +0 -14
  7. package/dist/src/components/BaseImageCaption/BaseImageCaption.vue.d.ts +18 -0
  8. package/dist/src/components/BaseModal/BaseModal.stories.d.ts +0 -26
  9. package/dist/src/components/BaseSwimlane/BaseSwimlane.vue.d.ts +2 -2
  10. package/dist/src/components/BaseTimer/BaseTimer.vue.d.ts +2 -2
  11. package/dist/src/components/BlockAccordion/BlockAccordion.stories.d.ts +25 -40
  12. package/dist/src/components/BlockAccordion/BlockAccordion.vue.d.ts +51 -0
  13. package/dist/src/components/BlockGist/BlockGist.stories.d.ts +19 -0
  14. package/dist/src/components/BlockGist/BlockGist.vue.d.ts +19 -0
  15. package/dist/src/components/BlockGist/GitHub404.vue.d.ts +2 -0
  16. package/dist/src/components/BlockLinkCard/BlockLinkCard.stories.d.ts +71 -15
  17. package/dist/src/components/BlockLinkCard/BlockLinkCard.vue.d.ts +10 -2
  18. package/dist/src/components/BlockStreamfield/BlockStreamfield.stories.d.ts +127 -27
  19. package/dist/src/components/BlockTeaser/BlockTeaser.vue.d.ts +3 -2
  20. package/dist/src/components/CalendarButton/CalendarButton.vue.d.ts +12 -2
  21. package/dist/src/components/LayoutHelper/LayoutHelper.vue.d.ts +1 -1
  22. package/dist/src/components/MetaPanel/MetaPanel.stories.d.ts +6 -2
  23. package/dist/src/components/MetadataEvent/MetadataEvent.vue.d.ts +8 -0
  24. package/dist/src/components/MixinFancybox/MixinFancybox.vue.d.ts +1 -1
  25. package/dist/src/components/NavDesktop/NavDesktop.stories.d.ts +49 -0
  26. package/dist/src/components/NavDropdownToggle/NavDropdownToggle.vue.d.ts +1 -1
  27. package/dist/src/docs/foundation/grid_layouthelpers.stories.d.ts +4 -4
  28. package/dist/src/interfaces.d.ts +4 -0
  29. package/dist/src/templates/PageContent/PageContent.vue.d.ts +1 -0
  30. package/dist/src/templates/edu/PageContentEdu.stories.d.ts +179 -2
  31. package/dist/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.d.ts +37 -18
  32. package/dist/src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.stories.d.ts +3 -1
  33. package/dist/src/templates/edu/PageEduLesson/PageEduLesson.stories.d.ts +28 -46
  34. package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +378 -81
  35. package/dist/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.stories.d.ts +126 -27
  36. package/dist/style.css +1 -1
  37. package/package.json +1 -1
  38. package/src/components/BaseAccordionItem/BaseAccordionItem.vue +8 -11
  39. package/src/components/BlockAccordion/BlockAccordion.stories.js +64 -19
  40. package/src/components/BlockAccordion/BlockAccordion.vue +99 -18
  41. package/src/components/BlockStreamfield/BlockStreamfield.stories.js +2 -0
  42. package/src/components/BlockStreamfield/BlockStreamfield.vue +14 -1
  43. package/src/components/NavJumpMenu/NavJumpMenu.vue +14 -2
  44. package/src/components/NavSecondary/NavSecondaryDropdown.vue +4 -5
  45. package/src/components/NavSecondary/NavSecondaryLink.vue +6 -4
  46. package/src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.vue +1 -0
  47. package/src/templates/edu/PageEduLesson/PageEduLesson.vue +1 -0
  48. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +1 -0
@@ -24,33 +24,6 @@ export namespace BaseStory {
24
24
  namespace args {
25
25
  let data: {
26
26
  body: ({
27
- blockType: string;
28
- heading: string;
29
- text: string;
30
- page: {
31
- url: string;
32
- };
33
- externalLink: string;
34
- } | {
35
- blockType: string;
36
- beforeImage: {
37
- src: {
38
- url: string;
39
- };
40
- srcCropped: {
41
- url: string;
42
- };
43
- };
44
- afterImage: {
45
- src: {
46
- url: string;
47
- };
48
- srcCropped: {
49
- url: string;
50
- };
51
- };
52
- caption: string;
53
- } | {
54
27
  blockType: string;
55
28
  fullBleed: boolean;
56
29
  image: {
@@ -99,6 +72,101 @@ export namespace BaseStory {
99
72
  width: number;
100
73
  };
101
74
  };
75
+ } | {
76
+ blockType: string;
77
+ accordionItemsHeadingLevel: string;
78
+ accordionItems: {
79
+ blockType: string;
80
+ blocks: ({
81
+ blockType: string;
82
+ value: string;
83
+ blocks?: undefined;
84
+ } | {
85
+ blockType: string;
86
+ blocks: ({
87
+ blockType: string;
88
+ value: string;
89
+ } | {
90
+ blockType: string;
91
+ fullBleed: boolean;
92
+ image: {
93
+ alt: string;
94
+ caption: string;
95
+ credit: string;
96
+ detailUrl: string;
97
+ original: string;
98
+ src: {
99
+ height: number;
100
+ url: string;
101
+ width: number;
102
+ };
103
+ srcSet: string;
104
+ };
105
+ imageFullBleed: {
106
+ alt: string;
107
+ caption: string;
108
+ credit: string;
109
+ detailUrl: string;
110
+ original: string;
111
+ src: {
112
+ width: number;
113
+ height: number;
114
+ url: string;
115
+ };
116
+ srcCropped: {
117
+ width: number;
118
+ height: number;
119
+ url: string;
120
+ };
121
+ screenXs: {
122
+ url: string;
123
+ width: number;
124
+ };
125
+ screenLg: {
126
+ url: string;
127
+ width: number;
128
+ };
129
+ screenXl: {
130
+ url: string;
131
+ width: number;
132
+ };
133
+ screenThreexl: {
134
+ url: string;
135
+ width: number;
136
+ };
137
+ };
138
+ value?: undefined;
139
+ })[];
140
+ value?: undefined;
141
+ })[];
142
+ }[];
143
+ } | {
144
+ blockType: string;
145
+ heading: string;
146
+ text: string;
147
+ page: {
148
+ url: string;
149
+ };
150
+ externalLink: string;
151
+ } | {
152
+ blockType: string;
153
+ beforeImage: {
154
+ src: {
155
+ url: string;
156
+ };
157
+ srcCropped: {
158
+ url: string;
159
+ };
160
+ };
161
+ afterImage: {
162
+ src: {
163
+ url: string;
164
+ };
165
+ srcCropped: {
166
+ url: string;
167
+ };
168
+ };
169
+ caption: string;
102
170
  } | {
103
171
  id: string;
104
172
  blockType: string;
@@ -269,6 +337,9 @@ export namespace BaseStory {
269
337
  heading: string;
270
338
  blockId: string;
271
339
  value?: undefined;
340
+ caption?: undefined;
341
+ id?: undefined;
342
+ url?: undefined;
272
343
  showTitle?: undefined;
273
344
  items?: undefined;
274
345
  field?: undefined;
@@ -277,6 +348,9 @@ export namespace BaseStory {
277
348
  value: string;
278
349
  heading?: undefined;
279
350
  level?: undefined;
351
+ caption?: undefined;
352
+ id?: undefined;
353
+ url?: undefined;
280
354
  showTitle?: undefined;
281
355
  items?: undefined;
282
356
  field?: undefined;
@@ -285,6 +359,20 @@ export namespace BaseStory {
285
359
  heading: string;
286
360
  level: string;
287
361
  value?: undefined;
362
+ caption?: undefined;
363
+ id?: undefined;
364
+ url?: undefined;
365
+ showTitle?: undefined;
366
+ items?: undefined;
367
+ field?: undefined;
368
+ } | {
369
+ blockType: string;
370
+ caption: string;
371
+ id: string;
372
+ url: string;
373
+ value?: undefined;
374
+ heading?: undefined;
375
+ level?: undefined;
288
376
  showTitle?: undefined;
289
377
  items?: undefined;
290
378
  field?: undefined;
@@ -319,6 +407,9 @@ export namespace BaseStory {
319
407
  blockType: string;
320
408
  value?: undefined;
321
409
  level?: undefined;
410
+ caption?: undefined;
411
+ id?: undefined;
412
+ url?: undefined;
322
413
  showTitle?: undefined;
323
414
  items?: undefined;
324
415
  field?: undefined;
@@ -344,6 +435,9 @@ export namespace BaseStory {
344
435
  value?: undefined;
345
436
  heading?: undefined;
346
437
  level?: undefined;
438
+ caption?: undefined;
439
+ id?: undefined;
440
+ url?: undefined;
347
441
  field?: undefined;
348
442
  } | {
349
443
  blockType: string;
@@ -355,6 +449,8 @@ export namespace BaseStory {
355
449
  value?: undefined;
356
450
  heading?: undefined;
357
451
  level?: undefined;
452
+ id?: undefined;
453
+ url?: undefined;
358
454
  showTitle?: undefined;
359
455
  items?: undefined;
360
456
  field?: undefined;
@@ -410,6 +506,9 @@ export namespace BaseStory {
410
506
  value?: undefined;
411
507
  heading?: undefined;
412
508
  level?: undefined;
509
+ caption?: undefined;
510
+ id?: undefined;
511
+ url?: undefined;
413
512
  showTitle?: undefined;
414
513
  })[];
415
514
  slug: string;
@@ -495,33 +594,6 @@ export namespace InlineHero {
495
594
  heroPosition: string;
496
595
  showJumpMenu: boolean;
497
596
  body: ({
498
- blockType: string;
499
- heading: string;
500
- text: string;
501
- page: {
502
- url: string;
503
- };
504
- externalLink: string;
505
- } | {
506
- blockType: string;
507
- beforeImage: {
508
- src: {
509
- url: string;
510
- };
511
- srcCropped: {
512
- url: string;
513
- };
514
- };
515
- afterImage: {
516
- src: {
517
- url: string;
518
- };
519
- srcCropped: {
520
- url: string;
521
- };
522
- };
523
- caption: string;
524
- } | {
525
597
  blockType: string;
526
598
  fullBleed: boolean;
527
599
  image: {
@@ -570,6 +642,101 @@ export namespace InlineHero {
570
642
  width: number;
571
643
  };
572
644
  };
645
+ } | {
646
+ blockType: string;
647
+ accordionItemsHeadingLevel: string;
648
+ accordionItems: {
649
+ blockType: string;
650
+ blocks: ({
651
+ blockType: string;
652
+ value: string;
653
+ blocks?: undefined;
654
+ } | {
655
+ blockType: string;
656
+ blocks: ({
657
+ blockType: string;
658
+ value: string;
659
+ } | {
660
+ blockType: string;
661
+ fullBleed: boolean;
662
+ image: {
663
+ alt: string;
664
+ caption: string;
665
+ credit: string;
666
+ detailUrl: string;
667
+ original: string;
668
+ src: {
669
+ height: number;
670
+ url: string;
671
+ width: number;
672
+ };
673
+ srcSet: string;
674
+ };
675
+ imageFullBleed: {
676
+ alt: string;
677
+ caption: string;
678
+ credit: string;
679
+ detailUrl: string;
680
+ original: string;
681
+ src: {
682
+ width: number;
683
+ height: number;
684
+ url: string;
685
+ };
686
+ srcCropped: {
687
+ width: number;
688
+ height: number;
689
+ url: string;
690
+ };
691
+ screenXs: {
692
+ url: string;
693
+ width: number;
694
+ };
695
+ screenLg: {
696
+ url: string;
697
+ width: number;
698
+ };
699
+ screenXl: {
700
+ url: string;
701
+ width: number;
702
+ };
703
+ screenThreexl: {
704
+ url: string;
705
+ width: number;
706
+ };
707
+ };
708
+ value?: undefined;
709
+ })[];
710
+ value?: undefined;
711
+ })[];
712
+ }[];
713
+ } | {
714
+ blockType: string;
715
+ heading: string;
716
+ text: string;
717
+ page: {
718
+ url: string;
719
+ };
720
+ externalLink: string;
721
+ } | {
722
+ blockType: string;
723
+ beforeImage: {
724
+ src: {
725
+ url: string;
726
+ };
727
+ srcCropped: {
728
+ url: string;
729
+ };
730
+ };
731
+ afterImage: {
732
+ src: {
733
+ url: string;
734
+ };
735
+ srcCropped: {
736
+ url: string;
737
+ };
738
+ };
739
+ caption: string;
573
740
  } | {
574
741
  id: string;
575
742
  blockType: string;
@@ -740,6 +907,9 @@ export namespace InlineHero {
740
907
  heading: string;
741
908
  blockId: string;
742
909
  value?: undefined;
910
+ caption?: undefined;
911
+ id?: undefined;
912
+ url?: undefined;
743
913
  showTitle?: undefined;
744
914
  items?: undefined;
745
915
  field?: undefined;
@@ -748,6 +918,9 @@ export namespace InlineHero {
748
918
  value: string;
749
919
  heading?: undefined;
750
920
  level?: undefined;
921
+ caption?: undefined;
922
+ id?: undefined;
923
+ url?: undefined;
751
924
  showTitle?: undefined;
752
925
  items?: undefined;
753
926
  field?: undefined;
@@ -756,6 +929,20 @@ export namespace InlineHero {
756
929
  heading: string;
757
930
  level: string;
758
931
  value?: undefined;
932
+ caption?: undefined;
933
+ id?: undefined;
934
+ url?: undefined;
935
+ showTitle?: undefined;
936
+ items?: undefined;
937
+ field?: undefined;
938
+ } | {
939
+ blockType: string;
940
+ caption: string;
941
+ id: string;
942
+ url: string;
943
+ value?: undefined;
944
+ heading?: undefined;
945
+ level?: undefined;
759
946
  showTitle?: undefined;
760
947
  items?: undefined;
761
948
  field?: undefined;
@@ -790,6 +977,9 @@ export namespace InlineHero {
790
977
  blockType: string;
791
978
  value?: undefined;
792
979
  level?: undefined;
980
+ caption?: undefined;
981
+ id?: undefined;
982
+ url?: undefined;
793
983
  showTitle?: undefined;
794
984
  items?: undefined;
795
985
  field?: undefined;
@@ -815,6 +1005,9 @@ export namespace InlineHero {
815
1005
  value?: undefined;
816
1006
  heading?: undefined;
817
1007
  level?: undefined;
1008
+ caption?: undefined;
1009
+ id?: undefined;
1010
+ url?: undefined;
818
1011
  field?: undefined;
819
1012
  } | {
820
1013
  blockType: string;
@@ -826,6 +1019,8 @@ export namespace InlineHero {
826
1019
  value?: undefined;
827
1020
  heading?: undefined;
828
1021
  level?: undefined;
1022
+ id?: undefined;
1023
+ url?: undefined;
829
1024
  showTitle?: undefined;
830
1025
  items?: undefined;
831
1026
  field?: undefined;
@@ -881,6 +1076,9 @@ export namespace InlineHero {
881
1076
  value?: undefined;
882
1077
  heading?: undefined;
883
1078
  level?: undefined;
1079
+ caption?: undefined;
1080
+ id?: undefined;
1081
+ url?: undefined;
884
1082
  showTitle?: undefined;
885
1083
  })[];
886
1084
  slug: string;
@@ -966,33 +1164,6 @@ export namespace NoHero {
966
1164
  hero: never[];
967
1165
  showJumpMenu: boolean;
968
1166
  body: ({
969
- blockType: string;
970
- heading: string;
971
- text: string;
972
- page: {
973
- url: string;
974
- };
975
- externalLink: string;
976
- } | {
977
- blockType: string;
978
- beforeImage: {
979
- src: {
980
- url: string;
981
- };
982
- srcCropped: {
983
- url: string;
984
- };
985
- };
986
- afterImage: {
987
- src: {
988
- url: string;
989
- };
990
- srcCropped: {
991
- url: string;
992
- };
993
- };
994
- caption: string;
995
- } | {
996
1167
  blockType: string;
997
1168
  fullBleed: boolean;
998
1169
  image: {
@@ -1041,6 +1212,101 @@ export namespace NoHero {
1041
1212
  width: number;
1042
1213
  };
1043
1214
  };
1215
+ } | {
1216
+ blockType: string;
1217
+ accordionItemsHeadingLevel: string;
1218
+ accordionItems: {
1219
+ blockType: string;
1220
+ blocks: ({
1221
+ blockType: string;
1222
+ value: string;
1223
+ blocks?: undefined;
1224
+ } | {
1225
+ blockType: string;
1226
+ blocks: ({
1227
+ blockType: string;
1228
+ value: string;
1229
+ } | {
1230
+ blockType: string;
1231
+ fullBleed: boolean;
1232
+ image: {
1233
+ alt: string;
1234
+ caption: string;
1235
+ credit: string;
1236
+ detailUrl: string;
1237
+ original: string;
1238
+ src: {
1239
+ height: number;
1240
+ url: string;
1241
+ width: number;
1242
+ };
1243
+ srcSet: string;
1244
+ };
1245
+ imageFullBleed: {
1246
+ alt: string;
1247
+ caption: string;
1248
+ credit: string;
1249
+ detailUrl: string;
1250
+ original: string;
1251
+ src: {
1252
+ width: number;
1253
+ height: number;
1254
+ url: string;
1255
+ };
1256
+ srcCropped: {
1257
+ width: number;
1258
+ height: number;
1259
+ url: string;
1260
+ };
1261
+ screenXs: {
1262
+ url: string;
1263
+ width: number;
1264
+ };
1265
+ screenLg: {
1266
+ url: string;
1267
+ width: number;
1268
+ };
1269
+ screenXl: {
1270
+ url: string;
1271
+ width: number;
1272
+ };
1273
+ screenThreexl: {
1274
+ url: string;
1275
+ width: number;
1276
+ };
1277
+ };
1278
+ value?: undefined;
1279
+ })[];
1280
+ value?: undefined;
1281
+ })[];
1282
+ }[];
1283
+ } | {
1284
+ blockType: string;
1285
+ heading: string;
1286
+ text: string;
1287
+ page: {
1288
+ url: string;
1289
+ };
1290
+ externalLink: string;
1291
+ } | {
1292
+ blockType: string;
1293
+ beforeImage: {
1294
+ src: {
1295
+ url: string;
1296
+ };
1297
+ srcCropped: {
1298
+ url: string;
1299
+ };
1300
+ };
1301
+ afterImage: {
1302
+ src: {
1303
+ url: string;
1304
+ };
1305
+ srcCropped: {
1306
+ url: string;
1307
+ };
1308
+ };
1309
+ caption: string;
1044
1310
  } | {
1045
1311
  id: string;
1046
1312
  blockType: string;
@@ -1211,6 +1477,9 @@ export namespace NoHero {
1211
1477
  heading: string;
1212
1478
  blockId: string;
1213
1479
  value?: undefined;
1480
+ caption?: undefined;
1481
+ id?: undefined;
1482
+ url?: undefined;
1214
1483
  showTitle?: undefined;
1215
1484
  items?: undefined;
1216
1485
  field?: undefined;
@@ -1219,6 +1488,9 @@ export namespace NoHero {
1219
1488
  value: string;
1220
1489
  heading?: undefined;
1221
1490
  level?: undefined;
1491
+ caption?: undefined;
1492
+ id?: undefined;
1493
+ url?: undefined;
1222
1494
  showTitle?: undefined;
1223
1495
  items?: undefined;
1224
1496
  field?: undefined;
@@ -1227,6 +1499,20 @@ export namespace NoHero {
1227
1499
  heading: string;
1228
1500
  level: string;
1229
1501
  value?: undefined;
1502
+ caption?: undefined;
1503
+ id?: undefined;
1504
+ url?: undefined;
1505
+ showTitle?: undefined;
1506
+ items?: undefined;
1507
+ field?: undefined;
1508
+ } | {
1509
+ blockType: string;
1510
+ caption: string;
1511
+ id: string;
1512
+ url: string;
1513
+ value?: undefined;
1514
+ heading?: undefined;
1515
+ level?: undefined;
1230
1516
  showTitle?: undefined;
1231
1517
  items?: undefined;
1232
1518
  field?: undefined;
@@ -1261,6 +1547,9 @@ export namespace NoHero {
1261
1547
  blockType: string;
1262
1548
  value?: undefined;
1263
1549
  level?: undefined;
1550
+ caption?: undefined;
1551
+ id?: undefined;
1552
+ url?: undefined;
1264
1553
  showTitle?: undefined;
1265
1554
  items?: undefined;
1266
1555
  field?: undefined;
@@ -1286,6 +1575,9 @@ export namespace NoHero {
1286
1575
  value?: undefined;
1287
1576
  heading?: undefined;
1288
1577
  level?: undefined;
1578
+ caption?: undefined;
1579
+ id?: undefined;
1580
+ url?: undefined;
1289
1581
  field?: undefined;
1290
1582
  } | {
1291
1583
  blockType: string;
@@ -1297,6 +1589,8 @@ export namespace NoHero {
1297
1589
  value?: undefined;
1298
1590
  heading?: undefined;
1299
1591
  level?: undefined;
1592
+ id?: undefined;
1593
+ url?: undefined;
1300
1594
  showTitle?: undefined;
1301
1595
  items?: undefined;
1302
1596
  field?: undefined;
@@ -1352,6 +1646,9 @@ export namespace NoHero {
1352
1646
  value?: undefined;
1353
1647
  heading?: undefined;
1354
1648
  level?: undefined;
1649
+ caption?: undefined;
1650
+ id?: undefined;
1651
+ url?: undefined;
1355
1652
  showTitle?: undefined;
1356
1653
  })[];
1357
1654
  slug: string;