mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 15:45:43 -06:00
Update dependency @testing-library/dom to v10 (#85958)
* Update dependency @testing-library/dom to v10 * update @testing-library/react as well * fix unit tests --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
This commit is contained in:
parent
92d659527d
commit
51d5a4c8f2
@ -90,9 +90,9 @@
|
||||
"@rtsao/plugin-proposal-class-properties": "7.0.1-patch.1",
|
||||
"@swc/core": "1.4.2",
|
||||
"@swc/helpers": "0.5.8",
|
||||
"@testing-library/dom": "9.3.4",
|
||||
"@testing-library/dom": "10.0.0",
|
||||
"@testing-library/jest-dom": "6.4.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/angular": "1.8.9",
|
||||
"@types/angular-route": "1.7.6",
|
||||
|
@ -62,7 +62,7 @@
|
||||
"@grafana/tsconfig": "^1.3.0-rc1",
|
||||
"@rollup/plugin-node-resolve": "15.2.3",
|
||||
"@testing-library/jest-dom": "^6.1.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/d3": "^7",
|
||||
"@types/jest": "^29.5.4",
|
||||
|
@ -31,7 +31,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/tsconfig": "^1.3.0-rc1",
|
||||
"@testing-library/jest-dom": "^6.1.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/jest": "^29.5.4",
|
||||
"@types/react": "18.2.75",
|
||||
|
@ -82,9 +82,9 @@
|
||||
"@rollup/plugin-node-resolve": "15.2.3",
|
||||
"@swc/core": "1.4.2",
|
||||
"@swc/helpers": "0.5.8",
|
||||
"@testing-library/dom": "9.3.4",
|
||||
"@testing-library/dom": "10.0.0",
|
||||
"@testing-library/jest-dom": "6.4.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/d3": "7.4.3",
|
||||
"@types/debounce-promise": "3.1.9",
|
||||
|
@ -51,8 +51,8 @@
|
||||
"@grafana/tsconfig": "^1.3.0-rc1",
|
||||
"@rollup/plugin-node-resolve": "15.2.3",
|
||||
"@rollup/plugin-terser": "0.4.4",
|
||||
"@testing-library/dom": "9.3.4",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/dom": "10.0.0",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/angular": "1.8.9",
|
||||
"@types/history": "4.7.11",
|
||||
|
@ -35,7 +35,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/tsconfig": "^1.3.0-rc1",
|
||||
"@testing-library/jest-dom": "^6.1.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/react-hooks": "^8.0.1",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/jest": "^29.5.4",
|
||||
|
@ -127,9 +127,9 @@
|
||||
"@storybook/react": "7.4.5",
|
||||
"@storybook/react-webpack5": "7.4.5",
|
||||
"@storybook/theming": "7.4.5",
|
||||
"@testing-library/dom": "9.3.4",
|
||||
"@testing-library/dom": "10.0.0",
|
||||
"@testing-library/jest-dom": "6.4.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/common-tags": "^1.8.0",
|
||||
"@types/d3": "7.4.3",
|
||||
|
@ -66,7 +66,7 @@ describe('PluginListItem', () => {
|
||||
|
||||
expect(screen.getByRole('link')).toHaveAttribute('href', '/plugins/test-plugin');
|
||||
|
||||
const logo = screen.getByRole('img');
|
||||
const logo = screen.getByRole('presentation');
|
||||
expect(logo).toHaveAttribute('src', plugin.info.logos.small);
|
||||
|
||||
expect(screen.getByRole('heading', { name: /testing plugin/i })).toBeVisible();
|
||||
@ -109,7 +109,7 @@ describe('PluginListItem', () => {
|
||||
|
||||
expect(screen.getByRole('link')).toHaveAttribute('href', '/plugins/test-plugin');
|
||||
|
||||
const logo = screen.getByRole('img');
|
||||
const logo = screen.getByRole('presentation');
|
||||
expect(logo).toHaveAttribute('src', plugin.info.logos.small);
|
||||
|
||||
expect(screen.getByRole('heading', { name: /testing plugin/i })).toBeVisible();
|
||||
|
@ -25,7 +25,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/e2e-selectors": "11.1.0-pre",
|
||||
"@grafana/plugin-configs": "11.1.0-pre",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/jest": "29.5.12",
|
||||
"@types/lodash": "4.17.0",
|
||||
|
@ -26,7 +26,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/e2e-selectors": "11.1.0-pre",
|
||||
"@grafana/plugin-configs": "11.1.0-pre",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/debounce-promise": "3.1.9",
|
||||
"@types/jest": "29.5.12",
|
||||
|
@ -22,7 +22,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/plugin-configs": "11.1.0-pre",
|
||||
"@testing-library/jest-dom": "6.4.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/jest": "29.5.12",
|
||||
"@types/lodash": "4.17.0",
|
||||
|
@ -22,7 +22,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/e2e-selectors": "11.1.0-pre",
|
||||
"@grafana/plugin-configs": "11.1.0-pre",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/d3-random": "^3.0.2",
|
||||
"@types/jest": "29.5.12",
|
||||
|
@ -21,7 +21,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/plugin-configs": "workspace:*",
|
||||
"@testing-library/jest-dom": "6.4.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/jest": "29.5.12",
|
||||
"@types/lodash": "4.17.0",
|
||||
|
@ -18,7 +18,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@grafana/plugin-configs": "11.1.0-pre",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/lodash": "4.17.0",
|
||||
"@types/react": "18.2.75",
|
||||
|
@ -40,7 +40,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/plugin-configs": "11.1.0-pre",
|
||||
"@testing-library/jest-dom": "6.4.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@testing-library/user-event": "14.5.2",
|
||||
"@types/jest": "29.5.12",
|
||||
"@types/lodash": "4.17.0",
|
||||
|
@ -19,7 +19,7 @@
|
||||
"devDependencies": {
|
||||
"@grafana/plugin-configs": "workspace:*",
|
||||
"@testing-library/jest-dom": "6.4.2",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@testing-library/react": "15.0.0",
|
||||
"@types/jest": "29.5.12",
|
||||
"@types/lodash": "4.17.0",
|
||||
"@types/react": "18.2.75",
|
||||
|
@ -133,7 +133,7 @@ describe('AnnoListPanel', () => {
|
||||
|
||||
it("renders annotation item's html content", async () => {
|
||||
const { getMock } = await setupTestContext({
|
||||
results: [{ ...defaultResult, text: '<a href="">test link </a> ' }],
|
||||
results: [{ ...defaultResult, text: '<a href="/path">test link </a> ' }],
|
||||
});
|
||||
|
||||
getMock.mockClear();
|
||||
|
134
yarn.lock
134
yarn.lock
@ -3311,7 +3311,7 @@ __metadata:
|
||||
"@grafana/schema": "npm:11.1.0-pre"
|
||||
"@grafana/ui": "npm:11.1.0-pre"
|
||||
"@kusto/monaco-kusto": "npm:^10.0.0"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/jest": "npm:29.5.12"
|
||||
"@types/lodash": "npm:4.17.0"
|
||||
@ -3349,7 +3349,7 @@ __metadata:
|
||||
"@grafana/schema": "npm:11.1.0-pre"
|
||||
"@grafana/ui": "npm:11.1.0-pre"
|
||||
"@testing-library/jest-dom": "npm:6.4.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/jest": "npm:29.5.12"
|
||||
"@types/lodash": "npm:4.17.0"
|
||||
@ -3389,7 +3389,7 @@ __metadata:
|
||||
"@grafana/runtime": "npm:11.1.0-pre"
|
||||
"@grafana/schema": "npm:11.1.0-pre"
|
||||
"@grafana/ui": "npm:11.1.0-pre"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/d3-random": "npm:^3.0.2"
|
||||
"@types/jest": "npm:29.5.12"
|
||||
@ -3425,7 +3425,7 @@ __metadata:
|
||||
"@grafana/runtime": "workspace:*"
|
||||
"@grafana/ui": "workspace:*"
|
||||
"@testing-library/jest-dom": "npm:6.4.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/jest": "npm:29.5.12"
|
||||
"@types/lodash": "npm:4.17.0"
|
||||
@ -3456,7 +3456,7 @@ __metadata:
|
||||
"@grafana/runtime": "npm:11.1.0-pre"
|
||||
"@grafana/schema": "npm:11.1.0-pre"
|
||||
"@grafana/ui": "npm:11.1.0-pre"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/lodash": "npm:4.17.0"
|
||||
"@types/react": "npm:18.2.75"
|
||||
@ -3486,7 +3486,7 @@ __metadata:
|
||||
"@grafana/runtime": "npm:11.1.0-pre"
|
||||
"@grafana/schema": "npm:11.1.0-pre"
|
||||
"@grafana/ui": "npm:11.1.0-pre"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/debounce-promise": "npm:3.1.9"
|
||||
"@types/jest": "npm:29.5.12"
|
||||
@ -3539,7 +3539,7 @@ __metadata:
|
||||
"@opentelemetry/exporter-collector": "npm:0.25.0"
|
||||
"@opentelemetry/semantic-conventions": "npm:1.23.0"
|
||||
"@testing-library/jest-dom": "npm:6.4.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/jest": "npm:29.5.12"
|
||||
"@types/lodash": "npm:4.17.0"
|
||||
@ -3587,7 +3587,7 @@ __metadata:
|
||||
"@grafana/runtime": "workspace:*"
|
||||
"@grafana/ui": "workspace:*"
|
||||
"@testing-library/jest-dom": "npm:6.4.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@types/jest": "npm:29.5.12"
|
||||
"@types/lodash": "npm:4.17.0"
|
||||
"@types/react": "npm:18.2.75"
|
||||
@ -3863,7 +3863,7 @@ __metadata:
|
||||
"@leeoniya/ufuzzy": "npm:1.0.14"
|
||||
"@rollup/plugin-node-resolve": "npm:15.2.3"
|
||||
"@testing-library/jest-dom": "npm:^6.1.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/d3": "npm:^7"
|
||||
"@types/jest": "npm:^29.5.4"
|
||||
@ -3946,7 +3946,7 @@ __metadata:
|
||||
"@grafana/tsconfig": "npm:^1.3.0-rc1"
|
||||
"@grafana/ui": "npm:11.1.0-pre"
|
||||
"@testing-library/jest-dom": "npm:^6.1.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/jest": "npm:^29.5.4"
|
||||
"@types/react": "npm:18.2.75"
|
||||
@ -4020,9 +4020,9 @@ __metadata:
|
||||
"@rollup/plugin-node-resolve": "npm:15.2.3"
|
||||
"@swc/core": "npm:1.4.2"
|
||||
"@swc/helpers": "npm:0.5.8"
|
||||
"@testing-library/dom": "npm:9.3.4"
|
||||
"@testing-library/dom": "npm:10.0.0"
|
||||
"@testing-library/jest-dom": "npm:6.4.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/d3": "npm:7.4.3"
|
||||
"@types/debounce-promise": "npm:3.1.9"
|
||||
@ -4120,8 +4120,8 @@ __metadata:
|
||||
"@grafana/ui": "npm:11.1.0-pre"
|
||||
"@rollup/plugin-node-resolve": "npm:15.2.3"
|
||||
"@rollup/plugin-terser": "npm:0.4.4"
|
||||
"@testing-library/dom": "npm:9.3.4"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/dom": "npm:10.0.0"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/angular": "npm:1.8.9"
|
||||
"@types/history": "npm:4.7.11"
|
||||
@ -4232,7 +4232,7 @@ __metadata:
|
||||
"@grafana/ui": "npm:11.1.0-pre"
|
||||
"@react-awesome-query-builder/ui": "npm:6.4.2"
|
||||
"@testing-library/jest-dom": "npm:^6.1.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/react-hooks": "npm:^8.0.1"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/jest": "npm:^29.5.4"
|
||||
@ -4310,9 +4310,9 @@ __metadata:
|
||||
"@storybook/react": "npm:7.4.5"
|
||||
"@storybook/react-webpack5": "npm:7.4.5"
|
||||
"@storybook/theming": "npm:7.4.5"
|
||||
"@testing-library/dom": "npm:9.3.4"
|
||||
"@testing-library/dom": "npm:10.0.0"
|
||||
"@testing-library/jest-dom": "npm:6.4.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/common-tags": "npm:^1.8.0"
|
||||
"@types/d3": "npm:7.4.3"
|
||||
@ -8920,19 +8920,19 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@testing-library/dom@npm:9.3.4, @testing-library/dom@npm:>=7, @testing-library/dom@npm:^9.0.0":
|
||||
version: 9.3.4
|
||||
resolution: "@testing-library/dom@npm:9.3.4"
|
||||
"@testing-library/dom@npm:10.0.0, @testing-library/dom@npm:>=7, @testing-library/dom@npm:^10.0.0":
|
||||
version: 10.0.0
|
||||
resolution: "@testing-library/dom@npm:10.0.0"
|
||||
dependencies:
|
||||
"@babel/code-frame": "npm:^7.10.4"
|
||||
"@babel/runtime": "npm:^7.12.5"
|
||||
"@types/aria-query": "npm:^5.0.1"
|
||||
aria-query: "npm:5.1.3"
|
||||
aria-query: "npm:5.3.0"
|
||||
chalk: "npm:^4.1.0"
|
||||
dom-accessibility-api: "npm:^0.5.9"
|
||||
lz-string: "npm:^1.5.0"
|
||||
pretty-format: "npm:^27.0.2"
|
||||
checksum: 10/510da752ea76f4a10a0a4e3a77917b0302cf03effe576cd3534cab7e796533ee2b0e9fb6fb11b911a1ebd7c70a0bb6f235bf4f816c9b82b95b8fe0cddfd10975
|
||||
checksum: 10/d0d0ffffed0dae705c5c615d8779348743e66704b2da1ce3e2df7c2d038cde55d7f11819e9b50ca53d3ec815050fab928c8845316c2f713141b9fb8ad50921f6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -8991,17 +8991,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@testing-library/react@npm:14.2.2":
|
||||
version: 14.2.2
|
||||
resolution: "@testing-library/react@npm:14.2.2"
|
||||
"@testing-library/react@npm:15.0.0":
|
||||
version: 15.0.0
|
||||
resolution: "@testing-library/react@npm:15.0.0"
|
||||
dependencies:
|
||||
"@babel/runtime": "npm:^7.12.5"
|
||||
"@testing-library/dom": "npm:^9.0.0"
|
||||
"@testing-library/dom": "npm:^10.0.0"
|
||||
"@types/react-dom": "npm:^18.0.0"
|
||||
peerDependencies:
|
||||
react: ^18.0.0
|
||||
react-dom: ^18.0.0
|
||||
checksum: 10/3605577fda8d5e27b8919f390f749af91494d03e7ba5ccaf6480ed1184248372c5a4e8fe1c8c3ad4c1a7b3536f37144ba4b4626900ed46dc9811312f280eee31
|
||||
checksum: 10/78217cb67c2e0fb72dc4f51d19a25fbc290f298f3ca73a517ceda67a352741405740e0daa9ba5d93e4496a8f51f1465774e84d2a828863133b539304e0759dad
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -11780,16 +11780,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"aria-query@npm:5.1.3":
|
||||
version: 5.1.3
|
||||
resolution: "aria-query@npm:5.1.3"
|
||||
dependencies:
|
||||
deep-equal: "npm:^2.0.5"
|
||||
checksum: 10/e5da608a7c4954bfece2d879342b6c218b6b207e2d9e5af270b5e38ef8418f02d122afdc948b68e32649b849a38377785252059090d66fa8081da95d1609c0d2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"aria-query@npm:^5.0.0, aria-query@npm:^5.3.0":
|
||||
"aria-query@npm:5.3.0, aria-query@npm:^5.0.0, aria-query@npm:^5.3.0":
|
||||
version: 5.3.0
|
||||
resolution: "aria-query@npm:5.3.0"
|
||||
dependencies:
|
||||
@ -15240,31 +15231,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"deep-equal@npm:^2.0.5":
|
||||
version: 2.2.0
|
||||
resolution: "deep-equal@npm:2.2.0"
|
||||
dependencies:
|
||||
call-bind: "npm:^1.0.2"
|
||||
es-get-iterator: "npm:^1.1.2"
|
||||
get-intrinsic: "npm:^1.1.3"
|
||||
is-arguments: "npm:^1.1.1"
|
||||
is-array-buffer: "npm:^3.0.1"
|
||||
is-date-object: "npm:^1.0.5"
|
||||
is-regex: "npm:^1.1.4"
|
||||
is-shared-array-buffer: "npm:^1.0.2"
|
||||
isarray: "npm:^2.0.5"
|
||||
object-is: "npm:^1.1.5"
|
||||
object-keys: "npm:^1.1.1"
|
||||
object.assign: "npm:^4.1.4"
|
||||
regexp.prototype.flags: "npm:^1.4.3"
|
||||
side-channel: "npm:^1.0.4"
|
||||
which-boxed-primitive: "npm:^1.0.2"
|
||||
which-collection: "npm:^1.0.1"
|
||||
which-typed-array: "npm:^1.1.9"
|
||||
checksum: 10/c59f1ca67546e25b57ee66806b966e605be825ec22f5fbf30663e6b5ce4e1b43519c601f8282e10837d9c71d0136ddee5917dbfd0da1b11654dcfea6f0557ee3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"deep-is@npm:^0.1.3":
|
||||
version: 0.1.4
|
||||
resolution: "deep-is@npm:0.1.4"
|
||||
@ -16124,23 +16090,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"es-get-iterator@npm:^1.1.2":
|
||||
version: 1.1.3
|
||||
resolution: "es-get-iterator@npm:1.1.3"
|
||||
dependencies:
|
||||
call-bind: "npm:^1.0.2"
|
||||
get-intrinsic: "npm:^1.1.3"
|
||||
has-symbols: "npm:^1.0.3"
|
||||
is-arguments: "npm:^1.1.1"
|
||||
is-map: "npm:^2.0.2"
|
||||
is-set: "npm:^2.0.2"
|
||||
is-string: "npm:^1.0.7"
|
||||
isarray: "npm:^2.0.5"
|
||||
stop-iteration-iterator: "npm:^1.0.0"
|
||||
checksum: 10/bc2194befbe55725f9489098626479deee3c801eda7e83ce0dff2eb266a28dc808edb9b623ff01d31ebc1328f09d661333d86b601036692c2e3c1a6942319433
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"es-iterator-helpers@npm:^1.0.12, es-iterator-helpers@npm:^1.0.15, es-iterator-helpers@npm:^1.0.17":
|
||||
version: 1.0.17
|
||||
resolution: "es-iterator-helpers@npm:1.0.17"
|
||||
@ -18709,9 +18658,9 @@ __metadata:
|
||||
"@rtsao/plugin-proposal-class-properties": "npm:7.0.1-patch.1"
|
||||
"@swc/core": "npm:1.4.2"
|
||||
"@swc/helpers": "npm:0.5.8"
|
||||
"@testing-library/dom": "npm:9.3.4"
|
||||
"@testing-library/dom": "npm:10.0.0"
|
||||
"@testing-library/jest-dom": "npm:6.4.2"
|
||||
"@testing-library/react": "npm:14.2.2"
|
||||
"@testing-library/react": "npm:15.0.0"
|
||||
"@testing-library/react-hooks": "npm:^8.0.1"
|
||||
"@testing-library/user-event": "npm:14.5.2"
|
||||
"@types/angular": "npm:1.8.9"
|
||||
@ -19976,7 +19925,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"internal-slot@npm:^1.0.4, internal-slot@npm:^1.0.5, internal-slot@npm:^1.0.7":
|
||||
"internal-slot@npm:^1.0.5, internal-slot@npm:^1.0.7":
|
||||
version: 1.0.7
|
||||
resolution: "internal-slot@npm:1.0.7"
|
||||
dependencies:
|
||||
@ -20084,7 +20033,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"is-arguments@npm:^1.0.4, is-arguments@npm:^1.1.1":
|
||||
"is-arguments@npm:^1.0.4":
|
||||
version: 1.1.1
|
||||
resolution: "is-arguments@npm:1.1.1"
|
||||
dependencies:
|
||||
@ -20094,7 +20043,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"is-array-buffer@npm:^3.0.1, is-array-buffer@npm:^3.0.4":
|
||||
"is-array-buffer@npm:^3.0.4":
|
||||
version: 3.0.4
|
||||
resolution: "is-array-buffer@npm:3.0.4"
|
||||
dependencies:
|
||||
@ -20377,7 +20326,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"is-map@npm:^2.0.1, is-map@npm:^2.0.2":
|
||||
"is-map@npm:^2.0.1":
|
||||
version: 2.0.2
|
||||
resolution: "is-map@npm:2.0.2"
|
||||
checksum: 10/60ba910f835f2eacb1fdf5b5a6c60fe1c702d012a7673e6546992bcc0c873f62ada6e13d327f9e48f1720d49c152d6cdecae1fa47a261ef3d247c3ce6f0e1d39
|
||||
@ -20534,7 +20483,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"is-set@npm:^2.0.1, is-set@npm:^2.0.2":
|
||||
"is-set@npm:^2.0.1":
|
||||
version: 2.0.2
|
||||
resolution: "is-set@npm:2.0.2"
|
||||
checksum: 10/d89e82acdc7760993474f529e043f9c4a1d63ed4774d21cc2e331d0e401e5c91c27743cd7c889137028f6a742234759a4bd602368fbdbf0b0321994aefd5603f
|
||||
@ -24160,7 +24109,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"object-is@npm:^1.0.1, object-is@npm:^1.1.5":
|
||||
"object-is@npm:^1.0.1":
|
||||
version: 1.1.5
|
||||
resolution: "object-is@npm:1.1.5"
|
||||
dependencies:
|
||||
@ -27561,7 +27510,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"regexp.prototype.flags@npm:^1.4.3, regexp.prototype.flags@npm:^1.5.0, regexp.prototype.flags@npm:^1.5.2":
|
||||
"regexp.prototype.flags@npm:^1.5.0, regexp.prototype.flags@npm:^1.5.2":
|
||||
version: 1.5.2
|
||||
resolution: "regexp.prototype.flags@npm:1.5.2"
|
||||
dependencies:
|
||||
@ -29357,15 +29306,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"stop-iteration-iterator@npm:^1.0.0":
|
||||
version: 1.0.0
|
||||
resolution: "stop-iteration-iterator@npm:1.0.0"
|
||||
dependencies:
|
||||
internal-slot: "npm:^1.0.4"
|
||||
checksum: 10/2a23a36f4f6bfa63f46ae2d53a3f80fe8276110b95a55345d8ed3d92125413494033bc8697eb774e8f7aeb5725f70e3d69753caa2ecacdac6258c16fa8aa8b0f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"store2@npm:^2.14.2":
|
||||
version: 2.14.2
|
||||
resolution: "store2@npm:2.14.2"
|
||||
|
Loading…
Reference in New Issue
Block a user