@butternutbox/pawprint-native 0.10.11 → 0.11.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 +7 -7
- package/CHANGELOG.md +10 -0
- package/dist/index.cjs +279 -164
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +45 -1
- package/dist/index.d.ts +45 -1
- package/dist/index.js +280 -165
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/__mocks__/react-native-reanimated.tsx +35 -1
- package/src/__mocks__/react-native.tsx +9 -0
- package/src/components/molecules/Checkbox/Checkbox.tsx +102 -105
- package/src/components/molecules/StackedNotifications/StackedNotifications.stories.tsx +220 -0
- package/src/components/molecules/StackedNotifications/StackedNotifications.test.tsx +202 -0
- package/src/components/molecules/StackedNotifications/StackedNotifications.tsx +247 -0
- package/src/components/molecules/StackedNotifications/index.ts +6 -0
- package/src/components/molecules/index.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
[34mESM[39m Build start
|
|
9
9
|
[34mDTS[39m Build start
|
|
10
10
|
[32mCJS[39m [1mdist/index.cjs [22m[32m1.80 MB[39m
|
|
11
|
-
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.72 MB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 11429ms
|
|
13
13
|
[32mESM[39m [1mdist/index.js [22m[32m1.73 MB[39m
|
|
14
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m2.
|
|
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[
|
|
14
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m2.71 MB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 11429ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 23432ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m93.49 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m93.49 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a34f1da: Adds new StackedNotifications component
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 6addd2e: Fix Checkbox not responding to taps on device. The `@rn-primitives/checkbox` native build does not forward `asChild`, so the tile/standalone checkbox nested a second `Pressable` that swallowed the press before it reached the toggle handler (it only worked on web, where DOM clicks bubble). Checkbox now owns a single `Pressable` and drives its checked state directly, mirroring `Radio`.
|
|
12
|
+
|
|
3
13
|
## 0.10.11
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|