@hitesh0009/react-native-basic-form 1.3.4 → 1.3.5

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/dist/types.d.ts CHANGED
@@ -21,8 +21,8 @@ export type FormField = FormInput | FormButton;
21
21
  export type FormItem = {
22
22
  layout?: ViewStyle['flexDirection'];
23
23
  spacing?: number;
24
+ style?: ViewStyle;
24
25
  children: FormField[];
25
- style: ViewStyle;
26
26
  };
27
27
  export type FormProps = {
28
28
  schema: FormItem[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitesh0009/react-native-basic-form",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "A lightweight, data-driven form renderer for React Native with fully controlled inputs and flexible styling.",
5
5
  "keywords": [
6
6
  "react-native",
package/src/types.ts CHANGED
@@ -33,8 +33,8 @@ export type FormField = FormInput | FormButton;
33
33
  export type FormItem = {
34
34
  layout?: ViewStyle['flexDirection'];
35
35
  spacing?: number;
36
+ style?:ViewStyle
36
37
  children: FormField[];
37
- style:ViewStyle
38
38
  };
39
39
 
40
40
  export type FormProps = {