diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2443587d91de24..004b5c0290278d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4 + uses: github/codeql-action/init@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5 with: languages: typescript config-file: ./.github/codeql/codeql-config.yml @@ -30,4 +30,4 @@ jobs: # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs # queries: security-extended,security-and-quality - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4 + uses: github/codeql-action/analyze@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5 diff --git a/.github/workflows/scorecards.yml b/.github/workflows/scorecards.yml index ea33dbc69af6e3..1dfa0f3490e45b 100644 --- a/.github/workflows/scorecards.yml +++ b/.github/workflows/scorecards.yml @@ -43,6 +43,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: Upload to code-scanning - uses: github/codeql-action/upload-sarif@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4 + uses: github/codeql-action/upload-sarif@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5 with: sarif_file: results.sarif diff --git a/docs/data/about/teamMembers.json b/docs/data/about/teamMembers.json index fcd1526e63c50c..20c314ad768c0d 100644 --- a/docs/data/about/teamMembers.json +++ b/docs/data/about/teamMembers.json @@ -262,5 +262,14 @@ "locationCountry": "ro", "about": "Art enthusiast 🎨 outdoor person 🌳 animal lover 🐾", "github": "noraleonte" + }, + { + "name": "Michel Engelen", + "title": "React Community Engineer - X", + "location": "Zeven, Germany", + "locationCountry": "de", + "about": "Geeking out on Badminton 🏸, everything Japan 🇯🇵 and Pizza 🍕", + "twitter": "jsNerdic", + "github": "michelengelen" } ] diff --git a/docs/data/joy/getting-started/templates/order-dashboard/App.tsx b/docs/data/joy/getting-started/templates/order-dashboard/App.tsx index e884a21e0ffe71..480cf9fa1a626f 100644 --- a/docs/data/joy/getting-started/templates/order-dashboard/App.tsx +++ b/docs/data/joy/getting-started/templates/order-dashboard/App.tsx @@ -72,6 +72,7 @@ export default function JoyOrderDashboardTemplate() { size="sm" aria-label="breadcrumbs" separator={} + sx={{ pl: 0 }} > { - // Feather icon setup: https://github.com/feathericons/feather#4-replace - // @ts-ignore - if (typeof feather !== 'undefined') { - // @ts-ignore - feather.replace(); - } - }, [status]); - return ( - ({ - '[data-feather], .feather': { - color: `var(--Icon-color, ${theme.vars.palette.text.icon})`, - margin: 'var(--Icon-margin)', - fontSize: `var(--Icon-fontSize, ${theme.vars.fontSize.xl})`, - width: '1em', - height: '1em', - }, - })} - /> - + ({ - '--main-paddingTop': { - xs: `calc(${theme.spacing(2)} + var(--Header-height, 0px))`, - md: '32px', - }, - px: { - xs: 2, + sx={{ + pt: { + xs: 'calc(12px + var(--Header-height))', md: 3, }, - pt: 'var(--main-paddingTop)', pb: { xs: 2, sm: 2, @@ -65,7 +33,7 @@ export default function JoyOrderDashboardTemplate() { height: '100dvh', gap: 1, overflow: 'auto', - })} + }} > diff --git a/docs/data/joy/getting-started/templates/profile-dashboard/components/ColorSchemeToggle.tsx b/docs/data/joy/getting-started/templates/profile-dashboard/components/ColorSchemeToggle.tsx index 073e9e37b0c5c7..d1b512bb8a123b 100644 --- a/docs/data/joy/getting-started/templates/profile-dashboard/components/ColorSchemeToggle.tsx +++ b/docs/data/joy/getting-started/templates/profile-dashboard/components/ColorSchemeToggle.tsx @@ -2,6 +2,9 @@ import * as React from 'react'; import { useColorScheme } from '@mui/joy/styles'; import IconButton, { IconButtonProps } from '@mui/joy/IconButton'; +import DarkModeRoundedIcon from '@mui/icons-material/DarkModeRounded'; +import LightModeIcon from '@mui/icons-material/LightMode'; + export default function ColorSchemeToggle({ onClick, sx, @@ -51,8 +54,8 @@ export default function ColorSchemeToggle({ ...(Array.isArray(sx) ? sx : [sx]), ]} > - - + + ); } diff --git a/docs/data/joy/getting-started/templates/profile-dashboard/components/CountrySelector.tsx b/docs/data/joy/getting-started/templates/profile-dashboard/components/CountrySelector.tsx index c55a76bc6f1eb0..ffad77fc4fccae 100644 --- a/docs/data/joy/getting-started/templates/profile-dashboard/components/CountrySelector.tsx +++ b/docs/data/joy/getting-started/templates/profile-dashboard/components/CountrySelector.tsx @@ -15,6 +15,7 @@ export default function ContrySelector({ sx, ...props }: FormControlProps) { > Country option.code === value.code} defaultValue={{ code: 'TH', label: 'Thailand', phone: '66' }} diff --git a/docs/data/joy/getting-started/templates/profile-dashboard/components/DropZone.tsx b/docs/data/joy/getting-started/templates/profile-dashboard/components/DropZone.tsx index b08ee630ebe9c5..d04990e770b3d6 100644 --- a/docs/data/joy/getting-started/templates/profile-dashboard/components/DropZone.tsx +++ b/docs/data/joy/getting-started/templates/profile-dashboard/components/DropZone.tsx @@ -1,14 +1,22 @@ /* eslint-disable jsx-a11y/anchor-is-valid */ import * as React from 'react'; -import Box from '@mui/joy/Box'; import Card, { CardProps } from '@mui/joy/Card'; import Link from '@mui/joy/Link'; import Typography from '@mui/joy/Typography'; +import AspectRatio from '@mui/joy/AspectRatio'; -export default function DropZone({ sx, ...props }: CardProps) { +import FileUploadRoundedIcon from '@mui/icons-material/FileUploadRounded'; + +export default function DropZone({ + icon, + sx, + ...props +}: CardProps & { + icon?: React.ReactElement; +}) { return ( - - - - - + + {icon ?? } + + Click to upload diff --git a/docs/data/joy/getting-started/templates/profile-dashboard/components/EditorToolbar.tsx b/docs/data/joy/getting-started/templates/profile-dashboard/components/EditorToolbar.tsx index 69d9f489923f9d..bd916e6fa70b5c 100644 --- a/docs/data/joy/getting-started/templates/profile-dashboard/components/EditorToolbar.tsx +++ b/docs/data/joy/getting-started/templates/profile-dashboard/components/EditorToolbar.tsx @@ -5,6 +5,11 @@ import Select from '@mui/joy/Select'; import Option from '@mui/joy/Option'; import IconButton from '@mui/joy/IconButton'; +import FormatBoldRoundedIcon from '@mui/icons-material/FormatBoldRounded'; +import FormatItalicRoundedIcon from '@mui/icons-material/FormatItalicRounded'; +import StrikethroughSRoundedIcon from '@mui/icons-material/StrikethroughSRounded'; +import FormatListBulletedRoundedIcon from '@mui/icons-material/FormatListBulletedRounded'; + export default function EditorToolbar({ sx, ...props }: BoxProps) { return ( - + Normal text Code text - - + + - - + + - - + + - - + + ); diff --git a/docs/data/joy/getting-started/templates/profile-dashboard/components/FileUpload.tsx b/docs/data/joy/getting-started/templates/profile-dashboard/components/FileUpload.tsx index 7f50326288d249..ad9ae6f4c0a891 100644 --- a/docs/data/joy/getting-started/templates/profile-dashboard/components/FileUpload.tsx +++ b/docs/data/joy/getting-started/templates/profile-dashboard/components/FileUpload.tsx @@ -7,6 +7,10 @@ import IconButton from '@mui/joy/IconButton'; import LinearProgress from '@mui/joy/LinearProgress'; import Typography from '@mui/joy/Typography'; +import InsertDriveFileRoundedIcon from '@mui/icons-material/InsertDriveFileRounded'; +import CheckRoundedIcon from '@mui/icons-material/CheckRounded'; +import RemoveCircleOutlineRoundedIcon from '@mui/icons-material/RemoveCircleOutlineRounded'; + export default function FileUpload({ icon, fileName, @@ -29,9 +33,6 @@ export default function FileUpload({ { gap: 1.5, alignItems: 'flex-start', - ...(progress >= 100 && { - borderColor: 'primary.500', - }), }, ...(Array.isArray(sx) ? sx : [sx]), ]} @@ -39,24 +40,30 @@ export default function FileUpload({ - {icon ?? } + {icon ?? } {fileName} {fileSize} = 100 && { + color: 'var(--joy-palette-success-solidBg)', + }), + }, + ]} /> {progress}% @@ -65,7 +72,7 @@ export default function FileUpload({ - + ) : ( - - + + )} diff --git a/docs/data/joy/getting-started/templates/profile-dashboard/components/Header.tsx b/docs/data/joy/getting-started/templates/profile-dashboard/components/Header.tsx index 746e72e993fe86..e77c937ca54480 100644 --- a/docs/data/joy/getting-started/templates/profile-dashboard/components/Header.tsx +++ b/docs/data/joy/getting-started/templates/profile-dashboard/components/Header.tsx @@ -2,8 +2,7 @@ import * as React from 'react'; import GlobalStyles from '@mui/joy/GlobalStyles'; import IconButton from '@mui/joy/IconButton'; import Sheet from '@mui/joy/Sheet'; -import MuiLogo from './MuiLogo'; -import ColorSchemeToggle from './ColorSchemeToggle'; +import MenuRoundedIcon from '@mui/icons-material/MenuRounded'; import { toggleSidebar } from '../utils'; export default function Header() { @@ -12,14 +11,16 @@ export default function Header() { sx={{ display: { xs: 'flex', md: 'none' }, alignItems: 'center', + justifyContent: 'space-between', position: 'fixed', top: 0, width: '100vw', height: 'var(--Header-height)', - zIndex: 9995, - py: 1, - px: 2, + zIndex: 9998, + p: 2, gap: 1, + borderBottom: '1px solid', + borderColor: 'background.level1', boxShadow: 'sm', }} > @@ -39,10 +40,8 @@ export default function Header() { color="neutral" size="sm" > - + - - ); } diff --git a/docs/data/joy/getting-started/templates/profile-dashboard/components/MyProfile.tsx b/docs/data/joy/getting-started/templates/profile-dashboard/components/MyProfile.tsx index 189aebbd33b1d6..9d30ec1b9fcea1 100644 --- a/docs/data/joy/getting-started/templates/profile-dashboard/components/MyProfile.tsx +++ b/docs/data/joy/getting-started/templates/profile-dashboard/components/MyProfile.tsx @@ -1,13 +1,13 @@ import * as React from 'react'; -import Avatar from '@mui/joy/Avatar'; +import AspectRatio from '@mui/joy/AspectRatio'; import Box from '@mui/joy/Box'; import Button from '@mui/joy/Button'; -import Chip, { chipClasses } from '@mui/joy/Chip'; import Divider from '@mui/joy/Divider'; import FormControl from '@mui/joy/FormControl'; import FormLabel from '@mui/joy/FormLabel'; import FormHelperText from '@mui/joy/FormHelperText'; import Input from '@mui/joy/Input'; +import IconButton from '@mui/joy/IconButton'; import Textarea from '@mui/joy/Textarea'; import Stack from '@mui/joy/Stack'; import Select from '@mui/joy/Select'; @@ -16,6 +16,20 @@ import Typography from '@mui/joy/Typography'; import Tabs from '@mui/joy/Tabs'; import TabList from '@mui/joy/TabList'; import Tab, { tabClasses } from '@mui/joy/Tab'; +import Breadcrumbs from '@mui/joy/Breadcrumbs'; +import Link from '@mui/joy/Link'; +import Card from '@mui/joy/Card'; +import CardActions from '@mui/joy/CardActions'; +import CardOverflow from '@mui/joy/CardOverflow'; + +import HomeRoundedIcon from '@mui/icons-material/HomeRounded'; +import ChevronRightRoundedIcon from '@mui/icons-material/ChevronRightRounded'; +import EmailRoundedIcon from '@mui/icons-material/EmailRounded'; +import AccessTimeFilledRoundedIcon from '@mui/icons-material/AccessTimeFilledRounded'; +import VideocamRoundedIcon from '@mui/icons-material/VideocamRounded'; +import InsertDriveFileRoundedIcon from '@mui/icons-material/InsertDriveFileRounded'; +import EditRoundedIcon from '@mui/icons-material/EditRounded'; + import DropZone from './DropZone'; import FileUpload from './FileUpload'; import CountrySelector from './CountrySelector'; @@ -26,201 +40,350 @@ export default function MyProfile() { - - My profile - - + - ({ - '--Chip-minHeight': '20px', - '--ListItem-minHeight': '48px', - top: 'calc(-1 * (var(--main-paddingTop, 0px) - var(--Header-height, 0px)))', - zIndex: 10, - width: '100%', - overflow: 'auto hidden', - alignSelf: 'flex-start', - scrollSnapType: 'inline', - '&::after': { - pointerEvents: 'none', - display: { xs: 'block', sm: 'none' }, - content: '""', - position: 'sticky', - top: 0, - width: 40, - flex: 'none', - zIndex: 1, - right: 0, - borderBottom: '1px solid transparent', - background: `linear-gradient(to left, ${theme.vars.palette.background.body}, rgb(0 0 0 / 0))`, - backgroundClip: 'content-box', - }, - '&::-webkit-scrollbar': { - width: 0, - display: 'none', - }, - [`& .${tabClasses.root}`]: { - '--focus-outline-offset': '-2px', - '&:first-of-type': { - ml: 'calc(-1 * var(--ListItem-paddingX))', - }, - scrollSnapAlign: 'start', - bgcolor: 'transparent', - flex: 'none', - '&:hover': { - bgcolor: 'transparent', - }, - [`&.${tabClasses.selected}`]: { - color: 'primary.plainColor', - bgcolor: 'transparent', - [`& .${chipClasses.root}`]: theme.variants.solid.primary, - }, - }, - })} > - - Account settings - - - Team{' '} - - 2 - - - - Plan - - - Billing{' '} - - 4 - - - - Notifications - - - Integrations - - - API - - - } + sx={{ pl: 0 }} + > + + + + + Users + + + My profile + + + + My profile + + + hr': { - gridColumn: '1/-1', - }, + bgcolor: 'transparent', }} > - Name - - - First name - - - - Last name - - - - - - Email - } - placeholder="email" - defaultValue="siriwatk@test.com" - /> - - - - Your photo - This will be displayed on your profile. - - - - + + Settings + + + Team + + + Plan + + + Billing + + + + + + + + + Personal info + + Customize how your profile information will apper to the networks. + - - - Role - - - - - - - Timezone - } defaultValue="1"> - - Indochina Time (Bangkok){' '} - - — GMT+07:00 - - - - Indochina Time (Ho Chi Minh City){' '} - - — GMT+07:00 - - - - - - - Bio - Write a short introduction. - - + + + + + + + + + + + + + Name + + + + + + + + Role + + + + Email + } + placeholder="email" + defaultValue="siriwatk@test.com" + sx={{ flexGrow: 1 }} + /> + + + + + + + + Timezone + } + defaultValue="1" + > + + Indochina Time (Bangkok){' '} + + — GMT+07:00 + + + + Indochina Time (Ho Chi Minh City){' '} + + — GMT+07:00 + + + + + + + + + + + + + + + + + + + Name + + + + + + + + + Role + + + + Email + } + placeholder="email" + defaultValue="siriwatk@test.com" + sx={{ flexGrow: 1 }} + /> + + + + + + + + Timezone + } + defaultValue="1" + > + + Indochina Time (Bangkok){' '} + + — GMT+07:00 + + + + Indochina Time (Ho Chi Minh City){' '} + + — GMT+07:00 + + + + + + + + + + Cancel + + + Save + + + + + + + Bio + + Write a short introduction to be displayed on your profile + + + + 275 characters left - - - - Portfolio projects - Share a few snippets of your work. - - + + + + + Cancel + + + Save + + + + + + + Portfolio projects + + Share a few snippets of your work. + + + + + } fileName="Tech design requirements.pdf" fileSize="200 KB" progress={100} /> } + icon={} fileName="Dashboard prototype recording.mp4" fileSize="16 MB" progress={40} /> - } - fileName="Dashboard prototype FINAL.fig" - fileSize="4.2 MB" - progress={80} - /> - - - - Cancel - - Save - - - + + + + Cancel + + + Save + + + + + ); } diff --git a/docs/data/joy/getting-started/templates/profile-dashboard/components/Sidebar.tsx b/docs/data/joy/getting-started/templates/profile-dashboard/components/Sidebar.tsx index faa78e1cb2bfbf..7dcdbc278f6397 100644 --- a/docs/data/joy/getting-started/templates/profile-dashboard/components/Sidebar.tsx +++ b/docs/data/joy/getting-started/templates/profile-dashboard/components/Sidebar.tsx @@ -1,29 +1,68 @@ -/* eslint-disable jsx-a11y/anchor-is-valid */ import * as React from 'react'; -import { styled } from '@mui/joy/styles'; import GlobalStyles from '@mui/joy/GlobalStyles'; import Avatar from '@mui/joy/Avatar'; import Box from '@mui/joy/Box'; +import Button from '@mui/joy/Button'; import Card from '@mui/joy/Card'; import Divider from '@mui/joy/Divider'; import IconButton from '@mui/joy/IconButton'; import Input from '@mui/joy/Input'; -import Link from '@mui/joy/Link'; import LinearProgress from '@mui/joy/LinearProgress'; import List from '@mui/joy/List'; import ListItem from '@mui/joy/ListItem'; -import ListItemButton from '@mui/joy/ListItemButton'; +import ListItemButton, { listItemButtonClasses } from '@mui/joy/ListItemButton'; import ListItemContent from '@mui/joy/ListItemContent'; -import ListItemDecorator from '@mui/joy/ListItemDecorator'; import Typography from '@mui/joy/Typography'; import Sheet from '@mui/joy/Sheet'; -import MuiLogo from './MuiLogo'; +import Stack from '@mui/joy/Stack'; +import SearchRoundedIcon from '@mui/icons-material/SearchRounded'; +import HomeRoundedIcon from '@mui/icons-material/HomeRounded'; +import DashboardRoundedIcon from '@mui/icons-material/DashboardRounded'; +import CollectionsBookmarkRoundedIcon from '@mui/icons-material/CollectionsBookmarkRounded'; +import AssignmentRoundedIcon from '@mui/icons-material/AssignmentRounded'; +import FlagRoundedIcon from '@mui/icons-material/FlagRounded'; +import GroupRoundedIcon from '@mui/icons-material/GroupRounded'; +import SupportRoundedIcon from '@mui/icons-material/SupportRounded'; +import SettingsRoundedIcon from '@mui/icons-material/SettingsRounded'; +import CloseRoundedIcon from '@mui/icons-material/CloseRounded'; +import LogoutRoundedIcon from '@mui/icons-material/LogoutRounded'; +import BadgeRoundedIcon from '@mui/icons-material/BadgeRounded'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; + import ColorSchemeToggle from './ColorSchemeToggle'; import { closeSidebar } from '../utils'; -const Dropdown = styled('i')(({ theme }) => ({ - color: theme.vars.palette.text.tertiary, -})); +function Toggler({ + defaultExpanded = false, + renderToggle, + children, +}: { + defaultExpanded?: boolean; + children: React.ReactNode; + renderToggle: (params: { + open: boolean; + setOpen: React.Dispatch>; + }) => React.ReactNode; +}) { + const [open, setOpen] = React.useState(defaultExpanded); + return ( + + {renderToggle({ open, setOpen })} + *': { + overflow: 'hidden', + }, + }} + > + {children} + + + ); +} export default function Sidebar() { return ( @@ -56,9 +95,9 @@ export default function Sidebar() { ({ ':root': { - '--Sidebar-width': '224px', + '--Sidebar-width': '220px', [theme.breakpoints.up('lg')]: { - '--Sidebar-width': '256px', + '--Sidebar-width': '240px', }, }, })} @@ -72,8 +111,8 @@ export default function Sidebar() { left: 0, width: '100vw', height: '100vh', - - opacity: 'calc(var(--SideNavigation-slideIn, 0) - 0.2)', + opacity: 'var(--SideNavigation-slideIn)', + backgroundColor: 'var(--joy-palette-background-backdrop)', transition: 'opacity 0.4s', transform: { xs: 'translateX(calc(100% * (var(--SideNavigation-slideIn, 0) - 1) + var(--SideNavigation-slideIn, 0) * var(--Sidebar-width, 0px)))', @@ -83,11 +122,13 @@ export default function Sidebar() { onClick={() => closeSidebar()} /> - - MUI + + + + Profiles - } placeholder="Search" /> + } placeholder="Search" /> theme.vars.radius.sm, }} > - - - - Home - + + + Home + + - - - - Dashboard - + + + Dashboard + + - - - - Projects - + + + Projects + - - - - - - Tasks - - + + + ( + setOpen(!open)}> + + + Tasks + + + + )} + > + + + All tasks + + + Backlog + + + In progress + + + Done + + + + - - - - Reporting - + + + Reporting + - - - - - Users - - - - - - My Profile + ( + setOpen(!open)}> + + + Users + + - - - New user - - - Role & Permission - - + )} + > + + + My profile + + + Create a new user + + + Roles & permission + + + + theme.vars.radius.sm, '--List-gap': '8px', + mb: 2, }} > - - - - Supports + + Support - - - - Settings + + Settings - - Used space - + + Used space + + + + Your team has used 80% of your available space. Need more? - - - - Upgrade plan - - - Dismiss - - + + + Upgrade plan + - + - - Siriwat K. - + Siriwat K. siriwatk@test.com - - + + diff --git a/docs/package.json b/docs/package.json index 78b310661197ff..aea3bbbec58f38 100644 --- a/docs/package.json +++ b/docs/package.json @@ -46,13 +46,13 @@ "@mui/system": "workspace:^", "@mui/types": "workspace:^", "@mui/utils": "workspace:^", - "@mui/x-charts": "^6.0.0-alpha.8", - "@mui/x-data-grid": "6.12.0", - "@mui/x-data-grid-generator": "6.12.0", - "@mui/x-data-grid-premium": "6.12.0", - "@mui/x-data-grid-pro": "6.12.0", - "@mui/x-date-pickers": "6.12.0", - "@mui/x-date-pickers-pro": "6.12.0", + "@mui/x-charts": "^6.0.0-alpha.9", + "@mui/x-data-grid": "6.12.1", + "@mui/x-data-grid-generator": "6.12.1", + "@mui/x-data-grid-premium": "6.12.1", + "@mui/x-data-grid-pro": "6.12.1", + "@mui/x-date-pickers": "6.12.1", + "@mui/x-date-pickers-pro": "6.12.1", "@mui/x-license-pro": "6.10.2", "@mui/x-tree-view": "6.0.0-alpha.1", "@popperjs/core": "^2.11.8", @@ -96,7 +96,7 @@ "next": "13.4.19", "notistack": "3.0.1", "nprogress": "^0.2.0", - "postcss": "^8.4.28", + "postcss": "^8.4.29", "prop-types": "^15.8.1", "react-dom": "^18.2.0", "react-draggable": "^4.4.5", diff --git a/docs/public/static/branding/about/michel-engelen.png b/docs/public/static/branding/about/michel-engelen.png new file mode 100644 index 00000000000000..360b5a61015e11 Binary files /dev/null and b/docs/public/static/branding/about/michel-engelen.png differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/email-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/email-dark.jpg index 730a418c0c637f..80a7a283150d0f 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/email-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/email-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/email.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/email.jpg index 2029ea6f76850f..a8a3e7dfd047f6 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/email.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/email.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/files-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/files-dark.jpg index dd2e4065fcd998..81d5d38cd44a32 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/files-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/files-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/files.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/files.jpg index 83061c29ce0b71..b5e4a529e3776e 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/files.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/files.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/framesx-web-blocks-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/framesx-web-blocks-dark.jpg index 1ecfd6e1f9a0eb..13c86f3d6def8b 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/framesx-web-blocks-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/framesx-web-blocks-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/framesx-web-blocks.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/framesx-web-blocks.jpg index 9fbe9d2b8e19f4..aff63e514f4374 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/framesx-web-blocks.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/framesx-web-blocks.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/messages-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/messages-dark.jpg index 9146b7efaf63ba..5cb486b159ec2a 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/messages-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/messages-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/messages.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/messages.jpg index 49099cb4c6e7a9..a3347f3c2791f6 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/messages.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/messages.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/order-dashboard-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/order-dashboard-dark.jpg index 5fbb60fbb74613..71d477609f2769 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/order-dashboard-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/order-dashboard-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/order-dashboard.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/order-dashboard.jpg index d8b0b84193909c..d001ad7d1e5233 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/order-dashboard.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/order-dashboard.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/profile-dashboard-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/profile-dashboard-dark.jpg index c35ce347911e27..715b258b09ceda 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/profile-dashboard-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/profile-dashboard-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/profile-dashboard.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/profile-dashboard.jpg index aac5221a18865d..8386b671973643 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/profile-dashboard.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/profile-dashboard.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/rental-dashboard-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/rental-dashboard-dark.jpg index d087ee69569da5..f2b2b68d332c78 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/rental-dashboard-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/rental-dashboard-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/rental-dashboard.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/rental-dashboard.jpg index 71b0fe603e98c9..0b3b0470f62c08 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/rental-dashboard.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/rental-dashboard.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/sign-in-side-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/sign-in-side-dark.jpg index 69fdd4ef93b854..f66efcf18cd4ac 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/sign-in-side-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/sign-in-side-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/sign-in-side.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/sign-in-side.jpg index 8724a4bbc1758d..b32cfd22ae1e99 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/sign-in-side.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/sign-in-side.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/team-dark.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/team-dark.jpg index 7479a19a521311..ba89cc6101c1ac 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/team-dark.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/team-dark.jpg differ diff --git a/docs/public/static/screenshots/joy-ui/getting-started/templates/team.jpg b/docs/public/static/screenshots/joy-ui/getting-started/templates/team.jpg index 39f0b6f2ffe0ae..c5db2d52158165 100644 Binary files a/docs/public/static/screenshots/joy-ui/getting-started/templates/team.jpg and b/docs/public/static/screenshots/joy-ui/getting-started/templates/team.jpg differ diff --git a/package.json b/package.json index 0dc46be1f2219a..9561b2fb131231 100644 --- a/package.json +++ b/package.json @@ -197,9 +197,9 @@ "@babel/preset-react": "^7.22.5", "@babel/preset-typescript": "^7.22.5", "@babel/runtime": "^7.22.10", - "@definitelytyped/header-parser": "^0.0.169", - "@definitelytyped/typescript-versions": "^0.0.169", - "@definitelytyped/utils": "^0.0.169", + "@definitelytyped/header-parser": "^0.0.176", + "@definitelytyped/typescript-versions": "^0.0.176", + "@definitelytyped/utils": "^0.0.176", "@types/node": "^18.17.14", "@types/react": "18.2.21", "@types/react-dom": "18.2.7", diff --git a/packages/mui-base/package.json b/packages/mui-base/package.json index 48a582be98892c..197d493da444a3 100644 --- a/packages/mui-base/package.json +++ b/packages/mui-base/package.json @@ -42,7 +42,7 @@ }, "dependencies": { "@babel/runtime": "^7.22.10", - "@floating-ui/react-dom": "^2.0.1", + "@floating-ui/react-dom": "^2.0.2", "@mui/types": "workspace:^", "@mui/utils": "workspace:^", "@popperjs/core": "^2.11.8", diff --git a/packages/mui-joy/src/colors/colors.ts b/packages/mui-joy/src/colors/colors.ts index 9962c44418ad1a..af76dfdb71431b 100644 --- a/packages/mui-joy/src/colors/colors.ts +++ b/packages/mui-joy/src/colors/colors.ts @@ -1,15 +1,15 @@ const colors = { grey: { - 50: '#F5F7FA', - 100: '#EAEEF6', + 50: '#FBFCFE', + 100: '#F0F4F8', 200: '#DDE7EE', 300: '#CDD7E1', 400: '#9FA6AD', 500: '#636B74', 600: '#555E68', 700: '#32383E', - 800: '#23272B', - 900: '#121416', + 800: '#171A1C', + 900: '#0B0D0E', }, blue: { 50: '#EDF5FD', diff --git a/packages/mui-joy/src/styles/CssVarsProvider.test.tsx b/packages/mui-joy/src/styles/CssVarsProvider.test.tsx index b74577d7656c16..038856181aa8fd 100644 --- a/packages/mui-joy/src/styles/CssVarsProvider.test.tsx +++ b/packages/mui-joy/src/styles/CssVarsProvider.test.tsx @@ -152,6 +152,7 @@ describe('[Joy] CssVarsProvider', () => { solidActiveBg: 'var(--joy-palette-neutral-solidActiveBg)', solidDisabledColor: 'var(--joy-palette-neutral-solidDisabledColor)', solidDisabledBg: 'var(--joy-palette-neutral-solidDisabledBg)', + plainHoverColor: 'var(--joy-palette-neutral-plainHoverColor)', mainChannel: 'var(--joy-palette-neutral-mainChannel)', lightChannel: 'var(--joy-palette-neutral-lightChannel)', darkChannel: 'var(--joy-palette-neutral-darkChannel)', diff --git a/packages/mui-joy/src/styles/extendTheme.ts b/packages/mui-joy/src/styles/extendTheme.ts index d7d6eed4aabe89..20193542959c65 100644 --- a/packages/mui-joy/src/styles/extendTheme.ts +++ b/packages/mui-joy/src/styles/extendTheme.ts @@ -108,8 +108,8 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { success: colors.green, warning: colors.yellow, common: { - white: '#FCFCFD', - black: '#09090B', + white: '#FFF', + black: '#000', }, }; @@ -124,8 +124,8 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { const createLightModeVariantVariables = (color: ColorPaletteProp) => ({ plainColor: getCssVarColor(`palette-${color}-500`), - plainHoverBg: getCssVarColor(`palette-${color}-50`), - plainActiveBg: getCssVarColor(`palette-${color}-100`), + plainHoverBg: getCssVarColor(`palette-${color}-100`), + plainActiveBg: getCssVarColor(`palette-${color}-200`), plainDisabledColor: getCssVarColor(`palette-neutral-400`), outlinedColor: getCssVarColor(`palette-${color}-500`), @@ -141,14 +141,14 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { softActiveColor: getCssVarColor(`palette-${color}-800`), softActiveBg: getCssVarColor(`palette-${color}-300`), softDisabledColor: getCssVarColor(`palette-neutral-400`), - softDisabledBg: getCssVarColor(`palette-${color}-50`), + softDisabledBg: getCssVarColor(`palette-neutral-50`), solidColor: getCssVarColor(`palette-common-white`), solidBg: getCssVarColor(`palette-${color}-500`), solidHoverBg: getCssVarColor(`palette-${color}-600`), solidActiveBg: getCssVarColor(`palette-${color}-700`), solidDisabledColor: getCssVarColor(`palette-neutral-400`), - solidDisabledBg: getCssVarColor(`palette-${color}-100`), + solidDisabledBg: getCssVarColor(`palette-neutral-100`), }); const createDarkModeVariantVariables = (color: ColorPaletteProp) => ({ @@ -170,14 +170,14 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { softActiveColor: getCssVarColor(`palette-${color}-100`), softActiveBg: getCssVarColor(`palette-${color}-600`), softDisabledColor: getCssVarColor(`palette-neutral-500`), - softDisabledBg: getCssVarColor(`palette-${color}-900`), + softDisabledBg: getCssVarColor(`palette-neutral-800`), solidColor: getCssVarColor(`palette-common-white`), solidBg: getCssVarColor(`palette-${color}-500`), solidHoverBg: getCssVarColor(`palette-${color}-600`), solidActiveBg: getCssVarColor(`palette-${color}-700`), solidDisabledColor: getCssVarColor(`palette-neutral-500`), - solidDisabledBg: getCssVarColor(`palette-${color}-800`), + solidDisabledBg: getCssVarColor(`palette-neutral-800`), }); const lightColorSystem = { @@ -191,6 +191,7 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { ...defaultColors.neutral, ...createLightModeVariantVariables('neutral'), plainColor: getCssVarColor('palette-neutral-700'), + plainHoverColor: getCssVarColor(`palette-neutral-900`), outlinedColor: getCssVarColor('palette-neutral-700'), }, danger: { @@ -206,8 +207,8 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { ...createLightModeVariantVariables('warning'), }, common: { - white: '#FBFCFD', - black: '#0E0E10', + white: '#FFF', + black: '#000', }, text: { primary: getCssVarColor('palette-neutral-800'), @@ -216,8 +217,8 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { icon: getCssVarColor('palette-neutral-500'), }, background: { - body: getCssVarColor('palette-neutral-50'), - surface: getCssVarColor('palette-common-white'), + body: getCssVarColor('palette-common-white'), + surface: getCssVarColor('palette-neutral-50'), popup: getCssVarColor('palette-common-white'), level1: getCssVarColor('palette-neutral-100'), level2: getCssVarColor('palette-neutral-200'), @@ -231,7 +232,7 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { divider: `rgba(${getCssVar( 'palette-neutral-mainChannel', colorChannel(defaultColors.neutral[500]), // should be the same index as in `attachColorChannels` - )} / 0.3)`, + )} / 0.2)`, focusVisible: getCssVarColor('palette-primary-500'), }, shadowRing: '0 0 #000', @@ -248,6 +249,8 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { neutral: { ...defaultColors.neutral, ...createDarkModeVariantVariables('neutral'), + plainColor: getCssVarColor('palette-neutral-300'), + plainHoverColor: getCssVarColor(`palette-neutral-300`), }, danger: { ...defaultColors.danger, @@ -262,8 +265,8 @@ export default function extendTheme(themeOptions?: CssVarsThemeOptions): Theme { ...createDarkModeVariantVariables('warning'), }, common: { - white: '#FBFCFD', - black: '#0E0E10', + white: '#FFF', + black: '#000', }, text: { primary: getCssVarColor('palette-neutral-100'), diff --git a/packages/typescript-to-proptypes/package.json b/packages/typescript-to-proptypes/package.json index 909e175cb86e85..1f9d3b5b7d6e4c 100644 --- a/packages/typescript-to-proptypes/package.json +++ b/packages/typescript-to-proptypes/package.json @@ -41,7 +41,7 @@ "@types/node": "^18.17.14", "@types/prettier": "^2.7.3", "@types/react": "^18.2.21", - "@types/uuid": "^9.0.2", + "@types/uuid": "^9.0.3", "chai": "^4.3.7", "fast-glob": "^3.3.1", "prettier": "^2.8.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d02220de945e9b..ac1b6d25bd41a6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -18,9 +18,9 @@ overrides: '@babel/preset-react': ^7.22.5 '@babel/preset-typescript': ^7.22.5 '@babel/runtime': ^7.22.10 - '@definitelytyped/header-parser': ^0.0.169 - '@definitelytyped/typescript-versions': ^0.0.169 - '@definitelytyped/utils': ^0.0.169 + '@definitelytyped/header-parser': ^0.0.176 + '@definitelytyped/typescript-versions': ^0.0.176 + '@definitelytyped/utils': ^0.0.176 '@types/node': ^18.17.14 '@types/react': 18.2.21 '@types/react-dom': 18.2.7 @@ -293,7 +293,7 @@ importers: version: 4.1.0 postcss-styled-syntax: specifier: ^0.4.0 - version: 0.4.0(postcss@8.4.28)(typescript@5.1.6) + version: 0.4.0(postcss@8.4.29)(typescript@5.1.6) prettier: specifier: ^2.8.8 version: 2.8.8 @@ -511,26 +511,26 @@ importers: specifier: workspace:^ version: link:../packages/mui-utils '@mui/x-charts': - specifier: ^6.0.0-alpha.8 + specifier: ^6.0.0-alpha.9 version: 6.0.0-alpha.9(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) '@mui/x-data-grid': - specifier: 6.12.0 - version: 6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) + specifier: 6.12.1 + version: 6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) '@mui/x-data-grid-generator': - specifier: 6.12.0 - version: 6.12.0(@mui/icons-material@packages+mui-icons-material)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) + specifier: 6.12.1 + version: 6.12.1(@mui/icons-material@packages+mui-icons-material)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) '@mui/x-data-grid-premium': - specifier: 6.12.0 - version: 6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) + specifier: 6.12.1 + version: 6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) '@mui/x-data-grid-pro': - specifier: 6.12.0 - version: 6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) + specifier: 6.12.1 + version: 6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) '@mui/x-date-pickers': - specifier: 6.12.0 - version: 6.12.0(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0) + specifier: 6.12.1 + version: 6.12.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0) '@mui/x-date-pickers-pro': - specifier: 6.12.0 - version: 6.12.0(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0) + specifier: 6.12.1 + version: 6.12.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0) '@mui/x-license-pro': specifier: 6.10.2 version: 6.10.2(react@18.2.0) @@ -572,7 +572,7 @@ importers: version: 5.1.26 autoprefixer: specifier: ^10.4.15 - version: 10.4.15(postcss@8.4.28) + version: 10.4.15(postcss@8.4.29) autosuggest-highlight: specifier: ^3.3.4 version: 3.3.4 @@ -661,8 +661,8 @@ importers: specifier: ^0.2.0 version: 0.2.0 postcss: - specifier: ^8.4.28 - version: 8.4.28 + specifier: ^8.4.29 + version: 8.4.29 prop-types: specifier: ^15.8.1 version: 15.8.1 @@ -951,8 +951,8 @@ importers: specifier: ^7.22.10 version: 7.22.10 '@floating-ui/react-dom': - specifier: ^2.0.1 - version: 2.0.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^2.0.2 + version: 2.0.2(react-dom@18.2.0)(react@18.2.0) '@mui/types': specifier: workspace:^ version: link:../mui-types @@ -1924,8 +1924,8 @@ importers: specifier: 18.2.21 version: 18.2.21 '@types/uuid': - specifier: ^9.0.2 - version: 9.0.2 + specifier: ^9.0.3 + version: 9.0.3 chai: specifier: ^4.3.7 version: 4.3.8 @@ -3908,22 +3908,22 @@ packages: postcss-selector-parser: 6.0.13 dev: true - /@definitelytyped/header-parser@0.0.169: - resolution: {integrity: sha512-6aI0ETYbHRuf5GR/WMq+emPsimC8cOLig6Ncq+JcBLM3cZqEpZV2HQkxEzL5grBLi5ClCX6GtyUrPIpEZsL2UA==} + /@definitelytyped/header-parser@0.0.176: + resolution: {integrity: sha512-HYxONYeC2CesHiL/JD26eCloPHexsNkyzFfqCCyXoNBcr2+0dgGhDoJ6gjNgwYeKo3NZVfCR6ZYrEzH/MWjTBA==} dependencies: - '@definitelytyped/typescript-versions': 0.0.169 + '@definitelytyped/typescript-versions': 0.0.176 '@types/parsimmon': 1.10.6 parsimmon: 1.18.1 dev: true - /@definitelytyped/typescript-versions@0.0.169: - resolution: {integrity: sha512-DFpgq0aDTIuGG2mkvm5uq0Fhzr5ysIiNd6CeqQRXP+596LgK06pdaScWCG7eEFfWWBsS2Y9amGVV6sXTJ1Nl/w==} + /@definitelytyped/typescript-versions@0.0.176: + resolution: {integrity: sha512-1iwxOE5w+gFF+GXTjGyz3nMZXGmqcjEEGJg3NjnB59hYQ5qANogOkS98V+XdRU9LMTvOTtfVSDFEhr32TmMDKA==} dev: true - /@definitelytyped/utils@0.0.169: - resolution: {integrity: sha512-iua4RM/3Dc4aNKAa138r1xpKB3iE6RPV4uIfVu19aiwNtJnlSrjHMvFqOQvqU5Sv78TraIZ/ScKwSJQYnNlrtA==} + /@definitelytyped/utils@0.0.176: + resolution: {integrity: sha512-NN07S3EDPIkzkSDWo5s+wc2MkhmT72O/rkAnK+ezi54wuur4QpyoJxjN2yy+4wdNAFPECFddnlUE08u1j9Ffaw==} dependencies: - '@definitelytyped/typescript-versions': 0.0.169 + '@definitelytyped/typescript-versions': 0.0.176 '@qiwi/npm-registry-client': 8.9.1 '@types/node': 18.17.14 charm: 1.0.2 @@ -4200,8 +4200,8 @@ packages: '@floating-ui/utils': 0.1.1 dev: false - /@floating-ui/react-dom@2.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-rZtAmSht4Lry6gdhAJDrCp/6rKN7++JnL1/Anbr/DdeyYXQPxvg/ivrbYvJulbRf4vL8b212suwMM2lxbv+RQA==} + /@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -4579,7 +4579,32 @@ packages: '@babel/runtime': 7.22.10 '@emotion/is-prop-valid': 1.2.1 '@mui/types': 7.2.4(@types/react@18.2.21) - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) + '@popperjs/core': 2.11.8 + '@types/react': 18.2.21 + clsx: 2.0.0 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-is: 18.2.0 + dev: false + + /@mui/base@5.0.0-beta.14(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Je/9JzzYObsuLCIClgE8XvXNFb55IEz8n2NtStUfASfNiVrwiR8t6VVFFuhofehkyTIN34tq1qbBaOjCnOovBw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.2.21 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.22.10 + '@emotion/is-prop-valid': 1.2.1 + '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.21) + '@mui/utils': 5.14.8(react@18.2.0) '@popperjs/core': 2.11.8 '@types/react': 18.2.21 clsx: 2.0.0 @@ -4617,7 +4642,7 @@ packages: '@mui/core-downloads-tracker': 5.14.5 '@mui/system': 5.14.5(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(react@18.2.0) '@mui/types': 7.2.4(@types/react@18.2.21) - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) '@types/react': 18.2.21 '@types/react-transition-group': 4.4.6 clsx: 2.0.0 @@ -4640,7 +4665,7 @@ packages: optional: true dependencies: '@babel/runtime': 7.22.10 - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) '@types/react': 18.2.21 prop-types: 15.8.1 react: 18.2.0 @@ -4690,7 +4715,7 @@ packages: '@mui/private-theming': 5.14.5(@types/react@18.2.21)(react@18.2.0) '@mui/styled-engine': 5.13.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0) '@mui/types': 7.2.4(@types/react@18.2.21) - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) '@types/react': 18.2.21 clsx: 2.0.0 csstype: 3.1.2 @@ -4709,8 +4734,8 @@ packages: '@types/react': 18.2.21 dev: false - /@mui/utils@5.14.5(react@18.2.0): - resolution: {integrity: sha512-6Hzw63VR9C5xYv+CbjndoRLU6Gntal8rJ5W+GUzkyHrGWIyYPWZPa6AevnyGioySNETATe1H9oXS8f/7qgIHJA==} + /@mui/utils@5.14.8(react@18.2.0): + resolution: {integrity: sha512-1Ls2FfyY2yVSz9NEqedh3J8JAbbZAnUWkOWLE2f4/Hc4T5UWHMfzBLLrCqExfqyfyU+uXYJPGeNIsky6f8Gh5Q==} engines: {node: '>=12.0.0'} peerDependencies: react: ^17.0.0 || ^18.0.0 @@ -4753,8 +4778,8 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@mui/x-data-grid-generator@6.12.0(@mui/icons-material@packages+mui-icons-material)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-eIoTt4qixLPHdwCymQN8ym6UlHaibY4xawttqrDraOfKM/yDj20YLVq/H40YbCQjeFDrLSZSjLLmabWa0R2AAA==} + /@mui/x-data-grid-generator@6.12.1(@mui/icons-material@packages+mui-icons-material)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Iqy5ACWCb19M0qGdO4IQPPvzSmYakc+ENm3a01H678hTXXOnkfBB94CwJ8YT/izvXBIXBfg50nkg+ZDUG3x5mw==} engines: {node: '>=14.0.0'} peerDependencies: '@mui/icons-material': ^5.4.1 @@ -4762,10 +4787,10 @@ packages: react: ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.22.10 - '@mui/base': 5.0.0-beta.11(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) + '@mui/base': 5.0.0-beta.14(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) '@mui/icons-material': link:packages/mui-icons-material '@mui/material': link:packages/mui-material - '@mui/x-data-grid-premium': 6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) + '@mui/x-data-grid-premium': 6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) chance: 1.1.11 clsx: 2.0.0 lru-cache: 7.18.3 @@ -4776,8 +4801,8 @@ packages: - react-dom dev: false - /@mui/x-data-grid-premium@6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-3Xw37gnaZ3Rr9IWM3kTaHYvY8dvpj1lFWgdb6nr+NM1IXav1JakF4pwAlrhaWNdV89IQYeM7gqED7fGShnUYTQ==} + /@mui/x-data-grid-premium@6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-hiFMrbDZFfOS0fyfPyFqaaoqmcnQnyv75RAI3Fx0kQ9H8fr11qb03uoU0B2D5djIWgaz5ZkL8XFWvN4moeYQuQ==} engines: {node: '>=14.0.0'} peerDependencies: '@mui/material': ^5.4.1 @@ -4788,9 +4813,9 @@ packages: '@babel/runtime': 7.22.10 '@mui/material': link:packages/mui-material '@mui/system': link:packages/mui-system - '@mui/utils': 5.14.5(react@18.2.0) - '@mui/x-data-grid': 6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) - '@mui/x-data-grid-pro': 6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) + '@mui/x-data-grid': 6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) + '@mui/x-data-grid-pro': 6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) '@mui/x-license-pro': 6.10.2(react@18.2.0) '@types/format-util': 1.0.2 clsx: 2.0.0 @@ -4801,8 +4826,8 @@ packages: reselect: 4.1.8 dev: false - /@mui/x-data-grid-pro@6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-6RQCUV0djlYXYVh8PQNVuPyL9KDEHfnBvVn+DNx4/HCoPsYlpbnNTTh8o12ksGSHAws7oPQ3w7lSpHYtDQbEwg==} + /@mui/x-data-grid-pro@6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-41rJbZy9+aE7uZLbdMmoERHIjMQ0W8cEq6WO9fcx3yjOzDPpIUvBbVglUs4oWrab/yYtfpwvJrScJBbD4HSV+g==} engines: {node: '>=14.0.0'} peerDependencies: '@mui/material': ^5.4.1 @@ -4813,8 +4838,8 @@ packages: '@babel/runtime': 7.22.10 '@mui/material': link:packages/mui-material '@mui/system': link:packages/mui-system - '@mui/utils': 5.14.5(react@18.2.0) - '@mui/x-data-grid': 6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) + '@mui/x-data-grid': 6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0) '@mui/x-license-pro': 6.10.2(react@18.2.0) '@types/format-util': 1.0.2 clsx: 2.0.0 @@ -4824,8 +4849,8 @@ packages: reselect: 4.1.8 dev: false - /@mui/x-data-grid@6.12.0(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-ZuQ8Uq/dF6gjrE/qU6VvP3tgy9n78DdCMD6hbXy/uDIoddJ4J8hSn9S6flnFnFQbRZzF/Q/pPWXZTR4oeg8NQg==} + /@mui/x-data-grid@6.12.1(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-lSY1dFBv6yh2ffkkWeMM9c0ajpwIWn/da/ec0kY8OfLa79Hboh53mN09nopylZO8MHJGfDlPvduwuWcgWs+zFw==} engines: {node: '>=14.0.0'} peerDependencies: '@mui/material': ^5.4.1 @@ -4836,7 +4861,7 @@ packages: '@babel/runtime': 7.22.10 '@mui/material': link:packages/mui-material '@mui/system': link:packages/mui-system - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) clsx: 2.0.0 prop-types: 15.8.1 react: 18.2.0 @@ -4844,8 +4869,8 @@ packages: reselect: 4.1.8 dev: false - /@mui/x-date-pickers-pro@6.12.0(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-zPI4K2XtyyoOcM+Fk9xWqubXAFcobdtElCLMDPKTCnu2Gc0OZZTe4bAAr0kLpI4Bcpf50TFjONnbgi3j/F8FTw==} + /@mui/x-date-pickers-pro@6.12.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-gD5rOBL4L8GIpGyGOqeDf/ibrzBj5NOEQnSkpcB5BErqZ6+uuNP9nkwBvCMxk1X6I6LiikpujvYr11jMhoVg3Q==} engines: {node: '>=14.0.0'} peerDependencies: '@emotion/react': ^11.9.0 @@ -4888,8 +4913,8 @@ packages: '@mui/base': link:packages/mui-base '@mui/material': link:packages/mui-material '@mui/system': link:packages/mui-system - '@mui/utils': 5.14.5(react@18.2.0) - '@mui/x-date-pickers': 6.12.0(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) + '@mui/x-date-pickers': 6.12.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0) '@mui/x-license-pro': 6.10.2(react@18.2.0) clsx: 2.0.0 date-fns: 2.30.0 @@ -4900,8 +4925,8 @@ packages: react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) dev: false - /@mui/x-date-pickers@6.12.0(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-lEfdPKdr2o2jUvEviYB/xaYaHJ3Gf9u/AvU3eCX6R0mzIpi1h1SsmrFOTcBIFkwz1iekUNIdZjfrkKmLX+n6dA==} + /@mui/x-date-pickers@6.12.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@packages+mui-base)(@mui/material@packages+mui-material)(@mui/system@packages+mui-system)(date-fns-jalali@2.21.3-1)(date-fns@2.30.0)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-euMM7KNbqoOgIdf5P8T8KG74qqbpDvLp5k8yEVMx1zHeSiSZGofKpQrDFAMxjJRnJ0x1aJLIhFEc46O70fSAlA==} engines: {node: '>=14.0.0'} peerDependencies: '@emotion/react': ^11.9.0 @@ -4944,7 +4969,7 @@ packages: '@mui/base': link:packages/mui-base '@mui/material': link:packages/mui-material '@mui/system': link:packages/mui-system - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) '@types/react-transition-group': 4.4.6 clsx: 2.0.0 date-fns: 2.30.0 @@ -4962,7 +4987,7 @@ packages: react: ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.22.10 - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) react: 18.2.0 dev: false @@ -4984,7 +5009,7 @@ packages: '@mui/base': link:packages/mui-base '@mui/material': link:packages/mui-material '@mui/system': link:packages/mui-system - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) '@types/react-transition-group': 4.4.6 clsx: 2.0.0 prop-types: 15.8.1 @@ -7023,8 +7048,8 @@ packages: resolution: {integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==} dev: false - /@types/uuid@9.0.2: - resolution: {integrity: sha512-kNnC1GFBLuhImSnV7w4njQkUiJi0ZXUycu1rUaouPqiKlXkh77JKgdRnTAp1x5eBwcIwbtI+3otwzuIDEuDoxQ==} + /@types/uuid@9.0.3: + resolution: {integrity: sha512-taHQQH/3ZyI3zP8M/puluDEIEvtQHVYcC6y3N8ijFtAd28+Ey/G4sg1u2gB01S8MwybLOKAp9/yCMu/uR5l3Ug==} dev: true /@types/ws@7.4.7: @@ -8011,7 +8036,7 @@ packages: hasBin: true dev: false - /autoprefixer@10.4.15(postcss@8.4.28): + /autoprefixer@10.4.15(postcss@8.4.29): resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -8023,7 +8048,7 @@ packages: fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.28 + postcss: 8.4.29 postcss-value-parser: 4.2.0 dev: false @@ -10314,7 +10339,7 @@ packages: peerDependencies: typescript: '*' dependencies: - '@definitelytyped/header-parser': 0.0.169 + '@definitelytyped/header-parser': 0.0.176 command-exists: 1.2.9 rimraf: 3.0.2 semver: 6.3.1 @@ -10330,9 +10355,9 @@ packages: peerDependencies: typescript: '>= 3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev || >= 3.8.0-dev || >= 3.9.0-dev || >= 4.0.0-dev' dependencies: - '@definitelytyped/header-parser': 0.0.169 - '@definitelytyped/typescript-versions': 0.0.169 - '@definitelytyped/utils': 0.0.169 + '@definitelytyped/header-parser': 0.0.176 + '@definitelytyped/typescript-versions': 0.0.176 + '@definitelytyped/utils': 0.0.176 dts-critic: 3.3.11(typescript@5.1.6) fs-extra: 6.0.1 json-stable-stringify: 1.0.1 @@ -16395,29 +16420,29 @@ packages: engines: {node: '>=0.10.0'} dev: false - /postcss-import@15.1.0(postcss@8.4.28): + /postcss-import@15.1.0(postcss@8.4.29): resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.28 + postcss: 8.4.29 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.4 dev: true - /postcss-js@4.0.1(postcss@8.4.28): + /postcss-js@4.0.1(postcss@8.4.29): resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.4.21 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.28 + postcss: 8.4.29 dev: true - /postcss-load-config@4.0.1(postcss@8.4.28)(ts-node@10.9.1): + /postcss-load-config@4.0.1(postcss@8.4.29)(ts-node@10.9.1): resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} engines: {node: '>= 14'} peerDependencies: @@ -16430,18 +16455,18 @@ packages: optional: true dependencies: lilconfig: 2.1.0 - postcss: 8.4.28 + postcss: 8.4.29 ts-node: 10.9.1(@types/node@18.17.14)(typescript@5.1.6) yaml: 2.3.1 dev: true - /postcss-nested@6.0.1(postcss@8.4.28): + /postcss-nested@6.0.1(postcss@8.4.29): resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.28 + postcss: 8.4.29 postcss-selector-parser: 6.0.13 dev: true @@ -16449,13 +16474,13 @@ packages: resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} dev: true - /postcss-safe-parser@6.0.0(postcss@8.4.28): + /postcss-safe-parser@6.0.0(postcss@8.4.29): resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.28 + postcss: 8.4.29 dev: true /postcss-selector-parser@6.0.13: @@ -16466,14 +16491,14 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-styled-syntax@0.4.0(postcss@8.4.28)(typescript@5.1.6): + /postcss-styled-syntax@0.4.0(postcss@8.4.29)(typescript@5.1.6): resolution: {integrity: sha512-LvG++K8LtIyX1Q1mNuZVQYmBo+SCwn90cEkMigo4/I0QwXrEiYt8nPeJ5rrI5Uuh+5w7hRfPyJKlvQdhVZBhUg==} peerDependencies: postcss: ^8.4.21 dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) estree-walker: 2.0.2 - postcss: 8.4.28 + postcss: 8.4.29 transitivePeerDependencies: - supports-color - typescript @@ -16502,8 +16527,8 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postcss@8.4.28: - resolution: {integrity: sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==} + /postcss@8.4.29: + resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 @@ -18808,7 +18833,7 @@ packages: '@types/stylis': 4.2.0 css-to-react-native: 3.2.0 csstype: 3.1.2 - postcss: 8.4.28 + postcss: 8.4.29 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) shallowequal: 1.1.0 @@ -18916,9 +18941,9 @@ packages: micromatch: 4.0.5 normalize-path: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.28 + postcss: 8.4.29 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0(postcss@8.4.28) + postcss-safe-parser: 6.0.0(postcss@8.4.29) postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 @@ -19068,11 +19093,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.28 - postcss-import: 15.1.0(postcss@8.4.28) - postcss-js: 4.0.1(postcss@8.4.28) - postcss-load-config: 4.0.1(postcss@8.4.28)(ts-node@10.9.1) - postcss-nested: 6.0.1(postcss@8.4.28) + postcss: 8.4.29 + postcss-import: 15.1.0(postcss@8.4.29) + postcss-js: 4.0.1(postcss@8.4.29) + postcss-load-config: 4.0.1(postcss@8.4.29)(ts-node@10.9.1) + postcss-nested: 6.0.1(postcss@8.4.29) postcss-selector-parser: 6.0.13 resolve: 1.22.4 sucrase: 3.34.0 @@ -20604,7 +20629,7 @@ packages: '@mui/base': link:packages/mui-base '@mui/material': link:packages/mui-material '@mui/system': link:packages/mui-system - '@mui/utils': 5.14.5(react@18.2.0) + '@mui/utils': 5.14.8(react@18.2.0) '@types/react-transition-group': 4.4.6 clsx: 1.2.1 prop-types: 15.8.1