Update and clean dependencies

This commit is contained in:
Reckless_Satoshi 2022-07-16 15:06:08 -07:00
parent 81c53c4b33
commit cd8fc15a60
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
4 changed files with 520 additions and 4542 deletions

1
.gitignore vendored
View File

@ -662,3 +662,4 @@ frontend/src/components/payment-methods/webp*
frontend/static/frontend/** frontend/static/frontend/**
docs/.jekyll-cache* docs/.jekyll-cache*
docs/_site* docs/_site*
commit_sha.txt

File diff suppressed because it is too large Load Diff

View File

@ -43,24 +43,21 @@
"@mui/base": "^5.0.0-alpha.77", "@mui/base": "^5.0.0-alpha.77",
"@mui/icons-material": "^5.2.5", "@mui/icons-material": "^5.2.5",
"@mui/lab": "^5.0.0-alpha.73", "@mui/lab": "^5.0.0-alpha.73",
"@mui/material": "^5.2.7", "@mui/material": "^5.9.0",
"@mui/system": "^5.2.6", "@mui/system": "^5.9.0",
"@mui/x-data-grid": "^5.2.2", "@mui/x-data-grid": "^5.2.2",
"country-flag-icons": "^1.4.25", "country-flag-icons": "^1.4.25",
"date-fns": "^2.28.0", "date-fns": "^2.28.0",
"i18next": "^21.6.14", "i18next": "^21.6.14",
"i18next-browser-languagedetector": "^6.1.4", "i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.0", "i18next-http-backend": "^1.4.0",
"i18next-xhr-backend": "^3.2.2",
"js-sha256": "^0.9.0", "js-sha256": "^0.9.0",
"material-ui-image": "^3.3.2", "material-ui-image": "^3.3.2",
"openpgp": "^5.2.1", "openpgp": "^5.2.1",
"react": "^18.0.0", "react": "^18.2.0",
"react-countdown": "^2.3.2", "react-countdown": "^2.3.2",
"react-dom": "^18.1.0", "react-dom": "^18.1.0",
"react-i18next": "^11.16.2", "react-i18next": "^11.16.2",
"react-native": "^0.69.1",
"react-native-svg": "^12.3.0",
"react-qr-code": "^2.0.3", "react-qr-code": "^2.0.3",
"react-qr-reader": "^2.2.1", "react-qr-reader": "^2.2.1",
"react-responsive": "^9.0.0-beta.6", "react-responsive": "^9.0.0-beta.6",

View File

@ -396,12 +396,12 @@ class BookPage extends Component {
inputProps={{ inputProps={{
style: {textAlign:"center"} style: {textAlign:"center"}
}} }}
onChange={this.handleCurrencyChange} onChange={this.handleCurrencyChange}>
> <MenuItem value={0}><div style={{display:'flex',alignItems:'center', flexWrap:'wrap'}}><FlagWithProps code="ANY" />{" "+t("ANY_currency")}</div></MenuItem> <MenuItem value={0}><div style={{display:'flex',alignItems:'center', flexWrap:'wrap'}}><FlagWithProps code="ANY" />{" "+t("ANY_currency")}</div></MenuItem>
{ {Object.entries(currencyDict)
Object.entries(currencyDict) .map( ([key, value]) => <MenuItem key={key} value={parseInt(key)}>
.map( ([key, value]) => <MenuItem key={key} value={parseInt(key)}><div style={{display:'flex',alignItems:'center', flexWrap:'wrap'}}><FlagWithProps code={value} />{" "+value}</div></MenuItem> ) <div style={{display:'flex',alignItems:'center', flexWrap:'wrap'}}><FlagWithProps code={value}/>{" "+value}</div>
} </MenuItem> )}
</Select> </Select>
</FormControl> </FormControl>
</Grid> </Grid>