Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit e38db8e

Browse files
committed
@mui/material bug
1 parent 350deef commit e38db8e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
"@rollup/plugin-typescript": "9.0.2",
2727
"@testing-library/jest-dom": "5.16.5",
2828
"@testing-library/react": "13.4.0",
29-
"@types/jest": "29.2.2",
29+
"@types/jest": "29.2.3",
3030
"@types/luxon": "3.1.0",
3131
"@types/node": "18.11.9",
3232
"@types/react": "18.0.25",
3333
"@types/react-csv": "1.1.3",
3434
"@types/react-datepicker": "4.8.0",
35-
"@types/react-dom": "18.0.8",
35+
"@types/react-dom": "18.0.9",
3636
"@types/react-window": "1.8.5",
37-
"@typescript-eslint/eslint-plugin": "5.42.1",
38-
"@typescript-eslint/parser": "5.42.1",
37+
"@typescript-eslint/eslint-plugin": "5.43.0",
38+
"@typescript-eslint/parser": "5.43.0",
3939
"eslint": "8.27.0",
4040
"jest": "29.3.1",
4141
"jest-mock-extended": "3.0.1",
@@ -45,15 +45,15 @@
4545
"rollup-plugin-typescript2": "0.34.1",
4646
"ts-jest": "29.0.3",
4747
"tslib": "2.4.1",
48-
"typescript": "4.8.4"
48+
"typescript": "4.9.3"
4949
},
5050
"dependencies": {
5151
"@emotion/styled": "11.10.5",
52-
"@mui/icons-material": "5.10.9",
53-
"@mui/material": "5.10.13",
52+
"@mui/icons-material": "5.10.14",
53+
"@mui/material": "5.10.14",
5454
"@popperjs/core": "2.11.6",
5555
"@tanstack/match-sorter-utils": "8.5.14",
56-
"@tanstack/react-table": "8.5.22",
56+
"@tanstack/react-table": "8.5.30",
5757
"eventemitter3": "4.0.7",
5858
"fuse.js": "6.6.2",
5959
"luxon": "3.1.0",
@@ -65,7 +65,7 @@
6565
"react-datepicker": "4.8.0",
6666
"react-dom": "18.2.0",
6767
"react-popper": "2.3.0",
68-
"react-select": "5.6.0",
68+
"react-select": "5.6.1",
6969
"react-window": "1.8.8",
7070
"zustand": "4.1.4"
7171
}

src/components/Columns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export async function obtainColumnsFromRows(
210210

211211
function getInputInFuctionOfLiteral(literal: Literal) {
212212
const wrappedLiteral = DataviewService.wrapLiteral(literal);
213-
let input = InputType.TEXT;
213+
let input: string = InputType.TEXT;
214214
switch (wrappedLiteral.type) {
215215
case InputType.NUMBER:
216216
input = InputType.NUMBER;

0 commit comments

Comments
 (0)