@weavy/uikit-react 27.1.3 → 28.0.0
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/changelog.md +25 -0
- package/dist/{weavy.umd.cjs → build/weavy.bundle.js} +827 -790
- package/dist/build/weavy.cjs +3185 -0
- package/dist/build/weavy.es5.esm.js +1 -0
- package/dist/build/weavy.es5.umd.js +1 -0
- package/dist/{weavy.mjs → build/weavy.mjs} +23176 -22980
- package/dist/{weavy.bundle.js → build/weavy.umd.js} +862 -825
- package/package.json +24 -24
- package/dist/weavy.cjs +0 -3148
- package/dist/weavy.es5.esm.js +0 -1
- package/dist/weavy.es5.umd.cjs +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weavy/uikit-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "28.0.0",
|
|
4
4
|
"author": "Weavy",
|
|
5
5
|
"description": "React components UI-kit for Weavy",
|
|
6
6
|
"homepage": "https://github.com/weavy/weavy-uikit-react",
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
"*.json",
|
|
13
13
|
"*.md"
|
|
14
14
|
],
|
|
15
|
-
"main": "./dist/weavy.es5.umd.js",
|
|
16
|
-
"module": "./dist/weavy.es5.esm.js",
|
|
15
|
+
"main": "./dist/build/weavy.es5.umd.js",
|
|
16
|
+
"module": "./dist/build/weavy.es5.esm.js",
|
|
17
17
|
"types": "./dist/types/index.d.ts",
|
|
18
18
|
"exports": {
|
|
19
19
|
".": {
|
|
20
20
|
"node": {
|
|
21
|
-
"import": "./dist/weavy.mjs",
|
|
22
|
-
"require": "./dist/weavy.bundle.js"
|
|
21
|
+
"import": "./dist/build/weavy.mjs",
|
|
22
|
+
"require": "./dist/build/weavy.bundle.js"
|
|
23
23
|
},
|
|
24
24
|
"types": "./dist/types/index.d.ts",
|
|
25
|
-
"import": "./dist/weavy.mjs",
|
|
26
|
-
"require": "./dist/weavy.cjs",
|
|
27
|
-
"default": "./dist/weavy.umd.js"
|
|
25
|
+
"import": "./dist/build/weavy.mjs",
|
|
26
|
+
"require": "./dist/build/weavy.cjs",
|
|
27
|
+
"default": "./dist/build/weavy.umd.js"
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
@@ -40,37 +40,37 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@lit/react": "^1.0.7",
|
|
43
|
-
"@weavy/uikit-web": "^
|
|
43
|
+
"@weavy/uikit-web": "^28.0.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": ">=16",
|
|
47
47
|
"react-dom": ">=16"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@babel/preset-env": "^7.
|
|
51
|
-
"@babel/preset-react": "^7.
|
|
52
|
-
"@eslint/js": "^9.
|
|
50
|
+
"@babel/preset-env": "^7.27.2",
|
|
51
|
+
"@babel/preset-react": "^7.27.1",
|
|
52
|
+
"@eslint/js": "^9.26.0",
|
|
53
53
|
"@rollup/plugin-babel": "^6.0.4",
|
|
54
54
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
55
|
-
"@types/node": "^22.14
|
|
56
|
-
"@types/react": "^18.3.
|
|
57
|
-
"@types/react-dom": "^18.3.
|
|
58
|
-
"@vitejs/plugin-react": "^4.
|
|
59
|
-
"dotenv": "^16.
|
|
60
|
-
"eslint": "^9.
|
|
55
|
+
"@types/node": "^22.15.14",
|
|
56
|
+
"@types/react": "^18.3.21",
|
|
57
|
+
"@types/react-dom": "^18.3.7",
|
|
58
|
+
"@vitejs/plugin-react": "^4.4.1",
|
|
59
|
+
"dotenv": "^16.5.0",
|
|
60
|
+
"eslint": "^9.26.0",
|
|
61
61
|
"eslint-plugin-react": "^7.37.5",
|
|
62
62
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
63
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
64
|
-
"globals": "^16.
|
|
63
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
64
|
+
"globals": "^16.1.0",
|
|
65
65
|
"npm-run-all": "^4.1.5",
|
|
66
66
|
"react": "^18.3.1",
|
|
67
67
|
"react-dom": "^18.3.1",
|
|
68
68
|
"rimraf": "^6.0.1",
|
|
69
69
|
"rollup-preserve-directives": "^1.1.3",
|
|
70
|
-
"sass": "^1.
|
|
71
|
-
"typescript": "^5.8.
|
|
72
|
-
"typescript-eslint": "^8.
|
|
73
|
-
"vite": "^6.
|
|
70
|
+
"sass": "^1.87.0",
|
|
71
|
+
"typescript": "^5.8.3",
|
|
72
|
+
"typescript-eslint": "^8.32.0",
|
|
73
|
+
"vite": "^6.3.5",
|
|
74
74
|
"vite-plugin-dts": "^4.5.3"
|
|
75
75
|
}
|
|
76
76
|
}
|