Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update material-ui monorepo #4403

Merged
merged 4 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"@codemirror/lang-json": "6.0.1",
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.11.9",
"@mui/lab": "5.0.0-alpha.120",
"@mui/material": "5.11.10",
"@mui/icons-material": "5.15.2",
"@mui/lab": "5.0.0-alpha.158",
"@mui/material": "5.15.2",
"@mui/x-date-pickers": "^6.18.3",
"@tanstack/react-table": "^8.10.7",
"@testing-library/dom": "8.20.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ test('Add dependency', async () => {
});

// Open the dropdown by selecting the role.
const dropdown = screen.queryAllByRole('button')[0];
const dropdown = screen.queryAllByRole('combobox')[0];
userEvent.click(dropdown);

const parentAOption = await screen.findByText('parentA');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import { AutocompleteValue, styled, Typography } from '@mui/material';
import {
AutocompleteChangeReason,
AutocompleteValue,
styled,
Typography,
} from '@mui/material';
import React, { useEffect, useMemo, useState } from 'react';
import { Dialogue } from 'component/common/Dialogue/Dialogue';
import useFeatureApi from 'hooks/api/actions/useFeatureApi/useFeatureApi';
Expand All @@ -10,7 +15,6 @@ import { ITag, ITagType } from 'interfaces/tags';
import { TagOption, TagsInput } from './TagsInput';
import { TagTypeSelect } from './TagTypeSelect';
import useTagApi from 'hooks/api/actions/useTagApi/useTagApi';
import { AutocompleteChangeReason } from '@mui/base/AutocompleteUnstyled/useAutocomplete';
import useTags from 'hooks/api/getters/useTags/useTags';
import cloneDeep from 'lodash.clonedeep';
import { usePlausibleTracker } from 'hooks/usePlausibleTracker';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ exports[`FeedbackCESForm 1`] = `
aria-hidden="true"
class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputMultiline css-1wvz5kg-MuiInputBase-input-MuiOutlinedInput-input"
readonly=""
style="visibility: hidden; position: absolute; overflow: hidden; height: 0px; top: 0px; left: 0px; transform: translateZ(0); padding: 0px; width: 100%;"
style="visibility: hidden; position: absolute; overflow: hidden; height: 0px; top: 0px; left: 0px; transform: translateZ(0); padding-top: 0px; padding-bottom: 0px; width: 100%;"
tabindex="-1"
/>
<fieldset
Expand Down
8 changes: 6 additions & 2 deletions frontend/src/themes/themeTypes.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { FormHelperTextOwnProps } from '@mui/material/FormHelperText';
declare module '@mui/material/styles' {
interface CustomTheme {
/**
Expand Down Expand Up @@ -177,5 +178,8 @@ declare module '@mui/material' {
web: true;
}
}

export {};
declare module '@mui/material/FormHelperText' {
interface FormHelperTextOwnProps {
'data-testid'?: string;
}
}
Loading