@butternutbox/pawprint-native 0.10.5 → 0.10.6
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 +7 -7
- package/CHANGELOG.md +7 -0
- package/dist/index.cjs +6 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/Drawer/Drawer.stories.tsx +58 -0
- package/src/components/molecules/Drawer/Drawer.tsx +10 -3
- package/src/components/molecules/Drawer/index.ts +5 -1
- package/src/components/molecules/NumberField/NumberFieldInput.tsx +1 -2
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
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m1.79 MB[39m
|
|
11
|
-
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.69 MB[39m
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in 11501ms
|
|
13
10
|
[32mESM[39m [1mdist/index.js [22m[32m1.72 MB[39m
|
|
14
11
|
[32mESM[39m [1mdist/index.js.map [22m[32m2.69 MB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 11138ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m1.79 MB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.69 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 11141ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 22119ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m91.30 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m91.30 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -9466,7 +9466,7 @@ var DrawerTrigger = React65__default.default.forwardRef(
|
|
|
9466
9466
|
}
|
|
9467
9467
|
);
|
|
9468
9468
|
DrawerTrigger.displayName = "Drawer.Trigger";
|
|
9469
|
-
var DrawerPortal = ({ children }) => {
|
|
9469
|
+
var DrawerPortal = ({ children, topContent }) => {
|
|
9470
9470
|
const { modalVisible, closeDrawer } = React65__default.default.useContext(DrawerContext);
|
|
9471
9471
|
if (!modalVisible) return null;
|
|
9472
9472
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -9477,7 +9477,10 @@ var DrawerPortal = ({ children }) => {
|
|
|
9477
9477
|
animationType: "none",
|
|
9478
9478
|
statusBarTranslucent: true,
|
|
9479
9479
|
onRequestClose: closeDrawer,
|
|
9480
|
-
children: /* @__PURE__ */ jsxRuntime.
|
|
9480
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles3.modalContainer, children: [
|
|
9481
|
+
children,
|
|
9482
|
+
topContent
|
|
9483
|
+
] })
|
|
9481
9484
|
}
|
|
9482
9485
|
);
|
|
9483
9486
|
};
|
|
@@ -10242,8 +10245,7 @@ var StyledTextInput = styled50__default.default(reactNative.TextInput)(({ inputC
|
|
|
10242
10245
|
color: inputColor,
|
|
10243
10246
|
fontFamily: inputFontFamily
|
|
10244
10247
|
}, inputFontWeight ? { fontWeight: inputFontWeight } : {}), {
|
|
10245
|
-
fontSize: inputFontSize
|
|
10246
|
-
lineHeight: 0
|
|
10248
|
+
fontSize: inputFontSize
|
|
10247
10249
|
}));
|
|
10248
10250
|
var StyledRow = styled50__default.default(reactNative.View)(({ rowGap }) => ({
|
|
10249
10251
|
flexDirection: "row",
|