@butternutbox/pawprint-native 0.21.0 → 0.22.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.
@@ -7,12 +7,12 @@
7
7
  CJS Build start
8
8
  ESM Build start
9
9
  DTS Build start
10
- CJS dist/index.cjs 548.39 KB
11
- CJS dist/index.cjs.map 1.06 MB
12
- CJS ⚡️ Build success in 8017ms
13
- ESM dist/index.js 518.18 KB
10
+ ESM dist/index.js 518.12 KB
14
11
  ESM dist/index.js.map 1.06 MB
15
- ESM ⚡️ Build success in 8017ms
16
- DTS ⚡️ Build success in 22080ms
12
+ ESM ⚡️ Build success in 7711ms
13
+ CJS dist/index.cjs 548.33 KB
14
+ CJS dist/index.cjs.map 1.06 MB
15
+ CJS ⚡️ Build success in 7715ms
16
+ DTS ⚡️ Build success in 22565ms
17
17
  DTS dist/index.d.cts 102.08 KB
18
18
  DTS dist/index.d.ts 102.08 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @butternutbox/pawprint-native
2
2
 
3
+ ## 0.22.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 19b56fb: Allow checkbox content to drop to multiple lines
8
+
3
9
  ## 0.21.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.cjs CHANGED
@@ -6733,7 +6733,7 @@ var StyledRootPressable = styled51__default.default(reactNative.Pressable)(
6733
6733
  alignItems: rootFlexAlign,
6734
6734
  gap: rootGap,
6735
6735
  opacity: rootOpacity
6736
- }, rootPaddingVertical !== void 0 ? { paddingVertical: rootPaddingVertical } : {}), rootPaddingHorizontal !== void 0 ? { paddingHorizontal: rootPaddingHorizontal } : {}), rootMaxWidth !== void 0 ? rootFitContent ? { maxWidth: rootMaxWidth, alignSelf: "flex-start" } : { maxWidth: rootMaxWidth, width: "100%" } : {}), rootBgColor ? { backgroundColor: rootBgColor } : {}), rootBorderWidth !== void 0 ? { borderWidth: rootBorderWidth, borderColor: rootBorderColor } : {}), rootBorderRadius !== void 0 ? { borderRadius: rootBorderRadius } : {})
6736
+ }, rootPaddingVertical !== void 0 ? { paddingVertical: rootPaddingVertical } : {}), rootPaddingHorizontal !== void 0 ? { paddingHorizontal: rootPaddingHorizontal } : {}), rootMaxWidth !== void 0 ? rootFitContent ? { maxWidth: rootMaxWidth, alignSelf: "flex-start" } : { maxWidth: rootMaxWidth, width: "100%" } : { width: "100%" }), rootBgColor ? { backgroundColor: rootBgColor } : {}), rootBorderWidth !== void 0 ? { borderWidth: rootBorderWidth, borderColor: rootBorderColor } : {}), rootBorderRadius !== void 0 ? { borderRadius: rootBorderRadius } : {})
6737
6737
  );
6738
6738
  var StyledControl = styled51__default.default(reactNative.View)(
6739
6739
  ({
@@ -6754,10 +6754,10 @@ var StyledControl = styled51__default.default(reactNative.View)(
6754
6754
  justifyContent: "center"
6755
6755
  })
6756
6756
  );
6757
- var StyledContent2 = styled51__default.default(reactNative.View)(({ contentGap, contentFlex }) => ({
6757
+ var StyledContent2 = styled51__default.default(reactNative.View)(({ contentGap }) => ({
6758
6758
  flexDirection: "column",
6759
6759
  gap: contentGap,
6760
- flex: contentFlex,
6760
+ flex: 1,
6761
6761
  minWidth: 0
6762
6762
  }));
6763
6763
  var StyledIllustration = styled51__default.default(reactNative.View)(({ illustrationSize }) => ({
@@ -6846,7 +6846,6 @@ var Checkbox = React66__default.default.forwardRef(
6846
6846
  StyledContent2,
6847
6847
  {
6848
6848
  contentGap: parseTokenValue31(checkbox.spacing.content.gap),
6849
- contentFlex: isTile && fitContent ? 0 : 1,
6850
6849
  children: [
6851
6850
  label && /* @__PURE__ */ jsxRuntime.jsx(
6852
6851
  Typography,