Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(workspace): Bump react-related libraries (#3681)

authored by

Jovi De Croock and committed by
GitHub
b971fd00 6373f52f

+420 -425
-7
package.json
··· 39 39 "react-native" 40 40 ], 41 41 "allowedVersions": { 42 - "react": "17", 43 - "react-dom": "17", 44 - "react-is": "17", 45 42 "styled-components": "5" 46 43 } 47 44 }, 48 45 "overrides": { 49 - "@types/react": "^17.0.39", 50 46 "graphql": "^16.6.0", 51 - "react": "^17.0.2", 52 - "react-dom": "^17.0.2", 53 - "react-is": "^17.0.2", 54 47 "styled-components": "^5.2.3", 55 48 "wonka": "^6.3.2" 56 49 }
+2 -2
packages/next-urql/package.json
··· 49 49 "devDependencies": { 50 50 "@urql/core": "workspace:*", 51 51 "urql": "workspace:*", 52 - "@types/react": "^18.2.6", 53 - "@types/react-dom": "^18.2.4", 52 + "@types/react": "^18.3.8", 53 + "@types/react-dom": "^18.3.0", 54 54 "graphql": "^16.0.0", 55 55 "next": "^13.0.0", 56 56 "react": "^18.0.0",
+3 -1
packages/next-urql/src/DataHydrationContext.ts
··· 44 44 45 45 export function useDataHydrationContext(): DataHydrationValue | undefined { 46 46 const dataHydrationContext = React.useContext(DataHydrationContext); 47 - const insertHtml = React.useContext(ServerInsertedHTMLContext); 47 + const insertHtml = React.useContext(ServerInsertedHTMLContext as any) as ( 48 + cb: () => any 49 + ) => any; 48 50 49 51 if (typeof window !== 'undefined') return; 50 52
+8 -9
packages/react-urql/package.json
··· 42 42 }, 43 43 "devDependencies": { 44 44 "@cypress/react": "^8.0.2", 45 - "@cypress/vite-dev-server": "^5.0.4", 46 - "@testing-library/react": "^11.1.1", 47 - "@testing-library/react-hooks": "^5.1.2", 48 - "@types/react": "^17.0.4", 45 + "@cypress/vite-dev-server": "^5.2.0", 46 + "@testing-library/react": "^16.0.1", 47 + "@types/react": "^18.3.8", 49 48 "@types/react-test-renderer": "^17.0.1", 50 49 "@urql/core": "workspace:*", 51 50 "cypress": "^13.14.0", 52 51 "graphql": "^16.6.0", 53 - "react": "^17.0.1", 54 - "react-dom": "^17.0.1", 55 - "react-is": "^17.0.1", 56 - "react-ssr-prepass": "^1.1.2", 57 - "react-test-renderer": "^17.0.1" 52 + "react": "^18.3.1", 53 + "react-dom": "^18.3.1", 54 + "react-is": "^18.3.1", 55 + "react-ssr-prepass": "^1.5.0", 56 + "react-test-renderer": "^18.3.1" 58 57 }, 59 58 "peerDependencies": { 60 59 "@urql/core": "^5.0.0",
+1 -1
packages/react-urql/src/components/Query.test.tsx
··· 9 9 const mock = { 10 10 executeQuery: vi.fn(() => 11 11 pipe( 12 - interval(200), 12 + interval(150), 13 13 map((i: number) => ({ data: i, error: i + 1 })) 14 14 ) 15 15 ),
+2
packages/react-urql/src/hooks/useMutation.test.tsx
··· 1 + // @vitest-environment jsdom 2 + 1 3 import { vi, expect, it, beforeEach, describe, Mock } from 'vitest'; 2 4 3 5 // Note: Testing for hooks is not yet supported in Enzyme - https://github.com/airbnb/enzyme/issues/2011
+29 -35
packages/react-urql/src/hooks/useQuery.spec.ts
··· 1 - import { renderHook, act } from '@testing-library/react-hooks'; 1 + // @vitest-environment jsdom 2 + 3 + import { renderHook, act } from '@testing-library/react'; 2 4 import { interval, map, pipe } from 'wonka'; 3 5 import { RequestPolicy } from '@urql/core'; 4 6 import { vi, expect, it, beforeEach, describe, beforeAll, Mock } from 'vitest'; ··· 87 89 }); 88 90 89 91 it('should execute the subscription', async () => { 90 - const { waitForNextUpdate } = renderHook( 91 - ({ query, variables }) => useQuery({ query, variables }), 92 - { initialProps: { query: mockQuery, variables: mockVariables } } 93 - ); 92 + renderHook(({ query, variables }) => useQuery({ query, variables }), { 93 + initialProps: { query: mockQuery, variables: mockVariables }, 94 + }); 94 95 95 - await waitForNextUpdate(); 96 96 expect(client.executeQuery).toBeCalledTimes(1); 97 97 }); 98 98 99 99 it('should pass query and variables to executeQuery', async () => { 100 - const { waitForNextUpdate } = renderHook( 101 - ({ query, variables }) => useQuery({ query, variables }), 102 - { initialProps: { query: mockQuery, variables: mockVariables } } 103 - ); 100 + renderHook(({ query, variables }) => useQuery({ query, variables }), { 101 + initialProps: { query: mockQuery, variables: mockVariables }, 102 + }); 104 103 105 - await waitForNextUpdate(); 106 104 expect(client.executeQuery).toBeCalledTimes(1); 107 105 expect(client.executeQuery).toBeCalledWith( 108 106 { ··· 117 115 }); 118 116 119 117 it('should return data from executeQuery', async () => { 120 - const { result, waitForNextUpdate } = renderHook( 118 + const { result } = renderHook( 121 119 ({ query, variables }) => useQuery({ query, variables }), 122 120 { initialProps: { query: mockQuery, variables: mockVariables } } 123 121 ); 124 122 125 - await waitForNextUpdate(); 123 + await new Promise(res => setTimeout(res, 30)); 126 124 const [state] = result.current; 127 125 expect(state).toEqual({ 128 126 fetching: false, ··· 134 132 }); 135 133 136 134 it('should update if a new query is received', async () => { 137 - const { rerender, waitForNextUpdate } = renderHook< 138 - { query: string; variables?: object }, 139 - {} 135 + const { rerender } = renderHook< 136 + any, 137 + { query: string; variables: { id?: number } } 140 138 >(({ query, variables }) => useQuery({ query, variables }), { 141 139 initialProps: { query: mockQuery, variables: mockVariables }, 142 140 }); 143 141 144 - await waitForNextUpdate(); 145 142 expect(client.executeQuery).toBeCalledTimes(1); 146 143 147 144 const newQuery = ` ··· 151 148 } 152 149 `; 153 150 154 - rerender({ query: newQuery }); 151 + rerender({ query: newQuery, variables: {} }); 155 152 expect(client.executeQuery).toBeCalledTimes(2); 156 153 expect(client.executeQuery).toHaveBeenNthCalledWith( 157 154 2, ··· 167 164 }); 168 165 169 166 it('should update if new variables are received', async () => { 170 - const { rerender, waitForNextUpdate } = renderHook< 171 - { query: string; variables: object }, 172 - {} 173 - >(({ query, variables }) => useQuery({ query, variables }), { 174 - initialProps: { query: mockQuery, variables: mockVariables }, 175 - }); 167 + const { rerender } = renderHook( 168 + ({ query, variables }) => useQuery({ query, variables }), 169 + { 170 + initialProps: { query: mockQuery, variables: mockVariables }, 171 + } 172 + ); 176 173 177 - await waitForNextUpdate(); 178 174 expect(client.executeQuery).toBeCalledTimes(1); 179 175 180 176 const newVariables = { ··· 197 193 }); 198 194 199 195 it('should not update if query and variables are unchanged', async () => { 200 - const { rerender, waitForNextUpdate } = renderHook( 196 + const { rerender } = renderHook( 201 197 ({ query, variables }) => useQuery({ query, variables }), 202 198 { 203 199 initialProps: { query: mockQuery, variables: mockVariables }, 204 200 } 205 201 ); 206 202 207 - await waitForNextUpdate(); 208 203 expect(client.executeQuery).toBeCalledTimes(1); 209 204 210 205 rerender({ query: mockQuery, variables: mockVariables }); ··· 212 207 }); 213 208 214 209 it('should update if a new requestPolicy is provided', async () => { 215 - const { rerender, waitForNextUpdate } = renderHook( 210 + const { rerender } = renderHook( 216 211 ({ query, variables, requestPolicy }) => 217 212 useQuery({ query, variables, requestPolicy }), 218 213 { ··· 224 219 } 225 220 ); 226 221 227 - await waitForNextUpdate(); 228 222 expect(client.executeQuery).toBeCalledTimes(1); 229 223 expect(client.executeQuery).toHaveBeenNthCalledWith( 230 224 1, ··· 258 252 }); 259 253 260 254 it('should provide an executeQuery function to be imperatively executed', async () => { 261 - const { result, waitForNextUpdate } = renderHook( 255 + const { result } = renderHook( 262 256 ({ query, variables }) => useQuery({ query, variables }), 263 257 { initialProps: { query: mockQuery, variables: mockVariables } } 264 258 ); 265 259 266 - await waitForNextUpdate(); 267 260 expect(client.executeQuery).toBeCalledTimes(1); 268 261 269 262 const [, executeQuery] = result.current; 270 263 act(() => executeQuery()); 271 - await waitForNextUpdate(); 272 264 expect(client.executeQuery).toBeCalledTimes(2); 273 265 }); 274 266 ··· 288 280 }); 289 281 290 282 it('should pause executing the query if pause updates to true', async () => { 291 - const { rerender, waitForNextUpdate } = renderHook( 292 - ({ query, variables, pause }) => useQuery({ query, variables, pause }), 283 + const { rerender } = renderHook( 284 + props => { 285 + const { query, variables, pause } = props; 286 + return useQuery({ query, variables, pause }); 287 + }, 293 288 { 294 289 initialProps: { 295 290 query: mockQuery, ··· 299 294 } 300 295 ); 301 296 302 - await waitForNextUpdate(); 303 297 expect(client.executeQuery).toBeCalledTimes(1); 304 298 305 299 rerender({ query: mockQuery, variables: mockVariables, pause: true });
+1
packages/react-urql/src/hooks/useQuery.test.tsx
··· 1 + // @vitest-environment jsdom 1 2 import { vi, expect, it, beforeEach, describe, Mock } from 'vitest'; 2 3 3 4 // Note: Testing for hooks is not yet supported in Enzyme - https://github.com/airbnb/enzyme/issues/2011
+2 -1
packages/react-urql/src/hooks/useRequest.test.ts
··· 1 + // @vitest-environment jsdom 1 2 import { gql } from '@urql/core'; 2 - import { renderHook } from '@testing-library/react-hooks'; 3 + import { renderHook } from '@testing-library/react'; 3 4 import { it, expect } from 'vitest'; 4 5 import { useRequest } from './useRequest'; 5 6
+1
packages/react-urql/src/hooks/useSubscription.test.tsx
··· 1 + // @vitest-environment jsdom 1 2 import { vi, expect, it, beforeEach, describe, Mock } from 'vitest'; 2 3 3 4 // Note: Testing for hooks is not yet supported in Enzyme - https://github.com/airbnb/enzyme/issues/2011
+5 -1
packages/react-urql/vitest.config.ts
··· 1 1 import { mergeConfig } from 'vitest/config'; 2 2 import baseConfig from '../../vitest.config'; 3 3 4 - export default mergeConfig(baseConfig, {}); 4 + export default mergeConfig(baseConfig, { 5 + test: { 6 + environment: 'jsdom', 7 + }, 8 + });
+366 -368
pnpm-lock.yaml
··· 5 5 excludeLinksFromLockfile: false 6 6 7 7 overrides: 8 - '@types/react': ^17.0.39 9 8 graphql: ^16.6.0 10 - react: ^17.0.2 11 - react-dom: ^17.0.2 12 - react-is: ^17.0.2 13 9 styled-components: ^5.2.3 14 10 wonka: ^6.3.2 15 11 ··· 248 244 specifier: ^16.6.0 249 245 version: 16.6.0 250 246 react: 251 - specifier: ^17.0.2 247 + specifier: ^17.0.1 252 248 version: 17.0.2 253 249 react-dom: 254 - specifier: ^17.0.2 250 + specifier: ^17.0.1 255 251 version: 17.0.2(react@17.0.2) 256 252 urql: 257 253 specifier: workspace:* ··· 293 289 version: 6.3.2 294 290 devDependencies: 295 291 '@types/react': 296 - specifier: ^17.0.39 292 + specifier: ^17.0.4 297 293 version: 17.0.52 298 294 graphql: 299 295 specifier: ^16.6.0 ··· 343 339 packages/next-urql: 344 340 devDependencies: 345 341 '@types/react': 346 - specifier: ^17.0.39 347 - version: 17.0.52 342 + specifier: ^18.3.8 343 + version: 18.3.8 348 344 '@types/react-dom': 349 - specifier: ^18.2.4 350 - version: 18.2.4 345 + specifier: ^18.3.0 346 + version: 18.3.0 351 347 '@urql/core': 352 348 specifier: workspace:* 353 349 version: link:../core ··· 356 352 version: 16.6.0 357 353 next: 358 354 specifier: ^13.0.0 359 - version: 13.0.0(@babel/core@7.25.2)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) 355 + version: 13.5.7(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 360 356 react: 361 - specifier: ^17.0.2 362 - version: 17.0.2 357 + specifier: ^18.0.0 358 + version: 18.3.1 363 359 react-dom: 364 - specifier: ^17.0.2 365 - version: 17.0.2(react@17.0.2) 360 + specifier: ^18.0.0 361 + version: 18.3.1(react@18.3.1) 366 362 urql: 367 363 specifier: workspace:* 368 364 version: link:../react-urql ··· 397 393 devDependencies: 398 394 '@cypress/react': 399 395 specifier: ^8.0.2 400 - version: 8.0.2(@types/react@17.0.52)(cypress@13.14.2)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) 396 + version: 8.0.2(@types/react@18.3.8)(cypress@13.14.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 401 397 '@cypress/vite-dev-server': 402 - specifier: ^5.0.4 403 - version: 5.0.4 398 + specifier: ^5.2.0 399 + version: 5.2.0 404 400 '@testing-library/react': 405 - specifier: ^11.1.1 406 - version: 11.2.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) 407 - '@testing-library/react-hooks': 408 - specifier: ^5.1.2 409 - version: 5.1.2(react-dom@17.0.2(react@17.0.2))(react-test-renderer@17.0.2(react@17.0.2))(react@17.0.2) 401 + specifier: ^16.0.1 402 + version: 16.0.1(@testing-library/dom@10.1.0)(@types/react-dom@18.3.0)(@types/react@18.3.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 410 403 '@types/react': 411 - specifier: ^17.0.39 412 - version: 17.0.52 404 + specifier: ^18.3.8 405 + version: 18.3.8 413 406 '@types/react-test-renderer': 414 407 specifier: ^17.0.1 415 408 version: 17.0.1 ··· 420 413 specifier: ^16.6.0 421 414 version: 16.6.0 422 415 react: 423 - specifier: ^17.0.2 424 - version: 17.0.2 416 + specifier: ^18.3.1 417 + version: 18.3.1 425 418 react-dom: 426 - specifier: ^17.0.2 427 - version: 17.0.2(react@17.0.2) 419 + specifier: ^18.3.1 420 + version: 18.3.1(react@18.3.1) 428 421 react-is: 429 - specifier: ^17.0.2 430 - version: 17.0.2 422 + specifier: ^18.3.1 423 + version: 18.3.1 431 424 react-ssr-prepass: 432 - specifier: ^1.1.2 433 - version: 1.4.0(react@17.0.2) 425 + specifier: ^1.5.0 426 + version: 1.5.0(react@18.3.1) 434 427 react-test-renderer: 435 - specifier: ^17.0.1 436 - version: 17.0.2(react@17.0.2) 428 + specifier: ^18.3.1 429 + version: 18.3.1(react@18.3.1) 437 430 438 431 packages/site: 439 432 dependencies: ··· 567 560 devDependencies: 568 561 '@react-native-async-storage/async-storage': 569 562 specifier: ^1.21.0 570 - version: 1.21.0(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2)) 563 + version: 1.21.0(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2)) 571 564 '@react-native-community/netinfo': 572 565 specifier: ^11.2.1 573 - version: 11.2.1(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2)) 566 + version: 11.2.1(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2)) 574 567 '@urql/core': 575 568 specifier: workspace:* 576 569 version: link:../core ··· 1675 1668 '@cypress/react@8.0.2': 1676 1669 resolution: {integrity: sha512-7TgXXEeJ/GnGiIQhO8mAfkyychyMv5hNyISV3ti/vceriTI0uGtbjwRqLQhuVgOSHLtboUZUIoRlR6BkgIdVVg==} 1677 1670 peerDependencies: 1678 - '@types/react': ^17.0.39 1671 + '@types/react': ^16.9.16 || ^17.0.0 1679 1672 cypress: '*' 1680 - react: ^17.0.2 1681 - react-dom: ^17.0.2 1673 + react: ^=16.x || ^=17.x 1674 + react-dom: ^=16.x || ^=17.x 1682 1675 peerDependenciesMeta: 1683 1676 '@types/react': 1684 1677 optional: true ··· 1691 1684 resolution: {integrity: sha512-v+XHd9XmWbufxF1/bTaVm2yhbxY+TB4YtWRqF2zaXBlDNMkls34KiATz0AVDLavL3iB6bQk9/7n3oY1EoLSWGA==} 1692 1685 engines: {node: '>= 6'} 1693 1686 1694 - '@cypress/vite-dev-server@5.0.4': 1695 - resolution: {integrity: sha512-F9ZkoBcHoILYKEQHDPnsBdzVbnudLoav3iMCOPRvgWfuMlen+zVed1g0nBBYTwfVYMfc9Xqn37ePC3GLSl1aYw==} 1687 + '@cypress/vite-dev-server@5.2.0': 1688 + resolution: {integrity: sha512-7HuB1vaVri5wnsdZcIkcUd0SB1t5Sh7FT+dteL8A9Hpp+8ACeWjLUJQCZZaRHmuFTnw+bz496bJmFYgBR2Yz3A==} 1696 1689 1697 1690 '@cypress/xvfb@1.2.4': 1698 1691 resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} ··· 1982 1975 '@mdx-js/react@1.6.22': 1983 1976 resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} 1984 1977 peerDependencies: 1985 - react: ^17.0.2 1978 + react: ^16.13.1 || ^17.0.0 1986 1979 1987 1980 '@mdx-js/util@1.6.22': 1988 1981 resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} 1989 1982 1990 - '@next/env@13.0.0': 1991 - resolution: {integrity: sha512-65v9BVuah2Mplohm4+efsKEnoEuhmlGm8B2w6vD1geeEP2wXtlSJCvR/cCRJ3fD8wzCQBV41VcMBQeYET6MRkg==} 1992 - 1993 - '@next/swc-android-arm-eabi@13.0.0': 1994 - resolution: {integrity: sha512-+DUQkYF93gxFjWY+CYWE1QDX6gTgnUiWf+W4UqZjM1Jcef8U97fS6xYh+i+8rH4MM0AXHm7OSakvfOMzmjU6VA==} 1995 - engines: {node: '>= 10'} 1996 - cpu: [arm] 1997 - os: [android] 1998 - 1999 - '@next/swc-android-arm64@13.0.0': 2000 - resolution: {integrity: sha512-RW9Uy3bMSc0zVGCa11klFuwfP/jdcdkhdruqnrJ7v+7XHm6OFKkSRzX6ee7yGR1rdDZvTnP4GZSRSpzjLv/N0g==} 2001 - engines: {node: '>= 10'} 2002 - cpu: [arm64] 2003 - os: [android] 1983 + '@next/env@13.5.7': 1984 + resolution: {integrity: sha512-uVuRqoj28Ys/AI/5gVEgRAISd0KWI0HRjOO1CTpNgmX3ZsHb5mdn14Y59yk0IxizXdo7ZjsI2S7qbWnO+GNBcA==} 2004 1985 2005 - '@next/swc-darwin-arm64@13.0.0': 2006 - resolution: {integrity: sha512-APA26nps1j4qyhOIzkclW/OmgotVHj1jBxebSpMCPw2rXfiNvKNY9FA0TcuwPmUCNqaTnm703h6oW4dvp73A4Q==} 1986 + '@next/swc-darwin-arm64@13.5.7': 1987 + resolution: {integrity: sha512-7SxmxMex45FvKtRoP18eftrDCMyL6WQVYJSEE/s7A1AW/fCkznxjEShKet2iVVzf89gWp8HbXGaL4hCaseux6g==} 2007 1988 engines: {node: '>= 10'} 2008 1989 cpu: [arm64] 2009 1990 os: [darwin] 2010 1991 2011 - '@next/swc-darwin-x64@13.0.0': 2012 - resolution: {integrity: sha512-qsUhUdoFuRJiaJ7LnvTQ6GZv1QnMDcRXCIjxaN0FNVXwrjkq++U7KjBUaxXkRzLV4C7u0NHLNOp0iZwNNE7ypw==} 1992 + '@next/swc-darwin-x64@13.5.7': 1993 + resolution: {integrity: sha512-6iENvgyIkGFLFszBL4b1VfEogKC3TDPEB6/P/lgxmgXVXIV09Q4or1MVn+U/tYyYmm7oHMZ3oxGpHAyJ80nA6g==} 2013 1994 engines: {node: '>= 10'} 2014 1995 cpu: [x64] 2015 1996 os: [darwin] 2016 1997 2017 - '@next/swc-freebsd-x64@13.0.0': 2018 - resolution: {integrity: sha512-sCdyCbboS7CwdnevKH9J6hkJI76LUw1jVWt4eV7kISuLiPba3JmehZSWm80oa4ADChRVAwzhLAo2zJaYRrInbg==} 2019 - engines: {node: '>= 10'} 2020 - cpu: [x64] 2021 - os: [freebsd] 2022 - 2023 - '@next/swc-linux-arm-gnueabihf@13.0.0': 2024 - resolution: {integrity: sha512-/X/VxfFA41C9jrEv+sUsPLQ5vbDPVIgG0CJrzKvrcc+b+4zIgPgtfsaWq9ockjHFQi3ycvlZK4TALOXO8ovQ6Q==} 2025 - engines: {node: '>= 10'} 2026 - cpu: [arm] 2027 - os: [linux] 2028 - 2029 - '@next/swc-linux-arm64-gnu@13.0.0': 2030 - resolution: {integrity: sha512-x6Oxr1GIi0ZtNiT6jbw+JVcbEi3UQgF7mMmkrgfL4mfchOwXtWSHKTSSPnwoJWJfXYa0Vy1n8NElWNTGAqoWFw==} 1998 + '@next/swc-linux-arm64-gnu@13.5.7': 1999 + resolution: {integrity: sha512-P42jDX56wu9zEdVI+Xv4zyTeXB3DpqgE1Gb4bWrc0s2RIiDYr6uKBprnOs1hCGIwfVyByxyTw5Va66QCdFFNUg==} 2031 2000 engines: {node: '>= 10'} 2032 2001 cpu: [arm64] 2033 2002 os: [linux] 2034 2003 2035 - '@next/swc-linux-arm64-musl@13.0.0': 2036 - resolution: {integrity: sha512-SnMH9ngI+ipGh3kqQ8+mDtWunirwmhQnQeZkEq9e/9Xsgjf04OetqrqRHKM1HmJtG2qMUJbyXFJ0F81TPuT+3g==} 2004 + '@next/swc-linux-arm64-musl@13.5.7': 2005 + resolution: {integrity: sha512-A06vkj+8X+tLRzSja5REm/nqVOCzR+x5Wkw325Q/BQRyRXWGCoNbQ6A+BR5M86TodigrRfI3lUZEKZKe3QJ9Bg==} 2037 2006 engines: {node: '>= 10'} 2038 2007 cpu: [arm64] 2039 2008 os: [linux] 2040 2009 2041 - '@next/swc-linux-x64-gnu@13.0.0': 2042 - resolution: {integrity: sha512-VSQwTX9EmdbotArtA1J67X8964oQfe0xHb32x4tu+JqTR+wOHyG6wGzPMdXH2oKAp6rdd7BzqxUXXf0J+ypHlw==} 2010 + '@next/swc-linux-x64-gnu@13.5.7': 2011 + resolution: {integrity: sha512-UdHm7AlxIbdRdMsK32cH0EOX4OmzAZ4Xm+UVlS0YdvwLkI3pb7AoBEoVMG5H0Wj6Wpz6GNkrFguHTRLymTy6kw==} 2043 2012 engines: {node: '>= 10'} 2044 2013 cpu: [x64] 2045 2014 os: [linux] 2046 2015 2047 - '@next/swc-linux-x64-musl@13.0.0': 2048 - resolution: {integrity: sha512-xBCP0nnpO0q4tsytXkvIwWFINtbFRyVY5gxa1zB0vlFtqYR9lNhrOwH3CBrks3kkeaePOXd611+8sjdUtrLnXA==} 2016 + '@next/swc-linux-x64-musl@13.5.7': 2017 + resolution: {integrity: sha512-c50Y8xBKU16ZGj038H6C13iedRglxvdQHD/1BOtes56gwUrIRDX2Nkzn3mYtpz3Wzax0gfAF9C0Nqljt93IxvA==} 2049 2018 engines: {node: '>= 10'} 2050 2019 cpu: [x64] 2051 2020 os: [linux] 2052 2021 2053 - '@next/swc-win32-arm64-msvc@13.0.0': 2054 - resolution: {integrity: sha512-NutwDafqhGxqPj/eiUixJq9ImS/0sgx6gqlD7jRndCvQ2Q8AvDdu1+xKcGWGNnhcDsNM/n1avf1e62OG1GaqJg==} 2022 + '@next/swc-win32-arm64-msvc@13.5.7': 2023 + resolution: {integrity: sha512-NcUx8cmkA+JEp34WNYcKW6kW2c0JBhzJXIbw+9vKkt9m/zVJ+KfizlqmoKf04uZBtzFN6aqE2Fyv2MOd021WIA==} 2055 2024 engines: {node: '>= 10'} 2056 2025 cpu: [arm64] 2057 2026 os: [win32] 2058 2027 2059 - '@next/swc-win32-ia32-msvc@13.0.0': 2060 - resolution: {integrity: sha512-zNaxaO+Kl/xNz02E9QlcVz0pT4MjkXGDLb25qxtAzyJL15aU0+VjjbIZAYWctG59dvggNIUNDWgoBeVTKB9xLg==} 2028 + '@next/swc-win32-ia32-msvc@13.5.7': 2029 + resolution: {integrity: sha512-wXp+/3NVcuyJDED6gJiLXs5dqHaWO7moAB6aBtjlKZvsxBDxpcyjsfRbtHPeYtaT20zCkmPs69H0K25lrVZmlA==} 2061 2030 engines: {node: '>= 10'} 2062 2031 cpu: [ia32] 2063 2032 os: [win32] 2064 2033 2065 - '@next/swc-win32-x64-msvc@13.0.0': 2066 - resolution: {integrity: sha512-FFOGGWwTCRMu9W7MF496Urefxtuo2lttxF1vwS+1rIRsKvuLrWhVaVTj3T8sf2EBL6gtJbmh4TYlizS+obnGKA==} 2034 + '@next/swc-win32-x64-msvc@13.5.7': 2035 + resolution: {integrity: sha512-PLyD3Dl6jTTkLG8AoqhPGd5pXtSs8wbqIhWPQt3yEMfnYld/dGYuF2YPs3YHaVFrijCIF9pXY3+QOyvP23Zn7g==} 2067 2036 engines: {node: '>= 10'} 2068 2037 cpu: [x64] 2069 2038 os: [win32] ··· 2262 2231 '@reach/router@1.3.4': 2263 2232 resolution: {integrity: sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==} 2264 2233 peerDependencies: 2265 - react: ^17.0.2 2266 - react-dom: ^17.0.2 2234 + react: 15.x || 16.x || 16.4.0-alpha.0911da3 2235 + react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3 2267 2236 2268 2237 '@react-native-async-storage/async-storage@1.21.0': 2269 2238 resolution: {integrity: sha512-JL0w36KuFHFCvnbOXRekqVAUplmOyT/OuCQkogo6X98MtpSaJOKEAeZnYO8JB0U/RIEixZaGI5px73YbRm/oag==} ··· 2363 2332 resolution: {integrity: sha512-cTLm7k7Y//SvV8UK8esrDHEw5OrwwSJ4Fqc3x52Imi6ROuhshfGIPFwhtn4pmAg9nWHzHwwqiJ+9hCSVnXXX+g==} 2364 2333 engines: {node: '>=18'} 2365 2334 peerDependencies: 2366 - '@types/react': ^17.0.39 2367 - react: ^17.0.2 2335 + '@types/react': ^18.2.6 2336 + react: '*' 2368 2337 react-native: '*' 2369 2338 peerDependenciesMeta: 2370 2339 '@types/react': ··· 2564 2533 '@solidjs/router': 2565 2534 optional: true 2566 2535 2567 - '@swc/helpers@0.4.11': 2568 - resolution: {integrity: sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==} 2536 + '@swc/helpers@0.5.2': 2537 + resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} 2569 2538 2570 2539 '@testing-library/dom@10.1.0': 2571 2540 resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==} ··· 2581 2550 peerDependencies: 2582 2551 preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0' 2583 2552 2584 - '@testing-library/react-hooks@5.1.2': 2585 - resolution: {integrity: sha512-jwhtDYZ5gQUIX8cmVCVdtwNvuF5EiCOWjokRlTV+o/V0GdtRZDykUllL1OXq5PS4+J33wGLNQeeWzEHcWrH7tg==} 2553 + '@testing-library/react@16.0.1': 2554 + resolution: {integrity: sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg==} 2555 + engines: {node: '>=18'} 2586 2556 peerDependencies: 2587 - react: ^17.0.2 2588 - react-dom: ^17.0.2 2589 - react-test-renderer: '>=16.9.0' 2557 + '@testing-library/dom': ^10.0.0 2558 + '@types/react': ^18.0.0 2559 + '@types/react-dom': ^18.0.0 2560 + react: ^18.0.0 2561 + react-dom: ^18.0.0 2590 2562 peerDependenciesMeta: 2591 - react-dom: 2563 + '@types/react': 2592 2564 optional: true 2593 - react-test-renderer: 2565 + '@types/react-dom': 2594 2566 optional: true 2595 - 2596 - '@testing-library/react@11.2.6': 2597 - resolution: {integrity: sha512-TXMCg0jT8xmuU8BkKMtp8l7Z50Ykew5WNX8UoIKTaLFwKkP2+1YDhOLA2Ga3wY4x29jyntk7EWfum0kjlYiSjQ==} 2598 - engines: {node: '>=10'} 2599 - peerDependencies: 2600 - react: ^17.0.2 2601 - react-dom: ^17.0.2 2602 2567 2603 2568 '@tootallnate/once@2.0.0': 2604 2569 resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} ··· 2699 2664 '@types/q@1.5.4': 2700 2665 resolution: {integrity: sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==} 2701 2666 2702 - '@types/react-dom@18.2.4': 2703 - resolution: {integrity: sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==} 2667 + '@types/react-dom@18.3.0': 2668 + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} 2704 2669 2705 2670 '@types/react-test-renderer@17.0.1': 2706 2671 resolution: {integrity: sha512-3Fi2O6Zzq/f3QR9dRnlnHso9bMl7weKCviFmfF6B4LS1Uat6Hkm15k0ZAQuDz+UBq6B3+g+NM6IT2nr5QgPzCw==} 2707 2672 2708 2673 '@types/react@17.0.52': 2709 2674 resolution: {integrity: sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A==} 2675 + 2676 + '@types/react@18.3.8': 2677 + resolution: {integrity: sha512-syBUrW3/XpnW4WJ41Pft+I+aPoDVbrBVQGEnbD7NijDGlVC+8gV/XKRY+7vMDlfPpbwYt0l1vd/Sj8bJGMbs9Q==} 2710 2678 2711 2679 '@types/resolve@1.20.2': 2712 2680 resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} ··· 3612 3580 builtin-status-codes@3.0.0: 3613 3581 resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} 3614 3582 3583 + busboy@1.6.0: 3584 + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 3585 + engines: {node: '>=10.16.0'} 3586 + 3615 3587 bytes@3.0.0: 3616 3588 resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} 3617 3589 engines: {node: '>= 0.8'} ··· 3689 3661 3690 3662 caniuse-api@3.0.0: 3691 3663 resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} 3692 - 3693 - caniuse-lite@1.0.30001466: 3694 - resolution: {integrity: sha512-ewtFBSfWjEmxUgNBSZItFSmVtvk9zkwkl1OfRZlKA8slltRN+/C/tuGVrF9styXkN36Yu3+SeJ1qkXxDEyNZ5w==} 3695 3664 3696 3665 caniuse-lite@1.0.30001660: 3697 3666 resolution: {integrity: sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg==} ··· 4140 4109 resolution: {integrity: sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==} 4141 4110 peerDependencies: 4142 4111 prop-types: ^15.0.0 4143 - react: ^17.0.2 4112 + react: ^0.14.0 || ^15.0.0 || ^16.0.0 4144 4113 4145 4114 cross-spawn@5.1.0: 4146 4115 resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} ··· 4251 4220 4252 4221 csstype@2.6.21: 4253 4222 resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} 4254 - 4255 - csstype@3.0.8: 4256 - resolution: {integrity: sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==} 4257 4223 4258 4224 csstype@3.1.3: 4259 4225 resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} ··· 5079 5045 resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 5080 5046 engines: {node: '>=8'} 5081 5047 5082 - filter-console@0.1.1: 5083 - resolution: {integrity: sha512-zrXoV1Uaz52DqPs+qEwNJWJFAWZpYJ47UNmpN9q4j+/EYsz85uV0DC9k8tRND5kYmoVzL0W+Y75q4Rg8sRJCdg==} 5084 - engines: {node: '>=8'} 5085 - 5086 5048 finalhandler@1.1.2: 5087 5049 resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} 5088 5050 engines: {node: '>= 0.8'} ··· 5336 5298 glob-parent@6.0.2: 5337 5299 resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 5338 5300 engines: {node: '>=10.13.0'} 5301 + 5302 + glob-to-regexp@0.4.1: 5303 + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 5339 5304 5340 5305 glob@10.4.5: 5341 5306 resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} ··· 6858 6823 deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. 6859 6824 peerDependencies: 6860 6825 prop-types: ^15.0.0 6861 - react: ^17.0.2 6826 + react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 6862 6827 6863 6828 minimalistic-assert@1.0.1: 6864 6829 resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} ··· 7013 6978 nan@2.14.2: 7014 6979 resolution: {integrity: sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==} 7015 6980 7016 - nanoid@3.3.4: 7017 - resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} 7018 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 7019 - hasBin: true 7020 - 7021 6981 nanoid@3.3.7: 7022 6982 resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 7023 6983 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} ··· 7044 7004 netrc@0.1.4: 7045 7005 resolution: {integrity: sha512-ye8AIYWQcP9MvoM1i0Z2jV0qed31Z8EWXYnyGNkiUAd+Fo8J+7uy90xTV8g/oAbhtjkY7iZbNTizQaXdKUuwpQ==} 7046 7006 7047 - next@13.0.0: 7048 - resolution: {integrity: sha512-puH1WGM6rGeFOoFdXXYfUxN9Sgi4LMytCV5HkQJvVUOhHfC1DoVqOfvzaEteyp6P04IW+gbtK2Q9pInVSrltPA==} 7049 - engines: {node: '>=14.6.0'} 7007 + next@13.5.7: 7008 + resolution: {integrity: sha512-W7KIRTE+hPcgGdq89P3mQLDX3m7pJ6nxSyC+YxYaUExE+cS4UledB+Ntk98tKoyhsv6fjb2TRAnD7VDvoqmeFg==} 7009 + engines: {node: '>=16.14.0'} 7050 7010 hasBin: true 7051 7011 peerDependencies: 7052 - fibers: '>= 3.1.0' 7053 - node-sass: ^6.0.0 || ^7.0.0 7054 - react: ^17.0.2 7055 - react-dom: ^17.0.2 7012 + '@opentelemetry/api': ^1.1.0 7013 + react: ^18.2.0 7014 + react-dom: ^18.2.0 7056 7015 sass: ^1.3.0 7057 7016 peerDependenciesMeta: 7058 - fibers: 7059 - optional: true 7060 - node-sass: 7017 + '@opentelemetry/api': 7061 7018 optional: true 7062 7019 sass: 7063 7020 optional: true ··· 7836 7793 resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} 7837 7794 engines: {node: '>=6.0.0'} 7838 7795 7839 - postcss@8.4.14: 7840 - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} 7796 + postcss@8.4.31: 7797 + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 7841 7798 engines: {node: ^10 || ^12 || >=14} 7842 7799 7843 7800 postcss@8.4.45: ··· 7895 7852 prism-react-renderer@1.2.0: 7896 7853 resolution: {integrity: sha512-GHqzxLYImx1iKN1jJURcuRoA/0ygCcNhfGw1IT8nPIMzarmKQ3Nc+JcG0gi8JXQzuh0C5ShE4npMIoqNin40hg==} 7897 7854 peerDependencies: 7898 - react: ^17.0.2 7855 + react: '>=0.14.9' 7899 7856 7900 7857 proc-log@4.2.0: 7901 7858 resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} ··· 8097 8054 react-devtools-core@5.3.1: 8098 8055 resolution: {integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==} 8099 8056 8057 + react-dom@16.14.0: 8058 + resolution: {integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==} 8059 + peerDependencies: 8060 + react: ^16.14.0 8061 + 8100 8062 react-dom@17.0.2: 8101 8063 resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} 8102 8064 peerDependencies: 8103 - react: ^17.0.2 8065 + react: 17.0.2 8104 8066 8105 - react-error-boundary@3.1.1: 8106 - resolution: {integrity: sha512-W3xCd9zXnanqrTUeViceufD3mIW8Ut29BUD+S2f0eO2XCOU8b6UrJfY46RDGe5lxCJzfe4j0yvIfh0RbTZhKJw==} 8107 - engines: {node: '>=10', npm: '>=6'} 8067 + react-dom@18.3.1: 8068 + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 8108 8069 peerDependencies: 8109 - react: ^17.0.2 8070 + react: ^18.3.1 8110 8071 8111 8072 react-fast-compare@2.0.4: 8112 8073 resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==} ··· 8114 8075 react-from-dom@0.3.1: 8115 8076 resolution: {integrity: sha512-PeNBa8iuzoD7qHA9O7YpGnXFvC+XFFwStmFh2/r2zJAvEIaRg6EwOj+EPcDIFwyYBhqPIItxIx/dGdeWiFivjQ==} 8116 8077 peerDependencies: 8117 - react: ^17.0.2 8078 + react: ^15.0.0 || ^16.0.0 8118 8079 8119 8080 react-ga@3.3.0: 8120 8081 resolution: {integrity: sha512-o8RScHj6Lb8cwy3GMrVH6NJvL+y0zpJvKtc0+wmH7Bt23rszJmnqEQxRbyrqUzk9DTJIHoP42bfO5rswC9SWBQ==} 8121 8082 peerDependencies: 8122 8083 prop-types: ^15.6.0 8123 - react: ^17.0.2 8084 + react: ^15.6.2 || ^16.0 || ^17 8124 8085 8125 8086 react-gtm-module@2.0.11: 8126 8087 resolution: {integrity: sha512-8gyj4TTxeP7eEyc2QKawEuQoAZdjKvMY4pgWfycGmqGByhs17fR+zEBs0JUDq4US/l+vbTl+6zvUIx27iDo/Vw==} ··· 8128 8089 react-helmet@5.2.1: 8129 8090 resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} 8130 8091 peerDependencies: 8131 - react: ^17.0.2 8092 + react: '>=15.0.0' 8132 8093 8133 8094 react-hot-loader@4.13.0: 8134 8095 resolution: {integrity: sha512-JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA==} 8135 8096 engines: {node: '>= 6'} 8136 8097 peerDependencies: 8137 - '@types/react': ^17.0.39 8138 - react: ^17.0.2 8139 - react-dom: ^17.0.2 8098 + '@types/react': '^15.0.0 || ^16.0.0 || ^17.0.0 ' 8099 + react: '^15.0.0 || ^16.0.0 || ^17.0.0 ' 8100 + react-dom: '^15.0.0 || ^16.0.0 || ^17.0.0 ' 8140 8101 peerDependenciesMeta: 8141 8102 '@types/react': 8142 8103 optional: true ··· 8144 8105 react-inlinesvg@1.2.0: 8145 8106 resolution: {integrity: sha512-IsznU+UzpUwDGzBWbf0bfSRA5Jbqz87xeoqLM/nSIDPkoHksInF1wCGybTSn4sIui+30TqboRQP1wAelNTkdog==} 8146 8107 peerDependencies: 8147 - react: ^17.0.2 8108 + react: ^16.3.0 8109 + 8110 + react-is@16.13.1: 8111 + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 8148 8112 8149 8113 react-is@17.0.2: 8150 8114 resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 8115 + 8116 + react-is@18.3.1: 8117 + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} 8151 8118 8152 8119 react-lifecycles-compat@3.0.4: 8153 8120 resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} ··· 8157 8124 engines: {node: '>=18'} 8158 8125 hasBin: true 8159 8126 peerDependencies: 8160 - '@types/react': ^17.0.39 8161 - react: ^17.0.2 8127 + '@types/react': ^18.2.6 8128 + react: ^18.2.0 8162 8129 peerDependenciesMeta: 8163 8130 '@types/react': 8164 8131 optional: true ··· 8170 8137 react-router-dom@5.2.0: 8171 8138 resolution: {integrity: sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==} 8172 8139 peerDependencies: 8173 - react: ^17.0.2 8140 + react: '>=15' 8174 8141 8175 8142 react-router-ga@1.2.3: 8176 8143 resolution: {integrity: sha512-0rNBGGI6Q1hkznbLB+bAmDTS+8w3duaJYYIbCrCwof/p7RbZuv+Lsv9enumRZXxb4oTZrY95vOvFxnsRQ4cFCg==} 8177 8144 peerDependencies: 8178 - react: ^17.0.2 8145 + react: ^16.8.6 8179 8146 react-router-dom: ^5.0.0 8180 8147 8181 8148 react-router@5.2.0: 8182 8149 resolution: {integrity: sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==} 8183 8150 peerDependencies: 8184 - react: ^17.0.2 8151 + react: '>=15' 8185 8152 8186 8153 react-scroll@1.8.2: 8187 8154 resolution: {integrity: sha512-f2ZEG5fsPbPTySI9ekcFpETCcNlqbmwbQj9hhzYK8tkgv+PA8APatSt66o/q0KSkDZxyT98ONTtXp9x0lyowEw==} 8188 8155 peerDependencies: 8189 - react: ^17.0.2 8190 - react-dom: ^17.0.2 8156 + react: ^15.5.4 || ^16.0.0 || ^17.0.0 8157 + react-dom: ^15.5.4 || ^16.0.0 || ^17.0.0 8191 8158 8192 - react-shallow-renderer@16.14.1: 8193 - resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==} 8159 + react-shallow-renderer@16.15.0: 8160 + resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} 8194 8161 peerDependencies: 8195 - react: ^17.0.2 8162 + react: ^16.0.0 || ^17.0.0 || ^18.0.0 8196 8163 8197 8164 react-side-effect@1.2.0: 8198 8165 resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} 8199 8166 peerDependencies: 8200 - react: ^17.0.2 8167 + react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 8201 8168 8202 - react-ssr-prepass@1.4.0: 8203 - resolution: {integrity: sha512-0SzdmiQUtHvhxCabHg9BI/pkJfijGkQ0jQL6fC4YFy7idaDOuaiQLsajIkkNxffFXtJFHIWFITlve2WB88e0Jw==} 8169 + react-ssr-prepass@1.5.0: 8170 + resolution: {integrity: sha512-yFNHrlVEReVYKsLI5lF05tZoHveA5pGzjFbFJY/3pOqqjGOmMmqx83N4hIjN2n6E1AOa+eQEUxs3CgRnPmT0RQ==} 8204 8171 peerDependencies: 8205 - react: ^17.0.2 8172 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 8206 8173 8207 8174 react-static-plugin-md-pages@0.3.3: 8208 8175 resolution: {integrity: sha512-2vJO2g62zKf5avSsT/5IEbDPhAoWjP4tH+nyMLKta1G4AixlqPYagS7aCpDXRpzgs9ot8LN/aewrd5Vi1oWqew==} ··· 8217 8184 react-static-plugin-styled-components@7.2.2: 8218 8185 resolution: {integrity: sha512-yjZ2V5b4HLRs6ldbLmreXpXBiNU5y4IByPID/rYWe3J8NFenPMI7kbhiFlBDkUDEhJvGIpSFw3I8OCvAcm4yQg==} 8219 8186 peerDependencies: 8220 - react: ^17.0.2 8187 + react: ^16.9.0 8221 8188 styled-components: ^5.2.3 8222 8189 8223 8190 react-static@7.3.0: ··· 8227 8194 peerDependencies: 8228 8195 react-hot-loader: ^4.12.11 8229 8196 8230 - react-test-renderer@17.0.2: 8231 - resolution: {integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==} 8197 + react-test-renderer@18.3.1: 8198 + resolution: {integrity: sha512-KkAgygexHUkQqtvvx/otwxtuFu5cVjfzTCtjXLH9boS19/Nbtg84zS7wIQn39G8IlrhThBpQsMKkq5ZHZIYFXA==} 8232 8199 peerDependencies: 8233 - react: ^17.0.2 8200 + react: ^18.3.1 8234 8201 8235 8202 react-universal-component@4.5.0: 8236 8203 resolution: {integrity: sha512-dBUC6afvSAQhDcE4oh1eTmfU29W0O2eZhcGXnfGUTulXkU8ejuWqlJWXXrSMx5iV1H6LNgj2NJMj3BtBMfBNhA==} 8237 8204 peerDependencies: 8238 - react: ^17.0.2 8205 + react: ^16.3.0 || ^17.0.0 8206 + 8207 + react@16.14.0: 8208 + resolution: {integrity: sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==} 8209 + engines: {node: '>=0.10.0'} 8239 8210 8240 8211 react@17.0.2: 8241 8212 resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} 8213 + engines: {node: '>=0.10.0'} 8214 + 8215 + react@18.3.1: 8216 + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 8242 8217 engines: {node: '>=0.10.0'} 8243 8218 8244 8219 read-cmd-shim@4.0.0: ··· 8594 8569 resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} 8595 8570 engines: {node: '>=v12.22.7'} 8596 8571 8572 + scheduler@0.19.1: 8573 + resolution: {integrity: sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==} 8574 + 8597 8575 scheduler@0.20.2: 8598 8576 resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} 8599 8577 8578 + scheduler@0.23.2: 8579 + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 8580 + 8600 8581 scheduler@0.24.0-canary-efb381bbf-20230505: 8601 8582 resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} 8602 8583 ··· 8884 8865 source-list-map@2.0.1: 8885 8866 resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} 8886 8867 8887 - source-map-js@1.0.2: 8888 - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 8889 - engines: {node: '>=0.10.0'} 8890 - 8891 8868 source-map-js@1.2.1: 8892 8869 resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 8893 8870 engines: {node: '>=0.10.0'} ··· 9017 8994 stream-shift@1.0.1: 9018 8995 resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} 9019 8996 8997 + streamsearch@1.1.0: 8998 + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 8999 + engines: {node: '>=10.0.0'} 9000 + 9020 9001 streamx@2.20.1: 9021 9002 resolution: {integrity: sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==} 9022 9003 ··· 9140 9121 resolution: {integrity: sha512-BlR+KrLW3NL1yhvEB+9Nu9Dt51CuOnHoxd+Hj+rYPdtyR8X11uIW9rvhpy3Dk4dXXBsiW1u5U78f00Lf/afGoA==} 9141 9122 engines: {node: '>=10'} 9142 9123 peerDependencies: 9143 - react: ^17.0.2 9144 - react-dom: ^17.0.2 9145 - react-is: ^17.0.2 9124 + react: '>= 16.8.0' 9125 + react-dom: '>= 16.8.0' 9126 + react-is: '>= 16.8.0' 9146 9127 9147 - styled-jsx@5.1.0: 9148 - resolution: {integrity: sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==} 9128 + styled-jsx@5.1.1: 9129 + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 9149 9130 engines: {node: '>= 12.0.0'} 9150 9131 peerDependencies: 9151 9132 '@babel/core': '*' 9152 9133 babel-plugin-macros: '*' 9153 - react: ^17.0.2 9134 + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 9154 9135 peerDependenciesMeta: 9155 9136 '@babel/core': 9156 9137 optional: true ··· 9450 9431 tslib@1.14.1: 9451 9432 resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 9452 9433 9453 - tslib@2.6.1: 9454 - resolution: {integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==} 9455 - 9456 9434 tslib@2.7.0: 9457 9435 resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} 9458 9436 ··· 9762 9740 url@0.11.0: 9763 9741 resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} 9764 9742 9765 - use-sync-external-store@1.2.0: 9766 - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} 9767 - peerDependencies: 9768 - react: ^17.0.2 9769 - 9770 9743 use@3.1.1: 9771 9744 resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} 9772 9745 engines: {node: '>=0.10.0'} ··· 9960 9933 watchpack@1.7.5: 9961 9934 resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==} 9962 9935 9936 + watchpack@2.4.0: 9937 + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} 9938 + engines: {node: '>=10.13.0'} 9939 + 9963 9940 wbuf@1.7.3: 9964 9941 resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} 9965 9942 ··· 10005 9982 webpack-flush-chunks@2.0.3: 10006 9983 resolution: {integrity: sha512-CXGOyXG5YjjxyI+Qyt3VlI//JX92UmGRNP65zN3o9CIntEzfzc1J30YTKRRvF1JsE/iEzbnp5u99yCkL9obotQ==} 10007 9984 peerDependencies: 10008 - react: ^17.0.2 9985 + react: '*' 10009 9986 10010 9987 webpack-log@2.0.0: 10011 9988 resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} ··· 10512 10489 '@babel/traverse': 7.25.6 10513 10490 '@babel/types': 7.25.6 10514 10491 convert-source-map: 1.9.0 10515 - debug: 4.3.7(supports-color@6.1.0) 10492 + debug: 4.3.7(supports-color@5.5.0) 10516 10493 gensync: 1.0.0-beta.2 10517 10494 json5: 2.2.3 10518 10495 lodash: 4.17.21 ··· 10535 10512 '@babel/traverse': 7.21.5(supports-color@5.5.0) 10536 10513 '@babel/types': 7.22.4 10537 10514 convert-source-map: 1.9.0 10538 - debug: 4.3.4(supports-color@5.5.0) 10515 + debug: 4.3.4 10539 10516 gensync: 1.0.0-beta.2 10540 10517 json5: 2.2.3 10541 10518 semver: 6.3.1 ··· 10555 10532 '@babel/traverse': 7.25.6 10556 10533 '@babel/types': 7.25.6 10557 10534 convert-source-map: 2.0.0 10558 - debug: 4.3.7(supports-color@6.1.0) 10535 + debug: 4.3.7(supports-color@5.5.0) 10559 10536 gensync: 1.0.0-beta.2 10560 10537 json5: 2.2.3 10561 10538 semver: 6.3.1 ··· 10654 10631 '@babel/helper-module-imports': 7.24.7 10655 10632 '@babel/helper-plugin-utils': 7.24.8 10656 10633 '@babel/traverse': 7.25.6 10657 - debug: 4.3.7(supports-color@6.1.0) 10634 + debug: 4.3.7(supports-color@5.5.0) 10658 10635 lodash.debounce: 4.0.8 10659 10636 resolve: 1.22.8 10660 10637 semver: 6.3.1 ··· 10668 10645 '@babel/helper-module-imports': 7.24.7 10669 10646 '@babel/helper-plugin-utils': 7.24.8 10670 10647 '@babel/traverse': 7.25.6 10671 - debug: 4.3.7(supports-color@6.1.0) 10648 + debug: 4.3.7(supports-color@5.5.0) 10672 10649 lodash.debounce: 4.0.8 10673 10650 resolve: 1.22.8 10674 10651 semver: 6.3.1 ··· 10680 10657 '@babel/core': 7.25.2 10681 10658 '@babel/helper-compilation-targets': 7.25.2 10682 10659 '@babel/helper-plugin-utils': 7.24.8 10683 - debug: 4.3.7(supports-color@6.1.0) 10660 + debug: 4.3.7(supports-color@5.5.0) 10684 10661 lodash.debounce: 4.0.8 10685 10662 resolve: 1.22.8 10686 10663 transitivePeerDependencies: ··· 12247 12224 '@babel/helper-split-export-declaration': 7.18.6 12248 12225 '@babel/parser': 7.22.4 12249 12226 '@babel/types': 7.22.4 12250 - debug: 4.3.4(supports-color@5.5.0) 12227 + debug: 4.3.7(supports-color@5.5.0) 12251 12228 globals: 11.12.0 12252 12229 transitivePeerDependencies: 12253 12230 - supports-color ··· 12259 12236 '@babel/parser': 7.25.6 12260 12237 '@babel/template': 7.25.0 12261 12238 '@babel/types': 7.25.6 12262 - debug: 4.3.7(supports-color@6.1.0) 12239 + debug: 4.3.7(supports-color@5.5.0) 12263 12240 globals: 11.12.0 12264 12241 transitivePeerDependencies: 12265 12242 - supports-color ··· 12437 12414 react-dom: 17.0.2(react@17.0.2) 12438 12415 optionalDependencies: 12439 12416 '@types/react': 17.0.52 12417 + 12418 + '@cypress/react@8.0.2(@types/react@18.3.8)(cypress@13.14.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 12419 + dependencies: 12420 + cypress: 13.14.2 12421 + react: 18.3.1 12422 + react-dom: 18.3.1(react@18.3.1) 12423 + optionalDependencies: 12424 + '@types/react': 18.3.8 12440 12425 12441 12426 '@cypress/request@2.88.12': 12442 12427 dependencies: ··· 12480 12465 tunnel-agent: 0.6.0 12481 12466 uuid: 8.3.2 12482 12467 12483 - '@cypress/vite-dev-server@5.0.4': 12468 + '@cypress/vite-dev-server@5.2.0': 12484 12469 dependencies: 12485 - debug: 4.3.4(supports-color@5.5.0) 12470 + debug: 4.3.7(supports-color@5.5.0) 12486 12471 find-up: 6.3.0 12487 12472 node-html-parser: 5.3.3 12473 + semver: 7.6.3 12488 12474 transitivePeerDependencies: 12489 12475 - supports-color 12490 12476 ··· 12584 12570 '@eslint/eslintrc@2.1.4': 12585 12571 dependencies: 12586 12572 ajv: 6.12.6 12587 - debug: 4.3.7(supports-color@6.1.0) 12573 + debug: 4.3.7(supports-color@5.5.0) 12588 12574 espree: 9.6.1 12589 12575 globals: 13.24.0 12590 12576 ignore: 5.3.2 ··· 12608 12594 '@humanwhocodes/config-array@0.11.14': 12609 12595 dependencies: 12610 12596 '@humanwhocodes/object-schema': 2.0.3 12611 - debug: 4.3.7(supports-color@6.1.0) 12597 + debug: 4.3.7(supports-color@5.5.0) 12612 12598 minimatch: 3.1.2 12613 12599 transitivePeerDependencies: 12614 12600 - supports-color ··· 12765 12751 12766 12752 '@mdx-js/util@1.6.22': {} 12767 12753 12768 - '@next/env@13.0.0': {} 12754 + '@next/env@13.5.7': {} 12769 12755 12770 - '@next/swc-android-arm-eabi@13.0.0': 12771 - optional: true 12772 - 12773 - '@next/swc-android-arm64@13.0.0': 12774 - optional: true 12775 - 12776 - '@next/swc-darwin-arm64@13.0.0': 12777 - optional: true 12778 - 12779 - '@next/swc-darwin-x64@13.0.0': 12780 - optional: true 12781 - 12782 - '@next/swc-freebsd-x64@13.0.0': 12756 + '@next/swc-darwin-arm64@13.5.7': 12783 12757 optional: true 12784 12758 12785 - '@next/swc-linux-arm-gnueabihf@13.0.0': 12759 + '@next/swc-darwin-x64@13.5.7': 12786 12760 optional: true 12787 12761 12788 - '@next/swc-linux-arm64-gnu@13.0.0': 12762 + '@next/swc-linux-arm64-gnu@13.5.7': 12789 12763 optional: true 12790 12764 12791 - '@next/swc-linux-arm64-musl@13.0.0': 12765 + '@next/swc-linux-arm64-musl@13.5.7': 12792 12766 optional: true 12793 12767 12794 - '@next/swc-linux-x64-gnu@13.0.0': 12768 + '@next/swc-linux-x64-gnu@13.5.7': 12795 12769 optional: true 12796 12770 12797 - '@next/swc-linux-x64-musl@13.0.0': 12771 + '@next/swc-linux-x64-musl@13.5.7': 12798 12772 optional: true 12799 12773 12800 - '@next/swc-win32-arm64-msvc@13.0.0': 12774 + '@next/swc-win32-arm64-msvc@13.5.7': 12801 12775 optional: true 12802 12776 12803 - '@next/swc-win32-ia32-msvc@13.0.0': 12777 + '@next/swc-win32-ia32-msvc@13.5.7': 12804 12778 optional: true 12805 12779 12806 - '@next/swc-win32-x64-msvc@13.0.0': 12780 + '@next/swc-win32-x64-msvc@13.5.7': 12807 12781 optional: true 12808 12782 12809 12783 '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents': ··· 13124 13098 13125 13099 '@protobuf-ts/runtime@2.9.4': {} 13126 13100 13127 - '@reach/router@1.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': 13101 + '@reach/router@1.3.4(react-dom@16.14.0(react@16.14.0))(react@16.14.0)': 13128 13102 dependencies: 13129 - create-react-context: 0.3.0(prop-types@15.8.1)(react@17.0.2) 13103 + create-react-context: 0.3.0(prop-types@15.8.1)(react@16.14.0) 13130 13104 invariant: 2.2.4 13131 13105 prop-types: 15.8.1 13132 - react: 17.0.2 13133 - react-dom: 17.0.2(react@17.0.2) 13106 + react: 16.14.0 13107 + react-dom: 16.14.0(react@16.14.0) 13134 13108 react-lifecycles-compat: 3.0.4 13135 13109 13136 - '@react-native-async-storage/async-storage@1.21.0(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2))': 13110 + '@react-native-async-storage/async-storage@1.21.0(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2))': 13137 13111 dependencies: 13138 13112 merge-options: 3.0.4 13139 - react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2) 13113 + react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2) 13140 13114 13141 13115 '@react-native-community/cli-clean@14.1.0': 13142 13116 dependencies: ··· 13262 13236 - typescript 13263 13237 - utf-8-validate 13264 13238 13265 - '@react-native-community/netinfo@11.2.1(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2))': 13239 + '@react-native-community/netinfo@11.2.1(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2))': 13266 13240 dependencies: 13267 - react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2) 13241 + react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2) 13268 13242 13269 13243 '@react-native/assets-registry@0.75.3': {} 13270 13244 ··· 13399 13373 13400 13374 '@react-native/normalize-colors@0.75.3': {} 13401 13375 13402 - '@react-native/virtualized-lists@0.75.3(@types/react@17.0.52)(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2))(react@17.0.2)': 13376 + '@react-native/virtualized-lists@0.75.3(@types/react@18.3.8)(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2))(react@18.3.1)': 13403 13377 dependencies: 13404 13378 invariant: 2.2.4 13405 13379 nullthrows: 1.1.1 13406 - react: 17.0.2 13407 - react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2) 13380 + react: 18.3.1 13381 + react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2) 13408 13382 optionalDependencies: 13409 - '@types/react': 17.0.52 13383 + '@types/react': 18.3.8 13410 13384 13411 13385 '@rollup/plugin-babel@6.0.4(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@3.29.4)': 13412 13386 dependencies: ··· 13569 13543 '@testing-library/dom': 10.1.0 13570 13544 solid-js: 1.8.17 13571 13545 13572 - '@swc/helpers@0.4.11': 13546 + '@swc/helpers@0.5.2': 13573 13547 dependencies: 13574 - tslib: 2.6.1 13548 + tslib: 2.7.0 13575 13549 13576 13550 '@testing-library/dom@10.1.0': 13577 13551 dependencies: 13578 13552 '@babel/code-frame': 7.24.7 13579 - '@babel/runtime': 7.22.5 13553 + '@babel/runtime': 7.25.6 13580 13554 '@types/aria-query': 5.0.4 13581 13555 aria-query: 5.3.0 13582 13556 chalk: 4.1.2 ··· 13587 13561 '@testing-library/dom@7.30.4': 13588 13562 dependencies: 13589 13563 '@babel/code-frame': 7.24.7 13590 - '@babel/runtime': 7.22.5 13564 + '@babel/runtime': 7.25.6 13591 13565 '@types/aria-query': 4.2.1 13592 13566 aria-query: 4.2.2 13593 13567 chalk: 4.1.2 ··· 13600 13574 '@testing-library/dom': 7.30.4 13601 13575 preact: 10.13.1 13602 13576 13603 - '@testing-library/react-hooks@5.1.2(react-dom@17.0.2(react@17.0.2))(react-test-renderer@17.0.2(react@17.0.2))(react@17.0.2)': 13577 + '@testing-library/react@16.0.1(@testing-library/dom@10.1.0)(@types/react-dom@18.3.0)(@types/react@18.3.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 13604 13578 dependencies: 13605 - '@babel/runtime': 7.22.5 13606 - '@types/react': 17.0.52 13607 - '@types/react-dom': 18.2.4 13608 - '@types/react-test-renderer': 17.0.1 13609 - filter-console: 0.1.1 13610 - react: 17.0.2 13611 - react-error-boundary: 3.1.1(react@17.0.2) 13579 + '@babel/runtime': 7.25.6 13580 + '@testing-library/dom': 10.1.0 13581 + react: 18.3.1 13582 + react-dom: 18.3.1(react@18.3.1) 13612 13583 optionalDependencies: 13613 - react-dom: 17.0.2(react@17.0.2) 13614 - react-test-renderer: 17.0.2(react@17.0.2) 13615 - 13616 - '@testing-library/react@11.2.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': 13617 - dependencies: 13618 - '@babel/runtime': 7.22.5 13619 - '@testing-library/dom': 7.30.4 13620 - react: 17.0.2 13621 - react-dom: 17.0.2(react@17.0.2) 13584 + '@types/react': 18.3.8 13585 + '@types/react-dom': 18.3.0 13622 13586 13623 13587 '@tootallnate/once@2.0.0': {} 13624 13588 ··· 13723 13687 13724 13688 '@types/q@1.5.4': {} 13725 13689 13726 - '@types/react-dom@18.2.4': 13690 + '@types/react-dom@18.3.0': 13727 13691 dependencies: 13728 - '@types/react': 17.0.52 13692 + '@types/react': 18.3.8 13729 13693 13730 13694 '@types/react-test-renderer@17.0.1': 13731 13695 dependencies: 13732 - '@types/react': 17.0.52 13696 + '@types/react': 18.3.8 13733 13697 13734 13698 '@types/react@17.0.52': 13735 13699 dependencies: 13736 13700 '@types/prop-types': 15.7.3 13737 13701 '@types/scheduler': 0.16.1 13738 - csstype: 3.0.8 13702 + csstype: 3.1.3 13703 + 13704 + '@types/react@18.3.8': 13705 + dependencies: 13706 + '@types/prop-types': 15.7.3 13707 + csstype: 3.1.3 13739 13708 13740 13709 '@types/resolve@1.20.2': {} 13741 13710 ··· 13780 13749 '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.6.2) 13781 13750 '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.2) 13782 13751 '@typescript-eslint/visitor-keys': 6.21.0 13783 - debug: 4.3.7(supports-color@6.1.0) 13752 + debug: 4.3.7(supports-color@5.5.0) 13784 13753 eslint: 8.57.0 13785 13754 graphemer: 1.4.0 13786 13755 ignore: 5.3.2 ··· 13798 13767 '@typescript-eslint/types': 6.21.0 13799 13768 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2) 13800 13769 '@typescript-eslint/visitor-keys': 6.21.0 13801 - debug: 4.3.7(supports-color@6.1.0) 13770 + debug: 4.3.7(supports-color@5.5.0) 13802 13771 eslint: 8.57.0 13803 13772 optionalDependencies: 13804 13773 typescript: 5.6.2 ··· 13814 13783 dependencies: 13815 13784 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2) 13816 13785 '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.2) 13817 - debug: 4.3.7(supports-color@6.1.0) 13786 + debug: 4.3.7(supports-color@5.5.0) 13818 13787 eslint: 8.57.0 13819 13788 ts-api-utils: 1.3.0(typescript@5.6.2) 13820 13789 optionalDependencies: ··· 13828 13797 dependencies: 13829 13798 '@typescript-eslint/types': 6.21.0 13830 13799 '@typescript-eslint/visitor-keys': 6.21.0 13831 - debug: 4.3.7(supports-color@6.1.0) 13800 + debug: 4.3.7(supports-color@5.5.0) 13832 13801 globby: 11.1.0 13833 13802 is-glob: 4.0.3 13834 13803 minimatch: 9.0.3 ··· 14147 14116 14148 14117 agent-base@6.0.2: 14149 14118 dependencies: 14150 - debug: 4.3.7(supports-color@6.1.0) 14119 + debug: 4.3.7(supports-color@5.5.0) 14151 14120 transitivePeerDependencies: 14152 14121 - supports-color 14153 14122 14154 14123 agent-base@7.1.1: 14155 14124 dependencies: 14156 - debug: 4.3.7(supports-color@6.1.0) 14125 + debug: 4.3.7(supports-color@5.5.0) 14157 14126 transitivePeerDependencies: 14158 14127 - supports-color 14159 14128 ··· 14293 14262 14294 14263 aria-query@4.2.2: 14295 14264 dependencies: 14296 - '@babel/runtime': 7.22.5 14265 + '@babel/runtime': 7.25.6 14297 14266 '@babel/runtime-corejs3': 7.13.17 14298 14267 14299 14268 aria-query@5.3.0: ··· 14429 14398 autoprefixer@9.8.6: 14430 14399 dependencies: 14431 14400 browserslist: 4.21.5 14432 - caniuse-lite: 1.0.30001466 14401 + caniuse-lite: 1.0.30001660 14433 14402 colorette: 1.2.2 14434 14403 normalize-range: 0.1.2 14435 14404 num2fraction: 1.2.2 ··· 14496 14465 14497 14466 babel-plugin-macros@2.8.0: 14498 14467 dependencies: 14499 - '@babel/runtime': 7.22.5 14468 + '@babel/runtime': 7.25.6 14500 14469 cosmiconfig: 6.0.0 14501 14470 resolve: 1.22.8 14502 14471 ··· 14827 14796 14828 14797 browserslist@4.21.5: 14829 14798 dependencies: 14830 - caniuse-lite: 1.0.30001466 14799 + caniuse-lite: 1.0.30001660 14831 14800 electron-to-chromium: 1.4.332 14832 14801 node-releases: 2.0.10 14833 14802 update-browserslist-db: 1.0.10(browserslist@4.21.5) ··· 14883 14852 builtin-modules@3.3.0: {} 14884 14853 14885 14854 builtin-status-codes@3.0.0: {} 14855 + 14856 + busboy@1.6.0: 14857 + dependencies: 14858 + streamsearch: 1.1.0 14886 14859 14887 14860 bytes@3.0.0: {} 14888 14861 ··· 14993 14966 caniuse-lite: 1.0.30001660 14994 14967 lodash.memoize: 4.1.2 14995 14968 lodash.uniq: 4.5.0 14996 - 14997 - caniuse-lite@1.0.30001466: {} 14998 14969 14999 14970 caniuse-lite@1.0.30001660: {} 15000 14971 ··· 15493 15464 safe-buffer: 5.2.1 15494 15465 sha.js: 2.4.11 15495 15466 15496 - create-react-context@0.3.0(prop-types@15.8.1)(react@17.0.2): 15467 + create-react-context@0.3.0(prop-types@15.8.1)(react@16.14.0): 15497 15468 dependencies: 15498 15469 gud: 1.0.0 15499 15470 prop-types: 15.8.1 15500 - react: 17.0.2 15471 + react: 16.14.0 15501 15472 warning: 4.0.3 15502 15473 15503 15474 cross-spawn@5.1.0: ··· 15664 15635 rrweb-cssom: 0.7.1 15665 15636 15666 15637 csstype@2.6.21: {} 15667 - 15668 - csstype@3.0.8: {} 15669 15638 15670 15639 csstype@3.1.3: {} 15671 15640 ··· 15827 15796 dependencies: 15828 15797 ms: 2.1.3 15829 15798 15830 - debug@4.3.4(supports-color@5.5.0): 15799 + debug@4.3.4: 15831 15800 dependencies: 15832 15801 ms: 2.1.2 15802 + 15803 + debug@4.3.7(supports-color@5.5.0): 15804 + dependencies: 15805 + ms: 2.1.3 15833 15806 optionalDependencies: 15834 15807 supports-color: 5.5.0 15835 15808 ··· 16439 16412 ajv: 6.12.6 16440 16413 chalk: 4.1.2 16441 16414 cross-spawn: 7.0.3 16442 - debug: 4.3.7(supports-color@6.1.0) 16415 + debug: 4.3.7(supports-color@5.5.0) 16443 16416 doctrine: 3.0.0 16444 16417 escape-string-regexp: 4.0.0 16445 16418 eslint-scope: 7.2.2 ··· 16823 16796 dependencies: 16824 16797 to-regex-range: 5.0.1 16825 16798 16826 - filter-console@0.1.1: {} 16827 - 16828 16799 finalhandler@1.1.2(supports-color@6.1.0): 16829 16800 dependencies: 16830 16801 debug: 2.6.9(supports-color@6.1.0) ··· 17093 17064 dependencies: 17094 17065 is-glob: 4.0.3 17095 17066 17067 + glob-to-regexp@0.4.1: {} 17068 + 17096 17069 glob@10.4.5: 17097 17070 dependencies: 17098 17071 foreground-child: 3.3.0 ··· 17384 17357 17385 17358 hoist-non-react-statics@3.3.2: 17386 17359 dependencies: 17387 - react-is: 17.0.2 17360 + react-is: 16.13.1 17388 17361 17389 17362 hoopy@0.1.4: {} 17390 17363 ··· 17492 17465 dependencies: 17493 17466 '@tootallnate/once': 2.0.0 17494 17467 agent-base: 6.0.2 17495 - debug: 4.3.7(supports-color@6.1.0) 17468 + debug: 4.3.7(supports-color@5.5.0) 17496 17469 transitivePeerDependencies: 17497 17470 - supports-color 17498 17471 17499 17472 http-proxy-agent@7.0.2: 17500 17473 dependencies: 17501 17474 agent-base: 7.1.1 17502 - debug: 4.3.7(supports-color@6.1.0) 17475 + debug: 4.3.7(supports-color@5.5.0) 17503 17476 transitivePeerDependencies: 17504 17477 - supports-color 17505 17478 ··· 17544 17517 https-proxy-agent@5.0.1: 17545 17518 dependencies: 17546 17519 agent-base: 6.0.2 17547 - debug: 4.3.7(supports-color@6.1.0) 17520 + debug: 4.3.7(supports-color@5.5.0) 17548 17521 transitivePeerDependencies: 17549 17522 - supports-color 17550 17523 17551 17524 https-proxy-agent@7.0.5: 17552 17525 dependencies: 17553 17526 agent-base: 7.1.1 17554 - debug: 4.3.7(supports-color@6.1.0) 17527 + debug: 4.3.7(supports-color@5.5.0) 17555 17528 transitivePeerDependencies: 17556 17529 - supports-color 17557 17530 ··· 18351 18324 dependencies: 18352 18325 chalk: 5.3.0 18353 18326 commander: 11.0.0 18354 - debug: 4.3.4(supports-color@5.5.0) 18327 + debug: 4.3.4 18355 18328 execa: 7.2.0 18356 18329 lilconfig: 2.1.0 18357 18330 listr2: 6.6.1(enquirer@2.4.1) ··· 18887 18860 18888 18861 mini-create-react-context@0.4.1(prop-types@15.8.1)(react@17.0.2): 18889 18862 dependencies: 18890 - '@babel/runtime': 7.22.5 18863 + '@babel/runtime': 7.25.6 18891 18864 prop-types: 15.8.1 18892 18865 react: 17.0.2 18893 18866 tiny-warning: 1.0.3 ··· 19040 19013 19041 19014 nan@2.14.2: 19042 19015 optional: true 19043 - 19044 - nanoid@3.3.4: {} 19045 19016 19046 19017 nanoid@3.3.7: {} 19047 19018 ··· 19071 19042 19072 19043 netrc@0.1.4: {} 19073 19044 19074 - next@13.0.0(@babel/core@7.25.2)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): 19045 + next@13.5.7(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 19075 19046 dependencies: 19076 - '@next/env': 13.0.0 19077 - '@swc/helpers': 0.4.11 19078 - caniuse-lite: 1.0.30001466 19079 - postcss: 8.4.14 19080 - react: 17.0.2 19081 - react-dom: 17.0.2(react@17.0.2) 19082 - styled-jsx: 5.1.0(@babel/core@7.25.2)(react@17.0.2) 19083 - use-sync-external-store: 1.2.0(react@17.0.2) 19047 + '@next/env': 13.5.7 19048 + '@swc/helpers': 0.5.2 19049 + busboy: 1.6.0 19050 + caniuse-lite: 1.0.30001660 19051 + postcss: 8.4.31 19052 + react: 18.3.1 19053 + react-dom: 18.3.1(react@18.3.1) 19054 + styled-jsx: 5.1.1(@babel/core@7.25.2)(react@18.3.1) 19055 + watchpack: 2.4.0 19084 19056 optionalDependencies: 19085 - '@next/swc-android-arm-eabi': 13.0.0 19086 - '@next/swc-android-arm64': 13.0.0 19087 - '@next/swc-darwin-arm64': 13.0.0 19088 - '@next/swc-darwin-x64': 13.0.0 19089 - '@next/swc-freebsd-x64': 13.0.0 19090 - '@next/swc-linux-arm-gnueabihf': 13.0.0 19091 - '@next/swc-linux-arm64-gnu': 13.0.0 19092 - '@next/swc-linux-arm64-musl': 13.0.0 19093 - '@next/swc-linux-x64-gnu': 13.0.0 19094 - '@next/swc-linux-x64-musl': 13.0.0 19095 - '@next/swc-win32-arm64-msvc': 13.0.0 19096 - '@next/swc-win32-ia32-msvc': 13.0.0 19097 - '@next/swc-win32-x64-msvc': 13.0.0 19057 + '@next/swc-darwin-arm64': 13.5.7 19058 + '@next/swc-darwin-x64': 13.5.7 19059 + '@next/swc-linux-arm64-gnu': 13.5.7 19060 + '@next/swc-linux-arm64-musl': 13.5.7 19061 + '@next/swc-linux-x64-gnu': 13.5.7 19062 + '@next/swc-linux-x64-musl': 13.5.7 19063 + '@next/swc-win32-arm64-msvc': 13.5.7 19064 + '@next/swc-win32-ia32-msvc': 13.5.7 19065 + '@next/swc-win32-x64-msvc': 13.5.7 19098 19066 transitivePeerDependencies: 19099 19067 - '@babel/core' 19100 19068 - babel-plugin-macros ··· 19991 19959 picocolors: 0.2.1 19992 19960 source-map: 0.6.1 19993 19961 19994 - postcss@8.4.14: 19962 + postcss@8.4.31: 19995 19963 dependencies: 19996 - nanoid: 3.3.4 19964 + nanoid: 3.3.7 19997 19965 picocolors: 1.1.0 19998 - source-map-js: 1.0.2 19966 + source-map-js: 1.2.1 19999 19967 20000 19968 postcss@8.4.45: 20001 19969 dependencies: ··· 20043 20011 dependencies: 20044 20012 '@jest/schemas': 29.6.3 20045 20013 ansi-styles: 5.2.0 20046 - react-is: 17.0.2 20014 + react-is: 18.3.1 20047 20015 20048 20016 prism-react-renderer@1.2.0(react@17.0.2): 20049 20017 dependencies: ··· 20087 20055 dependencies: 20088 20056 loose-envify: 1.4.0 20089 20057 object-assign: 4.1.1 20090 - react-is: 17.0.2 20058 + react-is: 16.13.1 20091 20059 20092 20060 prop-types@15.8.1: 20093 20061 dependencies: 20094 20062 loose-envify: 1.4.0 20095 20063 object-assign: 4.1.1 20096 - react-is: 17.0.2 20064 + react-is: 16.13.1 20097 20065 20098 20066 property-information@5.6.0: 20099 20067 dependencies: ··· 20238 20206 - bufferutil 20239 20207 - utf-8-validate 20240 20208 20209 + react-dom@16.14.0(react@16.14.0): 20210 + dependencies: 20211 + loose-envify: 1.4.0 20212 + object-assign: 4.1.1 20213 + prop-types: 15.8.1 20214 + react: 16.14.0 20215 + scheduler: 0.19.1 20216 + 20241 20217 react-dom@17.0.2(react@17.0.2): 20242 20218 dependencies: 20243 20219 loose-envify: 1.4.0 ··· 20245 20221 react: 17.0.2 20246 20222 scheduler: 0.20.2 20247 20223 20248 - react-error-boundary@3.1.1(react@17.0.2): 20224 + react-dom@18.3.1(react@18.3.1): 20249 20225 dependencies: 20250 - '@babel/runtime': 7.22.5 20251 - react: 17.0.2 20226 + loose-envify: 1.4.0 20227 + react: 18.3.1 20228 + scheduler: 0.23.2 20252 20229 20253 20230 react-fast-compare@2.0.4: {} 20254 20231 ··· 20263 20240 20264 20241 react-gtm-module@2.0.11: {} 20265 20242 20266 - react-helmet@5.2.1(react@17.0.2): 20243 + react-helmet@5.2.1(react@16.14.0): 20267 20244 dependencies: 20268 20245 object-assign: 4.1.1 20269 20246 prop-types: 15.8.1 20270 - react: 17.0.2 20247 + react: 16.14.0 20271 20248 react-fast-compare: 2.0.4 20272 - react-side-effect: 1.2.0(react@17.0.2) 20249 + react-side-effect: 1.2.0(react@16.14.0) 20273 20250 20274 20251 react-hot-loader@4.13.0(@types/react@17.0.52)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): 20275 20252 dependencies: ··· 20292 20269 react: 17.0.2 20293 20270 react-from-dom: 0.3.1(react@17.0.2) 20294 20271 20272 + react-is@16.13.1: {} 20273 + 20295 20274 react-is@17.0.2: {} 20296 20275 20276 + react-is@18.3.1: {} 20277 + 20297 20278 react-lifecycles-compat@3.0.4: {} 20298 20279 20299 - react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2): 20280 + react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2): 20300 20281 dependencies: 20301 20282 '@jest/create-cache-key-function': 29.7.0 20302 20283 '@react-native-community/cli': 14.1.0(typescript@5.6.2) ··· 20308 20289 '@react-native/gradle-plugin': 0.75.3 20309 20290 '@react-native/js-polyfills': 0.75.3 20310 20291 '@react-native/normalize-colors': 0.75.3 20311 - '@react-native/virtualized-lists': 0.75.3(@types/react@17.0.52)(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@17.0.52)(encoding@0.1.13)(react@17.0.2)(typescript@5.6.2))(react@17.0.2) 20292 + '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.8)(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.13.15(@babel/core@7.25.2))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2))(react@18.3.1) 20312 20293 abort-controller: 3.0.0 20313 20294 anser: 1.4.10 20314 20295 ansi-regex: 5.0.1 ··· 20328 20309 nullthrows: 1.1.1 20329 20310 pretty-format: 26.6.2 20330 20311 promise: 8.3.0 20331 - react: 17.0.2 20312 + react: 18.3.1 20332 20313 react-devtools-core: 5.3.1 20333 20314 react-refresh: 0.14.2 20334 20315 regenerator-runtime: 0.13.11 ··· 20339 20320 ws: 6.2.3 20340 20321 yargs: 17.7.2 20341 20322 optionalDependencies: 20342 - '@types/react': 17.0.52 20323 + '@types/react': 18.3.8 20343 20324 transitivePeerDependencies: 20344 20325 - '@babel/core' 20345 20326 - '@babel/preset-env' ··· 20377 20358 path-to-regexp: 1.8.0 20378 20359 prop-types: 15.8.1 20379 20360 react: 17.0.2 20380 - react-is: 17.0.2 20361 + react-is: 16.13.1 20381 20362 tiny-invariant: 1.1.0 20382 20363 tiny-warning: 1.0.3 20383 20364 ··· 20388 20369 react: 17.0.2 20389 20370 react-dom: 17.0.2(react@17.0.2) 20390 20371 20391 - react-shallow-renderer@16.14.1(react@17.0.2): 20372 + react-shallow-renderer@16.15.0(react@18.3.1): 20392 20373 dependencies: 20393 20374 object-assign: 4.1.1 20394 - react: 17.0.2 20395 - react-is: 17.0.2 20375 + react: 18.3.1 20376 + react-is: 18.3.1 20396 20377 20397 - react-side-effect@1.2.0(react@17.0.2): 20378 + react-side-effect@1.2.0(react@16.14.0): 20398 20379 dependencies: 20399 - react: 17.0.2 20380 + react: 16.14.0 20400 20381 shallowequal: 1.1.0 20401 20382 20402 - react-ssr-prepass@1.4.0(react@17.0.2): 20383 + react-ssr-prepass@1.5.0(react@18.3.1): 20403 20384 dependencies: 20404 - react: 17.0.2 20385 + react: 18.3.1 20405 20386 20406 20387 react-static-plugin-md-pages@0.3.3(react-static@7.3.0(react-hot-loader@4.13.0(@types/react@17.0.52)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)))(react@17.0.2): 20407 20388 dependencies: ··· 20451 20432 '@babel/preset-stage-0': 7.8.3 20452 20433 '@babel/register': 7.13.16(@babel/core@7.21.5) 20453 20434 '@babel/runtime': 7.22.5 20454 - '@reach/router': 1.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) 20435 + '@reach/router': 1.3.4(react-dom@16.14.0(react@16.14.0))(react@16.14.0) 20455 20436 autoprefixer: 9.8.6 20456 20437 axios: 0.19.2 20457 20438 babel-core: 7.0.0-bridge.0(@babel/core@7.21.5) ··· 20489 20470 prop-types: 15.8.1 20490 20471 raf: 3.4.1 20491 20472 raw-loader: 3.1.0(webpack@4.46.0) 20492 - react: 17.0.2 20493 - react-dom: 17.0.2(react@17.0.2) 20494 - react-helmet: 5.2.1(react@17.0.2) 20473 + react: 16.14.0 20474 + react-dom: 16.14.0(react@16.14.0) 20475 + react-helmet: 5.2.1(react@16.14.0) 20495 20476 react-hot-loader: 4.13.0(@types/react@17.0.52)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) 20496 - react-universal-component: 4.5.0(react@17.0.2) 20477 + react-universal-component: 4.5.0(react@16.14.0) 20497 20478 resolve-from: 5.0.0 20498 20479 serve: 11.3.2 20499 20480 shorthash: 0.0.2 ··· 20509 20490 webpack: 4.46.0 20510 20491 webpack-bundle-analyzer: 3.9.0 20511 20492 webpack-dev-server: 3.11.2(webpack@4.46.0) 20512 - webpack-flush-chunks: 2.0.3(react@17.0.2) 20493 + webpack-flush-chunks: 2.0.3(react@16.14.0) 20513 20494 webpack-node-externals: 1.7.2 20514 20495 transitivePeerDependencies: 20515 20496 - bufferutil ··· 20518 20499 - webpack-cli 20519 20500 - webpack-command 20520 20501 20521 - react-test-renderer@17.0.2(react@17.0.2): 20502 + react-test-renderer@18.3.1(react@18.3.1): 20522 20503 dependencies: 20523 - object-assign: 4.1.1 20524 - react: 17.0.2 20525 - react-is: 17.0.2 20526 - react-shallow-renderer: 16.14.1(react@17.0.2) 20527 - scheduler: 0.20.2 20504 + react: 18.3.1 20505 + react-is: 18.3.1 20506 + react-shallow-renderer: 16.15.0(react@18.3.1) 20507 + scheduler: 0.23.2 20528 20508 20529 - react-universal-component@4.5.0(react@17.0.2): 20509 + react-universal-component@4.5.0(react@16.14.0): 20530 20510 dependencies: 20531 20511 hoist-non-react-statics: 3.3.2 20532 20512 prop-types: 15.8.1 20533 - react: 17.0.2 20513 + react: 16.14.0 20514 + 20515 + react@16.14.0: 20516 + dependencies: 20517 + loose-envify: 1.4.0 20518 + object-assign: 4.1.1 20519 + prop-types: 15.8.1 20534 20520 20535 20521 react@17.0.2: 20536 20522 dependencies: 20537 20523 loose-envify: 1.4.0 20538 20524 object-assign: 4.1.1 20539 20525 20526 + react@18.3.1: 20527 + dependencies: 20528 + loose-envify: 1.4.0 20529 + 20540 20530 read-cmd-shim@4.0.0: {} 20541 20531 20542 20532 read-package-json-fast@3.0.2: ··· 20638 20628 20639 20629 regenerator-transform@0.14.5: 20640 20630 dependencies: 20641 - '@babel/runtime': 7.21.0 20631 + '@babel/runtime': 7.25.6 20642 20632 20643 20633 regenerator-transform@0.15.2: 20644 20634 dependencies: ··· 21013 21003 dependencies: 21014 21004 xmlchars: 2.2.0 21015 21005 21006 + scheduler@0.19.1: 21007 + dependencies: 21008 + loose-envify: 1.4.0 21009 + object-assign: 4.1.1 21010 + 21016 21011 scheduler@0.20.2: 21017 21012 dependencies: 21018 21013 loose-envify: 1.4.0 21019 21014 object-assign: 4.1.1 21015 + 21016 + scheduler@0.23.2: 21017 + dependencies: 21018 + loose-envify: 1.4.0 21020 21019 21021 21020 scheduler@0.24.0-canary-efb381bbf-20230505: 21022 21021 dependencies: ··· 21387 21386 socks-proxy-agent@8.0.4: 21388 21387 dependencies: 21389 21388 agent-base: 7.1.1 21390 - debug: 4.3.7(supports-color@6.1.0) 21389 + debug: 4.3.7(supports-color@5.5.0) 21391 21390 socks: 2.8.3 21392 21391 transitivePeerDependencies: 21393 21392 - supports-color ··· 21425 21424 is-plain-obj: 1.1.0 21426 21425 21427 21426 source-list-map@2.0.1: {} 21428 - 21429 - source-map-js@1.0.2: {} 21430 21427 21431 21428 source-map-js@1.2.1: {} 21432 21429 ··· 21573 21570 xtend: 4.0.2 21574 21571 21575 21572 stream-shift@1.0.1: {} 21573 + 21574 + streamsearch@1.1.0: {} 21576 21575 21577 21576 streamx@2.20.1: 21578 21577 dependencies: ··· 21738 21737 shallowequal: 1.1.0 21739 21738 supports-color: 5.5.0 21740 21739 21741 - styled-jsx@5.1.0(@babel/core@7.25.2)(react@17.0.2): 21740 + styled-jsx@5.1.1(@babel/core@7.25.2)(react@18.3.1): 21742 21741 dependencies: 21743 21742 client-only: 0.0.1 21744 - react: 17.0.2 21743 + react: 18.3.1 21745 21744 optionalDependencies: 21746 21745 '@babel/core': 7.25.2 21747 21746 ··· 22068 22067 22069 22068 tslib@1.14.1: {} 22070 22069 22071 - tslib@2.6.1: {} 22072 - 22073 22070 tslib@2.7.0: {} 22074 22071 22075 22072 tty-browserify@0.0.0: {} ··· 22077 22074 tuf-js@2.2.1: 22078 22075 dependencies: 22079 22076 '@tufjs/models': 2.0.1 22080 - debug: 4.3.7(supports-color@6.1.0) 22077 + debug: 4.3.7(supports-color@5.5.0) 22081 22078 make-fetch-happen: 13.0.1 22082 22079 transitivePeerDependencies: 22083 22080 - supports-color ··· 22391 22388 punycode: 1.3.2 22392 22389 querystring: 0.2.0 22393 22390 22394 - use-sync-external-store@1.2.0(react@17.0.2): 22395 - dependencies: 22396 - react: 17.0.2 22397 - 22398 22391 use@3.1.1: {} 22399 22392 22400 22393 util-deprecate@1.0.2: {} ··· 22471 22464 vite-node@2.1.1(@types/node@18.19.50)(terser@5.32.0): 22472 22465 dependencies: 22473 22466 cac: 6.7.14 22474 - debug: 4.3.7(supports-color@6.1.0) 22467 + debug: 4.3.7(supports-color@5.5.0) 22475 22468 pathe: 1.1.2 22476 22469 vite: 5.4.7(@types/node@18.19.50)(terser@5.32.0) 22477 22470 transitivePeerDependencies: ··· 22500 22493 22501 22494 vite-tsconfig-paths@4.3.2(typescript@5.6.2)(vite@5.4.7(@types/node@18.19.50)(terser@5.32.0)): 22502 22495 dependencies: 22503 - debug: 4.3.7(supports-color@6.1.0) 22496 + debug: 4.3.7(supports-color@5.5.0) 22504 22497 globrex: 0.1.2 22505 22498 tsconfck: 3.1.3(typescript@5.6.2) 22506 22499 optionalDependencies: ··· 22543 22536 '@vitest/spy': 2.1.1 22544 22537 '@vitest/utils': 2.1.1 22545 22538 chai: 5.1.1 22546 - debug: 4.3.7(supports-color@6.1.0) 22539 + debug: 4.3.7(supports-color@5.5.0) 22547 22540 magic-string: 0.30.11 22548 22541 pathe: 1.1.2 22549 22542 std-env: 3.7.0 ··· 22614 22607 watchpack-chokidar2: 2.0.1 22615 22608 transitivePeerDependencies: 22616 22609 - supports-color 22610 + 22611 + watchpack@2.4.0: 22612 + dependencies: 22613 + glob-to-regexp: 0.4.1 22614 + graceful-fs: 4.2.11 22617 22615 22618 22616 wbuf@1.7.3: 22619 22617 dependencies: ··· 22700 22698 - bufferutil 22701 22699 - utf-8-validate 22702 22700 22703 - webpack-flush-chunks@2.0.3(react@17.0.2): 22701 + webpack-flush-chunks@2.0.3(react@16.14.0): 22704 22702 dependencies: 22705 - react: 17.0.2 22703 + react: 16.14.0 22706 22704 22707 22705 webpack-log@2.0.0: 22708 22706 dependencies: