@umituz/react-native-design-system 1.8.1 → 1.8.3
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 +0 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
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": "./src/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -47,8 +47,6 @@ export {
|
|
|
47
47
|
type IconName,
|
|
48
48
|
} from '@umituz/react-native-design-system-atoms';
|
|
49
49
|
|
|
50
|
-
// Alias for backward compatibility
|
|
51
|
-
export { AtomicIcon as Icon } from '@umituz/react-native-design-system-atoms';
|
|
52
50
|
|
|
53
51
|
// =============================================================================
|
|
54
52
|
// ORGANISMS - Re-export from @umituz/react-native-design-system-organisms
|
|
@@ -61,7 +59,6 @@ export {
|
|
|
61
59
|
// MOLECULES - Re-export from @umituz/react-native-design-system-molecules
|
|
62
60
|
// =============================================================================
|
|
63
61
|
export {
|
|
64
|
-
EmptyState,
|
|
65
62
|
FormField,
|
|
66
63
|
ListItem,
|
|
67
64
|
SearchBar,
|
|
@@ -114,19 +111,6 @@ export {
|
|
|
114
111
|
DeviceType,
|
|
115
112
|
} from '@umituz/react-native-design-system-responsive';
|
|
116
113
|
|
|
117
|
-
// =============================================================================
|
|
118
|
-
// LOADING - Re-export from @umituz/react-native-loading
|
|
119
|
-
// =============================================================================
|
|
120
|
-
export {
|
|
121
|
-
LoadingState,
|
|
122
|
-
SkeletonLoader,
|
|
123
|
-
useLoading,
|
|
124
|
-
useSimpleLoading,
|
|
125
|
-
SIZE_CONFIGS,
|
|
126
|
-
SKELETON_PATTERNS,
|
|
127
|
-
DEFAULT_LOADING_EMOJI,
|
|
128
|
-
} from '@umituz/react-native-loading';
|
|
129
|
-
|
|
130
114
|
// =============================================================================
|
|
131
115
|
// THEME - Re-export from @umituz/react-native-design-system-theme
|
|
132
116
|
// =============================================================================
|