Skip to content

Commit 78daa21

Browse files
[CB] update frontend deps (#3973)
* dbeaver/pro#7748 updates yarn.locks * fixes incorrect types * updates helper libs * updates vitest + fixes test cases incorrect mocks * runs tests sequentially with document and windows objects to prevent mock collisions * Revert "runs tests sequentially with document and windows objects to prevent mock collisions" This reverts commit f871837. * skips download test * removes export from resetDeprecatedSettings * updates react-data-grid to beta-59 and react to 19.2 * updates storybook * pr fixes * updates yarn lock * removes skip for download test * cleanups download ts with empty body html * updates vitest for core-connections * updates yarn.lock * linter fix + mocks once * fixes hotkeys * reverts version of react-hotkeys-hook library --------- Co-authored-by: mr-anton-t <42037741+mr-anton-t@users.noreply.github.com>
1 parent 50090a3 commit 78daa21

File tree

51 files changed

+2115
-2238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2115
-2238
lines changed

webapp/common-react/@dbeaver/react-data-grid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@dbeaver/react-translate": "workspace:^",
3939
"@dbeaver/ui-kit": "workspace:^",
4040
"react": "^19",
41-
"react-data-grid": "7.0.0-beta.57",
41+
"react-data-grid": "7.0.0-beta.59",
4242
"react-dom": "^19"
4343
}
4444
}

webapp/common-react/@dbeaver/react-dnd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@types/react": "^19",
3030
"rimraf": "^6",
3131
"typescript": "^5",
32-
"vitest": "^3"
32+
"vitest": "^4"
3333
},
3434
"dependencies": {
3535
"react": "^19"

webapp/common-react/@dbeaver/react-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@types/ws": "^8",
3535
"rimraf": "^6",
3636
"typescript": "^5",
37-
"vitest": "^3",
37+
"vitest": "^4",
3838
"ws": "^8"
3939
}
4040
}

webapp/common-react/@dbeaver/ui-kit/src/Select/SelectField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export function SelectField<T, ItemType extends {} = SelectItem<T>>({
134134
return firstEnabledItem ? getItemValue(firstEnabledItem) : undefined;
135135
});
136136

137-
const handleChange = (newValue: string | string[]) => {
137+
const handleChange = (newValue: string | readonly string[]) => {
138138
// TODO: add support for multi-select
139139

140140
const newItem = items.find(item => getItemValueSerialized(item) === newValue);

webapp/common-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"happy-dom": "^20",
2020
"prettier": "^3.6.2",
2121
"rimraf": "^6",
22-
"vitest": "^3"
22+
"vitest": "^4"
2323
}
2424
}

webapp/common-typescript/@dbeaver/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"@types/node": "^22",
3333
"rimraf": "^6",
3434
"typescript": "^5",
35-
"vitest": "^3"
35+
"vitest": "^4"
3636
}
3737
}

webapp/common-typescript/@dbeaver/jdbc-uri-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"@dbeaver/tsconfig": "workspace:^",
2929
"rimraf": "^6",
3030
"typescript": "^5",
31-
"vitest": "^3"
31+
"vitest": "^4"
3232
}
3333
}

webapp/common-typescript/@dbeaver/js-helpers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
"@dbeaver/tsconfig": "workspace:^",
3030
"rimraf": "^6",
3131
"typescript": "^5",
32-
"vitest": "^3"
32+
"vitest": "^4"
3333
},
3434
"dependencies": {
3535
"async-mutex": "^0",
3636
"color": "^5.0.2",
37-
"p-debounce": "^4.0.0",
37+
"p-debounce": "^5",
3838
"p-memoize": "^8.0.0",
3939
"quick-lru": "^7.1.0"
4040
}

webapp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"react-dom": "^19",
1515
"mobx": "^6",
1616
"mobx-react-lite": "^4",
17-
"glob": "^11.1"
17+
"glob": "^13"
1818
},
1919
"scripts": {
2020
"test": "dbeaver-test",
@@ -53,7 +53,7 @@
5353
"rimraf": "^6",
5454
"typescript": "^5.8.3",
5555
"typescript-plugin-css-modules": "^5",
56-
"vitest": "^3"
56+
"vitest": "^4"
5757
},
5858
"packageManager": "yarn@4.9.2"
5959
}

webapp/packages/core-authentication/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@
5151
"msw": "^2",
5252
"rimraf": "^6",
5353
"typescript": "^5",
54-
"vitest": "^3"
54+
"vitest": "^4"
5555
}
5656
}

0 commit comments

Comments
 (0)