@butternutbox/pawprint-native 0.16.0 → 0.17.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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +20 -0
- package/dist/index.cjs +333 -131
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +334 -132
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/atoms/Button/Button.stories.tsx +44 -0
- package/src/components/atoms/Icon/Icon.tsx +1 -1
- package/src/components/molecules/NumberField/NumberFieldInput.tsx +10 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
[34mCJS[39m Build start
|
|
8
8
|
[34mESM[39m Build start
|
|
9
9
|
[34mDTS[39m Build start
|
|
10
|
-
[32mESM[39m [1mdist/index.js [22m[
|
|
11
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m1.
|
|
12
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
-
[32mCJS[39m [1mdist/index.cjs [22m[
|
|
14
|
-
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.cts [22m[32m99.
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m99.
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m510.74 KB[39m
|
|
11
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m1.04 MB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 8194ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m540.48 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.04 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 8195ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 24290ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m99.80 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m99.80 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8cff714: update marketing icons with new sizes and color
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [8cff714]
|
|
12
|
+
- @butternutbox/pawprint-tokens@0.4.0
|
|
13
|
+
|
|
14
|
+
## 0.16.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 1223ab7: `NumberField`: render the large field's `inlineHelpText` at the secondary-content
|
|
19
|
+
size (`body.medium.md`, 16px) instead of the shared input description size
|
|
20
|
+
(`body.medium.sm`, 14px), matching the design-system spec. Small fields are
|
|
21
|
+
unchanged (`body.medium.sm`).
|
|
22
|
+
|
|
3
23
|
## 0.16.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|