@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
@@ -41,33 +41,6 @@ export namespace BaseStory {
41
41
  let title_1: string;
42
42
  export { title_1 as title };
43
43
  export let body: ({
44
- blockType: string;
45
- heading: string;
46
- text: string;
47
- page: {
48
- url: string;
49
- };
50
- externalLink: string;
51
- } | {
52
- blockType: string;
53
- beforeImage: {
54
- src: {
55
- url: string;
56
- };
57
- srcCropped: {
58
- url: string;
59
- };
60
- };
61
- afterImage: {
62
- src: {
63
- url: string;
64
- };
65
- srcCropped: {
66
- url: string;
67
- };
68
- };
69
- caption: string;
70
- } | {
71
44
  blockType: string;
72
45
  fullBleed: boolean;
73
46
  image: {
@@ -116,6 +89,101 @@ export namespace BaseStory {
116
89
  width: number;
117
90
  };
118
91
  };
92
+ } | {
93
+ blockType: string;
94
+ accordionItemsHeadingLevel: string;
95
+ accordionItems: {
96
+ blockType: string;
97
+ blocks: ({
98
+ blockType: string;
99
+ value: string;
100
+ blocks?: undefined;
101
+ } | {
102
+ blockType: string;
103
+ blocks: ({
104
+ blockType: string;
105
+ value: string;
106
+ } | {
107
+ blockType: string;
108
+ fullBleed: boolean;
109
+ image: {
110
+ alt: string;
111
+ caption: string;
112
+ credit: string;
113
+ detailUrl: string;
114
+ original: string;
115
+ src: {
116
+ height: number;
117
+ url: string;
118
+ width: number;
119
+ };
120
+ srcSet: string;
121
+ };
122
+ imageFullBleed: {
123
+ alt: string;
124
+ caption: string;
125
+ credit: string;
126
+ detailUrl: string;
127
+ original: string;
128
+ src: {
129
+ width: number;
130
+ height: number;
131
+ url: string;
132
+ };
133
+ srcCropped: {
134
+ width: number;
135
+ height: number;
136
+ url: string;
137
+ };
138
+ screenXs: {
139
+ url: string;
140
+ width: number;
141
+ };
142
+ screenLg: {
143
+ url: string;
144
+ width: number;
145
+ };
146
+ screenXl: {
147
+ url: string;
148
+ width: number;
149
+ };
150
+ screenThreexl: {
151
+ url: string;
152
+ width: number;
153
+ };
154
+ };
155
+ value?: undefined;
156
+ })[];
157
+ value?: undefined;
158
+ })[];
159
+ }[];
160
+ } | {
161
+ blockType: string;
162
+ heading: string;
163
+ text: string;
164
+ page: {
165
+ url: string;
166
+ };
167
+ externalLink: string;
168
+ } | {
169
+ blockType: string;
170
+ beforeImage: {
171
+ src: {
172
+ url: string;
173
+ };
174
+ srcCropped: {
175
+ url: string;
176
+ };
177
+ };
178
+ afterImage: {
179
+ src: {
180
+ url: string;
181
+ };
182
+ srcCropped: {
183
+ url: string;
184
+ };
185
+ };
186
+ caption: string;
119
187
  } | {
120
188
  id: string;
121
189
  blockType: string;
@@ -286,6 +354,9 @@ export namespace BaseStory {
286
354
  heading: string;
287
355
  blockId: string;
288
356
  value?: undefined;
357
+ caption?: undefined;
358
+ id?: undefined;
359
+ url?: undefined;
289
360
  showTitle?: undefined;
290
361
  items?: undefined;
291
362
  field?: undefined;
@@ -294,6 +365,9 @@ export namespace BaseStory {
294
365
  value: string;
295
366
  heading?: undefined;
296
367
  level?: undefined;
368
+ caption?: undefined;
369
+ id?: undefined;
370
+ url?: undefined;
297
371
  showTitle?: undefined;
298
372
  items?: undefined;
299
373
  field?: undefined;
@@ -302,6 +376,20 @@ export namespace BaseStory {
302
376
  heading: string;
303
377
  level: string;
304
378
  value?: undefined;
379
+ caption?: undefined;
380
+ id?: undefined;
381
+ url?: undefined;
382
+ showTitle?: undefined;
383
+ items?: undefined;
384
+ field?: undefined;
385
+ } | {
386
+ blockType: string;
387
+ caption: string;
388
+ id: string;
389
+ url: string;
390
+ value?: undefined;
391
+ heading?: undefined;
392
+ level?: undefined;
305
393
  showTitle?: undefined;
306
394
  items?: undefined;
307
395
  field?: undefined;
@@ -336,6 +424,9 @@ export namespace BaseStory {
336
424
  blockType: string;
337
425
  value?: undefined;
338
426
  level?: undefined;
427
+ caption?: undefined;
428
+ id?: undefined;
429
+ url?: undefined;
339
430
  showTitle?: undefined;
340
431
  items?: undefined;
341
432
  field?: undefined;
@@ -361,6 +452,9 @@ export namespace BaseStory {
361
452
  value?: undefined;
362
453
  heading?: undefined;
363
454
  level?: undefined;
455
+ caption?: undefined;
456
+ id?: undefined;
457
+ url?: undefined;
364
458
  field?: undefined;
365
459
  } | {
366
460
  blockType: string;
@@ -372,6 +466,8 @@ export namespace BaseStory {
372
466
  value?: undefined;
373
467
  heading?: undefined;
374
468
  level?: undefined;
469
+ id?: undefined;
470
+ url?: undefined;
375
471
  showTitle?: undefined;
376
472
  items?: undefined;
377
473
  field?: undefined;
@@ -427,6 +523,9 @@ export namespace BaseStory {
427
523
  value?: undefined;
428
524
  heading?: undefined;
429
525
  level?: undefined;
526
+ caption?: undefined;
527
+ id?: undefined;
528
+ url?: undefined;
430
529
  showTitle?: undefined;
431
530
  })[];
432
531
  export { BlockLinkCardCarouselData as latestAsteroidNews };