@react-native-ama/forms 1.1.1 → 1.1.4

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.
@@ -22,6 +22,7 @@ export declare const useTextInput: ({ onLayout, returnKeyType, onSubmitEditing,
22
22
  autoCorrect?: boolean | undefined;
23
23
  autoFocus?: boolean | undefined;
24
24
  blurOnSubmit?: boolean | undefined;
25
+ submitBehavior?: import("react-native").SubmitBehavior | undefined;
25
26
  caretHidden?: boolean | undefined;
26
27
  contextMenuHidden?: boolean | undefined;
27
28
  defaultValue?: string | undefined;
@@ -145,6 +146,8 @@ export declare const useTextInput: ({ onLayout, returnKeyType, onSubmitEditing,
145
146
  onMagicTap?: (() => void) | undefined;
146
147
  accessibilityIgnoresInvertColors?: boolean | undefined;
147
148
  accessibilityLanguage?: string | undefined;
149
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
150
+ accessibilityLargeContentTitle?: string | undefined;
148
151
  clearButtonMode?: "never" | "while-editing" | "unless-editing" | "always" | undefined;
149
152
  clearTextOnFocus?: boolean | undefined;
150
153
  dataDetectorTypes?: import("react-native").DataDetectorTypes | import("react-native").DataDetectorTypes[] | undefined;
@@ -193,6 +196,7 @@ export declare const useTextInput: ({ onLayout, returnKeyType, onSubmitEditing,
193
196
  autoCorrect?: boolean | undefined;
194
197
  autoFocus?: boolean | undefined;
195
198
  blurOnSubmit?: boolean | undefined;
199
+ submitBehavior?: import("react-native").SubmitBehavior | undefined;
196
200
  caretHidden?: boolean | undefined;
197
201
  contextMenuHidden?: boolean | undefined;
198
202
  defaultValue?: string | undefined;
@@ -317,6 +321,8 @@ export declare const useTextInput: ({ onLayout, returnKeyType, onSubmitEditing,
317
321
  onMagicTap?: (() => void) | undefined;
318
322
  accessibilityIgnoresInvertColors?: boolean | undefined;
319
323
  accessibilityLanguage?: string | undefined;
324
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
325
+ accessibilityLargeContentTitle?: string | undefined;
320
326
  clearButtonMode?: "never" | "while-editing" | "unless-editing" | "always" | undefined;
321
327
  clearTextOnFocus?: boolean | undefined;
322
328
  dataDetectorTypes?: import("react-native").DataDetectorTypes | import("react-native").DataDetectorTypes[] | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-ama/forms",
3
- "version": "1.1.1",
3
+ "version": "1.1.4",
4
4
  "react-native": "src/index",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
@@ -23,9 +23,9 @@
23
23
  "test": "jest"
24
24
  },
25
25
  "dependencies": {
26
- "@react-native-ama/core": "~1.1.1",
27
- "@react-native-ama/internal": "~1.1.1",
28
- "@react-native-ama/react-native": "~1.1.1"
26
+ "@react-native-ama/core": "~1.1.4",
27
+ "@react-native-ama/internal": "~1.1.4",
28
+ "@react-native-ama/react-native": "~1.1.4"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "react": "*",