@vellira-ui/react-native 2.22.1 → 2.22.5

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/dist/index.js +0 -1
  2. package/package.json +14 -14
package/dist/index.js CHANGED
@@ -2360,7 +2360,6 @@ var Input = forwardRef2(
2360
2360
  if (!isControlled) {
2361
2361
  setUncontrolledValue("");
2362
2362
  }
2363
- onChange?.("");
2364
2363
  onClear?.();
2365
2364
  };
2366
2365
  const showClearButton = clearable && hasValue && !disabled && !readOnly;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@vellira-ui/react-native",
3
- "version": "2.22.1",
3
+ "version": "2.22.5",
4
4
  "description": "React Native components for Vellira Design System",
5
5
  "author": "Roman Bakurov",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/vellira-dev/vellira",
9
+ "url": "git+https://github.com/vellira-dev/vellira.git",
10
10
  "directory": "packages/react-native"
11
11
  },
12
12
  "private": false,
@@ -29,16 +29,23 @@
29
29
  "README.md",
30
30
  "LICENSE"
31
31
  ],
32
+ "scripts": {
33
+ "clean": "node --input-type=module -e \"import fs from 'node:fs'; fs.rmSync('dist', { recursive: true, force: true })\"",
34
+ "build": "pnpm run clean && tsup && tsc -p tsconfig.build.json --emitDeclarationOnly",
35
+ "typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
36
+ "test": "vitest run --config vitest.config.ts",
37
+ "test:coverage": "vitest run --config vitest.config.ts --coverage"
38
+ },
32
39
  "peerDependencies": {
33
40
  "@react-native-picker/picker": ">=2",
34
41
  "react": ">=18",
35
42
  "react-native": ">=0.81"
36
43
  },
37
44
  "dependencies": {
38
- "@vellira-ui/icons": "2.22.1",
39
- "@vellira-ui/core": "2.22.1",
40
- "@vellira-ui/types": "2.22.1",
41
- "@vellira-ui/tokens": "2.22.1"
45
+ "@vellira-ui/core": "workspace:*",
46
+ "@vellira-ui/icons": "workspace:*",
47
+ "@vellira-ui/tokens": "workspace:*",
48
+ "@vellira-ui/types": "workspace:*"
42
49
  },
43
50
  "devDependencies": {
44
51
  "@types/react": "^19.2.3",
@@ -51,12 +58,5 @@
51
58
  },
52
59
  "publishConfig": {
53
60
  "access": "public"
54
- },
55
- "scripts": {
56
- "clean": "node --input-type=module -e \"import fs from 'node:fs'; fs.rmSync('dist', { recursive: true, force: true })\"",
57
- "build": "pnpm run clean && tsup && tsc -p tsconfig.build.json --emitDeclarationOnly",
58
- "typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
59
- "test": "vitest run --config vitest.config.ts",
60
- "test:coverage": "vitest run --config vitest.config.ts --coverage"
61
61
  }
62
- }
62
+ }