diff --git a/apps/hub/package.json b/apps/hub/package.json index d5f4377541..a8170dd34c 100644 --- a/apps/hub/package.json +++ b/apps/hub/package.json @@ -46,13 +46,13 @@ "next-safe-action": "^7.9.9", "nodemailer": "^6.9.13", "pako": "^2.1.0", - "react": "19.0.0-rc-66855b96-20241106", - "react-dom": "19.0.0-rc-66855b96-20241106", + "react": "19.0.0", + "react-dom": "19.0.0", "react-hook-form": "^7.53.2", "react-icons": "^5.2.1", "react-loading-skeleton": "^3.4.0", "react-markdown": "^9.0.1", - "react-select": "^5.8.0", + "react-select": "^5.9.0", "remark-breaks": "^4.0.0", "remark-gfm": "^4.0.0", "server-only": "^0.0.1", @@ -67,7 +67,7 @@ "@types/lodash": "^4.14.202", "@types/node": "^20.12.7", "@types/pako": "^2.0.3", - "@types/react": "^18.3.3", + "@types/react": "^19.0.2", "dotenv-cli": "^7.4.2", "esbuild": "^0.20.2", "eslint": "^9.16.0", diff --git a/internal-packages/versioned-components/package.json b/internal-packages/versioned-components/package.json index 89cdbce3cb..b84db4205b 100644 --- a/internal-packages/versioned-components/package.json +++ b/internal-packages/versioned-components/package.json @@ -43,20 +43,20 @@ "@types/json-diff": "^1.0.3", "@types/lodash": "^4.14.202", "@types/node": "^22.10.2", - "@types/react": "^18.3.3", + "@types/react": "^19.0.2", "@typescript-eslint/eslint-plugin": "^8.17.0", "@typescript-eslint/parser": "^8.17.0", "eslint": "^9.16.0", "eslint-plugin-react": "^7.37.2", "eslint-plugin-react-hooks": "^5.1.0", - "react": "^18.2.0", - "react-dom": "^18.3.1", + "react": "^19.0.0", + "react-dom": "^19.0.0", "tailwindcss": "^3.4.14", "typescript": "^5.6.3" }, "peerDependencies": { - "react": "^18", - "react-dom": "^18" + "react": "^18 | ^19", + "react-dom": "^18 | ^19" }, "type": "module", "exports": { diff --git a/packages/components/.storybook/preview.tsx b/packages/components/.storybook/preview.tsx index 4a4c2d265d..d3745acff0 100644 --- a/packages/components/.storybook/preview.tsx +++ b/packages/components/.storybook/preview.tsx @@ -1,7 +1,6 @@ import "../src/styles/full.css"; export const parameters = { - actions: { argTypesRegex: "^on[A-Z].*" }, controls: { matchers: { color: /(background|color)$/i, diff --git a/packages/components/package.json b/packages/components/package.json index 4c481ff8b5..0919955642 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -51,10 +51,10 @@ "@lezer/highlight": "^1.2.1", "@lezer/lr": "^1.4.2", "@quri/configs": "workspace:*", - "@storybook/addon-essentials": "^8.1.6", - "@storybook/addon-links": "^8.1.6", - "@storybook/react": "^8.1.6", - "@storybook/react-vite": "^8.1.6", + "@storybook/addon-essentials": "8.4.7", + "@storybook/addon-links": "8.4.7", + "@storybook/react": "8.4.7", + "@storybook/react-vite": "8.4.7", "@testing-library/jest-dom": "^6.4.2", "@testing-library/react": "^16.0.1", "@testing-library/user-event": "^14.5.2", @@ -63,8 +63,8 @@ "@types/jest": "^29.5.12", "@types/lodash": "^4.14.202", "@types/node": "^20.12.7", - "@types/react": "^18.3.3", - "@types/react-dom": "^18.3.0", + "@types/react": "^19.0.2", + "@types/react-dom": "^19.0.2", "@types/unist": "^3.0.2", "@typescript-eslint/eslint-plugin": "^8.17.0", "@typescript-eslint/parser": "^8.17.0", @@ -79,17 +79,17 @@ "jsdom": "^25.0.1", "postcss": "^8.4.38", "postcss-cli": "^11.0.0", - "react": "19.0.0-rc-66855b96-20241106", - "react-dom": "19.0.0-rc-66855b96-20241106", + "react": "19.0.0", + "react-dom": "19.0.0", "rollup-plugin-node-builtins": "^2.1.2", - "storybook": "^8.1.6", + "storybook": "8.4.7", "tailwindcss": "^3.4.3", "typescript": "5.6.3", "vite": "^5.2.10" }, "peerDependencies": { - "react": "^18", - "react-dom": "^18" + "react": "^18 | ^19", + "react-dom": "^18 | ^19" }, "scripts": { "start": "pnpm dev", diff --git a/packages/components/src/components/SquigglePlayground/ResizableTwoPanelLayout.tsx b/packages/components/src/components/SquigglePlayground/ResizableTwoPanelLayout.tsx index 7f0f266d92..74d4a77ae5 100644 --- a/packages/components/src/components/SquigglePlayground/ResizableTwoPanelLayout.tsx +++ b/packages/components/src/components/SquigglePlayground/ResizableTwoPanelLayout.tsx @@ -84,7 +84,8 @@ export const ResizableTwoPanelLayout: FC = ({
{renderLeft()} ) => JSX.Element; + icon: (props: ComponentProps<"svg">) => ReactElement; iconColor: string; - children?: React.ReactNode; + children?: ReactNode; }> = ({ heading = "Error", backgroundColor, @@ -37,7 +37,7 @@ export const Alert: React.FC<{
{heading}
- {children && React.Children.count(children) ? ( + {children && Children.count(children) ? (
{children}
) : null}
@@ -46,9 +46,9 @@ export const Alert: React.FC<{ ); }; -export const ErrorAlert: React.FC<{ +export const ErrorAlert: FC<{ heading: string; - children?: React.ReactNode; + children?: ReactNode; }> = (props) => ( ); -export const MessageAlert: React.FC<{ +export const MessageAlert: FC<{ heading: string; - children?: React.ReactNode; + children?: ReactNode; }> = (props) => ( ); -export const SuccessAlert: React.FC<{ +export const SuccessAlert: FC<{ heading: string; - children?: React.ReactNode; + children?: ReactNode; }> = (props) => ( = ({ tooltipText, children, }) => { - const withTooltip = (jsx: JSX.Element) => ( + const withTooltip = (jsx: ReactElement) => ( {jsx} diff --git a/packages/components/src/components/ui/Toggle.tsx b/packages/components/src/components/ui/Toggle.tsx index 0c959794ba..05085adbd7 100644 --- a/packages/components/src/components/ui/Toggle.tsx +++ b/packages/components/src/components/ui/Toggle.tsx @@ -1,8 +1,8 @@ import { RefreshIcon } from "@heroicons/react/solid/esm/index.js"; import { clsx } from "clsx"; -import React from "react"; +import { ComponentProps, FC, ReactElement } from "react"; -type IconType = (props: React.ComponentProps<"svg">) => JSX.Element; +type IconType = (props: ComponentProps<"svg">) => ReactElement; type Props = { status: boolean; @@ -12,7 +12,7 @@ type Props = { spinIcon?: boolean; }; -export const Toggle: React.FC = ({ +export const Toggle: FC = ({ status, onChange, texts: [onText, offText], diff --git a/packages/components/src/stories/SquigglePlayground.stories.tsx b/packages/components/src/stories/SquigglePlayground.stories.tsx index 99fcbcf99c..2c3ab1eaa2 100644 --- a/packages/components/src/stories/SquigglePlayground.stories.tsx +++ b/packages/components/src/stories/SquigglePlayground.stories.tsx @@ -187,11 +187,6 @@ export x=1`, export const ManyTypes: Story = { name: "Many types", args: { - linker, - onOpenExport: (sourceId, varName) => { - // eslint-disable-next-line no-console - console.log("Clicked Export with params", sourceId, varName); - }, defaultCode: `import "hub:source1" as s1 import "source2" as s2 @@ -231,6 +226,16 @@ export varScatter = Plot.scatter({ `, height: 800, }, + render: (args) => ( + { + // eslint-disable-next-line no-console + console.log("Clicked Export with params", sourceId, varName); + }} + /> + ), }; export const SpecialList: Story = { diff --git a/packages/components/src/stories/SquiggleViewer.stories.tsx b/packages/components/src/stories/SquiggleViewer.stories.tsx index c54d1818ca..6fa08da891 100644 --- a/packages/components/src/stories/SquiggleViewer.stories.tsx +++ b/packages/components/src/stories/SquiggleViewer.stories.tsx @@ -15,10 +15,12 @@ type Story = StoryObj; const output = await run("[1, { dist: 2 to 3 }]"); -if (!output.result.ok) { - throw new Error("Expected an ok result"); -} - export const Basic: Story = { - args: { value: output.result.value.result }, + render: () => { + if (!output.result.ok) { + throw new Error("Expected an ok result"); + } + + return ; + }, }; diff --git a/packages/components/src/widgets/LambdaWidget/FunctionChart/DistFunctionChart.tsx b/packages/components/src/widgets/LambdaWidget/FunctionChart/DistFunctionChart.tsx index 9b82a27adb..d295064e5b 100644 --- a/packages/components/src/widgets/LambdaWidget/FunctionChart/DistFunctionChart.tsx +++ b/packages/components/src/widgets/LambdaWidget/FunctionChart/DistFunctionChart.tsx @@ -212,7 +212,7 @@ function useDrawDistFunctionChart({ const d3ref = useRef<{ frame: CartesianFrame; xScale: d3.ScaleContinuousNumeric; - }>(); + }>(null); // Convert canvas coordinates to plot coordniates const cursorX: number | undefined = useMemo(() => { diff --git a/packages/squiggle-lang/package.json b/packages/squiggle-lang/package.json index a4ad892d18..876f176bc4 100644 --- a/packages/squiggle-lang/package.json +++ b/packages/squiggle-lang/package.json @@ -41,7 +41,7 @@ "jstat": "^1.9.6", "lodash": "^4.17.21", "open": "^10.1.0", - "react": "^18.2.0", + "react": "^19.0.0", "web-worker": "^1.2.0" }, "devDependencies": { @@ -55,7 +55,7 @@ "@types/jest": "^29.5.12", "@types/lodash": "^4.14.202", "@types/node": "^20.12.7", - "@types/react": "^18.3.3", + "@types/react": "^19.0.2", "@typescript-eslint/eslint-plugin": "^8.17.0", "@typescript-eslint/parser": "^8.17.0", "codecov": "^3.8.3", diff --git a/packages/ui/package.json b/packages/ui/package.json index f6b563711c..867b49bc79 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -46,9 +46,9 @@ "@floating-ui/react": "^0.26.16", "@headlessui/react": "^2.2.0", "clsx": "^2.1.1", - "framer-motion": "^11.0.3", + "framer-motion": "^11.15.0", "react-colorful": "^5.6.1", - "react-select": "^5.8.0", + "react-select": "^5.9.0", "react-textarea-autosize": "8.5.4", "react-use": "^17.5.0" }, @@ -64,8 +64,8 @@ "@storybook/testing-library": "^0.2.2", "@tailwindcss/forms": "^0.5.7", "@types/node": "^20.17.6", - "@types/react": "^18.3.3", - "@types/react-dom": "^18.3.0", + "@types/react": "^19.0.2", + "@types/react-dom": "^19.0.2", "@typescript-eslint/eslint-plugin": "^8.17.0", "@typescript-eslint/parser": "^8.17.0", "autoprefixer": "^10.4.19", @@ -75,8 +75,8 @@ "postcss-cli": "^11.0.0", "prettier": "^3.3.3", "prop-types": "^15.8.1", - "react": "19.0.0-rc-66855b96-20241106", - "react-dom": "19.0.0-rc-66855b96-20241106", + "react": "19.0.0", + "react-dom": "19.0.0", "react-hook-form": "^7.53.2", "rollup-plugin-node-builtins": "^2.1.2", "storybook": "^8.4.7", diff --git a/packages/ui/src/components/Modal.tsx b/packages/ui/src/components/Modal.tsx index fe46e691ae..f85390aea2 100644 --- a/packages/ui/src/components/Modal.tsx +++ b/packages/ui/src/components/Modal.tsx @@ -3,6 +3,7 @@ import { clsx } from "clsx"; import { motion } from "framer-motion"; import { createContext, + FC, forwardRef, PropsWithChildren, useContext, @@ -22,7 +23,7 @@ const ModalContext = createContext({ close: () => undefined, }); -const Overlay: React.FC = () => { +const Overlay: FC = () => { const { close } = useContext(ModalContext); return ( { ); }; -const ModalHeader: React.FC = ({ children }) => { +const ModalHeader: FC = ({ children }) => { const { close } = useContext(ModalContext); return (
@@ -51,17 +52,18 @@ const ModalHeader: React.FC = ({ children }) => { }; // TODO - get rid of forwardRef, support `focus` and `{...hotkeys}` via smart props -const ModalBody = forwardRef( - function ModalBody(props, ref) { - return
; - } -); +const ModalBody = forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(function ModalBody(props, ref) { + return
; +}); -const ModalFooter: React.FC = ({ children }) => ( +const ModalFooter: FC = ({ children }) => (
{children}
); -const ModalWindow: React.FC< +const ModalWindow: FC< PropsWithChildren<{ container?: HTMLElement; }> @@ -141,7 +143,7 @@ const ModalWindow: React.FC< ); }; -type ModalType = React.FC< +type ModalType = FC< PropsWithChildren<{ // if specified, modal will be positioned over the visible part of the container, if it's not too small container?: HTMLElement; diff --git a/packages/ui/src/components/TextTooltip.tsx b/packages/ui/src/components/TextTooltip.tsx index e14927e5a0..d143ec031b 100644 --- a/packages/ui/src/components/TextTooltip.tsx +++ b/packages/ui/src/components/TextTooltip.tsx @@ -12,11 +12,11 @@ import { useRole, } from "@floating-ui/react"; import { AnimatePresence, motion } from "framer-motion"; -import { cloneElement, FC, useState } from "react"; +import { cloneElement, FC, ReactElement, useState } from "react"; type Props = { text: string; - children: JSX.Element; + children: ReactElement; placement?: Placement; offset?: number; }; @@ -46,7 +46,10 @@ export const TextTooltip: FC = ({ <> {cloneElement( children, - getReferenceProps({ ref: refs.setReference, ...children.props }) + getReferenceProps({ + ref: refs.setReference, + ...(children as ReactElement>).props, + }) )} {isOpen && ( diff --git a/packages/ui/src/components/Tooltip.tsx b/packages/ui/src/components/Tooltip.tsx index 6c33448ee0..98b227829d 100644 --- a/packages/ui/src/components/Tooltip.tsx +++ b/packages/ui/src/components/Tooltip.tsx @@ -12,11 +12,11 @@ import { useRole, } from "@floating-ui/react"; import { AnimatePresence, motion } from "framer-motion"; -import { cloneElement, FC, ReactNode, useState } from "react"; +import { cloneElement, FC, ReactElement, ReactNode, useState } from "react"; type Props = { render: () => ReactNode; - children: JSX.Element; + children: ReactElement; placement?: Placement; offset?: number; }; @@ -46,7 +46,10 @@ export const Tooltip: FC = ({ <> {cloneElement( children, - getReferenceProps({ ref: refs.setReference, ...children.props }) + getReferenceProps({ + ref: refs.setReference, + ...(children as ReactElement>).props, + }) )} {isOpen && ( diff --git a/packages/ui/src/forms/common/FormFieldLayout.tsx b/packages/ui/src/forms/common/FormFieldLayout.tsx index 1598d4cc0b..b80bbd2587 100644 --- a/packages/ui/src/forms/common/FormFieldLayout.tsx +++ b/packages/ui/src/forms/common/FormFieldLayout.tsx @@ -1,5 +1,5 @@ import { clsx } from "clsx"; -import { FC, PropsWithChildren } from "react"; +import { FC, PropsWithChildren, ReactElement } from "react"; import { TextTooltip } from "../../components/TextTooltip.js"; @@ -24,7 +24,7 @@ export const FieldLayout: FC> = ({ const OuterTag = standaloneLabel ? "div" : "label"; const InnerTag = standaloneLabel ? "label" : "div"; - let labelEl: JSX.Element | null = null; + let labelEl: ReactElement> | null = null; if (label) { labelEl = ( =16.8.0' @@ -2183,25 +2183,25 @@ packages: '@types/react': optional: true - '@emotion/serialize@1.1.2': - resolution: {integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==} + '@emotion/serialize@1.3.3': + resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==} - '@emotion/sheet@1.2.2': - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + '@emotion/sheet@1.4.0': + resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} - '@emotion/unitless@0.8.1': - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + '@emotion/unitless@0.10.0': + resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==} - '@emotion/use-insertion-effect-with-fallbacks@1.0.1': - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + '@emotion/use-insertion-effect-with-fallbacks@1.2.0': + resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==} peerDependencies: react: '>=16.8.0' - '@emotion/utils@1.2.1': - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + '@emotion/utils@1.4.2': + resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==} - '@emotion/weak-memoize@0.3.1': - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + '@emotion/weak-memoize@0.4.0': + resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} '@esbuild-plugins/node-resolve@0.2.2': resolution: {integrity: sha512-+t5FdX3ATQlb53UFDBRb4nqjYBz492bIrnVWvpQHpzZlu9BQL5HasMZhqc409ygUwOWCXZhrWr6NyZ6T6Y+cxw==} @@ -2815,9 +2815,15 @@ packages: '@floating-ui/core@1.6.0': resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==} + '@floating-ui/core@1.6.8': + resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==} + '@floating-ui/dom@1.6.1': resolution: {integrity: sha512-iA8qE43/H5iGozC3W0YSnVSW42Vh522yyM1gj+BqRwVsTNOyr231PsXDaV04yT39PsO0QL2QpbI/M0ZaLUQgRQ==} + '@floating-ui/dom@1.6.12': + resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==} + '@floating-ui/react-dom@2.1.0': resolution: {integrity: sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==} peerDependencies: @@ -2839,6 +2845,9 @@ packages: '@floating-ui/utils@0.2.1': resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} + '@floating-ui/utils@0.2.8': + resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==} + '@formatjs/intl-localematcher@0.5.7': resolution: {integrity: sha512-GGFtfHGQVFe/niOZp24Kal5b2i36eE2bNL0xi9Sg/yd0TR8aLjcteApZdHmismP5QQax1cMnZM9yWySUUjJteA==} @@ -4240,6 +4249,9 @@ packages: '@storybook/csf@0.1.12': resolution: {integrity: sha512-9/exVhabisyIVL0VxTCxo01Tdm8wefIXKXfltAPTSr8cbLn5JAxGQ6QV3mjdecLGEOucfoVhAKtJfVHxEK1iqw==} + '@storybook/csf@0.1.13': + resolution: {integrity: sha512-7xOOwCLGB3ebM87eemep89MYRFTko+D8qE7EdAAq74lgdqRR5cOUtYWJLjO2dLtP94nqoOdHJo6MdLLKzg412Q==} + '@storybook/global@5.0.0': resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} @@ -4688,12 +4700,22 @@ packages: '@types/react-dom@18.3.0': resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} - '@types/react-transition-group@4.4.6': - resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==} + '@types/react-dom@19.0.2': + resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==} + peerDependencies: + '@types/react': ^19.0.0 + + '@types/react-transition-group@4.4.12': + resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==} + peerDependencies: + '@types/react': '*' '@types/react@18.3.3': resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} + '@types/react@19.0.2': + resolution: {integrity: sha512-USU8ZI/xyKJwFTpjSVIrSeHBVAGagkHQKPNbxeWwql/vDmnTIBgx+TJnhFnj1NXgz8XfprU0egV2dROLGpsBEg==} + '@types/resolve@1.20.6': resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} @@ -6565,12 +6587,15 @@ packages: react-dom: optional: true - framer-motion@11.0.3: - resolution: {integrity: sha512-6x2poQpIWBdbZwLd73w6cKZ1I9IEPIU94C6/Swp1Zt3LJ+sB5bPe1E2wC6EH5hSISXNkMJ4afH7AdwS7MrtkWw==} + framer-motion@11.15.0: + resolution: {integrity: sha512-MLk8IvZntxOMg7lDBLw2qgTHHv664bYoYmnFTmE0Gm/FW67aOJk0WM3ctMcG+Xhcv+vh5uyyXwxvxhSeJzSe+w==} peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + '@emotion/is-prop-valid': '*' + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true react: optional: true react-dom: @@ -7041,6 +7066,10 @@ packages: resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} engines: {node: '>= 0.4'} + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + is-data-view@1.0.1: resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} engines: {node: '>= 0.4'} @@ -8088,6 +8117,12 @@ packages: moo-color@1.0.3: resolution: {integrity: sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==} + motion-dom@11.14.3: + resolution: {integrity: sha512-lW+D2wBy5vxLJi6aCP0xyxTxlTfiu+b+zcpVbGVFUxotwThqhdpPRSmX8xztAgtZMPMeU0WGVn/k1w4I+TbPqA==} + + motion-utils@11.14.3: + resolution: {integrity: sha512-Xg+8xnqIJTpr0L/cidfTTBFkvRw26ZtGGuIhA94J9PQ2p4mEa06Xx7QVYZH0BP+EpMSaDlu+q0I0mmvwADPsaQ==} + mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} @@ -8868,10 +8903,10 @@ packages: peerDependencies: react: ^18.3.1 - react-dom@19.0.0-rc-66855b96-20241106: - resolution: {integrity: sha512-D25vdaytZ1wFIRiwNU98NPQ/upS2P8Co4/oNoa02PzHbh8deWdepjm5qwZM/46OdSiGv4WSWwxP55RO9obqJEQ==} + react-dom@19.0.0: + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} peerDependencies: - react: 19.0.0-rc-66855b96-20241106 + react: ^19.0.0 react-dom@19.0.0-rc-cae764ce-20241025: resolution: {integrity: sha512-e3CVe2+ojMe4dz8E/WsV9bkRj+lZt5ms+rhTFHEqIAHv4/PDdXa7P4uJXNhfik+ZYF4Wg5wCDVP4l7cgaudCpg==} @@ -8963,11 +8998,11 @@ packages: peerDependencies: react: '>= 16.3' - react-select@5.8.0: - resolution: {integrity: sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==} + react-select@5.9.0: + resolution: {integrity: sha512-nwRKGanVHGjdccsnzhFte/PULziueZxGD8LL2WojON78Mvnq7LdAMEtu2frrwld1fr3geixg3iiMBIc/LLAZpw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-style-singleton@2.2.1: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} @@ -9019,8 +9054,8 @@ packages: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} - react@19.0.0-rc-66855b96-20241106: - resolution: {integrity: sha512-klH7xkT71SxRCx4hb1hly5FJB21Hz0ACyxbXYAECEqssUjtJeFUAaI2U1DgJAzkGEnvEm3DkxuBchMC/9K4ipg==} + react@19.0.0: + resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} engines: {node: '>=0.10.0'} react@19.0.0-rc-cae764ce-20241025: @@ -9211,6 +9246,11 @@ packages: resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} engines: {node: '>=10'} + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + resolve@1.22.8: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true @@ -9301,8 +9341,8 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - scheduler@0.25.0-rc-66855b96-20241106: - resolution: {integrity: sha512-HQXp/Mnp/MMRSXMQF7urNFla+gmtXW/Gr1KliuR0iboTit4KvZRY8KYaq5ccCTAOJiUqQh2rE2F3wgUekmgdlA==} + scheduler@0.25.0: + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} scheduler@0.25.0-rc-cae764ce-20241025: resolution: {integrity: sha512-kiDqIcp0nrZ8RW65wMujBEs7eDNfd49hcfjDmscxWIsnDTz9NRQrTAChv/tYRYCUNk7qPM36SQOja2HcRuee0A==} @@ -9960,6 +10000,10 @@ packages: resolution: {integrity: sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA==} engines: {node: '>=16'} + type-fest@4.31.0: + resolution: {integrity: sha512-yCxltHW07Nkhv/1F6wWBr8kz+5BGMfP+RbRSYFnegVb0qV/UMT0G0ElBloPVerqn4M2ZV80Ir1FtCcYv1cT6vQ==} + engines: {node: '>=16'} + type-flag@3.0.0: resolution: {integrity: sha512-3YaYwMseXCAhBB14RXW5cRQfJQlEknS6i4C8fCfeUdS3ihG9EdccdR9kt3vP73ZdeTGmPb4bZtkDn5XMIn1DLA==} @@ -10147,6 +10191,15 @@ packages: '@types/react': optional: true + use-isomorphic-layout-effect@1.2.0: + resolution: {integrity: sha512-q6ayo8DWoPZT0VdG4u3D3uxcgONP3Mevx2i2b0434cwWBoL+aelL1DzkXI6w3PhTZzUeR2kaVlZn70iCiseP6w==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + use-latest@1.2.1: resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: @@ -10871,7 +10924,7 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 debug: 4.4.0(supports-color@5.5.0) lodash.debounce: 4.0.8 - resolve: 1.22.8 + resolve: 1.22.10 transitivePeerDependencies: - supports-color @@ -11753,7 +11806,7 @@ snapshots: defu: 6.1.4 is-platform: 1.0.0 lite-emit: 2.3.0 - type-fest: 4.30.0 + type-fest: 4.31.0 type-flag: 3.0.0 '@clerc/plugin-completions@0.44.0(@clerc/core@0.44.0)': @@ -11878,6 +11931,18 @@ snapshots: dependencies: '@content-collections/core': 0.7.3(typescript@5.6.3) + '@content-collections/mdx@0.2.0(@content-collections/core@0.7.3(typescript@5.6.3))(acorn@8.14.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@content-collections/core': 0.7.3(typescript@5.6.3) + esbuild: 0.21.5 + mdx-bundler: 10.0.3(acorn@8.14.0)(esbuild@0.21.5) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + unified: 11.0.5 + transitivePeerDependencies: + - acorn + - supports-color + '@content-collections/mdx@0.2.0(@content-collections/core@0.7.3(typescript@5.6.3))(acorn@8.14.0)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@content-collections/core': 0.7.3(typescript@5.6.3) @@ -11905,13 +11970,13 @@ snapshots: tslib: 2.8.1 optional: true - '@emotion/babel-plugin@11.11.0': + '@emotion/babel-plugin@11.13.5': dependencies: '@babel/helper-module-imports': 7.25.9 '@babel/runtime': 7.26.0 - '@emotion/hash': 0.9.1 - '@emotion/memoize': 0.8.1 - '@emotion/serialize': 1.1.2 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/serialize': 1.3.3 babel-plugin-macros: 3.1.0 convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 @@ -11921,15 +11986,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@emotion/cache@11.11.0': + '@emotion/cache@11.14.0': dependencies: - '@emotion/memoize': 0.8.1 - '@emotion/sheet': 1.2.2 - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 + '@emotion/memoize': 0.9.0 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 stylis: 4.2.0 - '@emotion/hash@0.9.1': {} + '@emotion/hash@0.9.2': {} '@emotion/is-prop-valid@0.8.8': dependencies: @@ -11939,63 +12004,43 @@ snapshots: '@emotion/memoize@0.7.4': optional: true - '@emotion/memoize@0.8.1': {} + '@emotion/memoize@0.9.0': {} - '@emotion/react@11.11.0(@types/react@18.3.3)(react@18.3.1)': + '@emotion/react@11.14.0(@types/react@19.0.2)(react@19.0.0)': dependencies: '@babel/runtime': 7.26.0 - '@emotion/babel-plugin': 11.11.0 - '@emotion/cache': 11.11.0 - '@emotion/serialize': 1.1.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 + '@emotion/babel-plugin': 11.13.5 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.0.0) + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 hoist-non-react-statics: 3.3.2 - react: 18.3.1 + react: 19.0.0 optionalDependencies: - '@types/react': 18.3.3 + '@types/react': 19.0.2 transitivePeerDependencies: - supports-color - '@emotion/react@11.11.0(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106)': + '@emotion/serialize@1.3.3': dependencies: - '@babel/runtime': 7.26.0 - '@emotion/babel-plugin': 11.11.0 - '@emotion/cache': 11.11.0 - '@emotion/serialize': 1.1.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@19.0.0-rc-66855b96-20241106) - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 - hoist-non-react-statics: 3.3.2 - react: 19.0.0-rc-66855b96-20241106 - optionalDependencies: - '@types/react': 18.3.3 - transitivePeerDependencies: - - supports-color - - '@emotion/serialize@1.1.2': - dependencies: - '@emotion/hash': 0.9.1 - '@emotion/memoize': 0.8.1 - '@emotion/unitless': 0.8.1 - '@emotion/utils': 1.2.1 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/unitless': 0.10.0 + '@emotion/utils': 1.4.2 csstype: 3.1.3 - '@emotion/sheet@1.2.2': {} + '@emotion/sheet@1.4.0': {} - '@emotion/unitless@0.8.1': {} + '@emotion/unitless@0.10.0': {} - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': + '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.0.0)': dependencies: - react: 18.3.1 + react: 19.0.0 - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@19.0.0-rc-66855b96-20241106)': - dependencies: - react: 19.0.0-rc-66855b96-20241106 - - '@emotion/utils@1.2.1': {} + '@emotion/utils@1.4.2': {} - '@emotion/weak-memoize@0.3.1': {} + '@emotion/weak-memoize@0.4.0': {} '@esbuild-plugins/node-resolve@0.2.2(esbuild@0.21.5)': dependencies: @@ -12003,7 +12048,7 @@ snapshots: debug: 4.4.0(supports-color@5.5.0) esbuild: 0.21.5 escape-string-regexp: 4.0.0 - resolve: 1.22.8 + resolve: 1.22.10 transitivePeerDependencies: - supports-color @@ -12340,22 +12385,25 @@ snapshots: dependencies: '@floating-ui/utils': 0.2.1 + '@floating-ui/core@1.6.8': + dependencies: + '@floating-ui/utils': 0.2.8 + '@floating-ui/dom@1.6.1': dependencies: '@floating-ui/core': 1.6.0 '@floating-ui/utils': 0.2.1 - '@floating-ui/react-dom@2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@floating-ui/dom@1.6.12': dependencies: - '@floating-ui/dom': 1.6.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@floating-ui/core': 1.6.8 + '@floating-ui/utils': 0.2.8 - '@floating-ui/react-dom@2.1.0(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@floating-ui/react-dom@2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@floating-ui/dom': 1.6.1 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@floating-ui/react-dom@2.1.0(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: @@ -12363,75 +12411,58 @@ snapshots: react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) - '@floating-ui/react@0.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@floating-ui/react@0.24.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react-dom': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) aria-hidden: 1.2.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tabbable: 6.2.0 - - '@floating-ui/react@0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@floating-ui/react-dom': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@floating-ui/utils': 0.2.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) tabbable: 6.2.0 - '@floating-ui/react@0.26.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@floating-ui/react@0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) + '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@floating-ui/utils': 0.2.1 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) tabbable: 6.2.0 '@floating-ui/utils@0.2.1': {} + '@floating-ui/utils@0.2.8': {} + '@formatjs/intl-localematcher@0.5.7': dependencies: tslib: 2.8.1 - '@fumadocs/content-collections@1.1.5(@content-collections/core@0.7.3(typescript@5.6.3))(@content-collections/mdx@0.2.0(@content-collections/core@0.7.3(typescript@5.6.3))(acorn@8.14.0)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025))(fumadocs-core@14.0.2(@types/react@18.3.3))': + '@fumadocs/content-collections@1.1.5(@content-collections/core@0.7.3(typescript@5.6.3))(@content-collections/mdx@0.2.0(@content-collections/core@0.7.3(typescript@5.6.3))(acorn@8.14.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(fumadocs-core@14.0.2(@types/react@18.3.3))': dependencies: '@content-collections/core': 0.7.3(typescript@5.6.3) - '@content-collections/mdx': 0.2.0(@content-collections/core@0.7.3(typescript@5.6.3))(acorn@8.14.0)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@content-collections/mdx': 0.2.0(@content-collections/core@0.7.3(typescript@5.6.3))(acorn@8.14.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) fumadocs-core: 14.0.2(@types/react@18.3.3) - '@headlessui/react@2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.17.1(react@18.3.1) - '@react-aria/interactions': 3.21.3(react@18.3.1) - '@tanstack/react-virtual': 3.10.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@headlessui/react@2.2.0(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': - dependencies: - '@floating-ui/react': 0.26.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - '@react-aria/focus': 3.17.1(react@19.0.0-rc-66855b96-20241106) - '@react-aria/interactions': 3.21.3(react@19.0.0-rc-66855b96-20241106) - '@tanstack/react-virtual': 3.10.8(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - - '@heroicons/react@1.0.6(react@18.3.1)': + '@fumadocs/content-collections@1.1.5(@content-collections/core@0.7.3(typescript@5.6.3))(@content-collections/mdx@0.2.0(@content-collections/core@0.7.3(typescript@5.6.3))(acorn@8.14.0)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025))(fumadocs-core@14.0.2(@types/react@18.3.3))': dependencies: - react: 18.3.1 + '@content-collections/core': 0.7.3(typescript@5.6.3) + '@content-collections/mdx': 0.2.0(@content-collections/core@0.7.3(typescript@5.6.3))(acorn@8.14.0)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + fumadocs-core: 14.0.2(@types/react@18.3.3) - '@heroicons/react@1.0.6(react@19.0.0-rc-66855b96-20241106)': + '@headlessui/react@2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - react: 19.0.0-rc-66855b96-20241106 + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/focus': 3.17.1(react@19.0.0) + '@react-aria/interactions': 3.21.3(react@19.0.0) + '@tanstack/react-virtual': 3.10.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@hookform/resolvers@3.3.4(react-hook-form@7.53.2(react@18.3.1))': + '@heroicons/react@1.0.6(react@19.0.0)': dependencies: - react-hook-form: 7.53.2(react@18.3.1) + react: 19.0.0 - '@hookform/resolvers@3.3.4(react-hook-form@7.53.2(react@19.0.0-rc-66855b96-20241106))': + '@hookform/resolvers@3.3.4(react-hook-form@7.53.2(react@19.0.0))': dependencies: - react-hook-form: 7.53.2(react@19.0.0-rc-66855b96-20241106) + react-hook-form: 7.53.2(react@19.0.0) '@humanfs/core@0.19.1': {} @@ -12897,10 +12928,10 @@ snapshots: - acorn - supports-color - '@mdx-js/react@3.1.0(@types/react@18.3.3)(react@18.3.1)': + '@mdx-js/react@3.1.0(@types/react@19.0.2)(react@18.3.1)': dependencies: '@types/mdx': 2.0.13 - '@types/react': 18.3.3 + '@types/react': 19.0.2 react: 18.3.1 '@mdx-js/typescript-plugin@0.0.6': @@ -13129,9 +13160,9 @@ snapshots: dependencies: '@prisma/debug': 5.22.0 - '@quri/prettier-plugin-squiggle@0.10.0(@types/react@18.3.3)': + '@quri/prettier-plugin-squiggle@0.10.0(@types/react@19.0.2)': dependencies: - '@quri/squiggle-lang': 0.10.0(@types/react@18.3.3) + '@quri/squiggle-lang': 0.10.0(@types/react@19.0.2) prettier: 3.3.3 transitivePeerDependencies: - '@types/react' @@ -13176,7 +13207,7 @@ snapshots: '@quri/serializer@1.0.0': {} - '@quri/squiggle-components@0.10.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': + '@quri/squiggle-components@0.10.0(@emotion/is-prop-valid@0.8.8)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': dependencies: '@codemirror/autocomplete': 6.16.2(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.3) '@codemirror/commands': 6.5.0 @@ -13187,32 +13218,33 @@ snapshots: '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.26.3 '@dagrejs/dagre': 1.1.4 - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@heroicons/react': 1.0.6(react@18.3.1) - '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@18.3.1)) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@heroicons/react': 1.0.6(react@19.0.0) + '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@19.0.0)) '@lezer/common': 1.2.3 - '@quri/prettier-plugin-squiggle': 0.10.0(@types/react@18.3.3) - '@quri/squiggle-lang': 0.10.0(@types/react@18.3.3) + '@quri/prettier-plugin-squiggle': 0.10.0(@types/react@19.0.2) + '@quri/squiggle-lang': 0.10.0(@types/react@19.0.2) '@quri/squiggle-textmate-grammar': 0.10.0 - '@quri/ui': 0.2.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react-hook-form@7.53.2(react@18.3.1))(react@18.3.1) + '@quri/ui': 0.2.3(@emotion/is-prop-valid@0.8.8)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react-hook-form@7.53.2(react@19.0.0))(react@19.0.0) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) clsx: 2.1.1 codemirror: 6.0.1(@lezer/common@1.2.3) d3: 7.9.0 lodash: 4.17.21 prettier: 3.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-markdown: 9.0.1(@types/react@18.3.3)(react@18.3.1) - reactflow: 11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-draggable: 4.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-markdown: 9.0.1(@types/react@19.0.2)(react@19.0.0) + reactflow: 11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) remark-gfm: 4.0.0 shikiji: 0.10.2 unist-util-visit: 5.0.0 unist-util-visit-parents: 6.0.1 zod: 3.23.8 transitivePeerDependencies: + - '@emotion/is-prop-valid' - '@types/react' - bufferutil - immer @@ -13221,7 +13253,7 @@ snapshots: - tailwindcss - utf-8-validate - '@quri/squiggle-components@0.8.5(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': + '@quri/squiggle-components@0.8.5(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': dependencies: '@codemirror/autocomplete': 6.16.2(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.3) '@codemirror/commands': 6.5.0 @@ -13231,28 +13263,28 @@ snapshots: '@codemirror/state': 6.4.1 '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.26.3 - '@floating-ui/react': 0.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@heroicons/react': 1.0.6(react@18.3.1) - '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@18.3.1)) + '@floating-ui/react': 0.24.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@heroicons/react': 1.0.6(react@19.0.0) + '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@19.0.0)) '@lezer/common': 1.2.3 '@quri/prettier-plugin-squiggle': 0.8.5 '@quri/squiggle-lang': 0.8.5 - '@quri/ui': 0.1.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-hook/size': 2.1.2(react@18.3.1) + '@quri/ui': 0.1.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-hook/size': 2.1.2(react@19.0.0) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) '@types/d3': 7.4.3 clsx: 2.1.1 codemirror: 6.0.1(@lezer/common@1.2.3) d3: 7.9.0 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) lodash: 4.17.21 prettier: 3.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 4.0.11(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-markdown: 8.0.7(@types/react@18.3.3)(react@18.3.1) - react-resizable: 3.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 4.0.11(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-markdown: 8.0.7(@types/react@19.0.2)(react@19.0.0) + react-resizable: 3.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) vscode-uri: 3.0.8 zod: 3.23.8 transitivePeerDependencies: @@ -13260,7 +13292,7 @@ snapshots: - supports-color - tailwindcss - '@quri/squiggle-components@0.8.6(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': + '@quri/squiggle-components@0.8.6(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': dependencies: '@codemirror/autocomplete': 6.16.2(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.3) '@codemirror/commands': 6.5.0 @@ -13270,29 +13302,29 @@ snapshots: '@codemirror/state': 6.4.1 '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.26.3 - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@heroicons/react': 1.0.6(react@18.3.1) - '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@18.3.1)) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@heroicons/react': 1.0.6(react@19.0.0) + '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@19.0.0)) '@lezer/common': 1.2.3 '@quri/prettier-plugin-squiggle': 0.8.6 '@quri/squiggle-lang': 0.8.6 - '@quri/ui': 0.1.5(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-hook/size': 2.1.2(react@18.3.1) + '@quri/ui': 0.1.5(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-hook/size': 2.1.2(react@19.0.0) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) '@types/d3': 7.4.3 clsx: 2.1.1 codemirror: 6.0.1(@lezer/common@1.2.3) d3: 7.9.0 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) lodash: 4.17.21 mermaid: 10.9.0 prettier: 3.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 4.0.11(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-markdown: 9.0.1(@types/react@18.3.3)(react@18.3.1) - react-resizable: 3.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 4.0.11(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-markdown: 9.0.1(@types/react@19.0.2)(react@19.0.0) + react-resizable: 3.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) vscode-uri: 3.0.8 zod: 3.23.8 transitivePeerDependencies: @@ -13300,7 +13332,7 @@ snapshots: - supports-color - tailwindcss - '@quri/squiggle-components@0.9.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': + '@quri/squiggle-components@0.9.0(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': dependencies: '@codemirror/autocomplete': 6.16.2(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.3) '@codemirror/commands': 6.5.0 @@ -13310,35 +13342,35 @@ snapshots: '@codemirror/state': 6.4.1 '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.26.3 - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@heroicons/react': 1.0.6(react@18.3.1) - '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@18.3.1)) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@heroicons/react': 1.0.6(react@19.0.0) + '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@19.0.0)) '@lezer/common': 1.2.3 '@quri/prettier-plugin-squiggle': 0.9.0 '@quri/squiggle-lang': 0.9.0 - '@quri/ui': 0.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-hook/size': 2.1.2(react@18.3.1) + '@quri/ui': 0.2.0(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-hook/size': 2.1.2(react@19.0.0) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) '@types/d3': 7.4.3 clsx: 2.1.1 codemirror: 6.0.1(@lezer/common@1.2.3) d3: 7.9.0 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) lodash: 4.17.21 mermaid: 10.9.0 prettier: 3.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-markdown: 9.0.1(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-draggable: 4.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-markdown: 9.0.1(@types/react@19.0.2)(react@19.0.0) zod: 3.23.8 transitivePeerDependencies: - '@types/react' - supports-color - tailwindcss - '@quri/squiggle-components@0.9.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': + '@quri/squiggle-components@0.9.2(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': dependencies: '@codemirror/autocomplete': 6.16.2(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.3) '@codemirror/commands': 6.5.0 @@ -13348,28 +13380,28 @@ snapshots: '@codemirror/state': 6.4.1 '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.26.3 - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@heroicons/react': 1.0.6(react@18.3.1) - '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@18.3.1)) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@heroicons/react': 1.0.6(react@19.0.0) + '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@19.0.0)) '@lezer/common': 1.2.3 '@quri/prettier-plugin-squiggle': 0.9.2 '@quri/squiggle-lang': 0.9.2 '@quri/squiggle-textmate-grammar': 0.9.2 - '@quri/ui': 0.2.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-hook/size': 2.1.2(react@18.3.1) + '@quri/ui': 0.2.1(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-hook/size': 2.1.2(react@19.0.0) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) clsx: 2.1.1 codemirror: 6.0.1(@lezer/common@1.2.3) d3: 7.9.0 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) lodash: 4.17.21 mermaid: 10.9.0 prettier: 3.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-markdown: 9.0.1(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-draggable: 4.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-markdown: 9.0.1(@types/react@19.0.2)(react@19.0.0) remark-gfm: 4.0.0 shikiji: 0.9.15 unist-util-visit: 5.0.0 @@ -13380,7 +13412,7 @@ snapshots: - supports-color - tailwindcss - '@quri/squiggle-components@0.9.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': + '@quri/squiggle-components@0.9.3(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': dependencies: '@codemirror/autocomplete': 6.16.2(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.3) '@codemirror/commands': 6.5.0 @@ -13390,28 +13422,28 @@ snapshots: '@codemirror/state': 6.4.1 '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.26.3 - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@heroicons/react': 1.0.6(react@18.3.1) - '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@18.3.1)) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@heroicons/react': 1.0.6(react@19.0.0) + '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@19.0.0)) '@lezer/common': 1.2.3 '@quri/prettier-plugin-squiggle': 0.9.3 '@quri/squiggle-lang': 0.9.3 '@quri/squiggle-textmate-grammar': 0.9.3 - '@quri/ui': 0.2.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-hook/size': 2.1.2(react@18.3.1) + '@quri/ui': 0.2.1(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-hook/size': 2.1.2(react@19.0.0) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) clsx: 2.1.1 codemirror: 6.0.1(@lezer/common@1.2.3) d3: 7.9.0 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) lodash: 4.17.21 mermaid: 10.9.0 prettier: 3.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-markdown: 9.0.1(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-draggable: 4.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-markdown: 9.0.1(@types/react@19.0.2)(react@19.0.0) remark-gfm: 4.0.0 shikiji: 0.10.2 unist-util-visit: 5.0.0 @@ -13422,7 +13454,7 @@ snapshots: - supports-color - tailwindcss - '@quri/squiggle-components@0.9.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': + '@quri/squiggle-components@0.9.4(@emotion/is-prop-valid@0.8.8)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': dependencies: '@codemirror/autocomplete': 6.16.2(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.3) '@codemirror/commands': 6.5.0 @@ -13432,14 +13464,14 @@ snapshots: '@codemirror/state': 6.4.1 '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.26.3 - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@heroicons/react': 1.0.6(react@18.3.1) - '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@18.3.1)) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@heroicons/react': 1.0.6(react@19.0.0) + '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@19.0.0)) '@lezer/common': 1.2.3 '@quri/prettier-plugin-squiggle': 0.9.4 '@quri/squiggle-lang': 0.9.4 '@quri/squiggle-textmate-grammar': 0.9.4 - '@quri/ui': 0.2.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@quri/ui': 0.2.2(@emotion/is-prop-valid@0.8.8)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) clsx: 2.1.1 codemirror: 6.0.1(@lezer/common@1.2.3) @@ -13447,22 +13479,23 @@ snapshots: lodash: 4.17.21 mermaid: 10.9.0 prettier: 3.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-markdown: 9.0.1(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-draggable: 4.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-markdown: 9.0.1(@types/react@19.0.2)(react@19.0.0) remark-gfm: 4.0.0 shikiji: 0.10.2 unist-util-visit: 5.0.0 unist-util-visit-parents: 6.0.1 zod: 3.23.8 transitivePeerDependencies: + - '@emotion/is-prop-valid' - '@types/react' - supports-color - tailwindcss - '@quri/squiggle-components@0.9.5(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': + '@quri/squiggle-components@0.9.5(@emotion/is-prop-valid@0.8.8)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)))': dependencies: '@codemirror/autocomplete': 6.16.2(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.3) '@codemirror/commands': 6.5.0 @@ -13472,14 +13505,14 @@ snapshots: '@codemirror/state': 6.4.1 '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.26.3 - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@heroicons/react': 1.0.6(react@18.3.1) - '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@18.3.1)) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@heroicons/react': 1.0.6(react@19.0.0) + '@hookform/resolvers': 3.3.4(react-hook-form@7.53.2(react@19.0.0)) '@lezer/common': 1.2.3 '@quri/prettier-plugin-squiggle': 0.9.5 '@quri/squiggle-lang': 0.9.5 '@quri/squiggle-textmate-grammar': 0.9.5 - '@quri/ui': 0.2.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@quri/ui': 0.2.2(@emotion/is-prop-valid@0.8.8)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) clsx: 2.1.1 codemirror: 6.0.1(@lezer/common@1.2.3) @@ -13487,22 +13520,23 @@ snapshots: lodash: 4.17.21 mermaid: 10.9.0 prettier: 3.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-markdown: 9.0.1(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-draggable: 4.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-markdown: 9.0.1(@types/react@19.0.2)(react@19.0.0) remark-gfm: 4.0.0 shikiji: 0.10.2 unist-util-visit: 5.0.0 unist-util-visit-parents: 6.0.1 zod: 3.23.8 transitivePeerDependencies: + - '@emotion/is-prop-valid' - '@types/react' - supports-color - tailwindcss - '@quri/squiggle-lang@0.10.0(@types/react@18.3.3)': + '@quri/squiggle-lang@0.10.0(@types/react@19.0.2)': dependencies: '@commander-js/extra-typings': 12.1.0(commander@12.1.0) '@quri/serializer': 1.0.0 @@ -13510,7 +13544,7 @@ snapshots: d3-format: 3.1.0 d3-time-format: 4.1.0 immutable: 4.3.6 - ink: 5.0.1(@types/react@18.3.3)(react@18.3.1) + ink: 5.0.1(@types/react@19.0.2)(react@18.3.1) jstat: 1.9.6 lodash: 4.17.21 open: 10.1.0 @@ -13597,105 +13631,107 @@ snapshots: '@quri/squiggle-textmate-grammar@0.9.5': {} - '@quri/ui@0.1.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@quri/ui@0.1.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react': 0.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@headlessui/react': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react': 0.24.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@headlessui/react': 2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) clsx: 2.1.1 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-dom: 18.3.1(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-select: 5.8.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-textarea-autosize: 8.5.2(@types/react@18.3.3)(react@18.3.1) - react-use: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-colorful: 5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-dom: 19.0.0(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-select: 5.9.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-textarea-autosize: 8.5.2(@types/react@19.0.2)(react@19.0.0) + react-use: 17.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - '@types/react' - supports-color - '@quri/ui@0.1.5(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@quri/ui@0.1.5(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@headlessui/react': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@headlessui/react': 2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) clsx: 2.1.1 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-dom: 18.3.1(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-select: 5.8.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.3.1) - react-use: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-colorful: 5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-dom: 19.0.0(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-select: 5.9.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-textarea-autosize: 8.5.3(@types/react@19.0.2)(react@19.0.0) + react-use: 17.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - '@types/react' - supports-color - '@quri/ui@0.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@quri/ui@0.2.0(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@headlessui/react': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@headlessui/react': 2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) clsx: 2.1.1 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-dom: 18.3.1(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-select: 5.8.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.3.1) - react-use: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-colorful: 5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-dom: 19.0.0(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-select: 5.9.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-textarea-autosize: 8.5.3(@types/react@19.0.2)(react@19.0.0) + react-use: 17.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - '@types/react' - supports-color - '@quri/ui@0.2.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@quri/ui@0.2.1(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@headlessui/react': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@headlessui/react': 2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) clsx: 2.1.1 - framer-motion: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-dom: 18.3.1(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-select: 5.8.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.3.1) - react-use: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-colorful: 5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-dom: 19.0.0(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-select: 5.9.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-textarea-autosize: 8.5.3(@types/react@19.0.2)(react@19.0.0) + react-use: 17.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - '@types/react' - supports-color - '@quri/ui@0.2.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@quri/ui@0.2.2(@emotion/is-prop-valid@0.8.8)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@headlessui/react': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@headlessui/react': 2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) clsx: 2.1.1 - framer-motion: 11.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-dom: 18.3.1(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-select: 5.8.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.3.1) - react-use: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.15.0(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-colorful: 5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-dom: 19.0.0(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-select: 5.9.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-textarea-autosize: 8.5.3(@types/react@19.0.2)(react@19.0.0) + react-use: 17.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: + - '@emotion/is-prop-valid' - '@types/react' - supports-color - '@quri/ui@0.2.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react-hook-form@7.53.2(react@18.3.1))(react@18.3.1)': + '@quri/ui@0.2.3(@emotion/is-prop-valid@0.8.8)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react-hook-form@7.53.2(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react': 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@headlessui/react': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react': 0.26.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@headlessui/react': 2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) clsx: 2.1.1 - framer-motion: 11.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-dom: 18.3.1(react@18.3.1) - react-hook-form: 7.53.2(react@18.3.1) - react-select: 5.8.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-textarea-autosize: 8.5.4(@types/react@18.3.3)(react@18.3.1) - react-use: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.15.0(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-colorful: 5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-dom: 19.0.0(react@19.0.0) + react-hook-form: 7.53.2(react@19.0.0) + react-select: 5.9.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-textarea-autosize: 8.5.4(@types/react@19.0.2)(react@19.0.0) + react-use: 17.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: + - '@emotion/is-prop-valid' - '@types/react' - supports-color @@ -13703,59 +13739,59 @@ snapshots: '@radix-ui/primitive@1.1.0': {} - '@radix-ui/react-accordion@1.2.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-accordion@1.2.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-collapsible': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-collapsible': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-collection': 1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-arrow@1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-collapsible@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-collapsible@1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/primitive': 1.1.0 '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-collection@1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025)': dependencies: @@ -13775,18 +13811,18 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-dialog@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-dialog@1.1.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/primitive': 1.1.0 '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-portal': 1.1.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) aria-hidden: 1.2.3 @@ -13795,7 +13831,7 @@ snapshots: react-remove-scroll: 2.6.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) '@radix-ui/react-direction@1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025)': dependencies: @@ -13803,18 +13839,18 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/primitive': 1.1.0 '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025)': dependencies: @@ -13822,16 +13858,16 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) '@radix-ui/react-id@1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025)': dependencies: @@ -13840,41 +13876,41 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-navigation-menu@1.2.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-navigation-menu@1.2.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-collection': 1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-popover@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-popover@1.1.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/primitive': 1.1.0 '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-popper': 1.2.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-portal': 1.1.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) aria-hidden: 1.2.3 @@ -13883,15 +13919,15 @@ snapshots: react-remove-scroll: 2.6.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-popper@1.2.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-arrow': 1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) @@ -13901,19 +13937,19 @@ snapshots: react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-portal@1.1.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-presence@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-presence@1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) @@ -13921,50 +13957,50 @@ snapshots: react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-primitive@2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-collection': 1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) - '@radix-ui/react-scroll-area@1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-scroll-area@1.2.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/number': 1.1.0 '@radix-ui/primitive': 1.1.0 '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-context': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) '@radix-ui/react-slot@1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025)': dependencies: @@ -13973,21 +14009,21 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-tabs@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-tabs@1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: '@radix-ui/primitive': 1.1.0 '@radix-ui/react-context': 1.1.1(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025)': dependencies: @@ -14035,180 +14071,101 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': + '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react-dom': 19.0.2(@types/react@18.3.3) '@radix-ui/rect@1.1.0': {} - '@react-aria/focus@3.17.1(react@18.3.1)': + '@react-aria/focus@3.17.1(react@19.0.0)': dependencies: - '@react-aria/interactions': 3.21.3(react@18.3.1) - '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-types/shared': 3.23.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@19.0.0) + '@react-aria/utils': 3.24.1(react@19.0.0) + '@react-types/shared': 3.23.1(react@19.0.0) '@swc/helpers': 0.5.15 clsx: 2.1.1 - react: 18.3.1 + react: 19.0.0 - '@react-aria/focus@3.17.1(react@19.0.0-rc-66855b96-20241106)': + '@react-aria/interactions@3.21.3(react@19.0.0)': dependencies: - '@react-aria/interactions': 3.21.3(react@19.0.0-rc-66855b96-20241106) - '@react-aria/utils': 3.24.1(react@19.0.0-rc-66855b96-20241106) - '@react-types/shared': 3.23.1(react@19.0.0-rc-66855b96-20241106) + '@react-aria/ssr': 3.9.4(react@19.0.0) + '@react-aria/utils': 3.24.1(react@19.0.0) + '@react-types/shared': 3.23.1(react@19.0.0) '@swc/helpers': 0.5.15 - clsx: 2.1.1 - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 - '@react-aria/interactions@3.21.3(react@18.3.1)': + '@react-aria/ssr@3.9.4(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.4(react@18.3.1) - '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.15 - react: 18.3.1 - - '@react-aria/interactions@3.21.3(react@19.0.0-rc-66855b96-20241106)': - dependencies: - '@react-aria/ssr': 3.9.4(react@19.0.0-rc-66855b96-20241106) - '@react-aria/utils': 3.24.1(react@19.0.0-rc-66855b96-20241106) - '@react-types/shared': 3.23.1(react@19.0.0-rc-66855b96-20241106) - '@swc/helpers': 0.5.15 - react: 19.0.0-rc-66855b96-20241106 - - '@react-aria/ssr@3.9.4(react@18.3.1)': - dependencies: - '@swc/helpers': 0.5.15 - react: 18.3.1 - - '@react-aria/ssr@3.9.4(react@19.0.0-rc-66855b96-20241106)': - dependencies: - '@swc/helpers': 0.5.15 - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 - '@react-aria/utils@3.24.1(react@18.3.1)': + '@react-aria/utils@3.24.1(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.4(react@18.3.1) - '@react-stately/utils': 3.10.1(react@18.3.1) - '@react-types/shared': 3.23.1(react@18.3.1) + '@react-aria/ssr': 3.9.4(react@19.0.0) + '@react-stately/utils': 3.10.1(react@19.0.0) + '@react-types/shared': 3.23.1(react@19.0.0) '@swc/helpers': 0.5.15 clsx: 2.1.1 - react: 18.3.1 + react: 19.0.0 - '@react-aria/utils@3.24.1(react@19.0.0-rc-66855b96-20241106)': + '@react-hook/latest@1.0.3(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.4(react@19.0.0-rc-66855b96-20241106) - '@react-stately/utils': 3.10.1(react@19.0.0-rc-66855b96-20241106) - '@react-types/shared': 3.23.1(react@19.0.0-rc-66855b96-20241106) - '@swc/helpers': 0.5.15 - clsx: 2.1.1 - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 - '@react-hook/latest@1.0.3(react@18.3.1)': + '@react-hook/passive-layout-effect@1.2.1(react@19.0.0)': dependencies: - react: 18.3.1 - - '@react-hook/passive-layout-effect@1.2.1(react@18.3.1)': - dependencies: - react: 18.3.1 + react: 19.0.0 - '@react-hook/resize-observer@1.2.6(react@18.3.1)': + '@react-hook/resize-observer@1.2.6(react@19.0.0)': dependencies: '@juggle/resize-observer': 3.4.0 - '@react-hook/latest': 1.0.3(react@18.3.1) - '@react-hook/passive-layout-effect': 1.2.1(react@18.3.1) - react: 18.3.1 + '@react-hook/latest': 1.0.3(react@19.0.0) + '@react-hook/passive-layout-effect': 1.2.1(react@19.0.0) + react: 19.0.0 - '@react-hook/size@2.1.2(react@18.3.1)': + '@react-hook/size@2.1.2(react@19.0.0)': dependencies: - '@react-hook/passive-layout-effect': 1.2.1(react@18.3.1) - '@react-hook/resize-observer': 1.2.6(react@18.3.1) - react: 18.3.1 + '@react-hook/passive-layout-effect': 1.2.1(react@19.0.0) + '@react-hook/resize-observer': 1.2.6(react@19.0.0) + react: 19.0.0 - '@react-stately/utils@3.10.1(react@18.3.1)': + '@react-stately/utils@3.10.1(react@19.0.0)': dependencies: '@swc/helpers': 0.5.15 - react: 18.3.1 - - '@react-stately/utils@3.10.1(react@19.0.0-rc-66855b96-20241106)': - dependencies: - '@swc/helpers': 0.5.15 - react: 19.0.0-rc-66855b96-20241106 - - '@react-types/shared@3.23.1(react@18.3.1)': - dependencies: - react: 18.3.1 + react: 19.0.0 - '@react-types/shared@3.23.1(react@19.0.0-rc-66855b96-20241106)': + '@react-types/shared@3.23.1(react@19.0.0)': dependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 - '@reactflow/background@11.3.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@reactflow/background@11.3.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classcat: 5.0.5 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.5(@types/react@18.3.3)(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - immer - - '@reactflow/background@11.3.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': - dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - classcat: 5.0.5 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - zustand: 4.5.5(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + zustand: 4.5.5(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/controls@11.2.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@reactflow/controls@11.2.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classcat: 5.0.5 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.5(@types/react@18.3.3)(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - immer - - '@reactflow/controls@11.2.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': - dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - classcat: 5.0.5 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - zustand: 4.5.5(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) - transitivePeerDependencies: - - '@types/react' - - immer - - '@reactflow/core@11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@types/d3': 7.4.3 - '@types/d3-drag': 3.0.2 - '@types/d3-selection': 3.0.4 - '@types/d3-zoom': 3.0.2 - classcat: 5.0.5 - d3-drag: 3.0.0 - d3-selection: 3.0.0 - d3-zoom: 3.0.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.5(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + zustand: 4.5.5(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/core@11.11.4(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@reactflow/core@11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@types/d3': 7.4.3 '@types/d3-drag': 3.0.2 @@ -14218,87 +14175,48 @@ snapshots: d3-drag: 3.0.0 d3-selection: 3.0.0 d3-zoom: 3.0.0 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - zustand: 4.5.5(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + zustand: 4.5.5(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/minimap@11.7.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@reactflow/minimap@11.7.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@types/d3-selection': 3.0.4 '@types/d3-zoom': 3.0.2 classcat: 5.0.5 d3-selection: 3.0.0 d3-zoom: 3.0.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.5(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + zustand: 4.5.5(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/minimap@11.7.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@reactflow/node-resizer@2.2.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - '@types/d3-selection': 3.0.4 - '@types/d3-zoom': 3.0.2 - classcat: 5.0.5 - d3-selection: 3.0.0 - d3-zoom: 3.0.0 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - zustand: 4.5.5(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) - transitivePeerDependencies: - - '@types/react' - - immer - - '@reactflow/node-resizer@2.2.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classcat: 5.0.5 d3-drag: 3.0.0 d3-selection: 3.0.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.5(@types/react@18.3.3)(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - immer - - '@reactflow/node-resizer@2.2.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': - dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - classcat: 5.0.5 - d3-drag: 3.0.0 - d3-selection: 3.0.0 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - zustand: 4.5.5(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) - transitivePeerDependencies: - - '@types/react' - - immer - - '@reactflow/node-toolbar@1.3.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classcat: 5.0.5 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - zustand: 4.5.5(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + zustand: 4.5.5(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/node-toolbar@1.3.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@reactflow/node-toolbar@1.3.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) + '@reactflow/core': 11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classcat: 5.0.5 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - zustand: 4.5.5(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + zustand: 4.5.5(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - immer @@ -14438,9 +14356,9 @@ snapshots: storybook: 8.4.7(prettier@3.3.3) ts-dedent: 2.2.0 - '@storybook/addon-docs@8.4.7(@types/react@18.3.3)(storybook@8.4.7(prettier@3.3.3))': + '@storybook/addon-docs@8.4.7(@types/react@19.0.2)(storybook@8.4.7(prettier@3.3.3))': dependencies: - '@mdx-js/react': 3.1.0(@types/react@18.3.3)(react@18.3.1) + '@mdx-js/react': 3.1.0(@types/react@19.0.2)(react@18.3.1) '@storybook/blocks': 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.3.3)) '@storybook/csf-plugin': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/react-dom-shim': 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.3.3)) @@ -14451,12 +14369,12 @@ snapshots: transitivePeerDependencies: - '@types/react' - '@storybook/addon-essentials@8.4.7(@types/react@18.3.3)(storybook@8.4.7(prettier@3.3.3))': + '@storybook/addon-essentials@8.4.7(@types/react@19.0.2)(storybook@8.4.7(prettier@3.3.3))': dependencies: '@storybook/addon-actions': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/addon-backgrounds': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/addon-controls': 8.4.7(storybook@8.4.7(prettier@3.3.3)) - '@storybook/addon-docs': 8.4.7(@types/react@18.3.3)(storybook@8.4.7(prettier@3.3.3)) + '@storybook/addon-docs': 8.4.7(@types/react@19.0.2)(storybook@8.4.7(prettier@3.3.3)) '@storybook/addon-highlight': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/addon-measure': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/addon-outline': 8.4.7(storybook@8.4.7(prettier@3.3.3)) @@ -14481,14 +14399,14 @@ snapshots: storybook: 8.4.7(prettier@3.3.3) ts-dedent: 2.2.0 - '@storybook/addon-links@8.4.7(react@19.0.0-rc-66855b96-20241106)(storybook@8.4.7(prettier@3.3.3))': + '@storybook/addon-links@8.4.7(react@19.0.0)(storybook@8.4.7(prettier@3.3.3))': dependencies: '@storybook/csf': 0.1.12 '@storybook/global': 5.0.0 storybook: 8.4.7(prettier@3.3.3) ts-dedent: 2.2.0 optionalDependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 '@storybook/addon-measure@8.4.7(storybook@8.4.7(prettier@3.3.3))': dependencies: @@ -14521,15 +14439,15 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/blocks@8.4.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(storybook@8.4.7(prettier@3.3.3))': + '@storybook/blocks@8.4.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.4.7(prettier@3.3.3))': dependencies: '@storybook/csf': 0.1.12 - '@storybook/icons': 1.3.0(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) + '@storybook/icons': 1.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) storybook: 8.4.7(prettier@3.3.3) ts-dedent: 2.2.0 optionalDependencies: - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@storybook/builder-vite@8.4.7(storybook@8.4.7(prettier@3.3.3))(vite@5.2.11(@types/node@20.17.6))': dependencies: @@ -14545,7 +14463,7 @@ snapshots: '@storybook/core@8.4.7(prettier@3.3.3)': dependencies: - '@storybook/csf': 0.1.12 + '@storybook/csf': 0.1.13 better-opn: 3.0.2 browser-assert: 1.2.1 esbuild: 0.24.0 @@ -14572,6 +14490,10 @@ snapshots: dependencies: type-fest: 2.19.0 + '@storybook/csf@0.1.13': + dependencies: + type-fest: 2.19.0 + '@storybook/global@5.0.0': {} '@storybook/icons@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': @@ -14579,10 +14501,10 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/icons@1.3.0(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@storybook/icons@1.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@storybook/instrumenter@8.4.7(storybook@8.4.7(prettier@3.3.3))': dependencies: @@ -14604,23 +14526,23 @@ snapshots: react-dom: 18.3.1(react@18.3.1) storybook: 8.4.7(prettier@3.3.3) - '@storybook/react-dom-shim@8.4.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(storybook@8.4.7(prettier@3.3.3))': + '@storybook/react-dom-shim@8.4.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.4.7(prettier@3.3.3))': dependencies: - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) storybook: 8.4.7(prettier@3.3.3) - '@storybook/react-vite@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(rollup@4.17.2)(storybook@8.4.7(prettier@3.3.3))(typescript@5.6.3)(vite@5.2.11(@types/node@20.17.6))': + '@storybook/react-vite@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(rollup@4.17.2)(storybook@8.4.7(prettier@3.3.3))(typescript@5.6.3)(vite@5.2.11(@types/node@20.17.6))': dependencies: '@joshwooding/vite-plugin-react-docgen-typescript': 0.4.2(typescript@5.6.3)(vite@5.2.11(@types/node@20.17.6)) '@rollup/pluginutils': 5.1.3(rollup@4.17.2) '@storybook/builder-vite': 8.4.7(storybook@8.4.7(prettier@3.3.3))(vite@5.2.11(@types/node@20.17.6)) - '@storybook/react': 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(storybook@8.4.7(prettier@3.3.3))(typescript@5.6.3) + '@storybook/react': 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.4.7(prettier@3.3.3))(typescript@5.6.3) find-up: 5.0.0 magic-string: 0.30.14 - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 react-docgen: 7.1.0 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react-dom: 19.0.0(react@19.0.0) resolve: 1.22.8 storybook: 8.4.7(prettier@3.3.3) tsconfig-paths: 4.2.0 @@ -14631,16 +14553,16 @@ snapshots: - supports-color - typescript - '@storybook/react@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(storybook@8.4.7(prettier@3.3.3))(typescript@5.6.3)': + '@storybook/react@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.4.7(prettier@3.3.3))(typescript@5.6.3)': dependencies: '@storybook/components': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/global': 5.0.0 '@storybook/manager-api': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@storybook/preview-api': 8.4.7(storybook@8.4.7(prettier@3.3.3)) - '@storybook/react-dom-shim': 8.4.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(storybook@8.4.7(prettier@3.3.3)) + '@storybook/react-dom-shim': 8.4.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(storybook@8.4.7(prettier@3.3.3)) '@storybook/theming': 8.4.7(storybook@8.4.7(prettier@3.3.3)) - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) storybook: 8.4.7(prettier@3.3.3) optionalDependencies: '@storybook/test': 8.4.7(storybook@8.4.7(prettier@3.3.3)) @@ -14648,7 +14570,7 @@ snapshots: '@storybook/test@8.4.7(storybook@8.4.7(prettier@3.3.3))': dependencies: - '@storybook/csf': 0.1.12 + '@storybook/csf': 0.1.13 '@storybook/global': 5.0.0 '@storybook/instrumenter': 8.4.7(storybook@8.4.7(prettier@3.3.3)) '@testing-library/dom': 10.4.0 @@ -14758,17 +14680,11 @@ snapshots: postcss-selector-parser: 6.0.10 tailwindcss: 3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)) - '@tanstack/react-virtual@3.10.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@tanstack/virtual-core': 3.10.8 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@tanstack/react-virtual@3.10.8(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@tanstack/react-virtual@3.10.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@tanstack/virtual-core': 3.10.8 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@tanstack/virtual-core@3.10.8': {} @@ -14804,15 +14720,15 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 - '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.26.0 '@testing-library/dom': 10.4.0 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)': dependencies: @@ -15092,15 +15008,28 @@ snapshots: dependencies: '@types/react': 18.3.3 - '@types/react-transition-group@4.4.6': + '@types/react-dom@19.0.2(@types/react@18.3.3)': dependencies: '@types/react': 18.3.3 + optional: true + + '@types/react-dom@19.0.2(@types/react@19.0.2)': + dependencies: + '@types/react': 19.0.2 + + '@types/react-transition-group@4.4.12(@types/react@19.0.2)': + dependencies: + '@types/react': 19.0.2 '@types/react@18.3.3': dependencies: '@types/prop-types': 15.7.11 csstype: 3.1.3 + '@types/react@19.0.2': + dependencies: + csstype: 3.1.3 + '@types/resolve@1.20.6': {} '@types/semver@7.5.8': {} @@ -15211,12 +15140,12 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vercel/analytics@1.3.1(next@15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)': + '@vercel/analytics@1.3.1(next@15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': dependencies: server-only: 0.0.1 optionalDependencies: - next: 15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - react: 19.0.0-rc-66855b96-20241106 + next: 15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 '@vercel/analytics@1.3.1(next@15.1.3(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)': dependencies: @@ -15637,7 +15566,7 @@ snapshots: dependencies: '@babel/runtime': 7.26.0 cosmiconfig: 7.1.0 - resolve: 1.22.8 + resolve: 1.22.10 babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0): dependencies: @@ -16001,11 +15930,11 @@ snapshots: clsx@2.1.1: {} - cmdk@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025): + cmdk@1.0.4(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025): dependencies: - '@radix-ui/react-dialog': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-dialog': 1.1.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) use-sync-external-store: 1.2.2(react@19.0.0-rc-cae764ce-20241025) @@ -17463,29 +17392,23 @@ snapshots: fraction.js@4.3.7: {} - framer-motion@10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + framer-motion@10.18.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: tslib: 2.8.1 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - framer-motion@11.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - tslib: 2.8.1 - optionalDependencies: - '@emotion/is-prop-valid': 0.8.8 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - framer-motion@11.0.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): + framer-motion@11.15.0(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: + motion-dom: 11.14.3 + motion-utils: 11.14.3 tslib: 2.8.1 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) fs-constants@1.0.0: optional: true @@ -17523,7 +17446,7 @@ snapshots: hast-util-to-estree: 3.1.0 image-size: 1.1.1 negotiator: 1.0.0 - react-remove-scroll: 2.6.0(@types/react@18.3.3)(react@18.3.1) + react-remove-scroll: 2.6.0(@types/react@18.3.3)(react@19.0.0) remark: 15.0.1 remark-gfm: 4.0.0 scroll-into-view-if-needed: 3.1.0 @@ -17531,9 +17454,9 @@ snapshots: unist-util-visit: 5.0.0 optionalDependencies: algoliasearch: 4.24.0 - next: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + next: 15.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - '@babel/core' - '@opentelemetry/api' @@ -17544,20 +17467,20 @@ snapshots: - sass - supports-color - fumadocs-ui@14.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(next@15.1.3(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025))(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)): + fumadocs-ui@14.0.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(next@15.1.3(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025))(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3)): dependencies: - '@radix-ui/react-accordion': 1.2.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-collapsible': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-dialog': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-accordion': 1.2.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-collapsible': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-dialog': 1.1.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-navigation-menu': 1.2.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-popover': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-scroll-area': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-navigation-menu': 1.2.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-popover': 1.1.2(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-scroll-area': 1.2.0(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@19.0.0-rc-cae764ce-20241025) - '@radix-ui/react-tabs': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + '@radix-ui/react-tabs': 1.1.1(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) '@tailwindcss/typography': 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@22.10.2)(typescript@5.6.3))) class-variance-authority: 0.7.0 - cmdk: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) + cmdk: 1.0.4(@types/react-dom@19.0.2(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) fumadocs-core: 14.0.2(@types/react@18.3.3) next: 15.1.3(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) next-themes: 0.3.0(react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025))(react@19.0.0-rc-cae764ce-20241025) @@ -18014,7 +17937,7 @@ snapshots: ini@4.1.3: {} - ink@5.0.1(@types/react@18.3.3)(react@18.3.1): + ink@5.0.1(@types/react@19.0.2)(react@18.3.1): dependencies: '@alcalzone/ansi-tokenize': 0.1.3 ansi-escapes: 7.0.0 @@ -18042,7 +17965,40 @@ snapshots: ws: 8.18.0 yoga-wasm-web: 0.3.3 optionalDependencies: - '@types/react': 18.3.3 + '@types/react': 19.0.2 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + ink@5.0.1(@types/react@19.0.2)(react@19.0.0): + dependencies: + '@alcalzone/ansi-tokenize': 0.1.3 + ansi-escapes: 7.0.0 + ansi-styles: 6.2.1 + auto-bind: 5.0.1 + chalk: 5.3.0 + cli-boxes: 3.0.0 + cli-cursor: 4.0.0 + cli-truncate: 4.0.0 + code-excerpt: 4.0.0 + indent-string: 5.0.0 + is-in-ci: 0.1.0 + lodash: 4.17.21 + patch-console: 2.0.0 + react: 19.0.0 + react-reconciler: 0.29.2(react@19.0.0) + scheduler: 0.23.2 + signal-exit: 3.0.7 + slice-ansi: 7.1.0 + stack-utils: 2.0.6 + string-width: 7.2.0 + type-fest: 4.30.0 + widest-line: 5.0.0 + wrap-ansi: 9.0.0 + ws: 8.18.0 + yoga-wasm-web: 0.3.3 + optionalDependencies: + '@types/react': 19.0.2 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -18119,6 +18075,10 @@ snapshots: dependencies: hasown: 2.0.2 + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + is-data-view@1.0.1: dependencies: is-typed-array: 1.1.13 @@ -20002,6 +19962,10 @@ snapshots: dependencies: color-name: 1.1.4 + motion-dom@11.14.3: {} + + motion-utils@11.14.3: {} + mri@1.2.0: {} ms@2.1.3: {} @@ -20014,28 +19978,15 @@ snapshots: object-assign: 4.1.1 thenify-all: 1.6.0 - nano-css@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - css-tree: 1.1.3 - csstype: 3.1.3 - fastest-stable-stringify: 2.0.2 - inline-style-prefixer: 7.0.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - rtl-css-js: 1.16.1 - stacktrace-js: 2.0.2 - stylis: 4.3.0 - - nano-css@5.6.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): + nano-css@5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@jridgewell/sourcemap-codec': 1.5.0 css-tree: 1.1.3 csstype: 3.1.3 fastest-stable-stringify: 2.0.2 inline-style-prefixer: 7.0.0 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) rtl-css-js: 1.16.1 stacktrace-js: 2.0.2 stylis: 4.3.0 @@ -20051,19 +20002,19 @@ snapshots: negotiator@1.0.0: {} - next-auth@5.0.0-beta.25(next@15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(nodemailer@6.9.13)(react@19.0.0-rc-66855b96-20241106): + next-auth@5.0.0-beta.25(next@15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(nodemailer@6.9.13)(react@19.0.0): dependencies: '@auth/core': 0.37.2(nodemailer@6.9.13) - next: 15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - react: 19.0.0-rc-66855b96-20241106 + next: 15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 optionalDependencies: nodemailer: 6.9.13 - next-safe-action@7.9.9(next@15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8): + next-safe-action@7.9.9(next@15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(zod@3.23.8): dependencies: - next: 15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + next: 15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) optionalDependencies: zod: 3.23.8 @@ -20072,7 +20023,7 @@ snapshots: react: 19.0.0-rc-cae764ce-20241025 react-dom: 19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025) - next@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@15.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@next/env': 15.0.0 '@swc/counter': 0.1.3 @@ -20080,9 +20031,9 @@ snapshots: busboy: 1.6.0 caniuse-lite: 1.0.30001680 postcss: 8.4.31 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.6(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + styled-jsx: 5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react@19.0.0) optionalDependencies: '@next/swc-darwin-arm64': 15.0.0 '@next/swc-darwin-x64': 15.0.0 @@ -20098,7 +20049,7 @@ snapshots: - babel-plugin-macros optional: true - next@15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): + next@15.1.3(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@next/env': 15.1.3 '@swc/counter': 0.1.3 @@ -20106,9 +20057,9 @@ snapshots: busboy: 1.6.0 caniuse-lite: 1.0.30001690 postcss: 8.4.31 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - styled-jsx: 5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + styled-jsx: 5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react@19.0.0) optionalDependencies: '@next/swc-darwin-arm64': 15.1.3 '@next/swc-darwin-x64': 15.1.3 @@ -20196,7 +20147,7 @@ snapshots: normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.8 + resolve: 1.22.10 semver: 5.7.2 validate-npm-package-license: 3.0.4 @@ -20761,15 +20712,10 @@ snapshots: strip-json-comments: 2.0.1 optional: true - react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - react-colorful@5.6.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): + react-colorful@5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) react-docgen-typescript@2.2.2(typescript@5.6.3): dependencies: @@ -20785,7 +20731,7 @@ snapshots: '@types/doctrine': 0.0.9 '@types/resolve': 1.20.6 doctrine: 3.0.0 - resolve: 1.22.8 + resolve: 1.22.10 strip-indent: 4.0.0 transitivePeerDependencies: - supports-color @@ -20796,46 +20742,35 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106): + react-dom@19.0.0(react@19.0.0): dependencies: - react: 19.0.0-rc-66855b96-20241106 - scheduler: 0.25.0-rc-66855b96-20241106 + react: 19.0.0 + scheduler: 0.25.0 react-dom@19.0.0-rc-cae764ce-20241025(react@19.0.0-rc-cae764ce-20241025): dependencies: react: 19.0.0-rc-cae764ce-20241025 scheduler: 0.25.0-rc-cae764ce-20241025 - react-draggable@4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-draggable@4.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: clsx: 1.2.1 prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - react-draggable@4.4.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): - dependencies: - clsx: 1.2.1 - prop-types: 15.8.1 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - - react-error-boundary@4.0.11(react@18.3.1): + react-error-boundary@4.0.11(react@19.0.0): dependencies: '@babel/runtime': 7.26.0 - react: 18.3.1 - - react-hook-form@7.53.2(react@18.3.1): - dependencies: - react: 18.3.1 + react: 19.0.0 - react-hook-form@7.53.2(react@19.0.0-rc-66855b96-20241106): + react-hook-form@7.53.2(react@19.0.0): dependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 - react-icons@5.2.1(react@19.0.0-rc-66855b96-20241106): + react-icons@5.2.1(react@19.0.0): dependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 react-icons@5.2.1(react@19.0.0-rc-cae764ce-20241025): dependencies: @@ -20847,21 +20782,21 @@ snapshots: react-is@18.2.0: {} - react-loading-skeleton@3.4.0(react@19.0.0-rc-66855b96-20241106): + react-loading-skeleton@3.4.0(react@19.0.0): dependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 - react-markdown@8.0.7(@types/react@18.3.3)(react@18.3.1): + react-markdown@8.0.7(@types/react@19.0.2)(react@19.0.0): dependencies: '@types/hast': 2.3.7 '@types/prop-types': 15.7.11 - '@types/react': 18.3.3 + '@types/react': 19.0.2 '@types/unist': 2.0.9 comma-separated-tokens: 2.0.3 hast-util-whitespace: 2.0.1 prop-types: 15.8.1 property-information: 6.4.0 - react: 18.3.1 + react: 19.0.0 react-is: 18.2.0 remark-parse: 10.0.2 remark-rehype: 10.1.0 @@ -20873,32 +20808,15 @@ snapshots: transitivePeerDependencies: - supports-color - react-markdown@9.0.1(@types/react@18.3.3)(react@18.3.1): - dependencies: - '@types/hast': 3.0.4 - '@types/react': 18.3.3 - devlop: 1.1.0 - hast-util-to-jsx-runtime: 2.2.0 - html-url-attributes: 3.0.0 - mdast-util-to-hast: 13.0.2 - react: 18.3.1 - remark-parse: 11.0.0 - remark-rehype: 11.0.0 - unified: 11.0.5 - unist-util-visit: 5.0.0 - vfile: 6.0.1 - transitivePeerDependencies: - - supports-color - - react-markdown@9.0.1(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106): + react-markdown@9.0.1(@types/react@19.0.2)(react@19.0.0): dependencies: '@types/hast': 3.0.4 - '@types/react': 18.3.3 + '@types/react': 19.0.2 devlop: 1.1.0 hast-util-to-jsx-runtime: 2.2.0 html-url-attributes: 3.0.0 mdast-util-to-hast: 13.0.2 - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 remark-parse: 11.0.0 remark-rehype: 11.0.0 unified: 11.0.5 @@ -20918,10 +20836,16 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.3.1): + react-reconciler@0.29.2(react@19.0.0): dependencies: - react: 18.3.1 - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) + loose-envify: 1.4.0 + react: 19.0.0 + scheduler: 0.23.2 + + react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@19.0.0): + dependencies: + react: 19.0.0 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0) tslib: 2.8.1 optionalDependencies: '@types/react': 18.3.3 @@ -20934,14 +20858,14 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - react-remove-scroll@2.6.0(@types/react@18.3.3)(react@18.3.1): + react-remove-scroll@2.6.0(@types/react@18.3.3)(react@19.0.0): dependencies: - react: 18.3.1 - react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1) - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@19.0.0) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0) tslib: 2.8.1 - use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1) - use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) + use-callback-ref: 1.3.2(@types/react@18.3.3)(react@19.0.0) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@19.0.0) optionalDependencies: '@types/react': 18.3.3 @@ -20956,53 +20880,36 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - react-resizable@3.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-resizable@3.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: prop-types: 15.8.1 - react: 18.3.1 - react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 19.0.0 + react-draggable: 4.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react-dom - react-select@5.8.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-select@5.9.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@babel/runtime': 7.26.0 - '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.0(@types/react@18.3.3)(react@18.3.1) - '@floating-ui/dom': 1.6.1 - '@types/react-transition-group': 4.4.6 + '@emotion/cache': 11.14.0 + '@emotion/react': 11.14.0(@types/react@19.0.2)(react@19.0.0) + '@floating-ui/dom': 1.6.12 + '@types/react-transition-group': 4.4.12(@types/react@19.0.2) memoize-one: 6.0.0 prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-transition-group: 4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + use-isomorphic-layout-effect: 1.2.0(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - supports-color - react-select@5.8.0(patch_hash=pok3nxq32ihaf3qpdecuz4j5ea)(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): - dependencies: - '@babel/runtime': 7.26.0 - '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.0(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) - '@floating-ui/dom': 1.6.1 - '@types/react-transition-group': 4.4.6 - memoize-one: 6.0.0 - prop-types: 15.8.1 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - react-transition-group: 4.4.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) - transitivePeerDependencies: - - '@types/react' - - supports-color - - react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1): + react-style-singleton@2.2.1(@types/react@18.3.3)(react@19.0.0): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 - react: 18.3.1 + react: 19.0.0 tslib: 2.8.1 optionalDependencies: '@types/react': 18.3.3 @@ -21016,71 +20923,48 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - react-textarea-autosize@8.5.2(@types/react@18.3.3)(react@18.3.1): - dependencies: - '@babel/runtime': 7.26.0 - react: 18.3.1 - use-composed-ref: 1.3.0(react@18.3.1) - use-latest: 1.2.1(@types/react@18.3.3)(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - react-textarea-autosize@8.5.3(@types/react@18.3.3)(react@18.3.1): + react-textarea-autosize@8.5.2(@types/react@19.0.2)(react@19.0.0): dependencies: '@babel/runtime': 7.26.0 - react: 18.3.1 - use-composed-ref: 1.3.0(react@18.3.1) - use-latest: 1.2.1(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + use-composed-ref: 1.3.0(react@19.0.0) + use-latest: 1.2.1(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - react-textarea-autosize@8.5.4(@types/react@18.3.3)(react@18.3.1): + react-textarea-autosize@8.5.3(@types/react@19.0.2)(react@19.0.0): dependencies: '@babel/runtime': 7.26.0 - react: 18.3.1 - use-composed-ref: 1.3.0(react@18.3.1) - use-latest: 1.2.1(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + use-composed-ref: 1.3.0(react@19.0.0) + use-latest: 1.2.1(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - react-textarea-autosize@8.5.4(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106): + react-textarea-autosize@8.5.4(@types/react@19.0.2)(react@19.0.0): dependencies: '@babel/runtime': 7.26.0 - react: 19.0.0-rc-66855b96-20241106 - use-composed-ref: 1.3.0(react@19.0.0-rc-66855b96-20241106) - use-latest: 1.2.1(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + use-composed-ref: 1.3.0(react@19.0.0) + use-latest: 1.2.1(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - '@types/react' - react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@babel/runtime': 7.26.0 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - react-transition-group@4.4.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): - dependencies: - '@babel/runtime': 7.26.0 - dom-helpers: 5.2.1 - loose-envify: 1.4.0 - prop-types: 15.8.1 - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - react-universal-interface@0.6.2(react@18.3.1)(tslib@2.8.1): + react-universal-interface@0.6.2(react@19.0.0)(tslib@2.8.1): dependencies: - react: 18.3.1 - tslib: 2.8.1 - - react-universal-interface@0.6.2(react@19.0.0-rc-66855b96-20241106)(tslib@2.8.1): - dependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 tslib: 2.8.1 - react-use@17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-use@17.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@types/js-cookie': 2.2.7 '@xobotyi/scrollbar-width': 1.9.5 @@ -21088,29 +20972,10 @@ snapshots: fast-deep-equal: 3.1.3 fast-shallow-equal: 1.0.0 js-cookie: 2.2.1 - nano-css: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-universal-interface: 0.6.2(react@18.3.1)(tslib@2.8.1) - resize-observer-polyfill: 1.5.1 - screenfull: 5.2.0 - set-harmonic-interval: 1.0.1 - throttle-debounce: 3.0.1 - ts-easing: 0.2.0 - tslib: 2.8.1 - - react-use@17.5.0(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): - dependencies: - '@types/js-cookie': 2.2.7 - '@xobotyi/scrollbar-width': 1.9.5 - copy-to-clipboard: 3.3.3 - fast-deep-equal: 3.1.3 - fast-shallow-equal: 1.0.0 - js-cookie: 2.2.1 - nano-css: 5.6.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) - react-universal-interface: 0.6.2(react@19.0.0-rc-66855b96-20241106)(tslib@2.8.1) + nano-css: 5.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-universal-interface: 0.6.2(react@19.0.0)(tslib@2.8.1) resize-observer-polyfill: 1.5.1 screenfull: 5.2.0 set-harmonic-interval: 1.0.1 @@ -21122,34 +20987,20 @@ snapshots: dependencies: loose-envify: 1.4.0 - react@19.0.0-rc-66855b96-20241106: {} + react@19.0.0: {} react@19.0.0-rc-cae764ce-20241025: {} - reactflow@11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + reactflow@11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - '@reactflow/background': 11.3.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/controls': 11.2.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/minimap': 11.7.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/node-resizer': 2.2.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/node-toolbar': 1.3.14(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - immer - - reactflow@11.11.4(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): - dependencies: - '@reactflow/background': 11.3.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - '@reactflow/controls': 11.2.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - '@reactflow/core': 11.11.4(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - '@reactflow/minimap': 11.7.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - '@reactflow/node-resizer': 2.2.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - '@reactflow/node-toolbar': 1.3.14(@types/react@18.3.3)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - react: 19.0.0-rc-66855b96-20241106 - react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) + '@reactflow/background': 11.3.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@reactflow/controls': 11.2.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@reactflow/core': 11.11.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@reactflow/minimap': 11.7.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@reactflow/node-resizer': 2.2.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@reactflow/node-toolbar': 1.3.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - '@types/react' - immer @@ -21463,6 +21314,12 @@ snapshots: resolve.exports@2.0.2: {} + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + resolve@1.22.8: dependencies: is-core-module: 2.15.1 @@ -21575,7 +21432,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0-rc-66855b96-20241106: {} + scheduler@0.25.0: {} scheduler@0.25.0-rc-cae764ce-20241025: {} @@ -21974,20 +21831,14 @@ snapshots: dependencies: inline-style-parser: 0.1.1 - styled-jsx@5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react@19.0.0-rc-66855b96-20241106): + styled-jsx@5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react@19.0.0): dependencies: client-only: 0.0.1 - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 optionalDependencies: '@babel/core': 7.26.0 babel-plugin-macros: 3.1.0 - styled-jsx@5.1.6(react@18.3.1): - dependencies: - client-only: 0.0.1 - react: 18.3.1 - optional: true - styled-jsx@5.1.6(react@19.0.0-rc-cae764ce-20241025): dependencies: client-only: 0.0.1 @@ -22359,6 +22210,8 @@ snapshots: type-fest@4.30.0: {} + type-fest@4.31.0: {} + type-flag@3.0.0: {} typed-array-buffer@1.0.2: @@ -22559,9 +22412,9 @@ snapshots: dependencies: fast-url-parser: 1.1.3 - use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1): + use-callback-ref@1.3.2(@types/react@18.3.3)(react@19.0.0): dependencies: - react: 18.3.1 + react: 19.0.0 tslib: 2.8.1 optionalDependencies: '@types/react': 18.3.3 @@ -22573,44 +22426,33 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - use-composed-ref@1.3.0(react@18.3.1): - dependencies: - react: 18.3.1 - - use-composed-ref@1.3.0(react@19.0.0-rc-66855b96-20241106): + use-composed-ref@1.3.0(react@19.0.0): dependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 - use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.3.1): + use-isomorphic-layout-effect@1.1.2(@types/react@19.0.2)(react@19.0.0): dependencies: - react: 18.3.1 + react: 19.0.0 optionalDependencies: - '@types/react': 18.3.3 + '@types/react': 19.0.2 - use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106): + use-isomorphic-layout-effect@1.2.0(@types/react@19.0.2)(react@19.0.0): dependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 optionalDependencies: - '@types/react': 18.3.3 + '@types/react': 19.0.2 - use-latest@1.2.1(@types/react@18.3.3)(react@18.3.1): + use-latest@1.2.1(@types/react@19.0.2)(react@19.0.0): dependencies: - react: 18.3.1 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1) + react: 19.0.0 + use-isomorphic-layout-effect: 1.1.2(@types/react@19.0.2)(react@19.0.0) optionalDependencies: - '@types/react': 18.3.3 + '@types/react': 19.0.2 - use-latest@1.2.1(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106): - dependencies: - react: 19.0.0-rc-66855b96-20241106 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106) - optionalDependencies: - '@types/react': 18.3.3 - - use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1): + use-sidecar@1.1.2(@types/react@18.3.3)(react@19.0.0): dependencies: detect-node-es: 1.1.0 - react: 18.3.1 + react: 19.0.0 tslib: 2.8.1 optionalDependencies: '@types/react': 18.3.3 @@ -22623,13 +22465,9 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - use-sync-external-store@1.2.2(react@18.3.1): - dependencies: - react: 18.3.1 - - use-sync-external-store@1.2.2(react@19.0.0-rc-66855b96-20241106): + use-sync-external-store@1.2.2(react@19.0.0): dependencies: - react: 19.0.0-rc-66855b96-20241106 + react: 19.0.0 use-sync-external-store@1.2.2(react@19.0.0-rc-cae764ce-20241025): dependencies: @@ -22997,18 +22835,11 @@ snapshots: zod@3.23.8: {} - zustand@4.5.5(@types/react@18.3.3)(react@18.3.1): + zustand@4.5.5(@types/react@19.0.2)(react@19.0.0): dependencies: - use-sync-external-store: 1.2.2(react@18.3.1) + use-sync-external-store: 1.2.2(react@19.0.0) optionalDependencies: - '@types/react': 18.3.3 - react: 18.3.1 - - zustand@4.5.5(@types/react@18.3.3)(react@19.0.0-rc-66855b96-20241106): - dependencies: - use-sync-external-store: 1.2.2(react@19.0.0-rc-66855b96-20241106) - optionalDependencies: - '@types/react': 18.3.3 - react: 19.0.0-rc-66855b96-20241106 + '@types/react': 19.0.2 + react: 19.0.0 zwitch@2.0.4: {}