@react-hive/honey-style 5.1.0 → 5.3.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/dist/css/unwrap-params.d.ts +1 -1
- package/dist/hooks/use-honey-style.d.ts +1 -1
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.dev.cjs +22 -22
- package/dist/index.dev.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/utils.d.ts +1 -1
- package/package.json +16 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-hive/honey-style",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -18,18 +18,19 @@
|
|
|
18
18
|
"author": "Mike Aliinyk <m.aliynik@gmail.com>",
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"type": "module",
|
|
21
|
-
"main": "dist/index.cjs",
|
|
22
|
-
"module": "dist/index.mjs",
|
|
23
21
|
"types": "dist/index.d.ts",
|
|
24
22
|
"exports": {
|
|
25
|
-
"
|
|
26
|
-
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"import": "./dist/index.mjs",
|
|
26
|
+
"require": "./dist/index.cjs",
|
|
27
|
+
"default": "./dist/index.mjs"
|
|
28
|
+
}
|
|
27
29
|
},
|
|
28
30
|
"files": [
|
|
29
31
|
"dist",
|
|
30
32
|
"!dist/**/__mocks__",
|
|
31
|
-
"!dist/**/__tests__"
|
|
32
|
-
"!dist/**/jest*"
|
|
33
|
+
"!dist/**/__tests__"
|
|
33
34
|
],
|
|
34
35
|
"peerDependencies": {
|
|
35
36
|
"react": "^19.0.0",
|
|
@@ -37,19 +38,15 @@
|
|
|
37
38
|
"styled-components": "^6.1.0"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
|
-
"@
|
|
41
|
-
"@react-hive/honey-
|
|
42
|
-
"@react-hive/honey-utils": "3.26.0",
|
|
41
|
+
"@react-hive/honey-css": "1.17.0",
|
|
42
|
+
"@react-hive/honey-utils": "3.28.0",
|
|
43
43
|
"csstype": "3.2.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@eslint/js": "10.0.1",
|
|
47
|
-
"@mdx-js/loader": "3.1.1",
|
|
48
47
|
"@testing-library/jest-dom": "6.9.1",
|
|
49
48
|
"@testing-library/react": "16.3.2",
|
|
50
|
-
"@types/
|
|
51
|
-
"@types/mdx": "2.0.13",
|
|
52
|
-
"@types/node": "22.19.11",
|
|
49
|
+
"@types/node": "22.19.15",
|
|
53
50
|
"@types/react": "^19.2.14",
|
|
54
51
|
"@types/react-dom": "^19.2.3",
|
|
55
52
|
"copy-webpack-plugin": "14.0.0",
|
|
@@ -57,30 +54,16 @@
|
|
|
57
54
|
"eslint-plugin-react": "7.37.5",
|
|
58
55
|
"html-webpack-plugin": "5.6.6",
|
|
59
56
|
"husky": "9.1.7",
|
|
60
|
-
"
|
|
61
|
-
"jest-environment-jsdom": "29.7.0",
|
|
57
|
+
"jsdom": "29.0.1",
|
|
62
58
|
"prettier": "3.8.1",
|
|
63
|
-
"ts-jest": "29.4.5",
|
|
64
59
|
"ts-loader": "9.5.4",
|
|
65
60
|
"tsx": "4.21.0",
|
|
66
|
-
"typescript": "
|
|
67
|
-
"typescript-eslint": "8.57.
|
|
61
|
+
"typescript": "6.0.2",
|
|
62
|
+
"typescript-eslint": "8.57.2",
|
|
63
|
+
"vitest": "4.1.2",
|
|
68
64
|
"webpack": "5.105.4",
|
|
69
65
|
"webpack-cli": "7.0.2"
|
|
70
66
|
},
|
|
71
|
-
"jest": {
|
|
72
|
-
"preset": "ts-jest",
|
|
73
|
-
"testEnvironment": "jsdom",
|
|
74
|
-
"setupFilesAfterEnv": [
|
|
75
|
-
"<rootDir>/jest-setup.ts"
|
|
76
|
-
],
|
|
77
|
-
"testMatch": [
|
|
78
|
-
"**/src/**/__tests__/**/*.spec.ts?(x)"
|
|
79
|
-
],
|
|
80
|
-
"testPathIgnorePatterns": [
|
|
81
|
-
"\\.performance\\.spec\\.tsx$"
|
|
82
|
-
]
|
|
83
|
-
},
|
|
84
67
|
"browserslist": [
|
|
85
68
|
"defaults",
|
|
86
69
|
"not IE 11"
|
|
@@ -88,7 +71,7 @@
|
|
|
88
71
|
"scripts": {
|
|
89
72
|
"clean": "rm -rf dist coverage",
|
|
90
73
|
"build": "webpack --config webpack.config.mjs",
|
|
91
|
-
"test": "
|
|
74
|
+
"test": "vitest",
|
|
92
75
|
"performanceTest": "jest --testMatch **/*.performance.spec.tsx --testPathIgnorePatterns=''",
|
|
93
76
|
"diagnostics": "tsx scripts/collect-diagnostics.ts"
|
|
94
77
|
}
|