@umituz/react-native-design-system 2.6.98 → 2.6.99

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.98",
3
+ "version": "2.6.99",
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",
@@ -171,6 +171,6 @@ export {
171
171
  // Filter Group
172
172
  FilterGroup,
173
173
  type FilterGroupProps,
174
- type FilterItem,
174
+ type FilterGroupItem,
175
175
  } from '../molecules';
176
176
 
@@ -1,12 +1,12 @@
1
1
 
2
- export interface FilterItem<T = string> {
2
+ export interface FilterGroupItem<T = string> {
3
3
  label: string;
4
4
  value: T;
5
5
  testID?: string;
6
6
  }
7
7
 
8
8
  export interface FilterGroupProps<T = string> {
9
- items: FilterItem<T>[];
9
+ items: FilterGroupItem<T>[];
10
10
  selectedValue: T;
11
11
  onSelect: (value: T) => void;
12
12
  style?: any;