[compiler] Update react deps to experimental instead of beta (#31385)
Some tests rely on experimental APIs so let's just use react@experimental instead of beta
lauren committed
Oct 29, 2024 at 21:51 UTC
603e6108f39c6663ec703eed34a89ff1bf0cb70c
11 files changed
+167
-240
compiler/packages/babel-plugin-react-compiler/package.json
+2
-2
@@ -48,8 +48,8 @@
48
"jest": "^29.0.3",
49
"jest-environment-jsdom": "^29.0.3",
50
"pretty-format": "^24",
51
- "react": "19.0.0-beta-b498834eab-20240506",
52
- "react-dom": "19.0.0-beta-b498834eab-20240506",
51
+ "react": "0.0.0-experimental-0bc30748-20241028",
52
+ "react-dom": "0.0.0-experimental-0bc30748-20241028",
53
"rimraf": "^3.0.2",
54
"ts-jest": "^29.1.1",
55
"ts-node": "^10.9.2",
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.bug-import-as-local.expect.md
deleted
-71
@@ -1,71 +0,0 @@
1
-
2
-## Input
3
-
4
-```javascript
5
-import {
6
- useEffect,
7
- useRef,
8
- // @ts-expect-error
9
- experimental_useEffectEvent as useEffectEvent,
10
-} from 'react';
11
-
12
-let id = 0;
13
-function uniqueId() {
14
- 'use no memo';
15
- return id++;
16
-}
17
-
18
-export function useCustomHook(src: string): void {
19
- const uidRef = useRef(uniqueId());
20
- const destroyed = useRef(false);
21
- const getItem = (srcName, uid) => {
22
- return {srcName, uid};
23
- };
24
-
25
- const getItemEvent = useEffectEvent(() => {
26
- if (destroyed.current) return;
27
-
28
- getItem(src, uidRef.current);
29
- });
30
-
31
- useEffect(() => {
32
- destroyed.current = false;
33
- getItemEvent();
34
- }, []);
35
-}
36
-
37
-function Component() {
38
- useCustomHook('hello');
39
- return <div>Hello</div>;
40
-}
41
-
42
-export const FIXTURE_ENTRYPOINT = {
43
- fn: Component,
44
- isComponent: true,
45
- params: [{x: 1}],
46
-};
47
-
48
-```
49
-
50
-
51
-## Error
52
-
53
-```
54
- 19 | };
55
- 20 |
56
-> 21 | const getItemEvent = useEffectEvent(() => {
57
- | ^^^^^^^
58
-> 22 | if (destroyed.current) return;
59
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
60
-> 23 |
61
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
62
-> 24 | getItem(src, uidRef.current);
63
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
64
-> 25 | });
65
- | ^^^^ InvalidReact: Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) (21:25)
66
- 26 |
67
- 27 | useEffect(() => {
68
- 28 | destroyed.current = false;
69
-```
70
-
71
-
\ No newline at end of file
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.bug-import-as-local.tsx
deleted
-42
@@ -1,42 +0,0 @@
1
-import {
2
- useEffect,
3
- useRef,
4
- // @ts-expect-error
5
- experimental_useEffectEvent as useEffectEvent,
6
-} from 'react';
7
-
8
-let id = 0;
9
-function uniqueId() {
10
- 'use no memo';
11
- return id++;
12
-}
13
-
14
-export function useCustomHook(src: string): void {
15
- const uidRef = useRef(uniqueId());
16
- const destroyed = useRef(false);
17
- const getItem = (srcName, uid) => {
18
- return {srcName, uid};
19
- };
20
-
21
- const getItemEvent = useEffectEvent(() => {
22
- if (destroyed.current) return;
23
-
24
- getItem(src, uidRef.current);
25
- });
26
-
27
- useEffect(() => {
28
- destroyed.current = false;
29
- getItemEvent();
30
- }, []);
31
-}
32
-
33
-function Component() {
34
- useCustomHook('hello');
35
- return <div>Hello</div>;
36
-}
37
-
38
-export const FIXTURE_ENTRYPOINT = {
39
- fn: Component,
40
- isComponent: true,
41
- params: [{x: 1}],
42
-};
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/fbt-preserve-whitespace-subtree.expect.md
+2
-2
@@ -14,7 +14,7 @@ import fbt from 'fbt';
14
function Foo(props) {
15
return (
16
<fbt desc={'Dialog to show to user'}>
17
- <span>
17
+ <span key={props.name}>
18
<fbt:param name="user name really long description for prettier">
19
{props.name}
20
</fbt:param>
@@ -53,7 +53,7 @@ function Foo(props) {
53
[
54
fbt._implicitParam(
55
"=m0",
56
- <span>
56
+ <span key={props.name}>
57
{fbt._(
58
"{user name really long description for prettier} !",
59
[
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/fbt-preserve-whitespace-subtree.tsx
+1
-1
@@ -10,7 +10,7 @@ import fbt from 'fbt';
10
function Foo(props) {
11
return (
12
<fbt desc={'Dialog to show to user'}>
13
- <span>
13
+ <span key={props.name}>
14
<fbt:param name="user name really long description for prettier">
15
{props.name}
16
</fbt:param>
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/fbt-preserve-whitespace-two-subtrees.expect.md
+4
-4
@@ -8,13 +8,13 @@ function Foo({name1, name2}) {
8
return (
9
<fbt desc="Text that is displayed when two people accepts the user's pull request.">
10
<fbt:param name="user1">
11
- <span>
11
+ <span key={name1}>
12
<b>{name1}</b>
13
</span>
14
</fbt:param>
15
and
16
<fbt:param name="user2">
17
- <span>
17
+ <span key={name2}>
18
<b>{name2}</b>
19
</span>
20
</fbt:param>
@@ -47,14 +47,14 @@ function Foo(t0) {
47
fbt._param(
48
"user1",
49
50
- <span>
50
+ <span key={name1}>
51
<b>{name1}</b>
52
</span>,
53
),
54
fbt._param(
55
"user2",
56
57
- <span>
57
+ <span key={name2}>
58
<b>{name2}</b>
59
</span>,
60
),
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/fbt-preserve-whitespace-two-subtrees.tsx
+2
-2
@@ -4,13 +4,13 @@ function Foo({name1, name2}) {
4
return (
5
<fbt desc="Text that is displayed when two people accepts the user's pull request.">
6
<fbt:param name="user1">
7
- <span>
7
+ <span key={name1}>
8
<b>{name1}</b>
9
</span>
10
</fbt:param>
11
and
12
<fbt:param name="user2">
13
- <span>
13
+ <span key={name2}>
14
<b>{name2}</b>
15
</span>
16
</fbt:param>
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/import-as-local.expect.md
+1
-1
@@ -137,4 +137,4 @@ export const FIXTURE_ENTRYPOINT = {
137
```
138
139
### Eval output
140
-(kind: exception) (0 , _react.experimental_useEffectEvent) is not a function
\ No newline at end of file
140
+(kind: ok) <div>Hello</div>
\ No newline at end of file
compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/module-scoped-bindings.expect.md
+1
-1
@@ -101,4 +101,4 @@ export const FIXTURE_ENTRYPOINT = {
101
```
102
103
### Eval output
104
-(kind: ok) [{"Children":{"map":"[[ function params=3 ]]","forEach":"[[ function params=3 ]]","count":"[[ function params=1 ]]","toArray":"[[ function params=1 ]]","only":"[[ function params=1 ]]"},"Component":"[[ function params=3 ]]","PureComponent":"[[ function params=3 ]]","__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE":{"H":{"readContext":"[[ function params=1 ]]","use":"[[ function params=1 ]]","useCallback":"[[ function params=2 ]]","useContext":"[[ function params=1 ]]","useEffect":"[[ function params=2 ]]","useImperativeHandle":"[[ function params=3 ]]","useInsertionEffect":"[[ function params=2 ]]","useLayoutEffect":"[[ function params=2 ]]","useMemo":"[[ function params=2 ]]","useReducer":"[[ function params=3 ]]","useRef":"[[ function params=1 ]]","useState":"[[ function params=1 ]]","useDebugValue":"[[ function params=2 ]]","useDeferredValue":"[[ function params=2 ]]","useTransition":"[[ function params=0 ]]","useSyncExternalStore":"[[ function params=3 ]]","useId":"[[ function params=0 ]]","useCacheRefresh":"[[ function params=0 ]]","useMemoCache":"[[ function params=1 ]]","useHostTransitionStatus":"[[ function params=0 ]]","useFormState":"[[ function params=3 ]]","useActionState":"[[ function params=3 ]]","useOptimistic":"[[ function params=2 ]]"},"A":{"getCacheForType":"[[ function params=1 ]]","getOwner":"[[ function params=0 ]]"},"T":null,"actQueue":["[[ function params=0 ]]","[[ function params=1 ]]"],"isBatchingLegacy":false,"didScheduleLegacyUpdate":false,"didUsePromise":false,"thrownErrors":[],"setExtraStackFrame":"[[ function params=1 ]]","getCurrentStack":"[[ function params=0 ]]","getStackAddendum":"[[ function params=0 ]]"},"act":"[[ function params=1 ]]","cache":"[[ function params=1 ]]","cloneElement":"[[ function params=3 ]]","createContext":"[[ function params=1 ]]","createElement":"[[ function params=3 ]]","createRef":"[[ function params=0 ]]","forwardRef":"[[ function params=1 ]]","isValidElement":"[[ function params=1 ]]","lazy":"[[ function params=1 ]]","memo":"[[ function params=2 ]]","startTransition":"[[ function params=2 ]]","unstable_useCacheRefresh":"[[ function params=0 ]]","use":"[[ function params=1 ]]","useActionState":"[[ function params=3 ]]","useCallback":"[[ function params=2 ]]","useContext":"[[ function params=1 ]]","useDebugValue":"[[ function params=2 ]]","useDeferredValue":"[[ function params=2 ]]","useEffect":"[[ function params=2 ]]","useId":"[[ function params=0 ]]","useImperativeHandle":"[[ function params=3 ]]","useInsertionEffect":"[[ function params=2 ]]","useLayoutEffect":"[[ function params=2 ]]","useMemo":"[[ function params=2 ]]","useOptimistic":"[[ function params=2 ]]","useReducer":"[[ function params=3 ]]","useRef":"[[ function params=1 ]]","useState":"[[ function params=1 ]]","useSyncExternalStore":"[[ function params=3 ]]","useTransition":"[[ function params=0 ]]","version":"19.0.0-beta-b498834eab-20240506"},"[[ cyclic ref *6 ]]",true,true,true,true,"[[ function params=0 ]]",true,"[[ function params=0 ]]"]
\ No newline at end of file
104
+(kind: ok) [{"Children":{"map":"[[ function params=3 ]]","forEach":"[[ function params=3 ]]","count":"[[ function params=1 ]]","toArray":"[[ function params=1 ]]","only":"[[ function params=1 ]]"},"Component":"[[ function params=3 ]]","PureComponent":"[[ function params=3 ]]","__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE":{"H":{"readContext":"[[ function params=1 ]]","use":"[[ function params=1 ]]","useCallback":"[[ function params=2 ]]","useContext":"[[ function params=1 ]]","useEffect":"[[ function params=2 ]]","useImperativeHandle":"[[ function params=3 ]]","useInsertionEffect":"[[ function params=2 ]]","useLayoutEffect":"[[ function params=2 ]]","useMemo":"[[ function params=2 ]]","useReducer":"[[ function params=3 ]]","useRef":"[[ function params=1 ]]","useState":"[[ function params=1 ]]","useDebugValue":"[[ function params=0 ]]","useDeferredValue":"[[ function params=2 ]]","useTransition":"[[ function params=0 ]]","useSyncExternalStore":"[[ function params=3 ]]","useId":"[[ function params=0 ]]","useCacheRefresh":"[[ function params=0 ]]","useMemoCache":"[[ function params=1 ]]","useEffectEvent":"[[ function params=1 ]]","useHostTransitionStatus":"[[ function params=0 ]]","useFormState":"[[ function params=2 ]]","useActionState":"[[ function params=2 ]]","useOptimistic":"[[ function params=1 ]]"},"A":{"getCacheForType":"[[ function params=1 ]]","getOwner":"[[ function params=0 ]]"},"T":null,"S":"[[ function params=2 ]]","actQueue":["[[ function params=0 ]]","[[ function params=1 ]]"],"isBatchingLegacy":false,"didScheduleLegacyUpdate":false,"didUsePromise":false,"thrownErrors":[],"getCurrentStack":"[[ function params=0 ]]"},"__COMPILER_RUNTIME":{"c":"[[ function params=1 ]]"},"act":"[[ function params=1 ]]","cache":"[[ function params=1 ]]","captureOwnerStack":"[[ function params=0 ]]","cloneElement":"[[ function params=3 ]]","createContext":"[[ function params=1 ]]","createElement":"[[ function params=3 ]]","createRef":"[[ function params=0 ]]","experimental_useEffectEvent":"[[ function params=1 ]]","experimental_useOptimistic":"[[ function params=2 ]]","forwardRef":"[[ function params=1 ]]","isValidElement":"[[ function params=1 ]]","lazy":"[[ function params=1 ]]","memo":"[[ function params=2 ]]","startTransition":"[[ function params=1 ]]","unstable_getCacheForType":"[[ function params=1 ]]","unstable_postpone":"[[ function params=1 ]]","unstable_useCacheRefresh":"[[ function params=0 ]]","use":"[[ function params=1 ]]","useActionState":"[[ function params=3 ]]","useCallback":"[[ function params=2 ]]","useContext":"[[ function params=1 ]]","useDebugValue":"[[ function params=2 ]]","useDeferredValue":"[[ function params=2 ]]","useEffect":"[[ function params=2 ]]","useId":"[[ function params=0 ]]","useImperativeHandle":"[[ function params=3 ]]","useInsertionEffect":"[[ function params=2 ]]","useLayoutEffect":"[[ function params=2 ]]","useMemo":"[[ function params=2 ]]","useOptimistic":"[[ function params=2 ]]","useReducer":"[[ function params=3 ]]","useRef":"[[ function params=1 ]]","useState":"[[ function params=1 ]]","useSyncExternalStore":"[[ function params=3 ]]","useTransition":"[[ function params=0 ]]","version":"19.0.0-experimental-0bc30748-20241028"},"[[ cyclic ref *6 ]]",true,true,true,true,"[[ function params=0 ]]",true,"[[ function params=0 ]]"]
\ No newline at end of file
compiler/packages/snap/package.json
+2
-2
@@ -33,8 +33,8 @@
33
"glob": "^10.3.10",
34
"hermes-parser": "^0.19.1",
35
"jsdom": "^22.1.0",
36
- "react": "19.0.0-beta-b498834eab-20240506",
37
- "react-dom": "19.0.0-beta-b498834eab-20240506",
36
+ "react": "0.0.0-experimental-0bc30748-20241028",
37
+ "react-dom": "0.0.0-experimental-0bc30748-20241028",
38
"readline": "^1.3.0",
39
"yargs": "^17.7.1"
40
},
compiler/yarn.lock
+152
-112
@@ -44,15 +44,24 @@
44
"@babel/highlight" "^7.24.7"
45
picocolors "^1.0.0"
46
47
+"@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0":
48
+ version "7.26.0"
49
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.0.tgz#9374b5cd068d128dac0b94ff482594273b1c2815"
50
+ integrity sha512-INCKxTtbXtcNbUZ3YXutwMpEleqttcswhAdee7dhuoVrD2cnuc3PqtERBtxkX5nziX9vnBL8WXmSGwv8CuPV6g==
51
+ dependencies:
52
+ "@babel/helper-validator-identifier" "^7.25.9"
53
+ js-tokens "^4.0.0"
54
+ picocolors "^1.0.0"
55
+
56
"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.22.0", "@babel/compat-data@^7.22.3":
57
version "7.22.3"
58
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.3.tgz#cd502a6a0b6e37d7ad72ce7e71a7160a3ae36f7e"
59
integrity sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ==
60
52
-"@babel/compat-data@^7.25.2":
53
- version "7.25.4"
54
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb"
55
- integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==
61
+"@babel/compat-data@^7.25.9":
62
+ version "7.26.0"
63
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.0.tgz#f02ba6d34e88fadd5e8861e8b38902f43cc1c819"
64
+ integrity sha512-qETICbZSLe7uXv9VE8T/RWOdIE5qqyTucOt4zLYMafj2MRO271VGgLd4RACJMeBO37UPWhXiKMBk7YlJ0fOzQA==
65
66
"@babel/core@^7.0.0", "@babel/core@^7.2.0":
67
version "7.2.0"
@@ -75,20 +84,20 @@
84
source-map "^0.5.0"
85
86
"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.19.1", "@babel/core@^7.24.4":
78
- version "7.25.2"
79
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77"
80
- integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==
87
+ version "7.26.0"
88
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40"
89
+ integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==
90
dependencies:
91
"@ampproject/remapping" "^2.2.0"
83
- "@babel/code-frame" "^7.24.7"
84
- "@babel/generator" "^7.25.0"
85
- "@babel/helper-compilation-targets" "^7.25.2"
86
- "@babel/helper-module-transforms" "^7.25.2"
87
- "@babel/helpers" "^7.25.0"
88
- "@babel/parser" "^7.25.0"
89
- "@babel/template" "^7.25.0"
90
- "@babel/traverse" "^7.25.2"
91
- "@babel/types" "^7.25.2"
92
+ "@babel/code-frame" "^7.26.0"
93
+ "@babel/generator" "^7.26.0"
94
+ "@babel/helper-compilation-targets" "^7.25.9"
95
+ "@babel/helper-module-transforms" "^7.26.0"
96
+ "@babel/helpers" "^7.26.0"
97
+ "@babel/parser" "^7.26.0"
98
+ "@babel/template" "^7.25.9"
99
+ "@babel/traverse" "^7.25.9"
100
+ "@babel/types" "^7.26.0"
101
convert-source-map "^2.0.0"
102
debug "^4.1.0"
103
gensync "^1.0.0-beta.2"
@@ -106,15 +115,16 @@
115
source-map "^0.5.0"
116
trim-right "^1.0.1"
117
109
-"@babel/generator@^7.25.0", "@babel/generator@^7.25.6", "@babel/generator@^7.7.2", "@babel/generator@^7.7.4":
110
- version "7.25.6"
111
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.6.tgz#0df1ad8cb32fe4d2b01d8bf437f153d19342a87c"
112
- integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==
118
+"@babel/generator@^7.25.9", "@babel/generator@^7.26.0", "@babel/generator@^7.7.2", "@babel/generator@^7.7.4":
119
+ version "7.26.0"
120
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.0.tgz#505cc7c90d92513f458a477e5ef0703e7c91b8d7"
121
+ integrity sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==
122
dependencies:
114
- "@babel/types" "^7.25.6"
123
+ "@babel/parser" "^7.26.0"
124
+ "@babel/types" "^7.26.0"
125
"@jridgewell/gen-mapping" "^0.3.5"
126
"@jridgewell/trace-mapping" "^0.3.25"
117
- jsesc "^2.5.1"
127
+ jsesc "^3.0.2"
128
129
"@babel/helper-annotate-as-pure@^7.18.6":
130
version "7.18.6"
@@ -148,14 +158,14 @@
158
lru-cache "^5.1.1"
159
semver "^6.3.0"
160
151
-"@babel/helper-compilation-targets@^7.25.2":
152
- version "7.25.2"
153
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c"
154
- integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==
161
+"@babel/helper-compilation-targets@^7.25.9":
162
+ version "7.25.9"
163
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875"
164
+ integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==
165
dependencies:
156
- "@babel/compat-data" "^7.25.2"
157
- "@babel/helper-validator-option" "^7.24.8"
158
- browserslist "^4.23.1"
166
+ "@babel/compat-data" "^7.25.9"
167
+ "@babel/helper-validator-option" "^7.25.9"
168
+ browserslist "^4.24.0"
169
lru-cache "^5.1.1"
170
semver "^6.3.1"
171
@@ -312,13 +322,13 @@
322
dependencies:
323
"@babel/types" "^7.21.4"
324
315
-"@babel/helper-module-imports@^7.24.7":
316
- version "7.24.7"
317
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b"
318
- integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==
325
+"@babel/helper-module-imports@^7.25.9":
326
+ version "7.25.9"
327
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715"
328
+ integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==
329
dependencies:
320
- "@babel/traverse" "^7.24.7"
321
- "@babel/types" "^7.24.7"
330
+ "@babel/traverse" "^7.25.9"
331
+ "@babel/types" "^7.25.9"
332
333
"@babel/helper-module-transforms@^7.18.6":
334
version "7.19.0"
@@ -362,15 +372,14 @@
372
"@babel/traverse" "^7.21.2"
373
"@babel/types" "^7.21.2"
374
365
-"@babel/helper-module-transforms@^7.25.2":
366
- version "7.25.2"
367
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6"
368
- integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==
375
+"@babel/helper-module-transforms@^7.26.0":
376
+ version "7.26.0"
377
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae"
378
+ integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==
379
dependencies:
370
- "@babel/helper-module-imports" "^7.24.7"
371
- "@babel/helper-simple-access" "^7.24.7"
372
- "@babel/helper-validator-identifier" "^7.24.7"
373
- "@babel/traverse" "^7.25.2"
380
+ "@babel/helper-module-imports" "^7.25.9"
381
+ "@babel/helper-validator-identifier" "^7.25.9"
382
+ "@babel/traverse" "^7.25.9"
383
384
"@babel/helper-optimise-call-expression@^7.18.6":
385
version "7.18.6"
@@ -469,14 +478,6 @@
478
dependencies:
479
"@babel/types" "^7.21.5"
480
472
-"@babel/helper-simple-access@^7.24.7":
473
- version "7.24.7"
474
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3"
475
- integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==
476
- dependencies:
477
- "@babel/traverse" "^7.24.7"
478
- "@babel/types" "^7.24.7"
479
-
481
"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
482
version "7.20.0"
483
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
@@ -537,6 +538,11 @@
538
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d"
539
integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
540
541
+"@babel/helper-string-parser@^7.25.9":
542
+ version "7.25.9"
543
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c"
544
+ integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==
545
+
546
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
547
version "7.19.1"
548
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
@@ -552,6 +558,11 @@
558
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db"
559
integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
560
561
+"@babel/helper-validator-identifier@^7.25.9":
562
+ version "7.25.9"
563
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7"
564
+ integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==
565
+
566
"@babel/helper-validator-option@^7.18.6":
567
version "7.18.6"
568
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
@@ -567,10 +578,10 @@
578
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac"
579
integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==
580
570
-"@babel/helper-validator-option@^7.24.8":
571
- version "7.24.8"
572
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d"
573
- integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==
581
+"@babel/helper-validator-option@^7.25.9":
582
+ version "7.25.9"
583
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72"
584
+ integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==
585
586
"@babel/helper-wrap-function@^7.18.9":
587
version "7.20.5"
@@ -591,13 +602,13 @@
602
"@babel/traverse" "^7.19.0"
603
"@babel/types" "^7.19.0"
604
594
-"@babel/helpers@^7.25.0":
595
- version "7.25.6"
596
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.6.tgz#57ee60141829ba2e102f30711ffe3afab357cc60"
597
- integrity sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==
605
+"@babel/helpers@^7.26.0":
606
+ version "7.26.0"
607
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4"
608
+ integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==
609
dependencies:
599
- "@babel/template" "^7.25.0"
600
- "@babel/types" "^7.25.6"
610
+ "@babel/template" "^7.25.9"
611
+ "@babel/types" "^7.26.0"
612
613
"@babel/highlight@^7.18.6":
614
version "7.18.6"
@@ -657,13 +668,20 @@
668
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.4.tgz#234487a110d89ad5a3ed4a8a566c36b9453e8c88"
669
integrity sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==
670
660
-"@babel/parser@^7.25.0", "@babel/parser@^7.25.6":
671
+"@babel/parser@^7.25.0":
672
version "7.25.6"
673
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.6.tgz#85660c5ef388cbbf6e3d2a694ee97a38f18afe2f"
674
integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==
675
dependencies:
676
"@babel/types" "^7.25.6"
677
678
+"@babel/parser@^7.25.9", "@babel/parser@^7.26.0":
679
+ version "7.26.1"
680
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.1.tgz#44e02499960df2cdce2c456372a3e8e0c3c5c975"
681
+ integrity sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==
682
+ dependencies:
683
+ "@babel/types" "^7.26.0"
684
+
685
"@babel/parser@^7.7.4":
686
version "7.21.4"
687
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.4.tgz#94003fdfc520bbe2875d4ae557b43ddb6d880f17"
@@ -1545,7 +1563,7 @@
1563
"@babel/parser" "^7.22.5"
1564
"@babel/types" "^7.22.5"
1565
1548
-"@babel/template@^7.24.7", "@babel/template@^7.25.0":
1566
+"@babel/template@^7.24.7":
1567
version "7.25.0"
1568
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a"
1569
integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==
@@ -1554,6 +1572,15 @@
1572
"@babel/parser" "^7.25.0"
1573
"@babel/types" "^7.25.0"
1574
1575
+"@babel/template@^7.25.9":
1576
+ version "7.25.9"
1577
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016"
1578
+ integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==
1579
+ dependencies:
1580
+ "@babel/code-frame" "^7.25.9"
1581
+ "@babel/parser" "^7.25.9"
1582
+ "@babel/types" "^7.25.9"
1583
+
1584
"@babel/template@^7.3.3":
1585
version "7.18.6"
1586
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.6.tgz#1283f4993e00b929d6e2d3c72fdc9168a2977a31"
@@ -1578,16 +1605,16 @@
1605
globals "^11.1.0"
1606
lodash "^4.17.13"
1607
1581
-"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.20.5", "@babel/traverse@^7.21.2", "@babel/traverse@^7.22.1", "@babel/traverse@^7.24.7", "@babel/traverse@^7.25.2":
1582
- version "7.25.6"
1583
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.6.tgz#04fad980e444f182ecf1520504941940a90fea41"
1584
- integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==
1608
+"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.20.5", "@babel/traverse@^7.21.2", "@babel/traverse@^7.22.1", "@babel/traverse@^7.25.9":
1609
+ version "7.25.9"
1610
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84"
1611
+ integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==
1612
dependencies:
1586
- "@babel/code-frame" "^7.24.7"
1587
- "@babel/generator" "^7.25.6"
1588
- "@babel/parser" "^7.25.6"
1589
- "@babel/template" "^7.25.0"
1590
- "@babel/types" "^7.25.6"
1613
+ "@babel/code-frame" "^7.25.9"
1614
+ "@babel/generator" "^7.25.9"
1615
+ "@babel/parser" "^7.25.9"
1616
+ "@babel/template" "^7.25.9"
1617
+ "@babel/types" "^7.25.9"
1618
debug "^4.3.1"
1619
globals "^11.1.0"
1620
@@ -1644,7 +1671,7 @@
1671
"@babel/helper-validator-identifier" "^7.22.5"
1672
to-fast-properties "^2.0.0"
1673
1647
-"@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.6", "@babel/types@^7.7.4":
1674
+"@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.6", "@babel/types@^7.7.4":
1675
version "7.25.6"
1676
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.6.tgz#893942ddb858f32ae7a004ec9d3a76b3463ef8e6"
1677
integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==
@@ -1653,6 +1680,14 @@
1680
"@babel/helper-validator-identifier" "^7.24.7"
1681
to-fast-properties "^2.0.0"
1682
1683
+"@babel/types@^7.25.9", "@babel/types@^7.26.0":
1684
+ version "7.26.0"
1685
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff"
1686
+ integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==
1687
+ dependencies:
1688
+ "@babel/helper-string-parser" "^7.25.9"
1689
+ "@babel/helper-validator-identifier" "^7.25.9"
1690
+
1691
"@bcoe/v8-coverage@^0.2.3":
1692
version "0.2.3"
1693
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -3549,15 +3584,15 @@ browserslist@^4.21.3, browserslist@^4.21.5:
3584
node-releases "^2.0.12"
3585
update-browserslist-db "^1.0.11"
3586
3552
-browserslist@^4.23.1:
3553
- version "4.24.0"
3554
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.0.tgz#a1325fe4bc80b64fda169629fc01b3d6cecd38d4"
3555
- integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==
3587
+browserslist@^4.24.0:
3588
+ version "4.24.2"
3589
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580"
3590
+ integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==
3591
dependencies:
3557
- caniuse-lite "^1.0.30001663"
3558
- electron-to-chromium "^1.5.28"
3592
+ caniuse-lite "^1.0.30001669"
3593
+ electron-to-chromium "^1.5.41"
3594
node-releases "^2.0.18"
3560
- update-browserslist-db "^1.1.0"
3595
+ update-browserslist-db "^1.1.1"
3596
3597
bs-logger@0.x:
3598
version "0.2.6"
@@ -3619,10 +3654,10 @@ caniuse-lite@^1.0.30001489:
3654
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001581.tgz"
3655
integrity sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==
3656
3622
-caniuse-lite@^1.0.30001663:
3623
- version "1.0.30001664"
3624
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001664.tgz#d588d75c9682d3301956b05a3749652a80677df4"
3625
- integrity sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==
3657
+caniuse-lite@^1.0.30001669:
3658
+ version "1.0.30001674"
3659
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001674.tgz#eb200a716c3e796d33d30b9c8890517a72f862c8"
3660
+ integrity sha512-jOsKlZVRnzfhLojb+Ykb+gyUSp9Xb57So+fAiFlLzzTKpqg8xxSav0e40c8/4F/v9N8QSvrRRaLeVzQbLqomYw==
3661
3662
chalk@4, chalk@^4.0.0, chalk@^4.1.0:
3663
version "4.1.2"
@@ -4011,10 +4046,10 @@ electron-to-chromium@^1.4.411:
4046
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.418.tgz#9092aca12db25acf02a2ddf9de59f0e4363c9928"
4047
integrity sha512-1KnpDTS9onwAfMzW50LcpNtyOkMyjd/OLoD2Kx/DDITZqgNYixY71XNszPHNxyQQ/Brh+FDcUnf4BaM041sdWg==
4048
4014
-electron-to-chromium@^1.5.28:
4015
- version "1.5.29"
4016
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.29.tgz#aa592a3caa95d07cc26a66563accf99fa573a1ee"
4017
- integrity sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==
4049
+electron-to-chromium@^1.5.41:
4050
+ version "1.5.49"
4051
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.49.tgz#9358f514ab6eeed809a8689f4b39ea5114ae729c"
4052
+ integrity sha512-ZXfs1Of8fDb6z7WEYZjXpgIRF6MEu8JdeGA0A40aZq6OQbS+eJpnnV49epZRna2DU/YsEjSQuGtQPPtvt6J65A==
4053
4054
emittery@^0.10.2:
4055
version "0.10.2"
@@ -4058,7 +4093,7 @@ escalade@^3.1.1:
4093
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
4094
integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
4095
4061
-escalade@^3.1.2:
4096
+escalade@^3.2.0:
4097
version "3.2.0"
4098
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
4099
integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
@@ -6157,6 +6192,11 @@ jsesc@^2.5.1:
6192
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
6193
integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
6194
6195
+jsesc@^3.0.2:
6196
+ version "3.0.2"
6197
+ resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e"
6198
+ integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==
6199
+
6200
jsesc@~0.5.0:
6201
version "0.5.0"
6202
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
@@ -6722,10 +6762,10 @@ picocolors@^1.0.0:
6762
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
6763
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
6764
6725
-picocolors@^1.0.1:
6726
- version "1.1.0"
6727
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
6728
- integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
6765
+picocolors@^1.1.0:
6766
+ version "1.1.1"
6767
+ resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
6768
+ integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
6769
6770
picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1:
6771
version "2.3.1"
@@ -6885,22 +6925,22 @@ randombytes@^2.1.0:
6925
dependencies:
6926
safe-buffer "^5.1.0"
6927
6888
-react-dom@19.0.0-beta-b498834eab-20240506:
6889
- version "19.0.0-beta-b498834eab-20240506"
6890
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.0.0-beta-b498834eab-20240506.tgz#1860706b1b5b68850fad0f44d08ae43311fe1171"
6891
- integrity sha512-k+o/NB0245cUhJXQj8S9YWlGc+3aNNRMUwhmSP22UA422jucLYg5N5eHYwNTr7EWNR/xJ1uZXodX+Ur9JvKCuQ==
6928
+react-dom@0.0.0-experimental-0bc30748-20241028:
6929
+ version "0.0.0-experimental-0bc30748-20241028"
6930
+ resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-0.0.0-experimental-0bc30748-20241028.tgz#07061961b4fd80b1e85dbf1005ce5391eedae845"
6931
+ integrity sha512-0+hMpMC2cJMhsb4umbXGxSfCiPct4HfA8M4vJUyLZ/Z2tV4QsaE7ptVO/WwYYxxTf17dwBqkESMb6RRVCVHNQQ==
6932
dependencies:
6893
- scheduler "0.25.0-beta-b498834eab-20240506"
6933
+ scheduler "0.0.0-experimental-0bc30748-20241028"
6934
6935
react-is@19.0.0-beta-b498834eab-20240506, react-is@^16.8.4, react-is@^17.0.1, react-is@^18.0.0:
6936
version "19.0.0-beta-b498834eab-20240506"
6937
resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.0.0-beta-b498834eab-20240506.tgz#772f7d3ff4997997730f54cad28282214b487294"
6938
integrity sha512-n4bHxssA5Y0y1Vx4P0aBybxp0VviakagM9wgP961sVCj2hndZqb/NcVEmIkwxAL2ha4kv/l1zaUiIH+4fSZJkg==
6939
6900
-react@19.0.0-beta-b498834eab-20240506:
6901
- version "19.0.0-beta-b498834eab-20240506"
6902
- resolved "https://registry.yarnpkg.com/react/-/react-19.0.0-beta-b498834eab-20240506.tgz#36a99a1160ca055725a092630641c2dd77b62f33"
6903
- integrity sha512-mK8kVx7e0M6bVvjc+G+48Oo4TJJ1Y84JUrs60MbIw8WoqqHmG9qPFz3IwhXqzVtugqBMog5UA4KEZW+nHxewkw==
6940
+react@0.0.0-experimental-0bc30748-20241028:
6941
+ version "0.0.0-experimental-0bc30748-20241028"
6942
+ resolved "https://registry.yarnpkg.com/react/-/react-0.0.0-experimental-0bc30748-20241028.tgz#e9f5c8d32531088e7d9be508c498491da7e1d462"
6943
+ integrity sha512-7H9ezZboHMmKfTZ/J6fwO3+EzufgJsr1vDpcB+GL9nE8Qg8jRx/tk7GMmS2pdjYgJzgzL3Lhfc6pSkoTshbJhw==
6944
6945
readable-stream@^3.4.0:
6946
version "3.6.2"
@@ -7130,10 +7170,10 @@ saxes@^6.0.0:
7170
dependencies:
7171
xmlchars "^2.2.0"
7172
7133
-scheduler@0.25.0-beta-b498834eab-20240506:
7134
- version "0.25.0-beta-b498834eab-20240506"
7135
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0-beta-b498834eab-20240506.tgz#ddbdfe82bdf7a4dda551974c54b9b68e75cb9ba1"
7136
- integrity sha512-fw52C9FJ90xSu8R2vRfYX8WiI3sz4zo/ya98DRdRqkkgek6WYofI7AJRM5ZZxFtVKuJZOUjV+4uoVK9Al1XadA==
7173
+scheduler@0.0.0-experimental-0bc30748-20241028:
7174
+ version "0.0.0-experimental-0bc30748-20241028"
7175
+ resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.0.0-experimental-0bc30748-20241028.tgz#6fafb09ff72b4f375bfd1c916d11cde0607d2835"
7176
+ integrity sha512-gqr4QbUBcIZ7igLan4v4eTYHszX3BkLwbiaiNaQVpbS3IzI/oXZPJAOxqZIctf9JMPa80Bblk4WaXoSR4mHS7Q==
7177
7178
semver@7.x, semver@^7.3.5:
7179
version "7.3.7"
@@ -7615,13 +7655,13 @@ update-browserslist-db@^1.0.11:
7655
escalade "^3.1.1"
7656
picocolors "^1.0.0"
7657
7618
-update-browserslist-db@^1.1.0:
7619
- version "1.1.0"
7620
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e"
7621
- integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==
7658
+update-browserslist-db@^1.1.1:
7659
+ version "1.1.1"
7660
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5"
7661
+ integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==
7662
dependencies:
7623
- escalade "^3.1.2"
7624
- picocolors "^1.0.1"
7663
+ escalade "^3.2.0"
7664
+ picocolors "^1.1.0"
7665
7666
uri-js@^4.2.2:
7667
version "4.4.1"