@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.
- package/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +3 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/Checkbox/Checkbox.stories.tsx +4 -1
- package/src/components/molecules/Checkbox/Checkbox.tsx +5 -6
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
|
-
[
|
|
11
|
-
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.06 MB[39m
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in 8017ms
|
|
13
|
-
[32mESM[39m [1mdist/index.js [22m[32m518.18 KB[39m
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m518.12 KB[39m
|
|
14
11
|
[32mESM[39m [1mdist/index.js.map [22m[32m1.06 MB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
-
[
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 7711ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m548.33 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.06 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 7715ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 22565ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m102.08 KB[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m102.08 KB[39m
|
package/CHANGELOG.md
CHANGED
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
|
|
6757
|
+
var StyledContent2 = styled51__default.default(reactNative.View)(({ contentGap }) => ({
|
|
6758
6758
|
flexDirection: "column",
|
|
6759
6759
|
gap: contentGap,
|
|
6760
|
-
flex:
|
|
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,
|