Skip to content

Commit 662c3ca

Browse files
chore(deps-dev): bump @types/google.maps from 3.48.2 to 3.48.5 (#232)
* chore(deps-dev): bump @types/google.maps from 3.48.2 to 3.48.5 Bumps [@types/google.maps](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/google.maps) from 3.48.2 to 3.48.5. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/google.maps) --- updated-dependencies: - dependency-name: "@types/google.maps" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * fix: add focus to infowindow Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Justin Poehnelt <[email protected]>
1 parent 7d3cb05 commit 662c3ca

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"devDependencies": {
3333
"@rollup/plugin-typescript": "^8.3.1",
34-
"@types/google.maps": "^3.48.2",
34+
"@types/google.maps": "^3.48.5",
3535
"@types/jest": "^27.4.1",
3636
"@typescript-eslint/eslint-plugin": ">=4.33.0",
3737
"@typescript-eslint/parser": ">=4.33.0",

src/maps/infowindow/infowindow.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { MVCObject } from "../event/mvcobject";
1919

2020
export class InfoWindow_ extends MVCObject implements google.maps.InfoWindow {
2121
public close = jest.fn().mockImplementation((): void => null);
22+
public focus = jest.fn();
2223
public getContent = jest
2324
.fn()
2425
.mockImplementation((): string | Element | null | Text | undefined => {

0 commit comments

Comments
 (0)