@umituz/react-native-design-system 4.27.31 → 4.27.32
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": "4.27.
|
|
3
|
+
"version": "4.27.32",
|
|
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 - TanStack persistence and expo-image-manipulator now lazy loaded",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
package/src/storage/index.ts
CHANGED
|
@@ -146,7 +146,7 @@ export type { StateStorage } from './domain/types/Store';
|
|
|
146
146
|
* ...
|
|
147
147
|
* });
|
|
148
148
|
*/
|
|
149
|
-
export { persistentStorage
|
|
149
|
+
export { persistentStorage } from './infrastructure/adapters/ZustandStorageAdapter';
|
|
150
150
|
|
|
151
151
|
// =============================================================================
|
|
152
152
|
// PRESENTATION LAYER - Hooks
|
|
@@ -29,8 +29,3 @@ import AsyncStorage from '@react-native-async-storage/async-storage';
|
|
|
29
29
|
* No wrapping needed - AsyncStorage already provides the correct interface.
|
|
30
30
|
*/
|
|
31
31
|
export const persistentStorage = AsyncStorage;
|
|
32
|
-
|
|
33
|
-
/**
|
|
34
|
-
* @deprecated Use persistentStorage instead
|
|
35
|
-
*/
|
|
36
|
-
export const zustandStorage = AsyncStorage;
|