@explorer-1/vue 0.2.24 → 0.2.25
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 +4001 -3944
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/BlockLinkCardList/BlockLinkCardList.stories.d.ts +142 -0
- package/dist/src/components/BlockLinkCardList/BlockLinkCardList.vue.d.ts +30 -0
- package/dist/src/components/MetadataEduResource/MetadataEduResource.stories.d.ts +4 -0
- package/dist/src/components/NavSecondary/NavSecondaryDropdown.vue.d.ts +6 -6
- package/dist/src/interfaces.d.ts +2 -0
- package/dist/src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.stories.d.ts +330 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/constants.ts +7 -1
- package/src/interfaces.ts +2 -0
- package/src/templates/edu/PageEduLesson/PageEduLesson.stories.js +1 -0
- package/src/templates/edu/PageEduLesson/PageEduLesson.vue +15 -11
- package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +1 -0
- package/src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.stories.js +142 -0
- package/src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.vue +217 -0
package/components.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ declare module 'vue' {
|
|
|
51
51
|
BlockInlineImage: typeof import('./src/components/BlockInlineImage/BlockInlineImage.vue')['default']
|
|
52
52
|
BlockKeyPoints: typeof import('./src/components/BlockKeyPoints/BlockKeyPoints.vue')['default']
|
|
53
53
|
BlockLinkCard: typeof import('./src/components/BlockLinkCard/BlockLinkCard.vue')['default']
|
|
54
|
+
BlockLinkCardList: typeof import('./src/components/BlockLinkCardList/BlockLinkCardList.vue')['default']
|
|
54
55
|
BlockLinkCarousel: typeof import('./src/components/BlockLinkCarousel/BlockLinkCarousel.vue')['default']
|
|
55
56
|
BlockLinkTile: typeof import('./src/components/BlockLinkTile/BlockLinkTile.vue')['default']
|
|
56
57
|
BlockListCards: typeof import('./src/components/BlockListCards/BlockListCards.vue')['default']
|
|
@@ -201,6 +202,7 @@ declare module 'vue' {
|
|
|
201
202
|
PageEduLesson: typeof import('./src/templates/edu/PageEduLesson/PageEduLesson.vue')['default']
|
|
202
203
|
PageEduLessonSection: typeof import('./src/templates/edu/PageEduLesson/PageEduLessonSection.vue')['default']
|
|
203
204
|
PageEduNewsDetail: typeof import('./src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue')['default']
|
|
205
|
+
PageEduTeachableMoment: typeof import('./src/templates/edu/PageEduTeachableMoment/PageEduTeachableMoment.vue')['default']
|
|
204
206
|
PageEventDetail: typeof import('./src/templates/PageEventDetail/PageEventDetail.vue')['default']
|
|
205
207
|
PageGoDirectory: typeof import('./src/templates/www/PageGoDirectory/PageGoDirectory.vue')['default']
|
|
206
208
|
PageHomepage: typeof import('./src/templates/www/PageHomepage/PageHomepage.vue')['default']
|