Socket
Socket
Sign inDemoInstall

map-google-react

Package Overview
Dependencies
59
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.3 to 1.1.4

lib/googleMap/googleMap.d.ts

10

lib/googleMap/googleMapStyles.js

@@ -1,9 +0,11 @@

const ctr = {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ctr = {
position: 'relative',
height: '100%',
};
const mapCtr = {
exports.ctr = ctr;
var mapCtr = {
height: '100%',
};
export { ctr, mapCtr };
//# sourceMappingURL=googleMapStyles.js.map
exports.mapCtr = mapCtr;

10

lib/index.js

@@ -1,3 +0,7 @@

import GoogleMap from './googleMap/googleMap';
export default GoogleMap;
//# sourceMappingURL=index.js.map
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var googleMap_1 = __importDefault(require("./googleMap/googleMap"));
exports.default = googleMap_1.default;

@@ -1,2 +0,4 @@

const searchBoxCtr = {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var searchBoxCtr = {
position: 'absolute',

@@ -7,3 +9,4 @@ width: '96%',

};
const searchInput = {
exports.searchBoxCtr = searchBoxCtr;
var searchInput = {
boxSizing: 'border-box',

@@ -20,3 +23,4 @@ border: '1px solid transparent',

};
const suggestionsCtr = {
exports.searchInput = searchInput;
var suggestionsCtr = {
fontSize: '12px',

@@ -28,3 +32,4 @@ boxShadow: '0 2px 6px rgba(0, 0, 0, 0.3)',

};
const suggestionItem = {
exports.suggestionsCtr = suggestionsCtr;
var suggestionItem = {
backgroundColor: '#ffffff',

@@ -35,10 +40,11 @@ cursor: 'pointer',

};
const active = {
exports.suggestionItem = suggestionItem;
var active = {
backgroundColor: '#fafafa',
fontWeight: 600,
};
const hover = {
exports.active = active;
var hover = {
backgroundColor: '#fafafa',
};
export { searchBoxCtr, searchInput, suggestionsCtr, suggestionItem, active, hover, };
//# sourceMappingURL=searchBoxStyles.js.map
exports.hover = hover;
{
"name": "map-google-react",
"version": "1.1.3",
"version": "1.1.4",
"author": "Avaneesh Tripathi",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {

@@ -10,3 +11,3 @@ "type": "git",

},
"license": "UNLICENSED",
"license": "MIT",
"scripts": {

@@ -13,0 +14,0 @@ "build": "rm -rf lib && tsc"

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"allowJs": true,
"jsx": "preserve",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"noUnusedParameters": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"baseUrl": "types",
"typeRoots": ["types", "./node_modules/@types"],
"types": ["googlemaps", "node"],
"lib": ["dom", "es2015", "es2016"],
"outDir": "./lib"
"target": "es5",
"module": "commonjs",
"lib": ["es2017", "es7", "es6", "dom"],
"declaration": true,
"outDir": "lib",
"strict": true,
"esModuleInterop": true
},
"include": ["src"],
"exclude": ["node_modules", "**/__tests__/*"]
"exclude": ["node_modules", "lib"]
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc