@lukso/web-components 1.2.2 → 1.3.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.
- package/CHANGELOG.md +15 -0
- package/README.md +4 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/components/index.js +1596 -527
- package/dist/components/index.umd.cjs +159 -40
- package/dist/components/lukso-button/index.d.ts +1 -0
- package/dist/components/lukso-button/index.js +131 -127
- package/dist/components/lukso-button/index.umd.cjs +16 -16
- package/dist/components/lukso-card/index.d.ts +19 -0
- package/dist/components/lukso-card/index.js +1541 -0
- package/dist/components/lukso-card/index.umd.cjs +144 -0
- package/dist/components/lukso-navbar/index.js +2 -2
- package/dist/components/lukso-navbar/index.umd.cjs +2 -2
- package/dist/components/lukso-profile/index.d.ts +25 -0
- package/dist/components/lukso-profile/index.js +1423 -0
- package/dist/components/lukso-profile/index.umd.cjs +90 -0
- package/dist/components/lukso-sanitize/index.d.ts +12 -0
- package/dist/components/lukso-sanitize/index.js +1626 -0
- package/dist/components/lukso-sanitize/index.umd.cjs +61 -0
- package/dist/components/lukso-tag/index.d.ts +20 -0
- package/dist/components/lukso-tag/index.js +1209 -0
- package/dist/components/lukso-tag/index.umd.cjs +67 -0
- package/dist/components/lukso-test/index.js +46 -46
- package/dist/components/lukso-test/index.umd.cjs +22 -22
- package/dist/components/lukso-username/index.d.ts +34 -0
- package/dist/components/lukso-username/index.js +1255 -0
- package/dist/components/lukso-username/index.umd.cjs +75 -0
- package/dist/components/lukso-wizard/index.js +2 -2
- package/dist/components/lukso-wizard/index.umd.cjs +2 -2
- package/dist/index.js +1596 -527
- package/dist/index.umd.cjs +159 -40
- package/dist/sass/typography.scss +4 -4
- package/dist/shared/tailwind-element/index.js +146 -146
- package/dist/shared/tailwind-element/index.umd.cjs +1 -1
- package/dist/shared/tailwind-element.js +146 -146
- package/dist/shared/tailwind-element.umd.cjs +1 -1
- package/dist/shared/utils/sliceAddress.d.ts +9 -0
- package/dist/styles/main.css +4 -4
- package/package.json +30 -2
- package/src/components/index.ts +5 -0
- package/src/components/lukso-button/index.ts +4 -0
- package/src/components/lukso-button/lukso-button.stories.ts +64 -5
- package/src/components/lukso-card/index.ts +118 -0
- package/src/components/lukso-card/lukso-card.stories.ts +135 -0
- package/src/components/lukso-navbar/index.ts +1 -1
- package/src/components/lukso-navbar/lukso-navbar.stories.ts +13 -4
- package/src/components/lukso-profile/index.ts +100 -0
- package/src/components/lukso-profile/lukso-profile.stories.ts +87 -0
- package/src/components/lukso-sanitize/index.ts +28 -0
- package/src/components/lukso-sanitize/lukso-sanitize.stories.ts +26 -0
- package/src/components/lukso-tag/index.ts +68 -0
- package/src/components/lukso-tag/lukso-tag.stories.ts +107 -0
- package/src/components/lukso-username/index.ts +104 -0
- package/src/components/lukso-username/lukso-username.stories.ts +94 -0
- package/src/components/lukso-wizard/index.ts +1 -1
- package/src/components/lukso-wizard/lukso-wizard.stories.ts +6 -2
- package/src/shared/styles/typography.scss +4 -4
- package/src/shared/utils/__tests__/sliceAddress.spec.ts +15 -0
- package/src/shared/utils/sliceAddress.ts +30 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.3.0](https://github.com/lukso-network/tools-web-components/compare/v1.2.2...v1.3.0) (2023-02-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* 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))
|
|
9
|
+
* sanitize component ([#31](https://github.com/lukso-network/tools-web-components/issues/31)) ([aa0558c](https://github.com/lukso-network/tools-web-components/commit/aa0558c80b9f12082f00a05a727b651734b60d76))
|
|
10
|
+
* tag component ([#30](https://github.com/lukso-network/tools-web-components/issues/30)) ([77f4fb5](https://github.com/lukso-network/tools-web-components/commit/77f4fb5dfd1b6dd4961d1928cb2a7994e4def0af))
|
|
11
|
+
* username component ([#34](https://github.com/lukso-network/tools-web-components/issues/34)) ([d619356](https://github.com/lukso-network/tools-web-components/commit/d619356d31ba4fbe814bff1bbb8d29b13b67c0ff))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* 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))
|
|
17
|
+
|
|
3
18
|
## [1.2.2](https://github.com/lukso-network/tools-web-components/compare/v1.2.1...v1.2.2) (2023-02-01)
|
|
4
19
|
|
|
5
20
|
|
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
|