@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.
@@ -9,10 +9,10 @@
9
9
  DTS Build start
10
10
  ESM dist/index.js 521.48 KB
11
11
  ESM dist/index.js.map 1.07 MB
12
- ESM ⚡️ Build success in 7569ms
13
- CJS dist/index.cjs 551.88 KB
12
+ ESM ⚡️ Build success in 7873ms
13
+ CJS dist/index.cjs 551.89 KB
14
14
  CJS dist/index.cjs.map 1.07 MB
15
- CJS ⚡️ Build success in 7569ms
16
- DTS ⚡️ Build success in 22834ms
15
+ CJS ⚡️ Build success in 7873ms
16
+ DTS ⚡️ Build success in 21420ms
17
17
  DTS dist/index.d.cts 102.54 KB
18
18
  DTS dist/index.d.ts 102.54 KB
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 ? { flex: 1 } : {}));
1232
+ }, fullWidth ? { flexShrink: 1 } : {}));
1233
1233
  var StyledSpinnerWrapper = styled51__default.default(reactNative.View)({
1234
1234
  position: "absolute",
1235
1235
  alignItems: "center",