@umituz/react-native-design-system 1.5.50 → 1.5.52
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 +1 -1
- package/src/index.ts +7 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.52",
|
|
4
4
|
"description": "Universal design system for React Native apps - Domain-Driven Design architecture with Material Design 3 components",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
package/src/index.ts
CHANGED
|
@@ -48,24 +48,21 @@ export {
|
|
|
48
48
|
type AtomicDatePickerProps,
|
|
49
49
|
type AtomicSearchBarProps,
|
|
50
50
|
type AtomicSortProps,
|
|
51
|
-
type IconName,
|
|
52
|
-
type IconSize,
|
|
53
|
-
type IconColor,
|
|
54
51
|
} from '@umituz/react-native-design-system-atoms';
|
|
55
52
|
|
|
56
|
-
// Icon
|
|
57
|
-
export {
|
|
58
|
-
AtomicIcon as Icon,
|
|
59
|
-
type AtomicIconProps as IconProps,
|
|
60
|
-
} from '@umituz/react-native-design-system-atoms';
|
|
61
|
-
|
|
62
|
-
// Re-export IconName, IconSize, IconColor as Icon types
|
|
53
|
+
// Icon types - exported separately to avoid conflicts
|
|
63
54
|
export type {
|
|
64
55
|
IconName,
|
|
65
56
|
IconSize,
|
|
66
57
|
IconColor,
|
|
67
58
|
} from '@umituz/react-native-design-system-atoms';
|
|
68
59
|
|
|
60
|
+
// Icon alias
|
|
61
|
+
export {
|
|
62
|
+
AtomicIcon as Icon,
|
|
63
|
+
type AtomicIconProps as IconProps,
|
|
64
|
+
} from '@umituz/react-native-design-system-atoms';
|
|
65
|
+
|
|
69
66
|
// =============================================================================
|
|
70
67
|
// MOLECULES - Composite Components
|
|
71
68
|
// =============================================================================
|