@umituz/react-native-design-system 1.5.26 → 1.5.27

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": "1.5.26",
3
+ "version": "1.5.27",
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": "./dist/index.d.ts",
@@ -13,6 +13,9 @@
13
13
  }
14
14
  },
15
15
  "scripts": {
16
+ "typecheck": "tsc --noEmit",
17
+ "lint": "eslint . --ext .ts,.tsx,.js,.jsx",
18
+ "lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
16
19
  "version:patch": "npm version patch -m 'chore: release v%s'",
17
20
  "version:minor": "npm version minor -m 'chore: release v%s'",
18
21
  "version:major": "npm version major -m 'chore: release v%s'"
@@ -57,12 +60,18 @@
57
60
  }
58
61
  },
59
62
  "devDependencies": {
63
+ "@eslint/js": "^9.0.0",
60
64
  "@expo/vector-icons": ">=14.0.0",
61
65
  "@react-native-community/datetimepicker": "^8.5.0",
62
66
  "@react-navigation/native": "^6.0.0",
63
67
  "@types/react": "^18.2.45",
64
68
  "@types/react-native": "^0.73.0",
69
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
70
+ "@typescript-eslint/parser": "^7.0.0",
65
71
  "@umituz/react-native-icon": "^1.0.1",
72
+ "eslint": "^9.0.0",
73
+ "eslint-plugin-react": "^7.33.0",
74
+ "eslint-plugin-react-hooks": "^4.6.0",
66
75
  "expo-linear-gradient": "^15.0.7",
67
76
  "lucide-react-native": ">=0.468.0",
68
77
  "react": ">=18.2.0 || ^19.0.0",
@@ -254,7 +254,7 @@ export const getKeyboardBehavior = () => {
254
254
  /**
255
255
  * Device type enum for conditional rendering
256
256
  */
257
- export var DeviceType;
257
+ export let DeviceType;
258
258
  (function (DeviceType) {
259
259
  DeviceType["SMALL_PHONE"] = "SMALL_PHONE";
260
260
  DeviceType["MEDIUM_PHONE"] = "MEDIUM_PHONE";