@explorer-1/vue 0.0.0

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 (371) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +9 -0
  3. package/components.d.ts +215 -0
  4. package/index.html +18 -0
  5. package/lib/main.ts +78 -0
  6. package/package.json +54 -0
  7. package/postcss.config.js +7 -0
  8. package/public/edu/.gitkeep +0 -0
  9. package/public/edu/explorer-1/bg-stars-edu.png +0 -0
  10. package/public/edu/explorer-1/bg-stars.jpg +0 -0
  11. package/public/explorer-1/bg-stars-edu.png +0 -0
  12. package/public/explorer-1/bg-stars.jpg +0 -0
  13. package/src/App.vue +30 -0
  14. package/src/assets/fonts/README.md +12 -0
  15. package/src/assets/fonts/archivo-narrow/ArchivoNarrow-Bold.woff2 +0 -0
  16. package/src/assets/fonts/archivo-narrow/ArchivoNarrow-BoldItalic.woff2 +0 -0
  17. package/src/assets/fonts/archivo-narrow/ArchivoNarrow-SemiBold.woff2 +0 -0
  18. package/src/assets/fonts/archivo-narrow/ArchivoNarrow-SemiBoldItalic.woff2 +0 -0
  19. package/src/assets/fonts/metropolis/Metropolis-Bold.woff2 +0 -0
  20. package/src/assets/fonts/metropolis/Metropolis-BoldItalic.woff2 +0 -0
  21. package/src/assets/fonts/metropolis/Metropolis-ExtraBold.woff2 +0 -0
  22. package/src/assets/fonts/metropolis/Metropolis-Medium.woff2 +0 -0
  23. package/src/assets/fonts/metropolis/Metropolis-MediumItalic.woff2 +0 -0
  24. package/src/assets/fonts/metropolis/Metropolis-Regular.woff2 +0 -0
  25. package/src/assets/fonts/metropolis/Metropolis-RegularItalic.woff2 +0 -0
  26. package/src/assets/fonts/metropolis/Metropolis-SemiBold.woff2 +0 -0
  27. package/src/assets/fonts/metropolis/Metropolis-SemiBoldItalic.woff2 +0 -0
  28. package/src/assets/scss/styles.scss +1 -0
  29. package/src/components/AsteroidWatchWidget/AsteroidWatchWidget.stories.js +156 -0
  30. package/src/components/AsteroidWatchWidget/AsteroidWatchWidget.vue +156 -0
  31. package/src/components/BackToTop/BackToTop.stories.js +24 -0
  32. package/src/components/BackToTop/BackToTop.vue +76 -0
  33. package/src/components/BaseAudio/BaseAudio.stories.js +29 -0
  34. package/src/components/BaseAudio/BaseAudio.vue +359 -0
  35. package/src/components/BaseButton/BaseButton.stories.ts +65 -0
  36. package/src/components/BaseButton/BaseButton.vue +114 -0
  37. package/src/components/BaseCheckboxGroup/BaseCheckboxGroup.stories.mdx +68 -0
  38. package/src/components/BaseCheckboxGroup/BaseCheckboxGroup.vue +101 -0
  39. package/src/components/BaseHeading/BaseHeading.stories.js +75 -0
  40. package/src/components/BaseHeading/BaseHeading.vue +58 -0
  41. package/src/components/BaseImage/BaseImage.stories.ts +52 -0
  42. package/src/components/BaseImage/BaseImage.vue +120 -0
  43. package/src/components/BaseImageCaption/BaseImageCaption.stories.js +27 -0
  44. package/src/components/BaseImageCaption/BaseImageCaption.vue +51 -0
  45. package/src/components/BaseImagePlaceholder/BaseImagePlaceholder.stories.js +73 -0
  46. package/src/components/BaseImagePlaceholder/BaseImagePlaceholder.vue +90 -0
  47. package/src/components/BaseLightboxCloseButton/BaseLightboxCloseButton.vue +45 -0
  48. package/src/components/BaseLightboxOpenButton/BaseLightboxOpenButton.vue +46 -0
  49. package/src/components/BaseLink/BaseLink.stories.js +47 -0
  50. package/src/components/BaseLink/BaseLink.vue +227 -0
  51. package/src/components/BaseModal/BaseModal.stories.js +90 -0
  52. package/src/components/BaseModal/BaseModal.vue +54 -0
  53. package/src/components/BaseModal/BaseModalDialog.vue +59 -0
  54. package/src/components/BasePlaceholder/BasePlaceholder.stories.js +29 -0
  55. package/src/components/BasePlaceholder/BasePlaceholder.vue +30 -0
  56. package/src/components/BaseRadioGroup/BaseRadioGroup.stories.mdx +68 -0
  57. package/src/components/BaseRadioGroup/BaseRadioGroup.vue +102 -0
  58. package/src/components/BaseSwimlane/BaseSwimlane.stories.mdx +64 -0
  59. package/src/components/BaseSwimlane/BaseSwimlane.vue +204 -0
  60. package/src/components/BaseTag/BaseTag.stories.js +34 -0
  61. package/src/components/BaseTag/BaseTag.vue +36 -0
  62. package/src/components/BaseTimer/BaseTimer.stories.js +78 -0
  63. package/src/components/BaseTimer/BaseTimer.test.js +15 -0
  64. package/src/components/BaseTimer/BaseTimer.vue +270 -0
  65. package/src/components/BaseUnitToggle/BaseUnitToggle.stories.js +86 -0
  66. package/src/components/BaseUnitToggle/BaseUnitToggle.test.js +26 -0
  67. package/src/components/BaseUnitToggle/BaseUnitToggle.vue +255 -0
  68. package/src/components/BaseVideo/BaseVideo.stories.js +31 -0
  69. package/src/components/BaseVideo/BaseVideo.vue +73 -0
  70. package/src/components/BlockAnchor/BlockAnchor.vue +38 -0
  71. package/src/components/BlockAudio/BlockAudio.stories.js +29 -0
  72. package/src/components/BlockAudio/BlockAudio.vue +78 -0
  73. package/src/components/BlockCard/BlockCard.stories.js +24 -0
  74. package/src/components/BlockCard/BlockCard.vue +88 -0
  75. package/src/components/BlockCardGroup/BlockCardGroup.stories.js +71 -0
  76. package/src/components/BlockCardGroup/BlockCardGroup.vue +61 -0
  77. package/src/components/BlockCircleImageCard/BlockCircleImageCard.stories.js +55 -0
  78. package/src/components/BlockCircleImageCard/BlockCircleImageCard.vue +120 -0
  79. package/src/components/BlockCta/BlockCta.stories.js +35 -0
  80. package/src/components/BlockCta/BlockCta.vue +55 -0
  81. package/src/components/BlockHeading/BlockHeading.stories.js +22 -0
  82. package/src/components/BlockHeading/BlockHeading.vue +27 -0
  83. package/src/components/BlockIframeEmbed/BlockIframeEmbed.stories.js +40 -0
  84. package/src/components/BlockIframeEmbed/BlockIframeEmbed.vue +84 -0
  85. package/src/components/BlockImage/BlockImage.stories.js +137 -0
  86. package/src/components/BlockImage/BlockImage.vue +48 -0
  87. package/src/components/BlockImage/BlockImageFullBleed.vue +119 -0
  88. package/src/components/BlockImage/BlockImageStandard.vue +106 -0
  89. package/src/components/BlockImageCarousel/BlockImageCarousel.stories.js +108 -0
  90. package/src/components/BlockImageCarousel/BlockImageCarousel.vue +201 -0
  91. package/src/components/BlockImageCarouselItem/BlockImageCarouselItem.stories.js +63 -0
  92. package/src/components/BlockImageCarouselItem/BlockImageCarouselItem.vue +120 -0
  93. package/src/components/BlockImageComparison/BlockImageComparison.stories.js +46 -0
  94. package/src/components/BlockImageComparison/BlockImageComparison.vue +59 -0
  95. package/src/components/BlockImageGallery/BlockImageGallery.stories.js +55 -0
  96. package/src/components/BlockImageGallery/BlockImageGallery.vue +128 -0
  97. package/src/components/BlockInlineImage/BlockInlineImage.stories.js +68 -0
  98. package/src/components/BlockInlineImage/BlockInlineImage.vue +124 -0
  99. package/src/components/BlockKeyPoints/BlockKeyPoints.stories.js +28 -0
  100. package/src/components/BlockKeyPoints/BlockKeyPoints.vue +48 -0
  101. package/src/components/BlockLinkCard/BlockLinkCard.stories.js +102 -0
  102. package/src/components/BlockLinkCard/BlockLinkCard.vue +197 -0
  103. package/src/components/BlockLinkCarousel/BlockLinkCarousel.stories.js +217 -0
  104. package/src/components/BlockLinkCarousel/BlockLinkCarousel.vue +68 -0
  105. package/src/components/BlockLinkTile/BlockLinkTile.stories.js +72 -0
  106. package/src/components/BlockLinkTile/BlockLinkTile.vue +193 -0
  107. package/src/components/BlockListCards/BlockListCards.stories.js +69 -0
  108. package/src/components/BlockListCards/BlockListCards.vue +129 -0
  109. package/src/components/BlockQuote/BlockQuote.stories.js +84 -0
  110. package/src/components/BlockQuote/BlockQuote.vue +87 -0
  111. package/src/components/BlockRelatedLinks/BlockRelatedLinks.stories.js +60 -0
  112. package/src/components/BlockRelatedLinks/BlockRelatedLinks.vue +77 -0
  113. package/src/components/BlockRelatedLinks/RelatedLink.vue +85 -0
  114. package/src/components/BlockStreamfield/BlockStreamfield.stories.js +88 -0
  115. package/src/components/BlockStreamfield/BlockStreamfield.vue +333 -0
  116. package/src/components/BlockTable/BlockTable.stories.js +20 -0
  117. package/src/components/BlockTable/BlockTable.vue +73 -0
  118. package/src/components/BlockTeaser/BlockTeaser.stories.js +74 -0
  119. package/src/components/BlockTeaser/BlockTeaser.test.js +12 -0
  120. package/src/components/BlockTeaser/BlockTeaser.vue +174 -0
  121. package/src/components/BlockText/BlockText.stories.js +21 -0
  122. package/src/components/BlockText/BlockText.vue +44 -0
  123. package/src/components/BlockTwitterEmbed/BlockTwitterEmbed.stories.js +19 -0
  124. package/src/components/BlockTwitterEmbed/BlockTwitterEmbed.vue +61 -0
  125. package/src/components/BlockVideo/BlockVideo.stories.js +23 -0
  126. package/src/components/BlockVideo/BlockVideo.vue +41 -0
  127. package/src/components/BlockVideoEmbed/BlockVideoEmbed.stories.js +20 -0
  128. package/src/components/BlockVideoEmbed/BlockVideoEmbed.vue +71 -0
  129. package/src/components/CalendarButton/CalendarButton.stories.js +36 -0
  130. package/src/components/CalendarButton/CalendarButton.vue +86 -0
  131. package/src/components/DetailHeadline/DetailHeadline.stories.js +48 -0
  132. package/src/components/DetailHeadline/DetailHeadline.vue +143 -0
  133. package/src/components/DsnWidget/DsnWidget.stories.js +29 -0
  134. package/src/components/DsnWidget/DsnWidget.vue +96 -0
  135. package/src/components/EventCard/EventCard.vue +188 -0
  136. package/src/components/EventDetailHero/EventDetailHero.stories.js +53 -0
  137. package/src/components/EventDetailHero/EventDetailHero.vue +64 -0
  138. package/src/components/FormContact/FormContact.stories.js +16 -0
  139. package/src/components/FormContact/FormContact.vue +202 -0
  140. package/src/components/FormNewsletterSignup/FormNewsletterSignup.stories.js +16 -0
  141. package/src/components/FormNewsletterSignup/FormNewsletterSignup.vue +355 -0
  142. package/src/components/HeroLarge/HeroLarge.stories.js +46 -0
  143. package/src/components/HeroLarge/HeroLarge.vue +93 -0
  144. package/src/components/HeroListingIndex/HeroListingIndex.stories.js +156 -0
  145. package/src/components/HeroListingIndex/HeroListingIndex.vue +80 -0
  146. package/src/components/HeroMedia/HeroMedia.stories.js +135 -0
  147. package/src/components/HeroMedia/HeroMedia.vue +174 -0
  148. package/src/components/HeroMedium/HeroMedium.stories.js +73 -0
  149. package/src/components/HeroMedium/HeroMedium.vue +166 -0
  150. package/src/components/HomepageCarousel/HomepageCarousel.stories.js +112 -0
  151. package/src/components/HomepageCarousel/HomepageCarousel.vue +382 -0
  152. package/src/components/HomepageCarouselItem/HomepageCarouselItem.stories.js +60 -0
  153. package/src/components/HomepageCarouselItem/HomepageCarouselItem.vue +168 -0
  154. package/src/components/HomepageEmbedBlock/HomepageEmbedBlock.stories.js +35 -0
  155. package/src/components/HomepageEmbedBlock/HomepageEmbedBlock.vue +39 -0
  156. package/src/components/HomepageFeaturedRobot/HomepageFeaturedRobot.stories.js +93 -0
  157. package/src/components/HomepageFeaturedRobot/HomepageFeaturedRobot.vue +129 -0
  158. package/src/components/HomepageMissionsCarousel/HomepageMissionsCarousel.stories.js +153 -0
  159. package/src/components/HomepageMissionsCarousel/HomepageMissionsCarousel.vue +282 -0
  160. package/src/components/HomepageMissionsCarousel/HomepageMissionsCarouselItem.vue +143 -0
  161. package/src/components/HomepageStats/HomepageStats.stories.js +155 -0
  162. package/src/components/HomepageStats/HomepageStats.vue +362 -0
  163. package/src/components/HomepageTeaserBlock/HomepageTeaserBlock.stories.js +90 -0
  164. package/src/components/HomepageTeaserBlock/HomepageTeaserBlock.vue +156 -0
  165. package/src/components/HomepageTeaserBlock/HomepageTeaserBlockCardImage.vue +58 -0
  166. package/src/components/Icons/Icon360.vue +29 -0
  167. package/src/components/Icons/IconArrow.vue +26 -0
  168. package/src/components/Icons/IconArrows.vue +43 -0
  169. package/src/components/Icons/IconAudio.vue +27 -0
  170. package/src/components/Icons/IconBook.vue +21 -0
  171. package/src/components/Icons/IconBookUser.vue +21 -0
  172. package/src/components/Icons/IconBriefcase.vue +21 -0
  173. package/src/components/Icons/IconCalendar.vue +25 -0
  174. package/src/components/Icons/IconCaret.vue +26 -0
  175. package/src/components/Icons/IconCheckbox.vue +26 -0
  176. package/src/components/Icons/IconCheckboxSelected.vue +35 -0
  177. package/src/components/Icons/IconClose.vue +27 -0
  178. package/src/components/Icons/IconCloseLightbox.vue +25 -0
  179. package/src/components/Icons/IconDownload.vue +31 -0
  180. package/src/components/Icons/IconDropdown.vue +25 -0
  181. package/src/components/Icons/IconEnvelope.vue +21 -0
  182. package/src/components/Icons/IconExpand.vue +28 -0
  183. package/src/components/Icons/IconExternal.vue +25 -0
  184. package/src/components/Icons/IconFilter.vue +25 -0
  185. package/src/components/Icons/IconForwardTen.vue +38 -0
  186. package/src/components/Icons/IconGrid.vue +25 -0
  187. package/src/components/Icons/IconHand.vue +21 -0
  188. package/src/components/Icons/IconInfo.vue +26 -0
  189. package/src/components/Icons/IconLink.vue +27 -0
  190. package/src/components/Icons/IconList.vue +25 -0
  191. package/src/components/Icons/IconLocation.vue +37 -0
  192. package/src/components/Icons/IconMagnifyingGlass.vue +21 -0
  193. package/src/components/Icons/IconMedal.vue +21 -0
  194. package/src/components/Icons/IconMenu.vue +27 -0
  195. package/src/components/Icons/IconMinus.vue +26 -0
  196. package/src/components/Icons/IconMute.vue +27 -0
  197. package/src/components/Icons/IconNext.vue +25 -0
  198. package/src/components/Icons/IconPause.vue +28 -0
  199. package/src/components/Icons/IconPlay.vue +28 -0
  200. package/src/components/Icons/IconPlus.vue +25 -0
  201. package/src/components/Icons/IconPrev.vue +25 -0
  202. package/src/components/Icons/IconRewindTen.vue +42 -0
  203. package/src/components/Icons/IconSearch.vue +25 -0
  204. package/src/components/Icons/IconShare.vue +30 -0
  205. package/src/components/Icons/IconSlideshow.vue +30 -0
  206. package/src/components/Icons/IconSocialEmail.vue +26 -0
  207. package/src/components/Icons/IconSocialFacebook.vue +26 -0
  208. package/src/components/Icons/IconSocialGoogleClassroom.vue +26 -0
  209. package/src/components/Icons/IconSocialInstagram.vue +35 -0
  210. package/src/components/Icons/IconSocialPinterest.vue +26 -0
  211. package/src/components/Icons/IconSocialReddit.vue +25 -0
  212. package/src/components/Icons/IconSocialTwitter.vue +25 -0
  213. package/src/components/Icons/IconSocialYoutube.vue +35 -0
  214. package/src/components/Icons/IconStop.vue +27 -0
  215. package/src/components/Icons/IconTime.vue +25 -0
  216. package/src/components/Icons/IconUniversity.vue +21 -0
  217. package/src/components/Icons/IconUser.vue +26 -0
  218. package/src/components/Icons/IconVolume.vue +27 -0
  219. package/src/components/Icons/Icons.stories.ts +440 -0
  220. package/src/components/ImageDetailContextImage/ImageDetailContextImage.vue +125 -0
  221. package/src/components/LayoutHelper/LayoutHelper.vue +38 -0
  222. package/src/components/LoadingTransition/LoadingTransition.vue +48 -0
  223. package/src/components/LogoCaltech/LogoCaltech.stories.js +39 -0
  224. package/src/components/LogoCaltech/LogoCaltech.vue +29 -0
  225. package/src/components/LogoTribrand/LogoTribrand.stories.js +76 -0
  226. package/src/components/LogoTribrand/LogoTribrand.vue +93 -0
  227. package/src/components/MissionDetailAbout/MissionDetailAbout.stories.js +70 -0
  228. package/src/components/MissionDetailAbout/MissionDetailAbout.vue +204 -0
  229. package/src/components/MissionDetailHero/MissionDetailHero.stories.js +303 -0
  230. package/src/components/MissionDetailHero/MissionDetailHero.vue +292 -0
  231. package/src/components/MissionDetailHighlights/MissionDetailHighlights.stories.js +278 -0
  232. package/src/components/MissionDetailHighlights/MissionDetailHighlights.vue +332 -0
  233. package/src/components/MissionDetailHighlights/MissionDetailHighlightsCarousel.vue +160 -0
  234. package/src/components/MissionDetailHighlights/MissionDetailHighlightsCarouselItem.vue +123 -0
  235. package/src/components/MissionDetailInlineImage/MissionDetailInlineImage.stories.js +43 -0
  236. package/src/components/MissionDetailInlineImage/MissionDetailInlineImage.vue +97 -0
  237. package/src/components/MissionDetailStats/DistanceStats.test.js +133 -0
  238. package/src/components/MissionDetailStats/DistanceStats.vue +250 -0
  239. package/src/components/MissionDetailStats/MissionDetailStats.stories.js +95 -0
  240. package/src/components/MissionDetailStats/MissionDetailStats.test.js +23 -0
  241. package/src/components/MissionDetailStats/MissionDetailStats.vue +187 -0
  242. package/src/components/MissionDetailStats/MissionDetailStatsMicro.vue +52 -0
  243. package/src/components/MissionDetailStats/MissionDetailStatsMini.vue +109 -0
  244. package/src/components/MissionDetailStreamfield/MissionDetailStreamfield.stories.js +55 -0
  245. package/src/components/MissionDetailStreamfield/MissionDetailStreamfield.vue +95 -0
  246. package/src/components/MixinAnimationCaret/MixinAnimationCaret.stories.ts +24 -0
  247. package/src/components/MixinAnimationCaret/MixinAnimationCaret.vue +81 -0
  248. package/src/components/MixinCarousel/MixinCarousel.docs.mdx +33 -0
  249. package/src/components/MixinCarousel/MixinCarousel.stories.js +53 -0
  250. package/src/components/MixinCarousel/MixinCarousel.vue +236 -0
  251. package/src/components/MixinDropdownToggle/MixinDropdownToggle.vue +53 -0
  252. package/src/components/MixinFancybox/MixinFancybox.vue +405 -0
  253. package/src/components/MixinFancybox/MixinFancyboxOpenButton.vue +35 -0
  254. package/src/components/MixinVideoBg/MixinVideoBg.stories.js +23 -0
  255. package/src/components/MixinVideoBg/MixinVideoBg.vue +39 -0
  256. package/src/components/NavDesktop/NavDesktop.stories.js +254 -0
  257. package/src/components/NavDesktop/NavDesktop.vue +355 -0
  258. package/src/components/NavDesktop/NavDesktopDropdown.vue +201 -0
  259. package/src/components/NavDesktop/NavDesktopDropdownContent.vue +87 -0
  260. package/src/components/NavDesktop/NavDesktopDropdownMore.vue +112 -0
  261. package/src/components/NavDesktop/NavDesktopTopHat.vue +56 -0
  262. package/src/components/NavHeading/NavHeading.stories.js +23 -0
  263. package/src/components/NavHeading/NavHeading.vue +40 -0
  264. package/src/components/NavHighlight/NavHighlight.stories.js +42 -0
  265. package/src/components/NavHighlight/NavHighlight.vue +67 -0
  266. package/src/components/NavLinkList/NavLinkList.stories.js +46 -0
  267. package/src/components/NavLinkList/NavLinkList.vue +66 -0
  268. package/src/components/NavLogoLinks/NavLogoLinks.stories.js +22 -0
  269. package/src/components/NavLogoLinks/NavLogoLinks.vue +57 -0
  270. package/src/components/NavMobile/NavMobile.stories.js +231 -0
  271. package/src/components/NavMobile/NavMobile.vue +280 -0
  272. package/src/components/NavMobile/NavMobileDropdown.vue +175 -0
  273. package/src/components/NavMobile/NavMobileLink.vue +69 -0
  274. package/src/components/NavMobile/NavMobileSecondaryDropdown.vue +124 -0
  275. package/src/components/NavSearchForm/NavSearchForm.stories.js +13 -0
  276. package/src/components/NavSearchForm/NavSearchForm.vue +102 -0
  277. package/src/components/NavSecondary/NavSecondary.stories.js +24 -0
  278. package/src/components/NavSecondary/NavSecondary.vue +191 -0
  279. package/src/components/NavSecondary/NavSecondaryDropdown.vue +181 -0
  280. package/src/components/NavSecondary/NavSecondaryDropdownContent.vue +140 -0
  281. package/src/components/NavSecondary/NavSecondaryLink.vue +62 -0
  282. package/src/components/NavSocial/NavSocial.stories.js +20 -0
  283. package/src/components/NavSocial/NavSocial.vue +97 -0
  284. package/src/components/NewsDetailMediaContact/NewsDetailMediaContact.stories.js +60 -0
  285. package/src/components/NewsDetailMediaContact/NewsDetailMediaContact.test.js +30 -0
  286. package/src/components/NewsDetailMediaContact/NewsDetailMediaContact.vue +73 -0
  287. package/src/components/ParallaxContainer/ParallaxContainer.stories.js +47 -0
  288. package/src/components/ParallaxContainer/ParallaxContainer.vue +76 -0
  289. package/src/components/ParallaxElement/ParallaxElement.vue +25 -0
  290. package/src/components/PastEventsCarousel/PastEventsCarousel.vue +86 -0
  291. package/src/components/PodcastEpisodeCard/PodcastEpisodeCard.vue +251 -0
  292. package/src/components/PodcastSeriesCarousel/PodcastSeriesCarousel.stories.js +235 -0
  293. package/src/components/PodcastSeriesCarousel/PodcastSeriesCarousel.vue +171 -0
  294. package/src/components/ProfileDetailSectionGroup/ProfileDetailSectionGroup.vue +84 -0
  295. package/src/components/RoboticsDetailStats/RoboticsDetailStats.stories.js +97 -0
  296. package/src/components/RoboticsDetailStats/RoboticsDetailStats.test.js +21 -0
  297. package/src/components/RoboticsDetailStats/RoboticsDetailStats.vue +217 -0
  298. package/src/components/RoboticsDetailStats/RoboticsDetailStatsMini.vue +182 -0
  299. package/src/components/SearchFilterGroup/SearchFilterGroup.stories.js +59 -0
  300. package/src/components/SearchFilterGroup/SearchFilterGroup.vue +221 -0
  301. package/src/components/SearchInput/SearchInput.stories.js +35 -0
  302. package/src/components/SearchInput/SearchInput.vue +93 -0
  303. package/src/components/SearchPagination/SearchPagination.stories.js +55 -0
  304. package/src/components/SearchPagination/SearchPagination.vue +173 -0
  305. package/src/components/SearchResultCard/SearchResultCard.stories.js +57 -0
  306. package/src/components/SearchResultCard/SearchResultCard.vue +282 -0
  307. package/src/components/SearchResultGridItem/SearchResultGridItem.stories.js +70 -0
  308. package/src/components/SearchResultGridItem/SearchResultGridItem.vue +140 -0
  309. package/src/components/SearchResultsList/SearchResultsList.vue +183 -0
  310. package/src/components/SearchSelectMenu/SearchSelectMenu.stories.js +25 -0
  311. package/src/components/SearchSelectMenu/SearchSelectMenu.vue +86 -0
  312. package/src/components/ShareButtons/ShareButtons.stories.js +16 -0
  313. package/src/components/ShareButtons/ShareButtons.vue +132 -0
  314. package/src/components/ShareButtonsEdu/ShareButtonsEdu.stories.js +14 -0
  315. package/src/components/ShareButtonsEdu/ShareButtonsEdu.vue +215 -0
  316. package/src/components/SkipLink/SkipLink.stories.js +9 -0
  317. package/src/components/SkipLink/SkipLink.vue +53 -0
  318. package/src/components/SwimlaneCTA/SwimlaneCTA.stories.mdx +77 -0
  319. package/src/components/SwimlaneCTA/SwimlaneCTA.vue +281 -0
  320. package/src/components/TheFooter/TheFooter.stories.js +602 -0
  321. package/src/components/TheFooter/TheFooter.vue +228 -0
  322. package/src/components/TheFooter/TheFooterSignUp.vue +61 -0
  323. package/src/components/ThumbnailCarousel/ThumbnailCarousel.stories.js +106 -0
  324. package/src/components/ThumbnailCarousel/ThumbnailCarousel.vue +76 -0
  325. package/src/components/TopicDetailMissionCarousel/TopicDetailMissionCarousel.stories.js +93 -0
  326. package/src/components/TopicDetailMissionCarousel/TopicDetailMissionCarousel.vue +68 -0
  327. package/src/components/TopicDetailMissionCarouselItem/TopicDetailMissionCarouselItem.stories.js +38 -0
  328. package/src/components/TopicDetailMissionCarouselItem/TopicDetailMissionCarouselItem.vue +104 -0
  329. package/src/components/TopicDetailMissionSpotlight/TopicDetailMissionSpotlight.stories.js +84 -0
  330. package/src/components/TopicDetailMissionSpotlight/TopicDetailMissionSpotlight.vue +112 -0
  331. package/src/components/TopicDetailMore/TopicDetailMore.stories.js +221 -0
  332. package/src/components/TopicDetailMore/TopicDetailMore.vue +124 -0
  333. package/src/components/TopicDetailMore/TopicDetailMoreVisibility.vue +51 -0
  334. package/src/components/TopicDetailMoreItem/TopicDetailMoreItem.stories.js +116 -0
  335. package/src/components/TopicDetailMoreItem/TopicDetailMoreItem.vue +130 -0
  336. package/src/components/TopicDetailStreamfield/TopicDetailStreamfield.stories.js +34 -0
  337. package/src/components/TopicDetailStreamfield/TopicDetailStreamfield.vue +98 -0
  338. package/src/components/YearTicker/YearTicker.stories.js +37 -0
  339. package/src/components/YearTicker/YearTicker.vue +132 -0
  340. package/src/docs/foundation/DynamicTokens.vue +106 -0
  341. package/src/docs/foundation/FontVariants.vue +80 -0
  342. package/src/docs/foundation/color.docs.mdx +112 -0
  343. package/src/docs/foundation/grid.docs.mdx +189 -0
  344. package/src/docs/foundation/grid.stories.js +263 -0
  345. package/src/docs/foundation/grid_layouthelpers.docs.mdx +78 -0
  346. package/src/docs/foundation/grid_layouthelpers.stories.js +53 -0
  347. package/src/docs/foundation/themes.docs.mdx +71 -0
  348. package/src/docs/foundation/themes.stories.js +63 -0
  349. package/src/docs/foundation/typography.docs.mdx +50 -0
  350. package/src/docs/foundation/typography.stories.js +119 -0
  351. package/src/interfaces.ts +129 -0
  352. package/src/main.ts +34 -0
  353. package/src/store/header.ts +40 -0
  354. package/src/store/theme.ts +27 -0
  355. package/src/templates/PageContent/PageContent.stories.js +92 -0
  356. package/src/templates/PageContent/PageContent.vue +140 -0
  357. package/src/templates/PageEventDetail/PageEventDetail.stories.js +104 -0
  358. package/src/templates/PageEventDetail/PageEventDetail.vue +358 -0
  359. package/src/templates/PageNewsDetail/PageNewsDetail.stories.js +158 -0
  360. package/src/templates/PageNewsDetail/PageNewsDetail.vue +242 -0
  361. package/src/templates/edu/PageEduNewsDetail.stories.js +64 -0
  362. package/src/templates/edu/PageEduNewsDetail.vue +155 -0
  363. package/src/templates/www/HomePage/HomePage.vue +30 -0
  364. package/src/utils/dayjs.js +32 -0
  365. package/src/utils/filters.js +33 -0
  366. package/src/utils/mixins.ts +353 -0
  367. package/src/vite-env.d.ts +1 -0
  368. package/tailwind.config.js +24 -0
  369. package/tsconfig.json +29 -0
  370. package/tsconfig.node.json +11 -0
  371. package/vite.config.ts +55 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 California Institute of Technology (Caltech). U.S. Government sponsorship acknowledged.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Vue 3 + TypeScript + Vite
2
+
3
+ This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+
5
+ ## Recommended Setup
6
+
7
+ - [VS Code](https://code.visualstudio.com/) + [Vue - Official](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (previously Volar) and disable Vetur
8
+
9
+ - Use [vue-tsc](https://github.com/vuejs/language-tools/tree/master/packages/tsc) for performing the same type checking from the command line, or for generating d.ts files for SFCs.
@@ -0,0 +1,215 @@
1
+ /* eslint-disable */
2
+ // @ts-nocheck
3
+ // Generated by unplugin-vue-components
4
+ // Read more: https://github.com/vuejs/core/pull/3399
5
+ export {}
6
+
7
+ /* prettier-ignore */
8
+ declare module 'vue' {
9
+ export interface GlobalComponents {
10
+ AsteroidWatchWidget: typeof import('./src/components/AsteroidWatchWidget/AsteroidWatchWidget.vue')['default']
11
+ BackToTop: typeof import('./src/components/BackToTop/BackToTop.vue')['default']
12
+ BaseAudio: typeof import('./src/components/BaseAudio/BaseAudio.vue')['default']
13
+ BaseButton: typeof import('./src/components/BaseButton/BaseButton.vue')['default']
14
+ BaseCheckboxGroup: typeof import('./src/components/BaseCheckboxGroup/BaseCheckboxGroup.vue')['default']
15
+ BaseHeading: typeof import('./src/components/BaseHeading/BaseHeading.vue')['default']
16
+ BaseImage: typeof import('./src/components/BaseImage/BaseImage.vue')['default']
17
+ BaseImageCaption: typeof import('./src/components/BaseImageCaption/BaseImageCaption.vue')['default']
18
+ BaseImagePlaceholder: typeof import('./src/components/BaseImagePlaceholder/BaseImagePlaceholder.vue')['default']
19
+ BaseLightboxCloseButton: typeof import('./src/components/BaseLightboxCloseButton/BaseLightboxCloseButton.vue')['default']
20
+ BaseLightboxOpenButton: typeof import('./src/components/BaseLightboxOpenButton/BaseLightboxOpenButton.vue')['default']
21
+ BaseLink: typeof import('./src/components/BaseLink/BaseLink.vue')['default']
22
+ BaseModal: typeof import('./src/components/BaseModal/BaseModal.vue')['default']
23
+ BaseModalDialog: typeof import('./src/components/BaseModal/BaseModalDialog.vue')['default']
24
+ BasePlaceholder: typeof import('./src/components/BasePlaceholder/BasePlaceholder.vue')['default']
25
+ BaseRadioGroup: typeof import('./src/components/BaseRadioGroup/BaseRadioGroup.vue')['default']
26
+ BaseSwimlane: typeof import('./src/components/BaseSwimlane/BaseSwimlane.vue')['default']
27
+ BaseTag: typeof import('./src/components/BaseTag/BaseTag.vue')['default']
28
+ BaseTimer: typeof import('./src/components/BaseTimer/BaseTimer.vue')['default']
29
+ BaseUnitToggle: typeof import('./src/components/BaseUnitToggle/BaseUnitToggle.vue')['default']
30
+ BaseVideo: typeof import('./src/components/BaseVideo/BaseVideo.vue')['default']
31
+ BlockAnchor: typeof import('./src/components/BlockAnchor/BlockAnchor.vue')['default']
32
+ BlockAudio: typeof import('./src/components/BlockAudio/BlockAudio.vue')['default']
33
+ BlockCard: typeof import('./src/components/BlockCard/BlockCard.vue')['default']
34
+ BlockCardGroup: typeof import('./src/components/BlockCardGroup/BlockCardGroup.vue')['default']
35
+ BlockCircleImageCard: typeof import('./src/components/BlockCircleImageCard/BlockCircleImageCard.vue')['default']
36
+ BlockCta: typeof import('./src/components/BlockCta/BlockCta.vue')['default']
37
+ BlockHeading: typeof import('./src/components/BlockHeading/BlockHeading.vue')['default']
38
+ BlockIframeEmbed: typeof import('./src/components/BlockIframeEmbed/BlockIframeEmbed.vue')['default']
39
+ BlockImage: typeof import('./src/components/BlockImage/BlockImage.vue')['default']
40
+ BlockImageCarousel: typeof import('./src/components/BlockImageCarousel/BlockImageCarousel.vue')['default']
41
+ BlockImageCarouselItem: typeof import('./src/components/BlockImageCarouselItem/BlockImageCarouselItem.vue')['default']
42
+ BlockImageComparison: typeof import('./src/components/BlockImageComparison/BlockImageComparison.vue')['default']
43
+ BlockImageFullBleed: typeof import('./src/components/BlockImage/BlockImageFullBleed.vue')['default']
44
+ BlockImageGallery: typeof import('./src/components/BlockImageGallery/BlockImageGallery.vue')['default']
45
+ BlockImageStandard: typeof import('./src/components/BlockImage/BlockImageStandard.vue')['default']
46
+ BlockInlineImage: typeof import('./src/components/BlockInlineImage/BlockInlineImage.vue')['default']
47
+ BlockKeyPoints: typeof import('./src/components/BlockKeyPoints/BlockKeyPoints.vue')['default']
48
+ BlockLinkCard: typeof import('./src/components/BlockLinkCard/BlockLinkCard.vue')['default']
49
+ BlockLinkCarousel: typeof import('./src/components/BlockLinkCarousel/BlockLinkCarousel.vue')['default']
50
+ BlockLinkTile: typeof import('./src/components/BlockLinkTile/BlockLinkTile.vue')['default']
51
+ BlockListCards: typeof import('./src/components/BlockListCards/BlockListCards.vue')['default']
52
+ BlockQuote: typeof import('./src/components/BlockQuote/BlockQuote.vue')['default']
53
+ BlockRelatedLinks: typeof import('./src/components/BlockRelatedLinks/BlockRelatedLinks.vue')['default']
54
+ BlockStreamfield: typeof import('./src/components/BlockStreamfield/BlockStreamfield.vue')['default']
55
+ BlockTable: typeof import('./src/components/BlockTable/BlockTable.vue')['default']
56
+ BlockTeaser: typeof import('./src/components/BlockTeaser/BlockTeaser.vue')['default']
57
+ BlockText: typeof import('./src/components/BlockText/BlockText.vue')['default']
58
+ BlockTwitterEmbed: typeof import('./src/components/BlockTwitterEmbed/BlockTwitterEmbed.vue')['default']
59
+ BlockVideo: typeof import('./src/components/BlockVideo/BlockVideo.vue')['default']
60
+ BlockVideoEmbed: typeof import('./src/components/BlockVideoEmbed/BlockVideoEmbed.vue')['default']
61
+ CalendarButton: typeof import('./src/components/CalendarButton/CalendarButton.vue')['default']
62
+ DetailHeadline: typeof import('./src/components/DetailHeadline/DetailHeadline.vue')['default']
63
+ DistanceStats: typeof import('./src/components/MissionDetailStats/DistanceStats.vue')['default']
64
+ DsnWidget: typeof import('./src/components/DsnWidget/DsnWidget.vue')['default']
65
+ EventCard: typeof import('./src/components/EventCard/EventCard.vue')['default']
66
+ EventDetailHero: typeof import('./src/components/EventDetailHero/EventDetailHero.vue')['default']
67
+ FormContact: typeof import('./src/components/FormContact/FormContact.vue')['default']
68
+ FormNewsletterSignup: typeof import('./src/components/FormNewsletterSignup/FormNewsletterSignup.vue')['default']
69
+ HeroLarge: typeof import('./src/components/HeroLarge/HeroLarge.vue')['default']
70
+ HeroListingIndex: typeof import('./src/components/HeroListingIndex/HeroListingIndex.vue')['default']
71
+ HeroMedia: typeof import('./src/components/HeroMedia/HeroMedia.vue')['default']
72
+ HeroMedium: typeof import('./src/components/HeroMedium/HeroMedium.vue')['default']
73
+ HomePage: typeof import('./src/templates/www/HomePage/HomePage.vue')['default']
74
+ HomepageCarousel: typeof import('./src/components/HomepageCarousel/HomepageCarousel.vue')['default']
75
+ HomepageCarouselItem: typeof import('./src/components/HomepageCarouselItem/HomepageCarouselItem.vue')['default']
76
+ HomepageEmbedBlock: typeof import('./src/components/HomepageEmbedBlock/HomepageEmbedBlock.vue')['default']
77
+ HomepageFeaturedRobot: typeof import('./src/components/HomepageFeaturedRobot/HomepageFeaturedRobot.vue')['default']
78
+ HomepageMissionsCarousel: typeof import('./src/components/HomepageMissionsCarousel/HomepageMissionsCarousel.vue')['default']
79
+ HomepageMissionsCarouselItem: typeof import('./src/components/HomepageMissionsCarousel/HomepageMissionsCarouselItem.vue')['default']
80
+ HomepageStats: typeof import('./src/components/HomepageStats/HomepageStats.vue')['default']
81
+ HomepageTeaserBlock: typeof import('./src/components/HomepageTeaserBlock/HomepageTeaserBlock.vue')['default']
82
+ HomepageTeaserBlockCardImage: typeof import('./src/components/HomepageTeaserBlock/HomepageTeaserBlockCardImage.vue')['default']
83
+ Icon360: typeof import('./src/components/Icons/Icon360.vue')['default']
84
+ IconArrow: typeof import('./src/components/Icons/IconArrow.vue')['default']
85
+ IconArrows: typeof import('./src/components/Icons/IconArrows.vue')['default']
86
+ IconAudio: typeof import('./src/components/Icons/IconAudio.vue')['default']
87
+ IconBook: typeof import('./src/components/Icons/IconBook.vue')['default']
88
+ IconBookUser: typeof import('./src/components/Icons/IconBookUser.vue')['default']
89
+ IconBriefcase: typeof import('./src/components/Icons/IconBriefcase.vue')['default']
90
+ IconCalendar: typeof import('./src/components/Icons/IconCalendar.vue')['default']
91
+ IconCaret: typeof import('./src/components/Icons/IconCaret.vue')['default']
92
+ IconCheckbox: typeof import('./src/components/Icons/IconCheckbox.vue')['default']
93
+ IconCheckboxSelected: typeof import('./src/components/Icons/IconCheckboxSelected.vue')['default']
94
+ IconClose: typeof import('./src/components/Icons/IconClose.vue')['default']
95
+ IconCloseLightbox: typeof import('./src/components/Icons/IconCloseLightbox.vue')['default']
96
+ IconDownload: typeof import('./src/components/Icons/IconDownload.vue')['default']
97
+ IconDropdown: typeof import('./src/components/Icons/IconDropdown.vue')['default']
98
+ IconEnvelope: typeof import('./src/components/Icons/IconEnvelope.vue')['default']
99
+ IconExpand: typeof import('./src/components/Icons/IconExpand.vue')['default']
100
+ IconExternal: typeof import('./src/components/Icons/IconExternal.vue')['default']
101
+ IconFilter: typeof import('./src/components/Icons/IconFilter.vue')['default']
102
+ IconForwardTen: typeof import('./src/components/Icons/IconForwardTen.vue')['default']
103
+ IconGrid: typeof import('./src/components/Icons/IconGrid.vue')['default']
104
+ IconHand: typeof import('./src/components/Icons/IconHand.vue')['default']
105
+ IconInfo: typeof import('./src/components/Icons/IconInfo.vue')['default']
106
+ IconLink: typeof import('./src/components/Icons/IconLink.vue')['default']
107
+ IconList: typeof import('./src/components/Icons/IconList.vue')['default']
108
+ IconLocation: typeof import('./src/components/Icons/IconLocation.vue')['default']
109
+ IconMagnifyingGlass: typeof import('./src/components/Icons/IconMagnifyingGlass.vue')['default']
110
+ IconMedal: typeof import('./src/components/Icons/IconMedal.vue')['default']
111
+ IconMenu: typeof import('./src/components/Icons/IconMenu.vue')['default']
112
+ IconMinus: typeof import('./src/components/Icons/IconMinus.vue')['default']
113
+ IconMute: typeof import('./src/components/Icons/IconMute.vue')['default']
114
+ IconNext: typeof import('./src/components/Icons/IconNext.vue')['default']
115
+ IconPause: typeof import('./src/components/Icons/IconPause.vue')['default']
116
+ IconPlay: typeof import('./src/components/Icons/IconPlay.vue')['default']
117
+ IconPlus: typeof import('./src/components/Icons/IconPlus.vue')['default']
118
+ IconPrev: typeof import('./src/components/Icons/IconPrev.vue')['default']
119
+ IconRewindTen: typeof import('./src/components/Icons/IconRewindTen.vue')['default']
120
+ IconSearch: typeof import('./src/components/Icons/IconSearch.vue')['default']
121
+ IconShare: typeof import('./src/components/Icons/IconShare.vue')['default']
122
+ IconSlideshow: typeof import('./src/components/Icons/IconSlideshow.vue')['default']
123
+ IconSocialEmail: typeof import('./src/components/Icons/IconSocialEmail.vue')['default']
124
+ IconSocialFacebook: typeof import('./src/components/Icons/IconSocialFacebook.vue')['default']
125
+ IconSocialGoogleClassroom: typeof import('./src/components/Icons/IconSocialGoogleClassroom.vue')['default']
126
+ IconSocialInstagram: typeof import('./src/components/Icons/IconSocialInstagram.vue')['default']
127
+ IconSocialPinterest: typeof import('./src/components/Icons/IconSocialPinterest.vue')['default']
128
+ IconSocialReddit: typeof import('./src/components/Icons/IconSocialReddit.vue')['default']
129
+ IconSocialTwitter: typeof import('./src/components/Icons/IconSocialTwitter.vue')['default']
130
+ IconSocialYoutube: typeof import('./src/components/Icons/IconSocialYoutube.vue')['default']
131
+ IconStop: typeof import('./src/components/Icons/IconStop.vue')['default']
132
+ IconTime: typeof import('./src/components/Icons/IconTime.vue')['default']
133
+ IconUniversity: typeof import('./src/components/Icons/IconUniversity.vue')['default']
134
+ IconUser: typeof import('./src/components/Icons/IconUser.vue')['default']
135
+ IconVolume: typeof import('./src/components/Icons/IconVolume.vue')['default']
136
+ ImageDetailContextImage: typeof import('./src/components/ImageDetailContextImage/ImageDetailContextImage.vue')['default']
137
+ LayoutHelper: typeof import('./src/components/LayoutHelper/LayoutHelper.vue')['default']
138
+ LoadingTransition: typeof import('./src/components/LoadingTransition/LoadingTransition.vue')['default']
139
+ LogoCaltech: typeof import('./src/components/LogoCaltech/LogoCaltech.vue')['default']
140
+ LogoTribrand: typeof import('./src/components/LogoTribrand/LogoTribrand.vue')['default']
141
+ MissionDetailAbout: typeof import('./src/components/MissionDetailAbout/MissionDetailAbout.vue')['default']
142
+ MissionDetailHero: typeof import('./src/components/MissionDetailHero/MissionDetailHero.vue')['default']
143
+ MissionDetailHighlights: typeof import('./src/components/MissionDetailHighlights/MissionDetailHighlights.vue')['default']
144
+ MissionDetailHighlightsCarousel: typeof import('./src/components/MissionDetailHighlights/MissionDetailHighlightsCarousel.vue')['default']
145
+ MissionDetailHighlightsCarouselItem: typeof import('./src/components/MissionDetailHighlights/MissionDetailHighlightsCarouselItem.vue')['default']
146
+ MissionDetailInlineImage: typeof import('./src/components/MissionDetailInlineImage/MissionDetailInlineImage.vue')['default']
147
+ MissionDetailStats: typeof import('./src/components/MissionDetailStats/MissionDetailStats.vue')['default']
148
+ MissionDetailStatsMicro: typeof import('./src/components/MissionDetailStats/MissionDetailStatsMicro.vue')['default']
149
+ MissionDetailStatsMini: typeof import('./src/components/MissionDetailStats/MissionDetailStatsMini.vue')['default']
150
+ MissionDetailStreamfield: typeof import('./src/components/MissionDetailStreamfield/MissionDetailStreamfield.vue')['default']
151
+ MixinAnimationCaret: typeof import('./src/components/MixinAnimationCaret/MixinAnimationCaret.vue')['default']
152
+ MixinCarousel: typeof import('./src/components/MixinCarousel/MixinCarousel.vue')['default']
153
+ MixinDropdownToggle: typeof import('./src/components/MixinDropdownToggle/MixinDropdownToggle.vue')['default']
154
+ MixinFancybox: typeof import('./src/components/MixinFancybox/MixinFancybox.vue')['default']
155
+ MixinFancyboxOpenButton: typeof import('./src/components/MixinFancybox/MixinFancyboxOpenButton.vue')['default']
156
+ MixinVideoBg: typeof import('./src/components/MixinVideoBg/MixinVideoBg.vue')['default']
157
+ NavDesktop: typeof import('./src/components/NavDesktop/NavDesktop.vue')['default']
158
+ NavDesktopDropdown: typeof import('./src/components/NavDesktop/NavDesktopDropdown.vue')['default']
159
+ NavDesktopDropdownContent: typeof import('./src/components/NavDesktop/NavDesktopDropdownContent.vue')['default']
160
+ NavDesktopDropdownMore: typeof import('./src/components/NavDesktop/NavDesktopDropdownMore.vue')['default']
161
+ NavDesktopTopHat: typeof import('./src/components/NavDesktop/NavDesktopTopHat.vue')['default']
162
+ NavHeading: typeof import('./src/components/NavHeading/NavHeading.vue')['default']
163
+ NavHighlight: typeof import('./src/components/NavHighlight/NavHighlight.vue')['default']
164
+ NavLinkList: typeof import('./src/components/NavLinkList/NavLinkList.vue')['default']
165
+ NavLogoLinks: typeof import('./src/components/NavLogoLinks/NavLogoLinks.vue')['default']
166
+ NavMobile: typeof import('./src/components/NavMobile/NavMobile.vue')['default']
167
+ NavMobileDropdown: typeof import('./src/components/NavMobile/NavMobileDropdown.vue')['default']
168
+ NavMobileLink: typeof import('./src/components/NavMobile/NavMobileLink.vue')['default']
169
+ NavMobileSecondaryDropdown: typeof import('./src/components/NavMobile/NavMobileSecondaryDropdown.vue')['default']
170
+ NavSearchForm: typeof import('./src/components/NavSearchForm/NavSearchForm.vue')['default']
171
+ NavSecondary: typeof import('./src/components/NavSecondary/NavSecondary.vue')['default']
172
+ NavSecondaryDropdown: typeof import('./src/components/NavSecondary/NavSecondaryDropdown.vue')['default']
173
+ NavSecondaryDropdownContent: typeof import('./src/components/NavSecondary/NavSecondaryDropdownContent.vue')['default']
174
+ NavSecondaryLink: typeof import('./src/components/NavSecondary/NavSecondaryLink.vue')['default']
175
+ NavSocial: typeof import('./src/components/NavSocial/NavSocial.vue')['default']
176
+ NewsDetailMediaContact: typeof import('./src/components/NewsDetailMediaContact/NewsDetailMediaContact.vue')['default']
177
+ PageContent: typeof import('./src/templates/PageContent/PageContent.vue')['default']
178
+ PageEduNewsDetail: typeof import('./src/templates/edu/PageEduNewsDetail.vue')['default']
179
+ PageEventDetail: typeof import('./src/templates/PageEventDetail/PageEventDetail.vue')['default']
180
+ PageNewsDetail: typeof import('./src/templates/PageNewsDetail/PageNewsDetail.vue')['default']
181
+ ParallaxContainer: typeof import('./src/components/ParallaxContainer/ParallaxContainer.vue')['default']
182
+ ParallaxElement: typeof import('./src/components/ParallaxElement/ParallaxElement.vue')['default']
183
+ PastEventsCarousel: typeof import('./src/components/PastEventsCarousel/PastEventsCarousel.vue')['default']
184
+ PodcastEpisodeCard: typeof import('./src/components/PodcastEpisodeCard/PodcastEpisodeCard.vue')['default']
185
+ PodcastSeriesCarousel: typeof import('./src/components/PodcastSeriesCarousel/PodcastSeriesCarousel.vue')['default']
186
+ ProfileDetailSectionGroup: typeof import('./src/components/ProfileDetailSectionGroup/ProfileDetailSectionGroup.vue')['default']
187
+ RelatedLink: typeof import('./src/components/BlockRelatedLinks/RelatedLink.vue')['default']
188
+ RoboticsDetailStats: typeof import('./src/components/RoboticsDetailStats/RoboticsDetailStats.vue')['default']
189
+ RoboticsDetailStatsMini: typeof import('./src/components/RoboticsDetailStats/RoboticsDetailStatsMini.vue')['default']
190
+ RouterLink: typeof import('vue-router')['RouterLink']
191
+ RouterView: typeof import('vue-router')['RouterView']
192
+ SearchFilterGroup: typeof import('./src/components/SearchFilterGroup/SearchFilterGroup.vue')['default']
193
+ SearchInput: typeof import('./src/components/SearchInput/SearchInput.vue')['default']
194
+ SearchPagination: typeof import('./src/components/SearchPagination/SearchPagination.vue')['default']
195
+ SearchResultCard: typeof import('./src/components/SearchResultCard/SearchResultCard.vue')['default']
196
+ SearchResultGridItem: typeof import('./src/components/SearchResultGridItem/SearchResultGridItem.vue')['default']
197
+ SearchResultsList: typeof import('./src/components/SearchResultsList/SearchResultsList.vue')['default']
198
+ SearchSelectMenu: typeof import('./src/components/SearchSelectMenu/SearchSelectMenu.vue')['default']
199
+ ShareButtons: typeof import('./src/components/ShareButtons/ShareButtons.vue')['default']
200
+ ShareButtonsEdu: typeof import('./src/components/ShareButtonsEdu/ShareButtonsEdu.vue')['default']
201
+ SkipLink: typeof import('./src/components/SkipLink/SkipLink.vue')['default']
202
+ SwimlaneCTA: typeof import('./src/components/SwimlaneCTA/SwimlaneCTA.vue')['default']
203
+ TheFooter: typeof import('./src/components/TheFooter/TheFooter.vue')['default']
204
+ TheFooterSignUp: typeof import('./src/components/TheFooter/TheFooterSignUp.vue')['default']
205
+ ThumbnailCarousel: typeof import('./src/components/ThumbnailCarousel/ThumbnailCarousel.vue')['default']
206
+ TopicDetailMissionCarousel: typeof import('./src/components/TopicDetailMissionCarousel/TopicDetailMissionCarousel.vue')['default']
207
+ TopicDetailMissionCarouselItem: typeof import('./src/components/TopicDetailMissionCarouselItem/TopicDetailMissionCarouselItem.vue')['default']
208
+ TopicDetailMissionSpotlight: typeof import('./src/components/TopicDetailMissionSpotlight/TopicDetailMissionSpotlight.vue')['default']
209
+ TopicDetailMore: typeof import('./src/components/TopicDetailMore/TopicDetailMore.vue')['default']
210
+ TopicDetailMoreItem: typeof import('./src/components/TopicDetailMoreItem/TopicDetailMoreItem.vue')['default']
211
+ TopicDetailMoreVisibility: typeof import('./src/components/TopicDetailMore/TopicDetailMoreVisibility.vue')['default']
212
+ TopicDetailStreamfield: typeof import('./src/components/TopicDetailStreamfield/TopicDetailStreamfield.vue')['default']
213
+ YearTicker: typeof import('./src/components/YearTicker/YearTicker.vue')['default']
214
+ }
215
+ }
package/index.html ADDED
@@ -0,0 +1,18 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="width=device-width, initial-scale=1.0"
8
+ />
9
+ <title>Explorer 1: Vue components</title>
10
+ </head>
11
+ <body>
12
+ <div id="app"></div>
13
+ <script
14
+ type="module"
15
+ src="/src/main.ts"
16
+ ></script>
17
+ </body>
18
+ </html>
package/lib/main.ts ADDED
@@ -0,0 +1,78 @@
1
+ // utils
2
+ import dayjs from './../src/utils/dayjs'
3
+ import filters from './../src/utils/filters'
4
+ import type { Explorer1Theme } from '../src/interfaces'
5
+
6
+ // stores
7
+ import { useHeaderStore } from './../src/store/header'
8
+ import { useThemeStore } from './../src/store/theme'
9
+ // mixins
10
+ import {
11
+ mixinTransparentHeader,
12
+ mixinGetLinkText,
13
+ mixinGetRouterLink,
14
+ mixinUpdateGlobalChildren,
15
+ mixinUpdateSecondary,
16
+ mixinHighlightPrimary,
17
+ mixinIsActivePath,
18
+ mixinGetSrcSet,
19
+ mixinGetExternalLink,
20
+ mixinCanonicalUrl,
21
+ mixinLightboxItems,
22
+ mixinLightboxGalleryItems,
23
+ mixinFormatSplitEventDates,
24
+ mixinFormatEventDates,
25
+ mixinFormatEventTimeInHoursAndMinutes
26
+ } from './../src/utils/mixins'
27
+ // components here
28
+ import BaseButton from './../src/components/BaseButton/BaseButton.vue'
29
+ import BaseHeading from './../src/components/BaseButton/BaseButton.vue'
30
+ import BaseImage from './../src/components/BaseImage/BaseImage.vue'
31
+ import BaseLink from './../src/components/BaseLink/BaseLink.vue'
32
+ import BlockHeading from './../src/components/BlockHeading/BlockHeading.vue'
33
+ import BlockImage from './../src/components/BlockImage/BlockImage.vue'
34
+ import BlockImageFullBleed from './../src/components/BlockImage/BlockImageFullBleed.vue'
35
+ import BlockImageStandard from './../src/components/BlockImage/BlockImageStandard.vue'
36
+ import IconArrows from './../src/components/Icons/IconArrows.vue'
37
+ import IconCaret from './../src/components/Icons/IconCaret.vue'
38
+ import IconLocation from './../src/components/Icons/IconLocation.vue'
39
+ import IconUser from './../src/components/Icons/IconUser.vue'
40
+ import MixinAnimationCaret from './../src/components/MixinAnimationCaret/MixinAnimationCaret.vue'
41
+ import MixinFancybox from './../src/components/MixinFancybox/MixinFancybox.vue'
42
+
43
+ export {
44
+ type Explorer1Theme,
45
+ dayjs,
46
+ filters,
47
+ useHeaderStore,
48
+ useThemeStore,
49
+ mixinTransparentHeader,
50
+ mixinGetLinkText,
51
+ mixinGetRouterLink,
52
+ mixinUpdateGlobalChildren,
53
+ mixinUpdateSecondary,
54
+ mixinHighlightPrimary,
55
+ mixinIsActivePath,
56
+ mixinGetSrcSet,
57
+ mixinGetExternalLink,
58
+ mixinCanonicalUrl,
59
+ mixinLightboxItems,
60
+ mixinLightboxGalleryItems,
61
+ mixinFormatSplitEventDates,
62
+ mixinFormatEventDates,
63
+ mixinFormatEventTimeInHoursAndMinutes,
64
+ BaseButton,
65
+ BaseHeading,
66
+ BaseImage,
67
+ BaseLink,
68
+ BlockHeading,
69
+ BlockImage,
70
+ BlockImageFullBleed,
71
+ BlockImageStandard,
72
+ IconArrows,
73
+ IconCaret,
74
+ IconLocation,
75
+ IconUser,
76
+ MixinAnimationCaret,
77
+ MixinFancybox
78
+ }
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@explorer-1/vue",
3
+ "private": false,
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "author": "DesignLab",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/nasa-jpl/explorer-1"
11
+ },
12
+ "version": "0.0.0",
13
+ "type": "module",
14
+ "prettier": "@explorer-1/prettier-config",
15
+ "dependencies": {
16
+ "@fancyapps/ui": "^4.0.26",
17
+ "@tailwindcss/forms": "^0.5.7",
18
+ "animejs": "^3.2.2",
19
+ "click-outside-vue3": "^4.0.1",
20
+ "datebook": "^8.0.1",
21
+ "dayjs": "^1.11.11",
22
+ "lodash": "^4.17.21",
23
+ "qs": "^6.12.1",
24
+ "sass": "^1.77.4",
25
+ "swiper": "^11.1.3",
26
+ "tailwindcss": "^3.4.3",
27
+ "twitter-widgets": "^2.0.0",
28
+ "vue": "^3.4.21",
29
+ "vue3-compare-image": "^1.2.5"
30
+ },
31
+ "devDependencies": {
32
+ "@vitejs/plugin-vue": "^5.0.4",
33
+ "autoprefixer": "^10.4.19",
34
+ "postcss": "^8.4.38",
35
+ "postcss-import": "^16.1.0",
36
+ "typescript": "^5.2.2",
37
+ "unplugin-vue-components": "^0.27.0",
38
+ "vite": "^5.2.11",
39
+ "vite-plugin-dts": "^3.9.1",
40
+ "vue-tsc": "^2.0.6",
41
+ "@explorer-1/common": "1.0.0",
42
+ "@explorer-1/prettier-config": "1.0.0"
43
+ },
44
+ "scripts": {
45
+ "dev": "pnpm prepare && vite",
46
+ "build": "pnpm prepare && vue-tsc && vite build",
47
+ "lint": "eslint ./src",
48
+ "lint:fix": "eslint ./src --fix",
49
+ "preview": "vite preview",
50
+ "prepare:fonts": "cp -R ./node_modules/@explorer-1/common/src/fonts/ ./src/assets/fonts/",
51
+ "prepare:public": "cp -R ./node_modules/@explorer-1/common/src/public/explorer-1/ ./public/explorer-1",
52
+ "prepare:public:edu": "cp -R ./node_modules/@explorer-1/common/src/public/explorer-1/ ./public/edu/explorer-1"
53
+ }
54
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ plugins: {
3
+ 'postcss-import': {},
4
+ tailwindcss: {},
5
+ autoprefixer: {}
6
+ }
7
+ }
File without changes
Binary file
package/src/App.vue ADDED
@@ -0,0 +1,30 @@
1
+ <template>
2
+ <div class="">
3
+ <base-button variant="secondary"> Button Text </base-button>
4
+ <base-link
5
+ variant="primary"
6
+ href="#"
7
+ >Base Link</base-link
8
+ >
9
+ <base-unit-toggle
10
+ v-slot="slotProps"
11
+ unit-pair="MI_KM"
12
+ :value="14.33"
13
+ :second-value="undefined"
14
+ value-system="imperial"
15
+ >
16
+ <span class="text-stats-xl">{{ slotProps.formattedValue }}</span>
17
+ </base-unit-toggle>
18
+ <block-cta
19
+ :data="{
20
+ heading: 'Heading for CTA',
21
+ text: 'Button',
22
+ page: '',
23
+ externalLink: 'http://www.jpl.nasa.gov'
24
+ }"
25
+ />
26
+ <p class="text-action">Action color</p>
27
+ <p class="text-primary">Primary color</p>
28
+ <p class="text-secondary">Secondary color</p>
29
+ </div>
30
+ </template>
@@ -0,0 +1,12 @@
1
+ # Fonts
2
+
3
+ Place optimized fonts file in this folder. We provide font files as WOFF 2.0 for all modern browsers.
4
+
5
+ - WOFF 2.0 conversion: [woff2](https://github.com/google/woff2)
6
+
7
+ Fonts:
8
+
9
+ - [Metropolis](https://fontsarena.com/metropolis-by-chris-simpson/)
10
+ - [Archivo Narrow](https://fonts.google.com/specimen/Archivo+Narrow)
11
+
12
+ See the styleguide for font usage guidelines.
@@ -0,0 +1 @@
1
+ @import './../../../node_modules/@explorer-1/common/src/scss/styles';