@xplortech/apollo-core 0.1.0 → 0.1.2

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 (46) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/build/style.css +703 -201
  3. package/dist/apollo-core/apollo-core.css +3 -9
  4. package/dist/apollo-core/apollo-core.esm.js +1 -1
  5. package/dist/apollo-core/{p-1e6a342a.entry.js → p-fc589c84.entry.js} +3 -3
  6. package/dist/cjs/apollo-core.cjs.js +1 -1
  7. package/dist/cjs/loader.cjs.js +1 -1
  8. package/dist/cjs/{xpl-avatar_7.cjs.entry.js → xpl-avatar_13.cjs.entry.js} +75 -0
  9. package/dist/collection/collection-manifest.json +6 -0
  10. package/dist/collection/components/xpl-backdrop/xpl-backdrop.js +7 -0
  11. package/dist/collection/components/xpl-breadcrumbs/xpl-breadcrumb-item/xpl-breadcrumb-item.js +22 -0
  12. package/dist/collection/components/xpl-breadcrumbs/xpl-breadcrumbs/xpl-breadcrumbs.js +15 -0
  13. package/dist/collection/components/xpl-content-area/xpl-content-area.js +39 -0
  14. package/dist/collection/components/xpl-main-nav/xpl-main-nav.js +43 -0
  15. package/dist/collection/components/xpl-nav-item/xpl-nav-item.js +10 -0
  16. package/dist/custom-elements/index.d.ts +36 -0
  17. package/dist/custom-elements/index.js +88 -1
  18. package/dist/esm/apollo-core.js +1 -1
  19. package/dist/esm/loader.js +1 -1
  20. package/dist/esm/{xpl-avatar_7.entry.js → xpl-avatar_13.entry.js} +70 -1
  21. package/dist/stories/backdrop.stories.js +18 -0
  22. package/dist/stories/breadcrumbs.stories.js +115 -0
  23. package/dist/stories/content-area.stories.js +53 -0
  24. package/dist/stories/main-nav.stories.js +308 -0
  25. package/dist/stories/table.stories.js +1 -1
  26. package/dist/types/components/xpl-backdrop/xpl-backdrop.d.ts +3 -0
  27. package/dist/types/components/xpl-breadcrumbs/xpl-breadcrumb-item/xpl-breadcrumb-item.d.ts +7 -0
  28. package/dist/types/components/xpl-breadcrumbs/xpl-breadcrumbs/xpl-breadcrumbs.d.ts +6 -0
  29. package/dist/types/components/xpl-content-area/xpl-content-area.d.ts +7 -0
  30. package/dist/types/components/xpl-main-nav/xpl-main-nav.d.ts +7 -0
  31. package/dist/types/components/xpl-nav-item/xpl-nav-item.d.ts +3 -0
  32. package/dist/types/components.d.ts +94 -0
  33. package/dist/types/home/scottpdo/local/apollo/.stencil/stories/backdrop.stories.d.ts +16 -0
  34. package/dist/types/home/scottpdo/local/apollo/.stencil/stories/breadcrumbs.stories.d.ts +53 -0
  35. package/dist/types/home/scottpdo/local/apollo/.stencil/stories/content-area.stories.d.ts +29 -0
  36. package/dist/types/home/scottpdo/local/apollo/.stencil/stories/main-nav.stories.d.ts +30 -0
  37. package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/table.stories.d.ts +1 -2
  38. package/package.json +3 -2
  39. /package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/avatar.stories.d.ts +0 -0
  40. /package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/badge.stories.d.ts +0 -0
  41. /package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/button.stories.d.ts +0 -0
  42. /package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/checkbox.stories.d.ts +0 -0
  43. /package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/pagination.stories.d.ts +0 -0
  44. /package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/radio.stories.d.ts +0 -0
  45. /package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/tabs.stories.d.ts +0 -0
  46. /package/dist/types/home/{runner/work/apollo → scottpdo/local}/apollo/.stencil/stories/utility-bar.stories.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.1.2] - 2021-11-18
8
+
9
+ ### Added
10
+
11
+ - Use design tokens from Apollo Foundation instead of coding variables in this library ([#46](https://github.com/xplor/apollo/pull/46))
12
+ - Main Navigation (Sidebar) ([#51](https://github.com/xplor/apollo/pull/51))
13
+ - Backdrop component and story ([#45](https://github.com/xplor/apollo/pull/45))
14
+ - Breadcrumbs and Breadcrumb Item Components ([#43](https://github.com/xplor/apollo/pull/43))
15
+ - Content Area component ([#49](https://github.com/xplor/apollo/pull/49))
16
+
7
17
  ## [0.1.0] - 2021-11-03
8
18
 
9
19
  ### Added