@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,25 @@
1
+ <template>
2
+ <svg
3
+ class="IconSocialTwitter"
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="M14.2,10.2L23,0h-2.1l-7.6,8.8L7.3,0h-7l9.2,13.3L0.3,24h2.1l8-9.3l6.4,9.3h7L14.2,10.2L14.2,10.2z M11.4,13.5 l-0.9-1.3L3.1,1.6h3.2l6,8.5l0.9,1.3l7.8,11.1h-3.2L11.4,13.5L11.4,13.5z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+ <script lang="ts">
18
+ import { defineComponent } from 'vue'
19
+ export default defineComponent({
20
+ name: 'IconSocialTwitter'
21
+ })
22
+ </script>
23
+ <style lang="scss">
24
+ @import '@explorer-1/common/src/scss/components/IconSocialTwitter';
25
+ </style>
@@ -0,0 +1,35 @@
1
+ <template>
2
+ <svg
3
+ class="IconSocialYoutube"
4
+ width="24"
5
+ height="16"
6
+ viewBox="0 0 24 16"
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="M0 0H24V24H0z"
17
+ transform="translate(0 -4)"
18
+ />
19
+ <path
20
+ d="M12.239 4l.1.001.248.001c.88.006 2.62.025 4.352.089l.546.021c1.632.07 3.175.183 3.892.366 1.032.262 1.845 1.037 2.121 2.02.455 1.616.498 4.822.502 5.409v.186c-.004.587-.047 3.793-.502 5.409-.276.983-1.089 1.758-2.121 2.02-1.713.437-8.14.475-9.222.478h-.31c-1.082-.003-7.51-.04-9.222-.478-1.032-.262-1.845-1.037-2.121-2.02-.44-1.56-.494-4.603-.501-5.339v-.326c.007-.737.062-3.779.5-5.339.277-.983 1.09-1.758 2.122-2.02.797-.204 2.613-.32 4.437-.387l.547-.02c1.543-.048 3.019-.064 3.805-.069l.248-.001h.1zM10 8.5v7l6-3.5-6-3.5z"
21
+ fill="currentColor"
22
+ transform="translate(0 -4)"
23
+ />
24
+ </g>
25
+ </svg>
26
+ </template>
27
+ <script lang="ts">
28
+ import { defineComponent } from 'vue'
29
+ export default defineComponent({
30
+ name: 'IconSocialYoutube'
31
+ })
32
+ </script>
33
+ <style lang="scss">
34
+ @import '@explorer-1/common/src/scss/components/IconSocialYoutube';
35
+ </style>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <svg
3
+ class="IconStop"
4
+ width="60"
5
+ height="60"
6
+ viewBox="0 0 185 185"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fill-rule="evenodd"
14
+ d="M0,0h185v185H0V0z"
15
+ />
16
+ </svg>
17
+ </template>
18
+
19
+ <script lang="ts">
20
+ import { defineComponent } from 'vue'
21
+ export default defineComponent({
22
+ name: 'IconStop'
23
+ })
24
+ </script>
25
+ <style lang="scss">
26
+ @import '@explorer-1/common/src/scss/components/IconStop';
27
+ </style>
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg
3
+ class="IconTime"
4
+ width="20"
5
+ height="20"
6
+ viewBox="0 0 20 20"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0zm0 2a8 8 0 100 16 8 8 0 000-16zm1 2v6.185l2.596 2.597-1.414 1.414L9 11.014 9.013 11H9V4h2z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+ <script lang="ts">
18
+ import { defineComponent } from 'vue'
19
+ export default defineComponent({
20
+ name: 'IconTime'
21
+ })
22
+ </script>
23
+ <style lang="scss">
24
+ @import '@explorer-1/common/src/scss/components/IconTime';
25
+ </style>
@@ -0,0 +1,21 @@
1
+ <!-- Source: https://fontawesome.com/icons/university?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="IconUniversity"
10
+ >
11
+ <path
12
+ d="M30.156 10.441c.475.317.844.844.844 1.424 0 .897-.738 1.635-1.688 1.635H5.636C4.685 13.5 4 12.762 4 11.865c0-.58.316-1.107.791-1.424l12.287-6.908a.718.718 0 0 1 .791 0l12.287 6.908Zm-1.002 1.371L17.5 5.221 5.793 11.812h9.017c-.21-.369-.263-.79-.263-1.265 0-1.582 1.318-2.953 2.953-2.953 1.582 0 2.953 1.37 2.953 2.953 0 .474-.105.896-.316 1.265h9.017Zm-11.654 0a1.25 1.25 0 0 0 1.266-1.265c0-.686-.58-1.266-1.266-1.266a1.25 1.25 0 0 0-1.266 1.266c0 .738.528 1.265 1.266 1.265ZM7.375 15.188h1.688v6.75h4.218v-6.75h1.688v6.75h5.062v-6.75h1.688v6.75h4.218v-6.75h1.688v6.75c.422 0 .844.421.844.843 0 .475-.422.844-.844.844H7.375a.833.833 0 0 1-.844-.844c0-.422.37-.843.844-.843v-6.75Zm21.516 10.124c.422 0 .843.422.843.844 0 .475-.422.844-.843.844H6.109a.833.833 0 0 1-.843-.844c0-.422.369-.843.843-.843h22.782Zm1.265 3.375c.422 0 .844.422.844.844 0 .475-.422.844-.844.844H4.844A.833.833 0 0 1 4 29.531c0-.422.37-.843.844-.843h25.312Z"
13
+ />
14
+ </svg>
15
+ </template>
16
+ <script lang="ts">
17
+ import { defineComponent } from 'vue'
18
+ export default defineComponent({
19
+ name: 'IconUniversity'
20
+ })
21
+ </script>
@@ -0,0 +1,26 @@
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="IconUser"
11
+ width="21"
12
+ height="21"
13
+ viewBox="0 0 21 21"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ aria-hidden="true"
16
+ focusable="false"
17
+ >
18
+ <path
19
+ d="M10.5 0C4.7 0 0 4.7 0 10.5S4.7 21 10.5 21 21 16.3 21 10.5 16.3 0 10.5 0zm5.42 17.867c-1.525 1.143-3.43 1.778-5.42 1.778-2.032 0-3.938-.635-5.42-1.778v-.593a2.701 2.701 0 0 1 2.71-2.71c.466 0 1.143.509 2.71.509 1.524 0 2.202-.508 2.71-.508a2.729 2.729 0 0 1 2.71 2.71v.592zm1.27-1.143c-.297-1.99-1.948-3.514-3.98-3.514-.89 0-1.313.508-2.71.508-1.44 0-1.863-.508-2.71-.508-2.074 0-3.725 1.524-4.022 3.514-1.524-1.651-2.413-3.81-2.413-6.224A9.134 9.134 0 0 1 10.5 1.355c5.038 0 9.145 4.107 9.145 9.145 0 2.413-.931 4.573-2.456 6.224zM10.5 4.742a3.731 3.731 0 0 0-3.726 3.726 3.704 3.704 0 0 0 3.726 3.726 3.731 3.731 0 0 0 3.726-3.726c0-2.033-1.694-3.726-3.726-3.726zm0 6.097a2.367 2.367 0 0 1-2.371-2.371c0-1.27 1.059-2.371 2.371-2.371 1.27 0 2.371 1.1 2.371 2.37 0 1.313-1.1 2.372-2.371 2.372z"
20
+ fill="currentColor"
21
+ />
22
+ </svg>
23
+ </template>
24
+ <style lang="scss">
25
+ @import '@explorer-1/common/src/scss/components/IconUser';
26
+ </style>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <svg
3
+ class="IconVolume"
4
+ width="60"
5
+ height="60"
6
+ viewBox="0 0 480 512"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ focusable="false"
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fill-rule="evenodd"
14
+ d="M342.91 193.57c-7.81-3.8-17.5-.48-21.34 7.5-3.81 7.97-.44 17.53 7.53 21.34C343.22 229.2 352 242.06 352 256c0 13.94-8.78 26.8-22.9 33.58-7.97 3.81-11.34 13.38-7.53 21.34 3.86 8.05 13.54 11.29 21.34 7.5C368.25 306.28 384 282.36 384 256s-15.75-50.29-41.09-62.43zM231.81 64c-5.91 0-11.92 2.18-16.78 7.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c4.87 4.87 10.88 7.05 16.78 7.05 12.33 0 24.19-9.52 24.19-24.02V88.02C256 73.51 244.13 64 231.81 64zM224 404.67L139.31 320H32V192h107.31L224 107.33v297.34zm256-148.68c0-66.12-34.02-126.62-88.81-157.87-7.69-4.38-17.59-1.78-22.04 5.89-4.45 7.66-1.77 17.44 5.96 21.86 44.77 25.55 72.61 75.4 72.61 130.12s-27.84 104.58-72.61 130.12c-7.72 4.42-10.4 14.2-5.96 21.86 4.3 7.38 14.06 10.44 22.04 5.89C445.98 382.62 480 322.12 480 255.99z"
15
+ />
16
+ </svg>
17
+ </template>
18
+
19
+ <script lang="ts">
20
+ import { defineComponent } from 'vue'
21
+ export default defineComponent({
22
+ name: 'IconVolume'
23
+ })
24
+ </script>
25
+ <style lang="scss">
26
+ @import '@explorer-1/common/src/scss/components/IconVolume';
27
+ </style>
@@ -0,0 +1,440 @@
1
+ import IconArrow from './IconArrow.vue'
2
+ import Icon360 from './Icon360.vue'
3
+ import IconArrows from './IconArrows.vue'
4
+ import IconAudio from './IconAudio.vue'
5
+ import IconBook from './IconBook.vue'
6
+ import IconBookUser from './IconBookUser.vue'
7
+ import IconBriefcase from './IconBriefcase.vue'
8
+ import IconCalendar from './IconCalendar.vue'
9
+ import IconCaret from './IconCaret.vue'
10
+ import IconCheckbox from './IconCheckbox.vue'
11
+ import IconCheckboxSelected from './IconCheckboxSelected.vue'
12
+ import IconClose from './IconClose.vue'
13
+ import IconCloseLightbox from './IconCloseLightbox.vue'
14
+ import IconDownload from './IconDownload.vue'
15
+ import IconDropdown from './IconDropdown.vue'
16
+ import IconEnvelope from './IconEnvelope.vue'
17
+ import IconExpand from './IconExpand.vue'
18
+ import IconExternal from './IconExternal.vue'
19
+ import IconFilter from './IconFilter.vue'
20
+ import IconForwardTen from './IconForwardTen.vue'
21
+ import IconGrid from './IconGrid.vue'
22
+ import IconHand from './IconHand.vue'
23
+ import IconInfo from './IconInfo.vue'
24
+ import IconLink from './IconLink.vue'
25
+ import IconList from './IconList.vue'
26
+ import IconLocation from './IconLocation.vue'
27
+ import IconMagnifyingGlass from './IconMagnifyingGlass.vue'
28
+ import IconMedal from './IconMedal.vue'
29
+ import IconMenu from './IconMenu.vue'
30
+ import IconMinus from './IconMinus.vue'
31
+ import IconMute from './IconMute.vue'
32
+ import IconNext from './IconNext.vue'
33
+ import IconPause from './IconPause.vue'
34
+ import IconPlay from './IconPlay.vue'
35
+ import IconPlus from './IconPlus.vue'
36
+ import IconPrev from './IconPrev.vue'
37
+ import IconRewindTen from './IconRewindTen.vue'
38
+ import IconSearch from './IconSearch.vue'
39
+ import IconShare from './IconShare.vue'
40
+ import IconSlideshow from './IconSlideshow.vue'
41
+ import IconSocialEmail from './IconSocialEmail.vue'
42
+ import IconSocialFacebook from './IconSocialFacebook.vue'
43
+ import IconSocialGoogleClassroom from './IconSocialGoogleClassroom.vue'
44
+ import IconSocialInstagram from './IconSocialInstagram.vue'
45
+ import IconSocialPinterest from './IconSocialPinterest.vue'
46
+ import IconSocialReddit from './IconSocialReddit.vue'
47
+ import IconSocialTwitter from './IconSocialTwitter.vue'
48
+ import IconSocialYoutube from './IconSocialYoutube.vue'
49
+ import IconStop from './IconStop.vue'
50
+ import IconTime from './IconTime.vue'
51
+ import IconUniversity from './IconUniversity.vue'
52
+ import IconUser from './IconUser.vue'
53
+ import IconVolume from './IconVolume.vue'
54
+
55
+ export default {
56
+ title: 'Foundation/Icons',
57
+ component: IconArrows,
58
+ subcomponents: {
59
+ IconArrow,
60
+ Icon360,
61
+ IconArrows,
62
+ IconAudio,
63
+ IconBook,
64
+ IconBookUser,
65
+ IconBriefcase,
66
+ IconCalendar,
67
+ IconCaret,
68
+ IconCheckbox,
69
+ IconCheckboxSelected,
70
+ IconClose,
71
+ IconCloseLightbox,
72
+ IconDownload,
73
+ IconDropdown,
74
+ IconEnvelope,
75
+ IconExpand,
76
+ IconExternal,
77
+ IconFilter,
78
+ IconForwardTen,
79
+ IconGrid,
80
+ IconHand,
81
+ IconInfo,
82
+ IconLink,
83
+ IconList,
84
+ IconLocation,
85
+ IconMagnifyingGlass,
86
+ IconMedal,
87
+ IconMenu,
88
+ IconMinus,
89
+ IconMute,
90
+ IconNext,
91
+ IconPause,
92
+ IconPlay,
93
+ IconPlus,
94
+ IconPrev,
95
+ IconRewindTen,
96
+ IconSearch,
97
+ IconShare,
98
+ IconSlideshow,
99
+ IconSocialEmail,
100
+ IconSocialFacebook,
101
+ IconSocialGoogleClassroom,
102
+ IconSocialInstagram,
103
+ IconSocialPinterest,
104
+ IconSocialReddit,
105
+ IconSocialTwitter,
106
+ IconSocialYoutube,
107
+ IconStop,
108
+ IconTime,
109
+ IconUniversity,
110
+ IconUser,
111
+ IconVolume
112
+ },
113
+ parameters: {
114
+ docs: {
115
+ description: {
116
+ component: 'Use with tailwind text classes to specify size and color'
117
+ }
118
+ }
119
+ }
120
+ }
121
+
122
+ export const Arrow = {
123
+ render: () => ({
124
+ components: { IconArrow },
125
+ template: '<IconArrow />'
126
+ })
127
+ }
128
+ export const ThreeSixty = {
129
+ name: '360',
130
+ render: () => ({
131
+ components: { Icon360 },
132
+ template: '<Icon360 />'
133
+ })
134
+ }
135
+ export const Arrows = {
136
+ render: () => ({
137
+ components: { IconArrows },
138
+ template: '<IconArrows />'
139
+ })
140
+ }
141
+ export const Audio = {
142
+ render: () => ({
143
+ components: { IconAudio },
144
+ template: '<IconAudio />'
145
+ })
146
+ }
147
+ export const Book = {
148
+ render: () => ({
149
+ components: { IconBook },
150
+ template: '<IconBook />'
151
+ })
152
+ }
153
+ export const BookUser = {
154
+ render: () => ({
155
+ components: { IconBookUser },
156
+ template: '<IconBookUser />'
157
+ })
158
+ }
159
+ export const Briefcase = {
160
+ render: () => ({
161
+ components: { IconBriefcase },
162
+ template: '<IconBriefcase />'
163
+ })
164
+ }
165
+ export const Calendar = {
166
+ render: () => ({
167
+ components: { IconCalendar },
168
+ template: '<IconCalendar />'
169
+ })
170
+ }
171
+ export const Caret = {
172
+ render: () => ({
173
+ components: { IconCaret },
174
+ template: '<IconCaret />'
175
+ })
176
+ }
177
+ export const Checkbox = {
178
+ render: () => ({
179
+ components: { IconCheckbox },
180
+ template: '<IconCheckbox />'
181
+ })
182
+ }
183
+ export const CheckboxSelected = {
184
+ render: () => ({
185
+ components: { IconCheckboxSelected },
186
+ template: '<IconCheckboxSelected />'
187
+ })
188
+ }
189
+ export const Close = {
190
+ render: () => ({
191
+ components: { IconClose },
192
+ template: '<IconClose />'
193
+ })
194
+ }
195
+ export const CloseLightbox = {
196
+ render: () => ({
197
+ components: { IconCloseLightbox },
198
+ template: '<IconCloseLightbox />'
199
+ })
200
+ }
201
+ export const Download = {
202
+ render: () => ({
203
+ components: { IconDownload },
204
+ template: '<IconDownload />'
205
+ })
206
+ }
207
+ export const Dropdown = {
208
+ render: () => ({
209
+ components: { IconDropdown },
210
+ template: '<IconDropdown />'
211
+ })
212
+ }
213
+ export const Envelope = {
214
+ render: () => ({
215
+ components: { IconEnvelope },
216
+ template: '<IconEnvelope />'
217
+ })
218
+ }
219
+ export const Expand = {
220
+ render: () => ({
221
+ components: { IconExpand },
222
+ template: '<IconExpand />'
223
+ })
224
+ }
225
+ export const External = {
226
+ render: () => ({
227
+ components: { IconExternal },
228
+ template: '<IconExternal />'
229
+ })
230
+ }
231
+ export const Filter = {
232
+ render: () => ({
233
+ components: { IconFilter },
234
+ template: '<IconFilter />'
235
+ })
236
+ }
237
+ export const ForwardTen = {
238
+ render: () => ({
239
+ components: { IconForwardTen },
240
+ template: '<IconForwardTen />'
241
+ })
242
+ }
243
+ export const Grid = {
244
+ render: () => ({
245
+ components: { IconGrid },
246
+ template: '<IconGrid />'
247
+ })
248
+ }
249
+ export const Hand = {
250
+ render: () => ({
251
+ components: { IconHand },
252
+ template: '<IconHand />'
253
+ })
254
+ }
255
+ export const Info = {
256
+ render: () => ({
257
+ components: { IconInfo },
258
+ template: '<IconInfo />'
259
+ })
260
+ }
261
+ export const Link = {
262
+ render: () => ({
263
+ components: { IconLink },
264
+ template: '<IconLink />'
265
+ })
266
+ }
267
+ export const List = {
268
+ render: () => ({
269
+ components: { IconList },
270
+ template: '<IconList />'
271
+ })
272
+ }
273
+ export const Location = {
274
+ render: () => ({
275
+ components: { IconLocation },
276
+ template: '<IconLocation />'
277
+ })
278
+ }
279
+ export const MagnifyingGlass = {
280
+ render: () => ({
281
+ components: { IconMagnifyingGlass },
282
+ template: '<IconMagnifyingGlass />'
283
+ })
284
+ }
285
+ export const Medal = {
286
+ render: () => ({
287
+ components: { IconMedal },
288
+ template: '<IconMedal />'
289
+ })
290
+ }
291
+ export const Menu = {
292
+ render: () => ({
293
+ components: { IconMenu },
294
+ template: '<IconMenu />'
295
+ })
296
+ }
297
+ export const Minus = {
298
+ render: () => ({
299
+ components: { IconMinus },
300
+ template: '<IconMinus />'
301
+ })
302
+ }
303
+ export const Mute = {
304
+ render: () => ({
305
+ components: { IconMute },
306
+ template: '<IconMute />'
307
+ })
308
+ }
309
+ export const Next = {
310
+ render: () => ({
311
+ components: { IconNext },
312
+ template: '<IconNext />'
313
+ })
314
+ }
315
+ export const Pause = {
316
+ render: () => ({
317
+ components: { IconPause },
318
+ template: '<IconPause />'
319
+ })
320
+ }
321
+ export const Play = {
322
+ render: () => ({
323
+ components: { IconPlay },
324
+ template: '<IconPlay />'
325
+ })
326
+ }
327
+ export const Plus = {
328
+ render: () => ({
329
+ components: { IconPlus },
330
+ template: '<IconPlus />'
331
+ })
332
+ }
333
+ export const Prev = {
334
+ render: () => ({
335
+ components: { IconPrev },
336
+ template: '<IconPrev />'
337
+ })
338
+ }
339
+ export const RewindTen = {
340
+ render: () => ({
341
+ components: { IconRewindTen },
342
+ template: '<IconRewindTen />'
343
+ })
344
+ }
345
+ export const Search = {
346
+ render: () => ({
347
+ components: { IconSearch },
348
+ template: '<IconSearch />'
349
+ })
350
+ }
351
+ export const Share = {
352
+ render: () => ({
353
+ components: { IconShare },
354
+ template: '<IconShare />'
355
+ })
356
+ }
357
+ export const Slideshow = {
358
+ render: () => ({
359
+ components: { IconSlideshow },
360
+ template: '<IconSlideshow />'
361
+ })
362
+ }
363
+ export const SocialEmail = {
364
+ render: () => ({
365
+ components: { IconSocialEmail },
366
+ template: '<IconSocialEmail />'
367
+ })
368
+ }
369
+ export const SocialFacebook = {
370
+ render: () => ({
371
+ components: { IconSocialFacebook },
372
+ template: '<IconSocialFacebook />'
373
+ })
374
+ }
375
+ export const SocialGoogleClassroom = {
376
+ render: () => ({
377
+ components: { IconSocialGoogleClassroom },
378
+ template: '<IconSocialGoogleClassroom />'
379
+ })
380
+ }
381
+ export const SocialInstagram = {
382
+ render: () => ({
383
+ components: { IconSocialInstagram },
384
+ template: '<IconSocialInstagram />'
385
+ })
386
+ }
387
+ export const SocialPinterest = {
388
+ render: () => ({
389
+ components: { IconSocialPinterest },
390
+ template: '<IconSocialPinterest />'
391
+ })
392
+ }
393
+ export const SocialReddit = {
394
+ render: () => ({
395
+ components: { IconSocialReddit },
396
+ template: '<IconSocialReddit />'
397
+ })
398
+ }
399
+ export const SocialTwitter = {
400
+ render: () => ({
401
+ components: { IconSocialTwitter },
402
+ template: '<IconSocialTwitter />'
403
+ })
404
+ }
405
+ export const SocialYoutube = {
406
+ render: () => ({
407
+ components: { IconSocialYoutube },
408
+ template: '<IconSocialYoutube />'
409
+ })
410
+ }
411
+ export const Stop = {
412
+ render: () => ({
413
+ components: { IconStop },
414
+ template: '<IconStop />'
415
+ })
416
+ }
417
+ export const Time = {
418
+ render: () => ({
419
+ components: { IconTime },
420
+ template: '<IconTime />'
421
+ })
422
+ }
423
+ export const University = {
424
+ render: () => ({
425
+ components: { IconUniversity },
426
+ template: '<IconUniversity />'
427
+ })
428
+ }
429
+ export const User = {
430
+ render: () => ({
431
+ components: { IconUser },
432
+ template: '<IconUser />'
433
+ })
434
+ }
435
+ export const Volume = {
436
+ render: () => ({
437
+ components: { IconVolume },
438
+ template: '<IconVolume />'
439
+ })
440
+ }