@lukso/web-components 1.0.7 → 1.2.1

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 (63) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/dist/assets/fonts/index.umd.cjs +1 -1
  3. package/dist/assets/images/index.js +4 -0
  4. package/dist/assets/images/index.ts +1 -0
  5. package/dist/assets/images/index.umd.cjs +1 -0
  6. package/dist/assets/index.js +4 -0
  7. package/dist/assets/index.ts +1 -0
  8. package/dist/assets/index.umd.cjs +1 -0
  9. package/dist/components/index.d.ts +3 -1
  10. package/dist/components/index.js +1013 -778
  11. package/dist/components/index.umd.cjs +91 -35
  12. package/dist/components/lukso-button/index.d.ts +8 -3
  13. package/dist/components/lukso-button/index.js +475 -463
  14. package/dist/components/lukso-button/index.umd.cjs +31 -25
  15. package/dist/components/lukso-navbar/index.d.ts +17 -0
  16. package/dist/components/lukso-navbar/index.js +1181 -0
  17. package/dist/components/lukso-navbar/index.umd.cjs +71 -0
  18. package/dist/components/lukso-test/index.d.ts +1 -1
  19. package/dist/components/lukso-test/index.js +590 -590
  20. package/dist/components/lukso-test/index.umd.cjs +25 -25
  21. package/dist/components/lukso-wizard/index.d.ts +18 -0
  22. package/dist/components/lukso-wizard/index.js +1297 -0
  23. package/dist/components/lukso-wizard/index.umd.cjs +89 -0
  24. package/dist/index.js +1013 -778
  25. package/dist/index.umd.cjs +91 -35
  26. package/dist/sass/color-palette.ts +7 -0
  27. package/dist/sass/index.umd.cjs +1 -1
  28. package/dist/sass/typography.scss +1 -1
  29. package/dist/shared/assets/images/index.d.ts +2 -0
  30. package/dist/shared/assets/index.d.ts +2 -0
  31. package/dist/shared/directives/{custom-class-map.d.ts → custom-class-map/index.d.ts} +3 -4
  32. package/dist/shared/directives/index.d.ts +2 -0
  33. package/dist/shared/{tailwind.element.d.ts → tailwind-element/index.d.ts} +1 -1
  34. package/dist/shared/tailwind-element/index.js +1064 -0
  35. package/dist/shared/tailwind-element/index.umd.cjs +39 -0
  36. package/dist/shared/tailwind-element.js +1064 -0
  37. package/dist/shared/tailwind-element.umd.cjs +39 -0
  38. package/dist/styles/index.umd.cjs +1 -1
  39. package/dist/styles/main.css +1 -1
  40. package/package.json +39 -10
  41. package/src/components/index.ts +3 -1
  42. package/src/components/lukso-button/index.ts +31 -12
  43. package/src/components/lukso-button/lukso-button.stories.ts +29 -21
  44. package/src/components/lukso-navbar/index.ts +61 -0
  45. package/src/components/lukso-navbar/lukso-navbar.stories.ts +44 -0
  46. package/src/components/lukso-test/index.ts +1 -1
  47. package/src/components/lukso-test/test.stories.ts +1 -1
  48. package/src/components/lukso-wizard/index.ts +74 -0
  49. package/src/components/lukso-wizard/lukso-wizard.stories.ts +45 -0
  50. package/src/shared/assets/images/index.ts +1 -0
  51. package/src/shared/assets/index.ts +1 -0
  52. package/src/shared/directives/{custom-class-map.ts → custom-class-map/index.ts} +1 -3
  53. package/src/shared/directives/index.ts +1 -0
  54. package/src/shared/styles/color-palette.ts +7 -0
  55. package/src/shared/styles/typography.scss +1 -1
  56. package/src/shared/{tailwind.element.ts → tailwind-element/index.ts} +1 -1
  57. package/tailwind.config.cjs +57 -1
  58. package/tools/color-palette.cjs +7 -1
  59. package/tools/color-palette.d.ts +5 -0
  60. package/tools/color-palette.d.ts.map +1 -1
  61. package/dist/shared/tailwind.element.js +0 -1064
  62. package/dist/shared/tailwind.element.umd.cjs +0 -39
  63. package/src/tailwind.config.ts +0 -60
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.1](https://github.com/lukso-network/tools-web-components/compare/v1.2.0...v1.2.1) (2023-01-30)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Put assets/images/index back in ([25dd4a9](https://github.com/lukso-network/tools-web-components/commit/25dd4a9ec039d7239630c4f9fba5ff94cf59d8d6))
9
+
10
+ ## [1.2.0](https://github.com/lukso-network/tools-web-components/compare/v1.1.0...v1.2.0) (2023-01-30)
11
+
12
+
13
+ ### Features
14
+
15
+ * navbar component ([#19](https://github.com/lukso-network/tools-web-components/issues/19)) ([0a918f5](https://github.com/lukso-network/tools-web-components/commit/0a918f51f4d8373a0d84663f8e7829519742d006))
16
+ * wizard component ([#21](https://github.com/lukso-network/tools-web-components/issues/21)) ([d37ae22](https://github.com/lukso-network/tools-web-components/commit/d37ae2269b99d4b79de7ddf3d2a960829c0fa598))
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * Assets index file somehow got lost ([#24](https://github.com/lukso-network/tools-web-components/issues/24)) ([7181071](https://github.com/lukso-network/tools-web-components/commit/7181071fc51b82a19800489d92f7ed860ba8938e))
22
+ * Build problems ([#20](https://github.com/lukso-network/tools-web-components/issues/20)) ([ddbf7ba](https://github.com/lukso-network/tools-web-components/commit/ddbf7baabf7b0f16268bf19a6685a41977e1c4da))
23
+ * component adjustments ([#23](https://github.com/lukso-network/tools-web-components/issues/23)) ([517d2a0](https://github.com/lukso-network/tools-web-components/commit/517d2a04285e7ece6e50f4587dd673cf7b8a7ccc))
24
+
25
+ ## [1.1.0](https://github.com/lukso-network/tools-web-components/compare/v1.0.7...v1.1.0) (2023-01-26)
26
+
27
+
28
+ ### Features
29
+
30
+ * drop shadows ([#16](https://github.com/lukso-network/tools-web-components/issues/16)) ([3736e91](https://github.com/lukso-network/tools-web-components/commit/3736e917545f7a8660d68cf4b0336ba2a9b76f4d))
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * Don't pass -w and setup watch ignored list. ([3d70acb](https://github.com/lukso-network/tools-web-components/commit/3d70acbe6e20654327444233a41ad639d42299d7))
36
+ * Simplify eslint/vite/tsconfig to remove custom chokidar settings ([#18](https://github.com/lukso-network/tools-web-components/issues/18)) ([338bd5d](https://github.com/lukso-network/tools-web-components/commit/338bd5dd8a7862ca6fdf020e799928bc717383c5))
37
+ * Vite and storybook build and config. ([#17](https://github.com/lukso-network/tools-web-components/issues/17)) ([da873f1](https://github.com/lukso-network/tools-web-components/commit/da873f10cd136e3640ba1d03fce2d7535d469dc9))
38
+
3
39
  ## [1.0.7](https://github.com/lukso-network/tools-web-components/compare/v1.0.6...v1.0.7) (2023-01-24)
4
40
 
5
41
 
@@ -1 +1 @@
1
- (function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e["Lukso Components: Fonts"]=n())})(this,function(){"use strict";return __dirname});
1
+ (function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.web_components_fonts=n())})(this,function(){"use strict";return __dirname});
@@ -0,0 +1,4 @@
1
+ const a = __dirname;
2
+ export {
3
+ a as default
4
+ };
@@ -0,0 +1 @@
1
+ export default __dirname
@@ -0,0 +1 @@
1
+ (function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.web_components_images=n())})(this,function(){"use strict";return __dirname});
@@ -0,0 +1,4 @@
1
+ const a = __dirname;
2
+ export {
3
+ a as default
4
+ };
@@ -0,0 +1 @@
1
+ export default __dirname
@@ -0,0 +1 @@
1
+ (function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.web_components_assets=n())})(this,function(){"use strict";return __dirname});
@@ -1,4 +1,6 @@
1
1
  export * from './lukso-button/index';
2
+ export * from './lukso-navbar/index';
2
3
  export * from './lukso-test/index';
3
- export * from './../shared/tailwind.element';
4
+ export * from './lukso-wizard/index';
5
+ export * from './../shared/tailwind-element/index';
4
6
  //# sourceMappingURL=index.d.ts.map