-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PART-OF-121] update dependencies for verificationcurator serviceui (#…
…125) * Update package-lock.json * Update libraries v1 * Fix for tests * Fix tests for editing source
- Loading branch information
1 parent
4a6b5c5
commit bef7593
Showing
63 changed files
with
16,372 additions
and
9,638 deletions.
There are no files selected for viewing
24,727 changes: 15,748 additions & 8,979 deletions
24,727
verification/curator-service/ui/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
143 changes: 70 additions & 73 deletions
143
verification/curator-service/ui/src/components/AcknowledgmentsPage/styled.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,80 @@ | ||
import { Theme } from '@mui/material/styles'; | ||
|
||
import makeStyles from '@mui/styles/makeStyles'; | ||
import createStyles from '@mui/styles/createStyles'; | ||
import { makeStyles } from 'tss-react/mui'; | ||
|
||
export const useTableStyles = makeStyles((theme: Theme) => | ||
createStyles({ | ||
root: { | ||
width: '80%', | ||
margin: '10em auto auto auto', | ||
}, | ||
export const useTableStyles = makeStyles()((theme: Theme) => ({ | ||
root: { | ||
width: '80%', | ||
margin: '10em auto auto auto', | ||
}, | ||
|
||
tableRow: { | ||
'&:nth-of-type(odd)': { | ||
backgroundColor: theme.palette.action.hover, | ||
}, | ||
tableRow: { | ||
'&:nth-of-type(odd)': { | ||
backgroundColor: theme.palette.action.hover, | ||
}, | ||
headerRow: { | ||
backgroundColor: theme.palette.primary.main, | ||
}, | ||
headerCell: { | ||
}, | ||
headerRow: { | ||
backgroundColor: theme.palette.primary.main, | ||
}, | ||
headerCell: { | ||
color: '#fff', | ||
fontWeight: 'bold', | ||
}, | ||
activeCellLabel: { | ||
'&.MuiTableSortLabel-active': { | ||
color: '#fff', | ||
fontWeight: 'bold', | ||
}, | ||
activeCellLabel: { | ||
'&.MuiTableSortLabel-active': { | ||
'&.MuiTableSortLabel-root.MuiTableSortLabel-active.MuiTableSortLabel-root.MuiTableSortLabel-active .MuiTableSortLabel-icon': | ||
{ | ||
color: '#fff', | ||
}, | ||
'&.MuiTableSortLabel-root.MuiTableSortLabel-active.MuiTableSortLabel-root.MuiTableSortLabel-active .MuiTableSortLabel-icon': | ||
{ | ||
color: '#fff', | ||
}, | ||
'&:hover': { | ||
color: '#fff', | ||
opacity: 0.8, | ||
}, | ||
}, | ||
pageTitle: { fontSize: '2em', marginBottom: '1em' }, | ||
pageSubTitle: { | ||
fontSize: '1.4em', | ||
marginBottom: '1.6em', | ||
width: '70%', | ||
}, | ||
divider: { | ||
width: '70%', | ||
}, | ||
belowNote: { | ||
width: '70%', | ||
marginTop: '0.4em', | ||
}, | ||
paper: { | ||
width: '100%', | ||
marginBottom: theme.spacing(2), | ||
position: 'relative', | ||
}, | ||
table: { | ||
minWidth: 750, | ||
}, | ||
visuallyHidden: { | ||
border: 0, | ||
clip: 'rect(0 0 0 0)', | ||
height: 1, | ||
margin: -1, | ||
overflow: 'hidden', | ||
padding: 0, | ||
position: 'absolute', | ||
top: 20, | ||
width: 1, | ||
}, | ||
loaderConrainer: { | ||
width: '100%', | ||
height: '100%', | ||
position: 'absolute', | ||
top: 0, | ||
left: 0, | ||
display: 'flex', | ||
justifyContent: 'center', | ||
alignItems: 'center', | ||
backgroundColor: 'rgba(255, 255, 255, 0.6)', | ||
zIndex: 1000, | ||
'&:hover': { | ||
color: '#fff', | ||
opacity: 0.8, | ||
}, | ||
}), | ||
); | ||
}, | ||
pageTitle: { fontSize: '2em', marginBottom: '1em' }, | ||
pageSubTitle: { | ||
fontSize: '1.4em', | ||
marginBottom: '1.6em', | ||
width: '70%', | ||
}, | ||
divider: { | ||
width: '70%', | ||
}, | ||
belowNote: { | ||
width: '70%', | ||
marginTop: '0.4em', | ||
}, | ||
paper: { | ||
width: '100%', | ||
marginBottom: theme.spacing(2), | ||
position: 'relative', | ||
}, | ||
table: { | ||
minWidth: 750, | ||
}, | ||
visuallyHidden: { | ||
border: 0, | ||
clip: 'rect(0 0 0 0)', | ||
height: 1, | ||
margin: -1, | ||
overflow: 'hidden', | ||
padding: 0, | ||
position: 'absolute', | ||
top: 20, | ||
width: 1, | ||
}, | ||
loaderConrainer: { | ||
width: '100%', | ||
height: '100%', | ||
position: 'absolute', | ||
top: 0, | ||
left: 0, | ||
display: 'flex', | ||
justifyContent: 'center', | ||
alignItems: 'center', | ||
backgroundColor: 'rgba(255, 255, 255, 0.6)', | ||
zIndex: 1000, | ||
}, | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.