@umituz/react-native-design-system 2.6.70 → 2.6.72

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-design-system",
3
- "version": "2.6.70",
3
+ "version": "2.6.72",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive and safe area utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -21,7 +21,6 @@ export interface ScreenLayoutProps {
21
21
  readonly accessibilityLabel?: string;
22
22
  readonly accessibilityHint?: string;
23
23
  readonly accessible?: boolean;
24
-
25
24
  readonly maxWidth?: number;
26
25
  readonly refreshControl?: React.ReactElement<RefreshControlProps>;
27
26
  }
@@ -109,7 +109,6 @@ export const FormField: React.FC<FormFieldProps> = ({
109
109
 
110
110
  <AtomicInput
111
111
  {...inputProps}
112
- label={label || ''}
113
112
  state={inputState}
114
113
  />
115
114