aporia 0.2.0 → 0.2.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.
- package/README.md +21 -8
- package/dist/ThemeProvider.d.ts.map +1 -1
- package/dist/components/Category.d.ts.map +1 -1
- package/dist/components/SelectRow.d.ts +17 -0
- package/dist/components/SelectRow.d.ts.map +1 -0
- package/dist/{style.css → index.css} +420 -16
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +147 -11
- package/dist/index.js.map +1 -1
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aporia",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "A collection of production-quality React components for building configurators - sliders, color pickers, gradient editors, toggles, and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,10 +8,15 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
11
12
|
"import": "./dist/index.js",
|
|
12
|
-
"
|
|
13
|
+
"default": "./dist/index.js"
|
|
13
14
|
},
|
|
14
|
-
"./styles.css": "./dist/
|
|
15
|
+
"./styles.css": "./dist/index.css",
|
|
16
|
+
"./package.json": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
15
20
|
},
|
|
16
21
|
"files": [
|
|
17
22
|
"dist",
|
|
@@ -22,7 +27,7 @@
|
|
|
22
27
|
"**/*.css"
|
|
23
28
|
],
|
|
24
29
|
"scripts": {
|
|
25
|
-
"dev": "vite",
|
|
30
|
+
"dev": "vite --mode demo",
|
|
26
31
|
"build": "vite build",
|
|
27
32
|
"build:demo": "vite build --mode demo",
|
|
28
33
|
"lint": "eslint .",
|