@explorer-1/vue 0.2.57 → 0.2.58
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 +2 -0
- package/dist/explorer-1-vue.js +5340 -5200
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/BaseImage/BaseImage.stories.d.ts +1 -4
- package/dist/src/components/BaseImage/BaseImage.vue.d.ts +1 -4
- package/dist/src/components/BlockAudio/BlockAudio.vue.d.ts +1 -4
- package/dist/src/components/BlockCardGridItem/BlockCardGridItemElement.vue.d.ts +1 -4
- package/dist/src/components/BlockCircleImageCard/BlockCircleImageCard.vue.d.ts +1 -4
- package/dist/src/components/BlockTeaser/BlockTeaser.vue.d.ts +1 -4
- package/dist/src/components/BlockText/BlockText.stories.d.ts +13 -0
- package/dist/src/components/EventDetailHero/EventDetailHero.vue.d.ts +1 -4
- package/dist/src/components/HomepageFeaturedRobot/HomepageFeaturedRobot.vue.d.ts +1 -4
- package/dist/src/components/HomepageTeaserBlock/HomepageTeaserBlockCardImage.vue.d.ts +1 -4
- package/dist/src/components/ImageDetailContextImage/ImageDetailContextImage.vue.d.ts +1 -4
- package/dist/src/components/SearchFilterGroup/SearchFilterGroup.stories.d.ts +43 -0
- package/dist/src/components/SearchFilterGroup/SearchFilterGroup.vue.d.ts +121 -11
- package/dist/src/components/SearchFilterGroupAccordionItem/SearchFilterGroupAccordionItem.vue.d.ts +44 -0
- package/dist/src/components/SearchInput/SearchInput.vue.d.ts +11 -0
- package/dist/src/interfaces.d.ts +18 -0
- package/dist/src/templates/edu/PageEduHome/PageEduHome.stories.d.ts +70 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/PodcastSeriesCarousel/PodcastSeriesCarousel.vue +42 -22
- package/src/templates/PageAudioDetail/PageAudioDetail.vue +1 -0
- package/src/templates/PageImageDetail/PageImageDetail.vue +13 -36
- package/src/templates/www/PagePodcast/PagePodcast.vue +2 -2
- package/tsconfig.json +1 -1
package/components.d.ts
CHANGED
|
@@ -203,6 +203,7 @@ declare module 'vue' {
|
|
|
203
203
|
PageEduEventDetail: typeof import('./src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue')['default']
|
|
204
204
|
PageEduExplainerArticle: typeof import('./src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.vue')['default']
|
|
205
205
|
PageEduGalleryDetail: typeof import('./src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.vue')['default']
|
|
206
|
+
PageEduHome: typeof import('./src/templates/edu/PageEduHome/PageEduHome.vue')['default']
|
|
206
207
|
PageEduLesson: typeof import('./src/templates/edu/PageEduLesson/PageEduLesson.vue')['default']
|
|
207
208
|
PageEduLessonSection: typeof import('./src/templates/edu/PageEduLesson/PageEduLessonSection.vue')['default']
|
|
208
209
|
PageEduMultimediaDetail: typeof import('./src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.vue')['default']
|
|
@@ -238,6 +239,7 @@ declare module 'vue' {
|
|
|
238
239
|
RouterLink: typeof import('vue-router')['RouterLink']
|
|
239
240
|
RouterView: typeof import('vue-router')['RouterView']
|
|
240
241
|
SearchFilterGroup: typeof import('./src/components/SearchFilterGroup/SearchFilterGroup.vue')['default']
|
|
242
|
+
SearchFilterGroupAccordionItem: typeof import('./src/components/SearchFilterGroupAccordionItem/SearchFilterGroupAccordionItem.vue')['default']
|
|
241
243
|
SearchInput: typeof import('./src/components/SearchInput/SearchInput.vue')['default']
|
|
242
244
|
SearchPagination: typeof import('./src/components/SearchPagination/SearchPagination.vue')['default']
|
|
243
245
|
SearchResultCard: typeof import('./src/components/SearchResultCard/SearchResultCard.vue')['default']
|