@umituz/react-native-design-system 4.25.53 → 4.25.55

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.
Files changed (2) hide show
  1. package/package.json +2 -6
  2. package/src/index.ts +8 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-design-system",
3
- "version": "4.25.53",
3
+ "version": "4.25.55",
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",
@@ -184,7 +184,7 @@
184
184
  "offline",
185
185
  "loading"
186
186
  ],
187
- "author": "Ümit UZ <umit@umituz.com>",
187
+ "author": "\u00dcmit UZ <umit@umituz.com>",
188
188
  "license": "MIT",
189
189
  "repository": {
190
190
  "type": "git",
@@ -210,7 +210,6 @@
210
210
  "expo-network": ">=8.0.0",
211
211
  "expo-secure-store": ">=14.0.0",
212
212
  "expo-sharing": ">=12.0.0",
213
- "expo-video": ">=3.0.0",
214
213
  "react": ">=19.0.0",
215
214
  "react-native": "*",
216
215
  "react-native-gesture-handler": ">=2.20.0",
@@ -270,9 +269,6 @@
270
269
  "expo-sharing": {
271
270
  "optional": true
272
271
  },
273
- "expo-video": {
274
- "optional": true
275
- },
276
272
  "@react-native-community/datetimepicker": {
277
273
  "optional": true
278
274
  }
package/src/index.ts CHANGED
@@ -38,7 +38,11 @@
38
38
  * /device - DeviceService, useDeviceInfo
39
39
  */
40
40
 
41
- throw new Error(
42
- '[@umituz/react-native-design-system] Barrel import is disabled. ' +
43
- 'Use sub-path imports instead: e.g. "@umituz/react-native-design-system/theme"'
44
- );
41
+ if (__DEV__) {
42
+ console.warn(
43
+ '[@umituz/react-native-design-system] Barrel import is disabled. ' +
44
+ 'Use sub-path imports instead: e.g. "@umituz/react-native-design-system/theme"'
45
+ );
46
+ }
47
+
48
+ export {};