@explorer-1/vue 0.2.3 → 0.2.5

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 (81) hide show
  1. package/components.d.ts +6 -3
  2. package/dist/explorer-1-vue.js +5603 -5375
  3. package/dist/explorer-1-vue.umd.cjs +12 -12
  4. package/dist/src/components/BlockCardGrid/BlockCardGrid.stories.d.ts +60 -0
  5. package/dist/src/components/BlockCardGrid/BlockCardGrid.vue.d.ts +33 -0
  6. package/dist/src/components/{BlockCard/BlockCard.stories.d.ts → BlockCardGridItem/BlockCardGridItem.stories.d.ts} +18 -4
  7. package/dist/src/components/{BlockCardGroup/BlockCardGroup.vue.d.ts → BlockCardGridItem/BlockCardGridItem.vue.d.ts} +10 -12
  8. package/dist/src/components/{BlockCard/BlockCard.vue.d.ts → BlockCardGridItem/BlockCardGridItemElement.vue.d.ts} +20 -14
  9. package/dist/src/components/BlockCircleImageCard/BlockCircleImageCard.stories.d.ts +1 -0
  10. package/dist/src/components/BlockHeading/BlockHeading.vue.d.ts +25 -2
  11. package/dist/src/components/BlockLinkCard/BlockLinkCard.stories.d.ts +1 -0
  12. package/dist/src/components/BlockLinkTile/BlockLinkTile.stories.d.ts +1 -0
  13. package/dist/src/components/BlockListCards/BlockListCards.stories.d.ts +1 -0
  14. package/dist/src/components/BlockStreamfield/BlockStreamfield.stories.d.ts +60 -0
  15. package/dist/src/components/BlockStreamfield/BlockStreamfield.vue.d.ts +2 -3
  16. package/dist/src/components/DetailHeadline/DetailHeadline.stories.d.ts +30 -1
  17. package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +37 -0
  18. package/dist/src/components/LayoutHelper/LayoutHelper.vue.d.ts +9 -0
  19. package/dist/src/components/NavDesktop/NavDesktop.stories.d.ts +3 -0
  20. package/dist/src/components/NavDesktop/NavDesktop.vue.d.ts +1 -0
  21. package/dist/src/components/NavDesktop/NavDesktopDropdown.vue.d.ts +1 -0
  22. package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +1 -0
  23. package/dist/src/components/NavDropdownToggle/NavDropdownToggle.vue.d.ts +19 -6
  24. package/dist/src/components/NavJumpMenu/NavJumpMenu.stories.d.ts +31 -0
  25. package/dist/src/components/NavMobile/NavMobile.stories.d.ts +30 -3
  26. package/dist/src/components/NavMobile/NavMobile.vue.d.ts +1 -0
  27. package/dist/src/components/NavMobile/NavMobileDropdown.vue.d.ts +9 -1
  28. package/dist/src/components/NavMobile/NavMobileEdu.stories.d.ts +3 -0
  29. package/dist/src/components/NavMobile/NavMobileSecondaryDropdown.vue.d.ts +7 -0
  30. package/dist/src/components/NavSecondary/NavSecondary.stories.d.ts +8 -0
  31. package/dist/src/components/NavSecondary/NavSecondary.vue.d.ts +23 -1
  32. package/dist/src/components/NavSecondary/NavSecondaryDropdown.vue.d.ts +33 -2
  33. package/dist/src/components/NavSecondary/NavSecondaryDropdownContent.vue.d.ts +11 -1
  34. package/dist/src/components/NavSecondary/NavSecondaryLink.vue.d.ts +21 -3
  35. package/dist/src/components/ThumbnailCarousel/ThumbnailCarousel.stories.d.ts +1 -0
  36. package/dist/src/docs/foundation/grid_layouthelpers.stories.d.ts +36 -0
  37. package/dist/src/interfaces.d.ts +13 -3
  38. package/dist/src/store/header.d.ts +2 -0
  39. package/dist/src/templates/PageNewsDetail/PageNewsDetail.stories.d.ts +8 -0
  40. package/dist/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.stories.d.ts → PageEduExplainerArticle/PageEduExplainerArticle.stories.d.ts} +4 -2
  41. package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +1007 -6
  42. package/dist/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.stories.d.ts +60 -0
  43. package/dist/src/templates/www/PageRoboticsDetail/PageRoboticsDetail.stories.d.ts +29 -2
  44. package/dist/src/utils/eventBus.d.ts +1 -0
  45. package/dist/src/utils/getHeadingId.d.ts +1 -0
  46. package/dist/src/utils/mixins.d.ts +1 -1
  47. package/dist/style.css +1 -1
  48. package/package.json +3 -2
  49. package/src/components/BaseAudio/BaseAudio.vue +3 -4
  50. package/src/components/BaseLink/BaseLink.vue +2 -0
  51. package/src/components/BaseTag/BaseTag.vue +4 -4
  52. package/src/components/BlockHeading/BlockHeading.vue +28 -0
  53. package/src/components/BlockStreamfield/BlockStreamfield.vue +5 -1
  54. package/src/components/DetailHeadline/DetailHeadline.stories.js +28 -2
  55. package/src/components/DetailHeadline/DetailHeadline.vue +85 -32
  56. package/src/components/NavDesktop/NavDesktopDropdown.vue +2 -4
  57. package/src/components/NavDropdownToggle/NavDropdownToggle.vue +8 -3
  58. package/src/components/NavJumpMenu/NavJumpMenu.stories.js +47 -0
  59. package/src/components/NavJumpMenu/NavJumpMenu.vue +141 -0
  60. package/src/components/NavJumpMenu/NavJumpMenuContent.vue +74 -0
  61. package/src/components/NavMobile/NavMobile.vue +2 -4
  62. package/src/components/NavMobile/NavMobileDropdown.vue +8 -4
  63. package/src/components/NavMobile/NavMobileSecondaryDropdown.vue +4 -1
  64. package/src/components/NavSecondary/NavSecondary.stories.js +8 -3
  65. package/src/components/NavSecondary/NavSecondary.vue +26 -6
  66. package/src/components/NavSecondary/NavSecondaryDropdown.vue +52 -17
  67. package/src/components/NavSecondary/NavSecondaryDropdownContent.vue +5 -1
  68. package/src/components/NavSecondary/NavSecondaryLink.vue +38 -11
  69. package/src/interfaces.ts +7 -1
  70. package/src/store/header.ts +6 -1
  71. package/src/templates/PageNewsDetail/PageNewsDetail.stories.js +1 -0
  72. package/src/templates/PageNewsDetail/PageNewsDetail.vue +1 -0
  73. package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue +2 -2
  74. package/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.stories.js → PageEduExplainerArticle/PageEduExplainerArticle.stories.js} +8 -6
  75. package/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.vue → PageEduExplainerArticle/PageEduExplainerArticle.vue} +5 -2
  76. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.js +7 -4
  77. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +18 -2
  78. package/src/utils/eventBus.ts +3 -0
  79. package/src/utils/getHeadingId.ts +5 -0
  80. package/src/utils/mixins.ts +5 -1
  81. package/dist/src/components/BlockCardGroup/BlockCardGroup.stories.d.ts +0 -32

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.