@purpurds/tooltip 6.1.4 → 6.2.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/.rush/temp/ci_build/@purpurds/tooltip/{935e1a42459d392b707a49941195379f1dba974f.untar.log → cfa57a168f959f7acd4a9e9d690a7120ba64651a.untar.log} +2 -2
- package/.rush/temp/operation/ci_build/all.log +3 -3
- package/.rush/temp/operation/ci_build/state.json +1 -1
- package/.rush/temp/operation/test_unit/all.log +4 -4
- package/.rush/temp/operation/test_unit/state.json +1 -1
- package/.rush/temp/shrinkwrap-deps.json +32 -36
- package/dist/LICENSE.txt +4 -4
- package/dist/tooltip.cjs.js.map +1 -1
- package/dist/tooltip.es.js.map +1 -1
- package/package.json +26 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpurds/tooltip",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "./dist/tooltip.cjs.js",
|
|
6
6
|
"types": "./dist/tooltip.d.ts",
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@radix-ui/react-tooltip": "~1.1.8",
|
|
19
19
|
"classnames": "~2.5.0",
|
|
20
|
-
"@purpurds/button": "6.
|
|
21
|
-
"@purpurds/
|
|
22
|
-
"@purpurds/
|
|
23
|
-
"@purpurds/paragraph": "6.
|
|
24
|
-
"@purpurds/
|
|
20
|
+
"@purpurds/button": "6.2.0",
|
|
21
|
+
"@purpurds/tokens": "6.2.0",
|
|
22
|
+
"@purpurds/action": "6.2.0",
|
|
23
|
+
"@purpurds/paragraph": "6.2.0",
|
|
24
|
+
"@purpurds/icon": "6.2.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@rushstack/eslint-patch": "~1.10.0",
|
|
@@ -29,25 +29,39 @@
|
|
|
29
29
|
"storybook": "^8.3.5",
|
|
30
30
|
"@telia/base-rig": "~8.2.0",
|
|
31
31
|
"@telia/react-rig": "~3.2.0",
|
|
32
|
-
"@testing-library/dom": "~
|
|
32
|
+
"@testing-library/dom": "~10.4.0",
|
|
33
33
|
"@testing-library/jest-dom": "~6.4.0",
|
|
34
|
-
"@testing-library/react": "~
|
|
34
|
+
"@testing-library/react": "~ 16.2.0",
|
|
35
35
|
"@testing-library/user-event": "~14.5.1",
|
|
36
36
|
"@types/node": "20.12.12",
|
|
37
|
-
"@types/react-dom": "^
|
|
38
|
-
"@types/react": "^
|
|
37
|
+
"@types/react-dom": "^19.0.4",
|
|
38
|
+
"@types/react": "^19.0.10",
|
|
39
39
|
"eslint-plugin-testing-library": "~6.2.0",
|
|
40
40
|
"eslint": "^8.57.0",
|
|
41
41
|
"jsdom": "~22.1.0",
|
|
42
42
|
"lint-staged": "~10.5.3",
|
|
43
43
|
"prettier": "~2.8.8",
|
|
44
|
-
"react-dom": "^
|
|
45
|
-
"react": "^
|
|
44
|
+
"react-dom": "^19.0.0",
|
|
45
|
+
"react": "^19.0.0",
|
|
46
46
|
"typescript": "^5.6.3",
|
|
47
47
|
"vite": "5.4.8",
|
|
48
48
|
"vitest": "^2.1.2",
|
|
49
49
|
"@purpurds/component-rig": "1.0.0"
|
|
50
50
|
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@types/react": "^18 || ^19",
|
|
53
|
+
"@types/react-dom": "^18 || ^19",
|
|
54
|
+
"react": "^18 || ^19",
|
|
55
|
+
"react-dom": "^18 || ^19"
|
|
56
|
+
},
|
|
57
|
+
"peerDependenciesMeta": {
|
|
58
|
+
"@types/react": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"@types/react-dom": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
64
|
+
},
|
|
51
65
|
"scripts": {
|
|
52
66
|
"build:dev": "vite",
|
|
53
67
|
"build:watch": "vite build --watch",
|