@spscommerce/ds-web-components 0.1.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 (67) hide show
  1. package/README.md +3 -0
  2. package/dist/README.md +3 -0
  3. package/dist/global.d.ts +15 -0
  4. package/dist/lib/components/file-upload/file-upload.d.ts +119 -0
  5. package/dist/lib/components/file-upload/file-upload.examples.d.ts +2 -0
  6. package/dist/lib/components/file-upload/mime-type.enum.d.ts +75 -0
  7. package/dist/lib/components/index.d.ts +11 -0
  8. package/dist/lib/components/insight-card/insight-card.d.ts +40 -0
  9. package/dist/lib/components/insight-card/insight-card.examples.d.ts +51 -0
  10. package/dist/lib/components/insight-card/insights.d.ts +18 -0
  11. package/dist/lib/components/nav-tabs/nav-tab-set.d.ts +7 -0
  12. package/dist/lib/components/nav-tabs/nav-tab.d.ts +24 -0
  13. package/dist/lib/components/nav-tabs/nav-tabs.examples.d.ts +11 -0
  14. package/dist/lib/components/photo/photo.d.ts +42 -0
  15. package/dist/lib/components/photo/photo.examples.d.ts +2 -0
  16. package/dist/lib/decorators/component.d.ts +33 -0
  17. package/dist/lib/decorators/content.d.ts +7 -0
  18. package/dist/lib/decorators/event-dispatcher.d.ts +9 -0
  19. package/dist/lib/decorators/event-listener.d.ts +5 -0
  20. package/dist/lib/decorators/index.d.ts +7 -0
  21. package/dist/lib/decorators/prop.d.ts +6 -0
  22. package/dist/lib/decorators/query-selector.d.ts +19 -0
  23. package/dist/lib/decorators/watch.d.ts +2 -0
  24. package/dist/lib/index.cjs.js +829 -0
  25. package/dist/lib/index.d.ts +6 -0
  26. package/dist/lib/index.es.js +2802 -0
  27. package/dist/lib/manifest.d.ts +2 -0
  28. package/dist/lib/utils/comment.d.ts +2 -0
  29. package/dist/lib/utils/i18n.d.ts +3 -0
  30. package/dist/lib/utils/index.d.ts +5 -0
  31. package/dist/lib/utils/metadata.d.ts +22 -0
  32. package/dist/lib/utils/pragma.d.ts +6 -0
  33. package/dist/lib/utils/register.d.ts +13 -0
  34. package/dist/package.json +36 -0
  35. package/global.d.ts +15 -0
  36. package/lib/components/file-upload/file-upload.d.ts +119 -0
  37. package/lib/components/file-upload/file-upload.examples.d.ts +2 -0
  38. package/lib/components/file-upload/mime-type.enum.d.ts +75 -0
  39. package/lib/components/index.d.ts +11 -0
  40. package/lib/components/insight-card/insight-card.d.ts +40 -0
  41. package/lib/components/insight-card/insight-card.examples.d.ts +51 -0
  42. package/lib/components/insight-card/insights.d.ts +18 -0
  43. package/lib/components/nav-tabs/nav-tab-set.d.ts +7 -0
  44. package/lib/components/nav-tabs/nav-tab.d.ts +24 -0
  45. package/lib/components/nav-tabs/nav-tabs.examples.d.ts +11 -0
  46. package/lib/components/photo/photo.d.ts +42 -0
  47. package/lib/components/photo/photo.examples.d.ts +2 -0
  48. package/lib/decorators/component.d.ts +33 -0
  49. package/lib/decorators/content.d.ts +7 -0
  50. package/lib/decorators/event-dispatcher.d.ts +9 -0
  51. package/lib/decorators/event-listener.d.ts +5 -0
  52. package/lib/decorators/index.d.ts +7 -0
  53. package/lib/decorators/prop.d.ts +6 -0
  54. package/lib/decorators/query-selector.d.ts +19 -0
  55. package/lib/decorators/watch.d.ts +2 -0
  56. package/lib/index.cjs.js +829 -0
  57. package/lib/index.d.ts +6 -0
  58. package/lib/index.es.js +2802 -0
  59. package/lib/manifest.d.ts +2 -0
  60. package/lib/utils/comment.d.ts +2 -0
  61. package/lib/utils/i18n.d.ts +3 -0
  62. package/lib/utils/index.d.ts +5 -0
  63. package/lib/utils/metadata.d.ts +22 -0
  64. package/lib/utils/pragma.d.ts +6 -0
  65. package/lib/utils/register.d.ts +13 -0
  66. package/package.json +37 -0
  67. package/vite.config.js +20 -0
@@ -0,0 +1,6 @@
1
+ export * from "./manifest";
2
+ export * from "./components/index";
3
+ export * from "./decorators/index";
4
+ export * from "./utils/register";
5
+ export { h } from "./utils/pragma";
6
+ export { webComponentsUseI18n } from "./utils/i18n";