@particle-network/ui-native 0.0.30 → 0.0.31

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.
@@ -141,7 +141,6 @@ const UXInput = /*#__PURE__*/ forwardRef((props, ref)=>{
141
141
  ...restProps
142
142
  }),
143
143
  isClearable && !!internalValue && !isDisabled && !isReadOnly && /*#__PURE__*/ jsx(UXPressable, {
144
- p: 4,
145
144
  onPress: handleClear,
146
145
  children: /*#__PURE__*/ jsx(CloseIcon, {
147
146
  style: styles.clearButton
@@ -235,7 +235,6 @@ const UXNumberInput = /*#__PURE__*/ forwardRef((props, ref)=>{
235
235
  ...restProps
236
236
  }),
237
237
  isClearable && !isNaN(internalValue) && !isDisabled && !isReadOnly && /*#__PURE__*/ jsx(UXPressable, {
238
- p: 4,
239
238
  onPress: handleClear,
240
239
  children: /*#__PURE__*/ jsx(CloseIcon, {
241
240
  style: styles.clearButton,
@@ -15,6 +15,7 @@ export declare const useStyles: (props: UseStylesProps) => {
15
15
  opacity: number;
16
16
  };
17
17
  input: {
18
+ height: "100%";
18
19
  flex: number;
19
20
  paddingTop: number;
20
21
  paddingBottom: number;
@@ -90,6 +90,7 @@ const useStyles = (props)=>{
90
90
  opacity: isDisabled ? disabledOpacity : 1
91
91
  },
92
92
  input: {
93
+ height: '100%',
93
94
  flex: 1,
94
95
  paddingTop: 0,
95
96
  paddingBottom: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@particle-network/ui-native",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
4
4
  "license": "MIT",
5
5
  "main": "./entry.js",
6
6
  "react-native": "./dist/index.js",