@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.
@@ -7,12 +7,12 @@
7
7
  CJS Build start
8
8
  ESM Build start
9
9
  DTS Build start
10
- CJS dist/index.cjs 1.79 MB
11
- CJS dist/index.cjs.map 2.69 MB
12
- CJS ⚡️ Build success in 11501ms
13
10
  ESM dist/index.js 1.72 MB
14
11
  ESM dist/index.js.map 2.69 MB
15
- ESM ⚡️ Build success in 11502ms
16
- DTS ⚡️ Build success in 23389ms
17
- DTS dist/index.d.cts 91.24 KB
18
- DTS dist/index.d.ts 91.24 KB
12
+ ESM ⚡️ Build success in 11138ms
13
+ CJS dist/index.cjs 1.79 MB
14
+ CJS dist/index.cjs.map 2.69 MB
15
+ CJS ⚡️ Build success in 11141ms
16
+ DTS ⚡️ Build success in 22119ms
17
+ DTS dist/index.d.cts 91.30 KB
18
+ DTS dist/index.d.ts 91.30 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @butternutbox/pawprint-native
2
2
 
3
+ ## 0.10.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 05e3901: fix hidden input value on android
8
+ - 9044a8f: allow drawer overlay to take top content
9
+
3
10
  ## 0.10.5
4
11
 
5
12
  ### Patch Changes
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.jsx(reactNative.View, { style: styles3.modalContainer, children })
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",