@butternutbox/pawprint-native 0.23.0 → 0.23.1
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 +4 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/Button/Button.tsx +4 -3
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.07 MB[39m
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in 7688ms
|
|
13
|
-
[32mESM[39m [1mdist/index.js [22m[32m521.42 KB[39m
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m521.48 KB[39m
|
|
14
11
|
[32mESM[39m [1mdist/index.js.map [22m[32m1.07 MB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
-
[
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 7569ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m551.88 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.07 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 7569ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 22834ms
|
|
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
package/dist/index.cjs
CHANGED
|
@@ -1227,10 +1227,9 @@ var StyledButton = styled51__default.default(reactNative.Pressable)(
|
|
|
1227
1227
|
opacity: buttonOpacity
|
|
1228
1228
|
}, buttonBorderWidth ? { borderWidth: buttonBorderWidth, borderColor: buttonBorderColor } : {}), buttonFullWidth ? { width: "100%" } : {})
|
|
1229
1229
|
);
|
|
1230
|
-
var StyledTextWrapper = styled51__default.default(reactNative.View)(({ textOpacity }) => ({
|
|
1231
|
-
opacity: textOpacity
|
|
1232
|
-
|
|
1233
|
-
}));
|
|
1230
|
+
var StyledTextWrapper = styled51__default.default(reactNative.View)(({ textOpacity, fullWidth }) => __spreadValues({
|
|
1231
|
+
opacity: textOpacity
|
|
1232
|
+
}, fullWidth ? { flex: 1 } : {}));
|
|
1234
1233
|
var StyledSpinnerWrapper = styled51__default.default(reactNative.View)({
|
|
1235
1234
|
position: "absolute",
|
|
1236
1235
|
alignItems: "center",
|
|
@@ -1321,7 +1320,7 @@ var Button = React66__default.default.forwardRef(
|
|
|
1321
1320
|
}, rest), {
|
|
1322
1321
|
children: [
|
|
1323
1322
|
startIcon && /* @__PURE__ */ jsxRuntime.jsx(IconWrapper, { children: startIcon }),
|
|
1324
|
-
/* @__PURE__ */ jsxRuntime.jsx(StyledTextWrapper, { textOpacity: loading ? 0 : 1, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1323
|
+
/* @__PURE__ */ jsxRuntime.jsx(StyledTextWrapper, { textOpacity: loading ? 0 : 1, fullWidth, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1325
1324
|
Typography,
|
|
1326
1325
|
{
|
|
1327
1326
|
token: {
|