@butternutbox/pawprint-native 0.11.1 → 0.13.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 +12 -0
- package/dist/index.cjs +922 -881
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +39 -4
- package/dist/index.d.ts +39 -4
- package/dist/index.js +760 -720
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/Divider/Divider.stories.tsx +71 -0
- package/src/components/atoms/Divider/Divider.test.tsx +25 -0
- package/src/components/atoms/Divider/Divider.tsx +61 -0
- package/src/components/atoms/Divider/index.ts +2 -0
- package/src/components/atoms/index.ts +1 -0
- package/src/components/molecules/Checkbox/Checkbox.tsx +19 -3
- package/src/components/molecules/Checkbox/CheckboxGroup.tsx +31 -7
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[
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m498.51 KB[39m
|
|
11
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m1.01 MB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 7655ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m527.91 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.01 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 7657ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 21826ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m94.97 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m94.97 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3637663: `CheckboxGroup` with `orientation="horizontal"` now wraps its tiles onto multiple rows and makes them hug their content, so checkbox tiles can sit side by side. Adds a `fitContent` prop to `Checkbox` (tile only) to opt into content-hugging width — the horizontal group sets it automatically. Vertical groups and standalone checkboxes are unchanged.
|
|
8
|
+
|
|
9
|
+
## 0.12.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 951c311: Add `Divider` atom — the native counterpart to the web `Divider`. A horizontal rule with `size` (small = 1px / medium = 2px / large = 4px) and `colour` (light / dark) variants, driven by the divider design tokens.
|
|
14
|
+
|
|
3
15
|
## 0.11.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|