@designcrowd/fe-shared-lib 1.5.22 → 1.5.23-kp-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 (53) hide show
  1. package/.storybook-static/css/tailwind-brandCrowd.css +2472 -0
  2. package/.storybook-static/css/tailwind-brandPage.css +2156 -0
  3. package/.storybook-static/css/tailwind-crazyDomains.css +2472 -0
  4. package/.storybook-static/css/tailwind-designCom.css +2472 -0
  5. package/.storybook-static/css/tailwind-designCrowd.css +2472 -0
  6. package/.storybook-static/favicon.svg +1 -0
  7. package/.storybook-static/index.html +156 -0
  8. package/.storybook-static/index.json +1 -0
  9. package/.storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  10. package/.storybook-static/nunito-sans-bold.woff2 +0 -0
  11. package/.storybook-static/nunito-sans-italic.woff2 +0 -0
  12. package/.storybook-static/nunito-sans-regular.woff2 +0 -0
  13. package/.storybook-static/project.json +1 -0
  14. package/.storybook-static/sb-addons/a11y-1/manager-bundle.js +5 -0
  15. package/.storybook-static/sb-addons/links-2/manager-bundle.js +3 -0
  16. package/.storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +188 -0
  17. package/.storybook-static/sb-addons/themes-3/manager-bundle.js +3 -0
  18. package/.storybook-static/sb-common-assets/favicon.svg +1 -0
  19. package/.storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  20. package/.storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  21. package/.storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  22. package/.storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  23. package/.storybook-static/sb-manager/globals-module-info.js +797 -0
  24. package/.storybook-static/sb-manager/globals-runtime.js +72062 -0
  25. package/.storybook-static/sb-manager/globals.js +34 -0
  26. package/.storybook-static/sb-manager/runtime.js +13002 -0
  27. package/dist/css/tailwind-brandCrowd.css +105 -6
  28. package/dist/css/tailwind-brandPage.css +101 -6
  29. package/dist/css/tailwind-crazyDomains.css +105 -6
  30. package/dist/css/tailwind-designCom.css +105 -6
  31. package/dist/css/tailwind-designCrowd.css +105 -6
  32. package/package.json +1 -1
  33. package/src/atoms/components/Icon/Icon.stories.js +2 -0
  34. package/src/atoms/components/Icon/Icon.vue +42 -0
  35. package/src/atoms/components/Icon/icons/annotate-heart.vue +7 -0
  36. package/src/atoms/components/Icon/icons/award.vue +7 -0
  37. package/src/atoms/components/Icon/icons/bezier-curve-outline.vue +7 -0
  38. package/src/atoms/components/Icon/icons/bezier-curve.vue +7 -0
  39. package/src/atoms/components/Icon/icons/browser.vue +7 -0
  40. package/src/atoms/components/Icon/icons/card-vertical.vue +7 -0
  41. package/src/atoms/components/Icon/icons/file-empty.vue +7 -0
  42. package/src/atoms/components/Icon/icons/font.vue +7 -0
  43. package/src/atoms/components/Icon/icons/headphones.vue +7 -0
  44. package/src/atoms/components/Icon/icons/home-outline.vue +6 -0
  45. package/src/atoms/components/Icon/icons/image.vue +7 -0
  46. package/src/atoms/components/Icon/icons/lightning.vue +7 -0
  47. package/src/atoms/components/Icon/icons/logo.vue +7 -0
  48. package/src/atoms/components/Icon/icons/page-blank.vue +6 -0
  49. package/src/atoms/components/Icon/icons/palette-outline.vue +7 -0
  50. package/src/atoms/components/Icon/icons/pen-outline.vue +7 -0
  51. package/src/atoms/components/Icon/icons/pen-sparkle.vue +17 -0
  52. package/src/atoms/components/Icon/icons/pen.vue +7 -0
  53. package/src/atoms/components/Icon/icons/sparkle-square.vue +22 -0
@@ -0,0 +1,34 @@
1
+ import ESM_COMPAT_Module from "node:module";
2
+ import { fileURLToPath as ESM_COMPAT_fileURLToPath } from 'node:url';
3
+ import { dirname as ESM_COMPAT_dirname } from 'node:path';
4
+ const __filename = ESM_COMPAT_fileURLToPath(import.meta.url);
5
+ const __dirname = ESM_COMPAT_dirname(__filename);
6
+ const require = ESM_COMPAT_Module.createRequire(import.meta.url);
7
+
8
+ // src/manager/globals/globals.ts
9
+ var _ = {
10
+ react: "__REACT__",
11
+ "react-dom": "__REACT_DOM__",
12
+ "react-dom/client": "__REACT_DOM_CLIENT__",
13
+ "@storybook/icons": "__STORYBOOK_ICONS__",
14
+ "storybook/manager-api": "__STORYBOOK_API__",
15
+ "storybook/test": "__STORYBOOK_TEST__",
16
+ "storybook/theming": "__STORYBOOK_THEMING__",
17
+ "storybook/theming/create": "__STORYBOOK_THEMING_CREATE__",
18
+ "storybook/internal/channels": "__STORYBOOK_CHANNELS__",
19
+ "storybook/internal/client-logger": "__STORYBOOK_CLIENT_LOGGER__",
20
+ "storybook/internal/components": "__STORYBOOK_COMPONENTS__",
21
+ "storybook/internal/core-errors": "__STORYBOOK_CORE_EVENTS__",
22
+ "storybook/internal/core-events": "__STORYBOOK_CORE_EVENTS__",
23
+ "storybook/internal/manager-errors": "__STORYBOOK_CORE_EVENTS_MANAGER_ERRORS__",
24
+ "storybook/internal/router": "__STORYBOOK_ROUTER__",
25
+ "storybook/internal/types": "__STORYBOOK_TYPES__",
26
+ // @deprecated TODO: delete in 9.1
27
+ "storybook/internal/manager-api": "__STORYBOOK_API__",
28
+ "storybook/internal/theming": "__STORYBOOK_THEMING__",
29
+ "storybook/internal/theming/create": "__STORYBOOK_THEMING_CREATE__"
30
+ }, o = Object.keys(_);
31
+ export {
32
+ o as globalPackages,
33
+ _ as globalsNameReferenceMap
34
+ };