@explorer-1/vue 0.2.7 → 0.2.9

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.
Files changed (79) hide show
  1. package/components.d.ts +6 -1
  2. package/dist/explorer-1-vue.js +6871 -6420
  3. package/dist/explorer-1-vue.umd.cjs +13 -13
  4. package/dist/src/components/{BaseTag/BaseTag.stories.d.ts → BasePill/BasePill.stories.d.ts} +2 -2
  5. package/dist/src/components/{BaseTag/BaseTag.vue.d.ts → BasePill/BasePill.vue.d.ts} +7 -3
  6. package/dist/src/components/BlockLinkCard/BlockLinkCard.stories.d.ts +89 -15
  7. package/dist/src/components/BlockLinkCard/BlockLinkCard.vue.d.ts +66 -7
  8. package/dist/src/components/BlockLinkCarousel/BlockLinkCarousel.stories.d.ts +70 -2
  9. package/dist/src/components/BlockLinkTile/BlockLinkTile.vue.d.ts +4 -4
  10. package/dist/src/components/CalendarButton/CalendarButton.vue.d.ts +2 -2
  11. package/dist/src/components/CalendarChip/CalendarChip.vue.d.ts +36 -0
  12. package/dist/src/components/EventCard/EventCard.vue.d.ts +9 -0
  13. package/dist/src/components/EventDetailHero/EventDetailHero.vue.d.ts +27 -9
  14. package/dist/src/components/HeroListingIndex/HeroListingIndex.stories.d.ts +1 -0
  15. package/dist/src/components/HeroListingIndex/HeroListingIndex.vue.d.ts +6 -4
  16. package/dist/src/components/HeroMedium/HeroMedium.vue.d.ts +28 -2
  17. package/dist/src/components/Icons/IconProfile.vue.d.ts +2 -0
  18. package/dist/src/components/Icons/IconSubject.vue.d.ts +2 -0
  19. package/dist/src/components/Icons/Icons.stories.d.ts +17 -0
  20. package/dist/src/components/MetadataEduResource/MetadataEduResource.stories.d.ts +55 -0
  21. package/dist/src/components/MetadataEduResource/MetadataEduResource.vue.d.ts +38 -0
  22. package/dist/src/components/MetadataEvent/MetadataEvent.stories.d.ts +29 -0
  23. package/dist/src/components/MetadataEvent/MetadataEvent.vue.d.ts +38 -0
  24. package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +1 -0
  25. package/dist/src/components/SearchResultCard/SearchResultCard.stories.d.ts +23 -4
  26. package/dist/src/components/SearchResultCard/SearchResultCard.vue.d.ts +66 -1
  27. package/dist/src/components/SearchResultGridItem/SearchResultGridItem.stories.d.ts +7 -0
  28. package/dist/src/components/SearchResultGridItem/SearchResultGridItem.vue.d.ts +65 -11
  29. package/dist/src/components/SearchResultsList/SearchResultsList.stories.d.ts +404 -0
  30. package/dist/src/components/TopicDetailMoreItem/TopicDetailMoreItem.vue.d.ts +8 -4
  31. package/dist/src/constants.d.ts +4 -0
  32. package/dist/src/interfaces.d.ts +38 -3
  33. package/dist/src/templates/PageContent/PageContent.stories.d.ts +1 -0
  34. package/dist/src/templates/PageEventDetail/PageEventDetail.stories.d.ts +2 -13
  35. package/dist/src/templates/PageEventDetail/PageEventDetail.vue.d.ts +6 -3
  36. package/dist/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.d.ts +153 -31
  37. package/dist/src/utils/mixins.d.ts +1 -1
  38. package/dist/src/utils/rangeifyGrades.d.ts +3 -0
  39. package/dist/style.css +1 -1
  40. package/lib/main.ts +2 -2
  41. package/package.json +2 -2
  42. package/src/components/{BaseTag/BaseTag.stories.js → BasePill/BasePill.stories.js} +3 -3
  43. package/src/components/BasePill/BasePill.vue +54 -0
  44. package/src/components/BlockLinkCard/BlockLinkCard.stories.js +93 -12
  45. package/src/components/BlockLinkCard/BlockLinkCard.vue +180 -39
  46. package/src/components/BlockLinkCarousel/BlockLinkCarousel.stories.js +60 -3
  47. package/src/components/BlockLinkTile/BlockLinkTile.vue +11 -8
  48. package/src/components/CalendarChip/CalendarChip.vue +52 -0
  49. package/src/components/DetailHeadline/DetailHeadline.vue +5 -5
  50. package/src/components/EventCard/EventCard.vue +28 -88
  51. package/src/components/EventDetailHero/EventDetailHero.vue +18 -25
  52. package/src/components/HeroListingIndex/HeroListingIndex.stories.js +1 -0
  53. package/src/components/HeroListingIndex/HeroListingIndex.vue +8 -3
  54. package/src/components/HeroMedium/HeroMedium.vue +24 -12
  55. package/src/components/Icons/IconProfile.vue +30 -0
  56. package/src/components/Icons/IconSubject.vue +38 -0
  57. package/src/components/Icons/Icons.stories.ts +15 -0
  58. package/src/components/MetadataEduResource/MetadataEduResource.stories.js +59 -0
  59. package/src/components/MetadataEduResource/MetadataEduResource.vue +93 -0
  60. package/src/components/MetadataEvent/MetadataEvent.stories.js +31 -0
  61. package/src/components/MetadataEvent/MetadataEvent.vue +164 -0
  62. package/src/components/NavMobile/NavMobile.vue +3 -1
  63. package/src/components/SearchResultCard/SearchResultCard.stories.js +22 -5
  64. package/src/components/SearchResultCard/SearchResultCard.vue +71 -14
  65. package/src/components/SearchResultGridItem/SearchResultGridItem.stories.js +8 -1
  66. package/src/components/SearchResultGridItem/SearchResultGridItem.vue +81 -31
  67. package/src/components/SearchResultsList/SearchResultsList.stories.js +1197 -0
  68. package/src/components/SearchResultsList/SearchResultsList.vue +1 -0
  69. package/src/components/TopicDetailMoreItem/TopicDetailMoreItem.vue +12 -8
  70. package/src/constants.ts +20 -0
  71. package/src/interfaces.ts +41 -3
  72. package/src/templates/PageContent/PageContent.stories.js +1 -0
  73. package/src/templates/PageEventDetail/PageEventDetail.stories.js +1 -1
  74. package/src/templates/PageEventDetail/PageEventDetail.vue +25 -90
  75. package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.stories.js +4 -3
  76. package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue +38 -123
  77. package/src/utils/mixins.ts +2 -2
  78. package/src/utils/rangeifyGrades.ts +76 -0
  79. 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']