From c71e8f3db7647b37f060df93709f1baaeaf1ab94 Mon Sep 17 00:00:00 2001 From: googlemaps-bot Date: Mon, 9 May 2022 22:17:46 +0000 Subject: [PATCH] chore(deps-dev): bump typescript from 4.6.3 to 4.6.4 (#427) Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.6.3 to 4.6.4.
Release notes

Sourced from typescript's releases.

TypeScript 4.6.4

This release includes a bug fix for text formatting on certain ranges, which was impacting Visual Studio users.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=4.6.3&new-version=4.6.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
75a303a4bb120b45864c2c8a450bded563a8e5f9 --- enums/Status.html | 2 +- interfaces/WrapperProps.html | 6 +++--- modules.html | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/enums/Status.html b/enums/Status.html index b91582ff..8de8ae5d 100644 --- a/enums/Status.html +++ b/enums/Status.html @@ -1 +1 @@ -Status | @googlemaps/react-wrapper
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

FAILURE = "FAILURE"
LOADING = "LOADING"
SUCCESS = "SUCCESS"

Generated using TypeDoc

\ No newline at end of file +Status | @googlemaps/react-wrapper
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

FAILURE = "FAILURE"
LOADING = "LOADING"
SUCCESS = "SUCCESS"

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/WrapperProps.html b/interfaces/WrapperProps.html index 9ae67add..3d40d603 100644 --- a/interfaces/WrapperProps.html +++ b/interfaces/WrapperProps.html @@ -4,11 +4,11 @@ See the reference documentation for LoaderOptions for a complete list of all props that are available.

-

Hierarchy

Index

Properties

Methods

Properties

children?: ReactNode
+

Hierarchy

  • LoaderOptions
    • WrapperProps

Index

Properties

Methods

Properties

children?: ReactNode

Children wrapped by the <Wrapper>{elements}</Wrapper.

-

Methods

  • callback(status: Status, loader: Loader): void

Methods

  • callback(status: Status, loader: Loader): void
  • Callback prop used to access @googlemaps/js-api-loader and Status.

    Note: The callback be executed multiple times in the lifecycle of the component.

    -

    Parameters

    Returns void

  • render(status: Status): ReactElement<any, string | JSXElementConstructor<any>>
  • render(status: Status): ReactElement<any, string | JSXElementConstructor<any>>
  • Render prop used to switch on the status.

    Parameters

    Returns ReactElement<any, string | JSXElementConstructor<any>>

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/modules.html b/modules.html index 9254a4e1..7cab6027 100644 --- a/modules.html +++ b/modules.html @@ -1,4 +1,4 @@ -@googlemaps/react-wrapper
Options
All
  • Public
  • Public/Protected
  • All
Menu

@googlemaps/react-wrapper

Index

Enumerations

Interfaces

Functions

Functions

  • Wrapper(props: WrapperProps): ReactElement<any, string | JSXElementConstructor<any>>
  • +@googlemaps/react-wrapper
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    @googlemaps/react-wrapper

    Index

    Enumerations

    Interfaces

    Functions

    Functions

    • Wrapper(props: WrapperProps): ReactElement<any, string | JSXElementConstructor<any>>
    • A component to wrap the loading of the Google Maps JavaScript API.

      import { Wrapper } from '@googlemaps/react-wrapper';

      const MyApp = () => (
      <Wrapper apiKey={'YOUR_API_KEY'}>
      <MyMapComponent />
      </Wrapper>
      );