mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-17 03:19:36 +01:00
fix(deps): update material-ui monorepo to v5.15.4 (master) (#4419)
* fix(deps): update material-ui monorepo to v5.15.4 * remove snapshots --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Juan Picado <juanpicado19@gmail.com>
This commit is contained in:
parent
a919c26da5
commit
c7fba8f8bb
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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('<Help /> component', () => {
|
||||
test('should load the component in default state', () => {
|
||||
const { container } = render(<Help />);
|
||||
expect(container.firstChild).toMatchSnapshot();
|
||||
render(<Help />);
|
||||
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();
|
||||
});
|
||||
});
|
||||
|
@ -1,395 +0,0 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`<Help /> 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);
|
||||
}
|
||||
|
||||
<div
|
||||
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 MuiCard-root emotion-0 emotion-1"
|
||||
data-testid="help-card"
|
||||
id="help-card"
|
||||
>
|
||||
<div
|
||||
class="MuiCardContent-root emotion-2"
|
||||
>
|
||||
<h5
|
||||
class="MuiTypography-root MuiTypography-h5 MuiTypography-gutterBottom emotion-3"
|
||||
id="help-card__title"
|
||||
>
|
||||
help.title
|
||||
</h5>
|
||||
<h6
|
||||
class="MuiTypography-root MuiTypography-h6 MuiTypography-gutterBottom emotion-4"
|
||||
>
|
||||
help.sub-title
|
||||
</h6>
|
||||
<p
|
||||
class="MuiTypography-root MuiTypography-body1 emotion-5"
|
||||
>
|
||||
help.first-step
|
||||
</p>
|
||||
<div
|
||||
class="emotion-6 emotion-7"
|
||||
>
|
||||
<span
|
||||
class="emotion-8 emotion-9"
|
||||
>
|
||||
help.first-step-command-line
|
||||
</span>
|
||||
<button
|
||||
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall emotion-10"
|
||||
data-testid="segments"
|
||||
tabindex="0"
|
||||
type="button"
|
||||
>
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall emotion-11"
|
||||
data-testid="FileCopyIcon"
|
||||
focusable="false"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4 6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z"
|
||||
/>
|
||||
</svg>
|
||||
<span
|
||||
class="MuiTouchRipple-root emotion-12"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
<p
|
||||
class="MuiTypography-root MuiTypography-body1 emotion-5"
|
||||
>
|
||||
help.second-step
|
||||
</p>
|
||||
<div
|
||||
class="emotion-6 emotion-7"
|
||||
>
|
||||
<span
|
||||
class="emotion-8 emotion-9"
|
||||
>
|
||||
help.second-step-command-line
|
||||
</span>
|
||||
<button
|
||||
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall emotion-10"
|
||||
data-testid="segments"
|
||||
tabindex="0"
|
||||
type="button"
|
||||
>
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall emotion-11"
|
||||
data-testid="FileCopyIcon"
|
||||
focusable="false"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4 6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z"
|
||||
/>
|
||||
</svg>
|
||||
<span
|
||||
class="MuiTouchRipple-root emotion-12"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
<p
|
||||
class="MuiTypography-root MuiTypography-body2 emotion-21"
|
||||
>
|
||||
help.third-step
|
||||
</p>
|
||||
</div>
|
||||
<div
|
||||
class="MuiCardActions-root MuiCardActions-spacing emotion-22"
|
||||
>
|
||||
<a
|
||||
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeSmall MuiButton-textSizeSmall MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeSmall MuiButton-textSizeSmall emotion-23"
|
||||
href="https://verdaccio.org/docs/cli-registry"
|
||||
tabindex="0"
|
||||
>
|
||||
button.learn-more
|
||||
<span
|
||||
class="MuiTouchRipple-root emotion-12"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
@ -40,8 +40,8 @@ describe('<Search /> component', () => {
|
||||
});
|
||||
|
||||
test('should load the component in default state', () => {
|
||||
const { container } = renderWithStore(<ComponentToBeRendered />, store);
|
||||
expect(container.firstChild).toMatchSnapshot();
|
||||
renderWithStore(<ComponentToBeRendered />, store);
|
||||
expect(screen.getByPlaceholderText('search.packages')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
test('handleSearch: when user type package name in search component, show suggestions', async () => {
|
||||
|
@ -1,473 +0,0 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`<Search /> 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;
|
||||
}
|
||||
|
||||
<div
|
||||
class="emotion-0 emotion-1"
|
||||
>
|
||||
<div
|
||||
class="MuiAutocomplete-root MuiAutocomplete-fullWidth emotion-2"
|
||||
>
|
||||
<div
|
||||
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root emotion-3 emotion-4"
|
||||
>
|
||||
<div
|
||||
class="MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-adornedStart MuiAutocomplete-inputRoot emotion-5"
|
||||
>
|
||||
<div
|
||||
class="MuiInputAdornment-root MuiInputAdornment-positionStart MuiInputAdornment-standard MuiInputAdornment-sizeMedium emotion-6 emotion-7"
|
||||
>
|
||||
<span
|
||||
class="notranslate"
|
||||
>
|
||||
|
||||
</span>
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium emotion-8"
|
||||
data-testid="SearchIcon"
|
||||
focusable="false"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
<input
|
||||
aria-autocomplete="list"
|
||||
aria-expanded="false"
|
||||
aria-invalid="false"
|
||||
autocapitalize="none"
|
||||
autocomplete="off"
|
||||
class="MuiInputBase-input MuiInput-input MuiInputBase-inputAdornedStart MuiAutocomplete-input MuiAutocomplete-inputFocused emotion-9"
|
||||
id="search-header-suggest"
|
||||
placeholder="search.packages"
|
||||
role="combobox"
|
||||
spellcheck="false"
|
||||
type="text"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
244
pnpm-lock.yaml
generated
244
pnpm-lock.yaml
generated
@ -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:
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user