@designbyadrian/react-interactive-input 2.0.0 → 2.0.1
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/README.md +1 -1
- package/package.json +18 -21
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<h1>React Interactive Input</h1>
|
|
4
4
|
</center>
|
|
5
5
|
|
|
6
|
-

|
|
6
|
+
 
|
|
7
7
|
|
|
8
8
|
In Blender and similar 3D applications, users can adjust values in numeric input boxes by clicking and dragging horizontally, often referred to as **scrubbing.**
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@designbyadrian/react-interactive-input",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Adjust values in numeric input boxes by clicking and dragging horizontally, just like in Blender and similar 3D applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -12,19 +12,6 @@
|
|
|
12
12
|
"blender"
|
|
13
13
|
],
|
|
14
14
|
"author": "Adrian von Gegerfelt <adrian@designbyadrian.com>",
|
|
15
|
-
"type": "module",
|
|
16
|
-
"main": "dist/react-interactive-input.cjs.js",
|
|
17
|
-
"module": "dist/react-interactive-input.es.js",
|
|
18
|
-
"exports": {
|
|
19
|
-
".": {
|
|
20
|
-
"import": "./dist/react-interactive-input.es.js",
|
|
21
|
-
"require": "./dist/react-interactive-input.cjs.js"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"types": "dist/types/index.d.ts",
|
|
25
|
-
"files": [
|
|
26
|
-
"dist"
|
|
27
|
-
],
|
|
28
15
|
"repository": {
|
|
29
16
|
"type": "git",
|
|
30
17
|
"url": "git+https://github.com/designbyadrian/react-interactive-input.git"
|
|
@@ -33,13 +20,7 @@
|
|
|
33
20
|
"url": "https://github.com/designbyadrian/react-interactive-input/issues"
|
|
34
21
|
},
|
|
35
22
|
"license": "MIT",
|
|
36
|
-
"
|
|
37
|
-
"react": "^18.2.0",
|
|
38
|
-
"react-dom": "^18.2.0"
|
|
39
|
-
},
|
|
40
|
-
"engines": {
|
|
41
|
-
"node": ">=20.0.0"
|
|
42
|
-
},
|
|
23
|
+
"type": "module",
|
|
43
24
|
"scripts": {
|
|
44
25
|
"dev": "storybook dev -p 6006 --no-open",
|
|
45
26
|
"build-storybook": "storybook build",
|
|
@@ -48,6 +29,16 @@
|
|
|
48
29
|
"prepublishOnly": "npm run build",
|
|
49
30
|
"deploy-storybook": "npm run build-storybook && touch ./storybook-static/.nojekyll && gh-pages -d storybook-static -t true"
|
|
50
31
|
},
|
|
32
|
+
"main": "dist/react-interactive-input.cjs.js",
|
|
33
|
+
"module": "dist/react-interactive-input.es.js",
|
|
34
|
+
"types": "dist/types/index.d.ts",
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"react": "^18.2.0",
|
|
40
|
+
"react-dom": "^18.2.0"
|
|
41
|
+
},
|
|
51
42
|
"devDependencies": {
|
|
52
43
|
"@chromatic-com/storybook": "3.2.2",
|
|
53
44
|
"@storybook/addon-a11y": "^8.5.0-alpha.3",
|
|
@@ -66,5 +57,11 @@
|
|
|
66
57
|
"storybook": "8.5.0-alpha.3",
|
|
67
58
|
"typescript": "5.6.3",
|
|
68
59
|
"vite": "5.4.10"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=20.0.0"
|
|
63
|
+
},
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"access": "public"
|
|
69
66
|
}
|
|
70
67
|
}
|