@explorer-1/vue 0.2.39 → 0.2.41

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 (72) hide show
  1. package/components.d.ts +3 -0
  2. package/dist/explorer-1-vue.js +4912 -4553
  3. package/dist/explorer-1-vue.umd.cjs +13 -13
  4. package/dist/src/components/BasePill/BasePill.vue.d.ts +4 -10
  5. package/dist/src/components/BaseSwimlane/BaseSwimlane.vue.d.ts +2 -2
  6. package/dist/src/components/BlockIframeEmbed/BlockIframeEmbed.vue.d.ts +9 -1
  7. package/dist/src/components/BlockImage/BlockImageFullBleed.vue.d.ts +23 -4
  8. package/dist/src/components/BlockImage/BlockImageStandard.vue.d.ts +23 -4
  9. package/dist/src/components/BlockImageComparison/BlockImageComparison.vue.d.ts +11 -1
  10. package/dist/src/components/BlockVideo/BlockVideo.vue.d.ts +19 -1
  11. package/dist/src/components/BlockVideoEmbed/BlockVideoEmbed.vue.d.ts +9 -0
  12. package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +9 -0
  13. package/dist/src/components/HeroListingIndex/HeroListingIndex.stories.d.ts +82 -93
  14. package/dist/src/components/MetadataEduResource/MetadataEduResource.vue.d.ts +4 -0
  15. package/dist/src/components/MetadataEvent/MetadataEvent.stories.d.ts +1 -0
  16. package/dist/src/components/MixinCarousel/MixinCarousel.stories.d.ts +4 -4
  17. package/dist/src/components/MixinCarousel/MixinCarousel.vue.d.ts +2 -2
  18. package/dist/src/components/MixinFancybox/MixinFancybox.vue.d.ts +1 -1
  19. package/dist/src/components/NavDesktop/NavDesktop.stories.d.ts +4 -4
  20. package/dist/src/components/NavDesktop/NavDesktop.vue.d.ts +2 -2
  21. package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +2 -2
  22. package/dist/src/components/NavMobile/NavMobile.stories.d.ts +3 -3
  23. package/dist/src/components/NavMobile/NavMobile.vue.d.ts +1 -1
  24. package/dist/src/components/NavMobile/NavMobileEdu.stories.d.ts +3 -3
  25. package/dist/src/components/NavSecondary/NavSecondaryDropdown.vue.d.ts +4 -4
  26. package/dist/src/components/NewsDetailMediaContact/NewsDetailMediaContact.vue.d.ts +1 -1
  27. package/dist/src/components/SearchFilterGroup/SearchFilterGroup.vue.d.ts +7 -0
  28. package/dist/src/components/SearchResultCard/SearchResultCard.vue.d.ts +54 -5
  29. package/dist/src/components/SearchResultGridItem/SearchResultGridItem.vue.d.ts +42 -4
  30. package/dist/src/components/TextArea/TextArea.vue.d.ts +9 -9
  31. package/dist/src/components/TextInput/TextInput.vue.d.ts +9 -9
  32. package/dist/src/constants.d.ts +12 -2
  33. package/dist/src/interfaces.d.ts +16 -9
  34. package/dist/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.stories.d.ts +284 -0
  35. package/dist/src/templates/edu/PageEduLesson/PageEduLesson.stories.d.ts +8 -2
  36. package/dist/src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.stories.d.ts +359 -0
  37. package/dist/src/utils/getHeadingId.d.ts +1 -3
  38. package/dist/src/utils/lookupContentType.d.ts +3 -0
  39. package/dist/src/utils/mixins.d.ts +1 -1
  40. package/dist/style.css +1 -1
  41. package/package.json +2 -2
  42. package/src/components/BaseButton/BaseButton.vue +3 -3
  43. package/src/components/BaseCarousel/BaseCarousel.vue +152 -0
  44. package/src/components/BaseImageCaption/BaseImageCaption.vue +10 -7
  45. package/src/components/BlockImage/BlockImageFullBleed.vue +37 -7
  46. package/src/components/BlockImage/BlockImageStandard.vue +36 -8
  47. package/src/components/BlockImageComparison/BlockImageComparison.vue +23 -20
  48. package/src/components/BlockLinkCard/BlockLinkCard.vue +1 -0
  49. package/src/components/BlockRelatedLinks/RelatedLink.vue +2 -2
  50. package/src/components/BlockVideo/BlockVideo.vue +22 -2
  51. package/src/components/BlockVideoEmbed/BlockVideoEmbed.vue +10 -2
  52. package/src/components/DetailHeadline/DetailHeadline.vue +11 -6
  53. package/src/components/HeroListingIndex/HeroListingIndex.stories.js +92 -100
  54. package/src/components/HeroListingIndex/HeroListingIndex.vue +13 -15
  55. package/src/components/HeroMedium/HeroMedium.vue +1 -1
  56. package/src/components/MetadataEduResource/MetadataEduResource.vue +8 -2
  57. package/src/components/MetadataEvent/MetadataEvent.stories.js +1 -0
  58. package/src/components/MetadataEvent/MetadataEvent.vue +24 -8
  59. package/src/components/NavDesktop/NavDesktop.vue +6 -4
  60. package/src/components/NavDesktopEdu/NavDesktopEdu.vue +7 -3
  61. package/src/components/NavMobile/NavMobile.vue +5 -3
  62. package/src/components/NewsDetailMediaContact/NewsDetailMediaContact.vue +5 -3
  63. package/src/components/SearchFilterGroup/SearchFilterGroup.vue +26 -24
  64. package/src/components/SearchResultCard/SearchResultCard.vue +17 -1
  65. package/src/components/SearchResultGridItem/SearchResultGridItem.vue +17 -1
  66. package/src/components/SearchResultsList/SearchResultsList.vue +25 -1
  67. package/src/interfaces.ts +4 -0
  68. package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.stories.js +13 -4
  69. package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.vue +36 -18
  70. package/src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.vue +1 -0
  71. package/src/templates/www/PageTimeline/PageTimeline.vue +5 -1
  72. package/src/utils/mixins.ts +8 -6
package/components.d.ts CHANGED
@@ -13,6 +13,7 @@ declare module 'vue' {
13
13
  BaseAccordionItem: typeof import('./src/components/BaseAccordionItem/BaseAccordionItem.vue')['default']
14
14
  BaseAudio: typeof import('./src/components/BaseAudio/BaseAudio.vue')['default']
15
15
  BaseButton: typeof import('./src/components/BaseButton/BaseButton.vue')['default']
16
+ BaseCarousel: typeof import('./src/components/BaseCarousel/BaseCarousel.vue')['default']
16
17
  BaseCheckboxGroup: typeof import('./src/components/BaseCheckboxGroup/BaseCheckboxGroup.vue')['default']
17
18
  BaseHeading: typeof import('./src/components/BaseHeading/BaseHeading.vue')['default']
18
19
  BaseImage: typeof import('./src/components/BaseImage/BaseImage.vue')['default']
@@ -202,8 +203,10 @@ declare module 'vue' {
202
203
  PageEduCollectionsDetail: typeof import('./src/templates/edu/PageEduCollectionsDetail/PageEduCollectionsDetail.vue')['default']
203
204
  PageEduEventDetail: typeof import('./src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue')['default']
204
205
  PageEduExplainerArticle: typeof import('./src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.vue')['default']
206
+ PageEduGalleryDetail: typeof import('./src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.vue')['default']
205
207
  PageEduLesson: typeof import('./src/templates/edu/PageEduLesson/PageEduLesson.vue')['default']
206
208
  PageEduLessonSection: typeof import('./src/templates/edu/PageEduLesson/PageEduLessonSection.vue')['default']
209
+ PageEduMultimediaDetail: typeof import('./src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.vue')['default']
207
210
  PageEduNewsDetail: typeof import('./src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue')['default']
208
211
  PageEduTeachableMoment: typeof import('./src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.vue')['default']
209
212
  PageEventDetail: typeof import('./src/templates/PageEventDetail/PageEventDetail.vue')['default']