diff --git a/ares/package.json b/ares/package.json index 1bc778d2..b5488466 100644 --- a/ares/package.json +++ b/ares/package.json @@ -34,8 +34,8 @@ "@stripe/stripe-js": "^3.5.0", "fbt": "^1.0.2", "framer-motion": "^11.2.10", - "react": "19.0.0-rc-915b914b3a-20240515", - "react-dom": "19.0.0-rc-915b914b3a-20240515", + "react": "19.0.0-rc.0", + "react-dom": "19.0.0-rc.0", "react-error-boundary": "^4.0.13", "react-relay": "^16.2.0", "react-router-dom": "^6.23.1", diff --git a/deimos/package.json b/deimos/package.json index 7d0a3212..648a5e14 100644 --- a/deimos/package.json +++ b/deimos/package.json @@ -20,8 +20,8 @@ "array-shuffle": "^3.0.0", "fbt": "^1.0.2", "framer-motion": "^11.2.10", - "react": "19.0.0-rc-915b914b3a-20240515", - "react-dom": "19.0.0-rc-915b914b3a-20240515", + "react": "19.0.0-rc.0", + "react-dom": "19.0.0-rc.0", "react-error-boundary": "^4.0.13" }, "devDependencies": { diff --git a/docs/package.json b/docs/package.json index bbda903a..8ecaa171 100644 --- a/docs/package.json +++ b/docs/package.json @@ -29,8 +29,8 @@ "fbt": "^1.0.2", "framer-motion": "^11.2.10", "licht-theme": "^1.7.1", - "react": "19.0.0-rc-915b914b3a-20240515", - "react-dom": "19.0.0-rc-915b914b3a-20240515", + "react": "19.0.0-rc.0", + "react-dom": "19.0.0-rc.0", "vocs": "1.0.0-alpha.52" } } diff --git a/hera/package.json b/hera/package.json index 7b5043b2..36f99ec6 100644 --- a/hera/package.json +++ b/hera/package.json @@ -25,8 +25,8 @@ "array-shuffle": "^3.0.0", "fbt": "^1.0.2", "framer-motion": "^11.2.10", - "react": "19.0.0-rc-915b914b3a-20240515", - "react-dom": "19.0.0-rc-915b914b3a-20240515", + "react": "19.0.0-rc.0", + "react-dom": "19.0.0-rc.0", "react-fps": "^1.0.6" }, "devDependencies": { diff --git a/package.json b/package.json index c139dbee..ee9bec07 100644 --- a/package.json +++ b/package.json @@ -104,7 +104,7 @@ ] }, "overrides": { - "react@^18.0.0": "19.0.0-rc-915b914b3a-20240515", + "react@^18.0.0": "19.0.0-rc.0", "rollup@^2.0.0": "^4.16.4" }, "patchedDependencies": { diff --git a/patches/fbt@1.0.2.patch b/patches/fbt@1.0.2.patch index d608b2e2..150b77eb 100644 --- a/patches/fbt@1.0.2.patch +++ b/patches/fbt@1.0.2.patch @@ -1,18 +1,5 @@ -diff --git a/dist/fbt.js b/dist/fbt.js -index 271853b2299af4bb36869c100a9b374de0157571..87bd30760621336790bab2d7de61cd915e6c6d61 100644 ---- a/dist/fbt.js -+++ b/dist/fbt.js -@@ -487,7 +487,7 @@ module.exports = FbtQTOverrides; - * @noformat - * @nogrep - */ --var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol["for"] && Symbol["for"]('react.element') || 0xeac7; -+var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol["for"] && Symbol["for"]('react.transitional.element') || 0xeac7; - var canDefineProperty = false; - - if (true) { diff --git a/lib/FbtReactUtil.js b/lib/FbtReactUtil.js -index becb60e893478abf6b5edf1baa176c69b009d33f..74eb840877e41b28b90c9e7785621f4534f3bb1a 100644 +index becb60e893478abf6b5edf1baa176c69b009d33f..6a0b62f647f23a5688fed5c6e5b3df801af379d8 100644 --- a/lib/FbtReactUtil.js +++ b/lib/FbtReactUtil.js @@ -16,7 +16,7 @@ @@ -25,10 +12,45 @@ index becb60e893478abf6b5edf1baa176c69b009d33f..74eb840877e41b28b90c9e7785621f45 if (process.env.NODE_ENV !== "production") { diff --git a/lib/substituteTokens.js b/lib/substituteTokens.js -index 144db1d6553417bb9ec67f537c40c0c4cc4f0067..95e6cca7bb4e87598c467420ce81d6a6d29536cf 100644 +index 144db1d6553417bb9ec67f537c40c0c4cc4f0067..3061f41cf04dce35f5868c14bbfa2bd75cca10eb 100644 --- a/lib/substituteTokens.js +++ b/lib/substituteTokens.js -@@ -66,12 +66,6 @@ function substituteTokens(template, args, errorListener) { +@@ -39,17 +39,28 @@ function markAsSafeForReact(object) { + if (process.env.NODE_ENV !== "production") { + // If this looks like a ReactElement, mark it as safe to silence any + // key warnings. +- // I use a string key to avoid any possible private variable transforms. +- var storeKey = '_store'; +- var store = object[storeKey]; + +- if (object.type != null && object.type != '' && typeof object.props === 'object' && store != null && typeof store === 'object' && typeof store.validated === 'boolean') { +- store.validated = true; ++ // I use a string key to avoid any possible private variable transforms. ++ const storeKey = '_store'; ++ ++ const store = object[storeKey]; ++ if ( ++ object.type != null && ++ object.type != '' && ++ typeof object.props === 'object' && ++ store != null && ++ typeof store === 'object' ++ ) { ++ if (typeof store.validated === 'number') { ++ store.validated = 1; ++ } else if (typeof store.validated === 'boolean') { ++ store.validated = true; ++ } + } + } +- + return object; + } ++ + /** + * Does the token substitution fbt() but without the string lookup. + * Used for in-place substitutions in translation mode. +@@ -66,12 +77,6 @@ function substituteTokens(template, args, errorListener) { var objectPieces = []; var argNames = []; var stringPieces = template.replace(parameterRegexp, function (_match, parameter, punctuation) { @@ -41,7 +63,7 @@ index 144db1d6553417bb9ec67f537c40c0c4cc4f0067..95e6cca7bb4e87598c467420ce81d6a6 var argument = args[parameter]; if (argument != null && typeof argument === 'object') { -@@ -80,7 +74,7 @@ function substituteTokens(template, args, errorListener) { +@@ -80,7 +85,7 @@ function substituteTokens(template, args, errorListener) { return '\x17' + punctuation; } else if (argument == null) { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ca93206e..daaa47ac 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,7 +5,7 @@ settings: excludeLinksFromLockfile: false overrides: - react@^18.0.0: 19.0.0-rc-915b914b3a-20240515 + react@^18.0.0: 19.0.0-rc.0 rollup@^2.0.0: ^4.16.4 patchedDependencies: @@ -16,7 +16,7 @@ patchedDependencies: hash: gqi3hqavyg4p4tnm2gmk4olmpe path: patches/eslint-plugin-import@2.29.1.patch fbt@1.0.2: - hash: 3a6vicbqxcrxvjkaykcxc7x24a + hash: h3le5xcbsw44ybdi7qpcrzppny path: patches/fbt@1.0.2.patch graphql-helix@1.13.0: hash: zltyqk45poay6m4komgvsov4ua @@ -163,37 +163,37 @@ importers: version: 1.2.5 '@nkzw/use-relative-time': specifier: ^1.1.0 - version: 1.1.0(react@19.0.0-rc-915b914b3a-20240515) + version: 1.1.0(react@19.0.0-rc.0) '@sentry/browser': specifier: ^8.9.2 version: 8.9.2 '@stripe/react-stripe-js': specifier: ^2.7.1 - version: 2.7.1(@stripe/stripe-js@3.5.0)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 2.7.1(@stripe/stripe-js@3.5.0)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) '@stripe/stripe-js': specifier: ^3.5.0 version: 3.5.0 fbt: specifier: ^1.0.2 - version: 1.0.2(patch_hash=3a6vicbqxcrxvjkaykcxc7x24a)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.2(patch_hash=h3le5xcbsw44ybdi7qpcrzppny)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc.0) framer-motion: specifier: ^11.2.10 - version: 11.2.10(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 11.2.10(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) react: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515 + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0 react-dom: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0(react@19.0.0-rc.0) react-error-boundary: specifier: ^4.0.13 - version: 4.0.13(react@19.0.0-rc-915b914b3a-20240515) + version: 4.0.13(react@19.0.0-rc.0) react-relay: specifier: ^16.2.0 - version: 16.2.0(react@19.0.0-rc-915b914b3a-20240515) + version: 16.2.0(react@19.0.0-rc.0) react-router-dom: specifier: ^6.23.1 - version: 6.23.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 6.23.1(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) relay-runtime: specifier: ^16.2.0 version: 16.2.0 @@ -202,7 +202,7 @@ importers: version: 4.7.5(bufferutil@4.0.8) tinybase: specifier: 5.0.0-beta.22 - version: 5.0.0-beta.22(prettier@4.0.0-alpha.8)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)(ws@8.17.0(bufferutil@4.0.8)) + version: 5.0.0-beta.22(prettier@4.0.0-alpha.8)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)(ws@8.17.0(bufferutil@4.0.8)) workbox-core: specifier: ^7.1.0 version: 7.1.0 @@ -541,19 +541,19 @@ importers: version: 3.0.0 fbt: specifier: ^1.0.2 - version: 1.0.2(patch_hash=3a6vicbqxcrxvjkaykcxc7x24a)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.2(patch_hash=h3le5xcbsw44ybdi7qpcrzppny)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc.0) framer-motion: specifier: ^11.2.10 - version: 11.2.10(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 11.2.10(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) react: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515 + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0 react-dom: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0(react@19.0.0-rc.0) react-error-boundary: specifier: ^4.0.13 - version: 4.0.13(react@19.0.0-rc-915b914b3a-20240515) + version: 4.0.13(react@19.0.0-rc.0) devDependencies: '@emotion/babel-plugin': specifier: ^11.11.0 @@ -617,22 +617,22 @@ importers: version: 1.7.1 fbt: specifier: ^1.0.2 - version: 1.0.2(patch_hash=3a6vicbqxcrxvjkaykcxc7x24a)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.2(patch_hash=h3le5xcbsw44ybdi7qpcrzppny)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc.0) framer-motion: specifier: ^11.2.10 - version: 11.2.10(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 11.2.10(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) licht-theme: specifier: ^1.7.1 version: 1.7.1 react: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515 + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0 react-dom: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0(react@19.0.0-rc.0) vocs: specifier: 1.0.0-alpha.52 - version: 1.0.0-alpha.52(@types/node@20.14.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)(rollup@4.18.0)(terser@5.31.1)(ts-node@10.9.2(@swc/core@1.5.29)(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) + version: 1.0.0-alpha.52(@types/node@20.14.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)(rollup@4.18.0)(terser@5.31.1)(ts-node@10.9.2(@swc/core@1.5.29)(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) eslint-plugin: {} @@ -687,25 +687,25 @@ importers: version: 1.2.2 '@nkzw/use-relative-time': specifier: ^1.1.0 - version: 1.1.0(react@19.0.0-rc-915b914b3a-20240515) + version: 1.1.0(react@19.0.0-rc.0) array-shuffle: specifier: ^3.0.0 version: 3.0.0 fbt: specifier: ^1.0.2 - version: 1.0.2(patch_hash=3a6vicbqxcrxvjkaykcxc7x24a)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.2(patch_hash=h3le5xcbsw44ybdi7qpcrzppny)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc.0) framer-motion: specifier: ^11.2.10 - version: 11.2.10(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 11.2.10(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) react: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515 + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0 react-dom: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0(react@19.0.0-rc.0) react-fps: specifier: ^1.0.6 - version: 1.0.6(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.6(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) devDependencies: '@types/react': specifier: ^18.3.3 @@ -825,7 +825,7 @@ importers: version: 5.3.0 fbt: specifier: ^1.0.2 - version: 1.0.2(patch_hash=3a6vicbqxcrxvjkaykcxc7x24a)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.2(patch_hash=h3le5xcbsw44ybdi7qpcrzppny)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc.0) jest-image-snapshot: specifier: ^6.4.0 version: 6.4.0 @@ -833,14 +833,14 @@ importers: specifier: ^1.44.1 version: 1.44.1 react: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515 + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0 react-dom: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0(react@19.0.0-rc.0) react-error-boundary: specifier: ^4.0.13 - version: 4.0.13(react@19.0.0-rc-915b914b3a-20240515) + version: 4.0.13(react@19.0.0-rc.0) strip-ansi: specifier: ^7.1.0 version: 7.1.0 @@ -870,25 +870,25 @@ importers: version: 3.0.0 fbt: specifier: ^1.0.2 - version: 1.0.2(patch_hash=3a6vicbqxcrxvjkaykcxc7x24a)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.2(patch_hash=h3le5xcbsw44ybdi7qpcrzppny)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc.0) framer-motion: specifier: ^11.2.10 - version: 11.2.10(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 11.2.10(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) howler: specifier: ^2.2.4 version: 2.2.4(patch_hash=sjdwshiy6rkrlrxiyiyyay7yxi) react: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515 + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0 react-dom: - specifier: 19.0.0-rc-915b914b3a-20240515 - version: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + specifier: 19.0.0-rc.0 + version: 19.0.0-rc.0(react@19.0.0-rc.0) react-router-dom: specifier: ^6.23.1 - version: 6.23.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 6.23.1(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) use-long-press: specifier: ^3.2.0 - version: 3.2.0(react@19.0.0-rc-915b914b3a-20240515) + version: 3.2.0(react@19.0.0-rc.0) devDependencies: '@types/howler': specifier: ^2.2.11 @@ -2120,13 +2120,13 @@ packages: '@floating-ui/react-dom@2.1.0': resolution: {integrity: sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: '>=16.8.0' '@floating-ui/react@0.26.17': resolution: {integrity: sha512-ESD+jYWwqwVzaIgIhExrArdsCL1rOAzryG/Sjlu8yaD3Mtqi3uVyhbE2V7jD58Mo52qbzKz2eUY/Xgh5I86FCQ==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: '>=16.8.0' '@floating-ui/utils@0.2.2': @@ -2230,7 +2230,7 @@ packages: resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} peerDependencies: '@types/react': '>=16' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 '@mdx-js/rollup@3.0.1': resolution: {integrity: sha512-j0II91OCm4ld+l5QVgXXMQGxVVcAWIQJakYWi1dv5pefDHASJyCYER2TsdH7Alf958GoFSM7ugukWyvDq/UY4A==} @@ -2267,7 +2267,7 @@ packages: '@nkzw/use-relative-time@1.1.0': resolution: {integrity: sha512-ogCL62FvScpRpsZUuaN6Jt0xPGRv62atQUNGyMcX+nZs4H5Fs5K1iA3MbSmkJ1y0n/N0RIRLc3VAp8o46lq2CA==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 '@noble/hashes@1.4.0': resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} @@ -2391,7 +2391,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2404,7 +2404,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2417,7 +2417,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2430,7 +2430,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2442,7 +2442,7 @@ packages: resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2451,7 +2451,7 @@ packages: resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2461,7 +2461,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2473,7 +2473,7 @@ packages: resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2483,7 +2483,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2495,7 +2495,7 @@ packages: resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2505,7 +2505,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2516,13 +2516,13 @@ packages: '@radix-ui/react-icons@1.3.0': resolution: {integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 '@radix-ui/react-id@1.0.1': resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2532,7 +2532,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2545,7 +2545,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2558,7 +2558,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2571,7 +2571,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2584,7 +2584,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2597,7 +2597,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2610,7 +2610,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2623,7 +2623,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2635,7 +2635,7 @@ packages: resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2645,7 +2645,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -2657,7 +2657,7 @@ packages: resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2666,7 +2666,7 @@ packages: resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2675,7 +2675,7 @@ packages: resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2684,7 +2684,7 @@ packages: resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2693,7 +2693,7 @@ packages: resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2702,7 +2702,7 @@ packages: resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2711,7 +2711,7 @@ packages: resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: '@types/react': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -2721,7 +2721,7 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -3196,7 +3196,7 @@ packages: resolution: {integrity: sha512-/i13alp27HaSBbMM6kW0jhy8KqdtOL1T/EcRjFjfhvt+CBtMEg8TD7y28W3oZG0+OBDdCyGGnXgNgrKPYQH40g==} peerDependencies: '@stripe/stripe-js': ^1.44.1 || ^2.0.0 || ^3.0.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 '@stripe/stripe-js@3.5.0': @@ -4848,7 +4848,7 @@ packages: peerDependencies: babel-plugin-fbt: ^1.0.0 babel-plugin-fbt-runtime: ^1.0.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 file-entry-cache@6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} @@ -4922,7 +4922,7 @@ packages: resolution: {integrity: sha512-/gr3PLZUVFCc86a9MqCUboVrALscrdluzTb3yew+2/qKBU8CX6nzs918/SRBRCqaPbx0TZP10CB6yFgK2C5cYQ==} peerDependencies: '@emotion/is-prop-valid': '*' - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^18.0.0 peerDependenciesMeta: '@emotion/is-prop-valid': @@ -6565,17 +6565,17 @@ packages: react-dom@18.3.1: resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 - react-dom@19.0.0-rc-915b914b3a-20240515: - resolution: {integrity: sha512-Njv9p2b7/3ZEk7hcWAzgxbLfYbYJfI01bwI0V+a1WKbhhxwth1o2mQejIsUtnDwkXZ34Oej8rIY5Z93pUfSCdQ==} + react-dom@19.0.0-rc.0: + resolution: {integrity: sha512-MhgN2RMYFUkZekkFbsXg9ycwEGaMBzATpTNvGGvWNA9BZZEkdzIL4pv7iDuZKn48YoGARk8ydu4S+Ehd8Yrc4g==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-error-boundary@4.0.13: resolution: {integrity: sha512-b6PwbdSv8XeOSYvjt8LpgpKrZ0yGdtZokYwkwV2wlcZbxgopHX/hgPl5VgpnoVOWd868n1hktM8Qm4b+02MiLQ==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-fast-compare@3.2.2: resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} @@ -6583,18 +6583,18 @@ packages: react-fps@1.0.6: resolution: {integrity: sha512-+3PAuADQHD0vwSO/q1QWroSwWH+xS16KVeXmhdjQU4qM8YiI86djOt403CD6UfjchLpUTiGoprU4dGA/4BJsFA==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: '>=16.8.1' react-helmet@6.1.0: resolution: {integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-intersection-observer@9.10.3: resolution: {integrity: sha512-9NYfKwPZRovB6QJee7fDg0zz/SyYrqXtn5xTZU0vwLtLVBtfu9aZt1pVmr825REE49VPDZ7Lm5SNHjJBOTZHpA==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: react-dom: @@ -6616,14 +6616,14 @@ packages: react-relay@16.2.0: resolution: {integrity: sha512-f/HtC4whyYmK6/WUeOVakXRoBkV+JEgoSeBHXfIC2U6AuH14NrKXnFicX65LksfzgD1OUfYF6IqGQ4MvO52lTQ==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-remove-scroll-bar@2.3.6: resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -6633,7 +6633,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -6642,32 +6642,32 @@ packages: resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==} engines: {node: '>=14.0.0'} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: '>=16.8' react-router@6.23.1: resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==} engines: {node: '>=14.0.0'} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-side-effect@2.1.2: resolution: {integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-style-singleton@2.2.1: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true - react@19.0.0-rc-915b914b3a-20240515: - resolution: {integrity: sha512-/XKPm2pbDBheMbNUV/uRoL0/RZXg+CCyen3YBjDetySqGZjsRBQKKtK9sWMjQO8J6y8PoC02HzjAP4/OQ2Wmow==} + react@19.0.0-rc.0: + resolution: {integrity: sha512-8nrDCl5uE54FHeKqKrEO0TS+10bT4cxutJGb2okiJc0FHMQ6I3FeItaqly/1nbijlhSO3HmAVyPIexIQQWYAtQ==} engines: {node: '>=0.10.0'} read-cache@1.0.0: @@ -6868,8 +6868,8 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - scheduler@0.25.0-rc-915b914b3a-20240515: - resolution: {integrity: sha512-NeqcaiiRfnXjrrtI8CxyU9FlT9UTdRvpSCy/fnAK+hwwrMjk6BhtCmdziCOkCat5bI3p6uUIwR2NNCK2F/1bZg==} + scheduler@0.25.0-rc.0: + resolution: {integrity: sha512-B3aSqMfoRkucM94MztZD1CyNyf68W9A3dL/TT453G6uNcxMBqGQ+rhFKyxNnWH/mfRHlGBr0tF0F472JCETH4g==} selderee@0.11.0: resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==} @@ -7290,7 +7290,7 @@ packages: partykit: ^0.0.105 partysocket: ^1.0.1 prettier: ^3.3.1 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^18.3.1 sqlite3: ^5.1.7 ws: ^8.17.0 @@ -7597,7 +7597,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -7605,14 +7605,14 @@ packages: use-long-press@3.2.0: resolution: {integrity: sha512-uq5o2qFR1VRjHn8Of7Fl344/AGvgk7C5Mcb4aSb1ZRVp6PkgdXJJLdRrlSTJQVkkQcDuqFbFc3mDX4COg7mRTA==} peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 use-sidecar@1.1.2: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 peerDependenciesMeta: '@types/react': optional: true @@ -7744,7 +7744,7 @@ packages: resolution: {integrity: sha512-+AVO5lFQ91jq2H6AdRR2HtqSfjiXesykH27XN1fo3pNHxCqxqajIUCapcEGTu1VTmHL899dyWvJgLiikxly/8w==} hasBin: true peerDependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-dom: ^18.2.0 vscode-css-languageservice@6.2.14: @@ -9642,18 +9642,18 @@ snapshots: '@floating-ui/core': 1.6.2 '@floating-ui/utils': 0.2.2 - '@floating-ui/react-dom@2.1.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@floating-ui/react-dom@2.1.0(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@floating-ui/dom': 1.6.5 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) - '@floating-ui/react@0.26.17(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@floating-ui/react@0.26.17(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: - '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) '@floating-ui/utils': 0.2.2 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) tabbable: 6.2.0 '@floating-ui/utils@0.2.2': {} @@ -9802,11 +9802,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@types/mdx': 2.0.13 '@types/react': 18.3.3 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 '@mdx-js/rollup@3.0.1(rollup@4.18.0)': dependencies: @@ -9861,9 +9861,9 @@ snapshots: '@nkzw/safe-word-list@2.1.0': {} - '@nkzw/use-relative-time@1.1.0(react@19.0.0-rc-915b914b3a-20240515)': + '@nkzw/use-relative-time@1.1.0(react@19.0.0-rc.0)': dependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 '@noble/hashes@1.4.0': {} @@ -9991,362 +9991,362 @@ snapshots: dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) aria-hidden: 1.2.4 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-icons@1.3.0(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-icons@1.3.0(react@19.0.0-rc.0)': dependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 - '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) aria-hidden: 1.2.4 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) '@radix-ui/rect': 1.0.1 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 '@radix-ui/rect': 1.0.1 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) + react: 19.0.0-rc.0 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@babel/runtime': 7.24.7 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -10359,8 +10359,8 @@ snapshots: dependencies: html-to-text: 9.0.5 js-beautify: 1.15.1 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 18.3.1(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 18.3.1(react@19.0.0-rc.0) react-promise-suspense: 0.3.4 '@remix-run/router@1.16.1(patch_hash=f5klonf5edxua46cqfhk7ivlia)': {} @@ -10937,12 +10937,12 @@ snapshots: '@socket.io/component-emitter@3.1.2': {} - '@stripe/react-stripe-js@2.7.1(@stripe/stripe-js@3.5.0)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@stripe/react-stripe-js@2.7.1(@stripe/stripe-js@3.5.0)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)': dependencies: '@stripe/stripe-js': 3.5.0 prop-types: 15.8.1 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) '@stripe/stripe-js@3.5.0': {} @@ -13034,12 +13034,12 @@ snapshots: transitivePeerDependencies: - encoding - fbt@1.0.2(patch_hash=3a6vicbqxcrxvjkaykcxc7x24a)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc-915b914b3a-20240515): + fbt@1.0.2(patch_hash=h3le5xcbsw44ybdi7qpcrzppny)(babel-plugin-fbt-runtime@1.0.0(babel-plugin-fbt@1.0.0))(babel-plugin-fbt@1.0.0)(react@19.0.0-rc.0): dependencies: babel-plugin-fbt: 1.0.0 babel-plugin-fbt-runtime: 1.0.0(babel-plugin-fbt@1.0.0) invariant: 2.2.4 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 file-entry-cache@6.0.1: dependencies: @@ -13118,12 +13118,12 @@ snapshots: fraction.js@4.3.7: {} - framer-motion@11.2.10(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + framer-motion@11.2.10(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0): dependencies: tslib: 2.6.3 optionalDependencies: - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) fresh@0.5.2: {} @@ -15050,42 +15050,42 @@ snapshots: iconv-lite: 0.4.24 unpipe: 1.0.0 - react-dom@18.3.1(react@19.0.0-rc-915b914b3a-20240515): + react-dom@18.3.1(react@19.0.0-rc.0): dependencies: loose-envify: 1.4.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 scheduler: 0.23.2 - react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515): + react-dom@19.0.0-rc.0(react@19.0.0-rc.0): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 - scheduler: 0.25.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 + scheduler: 0.25.0-rc.0 - react-error-boundary@4.0.13(react@19.0.0-rc-915b914b3a-20240515): + react-error-boundary@4.0.13(react@19.0.0-rc.0): dependencies: '@babel/runtime': 7.24.7 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-fast-compare@3.2.2: {} - react-fps@1.0.6(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + react-fps@1.0.6(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) - react-helmet@6.1.0(react@19.0.0-rc-915b914b3a-20240515): + react-helmet@6.1.0(react@19.0.0-rc.0): dependencies: object-assign: 4.1.1 prop-types: 15.8.1 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 react-fast-compare: 3.2.2 - react-side-effect: 2.1.2(react@19.0.0-rc-915b914b3a-20240515) + react-side-effect: 2.1.2(react@19.0.0-rc.0) - react-intersection-observer@9.10.3(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + react-intersection-observer@9.10.3(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 optionalDependencies: - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) react-is@16.13.1: {} @@ -15097,62 +15097,62 @@ snapshots: react-refresh@0.14.2: {} - react-relay@16.2.0(react@19.0.0-rc-915b914b3a-20240515): + react-relay@16.2.0(react@19.0.0-rc.0): dependencies: '@babel/runtime': 7.24.7 fbjs: 3.0.5 invariant: 2.2.4 nullthrows: 1.1.1 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 relay-runtime: 16.2.0 transitivePeerDependencies: - encoding - react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): + react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@19.0.0-rc.0): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc.0) tslib: 2.6.3 optionalDependencies: '@types/react': 18.3.3 - react-remove-scroll@2.5.5(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): + react-remove-scroll@2.5.5(@types/react@18.3.3)(react@19.0.0-rc.0): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 - react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@19.0.0-rc.0) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc.0) tslib: 2.6.3 - use-callback-ref: 1.3.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) - use-sidecar: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + use-callback-ref: 1.3.2(@types/react@18.3.3)(react@19.0.0-rc.0) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc.0) optionalDependencies: '@types/react': 18.3.3 - react-router-dom@6.23.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + react-router-dom@6.23.1(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0): dependencies: '@remix-run/router': 1.16.1(patch_hash=f5klonf5edxua46cqfhk7ivlia) - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - react-router: 6.23.1(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) + react-router: 6.23.1(react@19.0.0-rc.0) - react-router@6.23.1(react@19.0.0-rc-915b914b3a-20240515): + react-router@6.23.1(react@19.0.0-rc.0): dependencies: '@remix-run/router': 1.16.1(patch_hash=f5klonf5edxua46cqfhk7ivlia) - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 - react-side-effect@2.1.2(react@19.0.0-rc-915b914b3a-20240515): + react-side-effect@2.1.2(react@19.0.0-rc.0): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 - react-style-singleton@2.2.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): + react-style-singleton@2.2.1(@types/react@18.3.3)(react@19.0.0-rc.0): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 tslib: 2.6.3 optionalDependencies: '@types/react': 18.3.3 - react@19.0.0-rc-915b914b3a-20240515: {} + react@19.0.0-rc.0: {} read-cache@1.0.0: dependencies: @@ -15440,7 +15440,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0-rc-915b914b3a-20240515: {} + scheduler@0.25.0-rc.0: {} selderee@0.11.0: dependencies: @@ -15952,11 +15952,11 @@ snapshots: tiny-colors: 2.2.1 when-exit: 2.1.2 - tinybase@5.0.0-beta.22(prettier@4.0.0-alpha.8)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)(ws@8.17.0(bufferutil@4.0.8)): + tinybase@5.0.0-beta.22(prettier@4.0.0-alpha.8)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)(ws@8.17.0(bufferutil@4.0.8)): optionalDependencies: prettier: 4.0.0-alpha.8 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) ws: 8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) tinybench@2.8.0: {} @@ -16227,21 +16227,21 @@ snapshots: dependencies: punycode: 2.3.1 - use-callback-ref@1.3.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): + use-callback-ref@1.3.2(@types/react@18.3.3)(react@19.0.0-rc.0): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 tslib: 2.6.3 optionalDependencies: '@types/react': 18.3.3 - use-long-press@3.2.0(react@19.0.0-rc-915b914b3a-20240515): + use-long-press@3.2.0(react@19.0.0-rc.0): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 - use-sidecar@1.1.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): + use-sidecar@1.1.2(@types/react@18.3.3)(react@19.0.0-rc.0): dependencies: detect-node-es: 1.1.0 - react: 19.0.0-rc-915b914b3a-20240515 + react: 19.0.0-rc.0 tslib: 2.6.3 optionalDependencies: '@types/react': 18.3.3 @@ -16376,21 +16376,21 @@ snapshots: - supports-color - terser - vocs@1.0.0-alpha.52(@types/node@20.14.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)(rollup@4.18.0)(terser@5.31.1)(ts-node@10.9.2(@swc/core@1.5.29)(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5): + vocs@1.0.0-alpha.52(@types/node@20.14.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0)(rollup@4.18.0)(terser@5.31.1)(ts-node@10.9.2(@swc/core@1.5.29)(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5): dependencies: - '@floating-ui/react': 0.26.17(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@floating-ui/react': 0.26.17(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) '@hono/node-server': 1.11.2 - '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@19.0.0-rc.0) '@mdx-js/rollup': 3.0.1(rollup@4.18.0) '@noble/hashes': 1.4.0 '@radix-ui/colors': 3.0.0 - '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-icons': 1.3.0(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-label': 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-navigation-menu': 1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-icons': 1.3.0(react@19.0.0-rc.0) + '@radix-ui/react-label': 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-navigation-menu': 1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) '@shikijs/rehype': 1.6.4 '@shikijs/transformers': 1.6.4 '@shikijs/twoslash': 1.6.4(typescript@5.4.5) @@ -16419,11 +16419,11 @@ snapshots: ora: 7.0.1 p-limit: 5.0.0(patch_hash=biihw7mbueqpe5f27heiokqmmi) postcss: 8.4.38 - react: 19.0.0-rc-915b914b3a-20240515 - react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - react-helmet: 6.1.0(react@19.0.0-rc-915b914b3a-20240515) - react-intersection-observer: 9.10.3(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - react-router-dom: 6.23.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + react: 19.0.0-rc.0 + react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) + react-helmet: 6.1.0(react@19.0.0-rc.0) + react-intersection-observer: 9.10.3(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) + react-router-dom: 6.23.1(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) rehype-autolink-headings: 7.1.0 rehype-class-names: 1.0.14 rehype-slug: 6.0.0 diff --git a/tests/package.json b/tests/package.json index f141bace..208fb24e 100644 --- a/tests/package.json +++ b/tests/package.json @@ -31,8 +31,8 @@ "fbt": "^1.0.2", "jest-image-snapshot": "^6.4.0", "playwright": "^1.44.1", - "react": "19.0.0-rc-915b914b3a-20240515", - "react-dom": "19.0.0-rc-915b914b3a-20240515", + "react": "19.0.0-rc.0", + "react-dom": "19.0.0-rc.0", "react-error-boundary": "^4.0.13", "strip-ansi": "^7.1.0", "term-img": "^6.0.0" diff --git a/ui/package.json b/ui/package.json index 521f83c4..dd99be6a 100644 --- a/ui/package.json +++ b/ui/package.json @@ -19,8 +19,8 @@ "fbt": "^1.0.2", "framer-motion": "^11.2.10", "howler": "^2.2.4", - "react": "19.0.0-rc-915b914b3a-20240515", - "react-dom": "19.0.0-rc-915b914b3a-20240515", + "react": "19.0.0-rc.0", + "react-dom": "19.0.0-rc.0", "react-router-dom": "^6.23.1", "use-long-press": "^3.2.0" },