@react-hive/honey-layout 16.1.0 → 16.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/components/HoneyBox/HoneyBox.d.ts +1 -1
- package/dist/components/HoneyFlex/HoneyFlex.d.ts +1 -1
- package/dist/components/HoneyGrid/HoneyGridStyled.d.ts +1 -1
- package/dist/components/HoneyGridColumn/HoneyGridColumnStyled.d.ts +1 -1
- package/dist/components/HoneyList/HoneyListStyled.d.ts +1 -1
- package/dist/components/HoneyPopup/HoneyPopupStyled.d.ts +1 -1
- package/dist/helpers/helpers.d.ts +0 -1
- package/dist/hooks/use-honey-overlay.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.dev.cjs +19 -29
- package/dist/index.dev.cjs.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +19 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-hive/honey-layout",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.3.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -19,18 +19,19 @@
|
|
|
19
19
|
"author": "Mike Aliinyk <m.aliynik@gmail.com>",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"type": "module",
|
|
22
|
-
"main": "dist/index.cjs",
|
|
23
|
-
"module": "dist/index.mjs",
|
|
24
22
|
"types": "dist/index.d.ts",
|
|
25
23
|
"exports": {
|
|
26
|
-
"
|
|
27
|
-
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"import": "./dist/index.mjs",
|
|
27
|
+
"require": "./dist/index.cjs",
|
|
28
|
+
"default": "./dist/index.mjs"
|
|
29
|
+
}
|
|
28
30
|
},
|
|
29
31
|
"files": [
|
|
30
32
|
"dist",
|
|
31
33
|
"!dist/**/__mocks__",
|
|
32
|
-
"!dist/**/__tests__"
|
|
33
|
-
"!dist/**/jest*"
|
|
34
|
+
"!dist/**/__tests__"
|
|
34
35
|
],
|
|
35
36
|
"peerDependencies": {
|
|
36
37
|
"@react-hive/honey-style": "^5.0.0",
|
|
@@ -40,8 +41,8 @@
|
|
|
40
41
|
"dependencies": {
|
|
41
42
|
"@floating-ui/dom": "1.7.6",
|
|
42
43
|
"@floating-ui/react": "0.27.19",
|
|
43
|
-
"@react-hive/honey-hooks": "
|
|
44
|
-
"@react-hive/honey-utils": "3.
|
|
44
|
+
"@react-hive/honey-hooks": "2.2.0",
|
|
45
|
+
"@react-hive/honey-utils": "3.28.0",
|
|
45
46
|
"csstype": "3.2.3",
|
|
46
47
|
"highlight.js": "11.11.1",
|
|
47
48
|
"lodash.merge": "4.6.2",
|
|
@@ -54,46 +55,31 @@
|
|
|
54
55
|
"@mdx-js/react": "3.1.1",
|
|
55
56
|
"@testing-library/jest-dom": "6.9.1",
|
|
56
57
|
"@testing-library/react": "16.3.2",
|
|
57
|
-
"@types/jest": "29.5.14",
|
|
58
58
|
"@types/lodash.merge": "4.6.9",
|
|
59
59
|
"@types/lodash.throttle": "4.1.9",
|
|
60
60
|
"@types/mdx": "2.0.13",
|
|
61
|
-
"@types/node": "22.19.
|
|
61
|
+
"@types/node": "22.19.15",
|
|
62
62
|
"@types/react": "^19.2.14",
|
|
63
63
|
"@types/react-dom": "^19.2.3",
|
|
64
|
-
"copy-webpack-plugin": "
|
|
64
|
+
"copy-webpack-plugin": "14.0.0",
|
|
65
65
|
"css-loader": "7.1.4",
|
|
66
|
-
"eslint": "10.0
|
|
66
|
+
"eslint": "10.1.0",
|
|
67
67
|
"eslint-plugin-react": "7.37.5",
|
|
68
68
|
"html-webpack-plugin": "5.6.6",
|
|
69
69
|
"husky": "9.1.7",
|
|
70
|
-
"
|
|
71
|
-
"jest-environment-jsdom": "29.7.0",
|
|
70
|
+
"jsdom": "29.0.1",
|
|
72
71
|
"prettier": "3.8.1",
|
|
73
72
|
"style-loader": "4.0.0",
|
|
74
|
-
"ts-jest": "29.4.6",
|
|
75
73
|
"ts-loader": "9.5.4",
|
|
76
74
|
"ts-node": "10.9.2",
|
|
77
75
|
"tsx": "4.21.0",
|
|
78
|
-
"typescript": "
|
|
79
|
-
"typescript-eslint": "8.57.
|
|
76
|
+
"typescript": "6.0.2",
|
|
77
|
+
"typescript-eslint": "8.57.2",
|
|
78
|
+
"vitest": "4.1.2",
|
|
80
79
|
"webpack": "5.105.4",
|
|
81
|
-
"webpack-cli": "7.0.
|
|
80
|
+
"webpack-cli": "7.0.2",
|
|
82
81
|
"webpack-dev-server": "5.2.3"
|
|
83
82
|
},
|
|
84
|
-
"jest": {
|
|
85
|
-
"preset": "ts-jest",
|
|
86
|
-
"testEnvironment": "jsdom",
|
|
87
|
-
"setupFilesAfterEnv": [
|
|
88
|
-
"<rootDir>/jest-setup.ts"
|
|
89
|
-
],
|
|
90
|
-
"testMatch": [
|
|
91
|
-
"**/src/**/__tests__/**/*.spec.ts?(x)"
|
|
92
|
-
],
|
|
93
|
-
"moduleNameMapper": {
|
|
94
|
-
"^~/(.*)$": "<rootDir>/src/$1"
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
83
|
"browserslist": [
|
|
98
84
|
"defaults",
|
|
99
85
|
"not IE 11"
|
|
@@ -101,7 +87,7 @@
|
|
|
101
87
|
"scripts": {
|
|
102
88
|
"clean": "rm -rf dist coverage",
|
|
103
89
|
"start": "NODE_ENV=development webpack serve --config webpack-docs.config.mjs",
|
|
104
|
-
"test": "
|
|
90
|
+
"test": "vitest",
|
|
105
91
|
"build:lib": "webpack --config webpack.config.mjs",
|
|
106
92
|
"build:docs": "webpack --config webpack-docs.config.mjs",
|
|
107
93
|
"diagnostics": "tsx scripts/collect-diagnostics.ts"
|