@butternutbox/pawprint-native 0.18.0 → 0.19.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 +7 -7
- package/CHANGELOG.md +20 -0
- package/dist/index.cjs +154 -122
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +154 -122
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/Button/Button.stories.tsx +6 -4
- package/src/components/atoms/Switch/Switch.tsx +20 -12
- package/src/components/molecules/Drawer/DrawerBody.tsx +11 -1
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[32m1.
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
-
[32mESM[39m [1mdist/index.js [22m[
|
|
14
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m1.
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
10
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m546.41 KB[39m
|
|
11
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.06 MB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 7807ms
|
|
13
|
+
[32mESM[39m [1mdist/index.js [22m[32m516.34 KB[39m
|
|
14
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m1.06 MB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 7808ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 22733ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m100.86 KB[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m100.86 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.19.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 278e5c6: fix switch component not firing touch events
|
|
8
|
+
|
|
9
|
+
## 0.19.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- dc0abdf: Drawer: apply the bottom safe-area inset to a footer-less body
|
|
14
|
+
|
|
15
|
+
When a `Drawer` has no `Drawer.Footer`, the body is the last element in the
|
|
16
|
+
panel, so it must clear the bottom safe area (iOS home indicator / Android
|
|
17
|
+
navigation bar) itself — as `Drawer.Footer` already does when present.
|
|
18
|
+
`DrawerBody` now sets its bottom padding to `max(spacing.2xl, insets.bottom)`
|
|
19
|
+
in the no-footer case, so short insets keep the usual spacing while a taller
|
|
20
|
+
inset (e.g. the Android nav bar) is no longer clipped. Footered drawers are
|
|
21
|
+
unchanged.
|
|
22
|
+
|
|
3
23
|
## 0.18.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|