@umituz/react-native-design-system 1.5.37 → 1.5.39
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": "1.5.
|
|
3
|
+
"version": "1.5.39",
|
|
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",
|
|
@@ -41,7 +41,6 @@
|
|
|
41
41
|
"@react-native-community/datetimepicker": "^8.5.0",
|
|
42
42
|
"@react-navigation/native": "^6.0.0",
|
|
43
43
|
"@umituz/react-native-bottom-sheet": "*",
|
|
44
|
-
"@umituz/react-native-icon": "*",
|
|
45
44
|
"expo-linear-gradient": "^15.0.7",
|
|
46
45
|
"lucide-react-native": ">=0.468.0",
|
|
47
46
|
"react": ">=18.2.0 || ^19.0.0",
|
|
@@ -73,7 +72,6 @@
|
|
|
73
72
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
74
73
|
"@typescript-eslint/parser": "^7.0.0",
|
|
75
74
|
"@umituz/react-native-bottom-sheet": "*",
|
|
76
|
-
"@umituz/react-native-icon": "^1.0.1",
|
|
77
75
|
"eslint": "^9.0.0",
|
|
78
76
|
"eslint-plugin-react": "^7.33.0",
|
|
79
77
|
"eslint-plugin-react-hooks": "^4.6.0",
|
package/src/index.ts
CHANGED
|
@@ -138,14 +138,14 @@ export {
|
|
|
138
138
|
// =============================================================================
|
|
139
139
|
// ICONS DOMAIN - Universal Icon System
|
|
140
140
|
// =============================================================================
|
|
141
|
-
// Icon components
|
|
142
|
-
// Import directly: import {
|
|
141
|
+
// Icon components are now part of @umituz/react-native-design-system-atoms
|
|
142
|
+
// Import directly: import { AtomicIcon, IconName, IconSize, IconColor } from '@umituz/react-native-design-system-atoms';
|
|
143
143
|
|
|
144
|
-
// Re-export for backward compatibility
|
|
144
|
+
// Re-export for backward compatibility
|
|
145
145
|
export {
|
|
146
|
-
Icon,
|
|
147
|
-
type IconProps,
|
|
146
|
+
AtomicIcon as Icon,
|
|
147
|
+
type AtomicIconProps as IconProps,
|
|
148
148
|
type IconSize,
|
|
149
149
|
type IconColor,
|
|
150
150
|
type IconName,
|
|
151
|
-
} from '@umituz/react-native-
|
|
151
|
+
} from '@umituz/react-native-design-system-atoms';
|
|
@@ -12,7 +12,7 @@ import React from 'react';
|
|
|
12
12
|
import { View, ViewStyle, SafeAreaView } from 'react-native';
|
|
13
13
|
import { useAppDesignTokens } from '@umituz/react-native-design-system-theme';
|
|
14
14
|
import { AtomicText, AtomicButton, AtomicIcon } from '@umituz/react-native-design-system-atoms';
|
|
15
|
-
import type { IconName } from '@umituz/react-native-
|
|
15
|
+
import type { IconName } from '@umituz/react-native-design-system-atoms';
|
|
16
16
|
|
|
17
17
|
// =============================================================================
|
|
18
18
|
// TYPE DEFINITIONS
|