diff --git a/apps/pigment-css-next-app/package.json b/apps/pigment-css-next-app/package.json index 89f9be47870607..a6e822f102625e 100644 --- a/apps/pigment-css-next-app/package.json +++ b/apps/pigment-css-next-app/package.json @@ -25,7 +25,7 @@ "devDependencies": { "@pigment-css/nextjs-plugin": "0.0.23", "@types/node": "^20.16.5", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "eslint": "^8.57.1", "typescript": "^5.6.2" diff --git a/apps/pigment-css-vite-app/package.json b/apps/pigment-css-vite-app/package.json index 77b2e844a535ea..5eb98c3b0392f5 100644 --- a/apps/pigment-css-vite-app/package.json +++ b/apps/pigment-css-vite-app/package.json @@ -28,7 +28,7 @@ "@babel/preset-react": "^7.24.7", "@babel/preset-typescript": "^7.24.7", "@pigment-css/vite-plugin": "0.0.23", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/webfontloader": "^1.6.38", "@vitejs/plugin-react": "^4.3.1", diff --git a/docs/next.config.mjs b/docs/next.config.mjs index 78b8bbe89ce1f0..aaf5919d1c1f26 100644 --- a/docs/next.config.mjs +++ b/docs/next.config.mjs @@ -56,7 +56,8 @@ export default withDocsInfra({ // We only care about Node runtime at this point. (options.nextRuntime === undefined || options.nextRuntime === 'nodejs') ) { - const [nextExternals, ...externals] = config.externals; + const externals = config.externals.slice(0, -1); + const nextExternals = config.externals.at(-1); config.externals = [ // @ts-ignore diff --git a/docs/package.json b/docs/package.json index e1e7da0cf582fb..967364e11b16f6 100644 --- a/docs/package.json +++ b/docs/package.json @@ -126,7 +126,7 @@ "@types/json2mq": "^0.2.2", "@types/node": "^20.16.5", "@types/prop-types": "^15.7.13", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/react-swipeable-views": "^0.13.5", "@types/react-transition-group": "^4.4.11", diff --git a/package.json b/package.json index 81e19304ae8b34..3a3ba394b5fcfe 100644 --- a/package.json +++ b/package.json @@ -133,7 +133,7 @@ "@types/lodash": "^4.17.9", "@types/mocha": "^10.0.8", "@types/node": "^20.16.5", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/yargs": "^17.0.33", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", @@ -216,7 +216,7 @@ "@definitelytyped/typescript-versions": "^0.1.4", "@definitelytyped/utils": "^0.1.7", "@types/node": "^20.16.5", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "18.3.0", "cross-fetch": "^4.0.0", "@pigment-css/react": "0.0.23", diff --git a/packages-internal/scripts/package.json b/packages-internal/scripts/package.json index 7fa83a6d8a310c..8b372e7eda7e83 100644 --- a/packages-internal/scripts/package.json +++ b/packages-internal/scripts/package.json @@ -43,7 +43,7 @@ "@types/doctrine": "^0.0.9", "@types/lodash": "^4.17.9", "@types/node": "^20.16.5", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/uuid": "^9.0.8", "chai": "^4.5.0", "fast-glob": "^3.3.2", diff --git a/packages-internal/test-utils/package.json b/packages-internal/test-utils/package.json index cfd10b49d2523d..e9b6e7bd3b7855 100644 --- a/packages-internal/test-utils/package.json +++ b/packages-internal/test-utils/package.json @@ -57,7 +57,7 @@ "@types/chai-dom": "^1.11.3", "@types/format-util": "^1.0.4", "@types/prop-types": "^15.7.13", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/sinon": "^17.0.3", "typescript": "^5.6.2" diff --git a/packages/mui-base/package.json b/packages/mui-base/package.json index f4a98fb0f053e6..798139cc45b2ee 100644 --- a/packages/mui-base/package.json +++ b/packages/mui-base/package.json @@ -56,7 +56,7 @@ "@testing-library/user-event": "^14.5.2", "@types/chai": "^4.3.20", "@types/prop-types": "^15.7.13", - "@types/react": "18.3.4", + "@types/react": "18.3.6", "@types/react-dom": "18.3.0", "@types/sinon": "^17.0.3", "chai": "^4.5.0", diff --git a/packages/mui-base/src/Badge/Badge.types.ts b/packages/mui-base/src/Badge/Badge.types.ts index e4feb756c41c05..6b0f09ef4d0acc 100644 --- a/packages/mui-base/src/Badge/Badge.types.ts +++ b/packages/mui-base/src/Badge/Badge.types.ts @@ -83,7 +83,7 @@ export type BadgeRootSlotProps = { children?: React.ReactNode; className?: string; ownerState: BadgeOwnerState; - ref: React.Ref; + ref?: React.Ref; }; export type BadgeBadgeSlotProps = { diff --git a/packages/mui-base/src/Input/Input.types.ts b/packages/mui-base/src/Input/Input.types.ts index e112ce086c7b75..02ec0b3024b890 100644 --- a/packages/mui-base/src/Input/Input.types.ts +++ b/packages/mui-base/src/Input/Input.types.ts @@ -190,7 +190,7 @@ export type InputInputSlotProps = Simplify< ownerState: InputOwnerState; placeholder: string | undefined; readOnly: boolean | undefined; - ref: React.Ref; + ref?: React.Ref; type: React.HTMLInputTypeAttribute | undefined; } >; diff --git a/packages/mui-base/src/MenuItem/MenuItem.types.ts b/packages/mui-base/src/MenuItem/MenuItem.types.ts index 4383f7ac219385..5ddf3f49a313a7 100644 --- a/packages/mui-base/src/MenuItem/MenuItem.types.ts +++ b/packages/mui-base/src/MenuItem/MenuItem.types.ts @@ -77,7 +77,7 @@ export type MenuItemRootSlotProps = Simplify< UseMenuItemRootSlotProps & { children?: React.ReactNode; className: string; - ref: React.Ref; + ref?: React.Ref; ownerState: MenuItemOwnerState; } >; diff --git a/packages/mui-base/src/Modal/Modal.tsx b/packages/mui-base/src/Modal/Modal.tsx index 1f17c71ace80db..285175bb3f12e5 100644 --- a/packages/mui-base/src/Modal/Modal.tsx +++ b/packages/mui-base/src/Modal/Modal.tsx @@ -44,10 +44,9 @@ const useUtilityClasses = (ownerState: ModalOwnerState) => { * * - [Modal API](https://mui.com/base-ui/react-modal/components-api/#modal) */ -const Modal = React.forwardRef(function Modal( - props: ModalProps, - forwardedRef: React.ForwardedRef, -) { +const Modal = React.forwardRef(function Modal< + RootComponentType extends React.ElementType, +>(props: ModalProps, forwardedRef: React.ForwardedRef) { const { children, closeAfterTransition = false, diff --git a/packages/mui-base/src/Option/Option.tsx b/packages/mui-base/src/Option/Option.tsx index 07d1dfafef2333..5531f5fd05a316 100644 --- a/packages/mui-base/src/Option/Option.tsx +++ b/packages/mui-base/src/Option/Option.tsx @@ -21,10 +21,10 @@ function useUtilityClasses(ownerState: OptionOwnerState( - props: OptionProps, - forwardedRef: React.ForwardedRef, - ) { + React.forwardRef>(function Option< + OptionValue, + RootComponentType extends React.ElementType, + >(props: OptionProps, forwardedRef: React.ForwardedRef) { const { children, disabled = false, diff --git a/packages/mui-base/src/Option/Option.types.ts b/packages/mui-base/src/Option/Option.types.ts index 907b8a8f601775..809f2d5ee5b551 100644 --- a/packages/mui-base/src/Option/Option.types.ts +++ b/packages/mui-base/src/Option/Option.types.ts @@ -82,7 +82,7 @@ export type OptionRootSlotProps = Simplify< UseOptionRootSlotProps & { children?: React.ReactNode; className: string; - ref: React.Ref; + ref?: React.Ref; ownerState: OptionOwnerState; } >; diff --git a/packages/mui-base/src/OptionGroup/OptionGroup.types.ts b/packages/mui-base/src/OptionGroup/OptionGroup.types.ts index 6069bbeb6dcb4c..8b24146c056811 100644 --- a/packages/mui-base/src/OptionGroup/OptionGroup.types.ts +++ b/packages/mui-base/src/OptionGroup/OptionGroup.types.ts @@ -70,7 +70,7 @@ export type OptionGroupRootSlotProps = { children?: React.ReactNode; className?: string; ownerState: OptionGroupOwnerState; - ref: React.Ref; + ref?: React.Ref; }; export type OptionGroupLabelSlotProps = { diff --git a/packages/mui-base/src/Popper/Popper.tsx b/packages/mui-base/src/Popper/Popper.tsx index b42dfcb37e1266..0715ee764ed5cd 100644 --- a/packages/mui-base/src/Popper/Popper.tsx +++ b/packages/mui-base/src/Popper/Popper.tsx @@ -75,7 +75,7 @@ const useUtilityClasses = () => { const defaultPopperOptions = {}; -const PopperTooltip = React.forwardRef(function PopperTooltip< +const PopperTooltip = React.forwardRef(function PopperTooltip< RootComponentType extends React.ElementType, >(props: PopperTooltipProps, forwardedRef: React.ForwardedRef) { const { @@ -245,10 +245,9 @@ const PopperTooltip = React.forwardRef(function PopperTooltip< * * - [Popper API](https://mui.com/base-ui/react-popper/components-api/#popper) */ -const Popper = React.forwardRef(function Popper( - props: PopperProps, - forwardedRef: React.ForwardedRef, -) { +const Popper = React.forwardRef(function Popper< + RootComponentType extends React.ElementType, +>(props: PopperProps, forwardedRef: React.ForwardedRef) { const { anchorEl, children, diff --git a/packages/mui-base/src/Snackbar/Snackbar.types.ts b/packages/mui-base/src/Snackbar/Snackbar.types.ts index c66dfcf2736946..dff41e7b915524 100644 --- a/packages/mui-base/src/Snackbar/Snackbar.types.ts +++ b/packages/mui-base/src/Snackbar/Snackbar.types.ts @@ -59,7 +59,7 @@ export type SnackbarRootSlotProps = { ownerState: SnackbarOwnerState; className?: string; children?: React.ReactNode; - ref: React.Ref; + ref?: React.Ref; }; export interface SnackbarClickAwayListenerSlotProps extends ClickAwayListenerProps { diff --git a/packages/mui-base/src/Tab/Tab.types.ts b/packages/mui-base/src/Tab/Tab.types.ts index 0f35c00f3f1801..a7ee2d11398e8c 100644 --- a/packages/mui-base/src/Tab/Tab.types.ts +++ b/packages/mui-base/src/Tab/Tab.types.ts @@ -62,7 +62,7 @@ export type TabOwnerState = Simplify< export type TabRootSlotProps = Simplify< UseTabRootSlotProps & { className?: string; - ref: React.Ref; + ref?: React.Ref; ownerState: TabOwnerState; } >; diff --git a/packages/mui-base/src/TablePagination/TablePagination.tsx b/packages/mui-base/src/TablePagination/TablePagination.tsx index 2ad936f2fa7e52..fb53cdf7acaa40 100644 --- a/packages/mui-base/src/TablePagination/TablePagination.tsx +++ b/packages/mui-base/src/TablePagination/TablePagination.tsx @@ -59,7 +59,7 @@ const useUtilityClasses = () => { * * - [TablePagination API](https://mui.com/base-ui/react-table-pagination/components-api/#table-pagination) */ -const TablePagination = React.forwardRef(function TablePagination< +const TablePagination = React.forwardRef(function TablePagination< RootComponentType extends React.ElementType, >(props: TablePaginationProps, forwardedRef: React.ForwardedRef) { const { diff --git a/packages/mui-base/src/TablePagination/TablePaginationActions.tsx b/packages/mui-base/src/TablePagination/TablePaginationActions.tsx index 19a86a9c053d4b..abe25ef6af7bce 100644 --- a/packages/mui-base/src/TablePagination/TablePaginationActions.tsx +++ b/packages/mui-base/src/TablePagination/TablePaginationActions.tsx @@ -29,136 +29,136 @@ function defaultGetAriaLabel(type: ItemAriaLabelType) { /** * @ignore - internal component. */ -const TablePaginationActions = React.forwardRef(function TablePaginationActions< - RootComponentType extends React.ElementType, ->( - props: TablePaginationActionsProps, - forwardedRef: React.ForwardedRef, -) { - const { - count, - getItemAriaLabel = defaultGetAriaLabel, - onPageChange, - page, - rowsPerPage, - showFirstButton = false, - showLastButton = false, - direction, - // @ts-ignore - ownerState: ownerStateProp, - slotProps = {}, - slots = {}, - ...other - } = props; - - const ownerState = props; - - const handleFirstPageButtonClick = (event: React.MouseEvent) => { - onPageChange(event, 0); - }; - - const handleBackButtonClick = (event: React.MouseEvent) => { - onPageChange(event, page - 1); - }; - - const handleNextButtonClick = (event: React.MouseEvent) => { - onPageChange(event, page + 1); - }; - - const handleLastPageButtonClick = (event: React.MouseEvent) => { - onPageChange(event, Math.max(0, Math.ceil(count / rowsPerPage) - 1)); - }; - - const Root = slots.root ?? 'div'; - const rootProps: WithOptionalOwnerState = useSlotProps({ - elementType: Root, - externalSlotProps: slotProps.root, - externalForwardedProps: other, - additionalProps: { ref: forwardedRef }, - ownerState, - }); - - const FirstButton = slots.firstButton ?? 'button'; - const firstButtonProps: WithOptionalOwnerState = - useSlotProps({ - elementType: FirstButton, - externalSlotProps: slotProps.firstButton, - additionalProps: { - onClick: handleFirstPageButtonClick, - disabled: page === 0, - 'aria-label': getItemAriaLabel('first', page), - title: getItemAriaLabel('first', page), - }, +const TablePaginationActions = React.forwardRef( + function TablePaginationActions( + props: TablePaginationActionsProps, + forwardedRef: React.ForwardedRef, + ) { + const { + count, + getItemAriaLabel = defaultGetAriaLabel, + onPageChange, + page, + rowsPerPage, + showFirstButton = false, + showLastButton = false, + direction, + // @ts-ignore + ownerState: ownerStateProp, + slotProps = {}, + slots = {}, + ...other + } = props; + + const ownerState = props; + + const handleFirstPageButtonClick = (event: React.MouseEvent) => { + onPageChange(event, 0); + }; + + const handleBackButtonClick = (event: React.MouseEvent) => { + onPageChange(event, page - 1); + }; + + const handleNextButtonClick = (event: React.MouseEvent) => { + onPageChange(event, page + 1); + }; + + const handleLastPageButtonClick = (event: React.MouseEvent) => { + onPageChange(event, Math.max(0, Math.ceil(count / rowsPerPage) - 1)); + }; + + const Root = slots.root ?? 'div'; + const rootProps: WithOptionalOwnerState = useSlotProps({ + elementType: Root, + externalSlotProps: slotProps.root, + externalForwardedProps: other, + additionalProps: { ref: forwardedRef }, ownerState, }); - const LastButton = slots.lastButton ?? 'button'; - const lastButtonProps: WithOptionalOwnerState = - useSlotProps({ - elementType: LastButton, - externalSlotProps: slotProps.lastButton, - additionalProps: { - onClick: handleLastPageButtonClick, - disabled: page >= Math.ceil(count / rowsPerPage) - 1, - 'aria-label': getItemAriaLabel('last', page), - title: getItemAriaLabel('last', page), - }, - ownerState, - }); - - const NextButton = slots.nextButton ?? 'button'; - const nextButtonProps: WithOptionalOwnerState = - useSlotProps({ - elementType: NextButton, - externalSlotProps: slotProps.nextButton, - additionalProps: { - onClick: handleNextButtonClick, - disabled: count !== -1 ? page >= Math.ceil(count / rowsPerPage) - 1 : false, - 'aria-label': getItemAriaLabel('next', page), - title: getItemAriaLabel('next', page), - }, - ownerState, - }); - - const BackButton = slots.backButton ?? 'button'; - const backButtonProps: WithOptionalOwnerState = - useSlotProps({ - elementType: BackButton, - externalSlotProps: slotProps.backButton, - additionalProps: { - onClick: handleBackButtonClick, - disabled: page === 0, - 'aria-label': getItemAriaLabel('previous', page), - title: getItemAriaLabel('previous', page), - }, - ownerState, - }); - - const LastPageIcon = slots.lastPageIcon ?? LastPageIconDefault; - const FirstPageIcon = slots.firstPageIcon ?? FirstPageIconDefault; - const NextPageIcon = slots.nextPageIcon ?? NextPageIconDefault; - const BackPageIcon = slots.backPageIcon ?? BackPageIconDefault; - - return ( - - {showFirstButton && ( - - {direction === 'rtl' ? : } - - )} - - {direction === 'rtl' ? : } - - - {direction === 'rtl' ? : } - - {showLastButton && ( - - {direction === 'rtl' ? : } - - )} - - ); -}) as PolymorphicComponent; + const FirstButton = slots.firstButton ?? 'button'; + const firstButtonProps: WithOptionalOwnerState = + useSlotProps({ + elementType: FirstButton, + externalSlotProps: slotProps.firstButton, + additionalProps: { + onClick: handleFirstPageButtonClick, + disabled: page === 0, + 'aria-label': getItemAriaLabel('first', page), + title: getItemAriaLabel('first', page), + }, + ownerState, + }); + + const LastButton = slots.lastButton ?? 'button'; + const lastButtonProps: WithOptionalOwnerState = + useSlotProps({ + elementType: LastButton, + externalSlotProps: slotProps.lastButton, + additionalProps: { + onClick: handleLastPageButtonClick, + disabled: page >= Math.ceil(count / rowsPerPage) - 1, + 'aria-label': getItemAriaLabel('last', page), + title: getItemAriaLabel('last', page), + }, + ownerState, + }); + + const NextButton = slots.nextButton ?? 'button'; + const nextButtonProps: WithOptionalOwnerState = + useSlotProps({ + elementType: NextButton, + externalSlotProps: slotProps.nextButton, + additionalProps: { + onClick: handleNextButtonClick, + disabled: count !== -1 ? page >= Math.ceil(count / rowsPerPage) - 1 : false, + 'aria-label': getItemAriaLabel('next', page), + title: getItemAriaLabel('next', page), + }, + ownerState, + }); + + const BackButton = slots.backButton ?? 'button'; + const backButtonProps: WithOptionalOwnerState = + useSlotProps({ + elementType: BackButton, + externalSlotProps: slotProps.backButton, + additionalProps: { + onClick: handleBackButtonClick, + disabled: page === 0, + 'aria-label': getItemAriaLabel('previous', page), + title: getItemAriaLabel('previous', page), + }, + ownerState, + }); + + const LastPageIcon = slots.lastPageIcon ?? LastPageIconDefault; + const FirstPageIcon = slots.firstPageIcon ?? FirstPageIconDefault; + const NextPageIcon = slots.nextPageIcon ?? NextPageIconDefault; + const BackPageIcon = slots.backPageIcon ?? BackPageIconDefault; + + return ( + + {showFirstButton && ( + + {direction === 'rtl' ? : } + + )} + + {direction === 'rtl' ? : } + + + {direction === 'rtl' ? : } + + {showLastButton && ( + + {direction === 'rtl' ? : } + + )} + + ); + }, +) as PolymorphicComponent; export { TablePaginationActions }; diff --git a/packages/mui-base/src/useButton/useButton.types.ts b/packages/mui-base/src/useButton/useButton.types.ts index 0eeaf07bb888c1..6af5adfcfffcf3 100644 --- a/packages/mui-base/src/useButton/useButton.types.ts +++ b/packages/mui-base/src/useButton/useButton.types.ts @@ -41,7 +41,7 @@ export interface UseButtonRootSlotOwnProps { onKeyUp: MuiCancellableEventHandler; onMouseDown: React.MouseEventHandler; onMouseLeave: React.MouseEventHandler; - ref: React.RefCallback | null; + ref?: React.RefCallback | null; } export type UseButtonRootSlotProps = ExternalProps & UseButtonRootSlotOwnProps; diff --git a/packages/mui-base/src/useList/useList.types.ts b/packages/mui-base/src/useList/useList.types.ts index 33c12b4386ffa6..193b9e52939506 100644 --- a/packages/mui-base/src/useList/useList.types.ts +++ b/packages/mui-base/src/useList/useList.types.ts @@ -243,7 +243,7 @@ interface UseListRootSlotOwnProps { onBlur: MuiCancellableEventHandler>; onKeyDown: MuiCancellableEventHandler>; tabIndex: number; - ref: React.RefCallback | null; + ref?: React.RefCallback | null; } export type UseListRootSlotProps = ExternalProps & UseListRootSlotOwnProps; diff --git a/packages/mui-base/src/useMenu/useMenu.types.ts b/packages/mui-base/src/useMenu/useMenu.types.ts index f9f6bd606963c9..988cfb6325adb2 100644 --- a/packages/mui-base/src/useMenu/useMenu.types.ts +++ b/packages/mui-base/src/useMenu/useMenu.types.ts @@ -89,7 +89,7 @@ interface UseMenuListboxSlotEventHandlers { export type UseMenuListboxSlotProps = UseListRootSlotProps< Omit & UseMenuListboxSlotEventHandlers > & { - ref: React.RefCallback | null; + ref?: React.RefCallback | null; role: React.AriaRole; }; diff --git a/packages/mui-base/src/useMenuItem/useMenuItem.types.ts b/packages/mui-base/src/useMenuItem/useMenuItem.types.ts index ed8ea501838a62..6a898044fb1d7c 100644 --- a/packages/mui-base/src/useMenuItem/useMenuItem.types.ts +++ b/packages/mui-base/src/useMenuItem/useMenuItem.types.ts @@ -4,7 +4,7 @@ import { MuiCancellableEventHandler } from '../utils/MuiCancellableEvent'; interface UseMenuItemRootSlotOwnProps { id: string | undefined; role: 'menuitem'; - ref: React.RefCallback | null; + ref?: React.RefCallback | null; } export interface MenuItemMetadata { diff --git a/packages/mui-base/src/useSelect/useSelect.types.ts b/packages/mui-base/src/useSelect/useSelect.types.ts index c76160baccccee..487d178539d0c4 100644 --- a/packages/mui-base/src/useSelect/useSelect.types.ts +++ b/packages/mui-base/src/useSelect/useSelect.types.ts @@ -143,7 +143,7 @@ export type UseSelectButtonSlotProps = UseButtonRootSlotProps< 'aria-expanded': React.AriaAttributes['aria-expanded']; 'aria-controls': React.AriaAttributes['aria-controls']; role: React.HTMLAttributes['role']; - ref: React.RefCallback | null; + ref?: React.RefCallback | null; }; interface UseSelectHiddenInputSlotEventHandlers { diff --git a/packages/mui-base/src/useSlider/useSlider.types.ts b/packages/mui-base/src/useSlider/useSlider.types.ts index 38f411b5df6335..8e8c4f55c7273d 100644 --- a/packages/mui-base/src/useSlider/useSlider.types.ts +++ b/packages/mui-base/src/useSlider/useSlider.types.ts @@ -114,7 +114,7 @@ export interface Mark { export type UseSliderRootSlotOwnProps = { onMouseDown: React.MouseEventHandler; - ref: React.RefCallback | null; + ref?: React.RefCallback | null; }; export type UseSliderRootSlotProps = Omit< diff --git a/packages/mui-base/src/useSwitch/useSwitch.types.ts b/packages/mui-base/src/useSwitch/useSwitch.types.ts index 920494847c7bc4..433a091c0330e9 100644 --- a/packages/mui-base/src/useSwitch/useSwitch.types.ts +++ b/packages/mui-base/src/useSwitch/useSwitch.types.ts @@ -42,7 +42,7 @@ interface UseSwitchInputSlotOwnProps { onChange: React.ChangeEventHandler; onFocus: React.FocusEventHandler; readOnly?: boolean; - ref: React.RefCallback | null; + ref?: React.RefCallback | null; required?: boolean; type: React.HTMLInputTypeAttribute; } diff --git a/packages/mui-base/src/useTab/useTab.types.ts b/packages/mui-base/src/useTab/useTab.types.ts index 630c1fc88ffc97..0af03ca2558ca3 100644 --- a/packages/mui-base/src/useTab/useTab.types.ts +++ b/packages/mui-base/src/useTab/useTab.types.ts @@ -35,7 +35,7 @@ export type UseTabRootSlotProps = UseButtonRootSlotProps | null; + ref?: React.RefCallback | null; role: React.AriaRole; }; diff --git a/packages/mui-base/src/useTabsList/useTabsList.types.ts b/packages/mui-base/src/useTabsList/useTabsList.types.ts index 9459da11c885ed..0ebec996e00b9e 100644 --- a/packages/mui-base/src/useTabsList/useTabsList.types.ts +++ b/packages/mui-base/src/useTabsList/useTabsList.types.ts @@ -14,7 +14,7 @@ export type UseTabsListRootSlotProps = ExternalProps & { 'aria-labelledby'?: React.AriaAttributes['aria-labelledby']; 'aria-orientation'?: React.AriaAttributes['aria-orientation']; role: React.AriaRole; - ref: React.RefCallback | null; + ref?: React.RefCallback | null; onKeyDown?: React.KeyboardEventHandler; }; diff --git a/packages/mui-docs/package.json b/packages/mui-docs/package.json index 7ead9a671e0d68..44b9dc1e87c8a3 100644 --- a/packages/mui-docs/package.json +++ b/packages/mui-docs/package.json @@ -47,7 +47,7 @@ "@types/gtag.js": "^0.0.20", "@types/node": "^20.16.5", "@types/prop-types": "^15.7.13", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "next": "^14.2.13", "react": "^18.3.1" }, diff --git a/packages/mui-envinfo/test/package.json b/packages/mui-envinfo/test/package.json index 4f73b0fff77450..8b12eccd49e71d 100644 --- a/packages/mui-envinfo/test/package.json +++ b/packages/mui-envinfo/test/package.json @@ -12,6 +12,6 @@ "react-dom": "^18.3.1" }, "devDependencies": { - "@types/react": "^18.3.4" + "@types/react": "^18.3.6" } } diff --git a/packages/mui-icons-material/package.json b/packages/mui-icons-material/package.json index ca8d65c4a2e109..46d8aeaf97defe 100644 --- a/packages/mui-icons-material/package.json +++ b/packages/mui-icons-material/package.json @@ -52,7 +52,7 @@ "@mui/internal-waterfall": "workspace:^", "@mui/material": "workspace:^", "@types/chai": "^4.3.20", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "chai": "^4.5.0", "chalk": "^5.3.0", "cross-fetch": "^4.0.0", diff --git a/packages/mui-joy/package.json b/packages/mui-joy/package.json index d344a3b36bd81e..5c4e58b19c03f6 100644 --- a/packages/mui-joy/package.json +++ b/packages/mui-joy/package.json @@ -52,7 +52,7 @@ "@mui/material": "workspace:^", "@types/chai": "^4.3.20", "@types/prop-types": "^15.7.13", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/sinon": "^17.0.3", "chai": "^4.5.0", diff --git a/packages/mui-lab/package.json b/packages/mui-lab/package.json index 0a640e629e2e1c..06d536b0bb0624 100644 --- a/packages/mui-lab/package.json +++ b/packages/mui-lab/package.json @@ -53,7 +53,7 @@ "@mui/material": "workspace:*", "@types/chai": "^4.3.20", "@types/prop-types": "^15.7.13", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/sinon": "^17.0.3", "chai": "^4.5.0", diff --git a/packages/mui-lab/src/Timeline/Timeline.tsx b/packages/mui-lab/src/Timeline/Timeline.tsx index f388d198b084d3..2df1eb6b2e7829 100644 --- a/packages/mui-lab/src/Timeline/Timeline.tsx +++ b/packages/mui-lab/src/Timeline/Timeline.tsx @@ -62,7 +62,6 @@ const Timeline = React.forwardRef(function Time diff --git a/packages/mui-material-nextjs/package.json b/packages/mui-material-nextjs/package.json index 94627f954299e0..6fb47673494e4c 100644 --- a/packages/mui-material-nextjs/package.json +++ b/packages/mui-material-nextjs/package.json @@ -42,7 +42,7 @@ "@emotion/cache": "^11.13.1", "@emotion/react": "^11.13.3", "@emotion/server": "^11.11.0", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "next": "14.2.13", "react": "^18.3.1" }, diff --git a/packages/mui-material/package.json b/packages/mui-material/package.json index 00ffd2796d9005..5b6a8dbf2aa25d 100644 --- a/packages/mui-material/package.json +++ b/packages/mui-material/package.json @@ -60,7 +60,7 @@ "@testing-library/user-event": "^14.5.2", "@types/chai": "^4.3.20", "@types/prop-types": "^15.7.13", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/sinon": "^17.0.3", "chai": "^4.5.0", diff --git a/packages/mui-material/src/Popper/BasePopper.tsx b/packages/mui-material/src/Popper/BasePopper.tsx index 235874aab7a8e9..12b3ec436af335 100644 --- a/packages/mui-material/src/Popper/BasePopper.tsx +++ b/packages/mui-material/src/Popper/BasePopper.tsx @@ -77,7 +77,7 @@ const useUtilityClasses = (ownerState: any) => { const defaultPopperOptions = {}; -const PopperTooltip = React.forwardRef(function PopperTooltip< +const PopperTooltip = React.forwardRef(function PopperTooltip< RootComponentType extends React.ElementType, >(props: PopperTooltipProps, forwardedRef: React.ForwardedRef) { const { @@ -239,10 +239,9 @@ const PopperTooltip = React.forwardRef(function PopperTooltip< /** * @ignore - internal component. */ -const Popper = React.forwardRef(function Popper( - props: PopperProps, - forwardedRef: React.ForwardedRef, -) { +const Popper = React.forwardRef(function Popper< + RootComponentType extends React.ElementType, +>(props: PopperProps, forwardedRef: React.ForwardedRef) { const { anchorEl, children, diff --git a/packages/mui-private-theming/package.json b/packages/mui-private-theming/package.json index eb6f561ad72f4d..9ed17f38eb1d4c 100644 --- a/packages/mui-private-theming/package.json +++ b/packages/mui-private-theming/package.json @@ -45,7 +45,7 @@ "@mui/internal-test-utils": "workspace:^", "@mui/types": "workspace:^", "@types/chai": "^4.3.20", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "chai": "^4.5.0", "react": "^18.3.1" }, diff --git a/packages/mui-styled-engine-sc/package.json b/packages/mui-styled-engine-sc/package.json index a3d429c1eeea31..d83286e912e908 100644 --- a/packages/mui-styled-engine-sc/package.json +++ b/packages/mui-styled-engine-sc/package.json @@ -47,7 +47,7 @@ "@mui/styled-engine-sc": "workspace:*", "@types/chai": "^4.3.20", "@types/hoist-non-react-statics": "^3.3.5", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "chai": "^4.5.0", "react": "^18.3.1", "styled-components": "^6.1.13" diff --git a/packages/mui-styled-engine/package.json b/packages/mui-styled-engine/package.json index e1fd9e1bacd640..1fc5e2b2233d03 100644 --- a/packages/mui-styled-engine/package.json +++ b/packages/mui-styled-engine/package.json @@ -49,7 +49,7 @@ "@mui/internal-test-utils": "workspace:^", "@mui/styled-engine": "workspace:*", "@types/chai": "^4.3.20", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "chai": "^4.5.0", "react": "^18.3.1" }, diff --git a/packages/mui-styles/package.json b/packages/mui-styles/package.json index 1159251bad332b..8fce1f7b4adc33 100644 --- a/packages/mui-styles/package.json +++ b/packages/mui-styles/package.json @@ -59,7 +59,7 @@ "@mui/internal-test-utils": "workspace:^", "@mui/material": "workspace:^", "@types/chai": "^4.3.20", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/sinon": "^17.0.3", "chai": "^4.5.0", diff --git a/packages/mui-system/package.json b/packages/mui-system/package.json index 4990d65bad7a28..0853ef53f4be8b 100644 --- a/packages/mui-system/package.json +++ b/packages/mui-system/package.json @@ -56,7 +56,7 @@ "@mui/system": "workspace:*", "@types/chai": "^4.3.20", "@types/prop-types": "^15.7.13", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/sinon": "^17.0.3", "chai": "^4.5.0", "fast-glob": "^3.3.2", diff --git a/packages/mui-types/package.json b/packages/mui-types/package.json index ff8c38048c9ad6..548ca4fc87e9fd 100644 --- a/packages/mui-types/package.json +++ b/packages/mui-types/package.json @@ -40,7 +40,7 @@ }, "devDependencies": { "@mui/types": "workspace:*", - "@types/react": "^18.3.4" + "@types/react": "^18.3.6" }, "peerDependencies": { "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0" diff --git a/packages/mui-utils/package.json b/packages/mui-utils/package.json index 453db17d80a4e3..268f071199aea8 100644 --- a/packages/mui-utils/package.json +++ b/packages/mui-utils/package.json @@ -52,7 +52,7 @@ "@types/chai": "^4.3.20", "@types/mocha": "^10.0.8", "@types/node": "^20.16.5", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/react-is": "^18.3.0", "@types/sinon": "^17.0.3", diff --git a/packages/mui-utils/src/elementAcceptingRef/elementAcceptingRef.test.tsx b/packages/mui-utils/src/elementAcceptingRef/elementAcceptingRef.test.tsx index 414df07d9519a1..259f3c46770c90 100644 --- a/packages/mui-utils/src/elementAcceptingRef/elementAcceptingRef.test.tsx +++ b/packages/mui-utils/src/elementAcceptingRef/elementAcceptingRef.test.tsx @@ -84,7 +84,7 @@ describe('elementAcceptingRef', () => { it('accepts lazy', async () => { const Component = React.lazy(() => Promise.resolve({ - default: React.forwardRef((props, ref) =>
), + default: React.forwardRef((props, ref) =>
), }), ); diff --git a/packages/mui-utils/src/elementTypeAcceptingRef/elementTypeAcceptingRef.test.tsx b/packages/mui-utils/src/elementTypeAcceptingRef/elementTypeAcceptingRef.test.tsx index 35d4735ec132e9..1230ce9d3a51e5 100644 --- a/packages/mui-utils/src/elementTypeAcceptingRef/elementTypeAcceptingRef.test.tsx +++ b/packages/mui-utils/src/elementTypeAcceptingRef/elementTypeAcceptingRef.test.tsx @@ -81,7 +81,7 @@ describe('elementTypeAcceptingRef', () => { it('accepts lazy', async () => { const Component = React.lazy(() => Promise.resolve({ - default: React.forwardRef((props, ref) =>
), + default: React.forwardRef((props, ref) =>
), }), ); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index de8d03a21ff99e..799c3c46d670b8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,7 +17,7 @@ overrides: '@definitelytyped/typescript-versions': ^0.1.4 '@definitelytyped/utils': ^0.1.7 '@types/node': ^20.16.5 - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 '@types/react-dom': 18.3.0 cross-fetch: ^4.0.0 '@pigment-css/react': 0.0.23 @@ -107,7 +107,7 @@ importers: version: 21.0.2 '@pigment-css/react': specifier: 0.0.23 - version: 0.0.23(@types/react@18.3.4)(react@18.3.1) + version: 0.0.23(@types/react@18.3.9)(react@18.3.1) '@playwright/test': specifier: 1.47.2 version: 1.47.2 @@ -127,8 +127,8 @@ importers: specifier: ^20.16.5 version: 20.16.5 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/yargs': specifier: ^17.0.33 version: 17.0.33 @@ -353,7 +353,7 @@ importers: version: link:../../packages/mui-utils/build next: specifier: latest - version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 @@ -363,13 +363,13 @@ importers: devDependencies: '@pigment-css/nextjs-plugin': specifier: 0.0.23 - version: 0.0.23(@types/react@18.3.4)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + version: 0.0.23(@types/react@18.3.9)(next@14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@types/node': specifier: ^20.16.5 version: 20.16.5 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -433,10 +433,10 @@ importers: version: 7.24.7(@babel/core@7.25.2) '@pigment-css/vite-plugin': specifier: 0.0.23 - version: 0.0.23(@types/react@18.3.4)(react@18.3.1)(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2)) + version: 0.0.23(@types/react@18.3.9)(react@18.3.1)(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2)) '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -469,16 +469,16 @@ importers: version: 7.25.6 '@chakra-ui/system': specifier: ^2.6.2 - version: 2.6.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) + version: 2.6.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/server': specifier: ^11.11.0 version: 11.11.0(@emotion/css@11.11.2) '@emotion/styled': specifier: ^11.13.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@mui/material': specifier: workspace:^ version: link:../packages/mui-material/build @@ -526,7 +526,7 @@ importers: version: 10.10.0(react@18.3.1) react-redux: specifier: ^8.1.3 - version: 8.1.3(@types/react-dom@18.3.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react-native@0.73.6(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.1.3(@types/react-dom@18.3.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react-native@0.73.6(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux: specifier: ^4.2.1 version: 4.2.1 @@ -541,7 +541,7 @@ importers: version: 5.1.5 theme-ui: specifier: ^0.16.2 - version: 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) + version: 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) webpack: specifier: ^5.95.0 version: 5.95.0(webpack-cli@5.1.4(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0)) @@ -559,19 +559,19 @@ importers: version: 7.25.6 '@docsearch/react': specifier: ^3.6.2 - version: 3.6.2(@algolia/client-search@4.23.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.13.0) + version: 3.6.2(@algolia/client-search@4.23.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.13.0) '@emotion/cache': specifier: ^11.13.1 version: 11.13.1 '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/server': specifier: ^11.11.0 version: 11.11.0(@emotion/css@11.11.2) '@emotion/styled': specifier: ^11.13.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@fortawesome/fontawesome-svg-core': specifier: ^6.6.0 version: 6.6.0 @@ -622,31 +622,31 @@ importers: version: link:../packages/mui-utils/build '@mui/x-charts': specifier: 7.18.0 - version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-data-grid': specifier: 7.18.0 - version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-data-grid-generator': specifier: 7.18.0 - version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-data-grid-premium': specifier: 7.18.0 - version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-data-grid-pro': specifier: 7.18.0 - version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-date-pickers': specifier: 7.18.0 - version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-date-pickers-pro': specifier: 7.18.0 - version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-license': specifier: 7.18.0 - version: 7.18.0(@types/react@18.3.4)(react@18.3.1) + version: 7.18.0(@types/react@18.3.9)(react@18.3.1) '@mui/x-tree-view': specifier: 7.18.0 - version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@popperjs/core': specifier: ^2.11.8 version: 2.11.8 @@ -655,7 +655,7 @@ importers: version: 9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@toolpad/core': specifier: ^0.7.0 - version: 0.7.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@types/node@20.16.5)(@types/react@18.3.4)(happy-dom@12.10.3)(jsdom@24.0.0)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.29.2)(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2)) + version: 0.7.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@types/node@20.16.5)(@types/react@18.3.9)(happy-dom@12.10.3)(jsdom@24.0.0)(next@14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.29.2)(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2)) autoprefixer: specifier: ^10.4.20 version: 10.4.20(postcss@8.4.47) @@ -739,7 +739,7 @@ importers: version: 5.3.1(@mui/material@packages+mui-material+build)(react@18.3.1) next: specifier: ^14.2.13 - version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) notistack: specifier: 3.0.1 version: 3.0.1(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -865,8 +865,8 @@ importers: specifier: ^15.7.13 version: 15.7.13 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -984,8 +984,8 @@ importers: specifier: ^20.16.5 version: 20.16.5 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/uuid': specifier: ^9.0.8 version: 9.0.8 @@ -1021,13 +1021,13 @@ importers: version: 11.13.1 '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@testing-library/dom': specifier: ^10.4.0 version: 10.4.0 '@testing-library/react': specifier: ^16.0.1 - version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@10.4.0) @@ -1084,8 +1084,8 @@ importers: specifier: ^15.7.13 version: 15.7.13 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -1283,7 +1283,7 @@ importers: version: 7.25.6 '@mui/utils': specifier: ^5.0.0 || ^6.0.0 - version: 6.1.1(@types/react@18.3.4)(react@18.3.1) + version: 6.1.1(@types/react@18.3.9)(react@18.3.1) babel-plugin-macros: specifier: ^3.1.0 version: 3.1.0 @@ -1333,7 +1333,7 @@ importers: version: link:../../packages-internal/test-utils '@testing-library/react': specifier: ^16.0.1 - version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@10.4.0) @@ -1344,8 +1344,8 @@ importers: specifier: ^15.7.13 version: 15.7.13 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -1420,13 +1420,13 @@ importers: version: 7.25.6 '@mui/base': specifier: '*' - version: 5.0.0-beta.58(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-beta.58(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/internal-markdown': specifier: workspace:^ version: link:../markdown '@mui/system': specifier: ^5.0.0 || ^6.0.0 - version: 6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) chai: specifier: ^4.4.1 version: 4.5.0 @@ -1462,11 +1462,11 @@ importers: specifier: ^15.7.13 version: 15.7.13 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 next: specifier: ^14.2.13 - version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 @@ -1492,19 +1492,19 @@ importers: dependencies: '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/styled': specifier: ^11.13.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@mui/base': specifier: 5.0.0-beta.30 - version: 5.0.0-beta.30(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-beta.30(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/joy': specifier: 5.0.0-beta.22 - version: 5.0.0-beta.22(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-beta.22(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.15.4 - version: 5.15.4(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.15.4(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 @@ -1513,8 +1513,8 @@ importers: version: 18.3.1(react@18.3.1) devDependencies: '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 packages/mui-icons-material: dependencies: @@ -1535,8 +1535,8 @@ importers: specifier: ^4.3.20 version: 4.3.20 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 chai: specifier: ^4.5.0 version: 4.5.0 @@ -1582,10 +1582,10 @@ importers: version: 7.25.6 '@emotion/react': specifier: ^11.5.0 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/styled': specifier: ^11.3.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@mui/base': specifier: workspace:* version: link:../mui-base/build @@ -1621,8 +1621,8 @@ importers: specifier: ^15.7.13 version: 15.7.13 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -1640,7 +1640,7 @@ importers: version: 4.17.21 next: specifier: ^14.2.13 - version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 @@ -1659,10 +1659,10 @@ importers: version: 7.25.6 '@emotion/react': specifier: ^11.5.0 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/styled': specifier: ^11.3.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@mui/base': specifier: workspace:* version: link:../mui-base/build @@ -1698,8 +1698,8 @@ importers: specifier: ^15.7.13 version: 15.7.13 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -1727,10 +1727,10 @@ importers: version: 7.25.6 '@emotion/react': specifier: ^11.5.0 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/styled': specifier: ^11.3.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@mui/core-downloads-tracker': specifier: workspace:^ version: link:../mui-core-downloads-tracker/build @@ -1787,8 +1787,8 @@ importers: specifier: ^15.7.13 version: 15.7.13 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -1838,13 +1838,13 @@ importers: version: 11.13.1 '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/server': specifier: ^11.11.0 version: 11.11.0(@emotion/css@11.11.2) '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 next: specifier: 14.2.13 version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -1863,7 +1863,7 @@ importers: version: link:../mui-system/build '@pigment-css/react': specifier: 0.0.23 - version: 0.0.23(@types/react@18.3.4)(react@18.3.1) + version: 0.0.23(@types/react@18.3.9)(react@18.3.1) publishDirectory: build packages/mui-private-theming: @@ -1888,8 +1888,8 @@ importers: specifier: ^4.3.20 version: 4.3.20 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 chai: specifier: ^4.5.0 version: 4.5.0 @@ -1918,10 +1918,10 @@ importers: devDependencies: '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/styled': specifier: ^11.13.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@mui/internal-test-utils': specifier: workspace:^ version: link:../../packages-internal/test-utils @@ -1932,8 +1932,8 @@ importers: specifier: ^4.3.20 version: 4.3.20 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 chai: specifier: ^4.5.0 version: 4.5.0 @@ -1970,8 +1970,8 @@ importers: specifier: ^3.3.5 version: 3.3.5 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 chai: specifier: ^4.5.0 version: 4.5.0 @@ -2047,8 +2047,8 @@ importers: specifier: ^4.3.20 version: 4.3.20 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -2098,10 +2098,10 @@ importers: devDependencies: '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/styled': specifier: ^11.13.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@mui/internal-babel-macros': specifier: workspace:^ version: link:../mui-babel-macros @@ -2118,8 +2118,8 @@ importers: specifier: ^15.7.13 version: 15.7.13 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/sinon': specifier: ^17.0.3 version: 17.0.3 @@ -2149,8 +2149,8 @@ importers: specifier: workspace:* version: link:build '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 publishDirectory: build packages/mui-utils: @@ -2190,8 +2190,8 @@ importers: specifier: ^20.16.5 version: 20.16.5 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-dom': specifier: 18.3.0 version: 18.3.0 @@ -2286,7 +2286,7 @@ importers: version: 11.13.1 '@emotion/react': specifier: ^11.13.3 - version: 11.13.3(@types/react@18.3.4)(react@18.3.1) + version: 11.13.3(@types/react@18.3.9)(react@18.3.1) '@mui/base': specifier: workspace:* version: link:../packages/mui-base/build @@ -2321,8 +2321,8 @@ importers: specifier: ^4.3.20 version: 4.3.20 '@types/react': - specifier: ^18.3.4 - version: 18.3.4 + specifier: ^18.3.6 + version: 18.3.9 '@types/react-is': specifier: ^18.3.0 version: 18.3.0 @@ -3354,7 +3354,7 @@ packages: '@docsearch/react@3.6.2': resolution: {integrity: sha512-rtZce46OOkVflCQH71IdbXSFK+S8iJZlUF56XBW5rIgx/eG5qoomC7Ag3anZson1bBac/JFQn7XOBfved/IMRA==} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: '>= 16.8.0 < 19.0.0' react-dom: '>= 16.8.0 < 19.0.0' search-insights: '>= 1 < 3' @@ -4021,7 +4021,7 @@ packages: resolution: {integrity: sha512-dc38W4W3K42atE9nSaOeoJ7/x9wGIfawdwC/UmMxMLlZ1iSsITQ8dQJaTATCbn98YvYPINK/EH541YA5enQIPQ==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -4032,7 +4032,7 @@ packages: resolution: {integrity: sha512-+uNbP3OHJuZVI00WyMg7xfLZotaEY7LgvYXDfONVJbrS+K9wyjCIPNfjy8r9XJn4fbHo/5ibiZqjWnU9LMNv+A==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -4043,7 +4043,7 @@ packages: resolution: {integrity: sha512-P0E7ZrxOuyYqBvVv9w8k7wm+Xzx/KRu+BGgFcR2htTsGCpJNQJCSUXNUZ50MUmSU9hzqhwbQWNXhV1MBTl6F7A==} engines: {node: '>=14.0.0'} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -4059,7 +4059,7 @@ packages: peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -4078,7 +4078,7 @@ packages: '@emotion/styled': ^11.3.0 '@mui/material': ^6.1.1 '@mui/material-pigment-css': ^6.1.1 - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -4101,7 +4101,7 @@ packages: peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -4116,7 +4116,7 @@ packages: resolution: {integrity: sha512-CSLg0YkpDqg0aXOxtjo3oTMd3XWMxvNb5d0v4AYVqwOltU8q6GvnZjhWyCLjGSCrcgfwm6/VDjaKLPlR14wxIA==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -4126,7 +4126,7 @@ packages: resolution: {integrity: sha512-JlrjIdhyZUtewtdAuUsvi3ZnO0YS49IW4Mfz19ZWTlQ0sDGga6LNPVwHClWr2/zJK2we2BQx9/i8M32rgKuzrg==} engines: {node: '>=14.0.0'} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: '@types/react': @@ -4164,7 +4164,7 @@ packages: peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@emotion/react': @@ -4180,7 +4180,7 @@ packages: peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: '@emotion/react': @@ -4193,7 +4193,7 @@ packages: '@mui/types@7.2.17': resolution: {integrity: sha512-oyumoJgB6jDV8JFzRqjBo2daUuHpzDjoO/e3IrRhhHo/FxJlaVhET6mcNrKHUq2E+R+q3ql0qAtvQ4rfWHhAeQ==} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 peerDependenciesMeta: '@types/react': optional: true @@ -4202,7 +4202,7 @@ packages: resolution: {integrity: sha512-tWiQqlhxAt3KENNiSRL+DIn9H5xNVK6Jjf70x3PnfQPz1MPBdh7yyIcAyVBT9xiw7hP3SomRhPR7hzBMBCjqEA==} engines: {node: '>=12.0.0'} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -4212,7 +4212,7 @@ packages: resolution: {integrity: sha512-tBp0ILEXDL0bbDDT8PnZOjCqSm5Dfk2N0Z45uzRw+wVl6fVvloC9zw8avl+OdX1Bg3ubs/ttKn8nRNv17bpM5A==} engines: {node: '>=14.0.0'} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: '@types/react': @@ -4222,7 +4222,7 @@ packages: resolution: {integrity: sha512-HlRrgdJSPbYDXPpoVMWZV8AE7WcFtAk13rWNWAEVWKSanzBBkymjz3km+Th/Srowsh4pf1fTSP1B0L116wQBYw==} engines: {node: '>=14.0.0'} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: '@types/react': @@ -4530,6 +4530,9 @@ packages: '@next/env@14.2.13': resolution: {integrity: sha512-s3lh6K8cbW1h5Nga7NNeXrbe0+2jIIYK9YaA9T7IufDWnZpozdFUp6Hf0d5rNWUKu4fEuSX2rCKlGjCrtylfDw==} + '@next/env@14.2.14': + resolution: {integrity: sha512-/0hWQfiaD5//LvGNgc8PjvyqV50vGK0cADYzaoOOGN8fxzBn3iAiaq3S0tCRnFBldq0LVveLcxCTi41ZoYgAgg==} + '@next/eslint-plugin-next@14.2.13': resolution: {integrity: sha512-z8Mk0VljxhIzsSiZUSdt3wp+t2lKd+jk5a9Jsvh3zDGkItgDMfjv/ZbET6HsxEl/fSihVoHGsXV6VLyDH0lfTQ==} @@ -4539,54 +4542,108 @@ packages: cpu: [arm64] os: [darwin] + '@next/swc-darwin-arm64@14.2.14': + resolution: {integrity: sha512-bsxbSAUodM1cjYeA4o6y7sp9wslvwjSkWw57t8DtC8Zig8aG8V6r+Yc05/9mDzLKcybb6EN85k1rJDnMKBd9Gw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + '@next/swc-darwin-x64@14.2.13': resolution: {integrity: sha512-Dv1RBGs2TTjkwEnFMVL5XIfJEavnLqqwYSD6LXgTPdEy/u6FlSrLBSSfe1pcfqhFEXRAgVL3Wpjibe5wXJzWog==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] + '@next/swc-darwin-x64@14.2.14': + resolution: {integrity: sha512-cC9/I+0+SK5L1k9J8CInahduTVWGMXhQoXFeNvF0uNs3Bt1Ub0Azb8JzTU9vNCr0hnaMqiWu/Z0S1hfKc3+dww==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + '@next/swc-linux-arm64-gnu@14.2.13': resolution: {integrity: sha512-yB1tYEFFqo4ZNWkwrJultbsw7NPAAxlPXURXioRl9SdW6aIefOLS+0TEsKrWBtbJ9moTDgU3HRILL6QBQnMevg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + '@next/swc-linux-arm64-gnu@14.2.14': + resolution: {integrity: sha512-RMLOdA2NU4O7w1PQ3Z9ft3PxD6Htl4uB2TJpocm+4jcllHySPkFaUIFacQ3Jekcg6w+LBaFvjSPthZHiPmiAUg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + '@next/swc-linux-arm64-musl@14.2.13': resolution: {integrity: sha512-v5jZ/FV/eHGoWhMKYrsAweQ7CWb8xsWGM/8m1mwwZQ/sutJjoFaXchwK4pX8NqwImILEvQmZWyb8pPTcP7htWg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + '@next/swc-linux-arm64-musl@14.2.14': + resolution: {integrity: sha512-WgLOA4hT9EIP7jhlkPnvz49iSOMdZgDJVvbpb8WWzJv5wBD07M2wdJXLkDYIpZmCFfo/wPqFsFR4JS4V9KkQ2A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + '@next/swc-linux-x64-gnu@14.2.13': resolution: {integrity: sha512-aVc7m4YL7ViiRv7SOXK3RplXzOEe/qQzRA5R2vpXboHABs3w8vtFslGTz+5tKiQzWUmTmBNVW0UQdhkKRORmGA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + '@next/swc-linux-x64-gnu@14.2.14': + resolution: {integrity: sha512-lbn7svjUps1kmCettV/R9oAvEW+eUI0lo0LJNFOXoQM5NGNxloAyFRNByYeZKL3+1bF5YE0h0irIJfzXBq9Y6w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@next/swc-linux-x64-musl@14.2.13': resolution: {integrity: sha512-4wWY7/OsSaJOOKvMsu1Teylku7vKyTuocvDLTZQq0TYv9OjiYYWt63PiE1nTuZnqQ4RPvME7Xai+9enoiN0Wrg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + '@next/swc-linux-x64-musl@14.2.14': + resolution: {integrity: sha512-7TcQCvLQ/hKfQRgjxMN4TZ2BRB0P7HwrGAYL+p+m3u3XcKTraUFerVbV3jkNZNwDeQDa8zdxkKkw2els/S5onQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@next/swc-win32-arm64-msvc@14.2.13': resolution: {integrity: sha512-uP1XkqCqV2NVH9+g2sC7qIw+w2tRbcMiXFEbMihkQ8B1+V6m28sshBwAB0SDmOe0u44ne1vFU66+gx/28RsBVQ==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] + '@next/swc-win32-arm64-msvc@14.2.14': + resolution: {integrity: sha512-8i0Ou5XjTLEje0oj0JiI0Xo9L/93ghFtAUYZ24jARSeTMXLUx8yFIdhS55mTExq5Tj4/dC2fJuaT4e3ySvXU1A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + '@next/swc-win32-ia32-msvc@14.2.13': resolution: {integrity: sha512-V26ezyjPqQpDBV4lcWIh8B/QICQ4v+M5Bo9ykLN+sqeKKBxJVDpEc6biDVyluTXTC40f5IqCU0ttth7Es2ZuMw==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] + '@next/swc-win32-ia32-msvc@14.2.14': + resolution: {integrity: sha512-2u2XcSaDEOj+96eXpyjHjtVPLhkAFw2nlaz83EPeuK4obF+HmtDJHqgR1dZB7Gb6V/d55FL26/lYVd0TwMgcOQ==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + '@next/swc-win32-x64-msvc@14.2.13': resolution: {integrity: sha512-WwzOEAFBGhlDHE5Z73mNU8CO8mqMNLqaG+AO9ETmzdCQlJhVtWZnOl2+rqgVQS+YHunjOWptdFmNfbpwcUuEsw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] + '@next/swc-win32-x64-msvc@14.2.14': + resolution: {integrity: sha512-MZom+OvZ1NZxuRovKt1ApevjiUJTcU2PmdJKL66xUPaJeRywnbGGRWUlaAOwunD6dX+pm83vj979NTC8QXjGWg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} @@ -5358,7 +5415,7 @@ packages: engines: {node: '>=18'} peerDependencies: '@testing-library/dom': ^10.0.0 - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 '@types/react-dom': 18.3.0 react: ^18.0.0 react-dom: ^18.0.0 @@ -5647,8 +5704,8 @@ packages: '@types/react-window@1.8.8': resolution: {integrity: sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==} - '@types/react@18.3.4': - resolution: {integrity: sha512-J7W30FTdfCxDDjmfRM+/JqLHBIyl7xUIp9kwK637FGmY7+mkSFSe6L4jpZzhj5QMfLssSDP4/i75AKkrdC7/Jw==} + '@types/react@18.3.9': + resolution: {integrity: sha512-+BpAVyTpJkNWWSSnaLBk6ePpHLOGJKnEQNbINNovPWzvEUyAe3e+/d494QdEh71RekM/qV7lw6jzf1HGrJyAtQ==} '@types/resolve@1.20.6': resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} @@ -10007,6 +10064,24 @@ packages: sass: optional: true + next@14.2.14: + resolution: {integrity: sha512-Q1coZG17MW0Ly5x76shJ4dkC23woLAhhnDnw+DfTc7EpZSGuWrlsZ3bZaO8t6u1Yu8FVfhkqJE+U8GC7E0GLPQ==} + engines: {node: '>=18.17.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + sass: + optional: true + nise@6.1.1: resolution: {integrity: sha512-aMSAzLVY7LyeM60gvBS423nBmIPP+Wy7St7hsb+8/fc1HmeoHJfLO8CKse4u3BtOZvQLJghYPI2i/1WZrEj5/g==} @@ -11095,7 +11170,7 @@ packages: react-redux@8.1.3: resolution: {integrity: sha512-n0ZrutD7DaX/j9VscF+uTALI3oUPa/pO4Z3soOBIjuRn/FzVu6aehhysxZCLi6y7duMf52WNZGMl7CtuK5EnRw==} peerDependencies: - '@types/react': ^18.3.4 + '@types/react': ^18.3.6 '@types/react-dom': 18.3.0 react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -14204,7 +14279,7 @@ snapshots: csstype: 3.1.3 lodash.mergewith: 4.6.2 - '@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(react@18.3.1)': + '@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(react@18.3.1)': dependencies: '@chakra-ui/color-mode': 2.2.0(react@18.3.1) '@chakra-ui/object-utils': 2.1.0 @@ -14212,8 +14287,8 @@ snapshots: '@chakra-ui/styled-system': 2.9.2 '@chakra-ui/theme-utils': 2.0.21 '@chakra-ui/utils': 2.0.15 - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) react: 18.3.1 react-fast-compare: 3.2.2 @@ -14266,14 +14341,14 @@ snapshots: '@docsearch/css@3.6.2': {} - '@docsearch/react@3.6.2(@algolia/client-search@4.23.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.13.0)': + '@docsearch/react@3.6.2(@algolia/client-search@4.23.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.13.0)': dependencies: '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.23.0)(algoliasearch@4.19.1)(search-insights@2.13.0) '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.23.0)(algoliasearch@4.19.1) '@docsearch/css': 3.6.2 algoliasearch: 4.19.1 optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) search-insights: 2.13.0 @@ -14355,7 +14430,7 @@ snapshots: '@emotion/memoize@0.9.0': {} - '@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1)': + '@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@emotion/babel-plugin': 11.12.0 @@ -14367,7 +14442,7 @@ snapshots: hoist-non-react-statics: 3.3.2 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 transitivePeerDependencies: - supports-color @@ -14390,18 +14465,18 @@ snapshots: '@emotion/sheet@1.4.0': {} - '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1)': + '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@emotion/babel-plugin': 11.12.0 '@emotion/is-prop-valid': 1.3.0 - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/serialize': 1.3.1 '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1) '@emotion/utils': 1.4.0 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 transitivePeerDependencies: - supports-color @@ -14919,90 +14994,90 @@ snapshots: - encoding - supports-color - '@mui/base@5.0.0-beta.30(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/base@5.0.0-beta.30(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@floating-ui/react-dom': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/types': 7.2.17(@types/react@18.3.4) - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/types': 7.2.17(@types/react@18.3.9) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) '@popperjs/core': 2.11.8 clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 - '@mui/base@5.0.0-beta.31(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/base@5.0.0-beta.31(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@floating-ui/react-dom': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/types': 7.2.17(@types/react@18.3.4) - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/types': 7.2.17(@types/react@18.3.9) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) '@popperjs/core': 2.11.8 clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 - '@mui/base@5.0.0-beta.58(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/base@5.0.0-beta.58(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@floating-ui/react-dom': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/types': 7.2.17(@types/react@18.3.4) - '@mui/utils': 6.0.0-rc.0(@types/react@18.3.4)(react@18.3.1) + '@mui/types': 7.2.17(@types/react@18.3.9) + '@mui/utils': 6.0.0-rc.0(@types/react@18.3.9)(react@18.3.1) '@popperjs/core': 2.11.8 clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@mui/core-downloads-tracker@5.15.14': {} - '@mui/joy@5.0.0-beta.22(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/joy@5.0.0-beta.22(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/base': 5.0.0-beta.31(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/base': 5.0.0-beta.31(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/core-downloads-tracker': 5.15.14 - '@mui/system': 5.16.5(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@mui/types': 7.2.17(@types/react@18.3.4) - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/system': 5.16.5(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@mui/types': 7.2.17(@types/react@18.3.9) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@types/react': 18.3.4 + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@types/react': 18.3.9 - '@mui/lab@6.0.0-beta.10(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/lab@6.0.0-beta.10(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/base': 5.0.0-beta.58(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/base': 5.0.0-beta.58(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': link:packages/mui-material/build - '@mui/system': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@mui/types': 7.2.17(@types/react@18.3.4) - '@mui/utils': 6.1.1(@types/react@18.3.4)(react@18.3.1) + '@mui/system': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@mui/types': 7.2.17(@types/react@18.3.9) + '@mui/utils': 6.1.1(@types/react@18.3.9)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@mui/material-pigment-css': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@types/react': 18.3.4 + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@mui/material-pigment-css': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@types/react': 18.3.9 - '@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1)': + '@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/system': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@pigment-css/react': 0.0.23(@types/react@18.3.4)(react@18.3.1) + '@mui/system': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@pigment-css/react': 0.0.23(@types/react@18.3.9)(react@18.3.1) transitivePeerDependencies: - '@emotion/react' - '@emotion/styled' @@ -15011,14 +15086,14 @@ snapshots: - supports-color optional: true - '@mui/material@5.15.4(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/material@5.15.4(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/base': 5.0.0-beta.31(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/base': 5.0.0-beta.31(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/core-downloads-tracker': 5.15.14 - '@mui/system': 5.16.5(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@mui/types': 7.2.17(@types/react@18.3.4) - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/system': 5.16.5(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@mui/types': 7.2.17(@types/react@18.3.9) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) '@types/react-transition-group': 4.4.11 clsx: 2.1.1 csstype: 3.1.3 @@ -15028,29 +15103,29 @@ snapshots: react-is: 18.3.1 react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@types/react': 18.3.4 + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@types/react': 18.3.9 - '@mui/private-theming@5.16.5(@types/react@18.3.4)(react@18.3.1)': + '@mui/private-theming@5.16.5(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 - '@mui/private-theming@6.1.1(@types/react@18.3.4)(react@18.3.1)': + '@mui/private-theming@6.1.1(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/utils': 6.1.1(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 6.1.1(@types/react@18.3.9)(react@18.3.1) prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 - '@mui/styled-engine@5.16.4(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(react@18.3.1)': + '@mui/styled-engine@5.16.4(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@emotion/cache': 11.13.1 @@ -15058,10 +15133,10 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) - '@mui/styled-engine@6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(react@18.3.1)': + '@mui/styled-engine@6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@emotion/cache': 11.13.1 @@ -15070,80 +15145,80 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) - '@mui/system@5.16.5(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1)': + '@mui/system@5.16.5(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/private-theming': 5.16.5(@types/react@18.3.4)(react@18.3.1) - '@mui/styled-engine': 5.16.4(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@mui/types': 7.2.17(@types/react@18.3.4) - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/private-theming': 5.16.5(@types/react@18.3.9)(react@18.3.1) + '@mui/styled-engine': 5.16.4(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@mui/types': 7.2.17(@types/react@18.3.9) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@types/react': 18.3.4 + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@types/react': 18.3.9 - '@mui/system@6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1)': + '@mui/system@6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/private-theming': 6.1.1(@types/react@18.3.4)(react@18.3.1) - '@mui/styled-engine': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@mui/types': 7.2.17(@types/react@18.3.4) - '@mui/utils': 6.1.1(@types/react@18.3.4)(react@18.3.1) + '@mui/private-theming': 6.1.1(@types/react@18.3.9)(react@18.3.1) + '@mui/styled-engine': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@mui/types': 7.2.17(@types/react@18.3.9) + '@mui/utils': 6.1.1(@types/react@18.3.9)(react@18.3.1) clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@types/react': 18.3.4 + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@types/react': 18.3.9 - '@mui/types@7.2.17(@types/react@18.3.4)': + '@mui/types@7.2.17(@types/react@18.3.9)': optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 - '@mui/utils@5.16.6(@types/react@18.3.4)(react@18.3.1)': + '@mui/utils@5.16.6(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/types': 7.2.17(@types/react@18.3.4) + '@mui/types': 7.2.17(@types/react@18.3.9) '@types/prop-types': 15.7.13 clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 - '@mui/utils@6.0.0-rc.0(@types/react@18.3.4)(react@18.3.1)': + '@mui/utils@6.0.0-rc.0(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/types': 7.2.17(@types/react@18.3.4) + '@mui/types': 7.2.17(@types/react@18.3.9) '@types/prop-types': 15.7.13 clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 - '@mui/utils@6.1.1(@types/react@18.3.4)(react@18.3.1)': + '@mui/utils@6.1.1(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/types': 7.2.17(@types/react@18.3.4) + '@mui/types': 7.2.17(@types/react@18.3.9) '@types/prop-types': 15.7.13 clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@mui/x-charts-vendor@7.18.0': dependencies: @@ -15163,14 +15238,14 @@ snapshots: delaunator: 5.0.1 robust-predicates: 3.0.2 - '@mui/x-charts@7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-charts@7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/material': link:packages/mui-material/build '@mui/system': link:packages/mui-system/build - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) '@mui/x-charts-vendor': 7.18.0 - '@mui/x-internals': 7.18.0(@types/react@18.3.4)(react@18.3.1) + '@mui/x-internals': 7.18.0(@types/react@18.3.9)(react@18.3.1) '@react-spring/rafz': 9.7.4 '@react-spring/web': 9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) clsx: 2.1.1 @@ -15178,39 +15253,39 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@mui/x-data-grid-generator@7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-data-grid-generator@7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/icons-material': link:packages/mui-icons-material/build '@mui/material': link:packages/mui-material/build - '@mui/x-data-grid-premium': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/x-data-grid-premium': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) chance: 1.1.12 clsx: 2.1.1 lru-cache: 10.4.3 react: 18.3.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) transitivePeerDependencies: - '@mui/system' - '@types/react' - react-dom - '@mui/x-data-grid-premium@7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-data-grid-premium@7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/material': link:packages/mui-material/build '@mui/system': link:packages/mui-system/build - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) - '@mui/x-data-grid': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/x-data-grid-pro': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/x-internals': 7.18.0(@types/react@18.3.4)(react@18.3.1) - '@mui/x-license': 7.18.0(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) + '@mui/x-data-grid': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/x-data-grid-pro': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/x-internals': 7.18.0(@types/react@18.3.9)(react@18.3.1) + '@mui/x-license': 7.18.0(@types/react@18.3.9)(react@18.3.1) '@types/format-util': 1.0.4 clsx: 2.1.1 exceljs: 4.4.0 @@ -15219,20 +15294,20 @@ snapshots: react-dom: 18.3.1(react@18.3.1) reselect: 5.1.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@mui/x-data-grid-pro@7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-data-grid-pro@7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/material': link:packages/mui-material/build '@mui/system': link:packages/mui-system/build - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) - '@mui/x-data-grid': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/x-internals': 7.18.0(@types/react@18.3.4)(react@18.3.1) - '@mui/x-license': 7.18.0(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) + '@mui/x-data-grid': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/x-internals': 7.18.0(@types/react@18.3.9)(react@18.3.1) + '@mui/x-license': 7.18.0(@types/react@18.3.9)(react@18.3.1) '@types/format-util': 1.0.4 clsx: 2.1.1 prop-types: 15.8.1 @@ -15240,58 +15315,58 @@ snapshots: react-dom: 18.3.1(react@18.3.1) reselect: 5.1.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@mui/x-data-grid@7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-data-grid@7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/material': link:packages/mui-material/build '@mui/system': link:packages/mui-system/build - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) - '@mui/x-internals': 7.18.0(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) + '@mui/x-internals': 7.18.0(@types/react@18.3.9)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) reselect: 5.1.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@mui/x-date-pickers-pro@7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-date-pickers-pro@7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/material': link:packages/mui-material/build '@mui/system': link:packages/mui-system/build - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) - '@mui/x-date-pickers': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/x-internals': 7.18.0(@types/react@18.3.4)(react@18.3.1) - '@mui/x-license': 7.18.0(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) + '@mui/x-date-pickers': 7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/x-internals': 7.18.0(@types/react@18.3.9)(react@18.3.1) + '@mui/x-license': 7.18.0(@types/react@18.3.9)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) date-fns: 2.30.0 dayjs: 1.11.13 transitivePeerDependencies: - '@types/react' - '@mui/x-date-pickers@7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-date-pickers@7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(date-fns@2.30.0)(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/material': link:packages/mui-material/build '@mui/system': link:packages/mui-system/build - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) - '@mui/x-internals': 7.18.0(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) + '@mui/x-internals': 7.18.0(@types/react@18.3.9)(react@18.3.1) '@types/react-transition-group': 4.4.11 clsx: 2.1.1 prop-types: 15.8.1 @@ -15299,36 +15374,36 @@ snapshots: 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) optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) date-fns: 2.30.0 dayjs: 1.11.13 transitivePeerDependencies: - '@types/react' - '@mui/x-internals@7.18.0(@types/react@18.3.4)(react@18.3.1)': + '@mui/x-internals@7.18.0(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - '@mui/x-license@7.18.0(@types/react@18.3.4)(react@18.3.1)': + '@mui/x-license@7.18.0(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - '@mui/x-tree-view@7.18.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-tree-view@7.18.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@mui/system@packages+mui-system+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/material': link:packages/mui-material/build '@mui/system': link:packages/mui-system/build - '@mui/utils': 5.16.6(@types/react@18.3.4)(react@18.3.1) - '@mui/x-internals': 7.18.0(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.9)(react@18.3.1) + '@mui/x-internals': 7.18.0(@types/react@18.3.9)(react@18.3.1) '@types/react-transition-group': 4.4.11 clsx: 2.1.1 prop-types: 15.8.1 @@ -15336,8 +15411,8 @@ snapshots: 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) optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) transitivePeerDependencies: - '@types/react' @@ -15428,6 +15503,8 @@ snapshots: '@next/env@14.2.13': {} + '@next/env@14.2.14': {} + '@next/eslint-plugin-next@14.2.13': dependencies: glob: 10.3.10 @@ -15435,30 +15512,57 @@ snapshots: '@next/swc-darwin-arm64@14.2.13': optional: true + '@next/swc-darwin-arm64@14.2.14': + optional: true + '@next/swc-darwin-x64@14.2.13': optional: true + '@next/swc-darwin-x64@14.2.14': + optional: true + '@next/swc-linux-arm64-gnu@14.2.13': optional: true + '@next/swc-linux-arm64-gnu@14.2.14': + optional: true + '@next/swc-linux-arm64-musl@14.2.13': optional: true + '@next/swc-linux-arm64-musl@14.2.14': + optional: true + '@next/swc-linux-x64-gnu@14.2.13': optional: true + '@next/swc-linux-x64-gnu@14.2.14': + optional: true + '@next/swc-linux-x64-musl@14.2.13': optional: true + '@next/swc-linux-x64-musl@14.2.14': + optional: true + '@next/swc-win32-arm64-msvc@14.2.13': optional: true + '@next/swc-win32-arm64-msvc@14.2.14': + optional: true + '@next/swc-win32-ia32-msvc@14.2.13': optional: true + '@next/swc-win32-ia32-msvc@14.2.14': + optional: true + '@next/swc-win32-x64-msvc@14.2.13': optional: true + '@next/swc-win32-x64-msvc@14.2.14': + optional: true + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': optional: true @@ -15891,16 +15995,16 @@ snapshots: '@opentelemetry/api@1.8.0': optional: true - '@pigment-css/nextjs-plugin@0.0.23(@types/react@18.3.4)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': + '@pigment-css/nextjs-plugin@0.0.23(@types/react@18.3.9)(next@14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@pigment-css/unplugin': 0.0.23(@types/react@18.3.4)(react@18.3.1) - next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@pigment-css/unplugin': 0.0.23(@types/react@18.3.9)(react@18.3.1) + next: 14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@types/react' - react - supports-color - '@pigment-css/react@0.0.23(@types/react@18.3.4)(react@18.3.1)': + '@pigment-css/react@0.0.23(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/core': 7.25.2 '@babel/helper-module-imports': 7.24.7 @@ -15909,11 +16013,11 @@ snapshots: '@babel/types': 7.25.6 '@emotion/css': 11.11.2 '@emotion/is-prop-valid': 1.3.0 - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) '@emotion/serialize': 1.3.1 - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@mui/system': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1) - '@mui/utils': 6.1.1(@types/react@18.3.4)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@mui/system': 6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) + '@mui/utils': 6.1.1(@types/react@18.3.9)(react@18.3.1) '@wyw-in-js/processor-utils': 0.5.4 '@wyw-in-js/shared': 0.5.4 '@wyw-in-js/transform': 0.5.4 @@ -15928,10 +16032,10 @@ snapshots: - '@types/react' - supports-color - '@pigment-css/unplugin@0.0.23(@types/react@18.3.4)(react@18.3.1)': + '@pigment-css/unplugin@0.0.23(@types/react@18.3.9)(react@18.3.1)': dependencies: '@babel/core': 7.25.2 - '@pigment-css/react': 0.0.23(@types/react@18.3.4)(react@18.3.1) + '@pigment-css/react': 0.0.23(@types/react@18.3.9)(react@18.3.1) '@wyw-in-js/shared': 0.5.4 '@wyw-in-js/transform': 0.5.4 babel-plugin-define-var: 0.1.0 @@ -15941,11 +16045,11 @@ snapshots: - react - supports-color - '@pigment-css/vite-plugin@0.0.23(@types/react@18.3.4)(react@18.3.1)(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2))': + '@pigment-css/vite-plugin@0.0.23(@types/react@18.3.9)(react@18.3.1)(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2))': dependencies: '@babel/core': 7.25.2 '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2) - '@pigment-css/react': 0.0.23(@types/react@18.3.4)(react@18.3.1) + '@pigment-css/react': 0.0.23(@types/react@18.3.9)(react@18.3.1) '@wyw-in-js/shared': 0.5.4 '@wyw-in-js/transform': 0.5.4 babel-plugin-define-var: 0.1.0 @@ -16626,74 +16730,74 @@ snapshots: lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@testing-library/dom': 10.4.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@types/react-dom': 18.3.0 '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)': dependencies: '@testing-library/dom': 10.4.0 - '@theme-ui/color-modes@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1)': + '@theme-ui/color-modes@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1)) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1)) deepmerge: 4.3.1 react: 18.3.1 - '@theme-ui/components@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@theme-ui/theme-provider@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1))(react@18.3.1)': + '@theme-ui/components@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@theme-ui/theme-provider@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) '@styled-system/color': 5.1.2 '@styled-system/should-forward-prop': 5.1.5 '@styled-system/space': 5.1.2 - '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1)) - '@theme-ui/theme-provider': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) + '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1)) + '@theme-ui/theme-provider': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) '@types/styled-system': 5.1.15 react: 18.3.1 - '@theme-ui/core@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1)': + '@theme-ui/core@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1)) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1)) deepmerge: 4.3.1 react: 18.3.1 - '@theme-ui/css@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))': + '@theme-ui/css@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))': dependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) csstype: 3.1.3 - '@theme-ui/global@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1)': + '@theme-ui/global@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1)) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1)) react: 18.3.1 - '@theme-ui/theme-provider@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1)': + '@theme-ui/theme-provider@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@theme-ui/color-modes': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1)) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@theme-ui/color-modes': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1)) react: 18.3.1 - '@toolpad/core@0.7.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@types/node@20.16.5)(@types/react@18.3.4)(happy-dom@12.10.3)(jsdom@24.0.0)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.29.2)(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2))': + '@toolpad/core@0.7.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@types/node@20.16.5)(@types/react@18.3.9)(happy-dom@12.10.3)(jsdom@24.0.0)(next@14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.29.2)(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2))': dependencies: '@babel/runtime': 7.25.6 '@mui/icons-material': link:packages/mui-icons-material/build - '@mui/lab': 6.0.0-beta.10(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/material@packages+mui-material+build)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/lab': 6.0.0-beta.10(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material-pigment-css@6.1.1(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1))(@mui/material@packages+mui-material+build)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': link:packages/mui-material/build - '@mui/utils': 6.1.1(@types/react@18.3.4)(react@18.3.1) + '@mui/utils': 6.1.1(@types/react@18.3.9)(react@18.3.1) '@toolpad/utils': 0.7.0(@types/node@20.16.5)(happy-dom@12.10.3)(jsdom@24.0.0)(react@18.3.1)(terser@5.29.2) '@vitejs/plugin-react': 4.3.1(vite@5.4.8(@types/node@20.16.5)(terser@5.29.2)) client-only: 0.0.1 @@ -16702,7 +16806,7 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next: 14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@edge-runtime/vm' - '@emotion/react' @@ -16878,7 +16982,7 @@ snapshots: '@types/hoist-non-react-statics@3.3.5': dependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 hoist-non-react-statics: 3.3.2 '@types/html-minifier-terser@6.1.0': {} @@ -16958,33 +17062,33 @@ snapshots: '@types/react-dom@18.3.0': dependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@types/react-is@18.3.0': dependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@types/react-reconciler@0.26.7': dependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@types/react-reconciler@0.28.8': dependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@types/react-swipeable-views@0.13.5': dependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@types/react-transition-group@4.4.11': dependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@types/react-window@1.8.8': dependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 - '@types/react@18.3.4': + '@types/react@18.3.9': dependencies: '@types/prop-types': 15.7.13 csstype: 3.1.3 @@ -21892,7 +21996,7 @@ snapshots: '@babel/runtime': 7.25.6 '@mui/material': link:packages/mui-material/build '@types/prop-types': 15.7.13 - '@types/react': 18.3.4 + '@types/react': 18.3.9 classnames: 2.3.2 prop-types: 15.8.1 react: 18.3.1 @@ -22522,6 +22626,33 @@ snapshots: - '@babel/core' - babel-plugin-macros + next@14.2.14(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@next/env': 14.2.14 + '@swc/helpers': 0.5.5 + busboy: 1.6.0 + caniuse-lite: 1.0.30001649 + graceful-fs: 4.2.11 + postcss: 8.4.31 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react@18.3.1) + optionalDependencies: + '@next/swc-darwin-arm64': 14.2.14 + '@next/swc-darwin-x64': 14.2.14 + '@next/swc-linux-arm64-gnu': 14.2.14 + '@next/swc-linux-arm64-musl': 14.2.14 + '@next/swc-linux-x64-gnu': 14.2.14 + '@next/swc-linux-x64-musl': 14.2.14 + '@next/swc-win32-arm64-msvc': 14.2.14 + '@next/swc-win32-ia32-msvc': 14.2.14 + '@next/swc-win32-x64-msvc': 14.2.14 + '@opentelemetry/api': 1.8.0 + '@playwright/test': 1.47.2 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + nise@6.1.1: dependencies: '@sinonjs/commons': 3.0.1 @@ -23770,7 +23901,7 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-redux@8.1.3(@types/react-dom@18.3.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react-native@0.73.6(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(redux@4.2.1): + react-redux@8.1.3(@types/react-dom@18.3.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react-native@0.73.6(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(redux@4.2.1): dependencies: '@babel/runtime': 7.25.6 '@types/hoist-non-react-statics': 3.3.5 @@ -23780,7 +23911,7 @@ snapshots: react-is: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) optionalDependencies: - '@types/react': 18.3.4 + '@types/react': 18.3.9 '@types/react-dom': 18.3.0 react-dom: 18.3.1(react@18.3.1) react-native: 0.73.6(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(encoding@0.1.13)(react@18.3.1) @@ -25066,15 +25197,15 @@ snapshots: text-table@0.2.0: {} - theme-ui@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1): + theme-ui@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1): dependencies: - '@emotion/react': 11.13.3(@types/react@18.3.4)(react@18.3.1) - '@theme-ui/color-modes': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@theme-ui/components': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@theme-ui/theme-provider@0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1))(react@18.3.1) - '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1)) - '@theme-ui/global': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) - '@theme-ui/theme-provider': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.9)(react@18.3.1) + '@theme-ui/color-modes': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@theme-ui/components': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@theme-ui/theme-provider@0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@theme-ui/core': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1)) + '@theme-ui/global': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) + '@theme-ui/theme-provider': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(react@18.3.1) react: 18.3.1 theming@3.3.0(react@18.3.1): diff --git a/test/package.json b/test/package.json index 8e6212fe320f4e..e1a298eba418bb 100644 --- a/test/package.json +++ b/test/package.json @@ -20,7 +20,7 @@ "@playwright/test": "1.47.2", "@testing-library/dom": "^10.4.0", "@types/chai": "^4.3.20", - "@types/react": "^18.3.4", + "@types/react": "^18.3.6", "@types/react-is": "^18.3.0", "@types/sinon": "^17.0.3", "chai": "^4.5.0",