🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

vue2-leaflet

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue2-leaflet - npm Package Compare versions

Comparing version

to
1.2.0

9

package.json
{
"name": "vue2-leaflet",
"version": "1.1.1",
"version": "1.2.0",
"description": "Vue2 leaflet library",

@@ -26,7 +26,8 @@ "author": "Mickael Bouchaud",

"dependencies": {
"leaflet": "^1.3.4",
"vue": "^2.5.3",
"leaflet": "1.3.0",
"@types/leaflet": "^1.2.11"
},
"peerDependencies": {},
"peerDependencies": {
"vue": "^2.5.3"
},
"size-limit": [

@@ -33,0 +34,0 @@ {

@@ -6,3 +6,3 @@ // Type definitions for vue2-leaflet v1.1.0

/**
* TODO:
* TODO:
* create test cases for types

@@ -456,2 +456,22 @@ * type parentContainer in components

}
class LIcon extends Mixins(Options) {
// props
iconUrl: String;
iconRetinaUrl: String;
iconSize: L.Point;
iconAnchor: L.Point;
popupAnchor: L.Point;
tooltipAnchor: L.Point;
shadowUrl: String;
shadowRetinaUrl: String;
shadowSize: L.Point;
shadowAnchor: L.Point;
bgPos: L.Point;
className: String;
// data
iconObject: L.Icon;
parentContainer: L.Marker;
}
class LIconDefault extends Vue {

@@ -701,2 +721,3 @@ // props

LGeoJson,
LIcon,
LIconDefault,

@@ -703,0 +724,0 @@ LImageOverlay,