@explorer-1/vue 0.2.26 → 0.2.27
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 +1159 -1109
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/BasePill/BasePill.vue.d.ts +4 -0
- package/dist/src/components/HeroLarge/HeroLarge.vue.d.ts +45 -3
- package/dist/src/components/HeroMedium/HeroMedium.vue.d.ts +1 -1
- package/dist/src/interfaces.d.ts +2 -0
- package/dist/src/templates/edu/PageEduCollectionsDetail/PageEduCollectionsDetail.stories.d.ts +123 -0
- package/dist/src/templates/edu/PageEduLesson/PageEduLesson.stories.d.ts +1 -0
- package/dist/src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.stories.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/BasePill/BasePill.vue +4 -1
- package/src/components/BlockLinkCard/BlockLinkCard.vue +2 -2
- package/src/components/HeroInlineMedia/HeroInlineMedia.vue +77 -0
- package/src/components/HeroLarge/HeroLarge.vue +49 -10
- package/src/components/HeroMedium/HeroMedium.vue +1 -1
- package/src/components/MetaPanel/MetaPanel.vue +1 -1
- package/src/components/MetaPanelItems/MetaPanelItems.vue +11 -8
- package/src/constants.ts +11 -0
- package/src/interfaces.ts +1 -0
- package/src/templates/edu/PageEduCollectionsDetail/PageEduCollectionsDetail.stories.js +103 -0
- package/src/templates/edu/PageEduCollectionsDetail/PageEduCollectionsDetail.vue +146 -0
- package/src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.vue +5 -42
- package/src/templates/edu/PageEduLesson/PageEduLesson.vue +4 -36
- package/src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.vue +4 -42
- package/src/templates/www/PageRoboticsDetail/PageRoboticsDetail.vue +1 -1
- package/src/templates/www/PageTopicDetail/PageTopicDetail.vue +1 -1
package/components.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ declare module 'vue' {
|
|
|
75
75
|
FormContact: typeof import('./src/components/FormContact/FormContact.vue')['default']
|
|
76
76
|
FormNewsletterSignup: typeof import('./src/components/FormNewsletterSignup/FormNewsletterSignup.vue')['default']
|
|
77
77
|
GitHub404: typeof import('./src/components/BlockGist/GitHub404.vue')['default']
|
|
78
|
+
HeroInlineMedia: typeof import('./src/components/HeroInlineMedia/HeroInlineMedia.vue')['default']
|
|
78
79
|
HeroLarge: typeof import('./src/components/HeroLarge/HeroLarge.vue')['default']
|
|
79
80
|
HeroListingIndex: typeof import('./src/components/HeroListingIndex/HeroListingIndex.vue')['default']
|
|
80
81
|
HeroMedia: typeof import('./src/components/HeroMedia/HeroMedia.vue')['default']
|
|
@@ -197,6 +198,7 @@ declare module 'vue' {
|
|
|
197
198
|
PageAudioDetail: typeof import('./src/templates/PageAudioDetail/PageAudioDetail.vue')['default']
|
|
198
199
|
PageContent: typeof import('./src/templates/PageContent/PageContent.vue')['default']
|
|
199
200
|
PageCuratedGallery: typeof import('./src/templates/www/PageCuratedGallery/PageCuratedGallery.vue')['default']
|
|
201
|
+
PageEduCollectionsDetail: typeof import('./src/templates/edu/PageEduCollectionsDetail/PageEduCollectionsDetail.vue')['default']
|
|
200
202
|
PageEduEventDetail: typeof import('./src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue')['default']
|
|
201
203
|
PageEduExplainerArticle: typeof import('./src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.vue')['default']
|
|
202
204
|
PageEduLesson: typeof import('./src/templates/edu/PageEduLesson/PageEduLesson.vue')['default']
|