@umituz/react-native-design-system 2.9.28 → 2.9.30
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 +2 -1
- package/src/index.ts +33 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.30",
|
|
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",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"./responsive": "./src/responsive/index.ts",
|
|
20
20
|
"./safe-area": "./src/safe-area/index.ts",
|
|
21
21
|
"./device": "./src/device/index.ts",
|
|
22
|
+
"./exception": "./src/exception/index.ts",
|
|
22
23
|
"./image": "./src/image/index.ts",
|
|
23
24
|
"./timezone": "./src/timezone/index.ts",
|
|
24
25
|
"./offline": "./src/offline/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -15,123 +15,131 @@
|
|
|
15
15
|
// =============================================================================
|
|
16
16
|
// THEME EXPORTS
|
|
17
17
|
// =============================================================================
|
|
18
|
-
export * from
|
|
18
|
+
export * from "./exports/theme";
|
|
19
19
|
|
|
20
20
|
// =============================================================================
|
|
21
21
|
// TYPOGRAPHY EXPORTS
|
|
22
22
|
// =============================================================================
|
|
23
|
-
export * from
|
|
23
|
+
export * from "./exports/typography";
|
|
24
24
|
|
|
25
25
|
// =============================================================================
|
|
26
26
|
// RESPONSIVE EXPORTS
|
|
27
27
|
// =============================================================================
|
|
28
|
-
export * from
|
|
28
|
+
export * from "./exports/responsive";
|
|
29
29
|
|
|
30
30
|
// =============================================================================
|
|
31
31
|
// DEVICE EXPORTS
|
|
32
32
|
// =============================================================================
|
|
33
|
-
export * from
|
|
33
|
+
export * from "./exports/device";
|
|
34
34
|
|
|
35
35
|
// =============================================================================
|
|
36
36
|
// ATOMS EXPORTS
|
|
37
37
|
// =============================================================================
|
|
38
|
-
export * from
|
|
38
|
+
export * from "./exports/atoms";
|
|
39
39
|
|
|
40
40
|
// =============================================================================
|
|
41
41
|
// LAYOUTS EXPORTS
|
|
42
42
|
// =============================================================================
|
|
43
|
-
export * from
|
|
43
|
+
export * from "./exports/layouts";
|
|
44
44
|
|
|
45
45
|
// =============================================================================
|
|
46
46
|
// MOLECULES EXPORTS
|
|
47
47
|
// =============================================================================
|
|
48
|
-
export * from
|
|
48
|
+
export * from "./exports/molecules";
|
|
49
49
|
|
|
50
50
|
// =============================================================================
|
|
51
51
|
// ORGANISMS EXPORTS
|
|
52
52
|
// =============================================================================
|
|
53
|
-
export * from
|
|
53
|
+
export * from "./exports/organisms";
|
|
54
54
|
|
|
55
55
|
// =============================================================================
|
|
56
56
|
// SAFE AREA EXPORTS
|
|
57
57
|
// =============================================================================
|
|
58
|
-
export * from
|
|
58
|
+
export * from "./exports/safe-area";
|
|
59
59
|
|
|
60
60
|
// =============================================================================
|
|
61
61
|
// EXCEPTION EXPORTS
|
|
62
62
|
// =============================================================================
|
|
63
|
-
export * from
|
|
63
|
+
export * from "./exports/exception";
|
|
64
|
+
export { ErrorBoundary } from "./exception/presentation/components/ErrorBoundary";
|
|
64
65
|
|
|
65
66
|
// =============================================================================
|
|
66
67
|
// INFINITE SCROLL EXPORTS
|
|
67
68
|
// =============================================================================
|
|
68
|
-
export * from
|
|
69
|
+
export * from "./exports/infinite-scroll";
|
|
69
70
|
|
|
70
71
|
// =============================================================================
|
|
71
72
|
// UUID EXPORTS
|
|
72
73
|
// =============================================================================
|
|
73
|
-
export * from
|
|
74
|
+
export * from "./exports/uuid";
|
|
74
75
|
|
|
75
76
|
// =============================================================================
|
|
76
77
|
// TIMEZONE EXPORTS
|
|
77
78
|
// =============================================================================
|
|
78
|
-
export * from
|
|
79
|
+
export * from "./exports/timezone";
|
|
79
80
|
|
|
80
81
|
// =============================================================================
|
|
81
82
|
// OFFLINE EXPORTS
|
|
82
83
|
// =============================================================================
|
|
83
|
-
export * from
|
|
84
|
+
export * from "./exports/offline";
|
|
85
|
+
export { NetworkProvider, useOffline, OfflineBanner } from "./offline";
|
|
84
86
|
|
|
85
87
|
// =============================================================================
|
|
86
88
|
// IMAGE EXPORTS
|
|
87
89
|
// =============================================================================
|
|
88
|
-
export * from
|
|
90
|
+
export * from "./exports/image";
|
|
89
91
|
|
|
90
92
|
// =============================================================================
|
|
91
93
|
// HAPTICS EXPORTS
|
|
92
94
|
// =============================================================================
|
|
93
|
-
export * from
|
|
95
|
+
export * from "./exports/haptics";
|
|
94
96
|
|
|
95
97
|
// =============================================================================
|
|
96
98
|
// VARIANT UTILITIES
|
|
97
99
|
// =============================================================================
|
|
98
|
-
export * from
|
|
100
|
+
export * from "./exports/variants";
|
|
99
101
|
|
|
100
102
|
// =============================================================================
|
|
101
103
|
// UTILITIES
|
|
102
104
|
// =============================================================================
|
|
103
|
-
export * from
|
|
105
|
+
export * from "./exports/utilities";
|
|
104
106
|
|
|
105
107
|
// =============================================================================
|
|
106
108
|
// STORAGE EXPORTS
|
|
107
109
|
// =============================================================================
|
|
108
|
-
export * from
|
|
110
|
+
export * from "./exports/storage";
|
|
111
|
+
|
|
112
|
+
// =============================================================================
|
|
113
|
+
// STORAGE STATE EXPORTS
|
|
114
|
+
// =============================================================================
|
|
115
|
+
export * from "./storage/presentation/hooks/useStorageState";
|
|
109
116
|
|
|
110
117
|
// =============================================================================
|
|
111
118
|
// ONBOARDING EXPORTS
|
|
112
119
|
// =============================================================================
|
|
113
|
-
export * from
|
|
120
|
+
export * from "./exports/onboarding";
|
|
114
121
|
// =============================================================================
|
|
115
122
|
// FILESYSTEM EXPORTS
|
|
116
123
|
// =============================================================================
|
|
117
|
-
export * from
|
|
124
|
+
export * from "./exports/filesystem";
|
|
118
125
|
|
|
119
126
|
// =============================================================================
|
|
120
127
|
// MEDIA EXPORTS
|
|
121
128
|
// =============================================================================
|
|
122
|
-
export * from
|
|
129
|
+
export * from "./exports/media";
|
|
123
130
|
|
|
124
131
|
// =============================================================================
|
|
125
132
|
// TANSTACK EXPORTS
|
|
126
133
|
// =============================================================================
|
|
127
|
-
export * from
|
|
134
|
+
export * from "./exports/tanstack";
|
|
135
|
+
export { TanstackProvider } from "./tanstack";
|
|
128
136
|
|
|
129
137
|
// =============================================================================
|
|
130
138
|
// LOADING EXPORTS
|
|
131
139
|
// =============================================================================
|
|
132
|
-
export * from
|
|
140
|
+
export * from "./exports/loading";
|
|
133
141
|
|
|
134
142
|
// =============================================================================
|
|
135
143
|
// INIT EXPORTS
|
|
136
144
|
// =============================================================================
|
|
137
|
-
export * from
|
|
145
|
+
export * from "./exports/init";
|