diff --git a/packages/plugins/ui-theme/package.json b/packages/plugins/ui-theme/package.json index 178c086de..f5f2ce5cd 100644 --- a/packages/plugins/ui-theme/package.json +++ b/packages/plugins/ui-theme/package.json @@ -18,9 +18,9 @@ "@emotion/jest": "11.10.5", "@emotion/react": "11.10.6", "@emotion/styled": "11.10.6", - "@mui/icons-material": "5.15.3", - "@mui/material": "5.15.3", - "@mui/styles": "5.15.3", + "@mui/icons-material": "5.15.4", + "@mui/material": "5.15.4", + "@mui/styles": "5.15.4", "@rematch/core": "2.2.0", "@rematch/loading": "2.1.2", "@rematch/persist": "2.1.2", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index fde7bd2a5..901e3dde5 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -24,10 +24,10 @@ "@emotion/styled": "^11.10.6", "@fontsource/material-icons": "^4.5.4", "@fontsource/roboto": "^4.5.8", - "@mui/icons-material": "5.15.3", - "@mui/material": "5.15.3", - "@mui/styles": "5.15.3", - "@mui/system": "5.15.3", + "@mui/icons-material": "5.15.4", + "@mui/material": "5.15.4", + "@mui/styles": "5.15.4", + "@mui/system": "5.15.4", "@rematch/core": "2.2.0", "@rematch/loading": "2.1.2", "@rematch/persist": "2.1.2", diff --git a/packages/ui-components/src/components/Help/Help.test.tsx b/packages/ui-components/src/components/Help/Help.test.tsx index d2de83ed5..5b17e7831 100644 --- a/packages/ui-components/src/components/Help/Help.test.tsx +++ b/packages/ui-components/src/components/Help/Help.test.tsx @@ -1,11 +1,18 @@ import React from 'react'; -import { render } from '../../test/test-react-testing-library'; +import { render, screen } from '../../test/test-react-testing-library'; import Help from './Help'; describe(' component', () => { test('should load the component in default state', () => { - const { container } = render(); - expect(container.firstChild).toMatchSnapshot(); + render(); + expect(screen.getByText('help.title')).toBeInTheDocument(); + expect(screen.getByText('help.sub-title')).toBeInTheDocument(); + expect(screen.getByText('help.first-step')).toBeInTheDocument(); + expect(screen.getByText('help.first-step-command-line')).toBeInTheDocument(); + expect(screen.getByText('help.second-step')).toBeInTheDocument(); + expect(screen.getByText('help.second-step-command-line')).toBeInTheDocument(); + expect(screen.getByText('help.third-step')).toBeInTheDocument(); + expect(screen.getByText('button.learn-more')).toBeInTheDocument(); }); }); diff --git a/packages/ui-components/src/components/Help/__snapshots__/Help.test.tsx.snap b/packages/ui-components/src/components/Help/__snapshots__/Help.test.tsx.snap deleted file mode 100644 index 89abfd106..000000000 --- a/packages/ui-components/src/components/Help/__snapshots__/Help.test.tsx.snap +++ /dev/null @@ -1,395 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[` component should load the component in default state 1`] = ` -.emotion-1 { - background-color: #fff; - color: rgba(0, 0, 0, 0.87); - -webkit-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - border-radius: 4px; - box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12); - overflow: hidden; - max-width: 600px; - margin: auto; -} - -.emotion-2 { - padding: 16px; -} - -.emotion-2:last-child { - padding-bottom: 24px; -} - -.emotion-3 { - margin: 0; - font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif; - font-weight: 400; - font-size: 1.5rem; - line-height: 1.334; - margin-bottom: 0.35em; -} - -.emotion-4 { - margin: 0; - font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif; - font-weight: 500; - font-size: 1.25rem; - line-height: 1.6; - margin-bottom: 0.35em; - color: rgba(0, 0, 0, 0.6); - margin-bottom: 8px; -} - -.emotion-5 { - margin: 0; - font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif; - font-weight: 400; - font-size: 1rem; - line-height: 1.5; -} - -.emotion-6 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - justify-content: space-between; -} - -.emotion-8 { - display: inline-block; - overflow: hidden; - text-overflow: ellipsis; - height: auto; - white-space: break-spaces; - font-size: 14px; -} - -.emotion-10 { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - -webkit-justify-content: center; - justify-content: center; - position: relative; - box-sizing: border-box; - -webkit-tap-highlight-color: transparent; - background-color: transparent; - outline: 0; - border: 0; - margin: 0; - border-radius: 0; - padding: 0; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - -moz-appearance: none; - -webkit-appearance: none; - -webkit-text-decoration: none; - text-decoration: none; - color: inherit; - text-align: center; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - font-size: 1.5rem; - padding: 8px; - border-radius: 50%; - overflow: visible; - color: rgba(0, 0, 0, 0.54); - -webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - padding: 5px; - font-size: 1.125rem; -} - -.emotion-10::-moz-focus-inner { - border-style: none; -} - -.emotion-10.Mui-disabled { - pointer-events: none; - cursor: default; -} - -@media print { - .emotion-10 { - -webkit-print-color-adjust: exact; - color-adjust: exact; - } -} - -.emotion-10:hover { - background-color: rgba(0, 0, 0, 0.04); -} - -@media (hover: none) { - .emotion-10:hover { - background-color: transparent; - } -} - -.emotion-10.Mui-disabled { - background-color: transparent; - color: rgba(0, 0, 0, 0.26); -} - -.emotion-11 { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - width: 1em; - height: 1em; - display: inline-block; - fill: currentColor; - -webkit-flex-shrink: 0; - -ms-flex-negative: 0; - flex-shrink: 0; - -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - font-size: 1.25rem; -} - -.emotion-12 { - overflow: hidden; - pointer-events: none; - position: absolute; - z-index: 0; - top: 0; - right: 0; - bottom: 0; - left: 0; - border-radius: inherit; -} - -.emotion-21 { - margin: 0; - font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif; - font-weight: 400; - font-size: 0.875rem; - line-height: 1.43; -} - -.emotion-22 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 8px; -} - -.emotion-22>:not(style)~:not(style) { - margin-left: 8px; -} - -.emotion-23 { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - -webkit-justify-content: center; - justify-content: center; - position: relative; - box-sizing: border-box; - -webkit-tap-highlight-color: transparent; - background-color: transparent; - outline: 0; - border: 0; - margin: 0; - border-radius: 0; - padding: 0; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - -moz-appearance: none; - -webkit-appearance: none; - -webkit-text-decoration: none; - text-decoration: none; - color: inherit; - font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif; - font-weight: 500; - font-size: 0.8125rem; - line-height: 1.75; - text-transform: uppercase; - min-width: 64px; - padding: 4px 5px; - border-radius: 4px; - -webkit-transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - color: #4b5e40; -} - -.emotion-23::-moz-focus-inner { - border-style: none; -} - -.emotion-23.Mui-disabled { - pointer-events: none; - cursor: default; -} - -@media print { - .emotion-23 { - -webkit-print-color-adjust: exact; - color-adjust: exact; - } -} - -.emotion-23:hover { - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgba(75, 94, 64, 0.04); -} - -@media (hover: none) { - .emotion-23:hover { - background-color: transparent; - } -} - -.emotion-23.Mui-disabled { - color: rgba(0, 0, 0, 0.26); -} - -
-
-
- help.title -
-
- help.sub-title -
-

- help.first-step -

-
- - help.first-step-command-line - - -
-

- help.second-step -

-
- - help.second-step-command-line - - -
-

- help.third-step -

-
- -
-`; diff --git a/packages/ui-components/src/components/Search/Search.test.tsx b/packages/ui-components/src/components/Search/Search.test.tsx index 8e10c8871..fa4aef9ae 100644 --- a/packages/ui-components/src/components/Search/Search.test.tsx +++ b/packages/ui-components/src/components/Search/Search.test.tsx @@ -40,8 +40,8 @@ describe(' component', () => { }); test('should load the component in default state', () => { - const { container } = renderWithStore(, store); - expect(container.firstChild).toMatchSnapshot(); + renderWithStore(, store); + expect(screen.getByPlaceholderText('search.packages')).toBeInTheDocument(); }); test('handleSearch: when user type package name in search component, show suggestions', async () => { diff --git a/packages/ui-components/src/components/Search/__snapshots__/Search.test.tsx.snap b/packages/ui-components/src/components/Search/__snapshots__/Search.test.tsx.snap deleted file mode 100644 index c08ed312b..000000000 --- a/packages/ui-components/src/components/Search/__snapshots__/Search.test.tsx.snap +++ /dev/null @@ -1,473 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[` component should load the component in default state 1`] = ` -.emotion-0 { - width: 100%; - position: relative; - z-index: 1; -} - -.emotion-2 { - width: 100%; -} - -.emotion-2.Mui-focused .MuiAutocomplete-clearIndicator { - visibility: visible; -} - -@media (pointer: fine) { - .emotion-2:hover .MuiAutocomplete-clearIndicator { - visibility: visible; - } -} - -.emotion-2 .MuiAutocomplete-tag { - margin: 3px; - max-width: calc(100% - 6px); -} - -.emotion-2 .MuiAutocomplete-inputRoot { - -webkit-box-flex-wrap: wrap; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.MuiAutocomplete-hasPopupIcon.emotion-2 .MuiAutocomplete-inputRoot, -.MuiAutocomplete-hasClearIcon.emotion-2 .MuiAutocomplete-inputRoot { - padding-right: 30px; -} - -.MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.emotion-2 .MuiAutocomplete-inputRoot { - padding-right: 56px; -} - -.emotion-2 .MuiAutocomplete-inputRoot .MuiAutocomplete-input { - width: 0; - min-width: 30px; -} - -.emotion-2 .MuiInput-root { - padding-bottom: 1px; -} - -.emotion-2 .MuiInput-root .MuiInput-input { - padding: 4px 4px 4px 0px; -} - -.emotion-2 .MuiInput-root.MuiInputBase-sizeSmall .MuiInput-input { - padding: 2px 4px 3px 0; -} - -.emotion-2 .MuiOutlinedInput-root { - padding: 9px; -} - -.MuiAutocomplete-hasPopupIcon.emotion-2 .MuiOutlinedInput-root, -.MuiAutocomplete-hasClearIcon.emotion-2 .MuiOutlinedInput-root { - padding-right: 39px; -} - -.MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.emotion-2 .MuiOutlinedInput-root { - padding-right: 65px; -} - -.emotion-2 .MuiOutlinedInput-root .MuiAutocomplete-input { - padding: 7.5px 4px 7.5px 5px; -} - -.emotion-2 .MuiOutlinedInput-root .MuiAutocomplete-endAdornment { - right: 9px; -} - -.emotion-2 .MuiOutlinedInput-root.MuiInputBase-sizeSmall { - padding-top: 6px; - padding-bottom: 6px; - padding-left: 6px; -} - -.emotion-2 .MuiOutlinedInput-root.MuiInputBase-sizeSmall .MuiAutocomplete-input { - padding: 2.5px 4px 2.5px 8px; -} - -.emotion-2 .MuiFilledInput-root { - padding-top: 19px; - padding-left: 8px; -} - -.MuiAutocomplete-hasPopupIcon.emotion-2 .MuiFilledInput-root, -.MuiAutocomplete-hasClearIcon.emotion-2 .MuiFilledInput-root { - padding-right: 39px; -} - -.MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.emotion-2 .MuiFilledInput-root { - padding-right: 65px; -} - -.emotion-2 .MuiFilledInput-root .MuiFilledInput-input { - padding: 7px 4px; -} - -.emotion-2 .MuiFilledInput-root .MuiAutocomplete-endAdornment { - right: 9px; -} - -.emotion-2 .MuiFilledInput-root.MuiInputBase-sizeSmall { - padding-bottom: 1px; -} - -.emotion-2 .MuiFilledInput-root.MuiInputBase-sizeSmall .MuiFilledInput-input { - padding: 2.5px 4px; -} - -.emotion-2 .MuiInputBase-hiddenLabel { - padding-top: 8px; -} - -.emotion-2 .MuiFilledInput-root.MuiInputBase-hiddenLabel { - padding-top: 0; - padding-bottom: 0; -} - -.emotion-2 .MuiFilledInput-root.MuiInputBase-hiddenLabel .MuiAutocomplete-input { - padding-top: 16px; - padding-bottom: 17px; -} - -.emotion-2 .MuiFilledInput-root.MuiInputBase-hiddenLabel.MuiInputBase-sizeSmall .MuiAutocomplete-input { - padding-top: 8px; - padding-bottom: 9px; -} - -.emotion-2 .MuiAutocomplete-input { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; - text-overflow: ellipsis; - opacity: 1; -} - -.emotion-4 { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - position: relative; - min-width: 0; - padding: 0; - margin: 0; - border: 0; - vertical-align: top; - width: 100%; -} - -.emotion-4 .MuiInputBase-root:before { - content: ''; - border: none; -} - -.emotion-4 .MuiInputBase-root:after { - border-color: #fff; -} - -.emotion-4 .MuiInputBase-root:hover:before { - content: none; -} - -.emotion-4 .MuiInputBase-root:hover:after { - content: none; - -webkit-transform: scaleX(1); - -moz-transform: scaleX(1); - -ms-transform: scaleX(1); - transform: scaleX(1); -} - -@media screen and (min-width: 768px) { - .emotion-4 .MuiInputBase-root:hover:after { - content: ''; - } -} - -@media screen and (min-width: 768px) { - .emotion-4 .MuiInputBase-input { - color: #fff; - } -} - -.emotion-5 { - font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif; - font-weight: 400; - font-size: 1rem; - line-height: 1.4375em; - color: rgba(0, 0, 0, 0.87); - box-sizing: border-box; - position: relative; - cursor: text; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - width: 100%; - position: relative; -} - -.emotion-5.Mui-disabled { - color: rgba(0, 0, 0, 0.38); - cursor: default; -} - -label+.emotion-5 { - margin-top: 16px; -} - -.emotion-5::after { - border-bottom: 2px solid #4b5e40; - left: 0; - bottom: 0; - content: ""; - position: absolute; - right: 0; - -webkit-transform: scaleX(0); - -moz-transform: scaleX(0); - -ms-transform: scaleX(0); - transform: scaleX(0); - -webkit-transition: -webkit-transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms; - transition: transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms; - pointer-events: none; -} - -.emotion-5.Mui-focused:after { - -webkit-transform: scaleX(1) translateX(0); - -moz-transform: scaleX(1) translateX(0); - -ms-transform: scaleX(1) translateX(0); - transform: scaleX(1) translateX(0); -} - -.emotion-5.Mui-error::before, -.emotion-5.Mui-error::after { - border-bottom-color: #d32f2f; -} - -.emotion-5::before { - border-bottom: 1px solid rgba(0, 0, 0, 0.42); - left: 0; - bottom: 0; - content: "\\00a0"; - position: absolute; - right: 0; - -webkit-transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - pointer-events: none; -} - -.emotion-5:hover:not(.Mui-disabled, .Mui-error):before { - border-bottom: 2px solid rgba(0, 0, 0, 0.87); -} - -@media (hover: none) { - .emotion-5:hover:not(.Mui-disabled, .Mui-error):before { - border-bottom: 1px solid rgba(0, 0, 0, 0.42); - } -} - -.emotion-5.Mui-disabled:before { - border-bottom-style: dotted; -} - -.emotion-7 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - height: 0.01em; - max-height: 2em; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - white-space: nowrap; - color: rgba(0, 0, 0, 0.54); - margin-right: 8px; - color: #fff; -} - -.emotion-8 { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - width: 1em; - height: 1em; - display: inline-block; - fill: currentColor; - -webkit-flex-shrink: 0; - -ms-flex-negative: 0; - flex-shrink: 0; - -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - font-size: 1.5rem; -} - -.emotion-9 { - font: inherit; - letter-spacing: inherit; - color: currentColor; - padding: 4px 0 5px; - border: 0; - box-sizing: content-box; - background: none; - height: 1.4375em; - margin: 0; - -webkit-tap-highlight-color: transparent; - display: block; - min-width: 0; - width: 100%; - -webkit-animation-name: mui-auto-fill-cancel; - animation-name: mui-auto-fill-cancel; - -webkit-animation-duration: 10ms; - animation-duration: 10ms; -} - -.emotion-9::-webkit-input-placeholder { - color: currentColor; - opacity: 0.42; - -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; -} - -.emotion-9::-moz-placeholder { - color: currentColor; - opacity: 0.42; - -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; -} - -.emotion-9:-ms-input-placeholder { - color: currentColor; - opacity: 0.42; - -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; -} - -.emotion-9::-ms-input-placeholder { - color: currentColor; - opacity: 0.42; - -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; -} - -.emotion-9:focus { - outline: 0; -} - -.emotion-9:invalid { - box-shadow: none; -} - -.emotion-9::-webkit-search-decoration { - -webkit-appearance: none; -} - -label[data-shrink=false]+.MuiInputBase-formControl .emotion-9::-webkit-input-placeholder { - opacity: 0!important; -} - -label[data-shrink=false]+.MuiInputBase-formControl .emotion-9::-moz-placeholder { - opacity: 0!important; -} - -label[data-shrink=false]+.MuiInputBase-formControl .emotion-9:-ms-input-placeholder { - opacity: 0!important; -} - -label[data-shrink=false]+.MuiInputBase-formControl .emotion-9::-ms-input-placeholder { - opacity: 0!important; -} - -label[data-shrink=false]+.MuiInputBase-formControl .emotion-9:focus::-webkit-input-placeholder { - opacity: 0.42; -} - -label[data-shrink=false]+.MuiInputBase-formControl .emotion-9:focus::-moz-placeholder { - opacity: 0.42; -} - -label[data-shrink=false]+.MuiInputBase-formControl .emotion-9:focus:-ms-input-placeholder { - opacity: 0.42; -} - -label[data-shrink=false]+.MuiInputBase-formControl .emotion-9:focus::-ms-input-placeholder { - opacity: 0.42; -} - -.emotion-9.Mui-disabled { - opacity: 1; - -webkit-text-fill-color: rgba(0, 0, 0, 0.38); -} - -.emotion-9:-webkit-autofill { - -webkit-animation-duration: 5000s; - animation-duration: 5000s; - -webkit-animation-name: mui-auto-fill; - animation-name: mui-auto-fill; -} - -
-
-
-
-
- - ​ - - -
- -
-
-
-
-`; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fe6e21d07..fe149ef38 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1185,14 +1185,14 @@ importers: specifier: 11.10.6 version: 11.10.6(@emotion/react@11.10.6)(@types/react@18.2.47)(react@18.2.0) '@mui/icons-material': - specifier: 5.15.3 - version: 5.15.3(@mui/material@5.15.3)(@types/react@18.2.47)(react@18.2.0) + specifier: 5.15.4 + version: 5.15.4(@mui/material@5.15.4)(@types/react@18.2.47)(react@18.2.0) '@mui/material': - specifier: 5.15.3 - version: 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0) + specifier: 5.15.4 + version: 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0) '@mui/styles': - specifier: 5.15.3 - version: 5.15.3(@types/react@18.2.47)(react@18.2.0) + specifier: 5.15.4 + version: 5.15.4(@types/react@18.2.47)(react@18.2.0) '@rematch/core': specifier: 2.2.0 version: 2.2.0(redux@4.2.1) @@ -1812,17 +1812,17 @@ importers: specifier: ^4.5.8 version: 4.5.8 '@mui/icons-material': - specifier: 5.15.3 - version: 5.15.3(@mui/material@5.15.3)(@types/react@18.2.47)(react@18.2.0) + specifier: 5.15.4 + version: 5.15.4(@mui/material@5.15.4)(@types/react@18.2.47)(react@18.2.0) '@mui/material': - specifier: 5.15.3 - version: 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0) + specifier: 5.15.4 + version: 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0) '@mui/styles': - specifier: 5.15.3 - version: 5.15.3(@types/react@18.2.47)(react@18.2.0) + specifier: 5.15.4 + version: 5.15.4(@types/react@18.2.47)(react@18.2.0) '@mui/system': - specifier: 5.15.3 - version: 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@18.2.0) + specifier: 5.15.4 + version: 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@18.2.0) '@rematch/core': specifier: 2.2.0 version: 2.2.0(redux@4.2.1) @@ -2178,14 +2178,14 @@ importers: specifier: ^1.6.22 version: 1.6.22(react@17.0.2) '@mui/icons-material': - specifier: 5.15.3 - version: 5.15.3(@mui/material@5.15.3)(@types/react@18.2.47)(react@17.0.2) + specifier: 5.15.4 + version: 5.15.4(@mui/material@5.15.4)(@types/react@18.2.47)(react@17.0.2) '@mui/material': - specifier: 5.15.3 - version: 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2) + specifier: 5.15.4 + version: 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2) '@mui/styles': - specifier: 5.15.3 - version: 5.15.3(@types/react@18.2.47)(react@17.0.2) + specifier: 5.15.4 + version: 5.15.4(@types/react@18.2.47)(react@17.0.2) '@orama/orama': specifier: 1.2.4 version: 1.2.4 @@ -6787,7 +6787,7 @@ packages: react-dom: ^16.8.4 || ^17.0.0 dependencies: '@types/history': 4.7.11 - '@types/react': 18.2.46 + '@types/react': 18.2.47 commander: 5.1.0 joi: 17.9.1 react: 17.0.2 @@ -7428,40 +7428,40 @@ packages: dependencies: fast-json-stringify: 5.9.2 - /@floating-ui/core@1.5.0: - resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==} + /@floating-ui/core@1.5.3: + resolution: {integrity: sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==} dependencies: - '@floating-ui/utils': 0.1.6 + '@floating-ui/utils': 0.2.1 - /@floating-ui/dom@1.5.3: - resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==} + /@floating-ui/dom@1.5.4: + resolution: {integrity: sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==} dependencies: - '@floating-ui/core': 1.5.0 - '@floating-ui/utils': 0.1.6 + '@floating-ui/core': 1.5.3 + '@floating-ui/utils': 0.2.1 - /@floating-ui/react-dom@2.0.4(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==} + /@floating-ui/react-dom@2.0.5(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-UsBK30Bg+s6+nsgblXtZmwHhgS2vmbuQK22qgt2pTQM6M3X6H1+cQcLXqgRY3ihVLcZJE6IvqDQozhsnIVqK/Q==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@floating-ui/dom': 1.5.3 + '@floating-ui/dom': 1.5.4 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) dev: false - /@floating-ui/react-dom@2.0.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==} + /@floating-ui/react-dom@2.0.5(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-UsBK30Bg+s6+nsgblXtZmwHhgS2vmbuQK22qgt2pTQM6M3X6H1+cQcLXqgRY3ihVLcZJE6IvqDQozhsnIVqK/Q==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@floating-ui/dom': 1.5.3 + '@floating-ui/dom': 1.5.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@floating-ui/utils@0.1.6: - resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==} + /@floating-ui/utils@0.2.1: + resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} /@fontsource/material-icons@4.5.4: resolution: {integrity: sha512-YGmXkkEdu6EIgpFKNmB/nIXzZocwSmbI01Ninpmml8x8BT0M6RR++V1KqOfpzZ6Cw/FQ2/KYonQ3x4IY/4VRRA==} @@ -7957,8 +7957,8 @@ packages: - supports-color dev: true - /@mui/base@5.0.0-beta.30(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-dc38W4W3K42atE9nSaOeoJ7/x9wGIfawdwC/UmMxMLlZ1iSsITQ8dQJaTATCbn98YvYPINK/EH541YA5enQIPQ==} + /@mui/base@5.0.0-beta.31(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-+uNbP3OHJuZVI00WyMg7xfLZotaEY7LgvYXDfONVJbrS+K9wyjCIPNfjy8r9XJn4fbHo/5ibiZqjWnU9LMNv+A==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -7969,19 +7969,19 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.8 - '@floating-ui/react-dom': 2.0.4(react-dom@17.0.2)(react@17.0.2) - '@mui/types': 7.2.12(@types/react@18.2.47) - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@17.0.2) + '@floating-ui/react-dom': 2.0.5(react-dom@17.0.2)(react@17.0.2) + '@mui/types': 7.2.13(@types/react@18.2.47) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@17.0.2) '@popperjs/core': 2.11.8 '@types/react': 18.2.47 - clsx: 2.0.0 + clsx: 2.1.0 prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) dev: false - /@mui/base@5.0.0-beta.30(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-dc38W4W3K42atE9nSaOeoJ7/x9wGIfawdwC/UmMxMLlZ1iSsITQ8dQJaTATCbn98YvYPINK/EH541YA5enQIPQ==} + /@mui/base@5.0.0-beta.31(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-+uNbP3OHJuZVI00WyMg7xfLZotaEY7LgvYXDfONVJbrS+K9wyjCIPNfjy8r9XJn4fbHo/5ibiZqjWnU9LMNv+A==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -7992,21 +7992,21 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.8 - '@floating-ui/react-dom': 2.0.4(react-dom@18.2.0)(react@18.2.0) - '@mui/types': 7.2.12(@types/react@18.2.47) - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@18.2.0) + '@floating-ui/react-dom': 2.0.5(react-dom@18.2.0)(react@18.2.0) + '@mui/types': 7.2.13(@types/react@18.2.47) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@18.2.0) '@popperjs/core': 2.11.8 '@types/react': 18.2.47 - clsx: 2.0.0 + clsx: 2.1.0 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@mui/core-downloads-tracker@5.15.3: - resolution: {integrity: sha512-sWeihiVyxdJjpLkp8SHkTy9kt2M/o11M60G1MzwljGL2BXdM3Ktzqv5QaQHdi00y7Y1ulvtI3GOSxP2xU8mQJw==} + /@mui/core-downloads-tracker@5.15.4: + resolution: {integrity: sha512-0OZN9O6hAtBpx70mMNFOPaAIol/ytwZYPY+z7Rf9dK3+1Xlzwvj5/IeShJKvtp76S1qJyhPuvZg0+BGqQaUnUw==} - /@mui/icons-material@5.15.3(@mui/material@5.15.3)(@types/react@18.2.47)(react@17.0.2): - resolution: {integrity: sha512-7LEs8AnO2Se/XYH+CcJndRsGAE+M8KAExiiQHf0V11poqmPVGcbbY82Ry2IUYf9+rOilCVnWI18ErghZ625BPQ==} + /@mui/icons-material@5.15.4(@mui/material@5.15.4)(@types/react@18.2.47)(react@17.0.2): + resolution: {integrity: sha512-q/Yk7aokN8qGMpR7bwoDpBSeaNe6Bv7vaY9yHYodP37c64TM6ime05ueb/wgksOVszrKkNXC67E/XYbRWOoUFA==} engines: {node: '>=12.0.0'} peerDependencies: '@mui/material': ^5.0.0 @@ -8016,14 +8016,14 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.7 - '@mui/material': 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2) + '@babel/runtime': 7.23.8 + '@mui/material': 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2) '@types/react': 18.2.47 react: 17.0.2 dev: false - /@mui/icons-material@5.15.3(@mui/material@5.15.3)(@types/react@18.2.47)(react@18.2.0): - resolution: {integrity: sha512-7LEs8AnO2Se/XYH+CcJndRsGAE+M8KAExiiQHf0V11poqmPVGcbbY82Ry2IUYf9+rOilCVnWI18ErghZ625BPQ==} + /@mui/icons-material@5.15.4(@mui/material@5.15.4)(@types/react@18.2.47)(react@18.2.0): + resolution: {integrity: sha512-q/Yk7aokN8qGMpR7bwoDpBSeaNe6Bv7vaY9yHYodP37c64TM6ime05ueb/wgksOVszrKkNXC67E/XYbRWOoUFA==} engines: {node: '>=12.0.0'} peerDependencies: '@mui/material': ^5.0.0 @@ -8033,13 +8033,13 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.7 - '@mui/material': 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0) + '@babel/runtime': 7.23.8 + '@mui/material': 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.2.47 react: 18.2.0 - /@mui/material@5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-DODBBMouyq1B5f3YkEWL9vO8pGCxuEGqtfpltF6peMJzz/78tJFyLQsDas9MNLC/8AdFu2BQdkK7wox5UBPTAA==} + /@mui/material@5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-T/LGRAC+M0c+D3+y67eHwIN5bSje0TxbcJCWR0esNvU11T0QwrX3jedXItPNBwMupF2F5VWCDHBVLlFnN3+ABA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -8055,17 +8055,17 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.7 + '@babel/runtime': 7.23.8 '@emotion/react': 11.10.6(@types/react@18.2.47)(react@17.0.2) '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.2.47)(react@17.0.2) - '@mui/base': 5.0.0-beta.30(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2) - '@mui/core-downloads-tracker': 5.15.3 - '@mui/system': 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@17.0.2) - '@mui/types': 7.2.12(@types/react@18.2.47) - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@17.0.2) + '@mui/base': 5.0.0-beta.31(@types/react@18.2.47)(react-dom@17.0.2)(react@17.0.2) + '@mui/core-downloads-tracker': 5.15.4 + '@mui/system': 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@17.0.2) + '@mui/types': 7.2.13(@types/react@18.2.47) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@17.0.2) '@types/react': 18.2.47 '@types/react-transition-group': 4.4.10 - clsx: 2.0.0 + clsx: 2.1.0 csstype: 3.1.2 prop-types: 15.8.1 react: 17.0.2 @@ -8074,8 +8074,8 @@ packages: react-transition-group: 4.4.5(react-dom@17.0.2)(react@17.0.2) dev: false - /@mui/material@5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-DODBBMouyq1B5f3YkEWL9vO8pGCxuEGqtfpltF6peMJzz/78tJFyLQsDas9MNLC/8AdFu2BQdkK7wox5UBPTAA==} + /@mui/material@5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-T/LGRAC+M0c+D3+y67eHwIN5bSje0TxbcJCWR0esNvU11T0QwrX3jedXItPNBwMupF2F5VWCDHBVLlFnN3+ABA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -8091,17 +8091,17 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.7 + '@babel/runtime': 7.23.8 '@emotion/react': 11.10.6(@types/react@18.2.47)(react@18.2.0) '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.2.47)(react@18.2.0) - '@mui/base': 5.0.0-beta.30(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0) - '@mui/core-downloads-tracker': 5.15.3 - '@mui/system': 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@18.2.0) - '@mui/types': 7.2.12(@types/react@18.2.47) - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@18.2.0) + '@mui/base': 5.0.0-beta.31(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0) + '@mui/core-downloads-tracker': 5.15.4 + '@mui/system': 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@18.2.0) + '@mui/types': 7.2.13(@types/react@18.2.47) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@18.2.0) '@types/react': 18.2.47 '@types/react-transition-group': 4.4.10 - clsx: 2.0.0 + clsx: 2.1.0 csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 @@ -8109,8 +8109,8 @@ packages: react-is: 18.2.0 react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) - /@mui/private-theming@5.15.3(@types/react@18.2.47)(react@17.0.2): - resolution: {integrity: sha512-Q79MhVMmywC1l5bMsMZq5PsIudr1MNPJnx9/EqdMP0vpz5iNvFpnLmxsD7d8/hqTWgFAljI+LH3jX8MxlZH9Gw==} + /@mui/private-theming@5.15.4(@types/react@18.2.47)(react@17.0.2): + resolution: {integrity: sha512-9N5myIMEEQTM5WYWPGvvYADzjFo12LgJ7S+2iTZkBNOcJpUxQYM1tvYjkHCDV+t1ocMOEgjR2EfJ9Dus30dBlg==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -8120,14 +8120,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.8 - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@17.0.2) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@17.0.2) '@types/react': 18.2.47 prop-types: 15.8.1 react: 17.0.2 dev: false - /@mui/private-theming@5.15.3(@types/react@18.2.47)(react@18.2.0): - resolution: {integrity: sha512-Q79MhVMmywC1l5bMsMZq5PsIudr1MNPJnx9/EqdMP0vpz5iNvFpnLmxsD7d8/hqTWgFAljI+LH3jX8MxlZH9Gw==} + /@mui/private-theming@5.15.4(@types/react@18.2.47)(react@18.2.0): + resolution: {integrity: sha512-9N5myIMEEQTM5WYWPGvvYADzjFo12LgJ7S+2iTZkBNOcJpUxQYM1tvYjkHCDV+t1ocMOEgjR2EfJ9Dus30dBlg==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -8137,13 +8137,13 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.8 - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@18.2.0) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@18.2.0) '@types/react': 18.2.47 prop-types: 15.8.1 react: 18.2.0 - /@mui/styled-engine@5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@17.0.2): - resolution: {integrity: sha512-+d5XZCTeemOO/vBfWGEeHgTm8fjU1Psdgm+xAw+uegycO2EnoA/EfGSaG5UwZ6g3b66y48Mkxi35AggShMr88w==} + /@mui/styled-engine@5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@17.0.2): + resolution: {integrity: sha512-vtrZUXG5XI8CNiNLcxjIirW4dEbOloR+ikfm6ePBo7jXpJdpXjVzBWetrfE+5eI0cHkKWlTptnJ2voKV8pBRfw==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.4.1 @@ -8164,8 +8164,8 @@ packages: react: 17.0.2 dev: false - /@mui/styled-engine@5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0): - resolution: {integrity: sha512-+d5XZCTeemOO/vBfWGEeHgTm8fjU1Psdgm+xAw+uegycO2EnoA/EfGSaG5UwZ6g3b66y48Mkxi35AggShMr88w==} + /@mui/styled-engine@5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0): + resolution: {integrity: sha512-vtrZUXG5XI8CNiNLcxjIirW4dEbOloR+ikfm6ePBo7jXpJdpXjVzBWetrfE+5eI0cHkKWlTptnJ2voKV8pBRfw==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.4.1 @@ -8185,8 +8185,8 @@ packages: prop-types: 15.8.1 react: 18.2.0 - /@mui/styles@5.15.3(@types/react@18.2.47)(react@17.0.2): - resolution: {integrity: sha512-yePvO+0z35a1Cm7sXy3rL6F1oEJSiDFcQ/4Mkn/MHttwfBbbi7higBbUsBkuLPGoy40EiIUF+Tr+UoNW296/bA==} + /@mui/styles@5.15.4(@types/react@18.2.47)(react@17.0.2): + resolution: {integrity: sha512-cbeopHIq559GHQe4EusyI0GOYZq6aj8IAum8d8SKA5AoerLXTpYNabREFdP0melLiX6l0e6AHuTnTv8Fg2lTgQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -8195,13 +8195,13 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.7 + '@babel/runtime': 7.23.8 '@emotion/hash': 0.9.1 - '@mui/private-theming': 5.15.3(@types/react@18.2.47)(react@17.0.2) - '@mui/types': 7.2.12(@types/react@18.2.47) - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@17.0.2) + '@mui/private-theming': 5.15.4(@types/react@18.2.47)(react@17.0.2) + '@mui/types': 7.2.13(@types/react@18.2.47) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@17.0.2) '@types/react': 18.2.47 - clsx: 2.0.0 + clsx: 2.1.0 csstype: 3.1.2 hoist-non-react-statics: 3.3.2 jss: 10.10.0 @@ -8216,8 +8216,8 @@ packages: react: 17.0.2 dev: false - /@mui/styles@5.15.3(@types/react@18.2.47)(react@18.2.0): - resolution: {integrity: sha512-yePvO+0z35a1Cm7sXy3rL6F1oEJSiDFcQ/4Mkn/MHttwfBbbi7higBbUsBkuLPGoy40EiIUF+Tr+UoNW296/bA==} + /@mui/styles@5.15.4(@types/react@18.2.47)(react@18.2.0): + resolution: {integrity: sha512-cbeopHIq559GHQe4EusyI0GOYZq6aj8IAum8d8SKA5AoerLXTpYNabREFdP0melLiX6l0e6AHuTnTv8Fg2lTgQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -8226,13 +8226,13 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.7 + '@babel/runtime': 7.23.8 '@emotion/hash': 0.9.1 - '@mui/private-theming': 5.15.3(@types/react@18.2.47)(react@18.2.0) - '@mui/types': 7.2.12(@types/react@18.2.47) - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@18.2.0) + '@mui/private-theming': 5.15.4(@types/react@18.2.47)(react@18.2.0) + '@mui/types': 7.2.13(@types/react@18.2.47) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@18.2.0) '@types/react': 18.2.47 - clsx: 2.0.0 + clsx: 2.1.0 csstype: 3.1.2 hoist-non-react-statics: 3.3.2 jss: 10.10.0 @@ -8246,8 +8246,8 @@ packages: prop-types: 15.8.1 react: 18.2.0 - /@mui/system@5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@17.0.2): - resolution: {integrity: sha512-ewVU4eRgo4VfNMGpO61cKlfWmH7l9s6rA8EknRzuMX3DbSLfmtW2WJJg6qPwragvpPIir0Pp/AdWVSDhyNy5Tw==} + /@mui/system@5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@17.0.2): + resolution: {integrity: sha512-KCwkHajGBXPs2TK1HJjIyab4NDk0cZoBDYN/TTlXVo1qBAmCjY0vjqrlsjeoG+wrwwcezXMLs/e6OGP66fPCog==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -8265,19 +8265,19 @@ packages: '@babel/runtime': 7.23.8 '@emotion/react': 11.10.6(@types/react@18.2.47)(react@17.0.2) '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.2.47)(react@17.0.2) - '@mui/private-theming': 5.15.3(@types/react@18.2.47)(react@17.0.2) - '@mui/styled-engine': 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@17.0.2) - '@mui/types': 7.2.12(@types/react@18.2.47) - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@17.0.2) + '@mui/private-theming': 5.15.4(@types/react@18.2.47)(react@17.0.2) + '@mui/styled-engine': 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@17.0.2) + '@mui/types': 7.2.13(@types/react@18.2.47) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@17.0.2) '@types/react': 18.2.47 - clsx: 2.0.0 + clsx: 2.1.0 csstype: 3.1.2 prop-types: 15.8.1 react: 17.0.2 dev: false - /@mui/system@5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@18.2.0): - resolution: {integrity: sha512-ewVU4eRgo4VfNMGpO61cKlfWmH7l9s6rA8EknRzuMX3DbSLfmtW2WJJg6qPwragvpPIir0Pp/AdWVSDhyNy5Tw==} + /@mui/system@5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.2.47)(react@18.2.0): + resolution: {integrity: sha512-KCwkHajGBXPs2TK1HJjIyab4NDk0cZoBDYN/TTlXVo1qBAmCjY0vjqrlsjeoG+wrwwcezXMLs/e6OGP66fPCog==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -8295,18 +8295,18 @@ packages: '@babel/runtime': 7.23.8 '@emotion/react': 11.10.6(@types/react@18.2.47)(react@18.2.0) '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.2.47)(react@18.2.0) - '@mui/private-theming': 5.15.3(@types/react@18.2.47)(react@18.2.0) - '@mui/styled-engine': 5.15.3(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) - '@mui/types': 7.2.12(@types/react@18.2.47) - '@mui/utils': 5.15.3(@types/react@18.2.47)(react@18.2.0) + '@mui/private-theming': 5.15.4(@types/react@18.2.47)(react@18.2.0) + '@mui/styled-engine': 5.15.4(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@mui/types': 7.2.13(@types/react@18.2.47) + '@mui/utils': 5.15.4(@types/react@18.2.47)(react@18.2.0) '@types/react': 18.2.47 - clsx: 2.0.0 + clsx: 2.1.0 csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 - /@mui/types@7.2.12(@types/react@18.2.47): - resolution: {integrity: sha512-3kaHiNm9khCAo0pVe0RenketDSFoZGAlVZ4zDjB/QNZV0XiCj+sh1zkX0VVhQPgYJDlBEzAag+MHJ1tU3vf0Zw==} + /@mui/types@7.2.13(@types/react@18.2.47): + resolution: {integrity: sha512-qP9OgacN62s+l8rdDhSFRe05HWtLLJ5TGclC9I1+tQngbssu0m2dmFZs+Px53AcOs9fD7TbYd4gc9AXzVqO/+g==} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -8315,8 +8315,8 @@ packages: dependencies: '@types/react': 18.2.47 - /@mui/utils@5.15.3(@types/react@18.2.47)(react@17.0.2): - resolution: {integrity: sha512-mT3LiSt9tZWCdx1pl7q4Q5tNo6gdZbvJel286ZHGuj6LQQXjWNAh8qiF9d+LogvNUI+D7eLkTnj605d1zoazfg==} + /@mui/utils@5.15.4(@types/react@18.2.47)(react@17.0.2): + resolution: {integrity: sha512-E2wLQGBcs3VR52CpMRjk46cGscC4cbf3Q2uyHNaAeL36yTTm+aVNbtsTCazXtjOP4BDd8lu6VtlTpVC8Rtl4mg==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -8333,8 +8333,8 @@ packages: react-is: 18.2.0 dev: false - /@mui/utils@5.15.3(@types/react@18.2.47)(react@18.2.0): - resolution: {integrity: sha512-mT3LiSt9tZWCdx1pl7q4Q5tNo6gdZbvJel286ZHGuj6LQQXjWNAh8qiF9d+LogvNUI+D7eLkTnj605d1zoazfg==} + /@mui/utils@5.15.4(@types/react@18.2.47)(react@18.2.0): + resolution: {integrity: sha512-E2wLQGBcs3VR52CpMRjk46cGscC4cbf3Q2uyHNaAeL36yTTm+aVNbtsTCazXtjOP4BDd8lu6VtlTpVC8Rtl4mg==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -13748,8 +13748,8 @@ packages: resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} engines: {node: '>=6'} - /clsx@2.0.0: - resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==} + /clsx@2.1.0: + resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} engines: {node: '>=6'} /co@4.6.0: diff --git a/website/package.json b/website/package.json index a001bf575..86b9c22eb 100644 --- a/website/package.json +++ b/website/package.json @@ -36,9 +36,9 @@ "@emotion/react": "11.10.6", "@emotion/styled": "11.10.6", "@mdx-js/react": "^1.6.22", - "@mui/icons-material": "5.15.3", - "@mui/material": "5.15.3", - "@mui/styles": "5.15.3", + "@mui/icons-material": "5.15.4", + "@mui/material": "5.15.4", + "@mui/styles": "5.15.4", "@orama/orama": "1.2.4", "@verdaccio/ui-components": "workspace:3.0.0-next.2", "classnames": "2.5.1",