@explorer-1/vue 0.2.8 → 0.2.10
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 +6 -1
- package/dist/explorer-1-vue.js +6871 -6420
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/{BaseTag/BaseTag.stories.d.ts → BasePill/BasePill.stories.d.ts} +2 -2
- package/dist/src/components/{BaseTag/BaseTag.vue.d.ts → BasePill/BasePill.vue.d.ts} +7 -3
- package/dist/src/components/BlockLinkCard/BlockLinkCard.stories.d.ts +89 -15
- package/dist/src/components/BlockLinkCard/BlockLinkCard.vue.d.ts +66 -7
- package/dist/src/components/BlockLinkCarousel/BlockLinkCarousel.stories.d.ts +70 -2
- package/dist/src/components/BlockLinkTile/BlockLinkTile.vue.d.ts +4 -4
- package/dist/src/components/CalendarButton/CalendarButton.vue.d.ts +2 -2
- package/dist/src/components/CalendarChip/CalendarChip.vue.d.ts +36 -0
- package/dist/src/components/EventCard/EventCard.vue.d.ts +9 -0
- package/dist/src/components/EventDetailHero/EventDetailHero.vue.d.ts +27 -9
- package/dist/src/components/HeroListingIndex/HeroListingIndex.stories.d.ts +1 -0
- package/dist/src/components/HeroListingIndex/HeroListingIndex.vue.d.ts +6 -4
- package/dist/src/components/HeroMedium/HeroMedium.vue.d.ts +28 -2
- package/dist/src/components/Icons/IconProfile.vue.d.ts +2 -0
- package/dist/src/components/Icons/IconSubject.vue.d.ts +2 -0
- package/dist/src/components/Icons/Icons.stories.d.ts +17 -0
- package/dist/src/components/MetadataEduResource/MetadataEduResource.stories.d.ts +55 -0
- package/dist/src/components/MetadataEduResource/MetadataEduResource.vue.d.ts +38 -0
- package/dist/src/components/MetadataEvent/MetadataEvent.stories.d.ts +29 -0
- package/dist/src/components/MetadataEvent/MetadataEvent.vue.d.ts +38 -0
- package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +1 -0
- package/dist/src/components/SearchResultCard/SearchResultCard.stories.d.ts +23 -4
- package/dist/src/components/SearchResultCard/SearchResultCard.vue.d.ts +66 -1
- package/dist/src/components/SearchResultGridItem/SearchResultGridItem.stories.d.ts +7 -0
- package/dist/src/components/SearchResultGridItem/SearchResultGridItem.vue.d.ts +65 -11
- package/dist/src/components/SearchResultsList/SearchResultsList.stories.d.ts +404 -0
- package/dist/src/components/TopicDetailMoreItem/TopicDetailMoreItem.vue.d.ts +8 -4
- package/dist/src/constants.d.ts +4 -0
- package/dist/src/interfaces.d.ts +38 -3
- package/dist/src/templates/PageContent/PageContent.stories.d.ts +1 -0
- package/dist/src/templates/PageEventDetail/PageEventDetail.stories.d.ts +2 -13
- package/dist/src/templates/PageEventDetail/PageEventDetail.vue.d.ts +6 -3
- package/dist/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.d.ts +153 -31
- package/dist/src/utils/mixins.d.ts +1 -1
- package/dist/src/utils/rangeifyGrades.d.ts +3 -0
- package/dist/style.css +1 -1
- package/lib/main.ts +2 -2
- package/package.json +2 -2
- package/src/components/{BaseTag/BaseTag.stories.js → BasePill/BasePill.stories.js} +3 -3
- package/src/components/BasePill/BasePill.vue +54 -0
- package/src/components/BaseTimer/BaseTimer.vue +1 -1
- package/src/components/BlockLinkCard/BlockLinkCard.stories.js +93 -12
- package/src/components/BlockLinkCard/BlockLinkCard.vue +180 -39
- package/src/components/BlockLinkCarousel/BlockLinkCarousel.stories.js +60 -3
- package/src/components/BlockLinkTile/BlockLinkTile.vue +11 -8
- package/src/components/CalendarChip/CalendarChip.vue +52 -0
- package/src/components/DetailHeadline/DetailHeadline.vue +5 -5
- package/src/components/EventCard/EventCard.vue +28 -88
- package/src/components/EventDetailHero/EventDetailHero.vue +18 -25
- package/src/components/HeroLarge/HeroLarge.stories.js +20 -0
- package/src/components/HeroListingIndex/HeroListingIndex.stories.js +1 -0
- package/src/components/HeroListingIndex/HeroListingIndex.vue +8 -3
- package/src/components/HeroMedium/HeroMedium.vue +24 -12
- package/src/components/HomepageCarouselItem/HomepageCarouselItem.stories.js +1 -1
- package/src/components/HomepageCarouselItem/HomepageCarouselItem.vue +8 -8
- package/src/components/Icons/IconProfile.vue +30 -0
- package/src/components/Icons/IconSubject.vue +38 -0
- package/src/components/Icons/Icons.stories.ts +15 -0
- package/src/components/MetadataEduResource/MetadataEduResource.stories.js +59 -0
- package/src/components/MetadataEduResource/MetadataEduResource.vue +93 -0
- package/src/components/MetadataEvent/MetadataEvent.stories.js +31 -0
- package/src/components/MetadataEvent/MetadataEvent.vue +164 -0
- package/src/components/SearchResultCard/SearchResultCard.stories.js +22 -5
- package/src/components/SearchResultCard/SearchResultCard.vue +71 -14
- package/src/components/SearchResultGridItem/SearchResultGridItem.stories.js +8 -1
- package/src/components/SearchResultGridItem/SearchResultGridItem.vue +81 -31
- package/src/components/SearchResultsList/SearchResultsList.stories.js +1197 -0
- package/src/components/SearchResultsList/SearchResultsList.vue +1 -0
- package/src/components/TopicDetailMoreItem/TopicDetailMoreItem.vue +12 -8
- package/src/constants.ts +20 -0
- package/src/interfaces.ts +41 -3
- package/src/templates/PageContent/PageContent.stories.js +1 -0
- package/src/templates/PageEventDetail/PageEventDetail.stories.js +1 -1
- package/src/templates/PageEventDetail/PageEventDetail.vue +25 -90
- package/src/templates/PageVideoDetail/PageVideoDetail.stories.js +2 -1
- package/src/templates/PageVideoDetail/PageVideoDetail.vue +4 -4
- package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.js +3 -2
- package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue +38 -123
- package/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.stories.js +22 -1
- package/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.vue +1 -1
- package/src/templates/www/PageInfographicDetail/PageInfographicDetail.stories.js +1 -1
- package/src/templates/www/PageInfographicDetail/PageInfographicDetail.vue +2 -2
- package/src/templates/www/PagePodcastSeason/PagePodcastSeason.stories.js +1 -1
- package/src/templates/www/PagePodcastSeason/PagePodcastSeason.vue +1 -1
- package/src/templates/www/PageRoboticsDetail/PageRoboticsDetail.vue +1 -1
- package/src/templates/www/PageTopicDetail/PageTopicDetail.stories.js +1 -1
- package/src/templates/www/PageTopicDetail/PageTopicDetail.vue +1 -1
- package/src/utils/mixins.ts +1 -1
- package/src/utils/rangeifyGrades.ts +76 -0
- package/src/components/BaseTag/BaseTag.vue +0 -36
package/components.d.ts
CHANGED
|
@@ -21,10 +21,10 @@ declare module 'vue' {
|
|
|
21
21
|
BaseLink: typeof import('./src/components/BaseLink/BaseLink.vue')['default']
|
|
22
22
|
BaseModal: typeof import('./src/components/BaseModal/BaseModal.vue')['default']
|
|
23
23
|
BaseModalDialog: typeof import('./src/components/BaseModal/BaseModalDialog.vue')['default']
|
|
24
|
+
BasePill: typeof import('./src/components/BasePill/BasePill.vue')['default']
|
|
24
25
|
BasePlaceholder: typeof import('./src/components/BasePlaceholder/BasePlaceholder.vue')['default']
|
|
25
26
|
BaseRadioGroup: typeof import('./src/components/BaseRadioGroup/BaseRadioGroup.vue')['default']
|
|
26
27
|
BaseSwimlane: typeof import('./src/components/BaseSwimlane/BaseSwimlane.vue')['default']
|
|
27
|
-
BaseTag: typeof import('./src/components/BaseTag/BaseTag.vue')['default']
|
|
28
28
|
BaseTimer: typeof import('./src/components/BaseTimer/BaseTimer.vue')['default']
|
|
29
29
|
BaseUnitToggle: typeof import('./src/components/BaseUnitToggle/BaseUnitToggle.vue')['default']
|
|
30
30
|
BaseVideo: typeof import('./src/components/BaseVideo/BaseVideo.vue')['default']
|
|
@@ -62,6 +62,7 @@ declare module 'vue' {
|
|
|
62
62
|
BlockVideo: typeof import('./src/components/BlockVideo/BlockVideo.vue')['default']
|
|
63
63
|
BlockVideoEmbed: typeof import('./src/components/BlockVideoEmbed/BlockVideoEmbed.vue')['default']
|
|
64
64
|
CalendarButton: typeof import('./src/components/CalendarButton/CalendarButton.vue')['default']
|
|
65
|
+
CalendarChip: typeof import('./src/components/CalendarChip/CalendarChip.vue')['default']
|
|
65
66
|
DetailHeadline: typeof import('./src/components/DetailHeadline/DetailHeadline.vue')['default']
|
|
66
67
|
DistanceStats: typeof import('./src/components/MissionDetailStats/DistanceStats.vue')['default']
|
|
67
68
|
DsnWidget: typeof import('./src/components/DsnWidget/DsnWidget.vue')['default']
|
|
@@ -118,6 +119,7 @@ declare module 'vue' {
|
|
|
118
119
|
IconPlay: typeof import('./src/components/Icons/IconPlay.vue')['default']
|
|
119
120
|
IconPlus: typeof import('./src/components/Icons/IconPlus.vue')['default']
|
|
120
121
|
IconPrev: typeof import('./src/components/Icons/IconPrev.vue')['default']
|
|
122
|
+
IconProfile: typeof import('./src/components/Icons/IconProfile.vue')['default']
|
|
121
123
|
IconRewindTen: typeof import('./src/components/Icons/IconRewindTen.vue')['default']
|
|
122
124
|
IconSearch: typeof import('./src/components/Icons/IconSearch.vue')['default']
|
|
123
125
|
IconShare: typeof import('./src/components/Icons/IconShare.vue')['default']
|
|
@@ -131,6 +133,7 @@ declare module 'vue' {
|
|
|
131
133
|
IconSocialTwitter: typeof import('./src/components/Icons/IconSocialTwitter.vue')['default']
|
|
132
134
|
IconSocialYoutube: typeof import('./src/components/Icons/IconSocialYoutube.vue')['default']
|
|
133
135
|
IconStop: typeof import('./src/components/Icons/IconStop.vue')['default']
|
|
136
|
+
IconSubject: typeof import('./src/components/Icons/IconSubject.vue')['default']
|
|
134
137
|
IconTime: typeof import('./src/components/Icons/IconTime.vue')['default']
|
|
135
138
|
IconUniversity: typeof import('./src/components/Icons/IconUniversity.vue')['default']
|
|
136
139
|
IconUser: typeof import('./src/components/Icons/IconUser.vue')['default']
|
|
@@ -140,6 +143,8 @@ declare module 'vue' {
|
|
|
140
143
|
LoadingTransition: typeof import('./src/components/LoadingTransition/LoadingTransition.vue')['default']
|
|
141
144
|
LogoCaltech: typeof import('./src/components/LogoCaltech/LogoCaltech.vue')['default']
|
|
142
145
|
LogoTribrand: typeof import('./src/components/LogoTribrand/LogoTribrand.vue')['default']
|
|
146
|
+
MetadataEduResource: typeof import('./src/components/MetadataEduResource/MetadataEduResource.vue')['default']
|
|
147
|
+
MetadataEvent: typeof import('./src/components/MetadataEvent/MetadataEvent.vue')['default']
|
|
143
148
|
MissionDetailAbout: typeof import('./src/components/MissionDetailAbout/MissionDetailAbout.vue')['default']
|
|
144
149
|
MissionDetailHero: typeof import('./src/components/MissionDetailHero/MissionDetailHero.vue')['default']
|
|
145
150
|
MissionDetailHighlights: typeof import('./src/components/MissionDetailHighlights/MissionDetailHighlights.vue')['default']
|