diff --git a/components/empty-view/package.json b/components/empty-view/package.json index 3d68bb87..002b5de2 100644 --- a/components/empty-view/package.json +++ b/components/empty-view/package.json @@ -31,17 +31,17 @@ "@axiscommunications/fluent-illustrations": "workspace:*" }, "devDependencies": { - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", "esbuild": "^0.25.3", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", "typescript": "^5.8.3" }, "peerDependencies": { - "@fluentui/react-components": "^9.62.0", - "react": ">=16.8.0 <19.0.0", - "react-dom": ">=16.8.0 <19.0.0" + "@fluentui/react-components": "^9.72.7", + "react": ">=16.14.0 <20.0.0", + "react-dom": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/components/empty-view/src/view.tsx b/components/empty-view/src/view.tsx index 86266d71..3907e4a0 100644 --- a/components/empty-view/src/view.tsx +++ b/components/empty-view/src/view.tsx @@ -1,4 +1,4 @@ -import React, { PropsWithChildren } from "react"; +import { PropsWithChildren } from "react"; import { Body1, diff --git a/components/password-input/package.json b/components/password-input/package.json index 76ac881a..7240a530 100644 --- a/components/password-input/package.json +++ b/components/password-input/package.json @@ -26,19 +26,19 @@ "lint": "tsc --noEmit && biome check" }, "devDependencies": { - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", "esbuild": "^0.25.3", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", "typescript": "^5.8.3" }, "peerDependencies": { - "@fluentui/react-components": "^9.62.0", - "@fluentui/react-icons": "^2.0.297", - "@fluentui/react-utilities": "^9.19.0", - "react": ">=16.8.0 <19.0.0", - "react-dom": ">=16.8.0 <19.0.0" + "@fluentui/react-components": "^9.72.7", + "@fluentui/react-icons": "^2.0.315", + "@fluentui/react-utilities": "^9.25.4", + "react": ">=16.14.0 <20.0.0", + "react-dom": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/components/slider/package.json b/components/slider/package.json index ffab665a..1caf16d4 100644 --- a/components/slider/package.json +++ b/components/slider/package.json @@ -30,23 +30,23 @@ }, "devDependencies": { "@testing-library/jest-dom": "^6.6.3", - "@testing-library/react": "^14.2.1", + "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", "esbuild": "^0.25.3", "jsdom": "^26.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", "typescript": "^5.8.3", "vitest": "^3.1.2" }, "peerDependencies": { - "@fluentui/react-components": "^9.62.0", - "@fluentui/react-icons": "^2.0.297", - "@fluentui/react-utilities": "^9.19.0", - "react": ">=16.8.0 <19.0.0", - "react-dom": ">=16.8.0 <19.0.0" + "@fluentui/react-components": "^9.72.7", + "@fluentui/react-icons": "^2.0.315", + "@fluentui/react-utilities": "^9.25.4", + "react": ">=16.14.0 <20.0.0", + "react-dom": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/components/slider/src/__snapshots__/range-slider.spec.tsx.snap b/components/slider/src/__snapshots__/range-slider.spec.tsx.snap index 10991f44..0627c6aa 100644 --- a/components/slider/src/__snapshots__/range-slider.spec.tsx.snap +++ b/components/slider/src/__snapshots__/range-slider.spec.tsx.snap @@ -25,7 +25,7 @@ exports[`range-slider > should render 1`] = ` > should render 1`] = ` > should render 1`] = ` > should render 1`] = ` > should render 1`] = ` > should render 1`] = ` > { diff --git a/components/slider/src/mark/render-mark.tsx b/components/slider/src/mark/render-mark.tsx index fa91aebb..5e1f4e27 100644 --- a/components/slider/src/mark/render-mark.tsx +++ b/components/slider/src/mark/render-mark.tsx @@ -1,6 +1,5 @@ import { getSlots } from "@fluentui/react-utilities"; -import React from "react"; import { MarkSlots, MarkState } from "./mark.types"; export const renderMark_unstable = (state: MarkState) => { diff --git a/components/slider/src/range-slider.spec.tsx b/components/slider/src/range-slider.spec.tsx index feb1e703..80d76cba 100644 --- a/components/slider/src/range-slider.spec.tsx +++ b/components/slider/src/range-slider.spec.tsx @@ -1,6 +1,5 @@ import { fireEvent, render } from "@testing-library/react"; import userEvent from "@testing-library/user-event"; -import React from "react"; import { describe, expect, it, vi } from "vitest"; import "@testing-library/jest-dom"; diff --git a/components/slider/src/render-slider.tsx b/components/slider/src/render-slider.tsx index 06247492..2cfd200c 100644 --- a/components/slider/src/render-slider.tsx +++ b/components/slider/src/render-slider.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { getSlots } from "@fluentui/react-utilities"; import { SliderContextProvider } from "./context/slider-context"; diff --git a/components/slider/src/section/render-section.tsx b/components/slider/src/section/render-section.tsx index 82d59bc6..4a68e456 100644 --- a/components/slider/src/section/render-section.tsx +++ b/components/slider/src/section/render-section.tsx @@ -1,6 +1,5 @@ import { getSlots } from "@fluentui/react-utilities"; -import React from "react"; import { SectionSlots, SectionState } from "./section.types"; export const renderSection_unstable = (state: SectionState) => { diff --git a/components/slider/src/slider.spec.tsx b/components/slider/src/slider.spec.tsx index 87975f5d..d1e6942c 100644 --- a/components/slider/src/slider.spec.tsx +++ b/components/slider/src/slider.spec.tsx @@ -2,7 +2,6 @@ import { fireEvent, render } from "@testing-library/react"; import userEvent from "@testing-library/user-event"; import "@testing-library/jest-dom"; import { FluentProvider } from "@fluentui/react-components"; -import React from "react"; import { describe, expect, it, vi } from "vitest"; import { Slider } from "./slider"; import { getControlRoot } from "./test-helpers"; diff --git a/components/slider/src/thumb/render-thumb.tsx b/components/slider/src/thumb/render-thumb.tsx index 2892295e..ff0b5c9c 100644 --- a/components/slider/src/thumb/render-thumb.tsx +++ b/components/slider/src/thumb/render-thumb.tsx @@ -1,6 +1,5 @@ import { getSlots } from "@fluentui/react-utilities"; -import React from "react"; import { ThumbSlots, ThumbState } from "./thumb.types"; export const renderThumb_unstable = (state: ThumbState) => { diff --git a/components/slider/src/use-range-slider.ts b/components/slider/src/use-range-slider.ts index e85cc6ff..0bf73986 100644 --- a/components/slider/src/use-range-slider.ts +++ b/components/slider/src/use-range-slider.ts @@ -339,7 +339,7 @@ export const useRangeSlider_unstable = ( removeListeners(); }); - const touchId = useRef(); + const touchId = useRef(undefined); const handleTouchStart = useEventCallback((event: TouchEvent) => { // prevent scrolling diff --git a/components/stepper/package.json b/components/stepper/package.json index 6e5ec6dc..507022e3 100644 --- a/components/stepper/package.json +++ b/components/stepper/package.json @@ -29,22 +29,22 @@ }, "devDependencies": { "@testing-library/jest-dom": "^6.6.3", - "@testing-library/react": "^14.2.1", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@testing-library/react": "^16.3.0", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", "esbuild": "^0.25.3", "jsdom": "^26.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", "typescript": "^5.8.3", "vitest": "^3.1.2" }, "peerDependencies": { - "@fluentui/react-components": "^9.62.0", - "@fluentui/react-icons": "^2.0.297", - "@fluentui/react-utilities": "^9.19.0", - "react": ">=16.8.0 <19.0.0", - "react-dom": ">=16.8.0 <19.0.0" + "@fluentui/react-components": "^9.72.7", + "@fluentui/react-icons": "^2.0.315", + "@fluentui/react-utilities": "^9.25.4", + "react": ">=16.14.0 <20.0.0", + "react-dom": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/components/stepper/src/step-symbol/render-step-symbol.tsx b/components/stepper/src/step-symbol/render-step-symbol.tsx index 42dd7e17..cf68cb87 100644 --- a/components/stepper/src/step-symbol/render-step-symbol.tsx +++ b/components/stepper/src/step-symbol/render-step-symbol.tsx @@ -1,5 +1,4 @@ import { getSlots } from "@fluentui/react-utilities"; -import React from "react"; import type { StepSymbolSlots, StepSymbolState } from "./step-symbol.types"; export const renderStepSymbol_unstable = (state: StepSymbolState) => { diff --git a/components/stepper/src/step-symbol/use-step-symbol.ts b/components/stepper/src/step-symbol/use-step-symbol.ts index b8da19ad..e93cb39c 100644 --- a/components/stepper/src/step-symbol/use-step-symbol.ts +++ b/components/stepper/src/step-symbol/use-step-symbol.ts @@ -3,7 +3,7 @@ import { getNativeElementProps, resolveShorthand, } from "@fluentui/react-utilities"; -import React from "react"; +import { createElement } from "react"; import type { StepSymbolProps, StepSymbolState } from "./step-symbol.types"; export const useStepSymbol_unstable = ( @@ -26,7 +26,7 @@ export const useStepSymbol_unstable = ( icon: resolveShorthand(props.icon, { required: true, defaultProps: { - children: React.createElement(CheckmarkFilled), + children: createElement(CheckmarkFilled), }, }), }; diff --git a/components/stepper/src/step/render-step.tsx b/components/stepper/src/step/render-step.tsx index f3e67814..c4c02a6c 100644 --- a/components/stepper/src/step/render-step.tsx +++ b/components/stepper/src/step/render-step.tsx @@ -1,5 +1,4 @@ import { getSlots } from "@fluentui/react-utilities"; -import React from "react"; import { StepSymbol } from "../step-symbol"; import type { StepSlots, StepState } from "./step.types"; diff --git a/components/stepper/src/stepper-dialog.spec.tsx b/components/stepper/src/stepper-dialog.spec.tsx index 6937a769..66880d5f 100644 --- a/components/stepper/src/stepper-dialog.spec.tsx +++ b/components/stepper/src/stepper-dialog.spec.tsx @@ -1,5 +1,4 @@ import { render } from "@testing-library/react"; -import React from "react"; import { vi } from "vitest"; import { StepperDialog } from "./stepper-dialog"; import { DialogStep } from "./stepper-dialog.types"; diff --git a/components/stepper/src/stepper-dialog.tsx b/components/stepper/src/stepper-dialog.tsx index 9ecc397f..bb84941d 100644 --- a/components/stepper/src/stepper-dialog.tsx +++ b/components/stepper/src/stepper-dialog.tsx @@ -1,5 +1,5 @@ import { Button } from "@fluentui/react-components"; -import React, { useCallback } from "react"; +import { useCallback } from "react"; import { Stepper } from "./stepper"; import { useStepperDialogStyles } from "./stepper-dialog.styles"; import { StepperDialogProps } from "./stepper-dialog.types"; diff --git a/components/stepper/src/stepper-dialog.types.ts b/components/stepper/src/stepper-dialog.types.ts index 3ee2ed75..fb8af3e3 100644 --- a/components/stepper/src/stepper-dialog.types.ts +++ b/components/stepper/src/stepper-dialog.types.ts @@ -1,14 +1,15 @@ +import { ReactElement } from "react"; import { TStep } from "./stepper.types"; export type DialogStep = TStep & { - content: JSX.Element; + content: ReactElement; }; export type StepperDialogProps = { currentStep: number; steps: DialogStep[]; hideSteps?: boolean; - footerContent?: JSX.Element; + footerContent?: ReactElement; vertical?: boolean; onStepChange: (newStep: number) => void; onFinish: () => void; diff --git a/components/topbar/package.json b/components/topbar/package.json index 4044895b..92787b61 100644 --- a/components/topbar/package.json +++ b/components/topbar/package.json @@ -34,23 +34,23 @@ }, "devDependencies": { "@testing-library/jest-dom": "^6.6.3", - "@testing-library/react": "^14.2.1", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@testing-library/react": "^16.3.0", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", "esbuild": "^0.25.3", "jsdom": "^26.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", "typescript": "^5.8.3", "vitest": "^3.1.2" }, "peerDependencies": { "@axiscommunications/fluent-theme": ">=9.0.0", - "@fluentui/react-components": "^9.62.0", - "@fluentui/react-icons": "^2.0.297", - "@fluentui/react-utilities": "^9.19.0", - "react": ">=16.8.0 <19.0.0", - "react-dom": ">=16.8.0 <19.0.0" + "@fluentui/react-components": "^9.72.7", + "@fluentui/react-icons": "^2.0.315", + "@fluentui/react-utilities": "^9.25.4", + "react": ">=16.14.0 <20.0.0", + "react-dom": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/components/topbar/src/application-drawer-v1.tsx b/components/topbar/src/application-drawer-v1.tsx index a385055c..b23557f1 100644 --- a/components/topbar/src/application-drawer-v1.tsx +++ b/components/topbar/src/application-drawer-v1.tsx @@ -12,7 +12,7 @@ import { tokens, } from "@fluentui/react-components"; import { ArrowRightRegular, Dismiss20Regular } from "@fluentui/react-icons"; -import React, { useState } from "react"; +import { ReactElement, useState } from "react"; import { useApplicationDrawerStyles } from "./application-drawer-v1.styles"; import { ApplicationDrawerContent, @@ -95,7 +95,7 @@ const ApplicationGroupTitle = ({ application, }: { application: ApplicationDrawerContent; -}): JSX.Element => { +}): ReactElement => { const styles = useApplicationDrawerStyles(); const appStyles = useApplicationStyles(); @@ -117,7 +117,7 @@ const ApplicationGroupTitle = ({ }; const iconConverter = ( - icon: JSX.Element, + icon: ReactElement, isCurrent: boolean, applicationArea: ApplicationArea ) => { @@ -141,7 +141,7 @@ const SingleApplication = ({ currentSelectionId: string; onChange: (id: string) => void; applicationArea: ApplicationArea; -}): JSX.Element => { +}): ReactElement => { const styles = useApplicationDrawerStyles(); return ( @@ -174,7 +174,7 @@ const ApplicationWithChildren = ({ currentSelectionId: string; onChange: (id: string) => void; applicationArea: ApplicationArea; -}): JSX.Element => { +}): ReactElement => { const styles = useApplicationDrawerStyles(); return ( diff --git a/components/topbar/src/application-drawer-v2.tsx b/components/topbar/src/application-drawer-v2.tsx index 6f756f4c..8b16022d 100644 --- a/components/topbar/src/application-drawer-v2.tsx +++ b/components/topbar/src/application-drawer-v2.tsx @@ -21,7 +21,7 @@ import { GridDots20Regular, bundleIcon, } from "@fluentui/react-icons"; -import React, { useState } from "react"; +import { ReactElement, useState } from "react"; import { useApplicationDrawerV2Styles } from "./application-drawer-v2.styles"; import { ApplicationDrawerContent, @@ -78,7 +78,7 @@ const ApplicationGroupTitle = ({ application, }: { application: ApplicationDrawerContent; -}): JSX.Element => { +}): ReactElement => { const styles = useApplicationDrawerV2Styles(); return ( @@ -95,10 +95,10 @@ const SingleApplication = ({ application: SingleApplicationDrawerContent; onChange: (id: string) => void; isSelected: boolean; -}): JSX.Element => { +}): ReactElement => { const styles = useApplicationDrawerV2Styles(); - const AppIcon = (): JSX.Element => { + const AppIcon = (): ReactElement => { return (
{application.icon} @@ -106,7 +106,7 @@ const SingleApplication = ({ ); }; - const AppLabel = (): JSX.Element => { + const AppLabel = (): ReactElement => { return isSelected ? ( {application.label} ) : ( @@ -147,7 +147,7 @@ const ApplicationWithChildren = ({ application: ApplicationDrawerContent; onChange: (id: string) => void; selectedId: string; -}): JSX.Element => { +}): ReactElement => { return ( <> diff --git a/components/topbar/src/application-drawer.tsx b/components/topbar/src/application-drawer.tsx index 2fbe7903..69382caf 100644 --- a/components/topbar/src/application-drawer.tsx +++ b/components/topbar/src/application-drawer.tsx @@ -1,4 +1,3 @@ -import React from "react"; import { ApplicationDrawerV1 } from "./application-drawer-v1"; import { ApplicationDrawerV2 } from "./application-drawer-v2"; import { ApplicationDrawerProps } from "./application-drawer.types"; diff --git a/components/topbar/src/application-drawer.types.ts b/components/topbar/src/application-drawer.types.ts index 8a895ca5..dc0075f9 100644 --- a/components/topbar/src/application-drawer.types.ts +++ b/components/topbar/src/application-drawer.types.ts @@ -1,3 +1,4 @@ +import { ReactElement } from "react"; export type ApplicationDrawerContent = SingleApplicationDrawerContent & { children?: SingleApplicationDrawerContent[]; }; @@ -9,7 +10,7 @@ export type SingleApplicationDrawerContent = { * For proper rendering, this should be a bundled filled and unfilled version of an icon. * Created with bundleIcon(). */ - icon: JSX.Element; + icon: ReactElement; /** Label to show in opened drawer. */ label: string; /** @@ -37,7 +38,7 @@ export type ApplicationDrawerProps = { */ version?: "v1" | "v2"; link?: { text: string; url: string }; - title: JSX.Element; + title: ReactElement; content?: ApplicationDrawerContent[]; applicationId: string; onChange?: (id: string) => void; diff --git a/components/topbar/src/application-menu.tsx b/components/topbar/src/application-menu.tsx index eaaa83fb..98215214 100644 --- a/components/topbar/src/application-menu.tsx +++ b/components/topbar/src/application-menu.tsx @@ -9,7 +9,6 @@ import { Text, mergeClasses, } from "@fluentui/react-components"; -import React from "react"; import { ApplicationMenuProps } from "./application-menu.types"; import { appIcon, appLabel } from "./application-utils"; import { useApplicationStyles } from "./application.styles"; diff --git a/components/topbar/src/application-menu.types.ts b/components/topbar/src/application-menu.types.ts index d8938a7f..169babf9 100644 --- a/components/topbar/src/application-menu.types.ts +++ b/components/topbar/src/application-menu.types.ts @@ -1,13 +1,14 @@ +import { ReactElement } from "react"; export type ApplicationOption = { id: string; - icon?: JSX.Element; + icon?: ReactElement; label?: string; url?: string; group?: string; }; export type ApplicationMenuProps = { - customContent?: JSX.Element; + customContent?: ReactElement; options?: ApplicationOption[]; value: string; onChange: (id: string) => void; diff --git a/components/topbar/src/application-utils.tsx b/components/topbar/src/application-utils.tsx index 842f2292..c91115bf 100644 --- a/components/topbar/src/application-utils.tsx +++ b/components/topbar/src/application-utils.tsx @@ -8,7 +8,7 @@ import { HomeMore20Filled, bundleIcon, } from "@fluentui/react-icons"; -import React from "react"; +import { ReactElement } from "react"; import { ApplicationDrawerContent, SingleApplicationDrawerContent, @@ -34,7 +34,7 @@ export function appLabel(t: TranslationFn, id: string): string { return id; } -export function appIcon(id: string, filled = false): JSX.Element { +export function appIcon(id: string, filled = false): ReactElement { if (isMySystemsAppId(id)) { return filled ? defaultMySystemsAppData[id].filledIcon @@ -48,7 +48,7 @@ export const ApplicationAreaFlaworedIcon = ({ icon, }: { applicationArea?: ApplicationArea; - icon: JSX.Element; + icon: ReactElement; }) => { const styles = useApplicationStyles(); diff --git a/components/topbar/src/applications.tsx b/components/topbar/src/applications.tsx index 8fc1fd74..8ea46ef9 100644 --- a/components/topbar/src/applications.tsx +++ b/components/topbar/src/applications.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { BoxMultipleFilled, BoxMultipleRegular, @@ -15,6 +13,7 @@ import { VideoClipMultipleRegular, bundleIcon, } from "@fluentui/react-icons"; +import { ReactElement } from "react"; import { TranslationKey } from "./translation-context"; const MySystemsIcon = bundleIcon(HomeMoreFilled, HomeMoreRegular); @@ -51,13 +50,13 @@ export function isMySystemsAppId(name: unknown): name is MySystemsAppId { } export interface MySystemsAppData { - readonly icon: JSX.Element; + readonly icon: ReactElement; readonly labelKey: TranslationKey; } export const defaultMySystemsAppData: Record< MySystemsAppId, - MySystemsAppData & { filledIcon: JSX.Element } + MySystemsAppData & { filledIcon: ReactElement } > = { dm: { icon: , diff --git a/components/topbar/src/organization-menu.types.ts b/components/topbar/src/organization-menu.types.ts index 344b73da..64a2eee7 100644 --- a/components/topbar/src/organization-menu.types.ts +++ b/components/topbar/src/organization-menu.types.ts @@ -1,4 +1,4 @@ -import { PropsWithChildren } from "react"; +import { type PropsWithChildren, ReactElement } from "react"; export type OrganizationOption = { id: string; @@ -7,7 +7,7 @@ export type OrganizationOption = { export type OrganizationMenuProps = PropsWithChildren<{ readonly value: string; - readonly customContent?: JSX.Element; + readonly customContent?: ReactElement; readonly onChange: (id: string) => void; readonly options?: OrganizationOption[]; readonly filter?: { showFilter: boolean; placeholderText: string }; diff --git a/components/topbar/src/profile-language-submenu.tsx b/components/topbar/src/profile-language-submenu.tsx index 3d025ada..dcd0a1ee 100644 --- a/components/topbar/src/profile-language-submenu.tsx +++ b/components/topbar/src/profile-language-submenu.tsx @@ -12,7 +12,6 @@ import { LocalLanguageRegular, bundleIcon, } from "@fluentui/react-icons"; -import React from "react"; import { useProfileLanguageSubmenuStyles } from "./profile-language-submenu.styles"; import { LanguageSubmenuProps } from "./profile-menu.types"; import { useTranslation } from "./translation-context"; diff --git a/components/topbar/src/profile-menu.tsx b/components/topbar/src/profile-menu.tsx index 4aa0d7d0..1a8b1fc0 100644 --- a/components/topbar/src/profile-menu.tsx +++ b/components/topbar/src/profile-menu.tsx @@ -15,7 +15,7 @@ import { SignOutRegular, bundleIcon, } from "@fluentui/react-icons"; -import React, { useCallback } from "react"; +import { useCallback } from "react"; import { LanguageSubmenu } from "./profile-language-submenu"; import { ProfileMenuProps } from "./profile-menu.types"; import { ThemeSubmenu } from "./profile-theme-submenu"; diff --git a/components/topbar/src/profile-menu.types.ts b/components/topbar/src/profile-menu.types.ts index e78de1fe..284b2986 100644 --- a/components/topbar/src/profile-menu.types.ts +++ b/components/topbar/src/profile-menu.types.ts @@ -32,7 +32,7 @@ export type UserInformationProps = { }; export type ProfileMenuProps = UserInformationProps & { - readonly customContent?: JSX.Element; + readonly customContent?: ReactElement; readonly showCustomContentTopDivider?: boolean; readonly hasNotification?: boolean; readonly notificationIcon?: ReactElement; diff --git a/components/topbar/src/profile-theme-submenu.tsx b/components/topbar/src/profile-theme-submenu.tsx index ff01919e..8bcea76d 100644 --- a/components/topbar/src/profile-theme-submenu.tsx +++ b/components/topbar/src/profile-theme-submenu.tsx @@ -12,7 +12,6 @@ import { DarkThemeRegular, bundleIcon, } from "@fluentui/react-icons"; -import React from "react"; import { ThemeSubmenuProps } from "./profile-menu.types"; import { useTranslation } from "./translation-context"; diff --git a/components/topbar/src/profile-user-information.tsx b/components/topbar/src/profile-user-information.tsx index 5bc8dcb8..73ecf534 100644 --- a/components/topbar/src/profile-user-information.tsx +++ b/components/topbar/src/profile-user-information.tsx @@ -1,5 +1,4 @@ import { Persona } from "@fluentui/react-components"; -import React from "react"; import { UserInformationProps } from "./profile-menu.types"; import { useUserInfoStyles } from "./profile-user-information.styles"; diff --git a/components/topbar/src/top-bar.spec.tsx b/components/topbar/src/top-bar.spec.tsx index ddea100e..8d3225fc 100644 --- a/components/topbar/src/top-bar.spec.tsx +++ b/components/topbar/src/top-bar.spec.tsx @@ -1,5 +1,5 @@ import { render } from "@testing-library/react"; -import React, { act } from "react"; +import { act } from "react"; import { TopBar } from "./top-bar"; describe("Topbar", () => { diff --git a/components/topbar/src/top-bar.tsx b/components/topbar/src/top-bar.tsx index dccbc829..8152b0ea 100644 --- a/components/topbar/src/top-bar.tsx +++ b/components/topbar/src/top-bar.tsx @@ -1,5 +1,5 @@ import { Divider, mergeClasses } from "@fluentui/react-components"; -import React, { ForwardedRef, forwardRef } from "react"; +import { ForwardedRef, forwardRef } from "react"; import { ApplicationDrawer } from "./application-drawer"; import { ApplicationMenu } from "./application-menu"; import { OrganizationMenu } from "./organization-menu"; diff --git a/components/topbar/src/top-bar.types.ts b/components/topbar/src/top-bar.types.ts index 887c5237..6a95545a 100644 --- a/components/topbar/src/top-bar.types.ts +++ b/components/topbar/src/top-bar.types.ts @@ -1,3 +1,4 @@ +import { ReactElement } from "react"; import { ApplicationDrawerProps } from "./application-drawer.types"; import { ApplicationMenuProps } from "./application-menu.types"; import { OrganizationMenuProps } from "./organization-menu.types"; @@ -20,10 +21,10 @@ export type TopBarProps = { */ readonly appDrawer?: ApplicationDrawerProps; readonly children?: ReadonlyArray; - readonly customContent?: JSX.Element; - readonly leftCustomContent?: JSX.Element; + readonly customContent?: ReactElement; + readonly leftCustomContent?: ReactElement; readonly orgMenu?: OrganizationMenuProps; readonly profileMenu?: ProfileMenuProps; readonly applicationArea?: ApplicationArea; - readonly centerCustomContent?: JSX.Element; + readonly centerCustomContent?: ReactElement; }; diff --git a/components/topbar/src/translation-provider.tsx b/components/topbar/src/translation-provider.tsx index 4a21c135..6d4c58c3 100644 --- a/components/topbar/src/translation-provider.tsx +++ b/components/topbar/src/translation-provider.tsx @@ -1,4 +1,4 @@ -import React, { PropsWithChildren, useCallback } from "react"; +import { PropsWithChildren, useCallback } from "react"; import { SupportedLocale, isSupportedLocale } from "./languages"; import { TranslationContext, Translations } from "./translation-context"; import { languageName, translations } from "./translations"; diff --git a/examples/package.json b/examples/package.json index 2a1fa3b0..e1cb0c0d 100644 --- a/examples/package.json +++ b/examples/package.json @@ -33,12 +33,12 @@ "@axiscommunications/fluent-styles": "workspace:*", "@axiscommunications/fluent-theme": "workspace:*", "@axiscommunications/fluent-topbar": "workspace:*", - "@fluentui/react-components": "^9.62.0", - "@fluentui/react-context-selector": "^9.1.76", - "@fluentui/react-icons": "^2.0.297", + "@fluentui/react-components": "^9.72.7", + "@fluentui/react-context-selector": "^9.2.12", + "@fluentui/react-icons": "^2.0.315", "@vitejs/plugin-react": "^4.4.1", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", "react-router-dom": "6.30.0", "react-syntax-highlighter": "15.6.1", "scheduler": "0.26.0", @@ -47,8 +47,8 @@ "devDependencies": { "@playwright/test": "1.52.0", "@types/node": "^22.15.3", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", "@types/react-syntax-highlighter": "15.5.13", "typescript": "^5.8.3" } diff --git a/examples/src/App.tsx b/examples/src/App.tsx index 5a1e04d7..f19cbcce 100644 --- a/examples/src/App.tsx +++ b/examples/src/App.tsx @@ -1,6 +1,6 @@ import { useScrollStaticStyles } from "@axiscommunications/fluent-styles"; import { FluentProvider } from "@fluentui/react-components"; -import React, { useMemo } from "react"; +import { ReactElement, useMemo } from "react"; import { HashRouter, Route, Routes } from "react-router-dom"; import { useAppContext } from "./context/ApplicationStateProvider"; @@ -51,7 +51,7 @@ export const App = () => { ); }; -const routeElements: Record = { +const routeElements: Record = { [routes.mainMenu]: , [routes.Home]: , [routes.Theme]: , diff --git a/examples/src/components/main-menu/main-menu.tsx b/examples/src/components/main-menu/main-menu.tsx index 2fd0a97f..66500858 100644 --- a/examples/src/components/main-menu/main-menu.tsx +++ b/examples/src/components/main-menu/main-menu.tsx @@ -18,7 +18,7 @@ import { SettingsRegular, bundleIcon, } from "@fluentui/react-icons"; -import React, { useEffect, useState } from "react"; +import { useEffect, useState } from "react"; import { useLocation, useNavigate } from "react-router-dom"; import { routes } from "../../routing/routes"; diff --git a/examples/src/components/navigation-menu/navigation-footer.tsx b/examples/src/components/navigation-menu/navigation-footer.tsx index db04a34f..1053bd56 100644 --- a/examples/src/components/navigation-menu/navigation-footer.tsx +++ b/examples/src/components/navigation-menu/navigation-footer.tsx @@ -9,7 +9,6 @@ import { shorthands, tokens, } from "@fluentui/react-components"; -import React from "react"; import { GitHubUrls } from "../../constants/constants"; const componentId = "navigation-footer"; diff --git a/examples/src/components/navigation-menu/navigation-menu-list.tsx b/examples/src/components/navigation-menu/navigation-menu-list.tsx index 5f1e6c3a..b860cd0d 100644 --- a/examples/src/components/navigation-menu/navigation-menu-list.tsx +++ b/examples/src/components/navigation-menu/navigation-menu-list.tsx @@ -1,5 +1,5 @@ import { MenuList } from "@fluentui/react-components"; -import React, { useCallback, useMemo } from "react"; +import { useCallback, useMemo } from "react"; import { useLocation, useNavigate } from "react-router-dom"; import { RouteCategory, getRouteByCategory } from "../../routing/route-map"; diff --git a/examples/src/components/navigation-menu/navigation-menu.item.tsx b/examples/src/components/navigation-menu/navigation-menu.item.tsx index d7ef1b17..189c140c 100644 --- a/examples/src/components/navigation-menu/navigation-menu.item.tsx +++ b/examples/src/components/navigation-menu/navigation-menu.item.tsx @@ -5,7 +5,6 @@ import { mergeClasses, tokens, } from "@fluentui/react-components"; -import React from "react"; const componentId = "navigation-menu-item"; export const navigationMenuItemClassNames = { diff --git a/examples/src/components/navigation-menu/navigation-menu.tsx b/examples/src/components/navigation-menu/navigation-menu.tsx index b1ec3bc3..e9af34c4 100644 --- a/examples/src/components/navigation-menu/navigation-menu.tsx +++ b/examples/src/components/navigation-menu/navigation-menu.tsx @@ -14,7 +14,6 @@ import { tokens, } from "@fluentui/react-components"; import { HomeFilled, HomeRegular, bundleIcon } from "@fluentui/react-icons"; -import React from "react"; import { useNavigate } from "react-router-dom"; import { RouteCategory } from "../../routing/route-map"; import { routes } from "../../routing/routes"; diff --git a/examples/src/components/simple-header.tsx b/examples/src/components/simple-header.tsx index f44fe5e8..c98cd72c 100644 --- a/examples/src/components/simple-header.tsx +++ b/examples/src/components/simple-header.tsx @@ -1,4 +1,4 @@ -import React, { PropsWithChildren } from "react"; +import { PropsWithChildren } from "react"; import { makeStyles, diff --git a/examples/src/components/story/story-code-block-accordion.tsx b/examples/src/components/story/story-code-block-accordion.tsx index 309723e3..ea95d4b5 100644 --- a/examples/src/components/story/story-code-block-accordion.tsx +++ b/examples/src/components/story/story-code-block-accordion.tsx @@ -7,7 +7,6 @@ import { shorthands, tokens, } from "@fluentui/react-components"; -import React from "react"; import { StoryCodeBlock } from "./story-code-block"; import { CopyButton } from "./story-code-copy"; diff --git a/examples/src/components/story/story-code-block.tsx b/examples/src/components/story/story-code-block.tsx index 0bb34f09..885bb102 100644 --- a/examples/src/components/story/story-code-block.tsx +++ b/examples/src/components/story/story-code-block.tsx @@ -1,5 +1,4 @@ import { makeStyles, tokens } from "@fluentui/react-components"; -import React from "react"; import SyntaxHighlighter from "react-syntax-highlighter"; import { CopyButton } from "./story-code-copy"; diff --git a/examples/src/components/story/story-navigation/story-navigation-menu-item.tsx b/examples/src/components/story/story-navigation/story-navigation-menu-item.tsx index e3ff7387..783b729c 100644 --- a/examples/src/components/story/story-navigation/story-navigation-menu-item.tsx +++ b/examples/src/components/story/story-navigation/story-navigation-menu-item.tsx @@ -5,7 +5,6 @@ import { mergeClasses, tokens, } from "@fluentui/react-components"; -import React from "react"; const componentId = "navigation-menu-item"; export const navigationMenuItemClassNames = { diff --git a/examples/src/components/story/story-navigation/story-page-navigation.tsx b/examples/src/components/story/story-navigation/story-page-navigation.tsx index 6a5485fd..f3897fcd 100644 --- a/examples/src/components/story/story-navigation/story-page-navigation.tsx +++ b/examples/src/components/story/story-navigation/story-page-navigation.tsx @@ -1,5 +1,5 @@ import { MenuList } from "@fluentui/react-components"; -import React, { useEffect, useMemo, useState } from "react"; +import { useEffect, useMemo, useState } from "react"; import { useLocation, useNavigate } from "react-router-dom"; import { StoryNavigationMenuItem } from "./story-navigation-menu-item"; diff --git a/examples/src/components/story/story-page-header.tsx b/examples/src/components/story/story-page-header.tsx index 1190fea8..471dfaa6 100644 --- a/examples/src/components/story/story-page-header.tsx +++ b/examples/src/components/story/story-page-header.tsx @@ -1,4 +1,4 @@ -import React, { PropsWithChildren } from "react"; +import { PropsWithChildren } from "react"; import { Caption1, diff --git a/examples/src/components/story/story-page.tsx b/examples/src/components/story/story-page.tsx index 21e8aef0..f237b671 100644 --- a/examples/src/components/story/story-page.tsx +++ b/examples/src/components/story/story-page.tsx @@ -9,7 +9,7 @@ import { shorthands, tokens, } from "@fluentui/react-components"; -import React, { PropsWithChildren } from "react"; +import { PropsWithChildren, ReactElement } from "react"; import { StoryPageHeader } from "./story-page-header"; import { EStoryStatus } from "./story-status"; @@ -108,8 +108,8 @@ type TStoryPage = { ghPackage: string; ghUrl?: string; description?: string; - customHeader?: JSX.Element; - navigation?: JSX.Element; + customHeader?: ReactElement; + navigation?: ReactElement; status?: EStoryStatus[]; }; diff --git a/examples/src/components/story/story-section-header.tsx b/examples/src/components/story/story-section-header.tsx index b8bdfb2a..006f1528 100644 --- a/examples/src/components/story/story-section-header.tsx +++ b/examples/src/components/story/story-section-header.tsx @@ -1,4 +1,4 @@ -import React, { PropsWithChildren } from "react"; +import { PropsWithChildren } from "react"; import { Caption2, diff --git a/examples/src/components/story/story-section.tsx b/examples/src/components/story/story-section.tsx index bcb311aa..1c6b7456 100644 --- a/examples/src/components/story/story-section.tsx +++ b/examples/src/components/story/story-section.tsx @@ -1,10 +1,11 @@ import { + JSXIntrinsicElement, makeStyles, mergeClasses, shorthands, tokens, } from "@fluentui/react-components"; -import React, { PropsWithChildren } from "react"; +import { PropsWithChildren } from "react"; import { StorySectionHeader } from "./story-section-header"; const componentId = "story-section"; @@ -38,7 +39,7 @@ export function useStorySectionStyles() { export type TStorySection = { title?: string; description?: string; -} & JSX.IntrinsicElements["div"]; +} & JSXIntrinsicElement<"div">; export function StorySection({ title, diff --git a/examples/src/components/story/story-status.tsx b/examples/src/components/story/story-status.tsx index b4843902..3f36c77a 100644 --- a/examples/src/components/story/story-status.tsx +++ b/examples/src/components/story/story-status.tsx @@ -6,7 +6,7 @@ import { shorthands, tokens, } from "@fluentui/react-components"; -import React from "react"; +import { ReactElement } from "react"; /** * statuses are sorted in same order the listed in enum @@ -20,7 +20,7 @@ export enum EStoryStatus { UNSTABLE, } -const STATUS_BADGES: Record = { +const STATUS_BADGES: Record = { [EStoryStatus.WIP]: ( a - b); - const _renderStatuses = (status: EStoryStatus): JSX.Element => { + const _renderStatuses = (status: EStoryStatus): ReactElement => { return STATUS_BADGES[status]; }; diff --git a/examples/src/components/story/story.utils.tsx b/examples/src/components/story/story.utils.tsx index e01f9536..cdaa9d7d 100644 --- a/examples/src/components/story/story.utils.tsx +++ b/examples/src/components/story/story.utils.tsx @@ -1,4 +1,4 @@ -import React, { useMemo } from "react"; +import { ReactElement, useMemo } from "react"; import { StoryCodeBlockAccordion } from "./story-code-block-accordion"; import { StoryPageNavigation, @@ -7,7 +7,7 @@ import { import { StorySection, TStorySection } from "./story-section"; export type pageData = { - example: JSX.Element; + example: ReactElement; codeString?: string; storySectionProps?: TStorySection; } & TStoryNavigationLink; diff --git a/examples/src/landingpage/index.tsx b/examples/src/landingpage/index.tsx index 91ffffdb..991647ad 100644 --- a/examples/src/landingpage/index.tsx +++ b/examples/src/landingpage/index.tsx @@ -11,7 +11,7 @@ import { IconsRegular, PuzzlePieceRegular, } from "@fluentui/react-icons"; -import React, { useCallback } from "react"; +import { useCallback } from "react"; import { useNavigate } from "react-router-dom"; import { TestId } from "../../system-test/util/test-id"; import { RouteCategory, getRouteByCategory } from "../routing/route-map"; diff --git a/examples/src/landingpage/welcome-card.tsx b/examples/src/landingpage/welcome-card.tsx index dbb27241..d4c4d7b9 100644 --- a/examples/src/landingpage/welcome-card.tsx +++ b/examples/src/landingpage/welcome-card.tsx @@ -7,8 +7,7 @@ import { shorthands, tokens, } from "@fluentui/react-components"; - -import React from "react"; +import { ReactElement } from "react"; const useStyles = makeStyles({ root: { @@ -28,7 +27,7 @@ type TCardExample = { title: string; description?: string; text?: string; - icon: JSX.Element; + icon: ReactElement; onClick: () => void; }; diff --git a/examples/src/layout.tsx b/examples/src/layout.tsx index acc87abf..fd2c035f 100644 --- a/examples/src/layout.tsx +++ b/examples/src/layout.tsx @@ -1,11 +1,11 @@ -import React from "react"; +import { ReactElement } from "react"; import { makeStyles, shorthands, tokens } from "@fluentui/react-components"; type LayoutProps = { - readonly header: JSX.Element; - readonly navigation: JSX.Element; - readonly content: JSX.Element; + readonly header: ReactElement; + readonly navigation: ReactElement; + readonly content: ReactElement; }; const useStyles = makeStyles({ diff --git a/examples/src/main-page.tsx b/examples/src/main-page.tsx index 07c8b74c..b873fd79 100644 --- a/examples/src/main-page.tsx +++ b/examples/src/main-page.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@fluentui/react-components"; -import React from "react"; import { Outlet } from "react-router-dom"; import { MainMenu } from "./components/main-menu/main-menu"; import { NavigationMenu } from "./components/navigation-menu/navigation-menu"; diff --git a/examples/src/routing/page-not-found.tsx b/examples/src/routing/page-not-found.tsx index 6d9879ef..af74388c 100644 --- a/examples/src/routing/page-not-found.tsx +++ b/examples/src/routing/page-not-found.tsx @@ -2,7 +2,6 @@ Copyright 2022 Axis Communications AB, SWEDEN. All rights reserved. ***************************************************************************** */ import { Title1, mergeClasses } from "@fluentui/react-components"; -import React from "react"; import { useFixedPageStyle, useLayoutStyles } from "../styles/page"; export const PageNotFound = () => { diff --git a/examples/src/stories/empty-view/examples/dialog.tsx b/examples/src/stories/empty-view/examples/dialog.tsx index b9f4ab91..240f7b2e 100644 --- a/examples/src/stories/empty-view/examples/dialog.tsx +++ b/examples/src/stories/empty-view/examples/dialog.tsx @@ -1,6 +1,5 @@ import { DialogEmptyView } from "@axiscommunications/fluent-empty-view"; import { DialogContent, tokens } from "@fluentui/react-components"; -import React from "react"; export function DialogEmptyViewExample() { return ( @@ -20,7 +19,6 @@ export function DialogEmptyViewExample() { } export const DialogEmptyViewExampleAsString = ` -import React from "react"; import { DialogEmptyView } from "@axiscommunications/fluent-empty-view"; export function EmptyViewExample() { diff --git a/examples/src/stories/empty-view/examples/main.tsx b/examples/src/stories/empty-view/examples/main.tsx index 96984160..2e211917 100644 --- a/examples/src/stories/empty-view/examples/main.tsx +++ b/examples/src/stories/empty-view/examples/main.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { Button } from "@fluentui/react-components"; import { ArrowSyncRegular } from "@fluentui/react-icons"; @@ -28,7 +26,6 @@ export function MainEmptyViewExample() { } export const MainEmptyViewExampleAsString = ` -import React from "react"; import { MainEmptyView } from "@axiscommunications/fluent-empty-view"; export function EmptyViewExample() { diff --git a/examples/src/stories/empty-view/examples/panel.tsx b/examples/src/stories/empty-view/examples/panel.tsx index 4cbdc506..b0872654 100644 --- a/examples/src/stories/empty-view/examples/panel.tsx +++ b/examples/src/stories/empty-view/examples/panel.tsx @@ -1,5 +1,4 @@ import { PanelEmptyView } from "@axiscommunications/fluent-empty-view"; -import React from "react"; export function PanelEmptyViewExample() { return ( @@ -14,7 +13,6 @@ export function PanelEmptyViewExample() { } export const PanelEmptyViewExampleAsString = ` -import React from "react"; import { PanelEmptyView } from "@axiscommunications/fluent-empty-view"; export function PanelEmptyViewExample() { diff --git a/examples/src/stories/empty-view/examples/submenu.tsx b/examples/src/stories/empty-view/examples/submenu.tsx index 6bae50f4..ac17827c 100644 --- a/examples/src/stories/empty-view/examples/submenu.tsx +++ b/examples/src/stories/empty-view/examples/submenu.tsx @@ -1,5 +1,4 @@ import { SubmenuEmptyView } from "@axiscommunications/fluent-empty-view"; -import React from "react"; export function SubmenuEmptyViewExample() { return ( @@ -10,7 +9,6 @@ export function SubmenuEmptyViewExample() { } export const SubmenuEmptyViewExampleAsString = ` -import React from "react"; import { SubmenuEmptyView } from "@axiscommunications/fluent-empty-view"; export function EmptyViewExample() { diff --git a/examples/src/stories/empty-view/page.tsx b/examples/src/stories/empty-view/page.tsx index a6f05de2..6b680657 100644 --- a/examples/src/stories/empty-view/page.tsx +++ b/examples/src/stories/empty-view/page.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { makeStyles } from "@fluentui/react-components"; import { StoryPage } from "../../components/story/story-page"; diff --git a/examples/src/stories/icons/components/icon-copy.tsx b/examples/src/stories/icons/components/icon-copy.tsx index 3d5ab65c..edce2c1e 100644 --- a/examples/src/stories/icons/components/icon-copy.tsx +++ b/examples/src/stories/icons/components/icon-copy.tsx @@ -1,6 +1,6 @@ import { Button, Tooltip } from "@fluentui/react-components"; import { RectangleLandscapeHintCopyRegular } from "@fluentui/react-icons"; -import React, { useCallback } from "react"; +import { useCallback } from "react"; type TIconCopy = { toolTip: string; diff --git a/examples/src/stories/icons/icon-page.tsx b/examples/src/stories/icons/icon-page.tsx index ca9fc026..7e0ffed3 100644 --- a/examples/src/stories/icons/icon-page.tsx +++ b/examples/src/stories/icons/icon-page.tsx @@ -1,6 +1,6 @@ import { AxisIconProps } from "@axiscommunications/fluent-icons"; import { Caption1 } from "@fluentui/react-components"; -import React from "react"; +import React, { ReactElement } from "react"; import { StoryCodeBlockAccordion } from "../../components/story/story-code-block-accordion"; import { StoryPage } from "../../components/story/story-page"; import { StorySection } from "../../components/story/story-section"; @@ -11,14 +11,14 @@ import { IconPageHeader } from "./components/icon-page-header"; import { useIconPage } from "./icon-page.hooks"; import { useStyles } from "./icon-page.styles"; -export const IconPage = (): JSX.Element => { +export const IconPage = (): ReactElement => { const gh = getGhInfoByKey(routes.IconCatalog); const { search, onSearchQueryChanged, filterByVariant, filterIcons } = useIconPage(); const styles = useStyles(); - const _renderIcon = (Icon: React.FC): JSX.Element => { + const _renderIcon = (Icon: React.FC): ReactElement => { return (
; }; diff --git a/examples/src/stories/illustrations/examples/bundle-illustration-smart.tsx b/examples/src/stories/illustrations/examples/bundle-illustration-smart.tsx index 8199c955..9c512778 100644 --- a/examples/src/stories/illustrations/examples/bundle-illustration-smart.tsx +++ b/examples/src/stories/illustrations/examples/bundle-illustration-smart.tsx @@ -3,7 +3,6 @@ import { AddUserLight, bundleIllustrationSmart, } from "@axiscommunications/fluent-illustrations"; -import React from "react"; const AddUserIllustrationSmart = bundleIllustrationSmart( AddUserDark, @@ -20,7 +19,6 @@ import { AddUserLight, bundleIllustrationSmart } from "@axiscommunications/fluent-illustrations"; -import React from "react"; const AddUserIllustrationSmart = bundleIllustrationSmart(AddUserDark, AddUserLight); diff --git a/examples/src/stories/illustrations/examples/bundle-illustration.tsx b/examples/src/stories/illustrations/examples/bundle-illustration.tsx index 68ecb385..4f0a2fbc 100644 --- a/examples/src/stories/illustrations/examples/bundle-illustration.tsx +++ b/examples/src/stories/illustrations/examples/bundle-illustration.tsx @@ -5,7 +5,7 @@ import { bundleIllustration, } from "@axiscommunications/fluent-illustrations"; import { Switch } from "@fluentui/react-components"; -import React, { useState } from "react"; +import { useState } from "react"; const AddUserIllustration = bundleIllustration(AddUserDark, AddUserLight); @@ -31,7 +31,7 @@ export function BundleIllustration() { export const BundleIllustrationExampleAsString = ` import { AddUserDark, AddUserLight, TBundleIllustrationVariant, bundleIllustration } from "@axiscommunications/fluent-illustrations"; import { Switch } from "@fluentui/react-components"; -import React, { useState } from "react"; +import { useState } from "react"; const AddUserIllustration = bundleIllustration(AddUserDark, AddUserLight) diff --git a/examples/src/stories/illustrations/examples/illustration-list.tsx b/examples/src/stories/illustrations/examples/illustration-list.tsx index 1bfa7a38..ea4b1b39 100644 --- a/examples/src/stories/illustrations/examples/illustration-list.tsx +++ b/examples/src/stories/illustrations/examples/illustration-list.tsx @@ -5,7 +5,7 @@ import { shorthands, tokens, } from "@fluentui/react-components"; -import React from "react"; +import React, { ReactElement } from "react"; import { IllustrationCopy } from "../components/illustration-copy"; import { IllustrationDialog } from "../components/illustration-dialog"; import { DEFAULT_ILLUSTRATION_WIDTH } from "../illustration-page.types"; @@ -44,7 +44,7 @@ export function IllustrationList({ const _renderIllustration = ( Illustration: React.FC - ): JSX.Element => { + ): ReactElement => { return (
{ +export const IllustrationPage = (): ReactElement => { const gh = getGhInfoByKey(routes.Illustrations); const { diff --git a/examples/src/stories/main-menu/examples/main-menu-vertical.tsx b/examples/src/stories/main-menu/examples/main-menu-vertical.tsx index 89f080ec..9fc361fa 100644 --- a/examples/src/stories/main-menu/examples/main-menu-vertical.tsx +++ b/examples/src/stories/main-menu/examples/main-menu-vertical.tsx @@ -19,7 +19,7 @@ import { SettingsRegular, bundleIcon, } from "@fluentui/react-icons"; -import React, { useState } from "react"; +import { useState } from "react"; const HomeIcon = bundleIcon(HomeFilled, HomeRegular); const RandomIcon = bundleIcon(CardUiFilled, CardUiRegular); @@ -96,7 +96,7 @@ import { SettingsFilled, SettingsRegular, } from "@fluentui/react-icons"; -import React, { useState } from "react"; + import { useState } from "react"; const HomeIcon = bundleIcon(HomeFilled, HomeRegular); const RandomIcon = bundleIcon(CardUiFilled, CardUiRegular); diff --git a/examples/src/stories/main-menu/examples/main-menu.tsx b/examples/src/stories/main-menu/examples/main-menu.tsx index 8e10d5f7..940dabb4 100644 --- a/examples/src/stories/main-menu/examples/main-menu.tsx +++ b/examples/src/stories/main-menu/examples/main-menu.tsx @@ -19,7 +19,7 @@ import { SettingsRegular, bundleIcon, } from "@fluentui/react-icons"; -import React, { useState } from "react"; +import { useState } from "react"; const HomeIcon = bundleIcon(HomeFilled, HomeRegular); const RandomIcon = bundleIcon(CardUiFilled, CardUiRegular); @@ -94,7 +94,7 @@ import { SettingsFilled, SettingsRegular, } from "@fluentui/react-icons"; -import React, { useState } from "react"; + import { useState } from "react"; const HomeIcon = bundleIcon(HomeFilled, HomeRegular); const RandomIcon = bundleIcon(CardUiFilled, CardUiRegular); diff --git a/examples/src/stories/main-menu/main-menu-page.tsx b/examples/src/stories/main-menu/main-menu-page.tsx index ebb5d87d..eae8c3fe 100644 --- a/examples/src/stories/main-menu/main-menu-page.tsx +++ b/examples/src/stories/main-menu/main-menu-page.tsx @@ -1,5 +1,4 @@ import { pageData } from "examples/src/components/story/story.utils"; -import React from "react"; import { StoryPage } from "../../components/story/story-page"; import { useExampleWithNavigation } from "../../components/story/story.utils"; import { getGhInfoByKey } from "../../routing/route-map"; diff --git a/examples/src/stories/password-input/password-input-example.tsx b/examples/src/stories/password-input/password-input-example.tsx index 60a0221e..75f9362f 100644 --- a/examples/src/stories/password-input/password-input-example.tsx +++ b/examples/src/stories/password-input/password-input-example.tsx @@ -1,12 +1,10 @@ import { PasswordInput } from "@axiscommunications/fluent-password-input"; -import React from "react"; export function PasswordInputExample() { return ; } export const PasswordInputExampleAsString = ` -import React from "react"; import { PasswordInput } from "@axiscommunications/fluent-password-input"; export function PasswordInputExample() { diff --git a/examples/src/stories/password-input/password-input-page.tsx b/examples/src/stories/password-input/password-input-page.tsx index b94546a4..c68c31bb 100644 --- a/examples/src/stories/password-input/password-input-page.tsx +++ b/examples/src/stories/password-input/password-input-page.tsx @@ -1,6 +1,5 @@ import { makeStyles } from "@fluentui/react-components"; import { pageData } from "examples/src/components/story/story.utils"; -import React from "react"; import { StoryPage } from "../../components/story/story-page"; import { useExampleWithNavigation } from "../../components/story/story.utils"; import { getGhInfoByKey } from "../../routing/route-map"; diff --git a/examples/src/stories/slider/examples/custom-example.tsx b/examples/src/stories/slider/examples/custom-example.tsx index c9dd584a..eeaa0523 100644 --- a/examples/src/stories/slider/examples/custom-example.tsx +++ b/examples/src/stories/slider/examples/custom-example.tsx @@ -1,6 +1,5 @@ import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; -import React from "react"; const useCustomizedSliderStyles = makeStyles({ thumb: { @@ -86,7 +85,6 @@ export function CustomSliderExample() { export const CustomSliderExampleAsString = ` import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; -import React from "react"; const useCustomizedSliderStyles = makeStyles({ thumb: { diff --git a/examples/src/stories/slider/examples/disabled-example.tsx b/examples/src/stories/slider/examples/disabled-example.tsx index dd354d58..f4756bda 100644 --- a/examples/src/stories/slider/examples/disabled-example.tsx +++ b/examples/src/stories/slider/examples/disabled-example.tsx @@ -1,5 +1,4 @@ import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function DisabledSliderExample() { return ( @@ -15,7 +14,6 @@ export function DisabledSliderExample() { export const DisabledSliderExampleAsString = ` import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function DisabledSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/dual-section-example.tsx b/examples/src/stories/slider/examples/dual-section-example.tsx index 965e949d..f3f4e036 100644 --- a/examples/src/stories/slider/examples/dual-section-example.tsx +++ b/examples/src/stories/slider/examples/dual-section-example.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; @@ -56,8 +54,6 @@ export function DualSectionSliderExample() { } export const DualSectionSliderExampleAsString = ` -import React from "react"; - import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; diff --git a/examples/src/stories/slider/examples/range-slider-with-section-example.tsx b/examples/src/stories/slider/examples/range-slider-with-section-example.tsx index 65c4f373..e1c6d7dd 100644 --- a/examples/src/stories/slider/examples/range-slider-with-section-example.tsx +++ b/examples/src/stories/slider/examples/range-slider-with-section-example.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { RangeSlider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; @@ -68,8 +66,6 @@ export function RangeSliderWithSectionExample() { } export const RangeSliderWithSectionExampleAsString = ` -import React from "react"; - import { RangeSlider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; diff --git a/examples/src/stories/slider/examples/range-slider-with-steps-example.tsx b/examples/src/stories/slider/examples/range-slider-with-steps-example.tsx index f1fd4b17..2fa0ad3e 100644 --- a/examples/src/stories/slider/examples/range-slider-with-steps-example.tsx +++ b/examples/src/stories/slider/examples/range-slider-with-steps-example.tsx @@ -1,5 +1,4 @@ import { RangeSlider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function WithStepsRangeSliderExample() { return ( @@ -16,7 +15,6 @@ export function WithStepsRangeSliderExample() { export const WithStepsRangeSliderExampleAsString = ` import { RangeSlider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function WithStepsRangeSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/range-slider-with-streps-and-marks-example.tsx b/examples/src/stories/slider/examples/range-slider-with-streps-and-marks-example.tsx index cf0f3091..27a3d943 100644 --- a/examples/src/stories/slider/examples/range-slider-with-streps-and-marks-example.tsx +++ b/examples/src/stories/slider/examples/range-slider-with-streps-and-marks-example.tsx @@ -1,5 +1,4 @@ import { RangeSlider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function WithStepsAndMarksRangeSliderExample() { return ( @@ -19,7 +18,6 @@ export function WithStepsAndMarksRangeSliderExample() { export const WithStepsAndMarksRangeSliderExampleAsString = ` import { RangeSlider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function WithStepsAndMarksRangeSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/regular-example.tsx b/examples/src/stories/slider/examples/regular-example.tsx index c85f8ebe..1ba791dc 100644 --- a/examples/src/stories/slider/examples/regular-example.tsx +++ b/examples/src/stories/slider/examples/regular-example.tsx @@ -1,5 +1,4 @@ import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function RegularSliderExample() { return ; @@ -7,7 +6,6 @@ export function RegularSliderExample() { export const RegularSliderExampleAsString = ` import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function RegularSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/small-example.tsx b/examples/src/stories/slider/examples/small-example.tsx index a206a464..a9794748 100644 --- a/examples/src/stories/slider/examples/small-example.tsx +++ b/examples/src/stories/slider/examples/small-example.tsx @@ -1,5 +1,4 @@ import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function SmallSliderExample() { return ; @@ -7,7 +6,6 @@ export function SmallSliderExample() { export const SmallSliderExampleAsString = ` import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function SmallSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/stepping-to-marks-example.tsx b/examples/src/stories/slider/examples/stepping-to-marks-example.tsx index f5a1fbfe..3174170f 100644 --- a/examples/src/stories/slider/examples/stepping-to-marks-example.tsx +++ b/examples/src/stories/slider/examples/stepping-to-marks-example.tsx @@ -1,5 +1,4 @@ import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function SteppingToMarksSliderExample() { return ( @@ -20,7 +19,6 @@ export function SteppingToMarksSliderExample() { export const SteppingToMarksSliderExampleAsString = ` import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function SteppingToMarksSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/transform-value-example.tsx b/examples/src/stories/slider/examples/transform-value-example.tsx index a097e4a5..7afb480a 100644 --- a/examples/src/stories/slider/examples/transform-value-example.tsx +++ b/examples/src/stories/slider/examples/transform-value-example.tsx @@ -1,5 +1,4 @@ import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function TransformValueSliderExample() { return ( @@ -15,7 +14,6 @@ export function TransformValueSliderExample() { export const TransformValueSliderExampleAsString = ` import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function TransformValueSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/triple-section-example-rtl.tsx b/examples/src/stories/slider/examples/triple-section-example-rtl.tsx index 5fe787df..7817b58a 100644 --- a/examples/src/stories/slider/examples/triple-section-example-rtl.tsx +++ b/examples/src/stories/slider/examples/triple-section-example-rtl.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; @@ -64,7 +62,6 @@ export function TripleSectionSliderExample() { } export const TripleSectionSliderExampleAsString = ` -import React from "react"; import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; diff --git a/examples/src/stories/slider/examples/triple-section-example.tsx b/examples/src/stories/slider/examples/triple-section-example.tsx index d6e98821..be69e5d8 100644 --- a/examples/src/stories/slider/examples/triple-section-example.tsx +++ b/examples/src/stories/slider/examples/triple-section-example.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; @@ -64,8 +62,6 @@ export function TripleSectionSliderExample() { } export const TripleSectionSliderExampleAsString = ` -import React from "react"; - import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; diff --git a/examples/src/stories/slider/examples/triple-section-no-zero-start-example.tsx b/examples/src/stories/slider/examples/triple-section-no-zero-start-example.tsx index 4cb3113b..d2ed3a81 100644 --- a/examples/src/stories/slider/examples/triple-section-no-zero-start-example.tsx +++ b/examples/src/stories/slider/examples/triple-section-no-zero-start-example.tsx @@ -1,5 +1,3 @@ -import React from "react"; - import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; @@ -67,8 +65,6 @@ export function TripleSectionSliderNoZeroStartExample() { } export const TripleSectionSliderNoZeroStartExampleAsString = ` -import React from "react"; - import { Slider } from "@axiscommunications/fluent-slider"; import { makeStyles, tokens } from "@fluentui/react-components"; diff --git a/examples/src/stories/slider/examples/with-external-buttons-example.tsx b/examples/src/stories/slider/examples/with-external-buttons-example.tsx index 2585f8ee..5b528f13 100644 --- a/examples/src/stories/slider/examples/with-external-buttons-example.tsx +++ b/examples/src/stories/slider/examples/with-external-buttons-example.tsx @@ -1,6 +1,6 @@ import { Slider, SliderOnChangeData } from "@axiscommunications/fluent-slider"; import { Button, makeStyles, tokens } from "@fluentui/react-components"; -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; const useSliderPageStyles = makeStyles({ sliderContainer: { @@ -47,7 +47,7 @@ export function ExternalButtonsSliderExample() { export const ExternalButtonsSliderExampleAsString = ` import { Slider, SliderOnChangeData } from "@axiscommunications/fluent-slider"; import { Button, makeStyles, tokens } from "@fluentui/react-components"; -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; const useSliderPageStyles = makeStyles({ sliderContainer: { diff --git a/examples/src/stories/slider/examples/with-marks-example.tsx b/examples/src/stories/slider/examples/with-marks-example.tsx index b680b09f..c4032975 100644 --- a/examples/src/stories/slider/examples/with-marks-example.tsx +++ b/examples/src/stories/slider/examples/with-marks-example.tsx @@ -1,5 +1,4 @@ import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function WithMarkSliderExample() { return ( @@ -19,7 +18,6 @@ export function WithMarkSliderExample() { export const WithMarkSliderExampleAsString = ` import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function WithMarkSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/with-range-example.tsx b/examples/src/stories/slider/examples/with-range-example.tsx index 4af6d4f3..dbd7bc2b 100644 --- a/examples/src/stories/slider/examples/with-range-example.tsx +++ b/examples/src/stories/slider/examples/with-range-example.tsx @@ -1,5 +1,4 @@ import { RangeSlider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function RangeSliderExample() { return ( @@ -21,7 +20,6 @@ export function RangeSliderExample() { export const RangeSliderExampleAsString = ` import { RangeSlider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function RangeSliderExample() { return ( diff --git a/examples/src/stories/slider/examples/with-steps-example.tsx b/examples/src/stories/slider/examples/with-steps-example.tsx index a34a8f93..2161e27c 100644 --- a/examples/src/stories/slider/examples/with-steps-example.tsx +++ b/examples/src/stories/slider/examples/with-steps-example.tsx @@ -1,5 +1,4 @@ import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function WithStepsSliderExample() { return ( @@ -16,7 +15,6 @@ export function WithStepsSliderExample() { export const WithStepsSliderExampleAsString = ` import { Slider } from "@axiscommunications/fluent-slider"; -import React from "react"; export function WithStepsSliderExample() { return ( diff --git a/examples/src/stories/slider/slider-page.tsx b/examples/src/stories/slider/slider-page.tsx index fd29318c..4c748a2b 100644 --- a/examples/src/stories/slider/slider-page.tsx +++ b/examples/src/stories/slider/slider-page.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@fluentui/react-components"; -import React from "react"; import { StoryPage } from "../../components/story/story-page"; import { pageData, diff --git a/examples/src/stories/stepper/examples/custom-style-example.tsx b/examples/src/stories/stepper/examples/custom-style-example.tsx index 67a2f704..5313a66b 100644 --- a/examples/src/stories/stepper/examples/custom-style-example.tsx +++ b/examples/src/stories/stepper/examples/custom-style-example.tsx @@ -4,7 +4,7 @@ import { StepperDialogClassNames, } from "@axiscommunications/fluent-stepper"; import { makeStyles } from "@fluentui/react-components"; -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; const useOverrideStyles = makeStyles({ root: { @@ -55,7 +55,7 @@ export function CustomStepperDialogExample() { } export const CustomStepperDialogExampleAsString = ` -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; import { DialogStep, StepperDialog, StepperDialogClassNames } from "@axiscommunications/fluent-stepper"; import { makeStyles } from "@fluentui/react-components"; diff --git a/examples/src/stories/stepper/examples/minimal-with-counter-stepper-example.tsx b/examples/src/stories/stepper/examples/minimal-with-counter-stepper-example.tsx index 65187561..f59f75b3 100644 --- a/examples/src/stories/stepper/examples/minimal-with-counter-stepper-example.tsx +++ b/examples/src/stories/stepper/examples/minimal-with-counter-stepper-example.tsx @@ -1,7 +1,6 @@ import { DialogStep, StepperDialog } from "@axiscommunications/fluent-stepper"; import { Body1 } from "@fluentui/react-components"; import { useCallback, useState } from "react"; -import React from "react"; const steps: DialogStep[] = [ { @@ -39,7 +38,7 @@ export function MinimalWithCustomFooterStepperDialogExample() { } export const MinimalWithCustomFooterStepperDialogExampleAsString = ` -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; import { DialogStep, diff --git a/examples/src/stories/stepper/examples/stepper-dialog-example.tsx b/examples/src/stories/stepper/examples/stepper-dialog-example.tsx index 273d6359..9f4a2d98 100644 --- a/examples/src/stories/stepper/examples/stepper-dialog-example.tsx +++ b/examples/src/stories/stepper/examples/stepper-dialog-example.tsx @@ -1,4 +1,4 @@ -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; import { DialogStep, StepperDialog } from "@axiscommunications/fluent-stepper"; @@ -38,7 +38,7 @@ export function StepperDialogExample() { } export const StepperDialogExampleAsString = ` -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; import { DialogStep, diff --git a/examples/src/stories/stepper/examples/vertical-stepper-dialog-example.tsx b/examples/src/stories/stepper/examples/vertical-stepper-dialog-example.tsx index 7e1b7765..300b604d 100644 --- a/examples/src/stories/stepper/examples/vertical-stepper-dialog-example.tsx +++ b/examples/src/stories/stepper/examples/vertical-stepper-dialog-example.tsx @@ -1,4 +1,4 @@ -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; import { DialogStep, StepperDialog } from "@axiscommunications/fluent-stepper"; @@ -38,7 +38,7 @@ export function VerticalStepperDialogExample() { } export const VerticalStepperDialogExampleAsString = ` -import React, { useCallback, useState } from "react"; +import { useCallback, useState } from "react"; import { DialogStep, diff --git a/examples/src/stories/stepper/stepper-page.tsx b/examples/src/stories/stepper/stepper-page.tsx index 9f45b9f3..72cee51f 100644 --- a/examples/src/stories/stepper/stepper-page.tsx +++ b/examples/src/stories/stepper/stepper-page.tsx @@ -1,4 +1,3 @@ -import React from "react"; import { StoryPage } from "../../components/story/story-page"; import { pageData, diff --git a/examples/src/stories/tab-list-utilities/tab-list-example.tsx b/examples/src/stories/tab-list-utilities/tab-list-example.tsx index 3afabba7..a54543b8 100644 --- a/examples/src/stories/tab-list-utilities/tab-list-example.tsx +++ b/examples/src/stories/tab-list-utilities/tab-list-example.tsx @@ -9,7 +9,7 @@ import { TabProps, } from "@fluentui/react-components"; import { HomeFilled, HomeRegular, bundleIcon } from "@fluentui/react-icons"; -import React, { useState } from "react"; +import { useState } from "react"; const HomeIcon = bundleIcon(HomeFilled, HomeRegular); @@ -88,7 +88,7 @@ import { TabProps, } from "@fluentui/react-components"; import { HomeFilled, HomeRegular, bundleIcon } from "@fluentui/react-icons"; -import React, { useState } from "react"; +import { useState } from "react"; const HomeIcon = bundleIcon(HomeFilled, HomeRegular); diff --git a/examples/src/stories/tab-list-utilities/tab-list-utilities-page.tsx b/examples/src/stories/tab-list-utilities/tab-list-utilities-page.tsx index 789eb398..3bcd8576 100644 --- a/examples/src/stories/tab-list-utilities/tab-list-utilities-page.tsx +++ b/examples/src/stories/tab-list-utilities/tab-list-utilities-page.tsx @@ -1,4 +1,3 @@ -import React from "react"; import { StoryPage } from "../../components/story/story-page"; import { pageData, diff --git a/examples/src/stories/table-utilities/table-example.tsx b/examples/src/stories/table-utilities/table-example.tsx index cc97b6fe..699c994b 100644 --- a/examples/src/stories/table-utilities/table-example.tsx +++ b/examples/src/stories/table-utilities/table-example.tsx @@ -33,7 +33,7 @@ import { ChevronRight16Regular, bundleIcon, } from "@fluentui/react-icons"; -import React, { useMemo, useState } from "react"; +import { useMemo, useState } from "react"; import { useAppContext } from "../../context/ApplicationStateProvider"; const users = [ @@ -375,7 +375,7 @@ import { ChevronRight16Regular, bundleIcon, } from "@fluentui/react-icons"; -import React, { useMemo, useState } from "react"; +import { useMemo, useState } from "react"; import { useAppContext } from "../../context/ApplicationStateProvider"; const users = [ diff --git a/examples/src/stories/table-utilities/table-utlities-page.tsx b/examples/src/stories/table-utilities/table-utlities-page.tsx index a1732be8..ad6350f0 100644 --- a/examples/src/stories/table-utilities/table-utlities-page.tsx +++ b/examples/src/stories/table-utilities/table-utlities-page.tsx @@ -1,4 +1,3 @@ -import React from "react"; import { StoryPage } from "../../components/story/story-page"; import { pageData, diff --git a/examples/src/stories/theme/components/color-tokens.tsx b/examples/src/stories/theme/components/color-tokens.tsx index b725f382..016c016c 100644 --- a/examples/src/stories/theme/components/color-tokens.tsx +++ b/examples/src/stories/theme/components/color-tokens.tsx @@ -5,7 +5,6 @@ import { shorthands, tokens, } from "@fluentui/react-components"; -import React from "react"; import { TaxisThemeVariants } from "../theme-page.types"; const componentId = "color-tokens"; diff --git a/hooks/package.json b/hooks/package.json index ac2ba205..786bbe4b 100644 --- a/hooks/package.json +++ b/hooks/package.json @@ -26,13 +26,13 @@ "lint": "tsc --noEmit && biome check" }, "devDependencies": { - "@types/react": "^18.3.12", + "@types/react": "^19.2.6", "esbuild": "^0.25.3", - "react": "^18.2.0", + "react": "^19.2.0", "typescript": "^5.8.3" }, "peerDependencies": { - "react": ">=16.8.0 <19.0.0" + "react": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/icons/package.json b/icons/package.json index 2bcf1692..940653b0 100644 --- a/icons/package.json +++ b/icons/package.json @@ -39,22 +39,22 @@ "react:svg:unfill": "find ./dist/react-svg -type f -name '*.svg' -exec sed -i.bak 's/fill=\"none\"//g' '{}' \\; && find ./dist/react-svg -type f -name '*.bak' -delete" }, "dependencies": { - "@griffel/react": "^1.5.29" + "@griffel/react": "^1.5.32" }, "devDependencies": { "@svgr/core": "^5.5.0", "@types/node": "^22.15.3", - "@types/react": "^18.3.12", + "@types/react": "^19.2.6", "esbuild": "^0.25.3", "icon-font-generator": "^2.1.11", - "react": "^18.2.0", + "react": "^19.2.0", "replace": "^1.2.2", "svgo": "1.3.2", "typescript": "^5.8.3", "yargs": "^14.2.3" }, "peerDependencies": { - "react": ">=16.8.0 <19.0.0" + "react": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/icons/src/utils/createFluentIcon.ts b/icons/src/utils/createFluentIcon.ts index 803348a3..c95f82f1 100644 --- a/icons/src/utils/createFluentIcon.ts +++ b/icons/src/utils/createFluentIcon.ts @@ -1,9 +1,9 @@ -import * as React from "react"; -import { useIconState } from "./useIconState"; +import { ReactElement, createElement } from "react"; import { AxisIconProps } from "./FluentIconsProps.types"; +import { useIconState } from "./useIconState"; export type FluentIcon = { - (props: AxisIconProps): JSX.Element; + (props: AxisIconProps): ReactElement; displayName?: string; }; @@ -21,11 +21,11 @@ export const createFluentIcon = ( viewBox: `0 0 ${viewBoxWidth} ${viewBoxWidth}`, xmlns: "http://www.w3.org/2000/svg", }; - return React.createElement( + return createElement( "svg", state, ...paths.map((d) => - React.createElement("path", { + createElement("path", { d, fill: state.fill, // We are designating primaryFill as the primary color for filling. If not provided, it defaults to null // key: i // The key for static children is needless diff --git a/icons/src/utils/wrapIcon.tsx b/icons/src/utils/wrapIcon.tsx index bf8da0f7..36512b01 100644 --- a/icons/src/utils/wrapIcon.tsx +++ b/icons/src/utils/wrapIcon.tsx @@ -1,9 +1,9 @@ -import React from "react"; +import type { ReactElement } from "react"; import { AxisIconProps } from "./FluentIconsProps.types"; import { useIconState } from "./useIconState"; const wrapIcon = ( - Icon: (iconProps: AxisIconProps) => JSX.Element, + Icon: (iconProps: AxisIconProps) => ReactElement, displayName?: string ) => { const WrappedIcon = (props: AxisIconProps) => { diff --git a/illustrations/docs/README.md b/illustrations/docs/README.md index 0b920b28..fc959b67 100644 --- a/illustrations/docs/README.md +++ b/illustrations/docs/README.md @@ -11,7 +11,6 @@ Your can consume illustrations as `React Functional Components` example: ```tsx -import React from "react"; import { AddUserDark, AddUserLight } from "@axiscommunications/fluent-illustrations"; diff --git a/illustrations/package.json b/illustrations/package.json index bd417daf..bbd34cab 100644 --- a/illustrations/package.json +++ b/illustrations/package.json @@ -36,13 +36,13 @@ "devDependencies": { "@axiscommunications/fluent-theme": "workspace:*", "@testing-library/jest-dom": "^6.6.3", - "@testing-library/react": "^14.2.1", + "@testing-library/react": "^16.3.0", "@types/node": "^22.15.3", - "@types/react": "^18.3.12", + "@types/react": "^19.2.6", "@types/yargs": "17.0.32", "esbuild": "^0.25.3", "jsdom": "^26.1.0", - "react": "^18.2.0", + "react": "^19.2.0", "svgo": "1.3.2", "typescript": "^5.8.3", "vitest": "^3.1.2", @@ -50,7 +50,7 @@ }, "peerDependencies": { "@axiscommunications/fluent-theme": ">=9.0.0", - "react": ">=16.8.0 <19.0.0" + "react": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/illustrations/src/tests/bundleIllustration.spec.tsx b/illustrations/src/tests/bundleIllustration.spec.tsx index 010973dd..859742b4 100644 --- a/illustrations/src/tests/bundleIllustration.spec.tsx +++ b/illustrations/src/tests/bundleIllustration.spec.tsx @@ -1,5 +1,4 @@ import { render } from "@testing-library/react"; -import React from "react"; import { AddUserDark, AddUserLight } from "../index.js"; import { bundleIllustration } from "../utils/bundleIllustration.js"; diff --git a/illustrations/src/utils/createFluentIllustration.ts b/illustrations/src/utils/createFluentIllustration.ts index 759cd2a1..114d9deb 100644 --- a/illustrations/src/utils/createFluentIllustration.ts +++ b/illustrations/src/utils/createFluentIllustration.ts @@ -1,4 +1,4 @@ -import React from "react"; +import { createElement } from "react"; import { AxisIllustrationProps, FluentIllustration } from "./types.js"; import { useIllustrationState } from "./useIllustrationState.js"; @@ -8,7 +8,7 @@ export const createFluentIllustration = ( ): FluentIllustration => { const Illustration = (props: AxisIllustrationProps) => { const image = `data:image/svg+xml;utf8,${encodeURIComponent(paths)}`; - return React.createElement("img", { + return createElement("img", { alt: "Axis illustration", src: image, ...useIllustrationState(props), diff --git a/illustrations/src/utils/types.ts b/illustrations/src/utils/types.ts index f3eda491..e32d687f 100644 --- a/illustrations/src/utils/types.ts +++ b/illustrations/src/utils/types.ts @@ -1,14 +1,14 @@ -import React from "react"; +import type { HTMLAttributes, ImgHTMLAttributes, ReactElement } from "react"; export type FluentIllustration = { - (props: AxisIllustrationProps): JSX.Element; + (props: AxisIllustrationProps): ReactElement; displayName?: string; }; export type AxisIllustrationProps< TBaseAttributes extends - | React.ImgHTMLAttributes - | React.HTMLAttributes = React.ImgHTMLAttributes, + | ImgHTMLAttributes + | HTMLAttributes = ImgHTMLAttributes, > = TBaseAttributes & { className?: string; title?: string; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 98852df6..1caf621b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,7 +22,7 @@ importers: version: link:tools typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 components/empty-view: dependencies: @@ -33,147 +33,147 @@ importers: specifier: workspace:* version: link:../../illustrations '@fluentui/react-components': - specifier: ^9.62.0 - version: 9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.72.7 + version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) devDependencies: '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^19.2.3 + version: 19.2.3(@types/react@19.2.6) esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) + specifier: ^19.2.0 + version: 19.2.0(react@19.2.0) typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 components/password-input: dependencies: '@fluentui/react-components': - specifier: ^9.62.0 - version: 9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.72.7 + version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) '@fluentui/react-icons': - specifier: ^2.0.297 - version: 2.0.297(react@18.3.1) + specifier: ^2.0.315 + version: 2.0.315(react@19.2.0) '@fluentui/react-utilities': - specifier: ^9.19.0 - version: 9.19.0(@types/react@18.3.12)(react@18.3.1) + specifier: ^9.25.4 + version: 9.25.4(@types/react@19.2.6)(react@19.2.0) devDependencies: '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^19.2.3 + version: 19.2.3(@types/react@19.2.6) esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) + specifier: ^19.2.0 + version: 19.2.0(react@19.2.0) typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 components/slider: dependencies: '@fluentui/react-components': - specifier: ^9.62.0 - version: 9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.72.7 + version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) '@fluentui/react-icons': - specifier: ^2.0.297 - version: 2.0.297(react@18.3.1) + specifier: ^2.0.315 + version: 2.0.315(react@19.2.0) '@fluentui/react-utilities': - specifier: ^9.19.0 - version: 9.19.0(@types/react@18.3.12)(react@18.3.1) + specifier: ^9.25.4 + version: 9.25.4(@types/react@19.2.6)(react@19.2.0) devDependencies: '@testing-library/jest-dom': specifier: ^6.6.3 - version: 6.6.3 + version: 6.9.1 '@testing-library/react': - specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^16.3.0 + version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@testing-library/user-event': specifier: ^14.6.1 - version: 14.6.1(@testing-library/dom@9.3.4) + version: 14.6.1(@testing-library/dom@10.4.1) '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^19.2.3 + version: 19.2.3(@types/react@19.2.6) esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 jsdom: specifier: ^26.1.0 version: 26.1.0 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) + specifier: ^19.2.0 + version: 19.2.0(react@19.2.0) typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 vitest: specifier: ^3.1.2 - version: 3.1.2(@types/node@22.15.3)(jsdom@26.1.0) + version: 3.2.4(@types/node@22.19.1)(jsdom@26.1.0) components/stepper: dependencies: '@fluentui/react-components': - specifier: ^9.62.0 - version: 9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.72.7 + version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) '@fluentui/react-icons': - specifier: ^2.0.297 - version: 2.0.297(react@18.3.1) + specifier: ^2.0.315 + version: 2.0.315(react@19.2.0) '@fluentui/react-utilities': - specifier: ^9.19.0 - version: 9.19.0(@types/react@18.3.12)(react@18.3.1) + specifier: ^9.25.4 + version: 9.25.4(@types/react@19.2.6)(react@19.2.0) devDependencies: '@testing-library/jest-dom': specifier: ^6.6.3 - version: 6.6.3 + version: 6.9.1 '@testing-library/react': - specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^16.3.0 + version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^19.2.3 + version: 19.2.3(@types/react@19.2.6) esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 jsdom: specifier: ^26.1.0 version: 26.1.0 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) + specifier: ^19.2.0 + version: 19.2.0(react@19.2.0) typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 vitest: specifier: ^3.1.2 - version: 3.1.2(@types/node@22.15.3)(jsdom@26.1.0) + version: 3.2.4(@types/node@22.19.1)(jsdom@26.1.0) components/topbar: dependencies: @@ -184,45 +184,45 @@ importers: specifier: workspace:* version: link:../../theme '@fluentui/react-components': - specifier: ^9.62.0 - version: 9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.72.7 + version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) '@fluentui/react-icons': - specifier: ^2.0.297 - version: 2.0.297(react@18.3.1) + specifier: ^2.0.315 + version: 2.0.315(react@19.2.0) '@fluentui/react-utilities': - specifier: ^9.19.0 - version: 9.19.0(@types/react@18.3.12)(react@18.3.1) + specifier: ^9.25.4 + version: 9.25.4(@types/react@19.2.6)(react@19.2.0) devDependencies: '@testing-library/jest-dom': specifier: ^6.6.3 - version: 6.6.3 + version: 6.9.1 '@testing-library/react': - specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^16.3.0 + version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^19.2.3 + version: 19.2.3(@types/react@19.2.6) esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 jsdom: specifier: ^26.1.0 version: 26.1.0 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) + specifier: ^19.2.0 + version: 19.2.0(react@19.2.0) typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 vitest: specifier: ^3.1.2 - version: 3.1.2(@types/node@22.15.3)(jsdom@26.1.0) + version: 3.2.4(@types/node@22.19.1)(jsdom@26.1.0) examples: dependencies: @@ -257,94 +257,94 @@ importers: specifier: workspace:* version: link:../components/topbar '@fluentui/react-components': - specifier: ^9.62.0 - version: 9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.72.7 + version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) '@fluentui/react-context-selector': - specifier: ^9.1.76 - version: 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.2.12 + version: 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) '@fluentui/react-icons': - specifier: ^2.0.297 - version: 2.0.297(react@18.3.1) + specifier: ^2.0.315 + version: 2.0.315(react@19.2.0) '@vitejs/plugin-react': specifier: ^4.4.1 - version: 4.4.1(vite@6.3.4(@types/node@22.15.3)) + version: 4.7.0(vite@6.4.1(@types/node@22.19.1)) react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) + specifier: ^19.2.0 + version: 19.2.0(react@19.2.0) react-router-dom: specifier: 6.30.0 - version: 6.30.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.30.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0) react-syntax-highlighter: specifier: 15.6.1 - version: 15.6.1(react@18.3.1) + version: 15.6.1(react@19.2.0) scheduler: specifier: 0.26.0 version: 0.26.0 vite: specifier: ^6.3.4 - version: 6.3.4(@types/node@22.15.3) + version: 6.4.1(@types/node@22.19.1) devDependencies: '@playwright/test': specifier: 1.52.0 version: 1.52.0 '@types/node': specifier: ^22.15.3 - version: 22.15.3 + version: 22.19.1 '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^19.2.3 + version: 19.2.3(@types/react@19.2.6) '@types/react-syntax-highlighter': specifier: 15.5.13 version: 15.5.13 typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 hooks: devDependencies: '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 icons: dependencies: '@griffel/react': - specifier: ^1.5.29 - version: 1.5.29(react@18.3.1) + specifier: ^1.5.32 + version: 1.5.32(react@19.2.0) devDependencies: '@svgr/core': specifier: ^5.5.0 version: 5.5.0 '@types/node': specifier: ^22.15.3 - version: 22.15.3 + version: 22.19.1 '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 icon-font-generator: specifier: ^2.1.11 version: 2.1.11 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 replace: specifier: ^1.2.2 version: 1.2.2 @@ -353,7 +353,7 @@ importers: version: 1.3.2 typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 yargs: specifier: ^14.2.3 version: 14.2.3 @@ -365,37 +365,37 @@ importers: version: link:../theme '@testing-library/jest-dom': specifier: ^6.6.3 - version: 6.6.3 + version: 6.9.1 '@testing-library/react': - specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^16.3.0 + version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@types/node': specifier: ^22.15.3 - version: 22.15.3 + version: 22.19.1 '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 '@types/yargs': specifier: 17.0.32 version: 17.0.32 esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 jsdom: specifier: ^26.1.0 version: 26.1.0 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 svgo: specifier: 1.3.2 version: 1.3.2 typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 vitest: specifier: ^3.1.2 - version: 3.1.2(@types/node@22.15.3)(jsdom@26.1.0) + version: 3.2.4(@types/node@22.19.1)(jsdom@26.1.0) yargs: specifier: 17.7.2 version: 17.7.2 @@ -403,60 +403,60 @@ importers: styles: dependencies: '@fluentui/react-components': - specifier: ^9.62.0 - version: 9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.72.7 + version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) '@fluentui/react-icons': - specifier: ^2.0.297 - version: 2.0.297(react@18.3.1) + specifier: ^2.0.315 + version: 2.0.315(react@19.2.0) devDependencies: '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 theme: devDependencies: '@fluentui/react-components': - specifier: ^9.62.0 - version: 9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) + specifier: ^9.72.7 + version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) '@fluentui/react-theme': - specifier: ^9.1.24 - version: 9.1.24 + specifier: ^9.2.0 + version: 9.2.0 '@testing-library/jest-dom': specifier: ^6.6.3 - version: 6.6.3 + version: 6.9.1 '@testing-library/react': - specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^16.3.0 + version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@types/node': specifier: ^22.15.3 - version: 22.15.3 + version: 22.19.1 '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^19.2.6 + version: 19.2.6 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^19.2.3 + version: 19.2.3(@types/react@19.2.6) esbuild: specifier: ^0.25.3 - version: 0.25.3 + version: 0.25.12 jsdom: specifier: ^26.1.0 version: 26.1.0 react: - specifier: ^18.2.0 - version: 18.3.1 + specifier: ^19.2.0 + version: 19.2.0 react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) + specifier: ^19.2.0 + version: 19.2.0(react@19.2.0) style-dictionary: specifier: ^3.9.2 version: 3.9.2 @@ -465,10 +465,10 @@ importers: version: 0.0.33 typescript: specifier: ^5.8.3 - version: 5.8.3 + version: 5.9.3 vitest: specifier: ^3.1.2 - version: 3.1.2(@types/node@22.15.3)(jsdom@26.1.0) + version: 3.2.4(@types/node@22.19.1)(jsdom@26.1.0) tools: dependencies: @@ -477,161 +477,108 @@ importers: version: 0.13.0 semver: specifier: ^7.7.1 - version: 7.7.1 + version: 7.7.3 devDependencies: '@types/node': specifier: ^22.15.3 - version: 22.15.3 + version: 22.19.1 '@types/semver': specifier: ^7.7.0 - version: 7.7.0 + version: 7.7.1 packages: - '@adobe/css-tools@4.4.0': - resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} - - '@ampproject/remapping@2.3.0': - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} - engines: {node: '>=6.0.0'} - - '@asamuzakjp/css-color@3.1.1': - resolution: {integrity: sha512-hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA==} - - '@babel/code-frame@7.24.7': - resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} - engines: {node: '>=6.9.0'} - - '@babel/code-frame@7.26.2': - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} - engines: {node: '>=6.9.0'} - - '@babel/compat-data@7.26.8': - resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} - engines: {node: '>=6.9.0'} + '@adobe/css-tools@4.4.4': + resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==} - '@babel/core@7.26.10': - resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==} - engines: {node: '>=6.9.0'} + '@asamuzakjp/css-color@3.2.0': + resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} - '@babel/generator@7.24.8': - resolution: {integrity: sha512-47DG+6F5SzOi0uEvK4wMShmn5yY0mVjVJoWTphdY2B4Rx9wHgjK7Yhtr0ru6nE+sn0v38mzrWOlah0p/YlHHOQ==} + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} engines: {node: '>=6.9.0'} - '@babel/generator@7.27.0': - resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} + '@babel/compat-data@7.28.5': + resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==} engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@7.27.0': - resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==} + '@babel/core@7.28.5': + resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==} engines: {node: '>=6.9.0'} - '@babel/helper-environment-visitor@7.24.7': - resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} + '@babel/generator@7.28.5': + resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} engines: {node: '>=6.9.0'} - '@babel/helper-function-name@7.24.7': - resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} engines: {node: '>=6.9.0'} - '@babel/helper-hoist-variables@7.24.7': - resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} engines: {node: '>=6.9.0'} - '@babel/helper-module-imports@7.25.9': - resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} engines: {node: '>=6.9.0'} - '@babel/helper-module-transforms@7.26.0': - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} + '@babel/helper-module-transforms@7.28.3': + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-plugin-utils@7.26.5': - resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} - engines: {node: '>=6.9.0'} - - '@babel/helper-split-export-declaration@7.24.7': - resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.24.8': - resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.25.9': - resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.24.7': - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.9': - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-option@7.25.9': - resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} + '@babel/helpers@7.28.4': + resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.27.0': - resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==} - engines: {node: '>=6.9.0'} - - '@babel/highlight@7.24.7': - resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} - engines: {node: '>=6.9.0'} - - '@babel/parser@7.24.8': - resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==} + '@babel/parser@7.28.5': + resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/parser@7.27.0': - resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/plugin-transform-react-jsx-self@7.25.9': - resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-source@7.25.9': - resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/runtime@7.24.8': - resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==} - engines: {node: '>=6.9.0'} - - '@babel/runtime@7.26.10': - resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.27.0': - resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.24.8': - resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==} + '@babel/runtime@7.28.4': + resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.27.0': - resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} engines: {node: '>=6.9.0'} - '@babel/types@7.24.8': - resolution: {integrity: sha512-SkSBEHwwJRU52QEVZBmMBnE5Ux2/6WU1grdYyOhpbCNxbmJrDuDCphBzKZSO3taf0zztp+qkWlymE5tVL5l0TA==} + '@babel/traverse@7.28.5': + resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.27.0': - resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} + '@babel/types@7.28.5': + resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} engines: {node: '>=6.9.0'} '@biomejs/biome@1.9.4': @@ -687,32 +634,32 @@ packages: cpu: [x64] os: [win32] - '@csstools/color-helpers@5.0.2': - resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==} + '@csstools/color-helpers@5.1.0': + resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==} engines: {node: '>=18'} - '@csstools/css-calc@2.1.2': - resolution: {integrity: sha512-TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==} + '@csstools/css-calc@2.1.4': + resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==} engines: {node: '>=18'} peerDependencies: - '@csstools/css-parser-algorithms': ^3.0.4 - '@csstools/css-tokenizer': ^3.0.3 + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 - '@csstools/css-color-parser@3.0.8': - resolution: {integrity: sha512-pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==} + '@csstools/css-color-parser@3.1.0': + resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==} engines: {node: '>=18'} peerDependencies: - '@csstools/css-parser-algorithms': ^3.0.4 - '@csstools/css-tokenizer': ^3.0.3 + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 - '@csstools/css-parser-algorithms@3.0.4': - resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==} + '@csstools/css-parser-algorithms@3.0.5': + resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==} engines: {node: '>=18'} peerDependencies: - '@csstools/css-tokenizer': ^3.0.3 + '@csstools/css-tokenizer': ^3.0.4 - '@csstools/css-tokenizer@3.0.3': - resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==} + '@csstools/css-tokenizer@3.0.4': + resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==} engines: {node: '>=18'} '@ctrl/tinycolor@3.6.1': @@ -722,691 +669,699 @@ packages: '@emotion/hash@0.9.2': resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} - '@esbuild/aix-ppc64@0.25.3': - resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==} + '@esbuild/aix-ppc64@0.25.12': + resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.25.3': - resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==} + '@esbuild/android-arm64@0.25.12': + resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} engines: {node: '>=18'} cpu: [arm64] os: [android] - '@esbuild/android-arm@0.25.3': - resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==} + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} engines: {node: '>=18'} cpu: [arm] os: [android] - '@esbuild/android-x64@0.25.3': - resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==} + '@esbuild/android-x64@0.25.12': + resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} engines: {node: '>=18'} cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.25.3': - resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==} + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.25.3': - resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==} + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.25.3': - resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==} + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.25.3': - resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==} + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.25.3': - resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==} + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} engines: {node: '>=18'} cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.25.3': - resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==} + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} engines: {node: '>=18'} cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.25.3': - resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==} + '@esbuild/linux-ia32@0.25.12': + resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} engines: {node: '>=18'} cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.25.3': - resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==} + '@esbuild/linux-loong64@0.25.12': + resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} engines: {node: '>=18'} cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.25.3': - resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==} + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.25.3': - resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==} + '@esbuild/linux-ppc64@0.25.12': + resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.25.3': - resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==} + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.25.3': - resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==} + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} engines: {node: '>=18'} cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.25.3': - resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==} + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} engines: {node: '>=18'} cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.25.3': - resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==} + '@esbuild/netbsd-arm64@0.25.12': + resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.25.3': - resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==} + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.25.3': - resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==} + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.25.3': - resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==} + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.25.3': - resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==} + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} engines: {node: '>=18'} cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.25.3': - resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==} + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} engines: {node: '>=18'} cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.25.3': - resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==} + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} engines: {node: '>=18'} cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.25.3': - resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==} + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} engines: {node: '>=18'} cpu: [x64] os: [win32] - '@floating-ui/core@1.6.4': - resolution: {integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==} + '@floating-ui/core@1.7.3': + resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==} - '@floating-ui/devtools@0.2.1': - resolution: {integrity: sha512-8PHJLbD6VhBh+LJ1uty/Bz30qs02NXCE5u8WpOhSewlYXUWl03GNXknr9AS2yaAWJEQaY27x7eByJs44gODBcw==} + '@floating-ui/devtools@0.2.3': + resolution: {integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==} peerDependencies: - '@floating-ui/dom': '>=1.5.4' + '@floating-ui/dom': ^1.0.0 - '@floating-ui/dom@1.6.13': - resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==} + '@floating-ui/dom@1.7.4': + resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==} - '@floating-ui/utils@0.2.9': - resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} + '@floating-ui/utils@0.2.10': + resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} '@fluentui/keyboard-keys@9.0.8': resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==} - '@fluentui/priority-overflow@9.1.15': - resolution: {integrity: sha512-/3jPBBq64hRdA416grVj+ZeMBUIaKZk2S5HiRg7CKCAV1JuyF84Do0rQI6ns8Vb9XOGuc4kurMcL/UEftoEVrg==} + '@fluentui/priority-overflow@9.2.1': + resolution: {integrity: sha512-WH5dv54aEqWo/kKQuADAwjv66W6OUMFllQMjpdkrktQp7pu4JXtmF60iYcp9+iuIX9iCeW01j8gNTU08MQlfIQ==} - '@fluentui/react-accordion@9.6.7': - resolution: {integrity: sha512-NvcM3VtnxQbTA/soVeSTTR+093cXAuIuLAVy3hcwayv4BbuCzMhlKwYPakN4PQO1JIfAehamORM14Dh4U6yHuQ==} + '@fluentui/react-accordion@9.8.14': + resolution: {integrity: sha512-jTcfYDRUotRhUEjE1LeG1Qm10515CQUKxHWQhppBYhq7yAZcS5jOms5tMZHtHs0EQsWv3nMgUYYqoOqAsU0jDQ==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-alert@9.0.0-beta.124': - resolution: {integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==} + '@fluentui/react-alert@9.0.0-beta.129': + resolution: {integrity: sha512-afS5Mvf9EH5je3ZOnF96GNaXL5nA/eI69AhO4nsbsvc1RaO/CkEt9+6iVyGy2zeqbQgpsP9UkNwEYyToQ1CrzA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-aria@9.14.5': - resolution: {integrity: sha512-2LcDBkk1GcKLgFnwEiiiTyY+ZtdxLzI+wuYU4sCvIn6XQ/nWEITu4c7piAWRX+YDzf95BaDOLVXF31/bZLVqlQ==} + '@fluentui/react-aria@9.17.6': + resolution: {integrity: sha512-O421keKMgf9BkHH15kTnKGFuCFKN3ukydJLEfSQJmOfdAHyJMzAul8/zMvkd4vmMr84+PtZUD1+Tylk4NvpN4g==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-avatar@9.7.5': - resolution: {integrity: sha512-TVGdpk3c4YnMng+1PZekwseDM2Cri7rXh7ACneptxabK8vsehoDoVO2goa1Tw62HSOKCwCunc2T9Osnfl7czFg==} + '@fluentui/react-avatar@9.9.12': + resolution: {integrity: sha512-dlJ5mOKCDChMAECFhpcPHoQicA28ATWQXLtz26hAuVJH2/gC/6mZ0j7drIVl9YECqT/ZbZ3/hpVeZu/S/FVrOA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-badge@9.2.54': - resolution: {integrity: sha512-2PU0UA0VDz/XwbYKmMmPQKg4ykYHoUsgs3oZIqdwMPM3zxuhclsFEFx2xj4nxpMKiGCTBSBTM0fdOEQwRrbluQ==} + '@fluentui/react-badge@9.4.11': + resolution: {integrity: sha512-u2gTg+QeD5uaieAwE89n8MLg2MyZN/kGMx3hJewFKtq3SzvU4xcgcna2Gp4UgpaA3pnGZsJjjjDIHwsv4EyO9Q==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-breadcrumb@9.1.5': - resolution: {integrity: sha512-zGFMYkwM0Jqs+BgosGQDgG1ou7bO+rJwkRQpFd7qtX97Hw5PFdeNKAd+SWxATmRdtdlvgiO7vN5JnA1DcRuvTA==} + '@fluentui/react-breadcrumb@9.3.12': + resolution: {integrity: sha512-cT5xmYQbAYH7HslJu6O5WvSYzsBvaQ54Q6yIPgV5kCo5n3M6OSrJ0Ga6Zbfqid/GnY4G60FfjOvbfHNNhmx2Sw==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-button@9.4.5': - resolution: {integrity: sha512-kbsTkM+C8HaACsjfD8q54S9zpjVc9XPKTHQcwKqCk1tg/2LFkoiw6TH0aYMyfxYLjcbWbJyi5WQr2avmEOSbQg==} + '@fluentui/react-button@9.6.12': + resolution: {integrity: sha512-seI9L9O0fCHzlfKD/via1qqzaLFeiFKQeR1/97nXL06reC3DqLSCeiZP3UTxFljFE1CYZQRJfk1wH/D6j0ZCTA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-card@9.2.4': - resolution: {integrity: sha512-Y5Ty7zl3k0jCEFB2nnJeYei2bDIDhg2JUSwrhdS6RbH8XVGm5w5DchANNJKVRDRM/pdVQGqfhzwoqPi0JqO1jw==} + '@fluentui/react-card@9.5.6': + resolution: {integrity: sha512-hCY6VWrKqq+y0yqUkqgkpTN5TVJSU5ZlKtZU+Sed+TlnKlojkS6cYRvsnWdAKwyFLJF9ZYTn+uos9Vi0wQyjtg==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-carousel@9.6.5': - resolution: {integrity: sha512-roQrb0sXf4DrvVvJ/23BAJfwBxB6CDi9oe6NkuwUFun9wO8X6jqP60ipe/Y1DVP2TIfZMPVG3rRw4IePSYmmIQ==} + '@fluentui/react-carousel@9.8.12': + resolution: {integrity: sha512-Gjn6cd67FodcjfU2MQTBI2xjijzgy54TdQA8vxObZ27I6y9OHeDR07PWTqaCkX8mcBR8ilTxVD5bQ+zuqfb66g==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-checkbox@9.3.5': - resolution: {integrity: sha512-xi0XXJiDIGhmCPIlDZ9OHOCCZgSfOxvLMBGMuykhMpbGtlOFC8tQrpHFJrao4xTAQksI9hOvtnSv00F75qqktg==} + '@fluentui/react-checkbox@9.5.11': + resolution: {integrity: sha512-M8DTBQK0Z7+HKfRx4mjypH0fEagKK7YMNhGMy18aW3iYWeooA0ut81MzsRM5feqhl+Q8v4VJ0aN9qHNqshkD5g==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-color-picker@9.0.3': - resolution: {integrity: sha512-yd4Occa8Ik0m8sBY8JB8B0g6bbhjz+7uUGkooA3jRa//sMYcgCAz0+mkLt+46dXJxWbWBW2F0auo8BlShQ/A6A==} + '@fluentui/react-color-picker@9.2.11': + resolution: {integrity: sha512-L1ZKJAyioey3glmzMrpawUrzsdu/Nz0m6nVMOznJVuw0vu0BfQuMh/1/0QOoGYXFEbsc4+gSGSCnah4X0EJIsQ==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-combobox@9.14.5': - resolution: {integrity: sha512-YaF+ZFX/jtvdoLiR+dgX/KoKCoFFg/KDLSA5ZXYpwsbI0pdalDWTcdeRLzFqeVmR1QamlMSOAsilBDZVTwaWEw==} + '@fluentui/react-combobox@9.16.12': + resolution: {integrity: sha512-SimZpXzTGyDAGHQZmzUl9AsrIOlLDinTbvEwELEYh9X+yE33SZatcPwdpCmBXldBOs/eh+xOuNSOwgerJ3T3qQ==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-components@9.62.0': - resolution: {integrity: sha512-NfG0GlmXgDff0lFzOsthkfxKB2gdDk/YSlxf+h9n3PvQHkYL3pqTAjao4fiNRb1QlvNssMNPHVOBPD7/l7vSBQ==} + '@fluentui/react-components@9.72.7': + resolution: {integrity: sha512-tuC8ZMBQicF4p+f9MJv9cVYZUSktQVreAGJq/YJxQ0Ts1mO2rnAuIBkBFlgjnjyebDiAO1FoAAz/wW99hrIh6A==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-context-selector@9.1.76': - resolution: {integrity: sha512-GmkHiLuMBzYOVvPkXNhMJTusx9hf43+VizFjAhSfZWOnNwLjiekjDocs7S2XD0f3MmcVx+aB2tRdTDHxGAF/1A==} + '@fluentui/react-context-selector@9.2.12': + resolution: {integrity: sha512-4hj+rv+4Uwn9EeDyXD1YCEpVkm0iMLG403QAGd5vZZhcgB2tg/iazewKeTff+HMRkusx+lWBYzBEGcRohY/FiA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' - scheduler: '>=0.19.0 <=0.23.0' - - '@fluentui/react-dialog@9.12.7': - resolution: {integrity: sha512-VPJyiwPwO+mKccMi5Yc7GQsEMCSaum7Yq+yMk7dUWP45/Kbzr5BzgQFujQSyna9rHCVc49IgZt5i3588ILqTMg==} + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' + scheduler: '>=0.19.0' + + '@fluentui/react-dialog@9.16.3': + resolution: {integrity: sha512-aUnErTbSf2oqrqbQOCrjXp/12qHVfnxCR71/5hXJLME7BtYZ/m2lvs5r9MTjQSXBy8ar4G5jobS/+XJ0Lq3XqA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-divider@9.2.86': - resolution: {integrity: sha512-8hzwDVdW7CkumW8XU16lsrrg6s0tNAIWdsFC4Utfb/BL2xgfJRdg/0q6Dzw12uhQHtssC3pKNQV0mp4ia0oqww==} + '@fluentui/react-divider@9.4.11': + resolution: {integrity: sha512-aESagOX6l7Ja9lb+3zJa6V5m1mjFnI4NEu8TccAu1VUlMZxX6flbMBJplgjN76dJjcHgs8uoa5xxxD74WNZBXg==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-drawer@9.7.7': - resolution: {integrity: sha512-VJCTKPp77+pqB3cJA0HUeldDITe96bsezGU+lR/JofLPILmRTmu08yls6iHI87q6oE/4H4u+AvCWuA3CKkTsRQ==} + '@fluentui/react-drawer@9.10.9': + resolution: {integrity: sha512-tlHZBkILOHnA7Lg2v/vzmOvTNrPYJnPJAqiceuFlUZWncIWWAUfpw4Teh5V0wGNr6/yC/HjUD5xnynvIhr/ZuA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-field@9.2.5': - resolution: {integrity: sha512-y/5g515vb1LiwqjGRHUPRkwZtpOy0L65YA4djuv+vzMkfLmMnV/0LgrxqMycCGF7FfyS9e4siwm3SBObDFae0g==} + '@fluentui/react-field@9.4.11': + resolution: {integrity: sha512-kF93G+LGEKaFJcEAUHJKZUc1xeV/q+JTygYVnEDkPbQ/4j+l+J3rVuHL8U7bhE+8cJG3wDP8jt4jqHsDgKyn5w==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-icons@2.0.297': - resolution: {integrity: sha512-nMAZqWDHKzlVgs9OaeE7FNp+RHHskC3NaKftyIQmnFhPb34YEuNGABsi00dDpwxT5H4ZedmeqqCnWz+XSz0G0A==} + '@fluentui/react-icons@2.0.315': + resolution: {integrity: sha512-IITWAQGgU7I32eHPDHi+TUCUF6malP27wZLUV3bqjGVF/x/lfxvTIx8yqv/cxuwF3+ITGFDpl+278ZYJtOI7ww==} peerDependencies: - react: '>=16.8.0 <19.0.0' + react: '>=16.8.0 <20.0.0' - '@fluentui/react-image@9.1.84': - resolution: {integrity: sha512-+8X9IPtNi+RLsSJEIODUfnnalPXLJpfqSyyjrVcm/xjEasCm77F1kMSzCGiHbFYvz7hq5g5I4B/OH4TjL+fcqg==} + '@fluentui/react-image@9.3.11': + resolution: {integrity: sha512-aLpz0/C6T0Uit6SmyhOJjYBvndZzfvmKv1vg+JRnE0aHS5jSUPoCLI6apxyMC6/LcqqTBklpqK3AD9kYpUxfqQ==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-infobutton@9.0.0-beta.102': - resolution: {integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==} + '@fluentui/react-infobutton@9.0.0-beta.107': + resolution: {integrity: sha512-BcI4e+Oj1B/Qk4CMd0O9H0YF+IL4nhK8xuzI5bsZ5mdCaXiwIBgy5RyP8HVSq3y+Ml4XD2IRwufplcxF2cgTOA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-infolabel@9.1.5': - resolution: {integrity: sha512-tPRD5gZEUXeR24DYiwWMr39HBV5+HBDSawdBbBA7Zxif7y4rwFaHxLQ613iYzWszVveLjd8bsFeyV/Nt3jZ0zA==} + '@fluentui/react-infolabel@9.4.12': + resolution: {integrity: sha512-inXlz5EAwQHKsGyB3wc5WmgQ1F9zc18x0HRd/otc2R7Oo1yRW5hXQCG5K5A9/wUge2pRiQVcBCsIurggmCNUhA==} peerDependencies: - '@types/react': '>=16.8.0 <19.0.0' - '@types/react-dom': '>=16.8.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.8.0 <19.0.0' + '@types/react': '>=16.8.0 <20.0.0' + '@types/react-dom': '>=16.8.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.8.0 <20.0.0' - '@fluentui/react-input@9.5.5': - resolution: {integrity: sha512-F6/XbjwKunCBWZl/mTsPgdTcLO4s3IeDjOrKmMhOarkoJGOmlhKvUQRsBE4PsHaVJeXrLvqOBx53MY7N4mc0EQ==} + '@fluentui/react-input@9.7.11': + resolution: {integrity: sha512-ae/5ttJf25+J8akeEXpXRFqUAePPt2Moyfx4Tj0u7ZgG1U9IFbcBsshKEHAmIaygueXf6KdRyOduh1CF6a/D2w==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-jsx-runtime@9.0.50': - resolution: {integrity: sha512-dnelPmz0x591tr58B/jbIHVzgjWskMkBmWEvZJc2rlbGH1oZl+MPJqvVdOAMvLTKJzqVmNkeSDtQmkjzjccogA==} + '@fluentui/react-jsx-runtime@9.3.3': + resolution: {integrity: sha512-KOy85JqR6MSmp7OKUk/IPleaRlUSWF247AM2Ksu9uEKzDBQ2MO3sYUt8X9457GZjIuKLn5J2Vk127W/Khe+/Bg==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - react: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + react: '>=16.14.0 <20.0.0' - '@fluentui/react-jsx-runtime@9.0.54': - resolution: {integrity: sha512-zSkP9X/bAFg17QUDBs4bnbDUgeQSpSBVbH4nKYa3cZb78vV3e3m3nyADBvb97NYkywyd7CfIXq8iTpDWVEoWTw==} + '@fluentui/react-label@9.3.11': + resolution: {integrity: sha512-9LORj4JQJCbp2J5ftW7ZjDxzD3Y4BkszX3Y7L1mK8DPRVAKOuGiakbH7U0q7ClGOMhCinWIQJjKAwzPZLo7xgA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - react: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-label@9.1.87': - resolution: {integrity: sha512-vfUppmSWkpwXztHU21oGcduYQ9jldkPrFpl+/zWmbiOia5CKTMqJtHqLJMMe/W1uoNKqoNU37uVp3bZgIWUHJg==} + '@fluentui/react-link@9.7.0': + resolution: {integrity: sha512-NQ5Jhe5WBYfANSmIcl6fE/oBeh7G4iAq1FU9L/hyva5dxQ9OtiOpU5wxqVFLKEID/r144rhdtOZPL5AcAuJKdg==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-link@9.4.5': - resolution: {integrity: sha512-nj62AQ3mEMP/5sVj7f18CyY0H1MT7KJ7w1l2amHp2U8jP0/lmZWQbz5aokdWZ3qt5D780KvN0longdQMQg6sTQ==} + '@fluentui/react-list@9.6.6': + resolution: {integrity: sha512-t0ret56WXP86rDfnhuRrWg/DuS2zZkomB/Nu444rVygE8hsjPUTm5DXx7JKy+sGKVLyFbtsbXNMICkbxhGSSRA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.8.0 <20.0.0' + '@types/react-dom': '>=16.8.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.8.0 <20.0.0' - '@fluentui/react-list@9.1.5': - resolution: {integrity: sha512-GezI78JFivqftbt9QNYLSsLQg5MxAnbJ8jwncGuCSMnf3AbWSPgz1QzXjnY4OKjGNRq/M4Ebwa/9x7/whmu3sw==} + '@fluentui/react-menu@9.20.5': + resolution: {integrity: sha512-vshb/OXBZxvk+ghdmdVb2mJ/LJBYjlwpZRhWGJ8ZU0hmPTh74m5jTFWditSk8aL9oMvVuIo0MYLQyUJyJsFoqg==} peerDependencies: - '@types/react': '>=16.8.0 <19.0.0' - '@types/react-dom': '>=16.8.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.8.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-menu@9.16.5': - resolution: {integrity: sha512-e1kXNyvrKhe24XHk55u8v7USHOD1EDoL5yQmSbZhwg5PQIPgwESY3ZhdLXpdSi5NAlZvlkJGwJj4iqYPOgUYvA==} + '@fluentui/react-message-bar@9.6.14': + resolution: {integrity: sha512-UR4Uvkx4VHQyS04T5ikf9gYOH52dloo1vjmK+pFKiqRzZhflHEXID9R1AZFuuZ572KUMXnxRlyEevpXnWqE70w==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.8.0 <20.0.0' + '@types/react-dom': '>=16.8.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.8.0 <20.0.0' - '@fluentui/react-message-bar@9.4.6': - resolution: {integrity: sha512-TJger9VP1kdO/11RMJuxj68theaHly5XTWkpyS5b5kv1Djp12ZM9t/WIKdX5xBYHRYpOIuZh/Wh2bYkvpUc+tQ==} + '@fluentui/react-motion-components-preview@0.14.1': + resolution: {integrity: sha512-+2MK7d2g3mD+6Z3o9/fitO+V4u5OKGeRUoUjwlU1v56JHP43hj+NCJynoe4Cym8FeSwTyipks6hvdqBF4W+jtw==} peerDependencies: - '@types/react': '>=16.8.0 <19.0.0' - '@types/react-dom': '>=16.8.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.8.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-motion-components-preview@0.4.9': - resolution: {integrity: sha512-sMtCqgmPHclfo6EqeIZmtXqJt+1fJn0Bo7ORsayXRJvjrmf8buDFnCJCjzYPNUR3npy9GFedMqmIkC6ovKkV0w==} + '@fluentui/react-motion@9.11.4': + resolution: {integrity: sha512-rLxz6DSAtp3O+W+mJnov2qXtvZkIgcC1BQOAyUH6tl6u2YmsC1/zRKWhVsf/WUgZwqu3G4jlq15ptyuCITAcDA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.8.0 <20.0.0' + '@types/react-dom': '>=16.8.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.8.0 <20.0.0' - '@fluentui/react-motion@9.7.2': - resolution: {integrity: sha512-xUDkTNPsXKZIlk+Xr+uozdEmKfZ3iNE7dXUAPOgX5rntdMS50JZf4ggyaKdSJsuOVQNqWAoEcCNYLISroDw07g==} + '@fluentui/react-nav@9.3.14': + resolution: {integrity: sha512-0Lylul5g/9y3Cay5qHLtzW4SB9kdkTmvjHSffPJZDKE/Wv7GBbDypBxoB+f2L1K4f0qzRJ1NvIiwatH4hAsUDA==} peerDependencies: - '@types/react': '>=16.8.0 <19.0.0' - '@types/react-dom': '>=16.8.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.8.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-overflow@9.3.5': - resolution: {integrity: sha512-tvqJg5mzx+DoCvigbwQu5QNwLph1vvBymH4zt65WPios/o4S7wG3Y/i7ZTdVoVAJsIOBozblkxRdVwoqnZWNQg==} + '@fluentui/react-overflow@9.6.5': + resolution: {integrity: sha512-4MlXASDodkwk4QWhUPLgMbUPwDYAOAWDnQGJz4q6Hs9eZvx83dSpWdWjkmQ6mwjYf2HwooMkqsjR/kAFvg+ipg==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-persona@9.3.5': - resolution: {integrity: sha512-NlJ1P5ZWeqoaaK5ftiWkTVcLT9aZOIUl06roKp3+RVy7NK4FwxZwqMOWi4ayMB3fYnLyDMXQnH9KBGpEuUC5qQ==} + '@fluentui/react-persona@9.5.12': + resolution: {integrity: sha512-ja3t1o6XDJWCJnOVDTM48G7bFPAbNxcsQKwAPfiuROVu8ODbTQefutCHl0Hno40AsftQk6N4zGbKcn7BYSZ09Q==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-popover@9.10.5': - resolution: {integrity: sha512-3QAAlLip8l0Gssq5EsV+/Af8U4Z60AQY+8J1fcwdmNj+vU+5/1ULDslXuUuVg5TfGAtIjeF+ib1yun6oy5eLng==} + '@fluentui/react-popover@9.12.12': + resolution: {integrity: sha512-IytuasB4b4lCnEhFC0OC66a3mzBSePLpg78/BceKYepuG7IC6iGuCwYartqSQCSUlSU12rT02/V0rqCO81f4Nw==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-portal@9.5.5': - resolution: {integrity: sha512-0qb0FRGlGE0z48mEcIU85PG+7E7Z3TSPVpJ6ul8FY2+CYWSlLRcL7Z8yAuzOgjrpJ7mxSKiakLYfNEUY2H0u8g==} + '@fluentui/react-portal@9.8.8': + resolution: {integrity: sha512-RVvhWYfcwIUYXiokgFw3oxb7Q6xox2e7jcsgFtheDm2X/BHT6WJigW4OaCjOkvugkBEYQkwgIpL9iS2QG3HMFA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-positioning@9.16.7': - resolution: {integrity: sha512-31i2VdDegR5NsHiQxPP7pWQz4u8lkQq9T1rUFHUUtT7OLr3vOcKf0dGWIeMfZ3LzIv+aCX/P3d2bwEiydCeXuA==} + '@fluentui/react-positioning@9.20.10': + resolution: {integrity: sha512-mjuiqh+urV5SzAP2NfzUzsvtWut0aNcO9m/jIuz374iTVGRfDNeVIl7aPI4yK5sdCDR6dGALiNMTFHpjz1YXyw==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-progress@9.2.5': - resolution: {integrity: sha512-00btd1Ts/XVhc+UgFxkrUSWgFLw0zXI8eeOrmlbPW9Jw3Li7k8uUyJ8MPZCJpqTMLQWhE0bVGTqv6G5dJg5yQg==} + '@fluentui/react-progress@9.4.11': + resolution: {integrity: sha512-L0Yh2D0vLPJX0jYfc9VHf8c/idW+e/oRxYNXfrTrvtW1bX80bAmrXWgdRPr/VEtvbJh//2ol2TRmTTQsn2ECNQ==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-provider@9.20.5': - resolution: {integrity: sha512-XpRRL0CrT0rJTXSUmcG1py17JiDc0khL5ytU1ZfIf7P2+gDnNW4upbh0J7hdKX8+mXmhwhaoLBwRJ9zMKdozVA==} + '@fluentui/react-provider@9.22.11': + resolution: {integrity: sha512-XrinA7DVEqsPHeN9XljwTENiIQypiF9cmDYXHN9Emsz6Od4hnmsbt4pnR4Xsf+GcSxVtxkIImfgwtS0aENzYbQ==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-radio@9.3.5': - resolution: {integrity: sha512-MlSIYO5Jyz2Na4MDARStRhiw8HNLWsA2lSKRlALCl59+8w7qlUZIJ4IjNl/kHjXNmuzByklc7LM/jr6/qYW9FQ==} + '@fluentui/react-radio@9.5.11': + resolution: {integrity: sha512-tMxCcqRSSYqYr6hy1dKkzS6LymRc8wM089vr4eBLPQCGCvi3OCd6P7XH8aIcXnzxE3+v03Gs7E/wbzi2CXN6gA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-rating@9.1.5': - resolution: {integrity: sha512-XniZe8deqU8Klghz11GAhpOJiJ031PGxjAMQWzTFQfBudzdz1WR/PRRaibjTGkoHrtHeW+mn/BnbfBK2uXrMCQ==} + '@fluentui/react-rating@9.3.11': + resolution: {integrity: sha512-9Bl/sESNbFTbz8peGt9vxLxHDO0AWvS12oMiQ80S1GQOt1ua4S9/SKC83OvyVLEdpBDpBkXTelNz5whczcWexQ==} peerDependencies: - '@types/react': '>=16.8.0 <19.0.0' - '@types/react-dom': '>=16.8.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.8.0 <19.0.0' + '@types/react': '>=16.8.0 <20.0.0' + '@types/react-dom': '>=16.8.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.8.0 <20.0.0' - '@fluentui/react-search@9.1.5': - resolution: {integrity: sha512-kkyR4yR0Bbz+lUO8N+RLlD7hhlWjNMh4ItqGZLxtmRs50lXtUup8dr6fc/+d6fiW5jwL3L3PniB20YEc8Y7lQA==} + '@fluentui/react-search@9.3.11': + resolution: {integrity: sha512-inLoPgbGnupfwhBxFS59mF/ThsntusfYp9TaaTB3SJmqfEEx6YXi5soxszzrXsNvrqpgEoCGIduRpEICuUz5pw==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-select@9.2.5': - resolution: {integrity: sha512-cO1lyHqrwD+K/Lq34PyDyMc6wU2XE5nrP7VC3PTsAupzo1bpkl8p4NKL4O+cuEKCrjQvvDIOerS/pjbbtRZ5ow==} + '@fluentui/react-select@9.4.11': + resolution: {integrity: sha512-/mcdl/lkKccT+GKXu22y2/ANeLhFNUdjkOX+0rvBdl3u49xkqS9Y4Bi0zM1EhhTV2jE8+yjMjzPDzfzJaXVK1A==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-shared-contexts@9.23.1': - resolution: {integrity: sha512-mP+7talxLz7n0G36o7Asdvst+JPzUbqbnoMKUWRVB5YwzlOXumEgaQDgL1BkRUJYaDGOjIiSTUjHOEkBt7iSdg==} + '@fluentui/react-shared-contexts@9.26.0': + resolution: {integrity: sha512-r52B+LUevs930pe45pFsppM9XNvY+ojgRgnDE+T/6aiwR/Mo4YoGrtjhLEzlQBeTGuySICTeaAiXfuH6Keo5Dg==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - react: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + react: '>=16.14.0 <20.0.0' - '@fluentui/react-skeleton@9.2.5': - resolution: {integrity: sha512-Zy3a1aZgBIvouV2k1u+tjM/oN2XCjcsGMhhvok6PLkGRsiBaPbxDQZYd4K0vXDYDT6+Ju0uqzQZy3BBH4mYm3A==} + '@fluentui/react-skeleton@9.4.11': + resolution: {integrity: sha512-nw6NlTBXS7lNSxsebLuADYQi9gJ83jFBFsFq+AGIpAoZLBOCHOhk8/XwV3vYtPwVrKcZtOtXqh9NdCqTR3OAIA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-slider@9.3.6': - resolution: {integrity: sha512-jLt00un2pAY3awsuWnfO8tMmq6Z/rWh9ppnj2fiGMAqDVHeoWeHjFVoDazqjFle+nKJbYBPIGnZjEfRAuIjJNw==} + '@fluentui/react-slider@9.5.11': + resolution: {integrity: sha512-kxZKklJbcG/521muQaIDMdcftoClbwV7yMOcu8PMG+VXsaIuoandoBleBYdzM2XdpY62iK6vUPAMZWBZh3B5Ng==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-spinbutton@9.3.5': - resolution: {integrity: sha512-gadWwvByut77rioKSIgsOiJd+sppTOfU7+fEuLowVtvVkVk+XC4yf5u1ecMgWv0foPVkO3hLC122FQk5h/c//w==} + '@fluentui/react-spinbutton@9.5.11': + resolution: {integrity: sha512-pYR3RkJfks+0WV47KoDKD04D0pTHtT+lu3AeOpBlIswxtsb1gZEDmTrEHHNeLDKKVhWMWNoEPlxfXuX9tOh7yA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-spinner@9.5.11': - resolution: {integrity: sha512-q0mJLG7LfWSRqa2fO+Qvxw/noZWjk3HM4wurbddTOClezTcBlMXlYlad7rueu9TpzM5caGsWcMF791/gNYLHmQ==} + '@fluentui/react-spinner@9.7.11': + resolution: {integrity: sha512-MhmAisICa3BzBNQH9CnLI5NVPTTXFo1Yaey8kbQPU+gVVF4vIGORB7M1MXSHFxZvojtFpBixiVHqRwh9mowJww==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-swatch-picker@9.2.5': - resolution: {integrity: sha512-GzyfmY5cBo06Ksrkd4fI8oFNhgrYB51B4KcPKEz79LPNK+PPdA81mrSDuR8d9C0te+F8gSrugi6J3dd1EWaVCA==} + '@fluentui/react-swatch-picker@9.4.11': + resolution: {integrity: sha512-M/ZfHqo63F69y2ymEQDDN/BZuI3afeW3U+omyGZZoHts3rVCjPk6sKFemTRpUhGgGfxBdexWEPithZx3dk0IPA==} peerDependencies: - '@types/react': '>=16.8.0 <19.0.0' - '@types/react-dom': '>=16.8.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.8.0 <19.0.0' + '@types/react': '>=16.8.0 <20.0.0' + '@types/react-dom': '>=16.8.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.8.0 <20.0.0' - '@fluentui/react-switch@9.2.5': - resolution: {integrity: sha512-6+GIwgx1uslShAtqVWR0GG5PE4NjQHxKpwT/FAZz1HR07TIrpWqVjqy4Ypeq7i8X1mBbg4RqBFpyKT1Ed6FzQw==} + '@fluentui/react-switch@9.4.11': + resolution: {integrity: sha512-/WDcoVFQ3I2fe5FTINfyVTIW6wuTgM5QkJgcwbU7HTANq/+wJ2f8wzywoI4x16cJOckBdy+ByDpW7uJ/Uvs8RA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-table@9.16.5': - resolution: {integrity: sha512-jWbRH3pvcGpSQoambOaHh+1+6JnLGctu3vH58vowTFQsKH43OEjlwvcYixNc0Nhv3l2mHYU/sB27ozJBDHM1xQ==} + '@fluentui/react-table@9.19.5': + resolution: {integrity: sha512-In9egEdytjFd6N1RBZd5+3UgdXvEVDP7rz+/I79J10ui2+Nb7r9ah68m5CQB15AKA8F5XFDWPEGvGG3Tmuq4Jg==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-tabs@9.7.5': - resolution: {integrity: sha512-NtrczaBIrG9UFbWs8uGDHyQRQ6JUBd2+Xq+xPQ1RSMBgnhITaMCbeWn4POoA1w74GHPF9d56yLlzSFRX3Y21SA==} + '@fluentui/react-tabs@9.10.7': + resolution: {integrity: sha512-Kfq6GxZXEKsMdGKmHWNMcEYOYHxl5+fXJOH6ZRgeR2FkHUsPUUe2BHaFnOMRSvCwzECvhOMYs+Ekqt7JzW3BWQ==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-tabster@9.24.5': - resolution: {integrity: sha512-Unh2j8vMTl/M9ifsv3HgLeAb2by9Pxjqw7oTjj8PQ7xoESKZSZA3JJ1SCd0rk3mLYUQflKlBNAyfTxcfJprE3A==} + '@fluentui/react-tabster@9.26.10': + resolution: {integrity: sha512-KrddtwbnbgYVAnOkx1pQsMMgq7Kfi+lMRrUrDDJ9Y5X6wiXiajbWRRxYgKiOJc3MpeDCaTCEtjOWNG92vcinMw==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-tag-picker@9.5.5': - resolution: {integrity: sha512-zPrjGxM2cbtSjRo1V3TzP52A0exnVa3ld9solfv3pC0YqsRp3+ha8YO98xFpGGp93kTtIUpPTvnFX2NlblJHCA==} + '@fluentui/react-tag-picker@9.7.12': + resolution: {integrity: sha512-OJucCDub6b3ceGL6v2UXL+SD3x6nJMbmJ70v38BmrA9t3fNcDvn6RnsfHhF2O0pRGGUOrXbK7vDwVhUAG4Py8w==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-tags@9.5.3': - resolution: {integrity: sha512-O3O0XtWCAJMay8c0nOaFXwsfQnl/ihQbsiUU5BFosYVRSF1FNDsP9D72C4hT0qcx04lV2S0Jc1CYX4OAEKe33Q==} + '@fluentui/react-tags@9.7.12': + resolution: {integrity: sha512-G7pxP0GGa6J/7mYvB9ycOmD9Jpm6ByUz6JsJI4OBL9UnhenUVTtE7ZKJ9GJ0SiG0GVxS152aSlOR7NLHV7mCqw==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-teaching-popover@9.4.4': - resolution: {integrity: sha512-QoSpbP+s1HI5TRbrQ8Lh2swC/pw6he/I6UiXTw8d3egIFSxNn/kf3q82rSrnvDs7M19ThQmWvs0YTeY62SMkLw==} + '@fluentui/react-teaching-popover@9.6.12': + resolution: {integrity: sha512-Ugo5SQ3yzSlxUWkeeEdumTWTw662KDh3UPc6RGhU0Jq13skpmsClSJL678BZwsYdAaJXvvG9Bi4PjPeezeB/SA==} peerDependencies: - '@types/react': '>=16.8.0 <19.0.0' - '@types/react-dom': '>=16.8.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.8.0 <19.0.0' + '@types/react': '>=16.8.0 <20.0.0' + '@types/react-dom': '>=16.8.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.8.0 <20.0.0' - '@fluentui/react-text@9.4.36': - resolution: {integrity: sha512-oLSGz6uksooCQrc+FXvWwAZCP+ucn2h12vZFyWSAOVODDtQMjtycol03p408BEHnPBQbrYaQCFpd3Id5eLuxBg==} + '@fluentui/react-text@9.6.11': + resolution: {integrity: sha512-U7EiCesOWjkALf7LM6sy+yvE59Px3c6f27jg4aa21UMo61HCVNbjKV8Lz6GzEftEvv++/EZ25yZBiQcKgh/5iA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-textarea@9.4.5': - resolution: {integrity: sha512-a1qRxdb5yTKGXX0SNP2HsLzhKA+yZQffNQWXd1MciX6jjrFI+xnWSE9zOneUPhn4ddWZ+GpTlK9vX87OM7x/jg==} + '@fluentui/react-textarea@9.6.11': + resolution: {integrity: sha512-5ds8u8hzSqj8cOy0e7HJWjUMq1aO0MIJiaNt/SyIxoZFvsklj/2yaMRVXpWxr3GvX5bzScvFoBY53gPdLKtE/g==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-theme@9.1.24': - resolution: {integrity: sha512-OhVKYD7CMYHxzJEn4PtIszledj8hbQJNWBMfIZsp4Sytdp9vCi0txIQUx4BhS1WqtQPhNGCF16eW9Q3NRrnIrQ==} + '@fluentui/react-theme@9.2.0': + resolution: {integrity: sha512-Q0zp/MY1m5RjlkcwMcjn/PQRT2T+q3bgxuxWbhgaD07V+tLzBhGROvuqbsdg4YWF/IK21zPfLhmGyifhEu0DnQ==} - '@fluentui/react-toast@9.4.7': - resolution: {integrity: sha512-Q3d2+0jn3VOhquSgYAa4rcqioz84sQOtyn9BlqMrJxVbj+0gcArvfMEVcFz1vMx52iKuIEzaiaOxx2tC5DhpMQ==} + '@fluentui/react-toast@9.7.9': + resolution: {integrity: sha512-PaFh2CwVK4tgvRzBMb46ODHsB+ZYSYE8mx735vqgIG8Oj1AL3wZ5Y9TrjJGxn/lppZgtnwLgt4GQ+GI7MM+e+g==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-toolbar@9.4.4': - resolution: {integrity: sha512-S2R6uDoTLVasAMPrbEVXDlJKYJ6KCtO+7g0XBaZu0imUeGTrHbLViVmpPEqjkuMkUgTsGAtRShsCU7dfwqZDPw==} + '@fluentui/react-toolbar@9.6.12': + resolution: {integrity: sha512-AuOZvp6Jcc/Sngk0OddTsHlJVU/u9mVEw6JDhsCYiwKeq04kdgfco1sjSTGjDhJbf1SnkhmyR6YN16SrpVQWtA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-tooltip@9.6.5': - resolution: {integrity: sha512-mEq/t1nj7fujiAYw7aJuY9wG7aNRDind7l98/Jnwb28Ch8EyDSbCIVlk9t4BMX2R/L/IkX0PixoKLaJ1+iGRqA==} + '@fluentui/react-tooltip@9.8.11': + resolution: {integrity: sha512-ke7Hbom3dtC3f9QjJG/F7QfNfukwTtAhoYLmwwQnXYTh/CIVxoC2rVh4c/V8jUD0lnjNPBZZ5ttVUopWljHuFg==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-tree@9.10.8': - resolution: {integrity: sha512-nnXHOMWVSWivQJ7ZxmpA9KvZGzjBoyQRhKzU1b1zsTkJ+J3E7Q1O35ogjWuqTJv3dL6YhRe/VNIFOnilwE4iMg==} + '@fluentui/react-tree@9.15.6': + resolution: {integrity: sha512-L/uc+SgwXW8DXgSZsyIg5tQkixfrGllANg0I2578WRlfOkERehkg1eSW8Uib/Mbk+W3tB0I8CL20ifoSTL7Ztw==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/react-utilities@9.19.0': - resolution: {integrity: sha512-66Kdpr4xZsov6KSqbPDmKR5CB96RUPZuWihMC3RYHj9uH+oxd81k2Jyrb6rM058xjVKDFSFVLUZlsp1Mgts38w==} + '@fluentui/react-utilities@9.25.4': + resolution: {integrity: sha512-vvEIFTfqkcBnKNJhlm8csdGNtOWDWDkqAM4tGlW7jLlFrhNkOfDsqdNuBElENPNJ1foHyVTF5ZSr20kVoKWPjQ==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - react: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + react: '>=16.14.0 <20.0.0' - '@fluentui/react-virtualizer@9.0.0-alpha.96': - resolution: {integrity: sha512-0o9RSTAAIoJ4xdM2g8hF5u98Up0OHRknRhMolZHZDoqXEvhJ5GroGtp+NPfU7LxU+dxHrZLx9gQ6wVWe/35ZzQ==} + '@fluentui/react-virtualizer@9.0.0-alpha.107': + resolution: {integrity: sha512-zpTVzJB2BUNv7QdTUlLSBMCbt/EfALRuls/u/8FYaO4PGOFVeS3equytyxSOizz9zJZVhm8sjdp326DEQNiaPA==} peerDependencies: - '@types/react': '>=16.14.0 <19.0.0' - '@types/react-dom': '>=16.9.0 <19.0.0' - react: '>=16.14.0 <19.0.0' - react-dom: '>=16.14.0 <19.0.0' + '@types/react': '>=16.14.0 <20.0.0' + '@types/react-dom': '>=16.9.0 <20.0.0' + react: '>=16.14.0 <20.0.0' + react-dom: '>=16.14.0 <20.0.0' - '@fluentui/tokens@1.0.0-alpha.21': - resolution: {integrity: sha512-xQ1T56sNgDFGl+kJdIwhz67mHng8vcwO7Dvx5Uja4t+NRULQBgMcJ4reUo4FGF3TjufHj08pP0/OnKQgnOaSVg==} + '@fluentui/tokens@1.0.0-alpha.22': + resolution: {integrity: sha512-i9fgYyyCWFRdUi+vQwnV6hp7wpLGK4p09B+O/f2u71GBXzPuniubPYvrIJYtl444DD6shLjYToJhQ1S6XTFwLg==} - '@griffel/core@1.19.1': - resolution: {integrity: sha512-ZItAAOm8YH1FW0ebzOxS3jwENqd+Dz4CGiPEdgkL4kr7D6mBpjjBbQC6VRXxnA+VqHeEQGy69Ll4M1peY8MX/g==} + '@griffel/core@1.19.2': + resolution: {integrity: sha512-WkB/QQkjy9dE4vrNYGhQvRRUHFkYVOuaznVOMNTDT4pS9aTJ9XPrMTXXlkpcwaf0D3vNKoerj4zAwnU2lBzbOg==} - '@griffel/react@1.5.29': - resolution: {integrity: sha512-xKenEIfV2PnLKVsM8yp2ZCUTknh2790937XlI88zDaO9TC8ylG10mZ3MrcgCdSecrVjKq9JKmm24tsODpkh4pw==} + '@griffel/react@1.5.32': + resolution: {integrity: sha512-jN3SmSwAUcWFUQuQ9jlhqZ5ELtKY21foaUR0q1mJtiAeSErVgjkpKJyMLRYpvaFGWrDql0Uz23nXUogXbsS2wQ==} peerDependencies: - react: '>=16.8.0 <19.0.0' + react: '>=16.8.0 <20.0.0' '@griffel/style-types@1.3.0': resolution: {integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==} @@ -1415,27 +1370,21 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} - '@jridgewell/gen-mapping@0.3.5': - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} - '@jridgewell/gen-mapping@0.3.8': - resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} - engines: {node: '>=6.0.0'} + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} @@ -1450,153 +1399,81 @@ packages: resolution: {integrity: sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA==} engines: {node: '>=14.0.0'} - '@rollup/rollup-android-arm-eabi@4.40.0': - resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==} - cpu: [arm] - os: [android] + '@rolldown/pluginutils@1.0.0-beta.27': + resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} - '@rollup/rollup-android-arm-eabi@4.40.1': - resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==} + '@rollup/rollup-android-arm-eabi@4.53.3': + resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.40.0': - resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-android-arm64@4.40.1': - resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==} + '@rollup/rollup-android-arm64@4.53.3': + resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.40.0': - resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-arm64@4.40.1': - resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==} + '@rollup/rollup-darwin-arm64@4.53.3': + resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.40.0': - resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==} + '@rollup/rollup-darwin-x64@4.53.3': + resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-darwin-x64@4.40.1': - resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-freebsd-arm64@4.40.0': - resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==} - cpu: [arm64] - os: [freebsd] - - '@rollup/rollup-freebsd-arm64@4.40.1': - resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==} + '@rollup/rollup-freebsd-arm64@4.53.3': + resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.40.0': - resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==} - cpu: [x64] - os: [freebsd] - - '@rollup/rollup-freebsd-x64@4.40.1': - resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==} + '@rollup/rollup-freebsd-x64@4.53.3': + resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.40.0': - resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm-gnueabihf@4.40.1': - resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==} + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': + resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.40.0': - resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==} + '@rollup/rollup-linux-arm-musleabihf@4.53.3': + resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.40.1': - resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.40.0': - resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.40.1': - resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-musl@4.40.0': - resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==} + '@rollup/rollup-linux-arm64-gnu@4.53.3': + resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.40.1': - resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==} + '@rollup/rollup-linux-arm64-musl@4.53.3': + resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.40.0': - resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==} - cpu: [loong64] - os: [linux] - - '@rollup/rollup-linux-loongarch64-gnu@4.40.1': - resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==} + '@rollup/rollup-linux-loong64-gnu@4.53.3': + resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.40.0': - resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==} + '@rollup/rollup-linux-ppc64-gnu@4.53.3': + resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.40.1': - resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.40.0': - resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.40.1': - resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-riscv64-musl@4.40.0': - resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==} + '@rollup/rollup-linux-riscv64-gnu@4.53.3': + resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.40.1': - resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==} + '@rollup/rollup-linux-riscv64-musl@4.53.3': + resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.40.0': - resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.40.1': - resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==} + '@rollup/rollup-linux-s390x-gnu@4.53.3': + resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==} cpu: [s390x] os: [linux] @@ -1605,48 +1482,38 @@ packages: cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.40.1': - resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==} + '@rollup/rollup-linux-x64-gnu@4.53.3': + resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.40.0': - resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==} + '@rollup/rollup-linux-x64-musl@4.53.3': + resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.40.1': - resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-win32-arm64-msvc@4.40.0': - resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==} + '@rollup/rollup-openharmony-arm64@4.53.3': + resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==} cpu: [arm64] - os: [win32] + os: [openharmony] - '@rollup/rollup-win32-arm64-msvc@4.40.1': - resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==} + '@rollup/rollup-win32-arm64-msvc@4.53.3': + resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.40.0': - resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==} + '@rollup/rollup-win32-ia32-msvc@4.53.3': + resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.40.1': - resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.40.0': - resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==} + '@rollup/rollup-win32-x64-gnu@4.53.3': + resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==} cpu: [x64] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.40.1': - resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==} + '@rollup/rollup-win32-x64-msvc@4.53.3': + resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==} cpu: [x64] os: [win32] @@ -1698,23 +1565,31 @@ packages: resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} engines: {node: '>=10'} - '@swc/helpers@0.5.12': - resolution: {integrity: sha512-KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==} + '@swc/helpers@0.5.17': + resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} - '@testing-library/dom@9.3.4': - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} + '@testing-library/dom@10.4.1': + resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==} + engines: {node: '>=18'} - '@testing-library/jest-dom@6.6.3': - resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==} + '@testing-library/jest-dom@6.9.1': + resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==} engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - '@testing-library/react@14.3.1': - resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} - engines: {node: '>=14'} + '@testing-library/react@16.3.0': + resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==} + engines: {node: '>=18'} peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + '@testing-library/dom': ^10.0.0 + '@types/react': ^18.0.0 || ^19.0.0 + '@types/react-dom': ^18.0.0 || ^19.0.0 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true '@testing-library/user-event@14.6.1': resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==} @@ -1734,11 +1609,17 @@ packages: '@types/babel__template@7.4.4': resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - '@types/babel__traverse@7.20.7': - resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==} + '@types/babel__traverse@7.28.0': + resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} - '@types/estree@1.0.7': - resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} '@types/hast@2.3.10': resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} @@ -1746,32 +1627,31 @@ packages: '@types/minimatch@3.0.5': resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - '@types/node@22.15.3': - resolution: {integrity: sha512-lX7HFZeHf4QG/J7tBZqrCAXwz9J5RD56Y6MpP0eJkka8p+K0RY/yBTW7CYFJ4VGCclxqOLKmiGP5juQc6MKgcw==} + '@types/node@22.19.1': + resolution: {integrity: sha512-LCCV0HdSZZZb34qifBsyWlUmok6W7ouER+oQIGBScS8EsZsQbrtFTUrDX4hOl+CS6p7cnNC4td+qrSVGSCTUfQ==} '@types/parse-json@4.0.2': resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - '@types/prop-types@15.7.12': - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - '@types/q@1.5.8': resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} - '@types/react-dom@18.3.1': - resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==} + '@types/react-dom@19.2.3': + resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==} + peerDependencies: + '@types/react': ^19.2.0 '@types/react-syntax-highlighter@15.5.13': resolution: {integrity: sha512-uLGJ87j6Sz8UaBAooU0T6lWJ0dBmjZgN1PZTrj05TNql2/XpC6+4HhMT5syIdFUUt+FASfCeLLv4kBygNU+8qA==} - '@types/react@18.3.12': - resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} + '@types/react@19.2.6': + resolution: {integrity: sha512-p/jUvulfgU7oKtj6Xpk8cA2Y1xKTtICGpJYeJXz2YVO2UcvjQgeRMLDGfDeqeRW2Ta+0QNFwcc8X3GH8SxZz6w==} - '@types/semver@7.7.0': - resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==} + '@types/semver@7.7.1': + resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==} - '@types/unist@2.0.10': - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} '@types/yargs-parser@21.0.3': resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} @@ -1779,61 +1659,61 @@ packages: '@types/yargs@17.0.32': resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} - '@vitejs/plugin-react@4.4.1': - resolution: {integrity: sha512-IpEm5ZmeXAP/osiBXVVP5KjFMzbWOonMs0NaQQl+xYnUAcq4oHUBsF2+p4MgKWG4YMmFYJU8A6sxRPuowllm6w==} + '@vitejs/plugin-react@4.7.0': + resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - '@vitest/expect@3.1.2': - resolution: {integrity: sha512-O8hJgr+zREopCAqWl3uCVaOdqJwZ9qaDwUP7vy3Xigad0phZe9APxKhPcDNqYYi0rX5oMvwJMSCAXY2afqeTSA==} + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} - '@vitest/mocker@3.1.2': - resolution: {integrity: sha512-kOtd6K2lc7SQ0mBqYv/wdGedlqPdM/B38paPY+OwJ1XiNi44w3Fpog82UfOibmHaV9Wod18A09I9SCKLyDMqgw==} + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} peerDependencies: msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 peerDependenciesMeta: msw: optional: true vite: optional: true - '@vitest/pretty-format@3.1.2': - resolution: {integrity: sha512-R0xAiHuWeDjTSB3kQ3OQpT8Rx3yhdOAIm/JM4axXxnG7Q/fS8XUwggv/A4xzbQA+drYRjzkMnpYnOGAc4oeq8w==} + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} - '@vitest/runner@3.1.2': - resolution: {integrity: sha512-bhLib9l4xb4sUMPXnThbnhX2Yi8OutBMA8Yahxa7yavQsFDtwY/jrUZwpKp2XH9DhRFJIeytlyGpXCqZ65nR+g==} + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} - '@vitest/snapshot@3.1.2': - resolution: {integrity: sha512-Q1qkpazSF/p4ApZg1vfZSQ5Yw6OCQxVMVrLjslbLFA1hMDrT2uxtqMaw8Tc/jy5DLka1sNs1Y7rBcftMiaSH/Q==} + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} - '@vitest/spy@3.1.2': - resolution: {integrity: sha512-OEc5fSXMws6sHVe4kOFyDSj/+4MSwst0ib4un0DlcYgQvRuYQ0+M2HyqGaauUMnjq87tmUaMNDxKQx7wNfVqPA==} + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} - '@vitest/utils@3.1.2': - resolution: {integrity: sha512-5GGd0ytZ7BH3H6JTj9Kw7Prn1Nbg0wZVrIvou+UWxm54d+WoXXgAgjFJ8wn3LdagWLFSEfpPeyYrByZaGEZHLg==} + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} - '@vue/compiler-core@3.4.31': - resolution: {integrity: sha512-skOiodXWTV3DxfDhB4rOf3OGalpITLlgCeOwb+Y9GJpfQ8ErigdBUHomBzvG78JoVE8MJoQsb+qhZiHfKeNeEg==} + '@vue/compiler-core@3.5.24': + resolution: {integrity: sha512-eDl5H57AOpNakGNAkFDH+y7kTqrQpJkZFXhWZQGyx/5Wh7B1uQYvcWkvZi11BDhscPgj8N7XV3oRwiPnx1Vrig==} - '@vue/compiler-dom@3.4.31': - resolution: {integrity: sha512-wK424WMXsG1IGMyDGyLqB+TbmEBFM78hIsOJ9QwUVLGrcSk0ak6zYty7Pj8ftm7nEtdU/DGQxAXp0/lM/2cEpQ==} + '@vue/compiler-dom@3.5.24': + resolution: {integrity: sha512-1QHGAvs53gXkWdd3ZMGYuvQFXHW4ksKWPG8HP8/2BscrbZ0brw183q2oNWjMrSWImYLHxHrx1ItBQr50I/q2zw==} - '@vue/compiler-sfc@3.4.31': - resolution: {integrity: sha512-einJxqEw8IIJxzmnxmJBuK2usI+lJonl53foq+9etB2HAzlPjAS/wa7r0uUpXw5ByX3/0uswVSrjNb17vJm1kQ==} + '@vue/compiler-sfc@3.5.24': + resolution: {integrity: sha512-8EG5YPRgmTB+YxYBM3VXy8zHD9SWHUJLIGPhDovo3Z8VOgvP+O7UP5vl0J4BBPWYD9vxtBabzW1EuEZ+Cqs14g==} - '@vue/compiler-ssr@3.4.31': - resolution: {integrity: sha512-RtefmITAje3fJ8FSg1gwgDhdKhZVntIVbwupdyZDSifZTRMiWxWehAOTCc8/KZDnBOcYQ4/9VWxsTbd3wT0hAA==} + '@vue/compiler-ssr@3.5.24': + resolution: {integrity: sha512-trOvMWNBMQ/odMRHW7Ae1CdfYx+7MuiQu62Jtu36gMLXcaoqKvAyh+P73sYG9ll+6jLB6QPovqoKGGZROzkFFg==} - '@vue/shared@3.4.31': - resolution: {integrity: sha512-Yp3wtJk//8cO4NItOPpi3QkLExAr/aLBGZMmTtW9WpdwBCJpRM6zj9WgWktXAl8IDIozwNMByT45JP3tO3ACWA==} + '@vue/shared@3.5.24': + resolution: {integrity: sha512-9cwHL2EsJBdi8NY22pngYYWzkTDhld6fAD6jlaeloNGciNSJL6bLpbxVgXl96X00Jtc6YWQv96YA/0sxex/k1A==} abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - agent-base@7.1.3: - resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + agent-base@7.1.4: + resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} engines: {node: '>= 14'} ajv@6.12.6: @@ -1851,8 +1731,8 @@ packages: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + ansi-regex@6.2.2: + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} engines: {node: '>=12'} ansi-styles@3.2.1: @@ -1867,8 +1747,8 @@ packages: resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} - ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + ansi-styles@6.2.3: + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} engines: {node: '>=12'} aproba@1.2.0: @@ -1881,14 +1761,15 @@ packages: argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} - aria-query@5.3.0: resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} engines: {node: '>= 0.4'} array-differ@3.0.0: @@ -1899,12 +1780,12 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - array.prototype.reduce@1.0.7: - resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} + array.prototype.reduce@1.0.8: + resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==} engines: {node: '>= 0.4'} - arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} engines: {node: '>= 0.4'} arrify@2.0.1: @@ -1922,6 +1803,10 @@ packages: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -1932,12 +1817,16 @@ packages: aws-sign2@0.7.0: resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - aws4@1.13.0: - resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} + aws4@1.13.2: + resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + baseline-browser-mapping@2.8.29: + resolution: {integrity: sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA==} + hasBin: true + bcrypt-pbkdf@1.0.2: resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} @@ -1951,18 +1840,18 @@ packages: boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@2.0.2: + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.24.4: - resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} + browserslist@4.28.0: + resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -1974,8 +1863,16 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} engines: {node: '>= 0.4'} callsite@1.0.0: @@ -1996,8 +1893,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001715: - resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==} + caniuse-lite@1.0.30001756: + resolution: {integrity: sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -2005,18 +1902,14 @@ packages: caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} - chai@5.2.0: - resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==} - engines: {node: '>=12'} + chai@5.3.3: + resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} + engines: {node: '>=18'} chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} - chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} - chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} @@ -2114,8 +2007,8 @@ packages: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} css-select-base-adapter@0.1.1: @@ -2143,12 +2036,12 @@ packages: resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} engines: {node: '>=8.0.0'} - cssstyle@4.3.0: - resolution: {integrity: sha512-6r0NiY0xizYqfBvWp1G7WXJ06/bZyrk7Dc6PHql82C/pKGUTKu4yAX4Y8JPamb1ob9nBKuxWzCGTRuGwU3yxJQ==} + cssstyle@4.6.0: + resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==} engines: {node: '>=18'} - csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + csstype@3.2.3: + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} cubic2quad@1.2.1: resolution: {integrity: sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==} @@ -2161,29 +2054,20 @@ packages: resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} engines: {node: '>=18'} - data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} engines: {node: '>= 0.4'} - data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} engines: {node: '>= 0.4'} - data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} engines: {node: '>= 0.4'} - debug@4.3.5: - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -2195,17 +2079,13 @@ packages: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} - decimal.js@10.5.0: - resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==} + decimal.js@10.6.0: + resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} deep-eql@5.0.2: resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} engines: {node: '>=6'} - deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} - define-data-property@1.1.4: resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} engines: {node: '>= 0.4'} @@ -2237,8 +2117,8 @@ packages: resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} engines: {node: '>=0.10.0'} - detect-indent@7.0.1: - resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} + detect-indent@7.0.2: + resolution: {integrity: sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==} engines: {node: '>=12.20'} detect-newline@4.0.1: @@ -2254,9 +2134,6 @@ packages: dom-accessibility-api@0.6.3: resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} - dom-serializer@0.2.2: resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} @@ -2272,27 +2149,31 @@ packages: dot-case@3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} ecc-jsbn@0.1.2: resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} - electron-to-chromium@1.5.140: - resolution: {integrity: sha512-o82Rj+ONp4Ip7Cl1r7lrqx/pXhbp/lh9DpKcMNscFJdh8ebyRofnc7Sh01B4jx403RI0oqTBvlZ7OBIZLMr2+Q==} + electron-to-chromium@1.5.256: + resolution: {integrity: sha512-uqYq1IQhpXXLX+HgiXdyOZml7spy4xfy42yPxcCCRjswp0fYM2X+JwCON07lqnpLEGVCj739B7Yr+FngmHBMEQ==} - embla-carousel-autoplay@8.5.2: - resolution: {integrity: sha512-27emJ0px3q/c0kCHCjwRrEbYcyYUPfGO3g5IBWF1i7714TTzE6L9P81V6PHLoSMAKJ1aHoT2e7YFOsuFKCbyag==} + embla-carousel-autoplay@8.6.0: + resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==} peerDependencies: - embla-carousel: 8.5.2 + embla-carousel: 8.6.0 - embla-carousel-fade@8.5.2: - resolution: {integrity: sha512-QJ46Xy+mpijjquQeIY0d0sPSy34XduREUnz7tn1K20hcKyZYTONNIXQZu3GGNwG59cvhMqYJMw9ki92Rjd14YA==} + embla-carousel-fade@8.6.0: + resolution: {integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==} peerDependencies: - embla-carousel: 8.5.2 + embla-carousel: 8.6.0 - embla-carousel@8.5.2: - resolution: {integrity: sha512-xQ9oVLrun/eCG/7ru3R+I5bJ7shsD8fFwLEY7yPe27/+fDHCNj0OT5EoG5ZbFyOxOcG6yTwW8oTz/dWyFnyGpg==} + embla-carousel@8.6.0: + resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==} emoji-regex@7.0.3: resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} @@ -2310,55 +2191,48 @@ packages: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} - es-abstract@1.23.3: - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} - engines: {node: '>= 0.4'} + error-ex@1.3.4: + resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} - es-abstract@1.23.5: - resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} + es-abstract@1.24.0: + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} engines: {node: '>= 0.4'} es-array-method-boxes-properly@1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} - es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} engines: {node: '>= 0.4'} es-errors@1.3.0: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} - - es-module-lexer@1.6.0: - resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} - es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} engines: {node: '>= 0.4'} - es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} engines: {node: '>= 0.4'} - es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} engines: {node: '>= 0.4'} - esbuild@0.25.3: - resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==} + esbuild@0.25.12: + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} engines: {node: '>=18'} hasBin: true - escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} - escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} @@ -2382,8 +2256,8 @@ packages: resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} engines: {node: '>=0.10.0'} - expect-type@1.2.1: - resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} + expect-type@1.2.2: + resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} engines: {node: '>=12.0.0'} extend@3.0.2: @@ -2402,8 +2276,9 @@ packages: fault@1.0.4: resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} - fdir@6.4.4: - resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: @@ -2429,11 +2304,12 @@ packages: resolution: {integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==} engines: {node: '>= 10.13.0'} - for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} - foreground-child@3.2.1: - resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} engines: {node: '>=14'} forever-agent@0.6.1: @@ -2472,8 +2348,8 @@ packages: function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} engines: {node: '>= 0.4'} functions-have-names@1.2.3: @@ -2483,6 +2359,10 @@ packages: resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==} deprecated: This package is no longer supported. + generator-function@2.0.1: + resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} + engines: {node: '>= 0.4'} + gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} @@ -2491,12 +2371,16 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} engines: {node: '>= 0.4'} - get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} engines: {node: '>= 0.4'} getpass@0.1.7: @@ -2505,8 +2389,8 @@ packages: git-hooks-list@4.1.1: resolution: {integrity: sha512-cmP497iLq54AZnv4YRAEMnEyQ1eIn4tGKbmswqwmFV4GBnAqE8NLtWxxdXa++AalfgL5EBH4IxTPyquEuGY/jA==} - glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + glob@10.5.0: + resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} hasBin: true glob@7.2.3: @@ -2521,16 +2405,13 @@ packages: resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} engines: {node: '>=0.10.0'} - globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - globalthis@1.0.4: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -2549,8 +2430,9 @@ packages: engines: {node: '>=6'} deprecated: this library is no longer supported - has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} @@ -2563,12 +2445,12 @@ packages: has-property-descriptors@1.0.2: resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} engines: {node: '>= 0.4'} - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} engines: {node: '>= 0.4'} has-tostringtag@1.0.2: @@ -2626,12 +2508,12 @@ packages: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} - ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} engines: {node: '>=6'} indent-string@4.0.0: @@ -2648,8 +2530,8 @@ packages: ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} engines: {node: '>= 0.4'} is-alphabetical@1.0.4: @@ -2658,38 +2540,39 @@ packages: is-alphanumerical@1.0.4: resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} - is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} - - is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} engines: {node: '>= 0.4'} is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} - is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} engines: {node: '>= 0.4'} is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} - is-core-module@2.14.0: - resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} + 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==} + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} engines: {node: '>= 0.4'} - is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} engines: {node: '>= 0.4'} is-decimal@1.0.4: @@ -2699,6 +2582,10 @@ packages: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + is-fullwidth-code-point@1.0.0: resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} engines: {node: '>=0.10.0'} @@ -2711,6 +2598,10 @@ packages: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} + is-generator-function@1.1.2: + resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} + engines: {node: '>= 0.4'} + is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} @@ -2726,8 +2617,8 @@ packages: resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} - is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} engines: {node: '>= 0.4'} is-number@7.0.0: @@ -2741,28 +2632,28 @@ packages: is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} engines: {node: '>= 0.4'} is-set@2.0.3: resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} engines: {node: '>= 0.4'} - is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} engines: {node: '>= 0.4'} - is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} engines: {node: '>= 0.4'} - is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} engines: {node: '>= 0.4'} - is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} engines: {node: '>= 0.4'} is-typedarray@1.0.0: @@ -2772,11 +2663,12 @@ packages: resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} engines: {node: '>= 0.4'} - is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} - is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} engines: {node: '>= 0.4'} is-windows@1.0.2: @@ -2804,8 +2696,11 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + js-tokens@9.0.1: + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + + js-yaml@3.14.2: + resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} hasBin: true jsbn@0.1.1: @@ -2820,11 +2715,6 @@ packages: canvas: optional: true - jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - jsesc@3.1.0: resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} engines: {node: '>=6'} @@ -2850,8 +2740,8 @@ packages: jsonc-parser@3.3.1: resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} - jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonfile@6.2.0: + resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==} jsprim@1.4.2: resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} @@ -2874,12 +2764,8 @@ packages: lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - - loupe@3.1.3: - resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==} + loupe@3.2.1: + resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} @@ -2897,8 +2783,12 @@ packages: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true - magic-string@0.30.17: - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} mdn-data@2.0.14: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} @@ -2909,8 +2799,8 @@ packages: microbuffer@1.0.0: resolution: {integrity: sha512-O/SUXauVN4x6RaEJFqSPcXNtLFL+QzJHKZlyDVYFwcDDRVca3Fa/37QXXC+4zAGGa4YhHrHxKXuuHvLDIQECtA==} - micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} mime-db@1.52.0: @@ -2950,9 +2840,6 @@ packages: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} @@ -2960,8 +2847,8 @@ packages: resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} engines: {node: '>=10'} - nan@2.20.0: - resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} + nan@2.23.1: + resolution: {integrity: sha512-r7bBUGKzlqk8oPBDYxt6Z0aEdF1G1rwlMcLk8LCOMbOzf0mG+JUfUzG4fIMWwHWP0iyaLWEQZJmtB7nOHEm/qw==} nanoid@3.3.11: resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} @@ -2982,8 +2869,8 @@ packages: engines: {node: '>= 0.8.0'} hasBin: true - node-releases@2.0.19: - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + node-releases@2.0.27: + resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} nopt@3.0.6: resolution: {integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==} @@ -3000,8 +2887,8 @@ packages: resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} engines: {node: '>=0.10.0'} - nwsapi@2.2.20: - resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} + nwsapi@2.2.22: + resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==} oauth-sign@0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} @@ -3010,32 +2897,24 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - object-inspect@1.13.2: - resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} - engines: {node: '>= 0.4'} - - object-inspect@1.13.3: - resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} - engines: {node: '>= 0.4'} - - object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} engines: {node: '>= 0.4'} object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} - object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} engines: {node: '>= 0.4'} object.getownpropertydescriptors@2.1.8: resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} engines: {node: '>= 0.8'} - object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} engines: {node: '>= 0.4'} once@1.4.0: @@ -3053,6 +2932,10 @@ packages: resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==} deprecated: This package is no longer supported. + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -3069,8 +2952,8 @@ packages: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - package-json-from-dist@1.0.0: - resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} pako@1.0.11: resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} @@ -3093,8 +2976,8 @@ packages: resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} engines: {node: '>=0.10.0'} - parse5@7.2.1: - resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} pascal-case@3.1.2: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} @@ -3132,16 +3015,13 @@ packages: pathe@2.0.3: resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} - pathval@2.0.0: - resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} engines: {node: '>= 14.16'} performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} - picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -3149,8 +3029,8 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - picomatch@4.0.2: - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} engines: {node: '>=12'} playwright-core@1.52.0: @@ -3166,12 +3046,12 @@ packages: please-upgrade-node@3.2.0: resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} - possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} engines: {node: '>= 0.4'} - postcss@8.5.3: - resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} pretty-format@27.5.1: @@ -3182,8 +3062,8 @@ packages: resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} engines: {node: '>=6'} - prismjs@1.29.0: - resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} + prismjs@1.30.0: + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} engines: {node: '>=6'} process-nextick-args@1.0.7: @@ -3192,14 +3072,11 @@ packages: process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} - property-information@5.6.0: resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} - psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} @@ -3217,13 +3094,10 @@ packages: resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} engines: {node: '>=0.6'} - react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + react-dom@19.2.0: + resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==} peerDependencies: - react: ^18.3.1 - - react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + react: ^19.2.0 react-is@17.0.2: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} @@ -3250,14 +3124,8 @@ packages: peerDependencies: react: '>= 0.14.0' - react-transition-group@4.4.5: - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} - peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' - - react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + react@19.2.0: + resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} engines: {node: '>=0.10.0'} readable-stream@1.1.14: @@ -3277,14 +3145,15 @@ packages: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + refractor@3.6.0: resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} - regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - - regexp.prototype.flags@1.5.3: - resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} engines: {node: '>= 0.4'} replace@1.2.2: @@ -3319,8 +3188,9 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + resolve@1.22.11: + resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==} + engines: {node: '>= 0.4'} hasBin: true rimraf@2.7.1: @@ -3328,13 +3198,8 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rollup@4.40.0: - resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - rollup@4.40.1: - resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==} + rollup@4.53.3: + resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -3344,8 +3209,8 @@ packages: rtl-css-js@1.16.1: resolution: {integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==} - safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} engines: {node: '>=0.4'} safe-buffer@5.1.2: @@ -3354,8 +3219,12 @@ packages: safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} engines: {node: '>= 0.4'} safer-buffer@2.1.2: @@ -3364,19 +3233,19 @@ packages: sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - sax@1.4.1: - resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} + sax@1.4.3: + resolution: {integrity: sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==} saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} - scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - scheduler@0.26.0: resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} + scheduler@0.27.0: + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} + semver-compare@1.0.0: resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} @@ -3388,8 +3257,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.7.1: - resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} engines: {node: '>=10'} hasBin: true @@ -3407,6 +3276,10 @@ packages: resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} engines: {node: '>= 0.4'} + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} @@ -3415,8 +3288,20 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} engines: {node: '>= 0.4'} siginfo@2.0.0: @@ -3439,10 +3324,6 @@ packages: resolution: {integrity: sha512-PxeCIzE+s88Qj6IXkn1SX9aPJSNkLP7epn6xj0J3Pq12SIM5+XMSaC7iLrszTDYaNfxdqZvI1z6W6LHyd1G4Hw==} hasBin: true - source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} - source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} @@ -3469,11 +3350,11 @@ packages: stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - std-env@3.9.0: - resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} - stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} string-width@1.0.2: @@ -3498,12 +3379,13 @@ packages: string.prototype.codepointat@0.2.1: resolution: {integrity: sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==} - string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} engines: {node: '>= 0.4'} - string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} string.prototype.trimstart@1.0.8: resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} @@ -3527,14 +3409,17 @@ packages: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} - strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + strip-ansi@7.1.2: + resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} engines: {node: '>=12'} strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} + strip-literal@3.1.0: + resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} + style-dictionary@3.9.2: resolution: {integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==} engines: {node: '>=12.0.0'} @@ -3583,8 +3468,8 @@ packages: symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - tabster@8.5.3: - resolution: {integrity: sha512-SO3HFGqPuTbK5ClrBGQgGtmbTq/VdldqSnQgKg4H+T0u+9x4bZ6YVOFu7juMKzK/IF/ekpVivSz/qkAeVr3y0Q==} + tabster@8.5.6: + resolution: {integrity: sha512-2vfrRGrx8O9BjdrtSlVA5fvpmbq5HQBRN13XFRg6LAvZ1Fr3QdBnswgT4YgFS5Bhoo5nxwgjRaRueI2Us/dv7g==} tar@2.2.2: resolution: {integrity: sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==} @@ -3599,20 +3484,20 @@ packages: tinyexec@0.3.2: resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} - tinyglobby@0.2.13: - resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} engines: {node: '>=12.0.0'} - tinypool@1.0.2: - resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} engines: {node: ^18.0.0 || >=20.0.0} tinyrainbow@2.0.0: resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} engines: {node: '>=14.0.0'} - tinyspy@3.0.2: - resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} + tinyspy@4.0.4: + resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} engines: {node: '>=14.0.0'} tldts-core@6.1.86: @@ -3622,16 +3507,13 @@ packages: resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} hasBin: true - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} token-transformer@0.0.33: resolution: {integrity: sha512-0h7Cvo8trUcv6sZPyA+iNHsFEwIhN4FhXtYqgndHQNYub+dTDW8ZCQURBNDNa0PvJ8Xg2wqG1V/5WSwV0l6yOw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. hasBin: true tough-cookie@2.5.0: @@ -3642,13 +3524,10 @@ packages: resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} engines: {node: '>=16'} - tr46@5.1.0: - resolution: {integrity: sha512-IUWnUK7ADYR5Sl1fZlO1INDUhVhatWl7BtJWsIhwJ0UAK7ilzzIa8uIqOO/aYVWHZPJkKbEL+362wrzoeRF7bw==} + tr46@5.1.1: + resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} engines: {node: '>=18'} - tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} @@ -3671,37 +3550,38 @@ packages: tweetnacl@0.14.5: resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} engines: {node: '>= 0.4'} - typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} engines: {node: '>= 0.4'} - typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} engines: {node: '>= 0.4'} - typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} engines: {node: '>= 0.4'} - typescript@5.8.3: - resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} engines: {node: '>=14.17'} hasBin: true - uglify-js@3.18.0: - resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} engines: {node: '>=0.8.0'} hasBin: true - unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} - underscore@1.13.6: - resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==} + underscore@1.13.7: + resolution: {integrity: sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==} undici-types@6.21.0: resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} @@ -3713,8 +3593,8 @@ packages: unquote@1.1.1: resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} - update-browserslist-db@1.1.3: - resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + update-browserslist-db@1.1.4: + resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -3731,18 +3611,10 @@ packages: url-join@1.1.0: resolution: {integrity: sha512-zz1wZk4Lb5PTVwZ3HWDmm8XnlPvmOof6/fjdDPA5yBrUcbtV64U6bV832Zf1BtU2WkBBWaUT46wCs+l0HP5nhg==} - use-disposable@1.0.2: - resolution: {integrity: sha512-UMaXVlV77dWOu4GqAFNjRzHzowYKUKbJBQfCexvahrYeIz4OkUYUjna4Tjjdf92NH8Nm8J7wEfFRgTIwYjO5jg==} - peerDependencies: - '@types/react': '>=16.8.0 <19.0.0' - '@types/react-dom': '>=16.8.0 <19.0.0' - react: '>=16.8.0 <19.0.0' - react-dom: '>=16.8.0 <19.0.0' - - use-sync-external-store@1.2.2: - resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} + use-sync-external-store@1.6.0: + resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -3764,53 +3636,13 @@ packages: resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} - vite-node@3.1.2: - resolution: {integrity: sha512-/8iMryv46J3aK13iUXsei5G/A3CUlW4665THCPS+K8xAaqrVWiGB4RfXMQXCLjpK9P2eK//BczrVkn5JLAk6DA==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - - vite@6.3.2: - resolution: {integrity: sha512-ZSvGOXKGceizRQIZSz7TGJ0pS3QLlVY/9hwxVh17W3re67je1RKYzFHivZ/t0tubU78Vkyb9WnHPENSBCzbckg==} + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - jiti: '>=1.21.0' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - '@types/node': - optional: true - jiti: - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - tsx: - optional: true - yaml: - optional: true - vite@6.3.4: - resolution: {integrity: sha512-BiReIiMS2fyFqbqNT/Qqt4CVITDU9M9vE+DKcVAsB+ZV0wvTKd+3hMbkpxz1b+NmEDMegpVbisKiAZOnvO92Sw==} + vite@6.4.1: + resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: @@ -3849,16 +3681,16 @@ packages: yaml: optional: true - vitest@3.1.2: - resolution: {integrity: sha512-WaxpJe092ID1C0mr+LH9MmNrhfzi8I65EX/NRU/Ld016KqQNRgxSOlGNP1hHN+a/F8L15Mh8klwaF77zR3GeDQ==} + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - '@vitest/browser': 3.1.2 - '@vitest/ui': 3.1.2 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3900,8 +3732,13 @@ packages: resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} engines: {node: '>=18'} - which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} which-collection@1.0.2: resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} @@ -3910,8 +3747,8 @@ packages: which-module@2.0.1: resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} engines: {node: '>= 0.4'} which@1.3.1: @@ -3953,8 +3790,8 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - ws@8.18.1: - resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==} + ws@8.18.3: + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -4027,203 +3864,129 @@ packages: snapshots: - '@adobe/css-tools@4.4.0': {} - - '@ampproject/remapping@2.3.0': - dependencies: - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 + '@adobe/css-tools@4.4.4': {} - '@asamuzakjp/css-color@3.1.1': + '@asamuzakjp/css-color@3.2.0': dependencies: - '@csstools/css-calc': 2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) - '@csstools/css-color-parser': 3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) - '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) - '@csstools/css-tokenizer': 3.0.3 + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 lru-cache: 10.4.3 - '@babel/code-frame@7.24.7': + '@babel/code-frame@7.27.1': dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.0.1 - - '@babel/code-frame@7.26.2': - dependencies: - '@babel/helper-validator-identifier': 7.25.9 + '@babel/helper-validator-identifier': 7.28.5 js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/compat-data@7.26.8': {} + '@babel/compat-data@7.28.5': {} - '@babel/core@7.26.10': + '@babel/core@7.28.5': dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.27.0 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helpers': 7.27.0 - '@babel/parser': 7.27.0 - '@babel/template': 7.27.0 - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) + '@babel/helpers': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 - debug: 4.4.0 + debug: 4.4.3 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/generator@7.24.8': - dependencies: - '@babel/types': 7.27.0 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - - '@babel/generator@7.27.0': + '@babel/generator@7.28.5': dependencies: - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - '@babel/helper-compilation-targets@7.27.0': + '@babel/helper-compilation-targets@7.27.2': dependencies: - '@babel/compat-data': 7.26.8 - '@babel/helper-validator-option': 7.25.9 - browserslist: 4.24.4 + '@babel/compat-data': 7.28.5 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.28.0 lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-environment-visitor@7.24.7': - dependencies: - '@babel/types': 7.27.0 - - '@babel/helper-function-name@7.24.7': - dependencies: - '@babel/template': 7.27.0 - '@babel/types': 7.27.0 - - '@babel/helper-hoist-variables@7.24.7': - dependencies: - '@babel/types': 7.27.0 + '@babel/helper-globals@7.28.0': {} - '@babel/helper-module-imports@7.25.9': + '@babel/helper-module-imports@7.27.1': dependencies: - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)': + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.27.0 + '@babel/core': 7.28.5 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/helper-plugin-utils@7.26.5': {} + '@babel/helper-plugin-utils@7.27.1': {} - '@babel/helper-split-export-declaration@7.24.7': - dependencies: - '@babel/types': 7.27.0 + '@babel/helper-string-parser@7.27.1': {} - '@babel/helper-string-parser@7.24.8': {} + '@babel/helper-validator-identifier@7.28.5': {} - '@babel/helper-string-parser@7.25.9': {} + '@babel/helper-validator-option@7.27.1': {} - '@babel/helper-validator-identifier@7.24.7': {} + '@babel/helpers@7.28.4': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.5 - '@babel/helper-validator-identifier@7.25.9': {} + '@babel/parser@7.28.5': + dependencies: + '@babel/types': 7.28.5 - '@babel/helper-validator-option@7.25.9': {} - - '@babel/helpers@7.27.0': - dependencies: - '@babel/template': 7.27.0 - '@babel/types': 7.27.0 - - '@babel/highlight@7.24.7': - dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.1 - - '@babel/parser@7.24.8': - dependencies: - '@babel/types': 7.24.8 - - '@babel/parser@7.27.0': - dependencies: - '@babel/types': 7.27.0 - - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.28.5 + '@babel/helper-plugin-utils': 7.27.1 - '@babel/runtime@7.24.8': + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)': dependencies: - regenerator-runtime: 0.14.1 + '@babel/core': 7.28.5 + '@babel/helper-plugin-utils': 7.27.1 - '@babel/runtime@7.26.10': - dependencies: - regenerator-runtime: 0.14.1 + '@babel/runtime@7.28.4': {} - '@babel/template@7.27.0': + '@babel/template@7.27.2': dependencies: - '@babel/code-frame': 7.26.2 - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 - '@babel/traverse@7.24.8': + '@babel/traverse@7.28.5': dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.8 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-hoist-variables': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/parser': 7.24.8 - '@babel/types': 7.24.8 - debug: 4.4.0 - globals: 11.12.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 + '@babel/types': 7.28.5 + debug: 4.4.3 transitivePeerDependencies: - supports-color - '@babel/traverse@7.27.0': + '@babel/types@7.28.5': dependencies: - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.27.0 - '@babel/parser': 7.27.0 - '@babel/template': 7.27.0 - '@babel/types': 7.27.0 - debug: 4.4.0 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - '@babel/types@7.24.8': - dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - to-fast-properties: 2.0.0 - - '@babel/types@7.27.0': - dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 '@biomejs/biome@1.9.4': optionalDependencies: @@ -4260,1297 +4023,2101 @@ snapshots: '@biomejs/cli-win32-x64@1.9.4': optional: true - '@csstools/color-helpers@5.0.2': {} + '@csstools/color-helpers@5.1.0': {} - '@csstools/css-calc@2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': + '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: - '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) - '@csstools/css-tokenizer': 3.0.3 + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 - '@csstools/css-color-parser@3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': + '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: - '@csstools/color-helpers': 5.0.2 - '@csstools/css-calc': 2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) - '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) - '@csstools/css-tokenizer': 3.0.3 + '@csstools/color-helpers': 5.1.0 + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 - '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)': + '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)': dependencies: - '@csstools/css-tokenizer': 3.0.3 + '@csstools/css-tokenizer': 3.0.4 - '@csstools/css-tokenizer@3.0.3': {} + '@csstools/css-tokenizer@3.0.4': {} '@ctrl/tinycolor@3.6.1': {} '@emotion/hash@0.9.2': {} - '@esbuild/aix-ppc64@0.25.3': + '@esbuild/aix-ppc64@0.25.12': + optional: true + + '@esbuild/android-arm64@0.25.12': optional: true - '@esbuild/android-arm64@0.25.3': + '@esbuild/android-arm@0.25.12': optional: true - '@esbuild/android-arm@0.25.3': + '@esbuild/android-x64@0.25.12': optional: true - '@esbuild/android-x64@0.25.3': + '@esbuild/darwin-arm64@0.25.12': optional: true - '@esbuild/darwin-arm64@0.25.3': + '@esbuild/darwin-x64@0.25.12': optional: true - '@esbuild/darwin-x64@0.25.3': + '@esbuild/freebsd-arm64@0.25.12': optional: true - '@esbuild/freebsd-arm64@0.25.3': + '@esbuild/freebsd-x64@0.25.12': optional: true - '@esbuild/freebsd-x64@0.25.3': + '@esbuild/linux-arm64@0.25.12': optional: true - '@esbuild/linux-arm64@0.25.3': + '@esbuild/linux-arm@0.25.12': optional: true - '@esbuild/linux-arm@0.25.3': + '@esbuild/linux-ia32@0.25.12': optional: true - '@esbuild/linux-ia32@0.25.3': + '@esbuild/linux-loong64@0.25.12': optional: true - '@esbuild/linux-loong64@0.25.3': + '@esbuild/linux-mips64el@0.25.12': optional: true - '@esbuild/linux-mips64el@0.25.3': + '@esbuild/linux-ppc64@0.25.12': optional: true - '@esbuild/linux-ppc64@0.25.3': + '@esbuild/linux-riscv64@0.25.12': optional: true - '@esbuild/linux-riscv64@0.25.3': + '@esbuild/linux-s390x@0.25.12': optional: true - '@esbuild/linux-s390x@0.25.3': + '@esbuild/linux-x64@0.25.12': optional: true - '@esbuild/linux-x64@0.25.3': + '@esbuild/netbsd-arm64@0.25.12': optional: true - '@esbuild/netbsd-arm64@0.25.3': + '@esbuild/netbsd-x64@0.25.12': optional: true - '@esbuild/netbsd-x64@0.25.3': + '@esbuild/openbsd-arm64@0.25.12': optional: true - '@esbuild/openbsd-arm64@0.25.3': + '@esbuild/openbsd-x64@0.25.12': optional: true - '@esbuild/openbsd-x64@0.25.3': + '@esbuild/openharmony-arm64@0.25.12': optional: true - '@esbuild/sunos-x64@0.25.3': + '@esbuild/sunos-x64@0.25.12': optional: true - '@esbuild/win32-arm64@0.25.3': + '@esbuild/win32-arm64@0.25.12': optional: true - '@esbuild/win32-ia32@0.25.3': + '@esbuild/win32-ia32@0.25.12': optional: true - '@esbuild/win32-x64@0.25.3': + '@esbuild/win32-x64@0.25.12': optional: true - '@floating-ui/core@1.6.4': + '@floating-ui/core@1.7.3': dependencies: - '@floating-ui/utils': 0.2.9 + '@floating-ui/utils': 0.2.10 - '@floating-ui/devtools@0.2.1(@floating-ui/dom@1.6.13)': + '@floating-ui/devtools@0.2.3(@floating-ui/dom@1.7.4)': dependencies: - '@floating-ui/dom': 1.6.13 + '@floating-ui/dom': 1.7.4 - '@floating-ui/dom@1.6.13': + '@floating-ui/dom@1.7.4': dependencies: - '@floating-ui/core': 1.6.4 - '@floating-ui/utils': 0.2.9 + '@floating-ui/core': 1.7.3 + '@floating-ui/utils': 0.2.10 - '@floating-ui/utils@0.2.9': {} + '@floating-ui/utils@0.2.10': {} '@fluentui/keyboard-keys@9.0.8': dependencies: - '@swc/helpers': 0.5.12 - - '@fluentui/priority-overflow@9.1.15': - dependencies: - '@swc/helpers': 0.5.12 - - '@fluentui/react-accordion@9.6.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-motion': 9.7.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-motion-components-preview': 0.4.9(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@swc/helpers': 0.5.17 + + '@fluentui/priority-overflow@9.2.1': + dependencies: + '@swc/helpers': 0.5.17 + + '@fluentui/react-accordion@9.8.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-accordion@9.8.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-alert@9.0.0-beta.124(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-avatar': 9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-button': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.50(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-alert@9.0.0-beta.129(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-aria@9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-alert@9.0.0-beta.129(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-aria@9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-avatar@9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-badge': 9.2.54(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-popover': 9.10.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-tooltip': 9.6.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-avatar@9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-badge': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-tooltip': 9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-badge@9.2.54(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-breadcrumb@9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-button': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-link': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-button@9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-avatar@9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-badge': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-tooltip': 9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-badge@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-breadcrumb@9.3.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-link': 9.7.0(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-button@9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-card@9.2.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-card@9.5.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-text': 9.4.36(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-carousel@9.6.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-button': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-tooltip': 9.6.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - embla-carousel: 8.5.2 - embla-carousel-autoplay: 8.5.2(embla-carousel@8.5.2) - embla-carousel-fade: 8.5.2(embla-carousel@8.5.2) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-text': 9.6.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-carousel@9.8.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-tooltip': 9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + embla-carousel: 8.6.0 + embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) + embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-carousel@9.8.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-tooltip': 9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + embla-carousel: 8.6.0 + embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) + embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-checkbox@9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-checkbox@9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-label': 9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-checkbox@9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-color-picker@9.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-color-picker@9.2.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': dependencies: '@ctrl/tinycolor': 3.6.1 - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-color-picker@9.2.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@ctrl/tinycolor': 3.6.1 + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-combobox@9.16.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-combobox@9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-combobox@9.16.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-positioning': 9.16.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-components@9.62.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-accordion': 9.6.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-alert': 9.0.0-beta.124(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-avatar': 9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-badge': 9.2.54(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-breadcrumb': 9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-button': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-card': 9.2.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-carousel': 9.6.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-checkbox': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-color-picker': 9.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-combobox': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-dialog': 9.12.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-divider': 9.2.86(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-drawer': 9.7.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-image': 9.1.84(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-infobutton': 9.0.0-beta.102(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-infolabel': 9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-input': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-label': 9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-link': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-list': 9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-menu': 9.16.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-message-bar': 9.4.6(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-motion': 9.7.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-overflow': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-persona': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-popover': 9.10.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-positioning': 9.16.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-progress': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-provider': 9.20.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-radio': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-rating': 9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-search': 9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-select': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-skeleton': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-slider': 9.3.6(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-spinbutton': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-spinner': 9.5.11(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-swatch-picker': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-switch': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-table': 9.16.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-tabs': 9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-tag-picker': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-tags': 9.5.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-teaching-popover': 9.4.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-text': 9.4.36(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-textarea': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-toast': 9.4.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-toolbar': 9.4.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-tooltip': 9.6.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-tree': 9.10.8(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-virtualizer': 9.0.0-alpha.96(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-components@9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-accordion': 9.8.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-alert': 9.0.0-beta.129(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-badge': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-breadcrumb': 9.3.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-card': 9.5.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-carousel': 9.8.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-checkbox': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-color-picker': 9.2.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-combobox': 9.16.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-dialog': 9.16.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-divider': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-drawer': 9.10.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-image': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-infobutton': 9.0.0-beta.107(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-infolabel': 9.4.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-input': 9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-link': 9.7.0(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-list': 9.6.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-menu': 9.20.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-message-bar': 9.6.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-nav': 9.3.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-overflow': 9.6.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-persona': 9.5.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-progress': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-provider': 9.22.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-radio': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-rating': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-search': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-select': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-skeleton': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-slider': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-spinbutton': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-spinner': 9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-swatch-picker': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-switch': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-table': 9.19.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-tabs': 9.10.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-tag-picker': 9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-tags': 9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-teaching-popover': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-text': 9.6.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-textarea': 9.6.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-toast': 9.7.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-toolbar': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-tooltip': 9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-tree': 9.15.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-virtualizer': 9.0.0-alpha.107(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-context-selector@9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-components@9.72.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-accordion': 9.8.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-alert': 9.0.0-beta.129(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-badge': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-breadcrumb': 9.3.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-card': 9.5.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-carousel': 9.8.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-checkbox': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-color-picker': 9.2.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-combobox': 9.16.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-dialog': 9.16.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-divider': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-drawer': 9.10.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-image': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-infobutton': 9.0.0-beta.107(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-infolabel': 9.4.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-input': 9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-link': 9.7.0(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-list': 9.6.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-menu': 9.20.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-message-bar': 9.6.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-nav': 9.3.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-overflow': 9.6.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-persona': 9.5.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-progress': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-provider': 9.22.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-radio': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-rating': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-search': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-select': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-skeleton': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-slider': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-spinbutton': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-spinner': 9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-swatch-picker': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-switch': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-table': 9.19.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-tabs': 9.10.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-tag-picker': 9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-tags': 9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-teaching-popover': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-text': 9.6.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-textarea': 9.6.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-toast': 9.7.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-toolbar': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-tooltip': 9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-tree': 9.15.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-virtualizer': 9.0.0-alpha.107(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-context-selector@9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': dependencies: - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) scheduler: 0.26.0 - '@fluentui/react-dialog@9.12.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-context-selector@9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + scheduler: 0.27.0 + + '@fluentui/react-dialog@9.16.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-dialog@9.16.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-motion': 9.7.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-motion-components-preview': 0.4.9(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-divider@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-drawer@9.10.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-dialog': 9.16.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-divider@9.2.86(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-drawer@9.7.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-dialog': 9.12.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-motion': 9.7.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-drawer@9.10.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-dialog': 9.16.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-field@9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-label': 9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-field@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-icons@2.0.297(react@18.3.1)': + '@fluentui/react-field@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-icons@2.0.315(react@19.2.0)': dependencies: - '@griffel/react': 1.5.29(react@18.3.1) - react: 18.3.1 + '@griffel/react': 1.5.32(react@19.2.0) + react: 19.2.0 tslib: 2.8.1 - '@fluentui/react-image@9.1.84(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-infobutton@9.0.0-beta.102(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.50(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-label': 9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-popover': 9.10.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-image@9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-infobutton@9.0.0-beta.107(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-infobutton@9.0.0-beta.107(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-infolabel@9.4.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-infolabel@9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-label': 9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-popover': 9.10.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-infolabel@9.4.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-input@9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-input@9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-jsx-runtime@9.0.50(@types/react@18.3.12)(react@18.3.1)': + '@fluentui/react-input@9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-jsx-runtime@9.3.3(@types/react@19.2.6)(react@19.2.0)': dependencies: - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - react: 18.3.1 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + react: 19.2.0 react-is: 17.0.2 - '@fluentui/react-jsx-runtime@9.0.54(@types/react@18.3.12)(react@18.3.1)': + '@fluentui/react-label@9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - react: 18.3.1 - react-is: 17.0.2 + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) - '@fluentui/react-label@9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-link@9.7.0(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-list@9.6.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-checkbox': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler - '@fluentui/react-link@9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-list@9.6.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-list@9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-checkbox': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-menu@9.20.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-checkbox': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-menu@9.16.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-menu@9.20.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-positioning': 9.16.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-message-bar@9.6.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-link': 9.7.0(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-motion-components-preview@0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-motion@9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-nav@9.3.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-divider': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-drawer': 9.10.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-tooltip': 9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-nav@9.3.14(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-divider': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-drawer': 9.10.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-tooltip': 9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-message-bar@9.4.6(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-button': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-link': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.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) - - '@fluentui/react-motion-components-preview@0.4.9(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-motion': 9.7.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-motion@9.7.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-overflow@9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/priority-overflow': 9.1.15 - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-overflow@9.6.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/priority-overflow': 9.2.1 + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-persona@9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-avatar': 9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-badge': 9.2.54(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-overflow@9.6.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/priority-overflow': 9.2.1 + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-popover@9.10.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-persona@9.5.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-badge': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-persona@9.5.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-badge': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-popover@9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-popover@9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-positioning': 9.16.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-portal@9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-positioning@9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@floating-ui/devtools': 0.2.3(@floating-ui/dom@1.7.4) + '@floating-ui/dom': 1.7.4 + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + use-sync-external-store: 1.6.0(react@19.2.0) + + '@fluentui/react-progress@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-progress@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-provider@9.22.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/core': 1.19.2 + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-radio@9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-radio@9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-rating@9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-search@9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-input': 9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-portal@9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - use-disposable: 1.0.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - - '@fluentui/react-positioning@9.16.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@floating-ui/devtools': 0.2.1(@floating-ui/dom@1.6.13) - '@floating-ui/dom': 1.6.13 - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-progress@9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-search@9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-input': 9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-provider@9.20.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/core': 1.19.1 - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-radio@9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-label': 9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-select@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-rating@9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-search@9.1.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-input': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-select@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-select@9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-shared-contexts@9.26.0(@types/react@19.2.6)(react@19.2.0)': + dependencies: + '@fluentui/react-theme': 9.2.0 + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + react: 19.2.0 + + '@fluentui/react-skeleton@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-shared-contexts@9.23.1(@types/react@18.3.12)(react@18.3.1)': - dependencies: - '@fluentui/react-theme': 9.1.24 - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - react: 18.3.1 - - '@fluentui/react-skeleton@9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-skeleton@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-slider@9.3.6(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-slider@9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-slider@9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-spinbutton@9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-spinbutton@9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-spinbutton@9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-spinner@9.7.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-swatch-picker@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-spinner@9.5.11(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-label': 9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-swatch-picker@9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-swatch-picker@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-switch@9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-label': 9.1.87(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-switch@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-table@9.16.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-switch@9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-label': 9.3.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-table@9.19.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-avatar': 9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-checkbox': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-radio': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-checkbox': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-radio': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-tabs@9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-table@9.19.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-checkbox': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-radio': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-tabster@9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-tabs@9.10.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-tabs@9.10.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-tabster@9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) keyborg: 2.6.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tabster: 8.5.3 + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + tabster: 8.5.6 + + '@fluentui/react-tag-picker@9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-combobox': 9.16.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-tags': 9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-tag-picker@9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-combobox': 9.16.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-tags': 9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler - '@fluentui/react-tag-picker@9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-tags@9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-combobox': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-positioning': 9.16.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-tags': 9.5.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-tags@9.5.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-tags@9.7.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-avatar': 9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-teaching-popover@9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + use-sync-external-store: 1.6.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-teaching-popover@9.4.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-button': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-popover': 9.10.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - use-sync-external-store: 1.2.2(react@18.3.1) + '@fluentui/react-teaching-popover@9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-popover': 9.12.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + use-sync-external-store: 1.6.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-text@9.4.36(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-textarea@9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-field': 9.2.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-text@9.6.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-textarea@9.6.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-theme@9.1.24': + '@fluentui/react-textarea@9.6.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-field': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-theme@9.2.0': dependencies: - '@fluentui/tokens': 1.0.0-alpha.21 - '@swc/helpers': 0.5.12 + '@fluentui/tokens': 1.0.0-alpha.22 + '@swc/helpers': 0.5.17 - '@fluentui/react-toast@9.4.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-toast@9.7.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-motion': 9.7.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-motion-components-preview': 0.4.9(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-toolbar@9.4.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': - dependencies: - '@fluentui/react-button': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-divider': 9.2.86(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-radio': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-toolbar@9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': + dependencies: + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-divider': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-radio': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-tooltip@9.6.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-toolbar@9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': + dependencies: + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-divider': 9.4.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-radio': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-tooltip@9.8.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@fluentui/keyboard-keys': 9.0.8 + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-portal': 9.8.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-positioning': 9.20.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + + '@fluentui/react-tree@9.15.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-portal': 9.5.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-positioning': 9.16.7(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@fluentui/react-tree@9.10.8(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0)': + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-checkbox': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-radio': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.26.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + transitivePeerDependencies: + - scheduler + + '@fluentui/react-tree@9.15.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-aria': 9.14.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-avatar': 9.7.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-button': 9.4.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-checkbox': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-context-selector': 9.1.76(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-icons': 2.0.297(react@18.3.1) - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-motion': 9.7.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-motion-components-preview': 0.4.9(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-radio': 9.3.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.26.0) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-tabster': 9.24.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-theme': 9.1.24 - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-aria': 9.17.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-avatar': 9.9.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-button': 9.6.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-checkbox': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-context-selector': 9.2.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-icons': 2.0.315(react@19.2.0) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-motion': 9.11.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-motion-components-preview': 0.14.1(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-radio': 9.5.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-tabster': 9.26.10(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@fluentui/react-theme': 9.2.0 + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - scheduler - '@fluentui/react-utilities@9.19.0(@types/react@18.3.12)(react@18.3.1)': + '@fluentui/react-utilities@9.25.4(@types/react@19.2.6)(react@19.2.0)': dependencies: '@fluentui/keyboard-keys': 9.0.8 - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - react: 18.3.1 + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + react: 19.2.0 - '@fluentui/react-virtualizer@9.0.0-alpha.96(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@fluentui/react-virtualizer@9.0.0-alpha.107(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: - '@fluentui/react-jsx-runtime': 9.0.54(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-shared-contexts': 9.23.1(@types/react@18.3.12)(react@18.3.1) - '@fluentui/react-utilities': 9.19.0(@types/react@18.3.12)(react@18.3.1) - '@griffel/react': 1.5.29(react@18.3.1) - '@swc/helpers': 0.5.12 - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@fluentui/react-jsx-runtime': 9.3.3(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-shared-contexts': 9.26.0(@types/react@19.2.6)(react@19.2.0) + '@fluentui/react-utilities': 9.25.4(@types/react@19.2.6)(react@19.2.0) + '@griffel/react': 1.5.32(react@19.2.0) + '@swc/helpers': 0.5.17 + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) - '@fluentui/tokens@1.0.0-alpha.21': + '@fluentui/tokens@1.0.0-alpha.22': dependencies: - '@swc/helpers': 0.5.12 + '@swc/helpers': 0.5.17 - '@griffel/core@1.19.1': + '@griffel/core@1.19.2': dependencies: '@emotion/hash': 0.9.2 '@griffel/style-types': 1.3.0 - csstype: 3.1.3 + csstype: 3.2.3 rtl-css-js: 1.16.1 stylis: 4.3.6 tslib: 2.8.1 - '@griffel/react@1.5.29(react@18.3.1)': + '@griffel/react@1.5.32(react@19.2.0)': dependencies: - '@griffel/core': 1.19.1 - react: 18.3.1 + '@griffel/core': 1.19.2 + react: 19.2.0 tslib: 2.8.1 '@griffel/style-types@1.3.0': dependencies: - csstype: 3.1.3 + csstype: 3.2.3 '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 strip-ansi-cjs: strip-ansi@6.0.1 wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@jridgewell/gen-mapping@0.3.5': + '@jridgewell/gen-mapping@0.3.13': dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 - '@jridgewell/gen-mapping@0.3.8': + '@jridgewell/remapping@2.3.5': dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 '@jridgewell/resolve-uri@3.1.2': {} - '@jridgewell/set-array@1.2.1': {} + '@jridgewell/sourcemap-codec@1.5.5': {} - '@jridgewell/sourcemap-codec@1.5.0': {} - - '@jridgewell/trace-mapping@0.3.25': + '@jridgewell/trace-mapping@0.3.31': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 '@pkgjs/parseargs@0.11.0': optional: true @@ -5561,124 +6128,75 @@ snapshots: '@remix-run/router@1.23.0': {} - '@rollup/rollup-android-arm-eabi@4.40.0': - optional: true + '@rolldown/pluginutils@1.0.0-beta.27': {} - '@rollup/rollup-android-arm-eabi@4.40.1': + '@rollup/rollup-android-arm-eabi@4.53.3': optional: true - '@rollup/rollup-android-arm64@4.40.0': + '@rollup/rollup-android-arm64@4.53.3': optional: true - '@rollup/rollup-android-arm64@4.40.1': + '@rollup/rollup-darwin-arm64@4.53.3': optional: true - '@rollup/rollup-darwin-arm64@4.40.0': + '@rollup/rollup-darwin-x64@4.53.3': optional: true - '@rollup/rollup-darwin-arm64@4.40.1': + '@rollup/rollup-freebsd-arm64@4.53.3': optional: true - '@rollup/rollup-darwin-x64@4.40.0': + '@rollup/rollup-freebsd-x64@4.53.3': optional: true - '@rollup/rollup-darwin-x64@4.40.1': + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': optional: true - '@rollup/rollup-freebsd-arm64@4.40.0': + '@rollup/rollup-linux-arm-musleabihf@4.53.3': optional: true - '@rollup/rollup-freebsd-arm64@4.40.1': + '@rollup/rollup-linux-arm64-gnu@4.53.3': optional: true - '@rollup/rollup-freebsd-x64@4.40.0': + '@rollup/rollup-linux-arm64-musl@4.53.3': optional: true - '@rollup/rollup-freebsd-x64@4.40.1': + '@rollup/rollup-linux-loong64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.40.0': + '@rollup/rollup-linux-ppc64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.40.1': + '@rollup/rollup-linux-riscv64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.40.0': + '@rollup/rollup-linux-riscv64-musl@4.53.3': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.40.1': - optional: true - - '@rollup/rollup-linux-arm64-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-arm64-gnu@4.40.1': - optional: true - - '@rollup/rollup-linux-arm64-musl@4.40.0': - optional: true - - '@rollup/rollup-linux-arm64-musl@4.40.1': - optional: true - - '@rollup/rollup-linux-loongarch64-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-loongarch64-gnu@4.40.1': - optional: true - - '@rollup/rollup-linux-powerpc64le-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-powerpc64le-gnu@4.40.1': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.40.1': - optional: true - - '@rollup/rollup-linux-riscv64-musl@4.40.0': - optional: true - - '@rollup/rollup-linux-riscv64-musl@4.40.1': - optional: true - - '@rollup/rollup-linux-s390x-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-s390x-gnu@4.40.1': + '@rollup/rollup-linux-s390x-gnu@4.53.3': optional: true '@rollup/rollup-linux-x64-gnu@4.40.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.40.1': - optional: true - - '@rollup/rollup-linux-x64-musl@4.40.0': + '@rollup/rollup-linux-x64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-x64-musl@4.40.1': + '@rollup/rollup-linux-x64-musl@4.53.3': optional: true - '@rollup/rollup-win32-arm64-msvc@4.40.0': + '@rollup/rollup-openharmony-arm64@4.53.3': optional: true - '@rollup/rollup-win32-arm64-msvc@4.40.1': + '@rollup/rollup-win32-arm64-msvc@4.53.3': optional: true - '@rollup/rollup-win32-ia32-msvc@4.40.0': + '@rollup/rollup-win32-ia32-msvc@4.53.3': optional: true - '@rollup/rollup-win32-ia32-msvc@4.40.1': + '@rollup/rollup-win32-x64-gnu@4.53.3': optional: true - '@rollup/rollup-win32-x64-msvc@4.40.0': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.40.1': + '@rollup/rollup-win32-x64-msvc@4.53.3': optional: true '@svgr/babel-plugin-add-jsx-attribute@5.4.0': {} @@ -5718,111 +6236,116 @@ snapshots: '@svgr/hast-util-to-babel-ast@5.5.0': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.28.5 '@svgr/plugin-jsx@5.5.0': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.28.5 '@svgr/babel-preset': 5.5.0 '@svgr/hast-util-to-babel-ast': 5.5.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - '@swc/helpers@0.5.12': + '@swc/helpers@0.5.17': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 - '@testing-library/dom@9.3.4': + '@testing-library/dom@10.4.1': dependencies: - '@babel/code-frame': 7.24.7 - '@babel/runtime': 7.24.8 + '@babel/code-frame': 7.27.1 + '@babel/runtime': 7.28.4 '@types/aria-query': 5.0.4 - aria-query: 5.1.3 - chalk: 4.1.2 + aria-query: 5.3.0 dom-accessibility-api: 0.5.16 lz-string: 1.5.0 + picocolors: 1.1.1 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.6.3': + '@testing-library/jest-dom@6.9.1': dependencies: - '@adobe/css-tools': 4.4.0 - aria-query: 5.3.0 - chalk: 3.0.0 + '@adobe/css-tools': 4.4.4 + aria-query: 5.3.2 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - lodash: 4.17.21 + picocolors: 1.1.1 redent: 3.0.0 - '@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@testing-library/react@16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: - '@babel/runtime': 7.24.8 - '@testing-library/dom': 9.3.4 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@babel/runtime': 7.28.4 + '@testing-library/dom': 10.4.1 + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + optionalDependencies: + '@types/react': 19.2.6 + '@types/react-dom': 19.2.3(@types/react@19.2.6) - '@testing-library/user-event@14.6.1(@testing-library/dom@9.3.4)': + '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)': dependencies: - '@testing-library/dom': 9.3.4 + '@testing-library/dom': 10.4.1 '@types/aria-query@5.0.4': {} '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@types/babel__generator': 7.27.0 '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.7 + '@types/babel__traverse': 7.28.0 '@types/babel__generator@7.27.0': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.28.5 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 - '@types/babel__traverse@7.20.7': + '@types/babel__traverse@7.28.0': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.28.5 - '@types/estree@1.0.7': {} + '@types/chai@5.2.3': + dependencies: + '@types/deep-eql': 4.0.2 + assertion-error: 2.0.1 + + '@types/deep-eql@4.0.2': {} + + '@types/estree@1.0.8': {} '@types/hast@2.3.10': dependencies: - '@types/unist': 2.0.10 + '@types/unist': 2.0.11 '@types/minimatch@3.0.5': {} - '@types/node@22.15.3': + '@types/node@22.19.1': dependencies: undici-types: 6.21.0 '@types/parse-json@4.0.2': {} - '@types/prop-types@15.7.12': {} - '@types/q@1.5.8': {} - '@types/react-dom@18.3.1': + '@types/react-dom@19.2.3(@types/react@19.2.6)': dependencies: - '@types/react': 18.3.12 + '@types/react': 19.2.6 '@types/react-syntax-highlighter@15.5.13': dependencies: - '@types/react': 18.3.12 + '@types/react': 19.2.6 - '@types/react@18.3.12': + '@types/react@19.2.6': dependencies: - '@types/prop-types': 15.7.12 - csstype: 3.1.3 + csstype: 3.2.3 - '@types/semver@7.7.0': {} + '@types/semver@7.7.1': {} - '@types/unist@2.0.10': {} + '@types/unist@2.0.11': {} '@types/yargs-parser@21.0.3': {} @@ -5830,92 +6353,95 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@vitejs/plugin-react@4.4.1(vite@6.3.4(@types/node@22.15.3))': + '@vitejs/plugin-react@4.7.0(vite@6.4.1(@types/node@22.19.1))': dependencies: - '@babel/core': 7.26.10 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) + '@babel/core': 7.28.5 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5) + '@rolldown/pluginutils': 1.0.0-beta.27 '@types/babel__core': 7.20.5 react-refresh: 0.17.0 - vite: 6.3.4(@types/node@22.15.3) + vite: 6.4.1(@types/node@22.19.1) transitivePeerDependencies: - supports-color - '@vitest/expect@3.1.2': + '@vitest/expect@3.2.4': dependencies: - '@vitest/spy': 3.1.2 - '@vitest/utils': 3.1.2 - chai: 5.2.0 + '@types/chai': 5.2.3 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 tinyrainbow: 2.0.0 - '@vitest/mocker@3.1.2(vite@6.3.2(@types/node@22.15.3))': + '@vitest/mocker@3.2.4(vite@6.4.1(@types/node@22.19.1))': dependencies: - '@vitest/spy': 3.1.2 + '@vitest/spy': 3.2.4 estree-walker: 3.0.3 - magic-string: 0.30.17 + magic-string: 0.30.21 optionalDependencies: - vite: 6.3.2(@types/node@22.15.3) + vite: 6.4.1(@types/node@22.19.1) - '@vitest/pretty-format@3.1.2': + '@vitest/pretty-format@3.2.4': dependencies: tinyrainbow: 2.0.0 - '@vitest/runner@3.1.2': + '@vitest/runner@3.2.4': dependencies: - '@vitest/utils': 3.1.2 + '@vitest/utils': 3.2.4 pathe: 2.0.3 + strip-literal: 3.1.0 - '@vitest/snapshot@3.1.2': + '@vitest/snapshot@3.2.4': dependencies: - '@vitest/pretty-format': 3.1.2 - magic-string: 0.30.17 + '@vitest/pretty-format': 3.2.4 + magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@3.1.2': + '@vitest/spy@3.2.4': dependencies: - tinyspy: 3.0.2 + tinyspy: 4.0.4 - '@vitest/utils@3.1.2': + '@vitest/utils@3.2.4': dependencies: - '@vitest/pretty-format': 3.1.2 - loupe: 3.1.3 + '@vitest/pretty-format': 3.2.4 + loupe: 3.2.1 tinyrainbow: 2.0.0 - '@vue/compiler-core@3.4.31': + '@vue/compiler-core@3.5.24': dependencies: - '@babel/parser': 7.27.0 - '@vue/shared': 3.4.31 + '@babel/parser': 7.28.5 + '@vue/shared': 3.5.24 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-dom@3.4.31': + '@vue/compiler-dom@3.5.24': dependencies: - '@vue/compiler-core': 3.4.31 - '@vue/shared': 3.4.31 + '@vue/compiler-core': 3.5.24 + '@vue/shared': 3.5.24 - '@vue/compiler-sfc@3.4.31': + '@vue/compiler-sfc@3.5.24': dependencies: - '@babel/parser': 7.24.8 - '@vue/compiler-core': 3.4.31 - '@vue/compiler-dom': 3.4.31 - '@vue/compiler-ssr': 3.4.31 - '@vue/shared': 3.4.31 + '@babel/parser': 7.28.5 + '@vue/compiler-core': 3.5.24 + '@vue/compiler-dom': 3.5.24 + '@vue/compiler-ssr': 3.5.24 + '@vue/shared': 3.5.24 estree-walker: 2.0.2 - magic-string: 0.30.17 - postcss: 8.5.3 - source-map-js: 1.2.0 + magic-string: 0.30.21 + postcss: 8.5.6 + source-map-js: 1.2.1 - '@vue/compiler-ssr@3.4.31': + '@vue/compiler-ssr@3.5.24': dependencies: - '@vue/compiler-dom': 3.4.31 - '@vue/shared': 3.4.31 + '@vue/compiler-dom': 3.5.24 + '@vue/shared': 3.5.24 - '@vue/shared@3.4.31': {} + '@vue/shared@3.5.24': {} abbrev@1.1.1: {} - agent-base@7.1.3: {} + agent-base@7.1.4: {} ajv@6.12.6: dependencies: @@ -5930,7 +6456,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} + ansi-regex@6.2.2: {} ansi-styles@3.2.1: dependencies: @@ -5942,7 +6468,7 @@ snapshots: ansi-styles@5.2.0: {} - ansi-styles@6.2.1: {} + ansi-styles@6.2.3: {} aproba@1.2.0: {} @@ -5955,43 +6481,41 @@ snapshots: dependencies: sprintf-js: 1.0.3 - aria-query@5.1.3: - dependencies: - deep-equal: 2.2.3 - aria-query@5.3.0: dependencies: dequal: 2.0.3 - array-buffer-byte-length@1.0.1: + aria-query@5.3.2: {} + + array-buffer-byte-length@1.0.2: dependencies: - call-bind: 1.0.7 - is-array-buffer: 3.0.4 + call-bound: 1.0.4 + is-array-buffer: 3.0.5 array-differ@3.0.0: {} array-union@2.1.0: {} - array.prototype.reduce@1.0.7: + array.prototype.reduce@1.0.8: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.3 + es-abstract: 1.24.0 es-array-method-boxes-properly: 1.0.0 es-errors: 1.3.0 - es-object-atoms: 1.0.0 - is-string: 1.0.7 + es-object-atoms: 1.1.1 + is-string: 1.1.1 - arraybuffer.prototype.slice@1.0.3: + arraybuffer.prototype.slice@1.0.4: dependencies: - array-buffer-byte-length: 1.0.1 - call-bind: 1.0.7 + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.5 + es-abstract: 1.24.0 es-errors: 1.3.0 - get-intrinsic: 1.2.4 - is-array-buffer: 3.0.4 - is-shared-array-buffer: 1.0.3 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 arrify@2.0.1: {} @@ -6003,18 +6527,22 @@ snapshots: assertion-error@2.0.1: {} + async-function@1.0.0: {} + asynckit@0.4.0: {} available-typed-arrays@1.0.7: dependencies: - possible-typed-array-names: 1.0.0 + possible-typed-array-names: 1.1.0 aws-sign2@0.7.0: {} - aws4@1.13.0: {} + aws4@1.13.2: {} balanced-match@1.0.2: {} + baseline-browser-mapping@2.8.29: {} + bcrypt-pbkdf@1.0.2: dependencies: tweetnacl: 0.14.5 @@ -6029,12 +6557,12 @@ snapshots: boolbase@1.0.0: {} - brace-expansion@1.1.11: + brace-expansion@1.1.12: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - brace-expansion@2.0.1: + brace-expansion@2.0.2: dependencies: balanced-match: 1.0.2 @@ -6042,12 +6570,13 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.24.4: + browserslist@4.28.0: dependencies: - caniuse-lite: 1.0.30001715 - electron-to-chromium: 1.5.140 - node-releases: 2.0.19 - update-browserslist-db: 1.1.3(browserslist@4.24.4) + baseline-browser-mapping: 2.8.29 + caniuse-lite: 1.0.30001756 + electron-to-chromium: 1.5.256 + node-releases: 2.0.27 + update-browserslist-db: 1.1.4(browserslist@4.28.0) bufferstreams@1.1.3: dependencies: @@ -6055,14 +6584,23 @@ snapshots: cac@6.7.14: {} - call-bind@1.0.7: + call-bind-apply-helpers@1.0.2: dependencies: - es-define-property: 1.0.0 es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.4 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 set-function-length: 1.2.2 + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + callsite@1.0.0: {} callsites@3.1.0: {} @@ -6076,7 +6614,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001715: {} + caniuse-lite@1.0.30001756: {} capital-case@1.0.4: dependencies: @@ -6086,13 +6624,13 @@ snapshots: caseless@0.12.0: {} - chai@5.2.0: + chai@5.3.3: dependencies: assertion-error: 2.0.1 check-error: 2.1.1 deep-eql: 5.0.2 - loupe: 3.1.3 - pathval: 2.0.0 + loupe: 3.2.1 + pathval: 2.0.1 chalk@2.4.2: dependencies: @@ -6100,11 +6638,6 @@ snapshots: escape-string-regexp: 1.0.5 supports-color: 5.5.0 - chalk@3.0.0: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - chalk@4.1.2: dependencies: ansi-styles: 4.3.0 @@ -6160,7 +6693,7 @@ snapshots: cmd-ts@0.13.0: dependencies: chalk: 4.1.2 - debug: 4.3.5 + debug: 4.4.3 didyoumean: 1.2.2 strip-ansi: 6.0.1 transitivePeerDependencies: @@ -6217,12 +6750,12 @@ snapshots: cosmiconfig@7.1.0: dependencies: '@types/parse-json': 4.0.2 - import-fresh: 3.3.0 + import-fresh: 3.3.1 parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 - cross-spawn@7.0.3: + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 @@ -6255,12 +6788,12 @@ snapshots: dependencies: css-tree: 1.1.3 - cssstyle@4.3.0: + cssstyle@4.6.0: dependencies: - '@asamuzakjp/css-color': 3.1.1 + '@asamuzakjp/css-color': 3.2.0 rrweb-cssom: 0.8.0 - csstype@3.1.3: {} + csstype@3.2.3: {} cubic2quad@1.2.1: {} @@ -6273,64 +6806,39 @@ snapshots: whatwg-mimetype: 4.0.0 whatwg-url: 14.2.0 - data-view-buffer@1.0.1: + data-view-buffer@1.0.2: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 es-errors: 1.3.0 - is-data-view: 1.0.1 + is-data-view: 1.0.2 - data-view-byte-length@1.0.1: + data-view-byte-length@1.0.2: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 es-errors: 1.3.0 - is-data-view: 1.0.1 + is-data-view: 1.0.2 - data-view-byte-offset@1.0.0: + data-view-byte-offset@1.0.1: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 es-errors: 1.3.0 - is-data-view: 1.0.1 - - debug@4.3.5: - dependencies: - ms: 2.1.2 + is-data-view: 1.0.2 - debug@4.4.0: + debug@4.4.3: dependencies: ms: 2.1.3 decamelize@1.2.0: {} - decimal.js@10.5.0: {} + decimal.js@10.6.0: {} deep-eql@5.0.2: {} - deep-equal@2.2.3: - dependencies: - array-buffer-byte-length: 1.0.1 - call-bind: 1.0.7 - es-get-iterator: 1.1.3 - get-intrinsic: 1.2.4 - is-arguments: 1.1.1 - is-array-buffer: 3.0.4 - is-date-object: 1.0.5 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - isarray: 2.0.5 - object-is: 1.1.6 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.3 - side-channel: 1.0.6 - which-boxed-primitive: 1.0.2 - which-collection: 1.0.2 - which-typed-array: 1.1.15 - define-data-property@1.1.4: dependencies: - es-define-property: 1.0.0 + es-define-property: 1.0.1 es-errors: 1.3.0 - gopd: 1.0.1 + gopd: 1.2.0 define-properties@1.2.1: dependencies: @@ -6344,18 +6852,18 @@ snapshots: depcheck@1.4.7: dependencies: - '@babel/parser': 7.24.8 - '@babel/traverse': 7.24.8 - '@vue/compiler-sfc': 3.4.31 + '@babel/parser': 7.28.5 + '@babel/traverse': 7.28.5 + '@vue/compiler-sfc': 3.5.24 callsite: 1.0.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 - debug: 4.3.5 + debug: 4.4.3 deps-regex: 0.2.0 findup-sync: 5.0.0 - ignore: 5.3.1 - is-core-module: 2.14.0 - js-yaml: 3.14.1 + ignore: 5.3.2 + is-core-module: 2.16.1 + js-yaml: 3.14.2 json5: 2.2.3 lodash: 4.17.21 minimatch: 7.4.6 @@ -6363,9 +6871,9 @@ snapshots: please-upgrade-node: 3.2.0 readdirp: 3.6.0 require-package-name: 2.0.1 - resolve: 1.22.8 + resolve: 1.22.11 resolve-from: 5.0.0 - semver: 7.7.1 + semver: 7.7.3 yargs: 16.2.0 transitivePeerDependencies: - supports-color @@ -6376,7 +6884,7 @@ snapshots: detect-file@1.0.0: {} - detect-indent@7.0.1: {} + detect-indent@7.0.2: {} detect-newline@4.0.1: {} @@ -6386,11 +6894,6 @@ snapshots: dom-accessibility-api@0.6.3: {} - dom-helpers@5.2.1: - dependencies: - '@babel/runtime': 7.26.10 - csstype: 3.1.3 - dom-serializer@0.2.2: dependencies: domelementtype: 2.3.0 @@ -6410,6 +6913,12 @@ snapshots: no-case: 3.0.4 tslib: 2.8.1 + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + eastasianwidth@0.2.0: {} ecc-jsbn@0.1.2: @@ -6417,17 +6926,17 @@ snapshots: jsbn: 0.1.1 safer-buffer: 2.1.2 - electron-to-chromium@1.5.140: {} + electron-to-chromium@1.5.256: {} - embla-carousel-autoplay@8.5.2(embla-carousel@8.5.2): + embla-carousel-autoplay@8.6.0(embla-carousel@8.6.0): dependencies: - embla-carousel: 8.5.2 + embla-carousel: 8.6.0 - embla-carousel-fade@8.5.2(embla-carousel@8.5.2): + embla-carousel-fade@8.6.0(embla-carousel@8.6.0): dependencies: - embla-carousel: 8.5.2 + embla-carousel: 8.6.0 - embla-carousel@8.5.2: {} + embla-carousel@8.6.0: {} emoji-regex@7.0.3: {} @@ -6439,175 +6948,122 @@ snapshots: entities@4.5.0: {} - error-ex@1.3.2: - dependencies: - is-arrayish: 0.2.1 + entities@6.0.1: {} - es-abstract@1.23.3: + error-ex@1.3.4: dependencies: - array-buffer-byte-length: 1.0.1 - arraybuffer.prototype.slice: 1.0.3 - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - data-view-buffer: 1.0.1 - data-view-byte-length: 1.0.1 - data-view-byte-offset: 1.0.0 - es-define-property: 1.0.0 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-set-tostringtag: 2.0.3 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.4 - get-symbol-description: 1.0.2 - globalthis: 1.0.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - internal-slot: 1.0.7 - is-array-buffer: 3.0.4 - is-callable: 1.2.7 - is-data-view: 1.0.1 - is-negative-zero: 2.0.3 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - is-string: 1.0.7 - is-typed-array: 1.1.13 - is-weakref: 1.0.2 - object-inspect: 1.13.2 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.3 - safe-array-concat: 1.1.2 - safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.9 - string.prototype.trimend: 1.0.8 - string.prototype.trimstart: 1.0.8 - typed-array-buffer: 1.0.2 - typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.6 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.15 + is-arrayish: 0.2.1 - es-abstract@1.23.5: + es-abstract@1.24.0: dependencies: - array-buffer-byte-length: 1.0.1 - arraybuffer.prototype.slice: 1.0.3 + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - data-view-buffer: 1.0.1 - data-view-byte-length: 1.0.1 - data-view-byte-offset: 1.0.0 - es-define-property: 1.0.0 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-set-tostringtag: 2.0.3 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.4 - get-symbol-description: 1.0.2 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 globalthis: 1.0.4 - gopd: 1.0.1 + gopd: 1.2.0 has-property-descriptors: 1.0.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 + has-proto: 1.2.0 + has-symbols: 1.1.0 hasown: 2.0.2 - internal-slot: 1.0.7 - is-array-buffer: 3.0.4 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 is-callable: 1.2.7 - is-data-view: 1.0.1 + is-data-view: 1.0.2 is-negative-zero: 2.0.3 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - is-string: 1.0.7 - is-typed-array: 1.1.13 - is-weakref: 1.0.2 - object-inspect: 1.13.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.3 - safe-array-concat: 1.1.2 - safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.9 - string.prototype.trimend: 1.0.8 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 string.prototype.trimstart: 1.0.8 - typed-array-buffer: 1.0.2 - typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.6 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.15 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 es-array-method-boxes-properly@1.0.0: {} - es-define-property@1.0.0: - dependencies: - get-intrinsic: 1.2.4 + es-define-property@1.0.1: {} es-errors@1.3.0: {} - es-get-iterator@1.1.3: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 - is-arguments: 1.1.1 - is-map: 2.0.3 - is-set: 2.0.3 - is-string: 1.0.7 - isarray: 2.0.5 - stop-iteration-iterator: 1.0.0 + es-module-lexer@1.7.0: {} - es-module-lexer@1.6.0: {} - - es-object-atoms@1.0.0: + es-object-atoms@1.1.1: dependencies: es-errors: 1.3.0 - es-set-tostringtag@2.0.3: + es-set-tostringtag@2.1.0: dependencies: - get-intrinsic: 1.2.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 has-tostringtag: 1.0.2 hasown: 2.0.2 - es-to-primitive@1.2.1: + es-to-primitive@1.3.0: dependencies: is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 + is-date-object: 1.1.0 + is-symbol: 1.1.1 - esbuild@0.25.3: + esbuild@0.25.12: optionalDependencies: - '@esbuild/aix-ppc64': 0.25.3 - '@esbuild/android-arm': 0.25.3 - '@esbuild/android-arm64': 0.25.3 - '@esbuild/android-x64': 0.25.3 - '@esbuild/darwin-arm64': 0.25.3 - '@esbuild/darwin-x64': 0.25.3 - '@esbuild/freebsd-arm64': 0.25.3 - '@esbuild/freebsd-x64': 0.25.3 - '@esbuild/linux-arm': 0.25.3 - '@esbuild/linux-arm64': 0.25.3 - '@esbuild/linux-ia32': 0.25.3 - '@esbuild/linux-loong64': 0.25.3 - '@esbuild/linux-mips64el': 0.25.3 - '@esbuild/linux-ppc64': 0.25.3 - '@esbuild/linux-riscv64': 0.25.3 - '@esbuild/linux-s390x': 0.25.3 - '@esbuild/linux-x64': 0.25.3 - '@esbuild/netbsd-arm64': 0.25.3 - '@esbuild/netbsd-x64': 0.25.3 - '@esbuild/openbsd-arm64': 0.25.3 - '@esbuild/openbsd-x64': 0.25.3 - '@esbuild/sunos-x64': 0.25.3 - '@esbuild/win32-arm64': 0.25.3 - '@esbuild/win32-ia32': 0.25.3 - '@esbuild/win32-x64': 0.25.3 - - escalade@3.1.2: {} + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 escalade@3.2.0: {} @@ -6619,13 +7075,13 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.7 + '@types/estree': 1.0.8 expand-tilde@2.0.2: dependencies: homedir-polyfill: 1.0.3 - expect-type@1.2.1: {} + expect-type@1.2.2: {} extend@3.0.2: {} @@ -6639,9 +7095,9 @@ snapshots: dependencies: format: 0.2.2 - fdir@6.4.4(picomatch@4.0.2): + fdir@6.5.0(picomatch@4.0.3): optionalDependencies: - picomatch: 4.0.2 + picomatch: 4.0.3 file-uri-to-path@1.0.0: {} @@ -6662,16 +7118,16 @@ snapshots: dependencies: detect-file: 1.0.0 is-glob: 4.0.3 - micromatch: 4.0.7 + micromatch: 4.0.8 resolve-dir: 1.0.1 - for-each@0.3.3: + for-each@0.3.5: dependencies: is-callable: 1.2.7 - foreground-child@3.2.1: + foreground-child@3.3.1: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 signal-exit: 4.1.0 forever-agent@0.6.1: {} @@ -6687,7 +7143,7 @@ snapshots: fs-extra@10.1.0: dependencies: graceful-fs: 4.2.11 - jsonfile: 6.1.0 + jsonfile: 6.2.0 universalify: 2.0.1 fs.realpath@1.0.0: {} @@ -6707,12 +7163,14 @@ snapshots: function-bind@1.1.2: {} - function.prototype.name@1.1.6: + function.prototype.name@1.1.8: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.5 functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 functions-have-names@1.2.3: {} @@ -6727,23 +7185,35 @@ snapshots: strip-ansi: 3.0.1 wide-align: 1.1.5 + generator-function@2.0.1: {} + gensync@1.0.0-beta.2: {} get-caller-file@2.0.5: {} - get-intrinsic@1.2.4: + get-intrinsic@1.3.0: dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 es-errors: 1.3.0 + es-object-atoms: 1.1.1 function-bind: 1.1.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 - get-symbol-description@1.0.2: + get-symbol-description@1.1.0: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 es-errors: 1.3.0 - get-intrinsic: 1.2.4 + get-intrinsic: 1.3.0 getpass@0.1.7: dependencies: @@ -6751,13 +7221,13 @@ snapshots: git-hooks-list@4.1.1: {} - glob@10.4.5: + glob@10.5.0: dependencies: - foreground-child: 3.2.1 + foreground-child: 3.3.1 jackspeak: 3.4.3 minimatch: 9.0.5 minipass: 7.1.2 - package-json-from-dist: 1.0.0 + package-json-from-dist: 1.0.1 path-scurry: 1.11.1 glob@7.2.3: @@ -6783,16 +7253,12 @@ snapshots: is-windows: 1.0.2 which: 1.3.1 - globals@11.12.0: {} - globalthis@1.0.4: dependencies: define-properties: 1.2.1 - gopd: 1.0.1 + gopd: 1.2.0 - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.4 + gopd@1.2.0: {} graceful-fs@4.2.11: {} @@ -6803,7 +7269,7 @@ snapshots: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.18.0 + uglify-js: 3.19.3 har-schema@2.0.0: {} @@ -6812,7 +7278,7 @@ snapshots: ajv: 6.12.6 har-schema: 2.0.0 - has-bigints@1.0.2: {} + has-bigints@1.1.0: {} has-flag@3.0.0: {} @@ -6820,15 +7286,17 @@ snapshots: has-property-descriptors@1.0.2: dependencies: - es-define-property: 1.0.0 + es-define-property: 1.0.1 - has-proto@1.0.3: {} + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 - has-symbols@1.0.3: {} + has-symbols@1.1.0: {} has-tostringtag@1.0.2: dependencies: - has-symbols: 1.0.3 + has-symbols: 1.1.0 has-unicode@2.0.1: {} @@ -6865,8 +7333,8 @@ snapshots: http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.3 - debug: 4.4.0 + agent-base: 7.1.4 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -6878,8 +7346,8 @@ snapshots: https-proxy-agent@7.0.6: dependencies: - agent-base: 7.1.3 - debug: 4.4.0 + agent-base: 7.1.4 + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -6894,9 +7362,9 @@ snapshots: dependencies: safer-buffer: 2.1.2 - ignore@5.3.1: {} + ignore@5.3.2: {} - import-fresh@3.3.0: + import-fresh@3.3.1: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 @@ -6912,11 +7380,11 @@ snapshots: ini@1.3.8: {} - internal-slot@1.0.7: + internal-slot@1.1.0: dependencies: es-errors: 1.3.0 hasown: 2.0.2 - side-channel: 1.0.6 + side-channel: 1.1.0 is-alphabetical@1.0.4: {} @@ -6925,45 +7393,56 @@ snapshots: is-alphabetical: 1.0.4 is-decimal: 1.0.4 - is-arguments@1.1.1: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - - is-array-buffer@3.0.4: + is-array-buffer@3.0.5: dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 is-arrayish@0.2.1: {} - is-bigint@1.0.4: + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-bigint@1.1.0: dependencies: - has-bigints: 1.0.2 + has-bigints: 1.1.0 - is-boolean-object@1.1.2: + is-boolean-object@1.2.2: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 has-tostringtag: 1.0.2 is-callable@1.2.7: {} - is-core-module@2.14.0: + is-core-module@2.16.1: dependencies: hasown: 2.0.2 - is-data-view@1.0.1: + is-data-view@1.0.2: dependencies: - is-typed-array: 1.1.13 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 - is-date-object@1.0.5: + is-date-object@1.1.0: dependencies: + call-bound: 1.0.4 has-tostringtag: 1.0.2 is-decimal@1.0.4: {} is-extglob@2.1.1: {} + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + is-fullwidth-code-point@1.0.0: dependencies: number-is-nan: 1.0.1 @@ -6972,6 +7451,14 @@ snapshots: is-fullwidth-code-point@3.0.0: {} + is-generator-function@1.1.2: + dependencies: + call-bound: 1.0.4 + generator-function: 2.0.1 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 @@ -6982,8 +7469,9 @@ snapshots: is-negative-zero@2.0.3: {} - is-number-object@1.0.7: + is-number-object@1.1.1: dependencies: + call-bound: 1.0.4 has-tostringtag: 1.0.2 is-number@7.0.0: {} @@ -6992,41 +7480,46 @@ snapshots: is-potential-custom-element-name@1.0.1: {} - is-regex@1.1.4: + is-regex@1.2.1: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 + gopd: 1.2.0 has-tostringtag: 1.0.2 + hasown: 2.0.2 is-set@2.0.3: {} - is-shared-array-buffer@1.0.3: + is-shared-array-buffer@1.0.4: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 - is-string@1.0.7: + is-string@1.1.1: dependencies: + call-bound: 1.0.4 has-tostringtag: 1.0.2 - is-symbol@1.0.4: + is-symbol@1.1.1: dependencies: - has-symbols: 1.0.3 + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 - is-typed-array@1.1.13: + is-typed-array@1.1.15: dependencies: - which-typed-array: 1.1.15 + which-typed-array: 1.1.19 is-typedarray@1.0.0: {} is-weakmap@2.0.2: {} - is-weakref@1.0.2: + is-weakref@1.1.1: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 - is-weakset@2.0.3: + is-weakset@2.0.4: dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 is-windows@1.0.2: {} @@ -7048,7 +7541,9 @@ snapshots: js-tokens@4.0.0: {} - js-yaml@3.14.1: + js-tokens@9.0.1: {} + + js-yaml@3.14.2: dependencies: argparse: 1.0.10 esprima: 4.0.1 @@ -7057,15 +7552,15 @@ snapshots: jsdom@26.1.0: dependencies: - cssstyle: 4.3.0 + cssstyle: 4.6.0 data-urls: 5.0.0 - decimal.js: 10.5.0 + decimal.js: 10.6.0 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.20 - parse5: 7.2.1 + nwsapi: 2.2.22 + parse5: 7.3.0 rrweb-cssom: 0.8.0 saxes: 6.0.0 symbol-tree: 3.2.4 @@ -7075,15 +7570,13 @@ snapshots: whatwg-encoding: 3.1.1 whatwg-mimetype: 4.0.0 whatwg-url: 14.2.0 - ws: 8.18.1 + ws: 8.18.3 xml-name-validator: 5.0.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - jsesc@2.5.2: {} - jsesc@3.1.0: {} json-parse-even-better-errors@2.3.1: {} @@ -7098,7 +7591,7 @@ snapshots: jsonc-parser@3.3.1: {} - jsonfile@6.1.0: + jsonfile@6.2.0: dependencies: universalify: 2.0.1 optionalDependencies: @@ -7126,11 +7619,7 @@ snapshots: lodash@4.17.21: {} - loose-envify@1.4.0: - dependencies: - js-tokens: 4.0.0 - - loupe@3.1.3: {} + loupe@3.2.1: {} lower-case@2.0.2: dependencies: @@ -7149,9 +7638,11 @@ snapshots: lz-string@1.5.0: {} - magic-string@0.30.17: + magic-string@0.30.21: dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 + + math-intrinsics@1.1.0: {} mdn-data@2.0.14: {} @@ -7159,7 +7650,7 @@ snapshots: microbuffer@1.0.0: {} - micromatch@4.0.7: + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 @@ -7174,19 +7665,19 @@ snapshots: minimatch@3.0.5: dependencies: - brace-expansion: 1.1.11 + brace-expansion: 1.1.12 minimatch@3.1.2: dependencies: - brace-expansion: 1.1.11 + brace-expansion: 1.1.12 minimatch@7.4.6: dependencies: - brace-expansion: 2.0.1 + brace-expansion: 2.0.2 minimatch@9.0.5: dependencies: - brace-expansion: 2.0.1 + brace-expansion: 2.0.2 minimist@1.2.8: {} @@ -7196,8 +7687,6 @@ snapshots: dependencies: minimist: 1.2.8 - ms@2.1.2: {} - ms@2.1.3: {} multimatch@5.0.0: @@ -7208,7 +7697,7 @@ snapshots: arrify: 2.0.1 minimatch: 3.1.2 - nan@2.20.0: {} + nan@2.23.1: {} nanoid@3.3.11: {} @@ -7238,7 +7727,7 @@ snapshots: tar: 2.2.2 which: 1.3.1 - node-releases@2.0.19: {} + node-releases@2.0.27: {} nopt@3.0.6: dependencies: @@ -7257,45 +7746,41 @@ snapshots: number-is-nan@1.0.1: {} - nwsapi@2.2.20: {} + nwsapi@2.2.22: {} oauth-sign@0.9.0: {} object-assign@4.1.1: {} - object-inspect@1.13.2: {} - - object-inspect@1.13.3: {} - - object-is@1.1.6: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 + object-inspect@1.13.4: {} object-keys@1.1.1: {} - object.assign@4.1.5: + object.assign@4.1.7: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - has-symbols: 1.0.3 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 object-keys: 1.1.1 object.getownpropertydescriptors@2.1.8: dependencies: - array.prototype.reduce: 1.0.7 - call-bind: 1.0.7 + array.prototype.reduce: 1.0.8 + call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 - gopd: 1.0.1 - safe-array-concat: 1.1.2 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + gopd: 1.2.0 + safe-array-concat: 1.1.3 - object.values@1.2.0: + object.values@1.2.1: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-object-atoms: 1.0.0 + es-object-atoms: 1.1.1 once@1.4.0: dependencies: @@ -7310,6 +7795,12 @@ snapshots: os-homedir: 1.0.2 os-tmpdir: 1.0.2 + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -7324,7 +7815,7 @@ snapshots: p-try@2.2.0: {} - package-json-from-dist@1.0.0: {} + package-json-from-dist@1.0.1: {} pako@1.0.11: {} @@ -7348,16 +7839,16 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.26.2 - error-ex: 1.3.2 + '@babel/code-frame': 7.27.1 + error-ex: 1.3.4 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 parse-passwd@1.0.0: {} - parse5@7.2.1: + parse5@7.3.0: dependencies: - entities: 4.5.0 + entities: 6.0.1 pascal-case@3.1.2: dependencies: @@ -7388,17 +7879,15 @@ snapshots: pathe@2.0.3: {} - pathval@2.0.0: {} + pathval@2.0.1: {} performance-now@2.1.0: {} - picocolors@1.0.1: {} - picocolors@1.1.1: {} picomatch@2.3.1: {} - picomatch@4.0.2: {} + picomatch@4.0.3: {} playwright-core@1.52.0: {} @@ -7412,9 +7901,9 @@ snapshots: dependencies: semver-compare: 1.0.0 - possible-typed-array-names@1.0.0: {} + possible-typed-array-names@1.1.0: {} - postcss@8.5.3: + postcss@8.5.6: dependencies: nanoid: 3.3.11 picocolors: 1.1.1 @@ -7428,23 +7917,19 @@ snapshots: prismjs@1.27.0: {} - prismjs@1.29.0: {} + prismjs@1.30.0: {} process-nextick-args@1.0.7: {} process-nextick-args@2.0.1: {} - prop-types@15.8.1: - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react-is: 16.13.1 - property-information@5.6.0: dependencies: xtend: 4.0.2 - psl@1.9.0: {} + psl@1.15.0: + dependencies: + punycode: 2.3.1 punycode@2.3.1: {} @@ -7452,52 +7937,38 @@ snapshots: qs@6.5.3: {} - react-dom@18.3.1(react@18.3.1): + react-dom@19.2.0(react@19.2.0): dependencies: - loose-envify: 1.4.0 - react: 18.3.1 - scheduler: 0.23.2 - - react-is@16.13.1: {} + react: 19.2.0 + scheduler: 0.27.0 react-is@17.0.2: {} react-refresh@0.17.0: {} - react-router-dom@6.30.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-router-dom@6.30.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0): dependencies: '@remix-run/router': 1.23.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router: 6.30.0(react@18.3.1) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + react-router: 6.30.0(react@19.2.0) - react-router@6.30.0(react@18.3.1): + react-router@6.30.0(react@19.2.0): dependencies: '@remix-run/router': 1.23.0 - react: 18.3.1 + react: 19.2.0 - react-syntax-highlighter@15.6.1(react@18.3.1): + react-syntax-highlighter@15.6.1(react@19.2.0): dependencies: - '@babel/runtime': 7.24.8 + '@babel/runtime': 7.28.4 highlight.js: 10.7.3 highlightjs-vue: 1.0.0 lowlight: 1.20.0 - prismjs: 1.29.0 - react: 18.3.1 + prismjs: 1.30.0 + react: 19.2.0 refractor: 3.6.0 - react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@babel/runtime': 7.26.10 - 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@18.3.1: - dependencies: - loose-envify: 1.4.0 + react@19.2.0: {} readable-stream@1.1.14: dependencies: @@ -7534,19 +8005,30 @@ snapshots: indent-string: 4.0.0 strip-indent: 3.0.0 + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + refractor@3.6.0: dependencies: hastscript: 6.0.0 parse-entities: 2.0.0 prismjs: 1.27.0 - regenerator-runtime@0.14.1: {} - - regexp.prototype.flags@1.5.3: + regexp.prototype.flags@1.5.4: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 set-function-name: 2.0.2 replace@1.2.2: @@ -7558,7 +8040,7 @@ snapshots: request@2.88.2: dependencies: aws-sign2: 0.7.0 - aws4: 1.13.0 + aws4: 1.13.2 caseless: 0.12.0 combined-stream: 1.0.8 extend: 3.0.2 @@ -7593,9 +8075,9 @@ snapshots: resolve-from@5.0.0: {} - resolve@1.22.8: + resolve@1.22.11: dependencies: - is-core-module: 2.14.0 + is-core-module: 2.16.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -7603,104 +8085,84 @@ snapshots: dependencies: glob: 7.2.3 - rollup@4.40.0: + rollup@4.53.3: dependencies: - '@types/estree': 1.0.7 + '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.40.0 - '@rollup/rollup-android-arm64': 4.40.0 - '@rollup/rollup-darwin-arm64': 4.40.0 - '@rollup/rollup-darwin-x64': 4.40.0 - '@rollup/rollup-freebsd-arm64': 4.40.0 - '@rollup/rollup-freebsd-x64': 4.40.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.40.0 - '@rollup/rollup-linux-arm-musleabihf': 4.40.0 - '@rollup/rollup-linux-arm64-gnu': 4.40.0 - '@rollup/rollup-linux-arm64-musl': 4.40.0 - '@rollup/rollup-linux-loongarch64-gnu': 4.40.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0 - '@rollup/rollup-linux-riscv64-gnu': 4.40.0 - '@rollup/rollup-linux-riscv64-musl': 4.40.0 - '@rollup/rollup-linux-s390x-gnu': 4.40.0 - '@rollup/rollup-linux-x64-gnu': 4.40.0 - '@rollup/rollup-linux-x64-musl': 4.40.0 - '@rollup/rollup-win32-arm64-msvc': 4.40.0 - '@rollup/rollup-win32-ia32-msvc': 4.40.0 - '@rollup/rollup-win32-x64-msvc': 4.40.0 - fsevents: 2.3.3 - - rollup@4.40.1: - dependencies: - '@types/estree': 1.0.7 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.40.1 - '@rollup/rollup-android-arm64': 4.40.1 - '@rollup/rollup-darwin-arm64': 4.40.1 - '@rollup/rollup-darwin-x64': 4.40.1 - '@rollup/rollup-freebsd-arm64': 4.40.1 - '@rollup/rollup-freebsd-x64': 4.40.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.40.1 - '@rollup/rollup-linux-arm-musleabihf': 4.40.1 - '@rollup/rollup-linux-arm64-gnu': 4.40.1 - '@rollup/rollup-linux-arm64-musl': 4.40.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.40.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1 - '@rollup/rollup-linux-riscv64-gnu': 4.40.1 - '@rollup/rollup-linux-riscv64-musl': 4.40.1 - '@rollup/rollup-linux-s390x-gnu': 4.40.1 - '@rollup/rollup-linux-x64-gnu': 4.40.1 - '@rollup/rollup-linux-x64-musl': 4.40.1 - '@rollup/rollup-win32-arm64-msvc': 4.40.1 - '@rollup/rollup-win32-ia32-msvc': 4.40.1 - '@rollup/rollup-win32-x64-msvc': 4.40.1 + '@rollup/rollup-android-arm-eabi': 4.53.3 + '@rollup/rollup-android-arm64': 4.53.3 + '@rollup/rollup-darwin-arm64': 4.53.3 + '@rollup/rollup-darwin-x64': 4.53.3 + '@rollup/rollup-freebsd-arm64': 4.53.3 + '@rollup/rollup-freebsd-x64': 4.53.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.3 + '@rollup/rollup-linux-arm-musleabihf': 4.53.3 + '@rollup/rollup-linux-arm64-gnu': 4.53.3 + '@rollup/rollup-linux-arm64-musl': 4.53.3 + '@rollup/rollup-linux-loong64-gnu': 4.53.3 + '@rollup/rollup-linux-ppc64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-musl': 4.53.3 + '@rollup/rollup-linux-s390x-gnu': 4.53.3 + '@rollup/rollup-linux-x64-gnu': 4.53.3 + '@rollup/rollup-linux-x64-musl': 4.53.3 + '@rollup/rollup-openharmony-arm64': 4.53.3 + '@rollup/rollup-win32-arm64-msvc': 4.53.3 + '@rollup/rollup-win32-ia32-msvc': 4.53.3 + '@rollup/rollup-win32-x64-gnu': 4.53.3 + '@rollup/rollup-win32-x64-msvc': 4.53.3 fsevents: 2.3.3 rrweb-cssom@0.8.0: {} rtl-css-js@1.16.1: dependencies: - '@babel/runtime': 7.26.10 + '@babel/runtime': 7.28.4 - safe-array-concat@1.1.2: + safe-array-concat@1.1.3: dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 isarray: 2.0.5 safe-buffer@5.1.2: {} safe-buffer@5.2.1: {} - safe-regex-test@1.0.3: + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 es-errors: 1.3.0 - is-regex: 1.1.4 + is-regex: 1.2.1 safer-buffer@2.1.2: {} sax@1.2.4: {} - sax@1.4.1: {} + sax@1.4.3: {} saxes@6.0.0: dependencies: xmlchars: 2.2.0 - scheduler@0.23.2: - dependencies: - loose-envify: 1.4.0 - scheduler@0.26.0: {} + scheduler@0.27.0: {} + semver-compare@1.0.0: {} semver@5.3.0: {} semver@6.3.1: {} - semver@7.7.1: {} + semver@7.7.3: {} sentence-case@3.0.4: dependencies: @@ -7715,8 +8177,8 @@ snapshots: define-data-property: 1.1.4 es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.4 - gopd: 1.0.1 + get-intrinsic: 1.3.0 + gopd: 1.2.0 has-property-descriptors: 1.0.2 set-function-name@2.0.2: @@ -7726,18 +8188,45 @@ snapshots: functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 shebang-regex@3.0.0: {} - side-channel@1.0.6: + side-channel-list@1.0.0: dependencies: - call-bind: 1.0.7 es-errors: 1.3.0 - get-intrinsic: 1.2.4 - object-inspect: 1.13.3 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 siginfo@2.0.0: {} @@ -7754,15 +8243,13 @@ snapshots: sort-package-json@3.1.0: dependencies: - detect-indent: 7.0.1 + detect-indent: 7.0.2 detect-newline: 4.0.1 git-hooks-list: 4.1.1 is-plain-obj: 4.1.0 - semver: 7.7.1 + semver: 7.7.3 sort-object-keys: 1.1.3 - tinyglobby: 0.2.13 - - source-map-js@1.2.0: {} + tinyglobby: 0.2.15 source-map-js@1.2.1: {} @@ -7788,11 +8275,12 @@ snapshots: stackback@0.0.2: {} - std-env@3.9.0: {} + std-env@3.10.0: {} - stop-iteration-iterator@1.0.0: + stop-iteration-iterator@1.1.0: dependencies: - internal-slot: 1.0.7 + es-errors: 1.3.0 + internal-slot: 1.1.0 string-width@1.0.2: dependencies: @@ -7816,30 +8304,34 @@ snapshots: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 string.fromcodepoint@0.2.1: {} string.prototype.codepointat@0.2.1: {} - string.prototype.trim@1.2.9: + string.prototype.trim@1.2.10: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.23.5 - es-object-atoms: 1.0.0 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 - string.prototype.trimend@1.0.8: + string.prototype.trimend@1.0.9: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 - es-object-atoms: 1.0.0 + es-object-atoms: 1.1.1 string.prototype.trimstart@1.0.8: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 define-properties: 1.2.1 - es-object-atoms: 1.0.0 + es-object-atoms: 1.1.1 string_decoder@0.10.31: {} @@ -7859,21 +8351,25 @@ snapshots: dependencies: ansi-regex: 5.0.1 - strip-ansi@7.1.0: + strip-ansi@7.1.2: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.2.2 strip-indent@3.0.0: dependencies: min-indent: 1.0.1 + strip-literal@3.1.0: + dependencies: + js-tokens: 9.0.1 + style-dictionary@3.9.2: dependencies: chalk: 4.1.2 change-case: 4.1.2 commander: 8.3.0 fs-extra: 10.1.0 - glob: 10.4.5 + glob: 10.5.0 json5: 2.2.3 jsonc-parser: 3.3.1 lodash: 4.17.21 @@ -7911,7 +8407,7 @@ snapshots: commander: 2.20.3 neatequal: 1.0.0 readable-stream: 2.3.8 - sax: 1.4.1 + sax: 1.4.3 string.fromcodepoint: 0.2.1 string.prototype.codepointat: 0.2.1 svg-pathdata: 1.0.4 @@ -7924,9 +8420,9 @@ snapshots: css-select-base-adapter: 0.1.1 css-tree: 1.0.0-alpha.37 csso: 4.2.0 - js-yaml: 3.14.1 + js-yaml: 3.14.2 mkdirp: 0.5.6 - object.values: 1.2.0 + object.values: 1.2.1 sax: 1.2.4 stable: 0.1.8 unquote: 1.1.1 @@ -7936,10 +8432,12 @@ snapshots: symbol-tree@3.2.4: {} - tabster@8.5.3: + tabster@8.5.6: dependencies: keyborg: 2.6.0 tslib: 2.8.1 + optionalDependencies: + '@rollup/rollup-linux-x64-gnu': 4.40.0 tar@2.2.2: dependencies: @@ -7953,16 +8451,16 @@ snapshots: tinyexec@0.3.2: {} - tinyglobby@0.2.13: + tinyglobby@0.2.15: dependencies: - fdir: 6.4.4(picomatch@4.0.2) - picomatch: 4.0.2 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 - tinypool@1.0.2: {} + tinypool@1.1.1: {} tinyrainbow@2.0.0: {} - tinyspy@3.0.2: {} + tinyspy@4.0.4: {} tldts-core@6.1.86: {} @@ -7970,8 +8468,6 @@ snapshots: dependencies: tldts-core: 6.1.86 - to-fast-properties@2.0.0: {} - to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -7982,19 +8478,17 @@ snapshots: tough-cookie@2.5.0: dependencies: - psl: 1.9.0 + psl: 1.15.0 punycode: 2.3.1 tough-cookie@5.1.2: dependencies: tldts: 6.1.86 - tr46@5.1.0: + tr46@5.1.1: dependencies: punycode: 2.3.1 - tslib@2.6.3: {} - tslib@2.8.1: {} ttf2eot@2.0.0: @@ -8006,7 +8500,7 @@ snapshots: dependencies: bindings: 1.5.0 bufferstreams: 1.1.3 - nan: 2.20.0 + nan: 2.23.1 node-gyp: 3.8.0 ttf2woff@2.0.2: @@ -8021,51 +8515,52 @@ snapshots: tweetnacl@0.14.5: {} - typed-array-buffer@1.0.2: + typed-array-buffer@1.0.3: dependencies: - call-bind: 1.0.7 + call-bound: 1.0.4 es-errors: 1.3.0 - is-typed-array: 1.1.13 + is-typed-array: 1.1.15 - typed-array-byte-length@1.0.1: + typed-array-byte-length@1.0.3: dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 - typed-array-byte-offset@1.0.2: + typed-array-byte-offset@1.0.4: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 - typed-array-length@1.0.6: + typed-array-length@1.0.7: dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - possible-typed-array-names: 1.0.0 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 - typescript@5.8.3: {} + typescript@5.9.3: {} - uglify-js@3.18.0: + uglify-js@3.19.3: optional: true - unbox-primitive@1.0.2: + unbox-primitive@1.1.0: dependencies: - call-bind: 1.0.7 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 - underscore@1.13.6: {} + underscore@1.13.7: {} undici-types@6.21.0: {} @@ -8073,9 +8568,9 @@ snapshots: unquote@1.1.1: {} - update-browserslist-db@1.1.3(browserslist@4.24.4): + update-browserslist-db@1.1.4(browserslist@4.28.0): dependencies: - browserslist: 4.24.4 + browserslist: 4.28.0 escalade: 3.2.0 picocolors: 1.1.1 @@ -8093,24 +8588,17 @@ snapshots: url-join@1.1.0: {} - use-disposable@1.0.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + use-sync-external-store@1.6.0(react@19.2.0): dependencies: - '@types/react': 18.3.12 - '@types/react-dom': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - use-sync-external-store@1.2.2(react@18.3.1): - dependencies: - react: 18.3.1 + react: 19.2.0 util-deprecate@1.0.2: {} util.promisify@1.0.1: dependencies: define-properties: 1.2.1 - es-abstract: 1.23.3 - has-symbols: 1.0.3 + es-abstract: 1.24.0 + has-symbols: 1.1.0 object.getownpropertydescriptors: 2.1.8 uuid@3.4.0: {} @@ -8125,13 +8613,13 @@ snapshots: core-util-is: 1.0.2 extsprintf: 1.3.0 - vite-node@3.1.2(@types/node@22.15.3): + vite-node@3.2.4(@types/node@22.19.1): dependencies: cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 + debug: 4.4.3 + es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.4(@types/node@22.15.3) + vite: 6.4.1(@types/node@22.19.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8146,55 +8634,45 @@ snapshots: - tsx - yaml - vite@6.3.2(@types/node@22.15.3): + vite@6.4.1(@types/node@22.19.1): dependencies: - esbuild: 0.25.3 - fdir: 6.4.4(picomatch@4.0.2) - picomatch: 4.0.2 - postcss: 8.5.3 - rollup: 4.40.0 - tinyglobby: 0.2.13 + esbuild: 0.25.12 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.53.3 + tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 22.15.3 + '@types/node': 22.19.1 fsevents: 2.3.3 - vite@6.3.4(@types/node@22.15.3): - dependencies: - esbuild: 0.25.3 - fdir: 6.4.4(picomatch@4.0.2) - picomatch: 4.0.2 - postcss: 8.5.3 - rollup: 4.40.1 - tinyglobby: 0.2.13 - optionalDependencies: - '@types/node': 22.15.3 - fsevents: 2.3.3 - - vitest@3.1.2(@types/node@22.15.3)(jsdom@26.1.0): - dependencies: - '@vitest/expect': 3.1.2 - '@vitest/mocker': 3.1.2(vite@6.3.2(@types/node@22.15.3)) - '@vitest/pretty-format': 3.1.2 - '@vitest/runner': 3.1.2 - '@vitest/snapshot': 3.1.2 - '@vitest/spy': 3.1.2 - '@vitest/utils': 3.1.2 - chai: 5.2.0 - debug: 4.4.0 - expect-type: 1.2.1 - magic-string: 0.30.17 + vitest@3.2.4(@types/node@22.19.1)(jsdom@26.1.0): + dependencies: + '@types/chai': 5.2.3 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@6.4.1(@types/node@22.19.1)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + debug: 4.4.3 + expect-type: 1.2.2 + magic-string: 0.30.21 pathe: 2.0.3 - std-env: 3.9.0 + picomatch: 4.0.3 + std-env: 3.10.0 tinybench: 2.9.0 tinyexec: 0.3.2 - tinyglobby: 0.2.13 - tinypool: 1.0.2 + tinyglobby: 0.2.15 + tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.2(@types/node@22.15.3) - vite-node: 3.1.2(@types/node@22.15.3) + vite: 6.4.1(@types/node@22.19.1) + vite-node: 3.2.4(@types/node@22.19.1) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.15.3 + '@types/node': 22.19.1 jsdom: 26.1.0 transitivePeerDependencies: - jiti @@ -8224,7 +8702,7 @@ snapshots: ttf2eot: 2.0.0 ttf2woff: 2.0.2 ttf2woff2: 2.0.3 - underscore: 1.13.6 + underscore: 1.13.7 url-join: 1.1.0 webidl-conversions@7.0.0: {} @@ -8237,32 +8715,50 @@ snapshots: whatwg-url@14.2.0: dependencies: - tr46: 5.1.0 + tr46: 5.1.1 webidl-conversions: 7.0.0 - which-boxed-primitive@1.0.2: + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.2 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 which-collection@1.0.2: dependencies: is-map: 2.0.3 is-set: 2.0.3 is-weakmap: 2.0.2 - is-weakset: 2.0.3 + is-weakset: 2.0.4 which-module@2.0.1: {} - which-typed-array@1.1.15: + which-typed-array@1.1.19: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 has-tostringtag: 1.0.2 which@1.3.1: @@ -8304,13 +8800,13 @@ snapshots: wrap-ansi@8.1.0: dependencies: - ansi-styles: 6.2.1 + ansi-styles: 6.2.3 string-width: 5.1.2 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 wrappy@1.0.2: {} - ws@8.18.1: {} + ws@8.18.3: {} xml-name-validator@5.0.0: {} @@ -8373,7 +8869,7 @@ snapshots: yargs@16.2.0: dependencies: cliui: 7.0.4 - escalade: 3.1.2 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 @@ -8383,7 +8879,7 @@ snapshots: yargs@17.7.2: dependencies: cliui: 8.0.1 - escalade: 3.1.2 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 diff --git a/styles/package.json b/styles/package.json index 18c64eb1..92e250bf 100644 --- a/styles/package.json +++ b/styles/package.json @@ -26,15 +26,15 @@ "lint": "tsc --noEmit && biome check" }, "devDependencies": { - "@types/react": "^18.3.12", + "@types/react": "^19.2.6", "esbuild": "^0.25.3", - "react": "^18.2.0", + "react": "^19.2.0", "typescript": "^5.8.3" }, "peerDependencies": { - "@fluentui/react-components": "^9.62.0", - "@fluentui/react-icons": "^2.0.297", - "react": ">=16.8.0 <19.0.0" + "@fluentui/react-components": "^9.72.7", + "@fluentui/react-icons": "^2.0.315", + "react": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/theme/package.json b/theme/package.json index cee1f034..a2c2706f 100644 --- a/theme/package.json +++ b/theme/package.json @@ -33,26 +33,26 @@ "tokens": "node lib/tokens.cjs" }, "devDependencies": { - "@fluentui/react-components": "^9.62.0", - "@fluentui/react-theme": "^9.1.24", + "@fluentui/react-components": "^9.72.7", + "@fluentui/react-theme": "^9.2.0", "@testing-library/jest-dom": "^6.6.3", - "@testing-library/react": "^14.2.1", + "@testing-library/react": "^16.3.0", "@types/node": "^22.15.3", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", "esbuild": "^0.25.3", "jsdom": "^26.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", "style-dictionary": "^3.9.2", "token-transformer": "^0.0.33", "typescript": "^5.8.3", "vitest": "^3.1.2" }, "peerDependencies": { - "@fluentui/react-components": "^9.62.0", - "react": ">=16.8.0 <19.0.0", - "react-dom": ">=16.8.0 <19.0.0" + "@fluentui/react-components": "^9.72.7", + "react": ">=16.14.0 <20.0.0", + "react-dom": ">=16.14.0 <20.0.0" }, "publishConfig": { "registry": "https://npm.pkg.github.com/" diff --git a/theme/src/tests/useIdentifyCurrentAxisTheme.spec.tsx b/theme/src/tests/useIdentifyCurrentAxisTheme.spec.tsx index 70a7e411..e8d088cf 100644 --- a/theme/src/tests/useIdentifyCurrentAxisTheme.spec.tsx +++ b/theme/src/tests/useIdentifyCurrentAxisTheme.spec.tsx @@ -3,7 +3,7 @@ import { FluentProviderProps, } from "@fluentui/react-components"; import { renderHook } from "@testing-library/react"; -import React, { PropsWithChildren } from "react"; +import { PropsWithChildren, ReactElement } from "react"; import { useIdentifyCurrentAxisTheme } from "../hooks/use-identify-current-axis-theme.hook.js"; import { axisBlueDarkTheme, axisBlueLightTheme } from "../themes/blue.js"; import { axisDarkTheme, axisLightTheme } from "../themes/brand.js"; @@ -63,7 +63,7 @@ describe("useIdentifyCurrentAxisTheme", () => { function RenderFluentProviderWithAxisLightTheme({ children, -}: PropsWithChildren): JSX.Element { +}: PropsWithChildren): ReactElement { return ( {children} @@ -73,7 +73,7 @@ function RenderFluentProviderWithAxisLightTheme({ function RenderFluentProviderWithAxisDarkTheme({ children, -}: PropsWithChildren): JSX.Element { +}: PropsWithChildren): ReactElement { return ( {children} @@ -83,7 +83,7 @@ function RenderFluentProviderWithAxisDarkTheme({ function RenderFluentProviderWithAxisBlueDarkTheme({ children, -}: PropsWithChildren): JSX.Element { +}: PropsWithChildren): ReactElement { return ( {children} @@ -93,7 +93,7 @@ function RenderFluentProviderWithAxisBlueDarkTheme({ function RenderFluentProviderWithAxisBlueLightTheme({ children, -}: PropsWithChildren): JSX.Element { +}: PropsWithChildren): ReactElement { return ( {children} @@ -108,6 +108,6 @@ type TRenderFluentProvider = { function RenderFluentProviderDefault({ children, theme, -}: TRenderFluentProvider): JSX.Element { +}: TRenderFluentProvider): ReactElement { return {children}; } diff --git a/tsconfig.base.json b/tsconfig.base.json index d3a05342..c5519fd0 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -8,7 +8,7 @@ "forceConsistentCasingInFileNames": true, "inlineSources": true, "isolatedModules": true, - "jsx": "react", + "jsx": "react-jsx", "lib": ["ES2015", "es2017", "DOM"], "module": "ESNext", "moduleResolution": "node",