ripal-ui 1.1.33 → 1.1.35

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,6 +7,8 @@ interface InlineProps extends PressableProps {
7
7
  justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
8
8
  gap?: number;
9
9
  style?: ViewStyle;
10
+ onPress?: () => void;
11
+ onLongPress?: () => void;
10
12
  }
11
13
 
12
14
  const Inline: React.FC<InlineProps> = ({
package/index.d.ts CHANGED
@@ -115,6 +115,8 @@ declare module 'ripal-ui' {
115
115
  justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
116
116
  gap?: number;
117
117
  style?: ViewStyle;
118
+ onPress?: () => void;
119
+ onLongPress?: () => void;
118
120
  }
119
121
  export const Inline: React.FC<InlineProps>;
120
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ripal-ui",
3
- "version": "1.1.33",
3
+ "version": "1.1.35",
4
4
  "description": "A collection of React elements and components",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -9,9 +9,9 @@
9
9
  "postinstall": "node ./scripts/generateConfig.js"
10
10
  },
11
11
  "dependencies": {
12
+ "expo-secure-store": "~13.0.2",
12
13
  "react": "19.0.0",
13
- "react-native": "0.79.2",
14
- "expo-secure-store": "~13.0.2"
14
+ "react-native": "^0.79.5"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/cli": "^7.25.6",