@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
@@ -0,0 +1,26 @@
1
+ <template>
2
+ <svg
3
+ class="IconArrow"
4
+ width="26"
5
+ height="16"
6
+ viewBox="0 0 26 16"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M17.935.929L25.006 8l-7.071 7.071-1.414-1.414L21.177 9H1V7h20.177l-4.656-4.657L17.935.93z"
13
+ fill="currentColor"
14
+ fill-rule="evenodd"
15
+ />
16
+ </svg>
17
+ </template>
18
+ <script lang="ts">
19
+ import { defineComponent } from 'vue'
20
+ export default defineComponent({
21
+ name: 'IconArrow'
22
+ })
23
+ </script>
24
+ <style lang="scss">
25
+ @import '@explorer-1/common/src/scss/components/IconArrow';
26
+ </style>
@@ -0,0 +1,43 @@
1
+ <script lang="ts">
2
+ import { defineComponent } from 'vue'
3
+
4
+ export default defineComponent({
5
+ name: 'IconArrows'
6
+ })
7
+ </script>
8
+ <template>
9
+ <svg
10
+ class="IconArrows"
11
+ width="32"
12
+ height="12"
13
+ viewBox="0 0 32 12"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ aria-hidden="true"
16
+ focusable="false"
17
+ >
18
+ <g
19
+ fill="currentColor"
20
+ fill-rule="evenodd"
21
+ >
22
+ <path
23
+ d="M4 11.657l-.707-.707L8.243 6l-4.95-4.95L4 .343 9.657 6 4 11.657z"
24
+ transform="translate(2)"
25
+ />
26
+ <path
27
+ d="M10 11.657l-.707-.707L14.243 6l-4.95-4.95L10 .343 15.657 6 10 11.657z"
28
+ transform="translate(2)"
29
+ />
30
+ <path
31
+ d="M16 11.657l-.707-.707L20.243 6l-4.95-4.95L16 .343 21.657 6 16 11.657z"
32
+ transform="translate(2)"
33
+ />
34
+ <path
35
+ d="M22 11.657l-.707-.707L26.243 6l-4.95-4.95L22 .343 27.657 6 22 11.657z"
36
+ transform="translate(2)"
37
+ />
38
+ </g>
39
+ </svg>
40
+ </template>
41
+ <style lang="scss">
42
+ @import '@explorer-1/common/src/scss/components/IconArrows';
43
+ </style>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <svg
3
+ class="IconAudio"
4
+ width="60"
5
+ height="60"
6
+ viewBox="0 0 60 60"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M22 29v2a8 8 0 1016 0v-2h2v2c0 5.185-3.946 9.448-8.999 9.95L31 46h4v2H25v-2h4v-5.05c-4.962-.492-8.857-4.612-8.996-9.67L20 31v-2h2zm2-8l.004-.225A6 6 0 0136 21v10a6 6 0 11-12 0V21z"
13
+ fill="currentColor"
14
+ fill-rule="evenodd"
15
+ />
16
+ </svg>
17
+ </template>
18
+
19
+ <script lang="ts">
20
+ import { defineComponent } from 'vue'
21
+ export default defineComponent({
22
+ name: 'IconAudio'
23
+ })
24
+ </script>
25
+ <style lang="scss">
26
+ @import '@explorer-1/common/src/scss/components/IconAudio';
27
+ </style>
@@ -0,0 +1,21 @@
1
+ <!-- Source: https://fontawesome.com/icons/book?f=classic&s=light -->
2
+ <template>
3
+ <svg
4
+ aria-hidden="true"
5
+ focusable="false"
6
+ width="34"
7
+ height="34"
8
+ viewBox="0 0 34 34"
9
+ class="IconBook"
10
+ >
11
+ <path
12
+ d="M28.813 22.781c0 1.108-.739 2.057-1.688 2.426v3.48h.844c.422 0 .843.422.843.844 0 .475-.421.844-.843.844H8.562c-1.898 0-3.374-1.477-3.374-3.375V7.594a4.197 4.197 0 0 1 4.218-4.219h16.875c1.371 0 2.532 1.16 2.532 2.531v16.875ZM6.875 7.594V24.1c.475-.264 1.055-.475 1.688-.475h1.687V5.062h-.844a2.532 2.532 0 0 0-2.531 2.532Zm18.563 21.093v-3.375H8.563A1.7 1.7 0 0 0 6.875 27c0 .95.738 1.688 1.688 1.688h16.874Zm.843-5.062c.422 0 .844-.37.844-.844V5.906c0-.422-.422-.843-.844-.843H11.938v18.562H26.28Zm-2.531-13.5c.422 0 .844.422.844.844 0 .474-.422.844-.844.844h-8.438a.833.833 0 0 1-.843-.844c0-.422.369-.844.844-.844h8.437Zm0 5.063c.422 0 .844.421.844.843 0 .475-.422.844-.844.844h-8.438a.833.833 0 0 1-.843-.844c0-.422.369-.843.844-.843h8.437Z"
13
+ />
14
+ </svg>
15
+ </template>
16
+ <script lang="ts">
17
+ import { defineComponent } from 'vue'
18
+ export default defineComponent({
19
+ name: 'IconBook'
20
+ })
21
+ </script>
@@ -0,0 +1,21 @@
1
+ <!-- Source: https://fontawesome.com/icons/book-user?f=classic&s=light -->
2
+ <template>
3
+ <svg
4
+ aria-hidden="true"
5
+ focusable="false"
6
+ width="34"
7
+ height="34"
8
+ viewBox="0 0 34 34"
9
+ class="IconBookUser"
10
+ >
11
+ <path
12
+ d="M28.813 22.781c0 1.108-.739 2.057-1.688 2.426v3.48h.844c.422 0 .843.422.843.844 0 .475-.421.844-.843.844H8.562c-1.898 0-3.374-1.477-3.374-3.375V7.594a4.197 4.197 0 0 1 4.218-4.219h16.875c1.371 0 2.532 1.16 2.532 2.531v16.875Zm-3.375 5.907v-3.375H8.563A1.7 1.7 0 0 0 6.875 27c0 .95.738 1.688 1.688 1.688h16.874Zm.843-5.063c.422 0 .844-.37.844-.844V5.906c0-.422-.422-.843-.844-.843H9.406a2.532 2.532 0 0 0-2.531 2.53V24.1c.475-.264 1.055-.475 1.688-.475H26.28Zm-7.593-7.594a4.231 4.231 0 0 1 4.218 4.219c0 .475-.422.844-.843.844a.833.833 0 0 1-.844-.844c0-1.371-1.16-2.531-2.532-2.531h-3.375a2.532 2.532 0 0 0-2.53 2.531c0 .475-.423.844-.845.844a.833.833 0 0 1-.843-.844 4.197 4.197 0 0 1 4.219-4.219h3.374ZM17 14.344c-1.898 0-3.375-1.477-3.375-3.375A3.365 3.365 0 0 1 17 7.594c1.846 0 3.375 1.529 3.375 3.375A3.365 3.365 0 0 1 17 14.344Zm0-5.063a1.7 1.7 0 0 0-1.688 1.688c0 .949.739 1.687 1.688 1.687a1.7 1.7 0 0 0 1.688-1.687c0-.897-.791-1.688-1.688-1.688Z"
13
+ />
14
+ </svg>
15
+ </template>
16
+ <script lang="ts">
17
+ import { defineComponent } from 'vue'
18
+ export default defineComponent({
19
+ name: 'IconBookUser'
20
+ })
21
+ </script>
@@ -0,0 +1,21 @@
1
+ <!-- Source: https://fontawesome.com/icons/briefcase?f=classic&s=light -->
2
+ <template>
3
+ <svg
4
+ aria-hidden="true"
5
+ focusable="false"
6
+ width="34"
7
+ height="34"
8
+ viewBox="0 0 34 34"
9
+ class="IconBriefcase"
10
+ >
11
+ <path
12
+ d="M27.625 8.438c1.846 0 3.375 1.529 3.375 3.374v13.5a3.365 3.365 0 0 1-3.375 3.375H7.375C5.477 28.688 4 27.212 4 25.313v-13.5a3.365 3.365 0 0 1 3.375-3.374h3.375V5.905a2.532 2.532 0 0 1 2.531-2.531h8.438c1.37 0 2.531 1.16 2.531 2.531v2.532h3.375ZM12.437 5.905v2.532h10.126V5.905c0-.422-.422-.843-.844-.843H13.28c-.474 0-.844.421-.844.843Zm16.876 19.407v-6.75h-7.594v3.375c0 .474-.422.843-.844.843h-6.75a.833.833 0 0 1-.844-.843v-3.375H5.687v6.75c0 .949.739 1.687 1.688 1.687h20.25a1.7 1.7 0 0 0 1.688-1.688Zm-14.344-4.22h5.062v-2.53H14.97v2.53Zm14.344-4.218v-5.063c0-.896-.791-1.687-1.688-1.687H7.375a1.7 1.7 0 0 0-1.688 1.688v5.062h23.625Z"
13
+ />
14
+ </svg>
15
+ </template>
16
+ <script lang="ts">
17
+ import { defineComponent } from 'vue'
18
+ export default defineComponent({
19
+ name: 'IconBriefcase'
20
+ })
21
+ </script>
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg
3
+ class="IconCalendar"
4
+ width="20"
5
+ height="19"
6
+ viewBox="0 0 20 19"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M7 0v2h6V0h2v2h5v17H0V2h5V0h2zm11 9H2v8h16V9zM5 4H2v3h16V4h-3v2h-2V4H7v2H5V4z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+ <script lang="ts">
18
+ import { defineComponent } from 'vue'
19
+ export default defineComponent({
20
+ name: 'IconCalendar'
21
+ })
22
+ </script>
23
+ <style lang="scss">
24
+ @import '@explorer-1/common/src/scss/components/IconCalendar';
25
+ </style>
@@ -0,0 +1,26 @@
1
+ <script lang="ts">
2
+ import { defineComponent } from 'vue'
3
+
4
+ export default defineComponent({
5
+ name: 'IconCaret'
6
+ })
7
+ </script>
8
+ <template>
9
+ <svg
10
+ class="IconCaret"
11
+ width="8"
12
+ height="14"
13
+ viewBox="0 0 8 14"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ aria-hidden="true"
16
+ focusable="false"
17
+ >
18
+ <path
19
+ d="M7.864 7.004L1.5 13.368.086 11.954l4.948-4.95-4.948-4.95L1.5.64l6.364 6.364z"
20
+ fill="currentColor"
21
+ />
22
+ </svg>
23
+ </template>
24
+ <style lang="scss">
25
+ @import '@explorer-1/common/src/scss/components/IconCaret';
26
+ </style>
@@ -0,0 +1,26 @@
1
+ <template>
2
+ <svg
3
+ class="IconCheckbox"
4
+ width="22"
5
+ height="22"
6
+ viewBox="0 0 22 22"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ stroke="currentColor"
13
+ fill="none"
14
+ d="M0.5 0.5H21.5V21.5H0.5z"
15
+ />
16
+ </svg>
17
+ </template>
18
+ <script lang="ts">
19
+ import { defineComponent } from 'vue'
20
+ export default defineComponent({
21
+ name: 'IconCheckbox'
22
+ })
23
+ </script>
24
+ <style lang="scss">
25
+ @import '@explorer-1/common/src/scss/components/IconCheckbox';
26
+ </style>
@@ -0,0 +1,35 @@
1
+ <template>
2
+ <svg
3
+ class="IconCheckboxSelected"
4
+ width="22"
5
+ height="22"
6
+ viewBox="0 0 22 22"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <g
12
+ fill="none"
13
+ fill-rule="evenodd"
14
+ >
15
+ <path
16
+ fill="currentColor"
17
+ fill-rule="nonzero"
18
+ d="M0 0H22V22H0z"
19
+ />
20
+ <path
21
+ d="M9.732 15.718l-4.95-4.95 1.415-1.414 3.535 3.535 7.071-7.071 1.415 1.414-8.486 8.486z"
22
+ fill="#FFF"
23
+ />
24
+ </g>
25
+ </svg>
26
+ </template>
27
+ <script lang="ts">
28
+ import { defineComponent } from 'vue'
29
+ export default defineComponent({
30
+ name: 'IconCheckboxSelected'
31
+ })
32
+ </script>
33
+ <style lang="scss">
34
+ @import '@explorer-1/common/src/scss/components/IconCheckboxSelected';
35
+ </style>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <svg
3
+ class="IconClose"
4
+ width="24"
5
+ height="24"
6
+ viewBox="0 0 24 24"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M21.192-.02l2.829 2.828L14.828 12l9.193 9.192-2.829 2.829L12 14.828l-9.192 9.193-2.829-2.829L9.172 12-.02 2.808 2.808-.021 12 9.172 21.192-.02z"
13
+ fill="currentColor"
14
+ fill-rule="evenodd"
15
+ />
16
+ </svg>
17
+ </template>
18
+
19
+ <script lang="ts">
20
+ import { defineComponent } from 'vue'
21
+ export default defineComponent({
22
+ name: 'IconClose'
23
+ })
24
+ </script>
25
+ <style lang="scss">
26
+ @import '@explorer-1/common/src/scss/components/IconClose';
27
+ </style>
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg
3
+ class="IconCloseLightbox"
4
+ viewBox="0 0 24 24"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ aria-hidden="true"
7
+ focusable="false"
8
+ >
9
+ <path
10
+ d="M12 10.6L6.6 5.2 5.2 6.6l5.4 5.4-5.4 5.4 1.4 1.4 5.4-5.4 5.4 5.4 1.4-1.4-5.4-5.4 5.4-5.4-1.4-1.4-5.4 5.4z"
11
+ fill="currentColor"
12
+ fill-rule="evenodd"
13
+ />
14
+ </svg>
15
+ </template>
16
+
17
+ <script lang="ts">
18
+ import { defineComponent } from 'vue'
19
+ export default defineComponent({
20
+ name: 'IconCloseLightbox'
21
+ })
22
+ </script>
23
+ <style lang="scss">
24
+ @import '@explorer-1/common/src/scss/components/IconCloseLightbox';
25
+ </style>
@@ -0,0 +1,31 @@
1
+ <template>
2
+ <svg
3
+ class="IconDownload"
4
+ width="24"
5
+ height="24"
6
+ viewBox="0 0 24 24"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <g
12
+ fill="none"
13
+ fill-rule="evenodd"
14
+ >
15
+ <path
16
+ d="M2 16v6h20v-6h2v8H0v-8h2zM13.003 0v14.245l4.657-4.656 1.414 1.414-7.071 7.071-7.071-7.071 1.414-1.414 4.657 4.656V0h2z"
17
+ fill="currentColor"
18
+ fill-rule="nonzero"
19
+ />
20
+ </g>
21
+ </svg>
22
+ </template>
23
+ <script lang="ts">
24
+ import { defineComponent } from 'vue'
25
+ export default defineComponent({
26
+ name: 'IconDownload'
27
+ })
28
+ </script>
29
+ <style lang="scss">
30
+ @import '@explorer-1/common/src/scss/components/IconDownload';
31
+ </style>
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg
3
+ class="IconDropdown"
4
+ width="12"
5
+ height="8"
6
+ viewBox="0 0 12 8"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M.343 2L1.757.586 6 4.828 10.243.586 11.657 2 6 7.657.343 2z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+ <script lang="ts">
18
+ import { defineComponent } from 'vue'
19
+ export default defineComponent({
20
+ name: 'IconDropdown'
21
+ })
22
+ </script>
23
+ <style lang="scss">
24
+ @import '@explorer-1/common/src/scss/components/IconDropdown';
25
+ </style>
@@ -0,0 +1,21 @@
1
+ <!-- Source: https://fontawesome.com/icons/envelope?f=classic&s=light -->
2
+ <template>
3
+ <svg
4
+ aria-hidden="true"
5
+ focusable="false"
6
+ width="34"
7
+ height="34"
8
+ viewBox="0 0 34 34"
9
+ class="IconEnvelope"
10
+ >
11
+ <path
12
+ d="M7.375 8.438a1.7 1.7 0 0 0-1.688 1.687v2.11l10.284 7.593c.896.633 2.11.633 3.006 0l10.335-7.594v-2.109c0-.896-.79-1.688-1.687-1.688H7.375Zm-1.688 5.906v9.281c0 .95.739 1.688 1.688 1.688h20.25a1.7 1.7 0 0 0 1.688-1.688v-9.281l-9.334 6.855c-1.477 1.055-3.534 1.055-5.01 0l-9.281-6.855ZM4 10.125A3.365 3.365 0 0 1 7.375 6.75h20.25C29.471 6.75 31 8.28 31 10.125v13.5A3.365 3.365 0 0 1 27.625 27H7.375C5.477 27 4 25.523 4 23.625v-13.5Z"
13
+ />
14
+ </svg>
15
+ </template>
16
+ <script lang="ts">
17
+ import { defineComponent } from 'vue'
18
+ export default defineComponent({
19
+ name: 'IconEnvelope'
20
+ })
21
+ </script>
@@ -0,0 +1,28 @@
1
+ <script lang="ts">
2
+ import { defineComponent } from 'vue'
3
+
4
+ export default defineComponent({
5
+ name: 'IconExpand'
6
+ })
7
+ </script>
8
+ <template>
9
+ <svg
10
+ class="IconExpand"
11
+ width="60"
12
+ height="60"
13
+ viewBox="0 0 60 60"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ aria-hidden="true"
16
+ focusable="false"
17
+ >
18
+ <path
19
+ d="M48 37v11H37v-2h9v-9h2zm-34 0v9h9v2H12V37h2zm9-25v2h-9v9h-2V12h11zm25 0v11h-2v-9h-9v-2h11z"
20
+ fill="currentColor"
21
+ fill-rule="evenodd"
22
+ />
23
+ </svg>
24
+ </template>
25
+
26
+ <style lang="scss">
27
+ @import '@explorer-1/common/src/scss/components/IconExpand';
28
+ </style>
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg
3
+ class="IconExternal"
4
+ width="18"
5
+ height="18"
6
+ viewBox="0 0 18 18"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M7 2v2H2v12h12v-5h2v7H0V2h7zm11-2v8h-2V3.413l-8.243 8.244-1.414-1.414L14.585 2H10V0h8z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+ <script lang="ts">
18
+ import { defineComponent } from 'vue'
19
+ export default defineComponent({
20
+ name: 'IconExternal'
21
+ })
22
+ </script>
23
+ <style lang="scss">
24
+ @import '@explorer-1/common/src/scss/components/IconExternal';
25
+ </style>
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg
3
+ class="IconFilter"
4
+ width="18"
5
+ height="18"
6
+ viewBox="0 0 18 18"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M5 12c1.306 0 2.418.835 2.83 2H18v2H7.829a3.001 3.001 0 01-5.658 0H0v-2h2.17A3.001 3.001 0 015 12zm0 2a1 1 0 100 2 1 1 0 000-2zm8-8c1.306 0 2.418.835 2.83 2H18v2h-2.171a3.001 3.001 0 01-5.658 0H0V8h10.17A3.001 3.001 0 0113 6zm0 2a1 1 0 100 2 1 1 0 000-2zM7 0c1.306 0 2.418.835 2.83 2H18v2H9.829a3.001 3.001 0 01-5.658 0H0V2h4.17A3.001 3.001 0 017 0zm0 2a1 1 0 100 2 1 1 0 000-2z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+ <script lang="ts">
18
+ import { defineComponent } from 'vue'
19
+ export default defineComponent({
20
+ name: 'IconFilter'
21
+ })
22
+ </script>
23
+ <style lang="scss">
24
+ @import '@explorer-1/common/src/scss/components/IconFilter';
25
+ </style>
@@ -0,0 +1,38 @@
1
+ <template>
2
+ <svg
3
+ class="IconForwardTen"
4
+ width="30"
5
+ height="35"
6
+ viewBox="0 0 30 35"
7
+ fill="none"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ aria-hidden="true"
10
+ focusable="false"
11
+ >
12
+ <path
13
+ d="M9.41854 27.1118H11.7865V16.1198H9.89854L6.60254 18.3278L7.54654 19.9918L9.41854 18.8238V27.1118Z"
14
+ fill="currentColor"
15
+ fill-rule="evenodd"
16
+ />
17
+ <path
18
+ d="M18.6672 27.3038C21.5632 27.3038 23.6112 24.9518 23.6112 21.6078C23.6112 18.2798 21.5632 15.9278 18.6672 15.9278C15.7712 15.9278 13.7392 18.2798 13.7392 21.6078C13.7392 24.9518 15.7712 27.3038 18.6672 27.3038ZM18.6672 25.1598C17.1952 25.1598 16.1552 23.6718 16.1552 21.6078C16.1552 19.5438 17.1952 18.0718 18.6672 18.0718C20.1552 18.0718 21.1792 19.5438 21.1792 21.6078C21.1792 23.6718 20.1552 25.1598 18.6672 25.1598Z"
19
+ fill="currentColor"
20
+ fill-rule="evenodd"
21
+ />
22
+ <path
23
+ d="M14.6897 0.184982L14.2786 0.596053C13.9909 0.883802 14.032 1.33598 14.2786 1.58262L18.8415 6.14551C14.032 4.9534 8.68805 6.18662 4.98841 9.96847C-0.643259 15.6001 -0.602151 24.767 5.02952 30.3165C10.6612 35.9481 19.7459 35.907 25.3775 30.2754C27.9673 27.6856 29.406 24.2737 29.6116 20.8618C29.6116 20.4508 29.2827 20.1219 28.8716 20.1219H28.2961C27.9673 20.1219 27.5973 20.4097 27.6384 20.7796C27.474 23.7393 26.2408 26.6168 23.9799 28.8777C19.1292 33.7284 11.2778 33.7695 6.38605 28.8777C1.57652 24.0682 1.49431 16.1756 6.38605 11.2839C9.75683 7.91311 14.6897 6.92654 18.9648 8.24197L14.2786 12.9282C13.9909 13.2159 14.032 13.6681 14.2786 13.9147L14.6897 14.3258C14.9774 14.6136 15.3885 14.6136 15.6763 14.3258L22.2534 7.74868C22.5 7.50204 22.5411 7.04986 22.2534 6.76211L15.6763 0.184982C15.4296 -0.0616606 14.9363 -0.0616606 14.6897 0.184982Z"
24
+ fill="currentColor"
25
+ fill-rule="evenodd"
26
+ />
27
+ </svg>
28
+ </template>
29
+
30
+ <script lang="ts">
31
+ import { defineComponent } from 'vue'
32
+ export default defineComponent({
33
+ name: 'IconForwardTen'
34
+ })
35
+ </script>
36
+ <style lang="scss">
37
+ // @import '@explorer-1/common/src/scss/components/IconForwardTen';
38
+ </style>
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg
3
+ class="IconGrid"
4
+ width="22"
5
+ height="22"
6
+ viewBox="0 0 22 22"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M9 11v9H0v-9h9zm11 0v9h-9v-9h9zM7 13H2v5h5v-5zm11 0h-5v5h5v-5zM9 0v9H0V0h9zm11 0v9h-9V0h9zM7 2H2v5h5V2zm11 0h-5v5h5V2z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+ <script lang="ts">
18
+ import { defineComponent } from 'vue'
19
+ export default defineComponent({
20
+ name: 'IconGrid'
21
+ })
22
+ </script>
23
+ <style lang="scss">
24
+ @import '@explorer-1/common/src/scss/components/IconGrid';
25
+ </style>
@@ -0,0 +1,21 @@
1
+ <!-- Source: https://fontawesome.com/icons/hand-holding-seedling?f=classic&s=light -->
2
+ <template>
3
+ <svg
4
+ aria-hidden="true"
5
+ focusable="false"
6
+ width="34"
7
+ height="34"
8
+ viewBox="0 0 34 34"
9
+ class="IconHand"
10
+ >
11
+ <path
12
+ d="M15.39 13.5c-4.43 0-8.015-4.166-8.015-9.281 0-.422.37-.844.844-.844h2.056c3.165 0 5.907 2.162 7.225 5.22 1.318-3.058 4.008-5.22 7.172-5.22h2.11c.421 0 .843.422.843.844 0 5.115-3.639 9.281-8.068 9.281h-1.213v2.531c0 .475-.422.844-.844.844a.833.833 0 0 1-.844-.844V13.5h-1.265Zm9.282-8.438c-3.27 0-5.96 3.006-6.328 6.75h1.213c3.27 0 5.959-2.953 6.328-6.75h-1.213Zm-14.397 0H9.062c.37 3.797 3.06 6.75 6.329 6.75h1.213c-.37-3.744-3.06-6.75-6.329-6.75Zm21.463 15.926c.58.58.95 1.371.844 2.162 0 .844-.37 1.635-1.002 2.11l-5.326 4.271a3.92 3.92 0 0 1-2.479.844H3.104c-.422 0-.792-.422-.792-.844 0-.474.37-.843.844-.843h20.62c.527 0 1.001-.211 1.423-.528l5.326-4.219a1.119 1.119 0 0 0 0-1.74 1.003 1.003 0 0 0-.685-.264c-.264 0-.58.106-.791.264l-3.27 2.584c-.369.317-.896.527-1.37.527h-9.493c-.475 0-.844-.421-.844-.843 0-.475.37-.844.844-.844h4.64c.686 0 1.266-.58 1.266-1.266a1.25 1.25 0 0 0-1.265-1.265h-7.752c-.739 0-1.424.21-2.057.633l-2.426 1.898H3.104c-.422 0-.792-.37-.792-.844 0-.422.37-.843.844-.843h3.639l2.004-1.477c.949-.686 1.951-1.055 3.058-1.055h7.594c1.477 0 2.848 1.055 3.059 2.532.105.632 0 1.212-.264 1.687h2.215c.105 0 .264 0 .37-.105l3.216-2.584a2.902 2.902 0 0 1 1.846-.633c.685 0 1.318.21 1.845.685Z"
13
+ />
14
+ </svg>
15
+ </template>
16
+ <script lang="ts">
17
+ import { defineComponent } from 'vue'
18
+ export default defineComponent({
19
+ name: 'IconHand'
20
+ })
21
+ </script>
@@ -0,0 +1,26 @@
1
+ <template>
2
+ <svg
3
+ class="IconInfo"
4
+ width="10"
5
+ height="22"
6
+ viewBox="0 0 10 22"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M7 8v12h3v2H0v-2h3V10H0V8h7zM5 0a2.5 2.5 0 110 5 2.5 2.5 0 010-5z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+
18
+ <script lang="ts">
19
+ import { defineComponent } from 'vue'
20
+ export default defineComponent({
21
+ name: 'IconInfo'
22
+ })
23
+ </script>
24
+ <style lang="scss">
25
+ @import '@explorer-1/common/src/scss/components/IconInfo';
26
+ </style>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <svg
3
+ class="IconLink"
4
+ width="22"
5
+ height="23"
6
+ viewBox="0 0 22 23"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ fill-rule="evenodd"
13
+ clip-rule="evenodd"
14
+ d="M18.9852 3.598C18.6369 3.24968 18.2235 2.97336 17.7685 2.78485C17.3134 2.59633 16.8257 2.4993 16.3332 2.4993C15.8406 2.4993 15.3529 2.59633 14.8979 2.78485C14.4429 2.97336 14.0294 3.24968 13.6812 3.598L9.18118 8.098C8.75664 8.52217 8.4401 9.04203 8.25816 9.61391C8.07621 10.1858 8.03418 10.793 8.13559 11.3845C8.23699 11.976 8.47888 12.5345 8.84093 13.0131C9.20297 13.4917 9.67459 13.8765 10.2162 14.135C10.3895 14.2243 10.5212 14.3776 10.5834 14.5624C10.6456 14.7472 10.6334 14.9489 10.5494 15.1248C10.4654 15.3008 10.3162 15.4371 10.1334 15.5049C9.95061 15.5727 9.74859 15.5666 9.57018 15.488C8.81229 15.126 8.15232 14.5874 7.64569 13.9175C7.13906 13.2476 6.80056 12.4659 6.6586 11.638C6.51665 10.8102 6.57538 9.9604 6.82988 9.15997C7.08437 8.35953 7.5272 7.63184 8.12118 7.038L12.6212 2.538C13.1063 2.04013 13.6855 1.64357 14.3251 1.37133C14.9648 1.09909 15.6521 0.956586 16.3472 0.952089C17.0424 0.947593 17.7315 1.08119 18.3746 1.34514C19.0177 1.60909 19.602 1.99812 20.0935 2.48967C20.5851 2.98122 20.9741 3.56549 21.238 4.20859C21.502 4.85168 21.6356 5.5408 21.6311 6.23594C21.6266 6.93108 21.4841 7.6184 21.2118 8.25803C20.9396 8.89766 20.543 9.47685 20.0452 9.962L18.2882 11.719C18.2195 11.7927 18.1367 11.8518 18.0447 11.8928C17.9527 11.9338 17.8534 11.9558 17.7527 11.9576C17.652 11.9594 17.552 11.9408 17.4586 11.9031C17.3652 11.8654 17.2804 11.8093 17.2091 11.738C17.1379 11.6668 17.0818 11.582 17.0441 11.4886C17.0063 11.3952 16.9878 11.2952 16.9896 11.1945C16.9914 11.0938 17.0134 10.9945 17.0544 10.9025C17.0954 10.8105 17.1545 10.7277 17.2282 10.659L18.9852 8.902C19.3335 8.55377 19.6098 8.14033 19.7983 7.68529C19.9868 7.23026 20.0839 6.74254 20.0839 6.25C20.0839 5.75746 19.9868 5.26974 19.7983 4.81471C19.6098 4.35967 19.3335 3.94623 18.9852 3.598ZM11.5962 7.865C11.682 7.68561 11.8356 7.54764 12.0231 7.48144C12.2106 7.41525 12.4168 7.42624 12.5962 7.512C13.3541 7.87403 14.014 8.41261 14.5207 9.08252C15.0273 9.75244 15.3658 10.5341 15.5078 11.362C15.6497 12.1898 15.591 13.0396 15.3365 13.84C15.082 14.6405 14.6392 15.3682 14.0452 15.962L9.54518 20.462C9.06003 20.9599 8.48083 21.3564 7.84121 21.6287C7.20158 21.9009 6.51425 22.0434 5.81911 22.0479C5.12397 22.0524 4.43486 21.9188 3.79176 21.6549C3.14867 21.3909 2.56439 21.0019 2.07285 20.5103C1.5813 20.0188 1.19226 19.4345 0.928317 18.7914C0.664371 18.1483 0.53077 17.4592 0.535266 16.7641C0.539762 16.0689 0.682266 15.3816 0.954509 14.742C1.22675 14.1023 1.62331 13.5232 2.12118 13.038L3.87818 11.281C3.94684 11.2073 4.02964 11.1482 4.12164 11.1072C4.21364 11.0662 4.31295 11.0442 4.41365 11.0424C4.51436 11.0406 4.61439 11.0592 4.70777 11.0969C4.80116 11.1346 4.886 11.1907 4.95722 11.262C5.02843 11.3332 5.08458 11.418 5.1223 11.5114C5.16002 11.6048 5.17855 11.7048 5.17677 11.8055C5.17499 11.9062 5.15295 12.0055 5.11196 12.0975C5.07097 12.1895 5.01186 12.2723 4.93818 12.341L3.18118 14.098C2.83291 14.4463 2.55665 14.8597 2.36817 15.3147C2.17969 15.7698 2.08268 16.2575 2.08268 16.75C2.08268 17.2425 2.17969 17.7302 2.36817 18.1853C2.55665 18.6403 2.83291 19.0537 3.18118 19.402C3.52944 19.7503 3.94289 20.0265 4.39792 20.215C4.85296 20.4035 5.34066 20.5005 5.83318 20.5005C6.3257 20.5005 6.8134 20.4035 7.26843 20.215C7.72346 20.0265 8.13691 19.7503 8.48518 19.402L12.9852 14.902C13.4097 14.4778 13.7263 13.958 13.9082 13.3861C14.0901 12.8142 14.1322 12.207 14.0308 11.6155C13.9294 11.024 13.6875 10.4655 13.3254 9.98689C12.9634 9.50827 12.4918 9.12353 11.9502 8.865C11.8613 8.82259 11.7816 8.76309 11.7157 8.68988C11.6497 8.61667 11.5989 8.53119 11.566 8.43833C11.5332 8.34547 11.5189 8.24704 11.5241 8.14867C11.5292 8.05029 11.5537 7.9539 11.5962 7.865Z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ </template>
19
+ <script lang="ts">
20
+ import { defineComponent } from 'vue'
21
+ export default defineComponent({
22
+ name: 'IconLink'
23
+ })
24
+ </script>
25
+ <style lang="scss">
26
+ @import '@explorer-1/common/src/scss/components/IconLink';
27
+ </style>