@butternutbox/pawprint-native 0.11.0 → 0.12.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 +1076 -4507
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +26 -1
- package/dist/index.d.ts +26 -1
- package/dist/index.js +990 -4422
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/Avatar/Avatar.tsx +2 -2
- 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/.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
|
-
[32mCJS[39m [1mdist/index.cjs [22m[
|
|
11
|
-
[32mCJS[39m [1mdist/index.cjs.map [22m[
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
-
[32mESM[39m [1mdist/index.js [22m[
|
|
14
|
-
[32mESM[39m [1mdist/index.js.map [22m[
|
|
15
|
-
[32mESM[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
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m527.12 KB[39m
|
|
11
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.00 MB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 7832ms
|
|
13
|
+
[32mESM[39m [1mdist/index.js [22m[32m497.76 KB[39m
|
|
14
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m1.00 MB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 7831ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 23575ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m94.46 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m94.46 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 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.
|
|
8
|
+
|
|
9
|
+
## 0.11.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 77c7bf1: Avatar: use the core `DogHead` icon for the image fallback instead of the marketing `DogHeadOutlinedPrimary` illustration. The marketing glyph rendered oversized and cropped by the avatar circle on native iOS (react-native-web Storybook masked it), and it's a different, more detailed drawing than the component library's avatar dog-head. Core `DogHead` matches the design (simpler, padded via its built-in `scale(0.75)`) and sizes correctly on native.
|
|
14
|
+
|
|
3
15
|
## 0.11.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|