@umituz/react-native-design-system 2.5.20 → 2.5.21

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.5.20",
3
+ "version": "2.5.21",
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",
@@ -56,12 +56,12 @@ interface PickerModalProps {
56
56
  onSearchChange: (query: string) => void;
57
57
  filteredOptions: PickerOption[];
58
58
  multiple?: boolean;
59
- /** Empty state message - REQUIRED for i18n */
60
- emptyMessage: string;
61
- /** Search placeholder - REQUIRED for i18n */
62
- searchPlaceholder: string;
63
- /** Close accessibility label - REQUIRED for i18n */
64
- closeAccessibilityLabel: string;
59
+ /** Empty state message */
60
+ emptyMessage?: string;
61
+ /** Search placeholder */
62
+ searchPlaceholder?: string;
63
+ /** Close accessibility label */
64
+ closeAccessibilityLabel?: string;
65
65
  testID?: string;
66
66
  }
67
67