@butternutbox/pawprint-native 0.23.1 → 0.23.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 +4 -4
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/Button/Button.tsx +5 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
[34mDTS[39m Build start
|
|
10
10
|
[32mESM[39m [1mdist/index.js [22m[32m521.48 KB[39m
|
|
11
11
|
[32mESM[39m [1mdist/index.js.map [22m[32m1.07 MB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m551.
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 7873ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m551.89 KB[39m
|
|
14
14
|
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.07 MB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 7873ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 21420ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m102.54 KB[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m102.54 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.23.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ec36679: Fix Button `startIcon`/`endIcon` alignment on full-width buttons. The text wrapper used `flex: 1`, which grew to fill the row and pushed the icon out to the button edge on short copy. Switched to `flexShrink: 1` so long/translated copy still wraps under the button's `minHeight`, while short copy keeps the icon next to the centred text.
|
|
8
|
+
|
|
3
9
|
## 0.23.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -1229,7 +1229,7 @@ var StyledButton = styled51__default.default(reactNative.Pressable)(
|
|
|
1229
1229
|
);
|
|
1230
1230
|
var StyledTextWrapper = styled51__default.default(reactNative.View)(({ textOpacity, fullWidth }) => __spreadValues({
|
|
1231
1231
|
opacity: textOpacity
|
|
1232
|
-
}, fullWidth ? {
|
|
1232
|
+
}, fullWidth ? { flexShrink: 1 } : {}));
|
|
1233
1233
|
var StyledSpinnerWrapper = styled51__default.default(reactNative.View)({
|
|
1234
1234
|
position: "absolute",
|
|
1235
1235
|
alignItems: "center",
|