@butternutbox/pawprint-native 0.19.0 → 0.19.2
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 +14 -0
- package/dist/index.cjs +156 -122
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +156 -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/NativeSelectPicker/NativeSelectPicker.tsx +9 -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
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m516.72 KB[39m
|
|
11
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m1.06 MB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 7309ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m546.81 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.06 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 7309ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 21698ms
|
|
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,19 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.19.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 68b227a: `NativeSelectPicker`: fix the Android options panel being too short.
|
|
8
|
+
|
|
9
|
+
On Android the options `FlatList` was capped at a tiny fixed height (`spacing["8xl"]`), so only ~1 option was visible with a cramped scrollbar. It now sizes to a fraction of the screen height, filling the bottom-sheet dialog so all options are reachable/scrollable — matching the full-height iOS `ActionSheetIOS` picker. iOS is unaffected.
|
|
10
|
+
|
|
11
|
+
## 0.19.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 278e5c6: fix switch component not firing touch events
|
|
16
|
+
|
|
3
17
|
## 0.19.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|