@explorer-1/vue 0.2.40 → 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.
- package/components.d.ts +3 -0
- package/dist/explorer-1-vue.js +4912 -4553
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/BasePill/BasePill.vue.d.ts +4 -10
- package/dist/src/components/BaseSwimlane/BaseSwimlane.vue.d.ts +2 -2
- package/dist/src/components/BlockIframeEmbed/BlockIframeEmbed.vue.d.ts +9 -1
- package/dist/src/components/BlockImage/BlockImageFullBleed.vue.d.ts +23 -4
- package/dist/src/components/BlockImage/BlockImageStandard.vue.d.ts +23 -4
- package/dist/src/components/BlockImageComparison/BlockImageComparison.vue.d.ts +11 -1
- package/dist/src/components/BlockVideo/BlockVideo.vue.d.ts +19 -1
- package/dist/src/components/BlockVideoEmbed/BlockVideoEmbed.vue.d.ts +9 -0
- package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +9 -0
- package/dist/src/components/HeroListingIndex/HeroListingIndex.stories.d.ts +82 -93
- package/dist/src/components/MetadataEduResource/MetadataEduResource.vue.d.ts +4 -0
- package/dist/src/components/MetadataEvent/MetadataEvent.stories.d.ts +1 -0
- package/dist/src/components/MixinCarousel/MixinCarousel.stories.d.ts +4 -4
- package/dist/src/components/MixinCarousel/MixinCarousel.vue.d.ts +2 -2
- package/dist/src/components/MixinFancybox/MixinFancybox.vue.d.ts +1 -1
- package/dist/src/components/NavDesktop/NavDesktop.stories.d.ts +4 -4
- package/dist/src/components/NavDesktop/NavDesktop.vue.d.ts +2 -2
- package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +2 -2
- package/dist/src/components/NavMobile/NavMobile.stories.d.ts +3 -3
- package/dist/src/components/NavMobile/NavMobile.vue.d.ts +1 -1
- package/dist/src/components/NavMobile/NavMobileEdu.stories.d.ts +3 -3
- package/dist/src/components/NavSecondary/NavSecondaryDropdown.vue.d.ts +4 -4
- package/dist/src/components/NewsDetailMediaContact/NewsDetailMediaContact.vue.d.ts +1 -1
- package/dist/src/components/SearchFilterGroup/SearchFilterGroup.vue.d.ts +7 -0
- package/dist/src/components/SearchResultCard/SearchResultCard.vue.d.ts +54 -5
- package/dist/src/components/SearchResultGridItem/SearchResultGridItem.vue.d.ts +42 -4
- package/dist/src/components/TextArea/TextArea.vue.d.ts +9 -9
- package/dist/src/components/TextInput/TextInput.vue.d.ts +9 -9
- package/dist/src/constants.d.ts +12 -2
- package/dist/src/interfaces.d.ts +16 -9
- package/dist/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.stories.d.ts +284 -0
- package/dist/src/templates/edu/PageEduLesson/PageEduLesson.stories.d.ts +8 -2
- package/dist/src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.stories.d.ts +359 -0
- package/dist/src/utils/getHeadingId.d.ts +1 -3
- package/dist/src/utils/lookupContentType.d.ts +3 -0
- package/dist/src/utils/mixins.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/BaseButton/BaseButton.vue +3 -3
- package/src/components/BaseImageCaption/BaseImageCaption.vue +10 -7
- package/src/components/BlockImage/BlockImageFullBleed.vue +37 -7
- package/src/components/BlockImage/BlockImageStandard.vue +36 -8
- package/src/components/BlockImageComparison/BlockImageComparison.vue +23 -20
- package/src/components/BlockRelatedLinks/RelatedLink.vue +2 -2
- package/src/components/BlockVideo/BlockVideo.vue +22 -2
- package/src/components/BlockVideoEmbed/BlockVideoEmbed.vue +10 -2
- package/src/components/DetailHeadline/DetailHeadline.vue +11 -6
- package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.stories.js +13 -4
- package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.vue +36 -18
- package/src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.vue +1 -0
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']
|