@umituz/react-native-design-system 4.25.7 → 4.25.8
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 +12 -55
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.8",
|
|
4
4
|
"description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive, safe area, exception, infinite scroll, UUID, image, timezone, offline, onboarding, and loading utilities",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -2,14 +2,16 @@
|
|
|
2
2
|
* @umituz/react-native-design-system
|
|
3
3
|
* Universal design system for React Native apps
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* -
|
|
8
|
-
* -
|
|
9
|
-
* -
|
|
10
|
-
* -
|
|
11
|
-
* -
|
|
12
|
-
* -
|
|
5
|
+
* This main entry point exports only modules with NO optional native dependencies.
|
|
6
|
+
* Modules with native dependencies are available via sub-path imports:
|
|
7
|
+
* - @umituz/react-native-design-system/gallery (expo-media-library)
|
|
8
|
+
* - @umituz/react-native-design-system/media (expo-file-system, expo-image-picker, expo-media-library)
|
|
9
|
+
* - @umituz/react-native-design-system/filesystem (expo-file-system)
|
|
10
|
+
* - @umituz/react-native-design-system/image (expo-file-system, expo-image-manipulator)
|
|
11
|
+
* - @umituz/react-native-design-system/device (expo-device, expo-secure-store)
|
|
12
|
+
* - @umituz/react-native-design-system/offline (expo-network)
|
|
13
|
+
* - @umituz/react-native-design-system/onboarding (expo-video)
|
|
14
|
+
* - @umituz/react-native-design-system/storage (expo-secure-store)
|
|
13
15
|
*/
|
|
14
16
|
|
|
15
17
|
// =============================================================================
|
|
@@ -27,11 +29,6 @@ export * from "./typography";
|
|
|
27
29
|
// =============================================================================
|
|
28
30
|
export * from "./responsive";
|
|
29
31
|
|
|
30
|
-
// =============================================================================
|
|
31
|
-
// DEVICE EXPORTS
|
|
32
|
-
// =============================================================================
|
|
33
|
-
export * from "./device";
|
|
34
|
-
|
|
35
32
|
// =============================================================================
|
|
36
33
|
// ATOMS EXPORTS
|
|
37
34
|
// =============================================================================
|
|
@@ -67,67 +64,27 @@ export * from "./exception";
|
|
|
67
64
|
// =============================================================================
|
|
68
65
|
export * from "./infinite-scroll";
|
|
69
66
|
|
|
70
|
-
// =============================================================================
|
|
71
|
-
// UUID EXPORTS
|
|
72
|
-
// =============================================================================
|
|
73
|
-
export * from "./uuid";
|
|
74
|
-
|
|
75
67
|
// =============================================================================
|
|
76
68
|
// TIMEZONE EXPORTS
|
|
77
69
|
// =============================================================================
|
|
78
70
|
export * from "./timezone";
|
|
79
71
|
|
|
80
|
-
// =============================================================================
|
|
81
|
-
// OFFLINE EXPORTS
|
|
82
|
-
// =============================================================================
|
|
83
|
-
export * from "./offline";
|
|
84
|
-
|
|
85
|
-
// =============================================================================
|
|
86
|
-
// IMAGE EXPORTS
|
|
87
|
-
// =============================================================================
|
|
88
|
-
export * from "./image";
|
|
89
|
-
|
|
90
72
|
// =============================================================================
|
|
91
73
|
// HAPTICS EXPORTS
|
|
92
74
|
// =============================================================================
|
|
93
75
|
export * from "./haptics";
|
|
94
76
|
|
|
95
|
-
// =============================================================================
|
|
96
|
-
// MEDIA EXPORTS
|
|
97
|
-
// =============================================================================
|
|
98
|
-
export * from "./media";
|
|
99
|
-
|
|
100
77
|
// =============================================================================
|
|
101
78
|
// VARIANT UTILITIES
|
|
102
79
|
// =============================================================================
|
|
103
80
|
export * from "./presentation/utils/variants";
|
|
104
81
|
|
|
105
|
-
// =============================================================================
|
|
106
|
-
// UTILITIES
|
|
107
|
-
// =============================================================================
|
|
108
|
-
export * from "./utilities";
|
|
109
|
-
|
|
110
82
|
// =============================================================================
|
|
111
83
|
// UTILS EXPORTS (Logger, formatters, validators)
|
|
112
84
|
// =============================================================================
|
|
113
85
|
export { logger, Logger } from "./utils/logger";
|
|
114
86
|
export type { LoggerConfig } from "./utils/logger";
|
|
115
87
|
|
|
116
|
-
// =============================================================================
|
|
117
|
-
// STORAGE EXPORTS
|
|
118
|
-
// =============================================================================
|
|
119
|
-
export * from "./storage";
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
// =============================================================================
|
|
123
|
-
// ONBOARDING EXPORTS
|
|
124
|
-
// =============================================================================
|
|
125
|
-
export * from "./onboarding";
|
|
126
|
-
// =============================================================================
|
|
127
|
-
// FILESYSTEM EXPORTS
|
|
128
|
-
// =============================================================================
|
|
129
|
-
export * from "./filesystem";
|
|
130
|
-
|
|
131
88
|
// =============================================================================
|
|
132
89
|
// TANSTACK EXPORTS
|
|
133
90
|
// =============================================================================
|
|
@@ -144,9 +101,9 @@ export * from "./loading";
|
|
|
144
101
|
export * from "./init";
|
|
145
102
|
|
|
146
103
|
// =============================================================================
|
|
147
|
-
//
|
|
104
|
+
// STORAGE EXPORTS
|
|
148
105
|
// =============================================================================
|
|
149
|
-
export * from "./
|
|
106
|
+
export * from "./storage";
|
|
150
107
|
|
|
151
108
|
// =============================================================================
|
|
152
109
|
// CAROUSEL EXPORTS
|