@lukso/web-components 1.2.2 → 1.3.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 (59) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +4 -0
  3. package/dist/components/index.d.ts +5 -0
  4. package/dist/components/index.js +1597 -527
  5. package/dist/components/index.umd.cjs +159 -40
  6. package/dist/components/lukso-button/index.d.ts +1 -0
  7. package/dist/components/lukso-button/index.js +131 -127
  8. package/dist/components/lukso-button/index.umd.cjs +16 -16
  9. package/dist/components/lukso-card/index.d.ts +19 -0
  10. package/dist/components/lukso-card/index.js +1541 -0
  11. package/dist/components/lukso-card/index.umd.cjs +144 -0
  12. package/dist/components/lukso-navbar/index.js +2 -2
  13. package/dist/components/lukso-navbar/index.umd.cjs +2 -2
  14. package/dist/components/lukso-profile/index.d.ts +25 -0
  15. package/dist/components/lukso-profile/index.js +1423 -0
  16. package/dist/components/lukso-profile/index.umd.cjs +90 -0
  17. package/dist/components/lukso-sanitize/index.d.ts +12 -0
  18. package/dist/components/lukso-sanitize/index.js +1626 -0
  19. package/dist/components/lukso-sanitize/index.umd.cjs +61 -0
  20. package/dist/components/lukso-tag/index.d.ts +20 -0
  21. package/dist/components/lukso-tag/index.js +1209 -0
  22. package/dist/components/lukso-tag/index.umd.cjs +67 -0
  23. package/dist/components/lukso-test/index.js +154 -154
  24. package/dist/components/lukso-test/index.umd.cjs +22 -22
  25. package/dist/components/lukso-username/index.d.ts +34 -0
  26. package/dist/components/lukso-username/index.js +1256 -0
  27. package/dist/components/lukso-username/index.umd.cjs +75 -0
  28. package/dist/components/lukso-wizard/index.js +2 -2
  29. package/dist/components/lukso-wizard/index.umd.cjs +8 -8
  30. package/dist/index.js +1597 -527
  31. package/dist/index.umd.cjs +159 -40
  32. package/dist/sass/typography.scss +6 -6
  33. package/dist/shared/tailwind-element/index.js +1 -1
  34. package/dist/shared/tailwind-element/index.umd.cjs +1 -1
  35. package/dist/shared/tailwind-element.js +1 -1
  36. package/dist/shared/tailwind-element.umd.cjs +1 -1
  37. package/dist/shared/utils/sliceAddress.d.ts +9 -0
  38. package/dist/styles/main.css +6 -6
  39. package/package.json +30 -2
  40. package/src/components/index.ts +5 -0
  41. package/src/components/lukso-button/index.ts +4 -0
  42. package/src/components/lukso-button/lukso-button.stories.ts +64 -5
  43. package/src/components/lukso-card/index.ts +118 -0
  44. package/src/components/lukso-card/lukso-card.stories.ts +135 -0
  45. package/src/components/lukso-navbar/index.ts +1 -1
  46. package/src/components/lukso-navbar/lukso-navbar.stories.ts +13 -4
  47. package/src/components/lukso-profile/index.ts +100 -0
  48. package/src/components/lukso-profile/lukso-profile.stories.ts +87 -0
  49. package/src/components/lukso-sanitize/index.ts +28 -0
  50. package/src/components/lukso-sanitize/lukso-sanitize.stories.ts +26 -0
  51. package/src/components/lukso-tag/index.ts +68 -0
  52. package/src/components/lukso-tag/lukso-tag.stories.ts +107 -0
  53. package/src/components/lukso-username/index.ts +105 -0
  54. package/src/components/lukso-username/lukso-username.stories.ts +90 -0
  55. package/src/components/lukso-wizard/index.ts +1 -1
  56. package/src/components/lukso-wizard/lukso-wizard.stories.ts +6 -2
  57. package/src/shared/styles/typography.scss +6 -6
  58. package/src/shared/utils/__tests__/sliceAddress.spec.ts +15 -0
  59. package/src/shared/utils/sliceAddress.ts +30 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.1](https://github.com/lukso-network/tools-web-components/compare/v1.3.0...v1.3.1) (2023-02-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * change letter spacing in uppercase headers ([#36](https://github.com/lukso-network/tools-web-components/issues/36)) ([a691a1f](https://github.com/lukso-network/tools-web-components/commit/a691a1fd526560c4fb3ff81d45ce2973a31fed68))
9
+ * username default color ([#35](https://github.com/lukso-network/tools-web-components/issues/35)) ([bf2b5df](https://github.com/lukso-network/tools-web-components/commit/bf2b5df1363d6456d6ac7c7ec0304190ba9a4710))
10
+
11
+ ## [1.3.0](https://github.com/lukso-network/tools-web-components/compare/v1.2.2...v1.3.0) (2023-02-05)
12
+
13
+
14
+ ### Features
15
+
16
+ * profile and card component ([#28](https://github.com/lukso-network/tools-web-components/issues/28)) ([e78c6b5](https://github.com/lukso-network/tools-web-components/commit/e78c6b51a0f2d46e8908bfb6ab3869435323900d))
17
+ * sanitize component ([#31](https://github.com/lukso-network/tools-web-components/issues/31)) ([aa0558c](https://github.com/lukso-network/tools-web-components/commit/aa0558c80b9f12082f00a05a727b651734b60d76))
18
+ * tag component ([#30](https://github.com/lukso-network/tools-web-components/issues/30)) ([77f4fb5](https://github.com/lukso-network/tools-web-components/commit/77f4fb5dfd1b6dd4961d1928cb2a7994e4def0af))
19
+ * username component ([#34](https://github.com/lukso-network/tools-web-components/issues/34)) ([d619356](https://github.com/lukso-network/tools-web-components/commit/d619356d31ba4fbe814bff1bbb8d29b13b67c0ff))
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * change size of large profile ([#32](https://github.com/lukso-network/tools-web-components/issues/32)) ([3b1a9b2](https://github.com/lukso-network/tools-web-components/commit/3b1a9b297d3514598345951361409eff20d55c41))
25
+
3
26
  ## [1.2.2](https://github.com/lukso-network/tools-web-components/compare/v1.2.1...v1.2.2) (2023-02-01)
4
27
 
5
28
 
package/README.md CHANGED
@@ -83,6 +83,10 @@ yarn lint
83
83
  yarn test
84
84
  ```
85
85
 
86
+ ## Releasing project
87
+
88
+ This repo uses [Release Please](https://github.com/googleapis/release-please) to automate release process. It's important to follow [Conventional Commits](https://www.conventionalcommits.org/) spec for naming Pull Requests. Once PR is merged into `main` the release PR will be created. When release PR is merged new package is released in npm.
89
+
86
90
  ## Linking the library
87
91
 
88
92
  For local development it's handy to link component library with the project you currently develop. This way you can work with components like in normal app. To make it work you need to first link the library:
@@ -1,6 +1,11 @@
1
1
  export * from './lukso-button/index';
2
+ export * from './lukso-card/index';
2
3
  export * from './lukso-navbar/index';
4
+ export * from './lukso-profile/index';
5
+ export * from './lukso-sanitize/index';
6
+ export * from './lukso-tag/index';
3
7
  export * from './lukso-test/index';
8
+ export * from './lukso-username/index';
4
9
  export * from './lukso-wizard/index';
5
10
  export * from './../shared/tailwind-element/index';
6
11
  //# sourceMappingURL=index.d.ts.map