@butternutbox/pawprint-native 0.1.0 → 0.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.
- package/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +20 -0
- package/dist/index.cjs +2213 -2174
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2212 -2173
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
- package/src/components/atoms/Illustration/Illustration.stories.tsx +2 -2
- package/src/components/atoms/Illustration/Illustration.tsx +3 -3
- package/src/components/atoms/Link/Link.test.tsx +3 -3
- package/src/components/atoms/Link/Link.tsx +7 -6
- package/src/components/atoms/Switch/Switch.tsx +13 -5
- package/src/components/molecules/ButtonDock/ButtonDock.stories.tsx +44 -25
- package/src/components/molecules/ButtonDock/ButtonDock.tsx +16 -13
- package/src/components/molecules/ButtonGroup/ButtonGroup.stories.tsx +47 -22
- package/src/components/molecules/FilterTab/FilterTab.tsx +4 -4
- package/src/components/molecules/PasswordField/PasswordFieldError.tsx +6 -5
- package/src/components/molecules/PasswordField/PasswordFieldRequirements.tsx +11 -8
- package/src/components/molecules/PictureSelector/PictureSelector.stories.tsx +0 -39
- package/src/components/molecules/PictureSelector/PictureSelector.tsx +58 -36
- package/tsup.config.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
[32mESM[39m [1mdist/ibm-plex-sans-condensed-600-normal-UX5ZU5T6.woff2 [22m[32m19.35 KB[39m
|
|
15
15
|
[32mESM[39m [1mdist/ibm-plex-sans-condensed-700-normal-4PFYFTSO.woff2 [22m[32m18.90 KB[39m
|
|
16
16
|
[32mESM[39m [1mdist/index.js [22m[32m1.61 MB[39m
|
|
17
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m2.
|
|
18
|
-
[32mESM[39m ⚡️ Build success in
|
|
17
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m2.50 MB[39m
|
|
18
|
+
[32mESM[39m ⚡️ Build success in 11205ms
|
|
19
19
|
[32mCJS[39m [1mdist/ida-narrow-500-normal-C6I2PK4T.woff2 [22m[32m47.41 KB[39m
|
|
20
20
|
[32mCJS[39m [1mdist/ida-narrow-700-normal-UPHPRIN6.woff2 [22m[32m49.90 KB[39m
|
|
21
21
|
[32mCJS[39m [1mdist/ibm-plex-sans-condensed-400-normal-I2XLJNNB.woff2 [22m[32m19.33 KB[39m
|
|
22
22
|
[32mCJS[39m [1mdist/ibm-plex-sans-condensed-500-normal-IEQBNVGX.woff2 [22m[32m19.48 KB[39m
|
|
23
23
|
[32mCJS[39m [1mdist/ibm-plex-sans-condensed-600-normal-UX5ZU5T6.woff2 [22m[32m19.35 KB[39m
|
|
24
24
|
[32mCJS[39m [1mdist/ibm-plex-sans-condensed-700-normal-4PFYFTSO.woff2 [22m[32m18.90 KB[39m
|
|
25
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m1.
|
|
26
|
-
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.
|
|
27
|
-
[32mCJS[39m ⚡️ Build success in
|
|
28
|
-
[32mDTS[39m ⚡️ Build success in
|
|
29
|
-
[32mDTS[39m [1mdist/index.d.cts [22m[32m76.
|
|
30
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m76.
|
|
25
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m1.68 MB[39m
|
|
26
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.50 MB[39m
|
|
27
|
+
[32mCJS[39m ⚡️ Build success in 11207ms
|
|
28
|
+
[32mDTS[39m ⚡️ Build success in 21325ms
|
|
29
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m76.91 KB[39m
|
|
30
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m76.91 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e48b82f: compile icons for pawprint-native and add line height to typography element'
|
|
8
|
+
|
|
9
|
+
## 0.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- ecc629f: updates to illustraions, icons and tokens
|
|
14
|
+
- b237a0d: Bump versions to all be inline
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 30f896c: add rn-primitives/select to dependencies
|
|
19
|
+
- Updated dependencies [ecc629f]
|
|
20
|
+
- Updated dependencies [b237a0d]
|
|
21
|
+
- @butternutbox/pawprint-tokens@0.2.0
|
|
22
|
+
|
|
3
23
|
## 0.1.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|