├── .eslintignore ├── .eslintrc.json ├── .github ├── CODEOWNERS ├── dependabot.yml ├── sync-repo-settings.yaml └── workflows │ ├── codeql.yml │ ├── dependabot.yml │ ├── docs.yml │ ├── release-please.yml │ └── test.yml ├── .gitignore ├── .prettierrc.js ├── .releaserc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── examples └── basic.tsx ├── jest.config.js ├── package.json ├── rollup.config.examples.js ├── rollup.config.js ├── src ├── index.test.tsx └── index.tsx ├── tsconfig.examples.json ├── tsconfig.json └── typedoc.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- 1 | extends: "@googlemaps/semantic-release-config" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/examples/basic.tsx -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/rollup.config.examples.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/src/index.test.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/tsconfig.examples.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlemaps/react-wrapper/HEAD/typedoc.js --------------------------------------------------------------------------------