react-tooltip 5.7.4 → 5.8.0-beta.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/README.md +42 -19
- package/dist/react-tooltip.cjs.js +170 -58
- package/dist/react-tooltip.cjs.min.js +3 -3
- package/dist/react-tooltip.d.ts +19 -1
- package/dist/react-tooltip.esm.js +171 -59
- package/dist/react-tooltip.esm.min.js +3 -3
- package/dist/react-tooltip.umd.js +170 -58
- package/dist/react-tooltip.umd.min.js +3 -3
- package/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-tooltip",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.8.0-beta.0",
|
|
4
4
|
"description": "react tooltip component",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "node ./cli.js --env=development && node --max_old_space_size=2048 ./node_modules/rollup/dist/bin/rollup -c rollup.config.dev.js --watch",
|
|
@@ -49,9 +49,12 @@
|
|
|
49
49
|
"@rollup/plugin-node-resolve": "14.1.0",
|
|
50
50
|
"@rollup/plugin-replace": "4.0.0",
|
|
51
51
|
"@rollup/plugin-typescript": "8.5.0",
|
|
52
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
53
|
+
"@testing-library/react": "12.1.5",
|
|
54
|
+
"@testing-library/user-event": "^14.4.3",
|
|
52
55
|
"@types/css": "^0.0.33",
|
|
53
56
|
"@types/css-modules": "^1.0.2",
|
|
54
|
-
"@types/jest": "
|
|
57
|
+
"@types/jest": "29.4.0",
|
|
55
58
|
"@types/react": "^18.0.21",
|
|
56
59
|
"@types/react-dom": "^18.0.6",
|
|
57
60
|
"@types/react-test-renderer": "^18.0.0",
|
|
@@ -68,9 +71,9 @@
|
|
|
68
71
|
"eslint-plugin-react": "7.31.11",
|
|
69
72
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
70
73
|
"husky": "^8.0.1",
|
|
71
|
-
"jest": "
|
|
72
|
-
"jest-environment-jsdom": "
|
|
73
|
-
"jest-transform-css": "
|
|
74
|
+
"jest": "29.4.2",
|
|
75
|
+
"jest-environment-jsdom": "29.4.2",
|
|
76
|
+
"jest-transform-css": "6.0.1",
|
|
74
77
|
"lint-staged": "13.0.3",
|
|
75
78
|
"postcss": "8.4.19",
|
|
76
79
|
"prettier": "^2.4.1",
|
|
@@ -78,7 +81,6 @@
|
|
|
78
81
|
"prop-types": "^15.7.2",
|
|
79
82
|
"react": "16.14.0",
|
|
80
83
|
"react-dom": "16.14.0",
|
|
81
|
-
"react-test-renderer": "16.14.0",
|
|
82
84
|
"rimraf": "^3.0.2",
|
|
83
85
|
"rollup": "2.79.1",
|
|
84
86
|
"rollup-plugin-analyzer": "^4.0.0",
|
|
@@ -96,9 +98,9 @@
|
|
|
96
98
|
"stylelint": "^13.13.1",
|
|
97
99
|
"stylelint-config-prettier": "^8.0.2",
|
|
98
100
|
"stylelint-config-standard": "^22.0.0",
|
|
99
|
-
"ts-jest": "
|
|
101
|
+
"ts-jest": "29.0.5",
|
|
100
102
|
"ts-node": "^10.9.1",
|
|
101
|
-
"typescript": "
|
|
103
|
+
"typescript": "4.9.5"
|
|
102
104
|
},
|
|
103
105
|
"peerDependencies": {
|
|
104
106
|
"react": ">=16.14.0",
|
|
@@ -117,7 +119,7 @@
|
|
|
117
119
|
]
|
|
118
120
|
},
|
|
119
121
|
"dependencies": {
|
|
120
|
-
"@floating-ui/dom": "
|
|
122
|
+
"@floating-ui/dom": "1.1.1",
|
|
121
123
|
"classnames": "^2.3.2"
|
|
122
124
|
}
|
|
123
125
|
}
|