Updated mds to v0.18.1 (#3233)

- Updated other project dependencies
- Fixed an issue while pressing enter key in a page that contains a select box
- Fixed an issue while selecting an autocomplete option from an input box

Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
Alex
2024-02-13 17:53:11 -06:00
committed by GitHub
parent ecc8c7a86e
commit 23e01b257e
5 changed files with 451 additions and 439 deletions

View File

@@ -11,7 +11,7 @@
"local-storage-fallback": "^4.1.1", "local-storage-fallback": "^4.1.1",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"luxon": "^3.4.3", "luxon": "^3.4.3",
"mds": "https://github.com/minio/mds.git#v0.15.0", "mds": "https://github.com/minio/mds.git#v0.18.1",
"pdfjs-dist": "3.11.174", "pdfjs-dist": "3.11.174",
"react": "^18.1.0", "react": "^18.1.0",
"react-component-export-image": "^1.0.6", "react-component-export-image": "^1.0.6",
@@ -63,12 +63,12 @@
"@babel/plugin-proposal-private-property-in-object": "^7.21.11", "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@playwright/test": "^1.38.1", "@playwright/test": "^1.38.1",
"@types/lodash": "^4.14.202", "@types/lodash": "^4.14.202",
"@types/luxon": "^3.3.7", "@types/luxon": "^3.4.2",
"@types/minio": "7.1.1", "@types/minio": "7.1.1",
"@types/node": "18.16.0", "@types/node": "18.16.0",
"@types/react": "18.2.43", "@types/react": "18.2.55",
"@types/react-copy-to-clipboard": "^5.0.5", "@types/react-copy-to-clipboard": "^5.0.5",
"@types/react-dom": "18.2.17", "@types/react-dom": "18.2.19",
"@types/react-redux": "^7.1.32", "@types/react-redux": "^7.1.32",
"@types/react-virtualized": "^9.21.29", "@types/react-virtualized": "^9.21.29",
"@types/react-window": "^1.8.6", "@types/react-window": "^1.8.6",
@@ -81,7 +81,7 @@
"customize-cra": "^1.0.0", "customize-cra": "^1.0.0",
"minio": "^7.1.3", "minio": "^7.1.3",
"nyc": "^15.1.0", "nyc": "^15.1.0",
"prettier": "3.2.4", "prettier": "3.2.5",
"react-app-rewire-hot-loader": "^2.0.1", "react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.2.1", "react-app-rewired": "^2.2.1",
"react-scripts": "5.0.1", "react-scripts": "5.0.1",
@@ -92,7 +92,7 @@
"resolutions": { "resolutions": {
"nth-check": "^2.0.1", "nth-check": "^2.0.1",
"yaml": "^2.3.1", "yaml": "^2.3.1",
"postcss": "^8.4.32", "postcss": "^8.4.35",
"react-scripts/**/node-forge": "^1.3.0", "react-scripts/**/node-forge": "^1.3.0",
"react-scripts/**/async": "^2.6.4", "react-scripts/**/async": "^2.6.4",
"react-scripts/workbox-webpack-plugin/workbox-build/@surma/rollup-plugin-off-main-thread/ejs/jake/async": "^2.6.4", "react-scripts/workbox-webpack-plugin/workbox-build/@surma/rollup-plugin-off-main-thread/ejs/jake/async": "^2.6.4",
@@ -104,10 +104,10 @@
"react-scripts/**/debug": "^3.1.0", "react-scripts/**/debug": "^3.1.0",
"recharts/**/d3-color": "^3.1.0", "recharts/**/d3-color": "^3.1.0",
"websocket/debug": "^3.1.0", "websocket/debug": "^3.1.0",
"fast-xml-parser": "^4.2.4", "fast-xml-parser": "^4.3.4",
"semver": "^7.5.2", "semver": "^7.5.2",
"testcafe/**/tough-cookie": "^4.1.3", "testcafe/**/tough-cookie": "^4.1.3",
"styled-components/**/@babel/traverse": "^7.23.6" "styled-components/**/@babel/traverse": "^7.23.9"
}, },
"main": "index.js" "main": "index.js"
} }

View File

@@ -220,10 +220,10 @@ const ListObjectsTable = () => {
selectedItems={selectedObjects} selectedItems={selectedObjects}
onSelect={!anonymousMode ? selectListObjects : undefined} onSelect={!anonymousMode ? selectListObjects : undefined}
customEmptyMessage={errorMessage} customEmptyMessage={errorMessage}
sortConfig={{ sortEnabled={{
currentSort: currentSortField, currentSort: currentSortField,
currentDirection: sortDirection, currentDirection: sortDirection,
triggerSort: sortChange, onSortClick: sortChange,
}} }}
onSelectAll={selectAllItems} onSelectAll={selectAllItems}
rowStyle={({ index }) => { rowStyle={({ index }) => {

View File

@@ -452,10 +452,10 @@ const LogsSearchMain = () => {
customPaperHeight={ customPaperHeight={
filterOpen ? "calc(100vh - 520px)" : "calc(100vh - 320px)" filterOpen ? "calc(100vh - 520px)" : "calc(100vh - 320px)"
} }
sortConfig={{ sortEnabled={{
currentSort: "time", currentSort: "time",
currentDirection: sortOrder, currentDirection: sortOrder,
triggerSort: sortChange, onSortClick: sortChange,
}} }}
infiniteScrollConfig={{ infiniteScrollConfig={{
recordsCount: 1000000, recordsCount: 1000000,

View File

@@ -17,7 +17,7 @@
"downlevelIteration": true, "downlevelIteration": true,
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"baseUrl": "./src", "baseUrl": "./src",
"rootDir": "./src", "rootDir": "./src"
}, },
"include": ["src"], "include": ["src"]
} }

File diff suppressed because it is too large Load Diff