@dxc-technology/halstack-react 15.2.2 → 16.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/README.md +2 -2
- package/dist/index.d.mts +906 -3718
- package/dist/index.d.ts +906 -3718
- package/dist/index.js +13488 -13814
- package/dist/index.mjs +13352 -13709
- package/package.json +48 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxc-technology/halstack-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "16.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dxc-technology/halstack-react.git"
|
|
@@ -22,66 +22,82 @@
|
|
|
22
22
|
"lint": "eslint . --max-warnings 0",
|
|
23
23
|
"prepublishOnly": "node ../../scripts/copy-readme.js",
|
|
24
24
|
"storybook": "storybook dev -p 6006",
|
|
25
|
+
"test-storybook": "vitest --project=storybook --coverage",
|
|
26
|
+
"test": "jest --env=jsdom --config=./jest.config.ts",
|
|
27
|
+
"test:accessibility": "vitest run --config=vitest.config.accessibility.ts",
|
|
28
|
+
"test:watch": "jest --env=jsdom --config=./jest.config.ts --watch",
|
|
25
29
|
"storybook:accessibility": "test-storybook",
|
|
26
|
-
"storybook:accessibility:ci": "test-storybook --maxWorkers=2"
|
|
27
|
-
"test": "jest --env=jsdom --config=./jest.config.js",
|
|
28
|
-
"test:accessibility": "jest --env=jsdom --config=./jest.config.accessibility.js",
|
|
29
|
-
"test:watch": "jest --env=jsdom --config=./jest.config.js --watch"
|
|
30
|
+
"storybook:accessibility:ci": "test-storybook --maxWorkers=2"
|
|
30
31
|
},
|
|
31
32
|
"peerDependencies": {
|
|
33
|
+
"@emotion/react": "^11.14.0",
|
|
34
|
+
"@emotion/styled": "^11.14.1",
|
|
32
35
|
"react": "^18.3.1",
|
|
33
36
|
"react-data-grid": "7.0.0-beta.44",
|
|
34
|
-
"react-dom": "^18.3.1"
|
|
35
|
-
"styled-components": "^5.0.1"
|
|
37
|
+
"react-dom": "^18.3.1"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
40
|
+
"@babel/runtime": "^7.28.2",
|
|
38
41
|
"@radix-ui/react-popover": "^1.1.0",
|
|
39
42
|
"@radix-ui/react-tooltip": "^1.1.0",
|
|
40
43
|
"color": "^4.2.3",
|
|
41
44
|
"dayjs": "^1.11.11",
|
|
45
|
+
"react-virtuoso": "^4.12.8",
|
|
42
46
|
"slugify": "^1.6.6"
|
|
43
47
|
},
|
|
44
48
|
"devDependencies": {
|
|
49
|
+
"@babel/core": "^7.28.0",
|
|
45
50
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
|
|
46
51
|
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
|
|
47
52
|
"@babel/plugin-transform-runtime": "^7.16.8",
|
|
48
53
|
"@babel/preset-env": "^7.16.8",
|
|
49
54
|
"@babel/preset-react": "^7.16.7",
|
|
50
55
|
"@babel/preset-typescript": "^7.16.7",
|
|
51
|
-
"@chromatic-com/storybook": "^1.
|
|
56
|
+
"@chromatic-com/storybook": "^4.1.1",
|
|
52
57
|
"@dxc-technology/eslint-config": "*",
|
|
53
58
|
"@dxc-technology/typescript-config": "*",
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@storybook/addon-
|
|
58
|
-
"@storybook/addon-
|
|
59
|
-
"@storybook/
|
|
60
|
-
"@storybook/
|
|
61
|
-
"@storybook/react-vite": "^
|
|
62
|
-
"@
|
|
63
|
-
"@
|
|
64
|
-
"@testing-library/react": "^16.0.1",
|
|
59
|
+
"@emotion/babel-plugin": "^11.13.5",
|
|
60
|
+
"@emotion/react": "^11.14.0",
|
|
61
|
+
"@emotion/styled": "^11.14.1",
|
|
62
|
+
"@storybook/addon-a11y": "^9.1.10",
|
|
63
|
+
"@storybook/addon-links": "^9.1.10",
|
|
64
|
+
"@storybook/addon-vitest": "^9.1.10",
|
|
65
|
+
"@storybook/builder-vite": "^9.1.10",
|
|
66
|
+
"@storybook/react-vite": "^9.1.10",
|
|
67
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
68
|
+
"@testing-library/react": "^16.3.0",
|
|
65
69
|
"@testing-library/user-event": "^13.0.0",
|
|
66
|
-
"@types/
|
|
70
|
+
"@types/color": "^3.0.6",
|
|
71
|
+
"@types/eslint": "^9.6.1",
|
|
67
72
|
"@types/jest": "^29.5.12",
|
|
68
|
-
"@types/jest-axe": "^3.5.9",
|
|
69
73
|
"@types/node": "^20.11.24",
|
|
70
74
|
"@types/react": "^18.2.61",
|
|
71
75
|
"@types/react-dom": "^18.2.19",
|
|
72
|
-
"@
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
76
|
+
"@vitejs/plugin-react": "4.7.0",
|
|
77
|
+
"@vitest/browser": "^3.2.4",
|
|
78
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
79
|
+
"chromatic": "^13.3.0",
|
|
80
|
+
"esbuild-plugin-babel": "^0.2.3",
|
|
81
|
+
"eslint": "^9.39.1",
|
|
82
|
+
"eslint-config-prettier": "^10.1.8",
|
|
83
|
+
"eslint-plugin-import": "^2.29.0",
|
|
84
|
+
"eslint-plugin-jest": "^29.0.1",
|
|
85
|
+
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
86
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
87
|
+
"eslint-plugin-react": "^7.34.1",
|
|
88
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
89
|
+
"eslint-plugin-security": "^3.0.0",
|
|
90
|
+
"eslint-plugin-storybook": "^9.1.10",
|
|
77
91
|
"identity-obj-proxy": "^3.0.0",
|
|
78
|
-
"jest": "^
|
|
79
|
-
"jest-axe": "^9.0.0",
|
|
92
|
+
"jest": "^30.2.0",
|
|
80
93
|
"jest-environment-jsdom": "^29.7.0",
|
|
81
|
-
"playwright": "^1.
|
|
82
|
-
"storybook": "^
|
|
83
|
-
"storybook-addon-pseudo-states": "^
|
|
94
|
+
"playwright": "^1.54.1",
|
|
95
|
+
"storybook": "^9.1.10",
|
|
96
|
+
"storybook-addon-pseudo-states": "^9.1.10",
|
|
97
|
+
"ts-node": "^10.9.2",
|
|
84
98
|
"tsup": "^8.1.0",
|
|
85
|
-
"typescript": "^5.6.3"
|
|
99
|
+
"typescript": "^5.6.3",
|
|
100
|
+
"vitest": "^3.2.4",
|
|
101
|
+
"vitest-axe": "^0.1.0"
|
|
86
102
|
}
|
|
87
103
|
}
|