Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-maps

Package Overview
Dependencies
8
Maintainers
3
Versions
160
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 20.3.47 to 20.3.49

8

CHANGELOG.md

@@ -13,2 +13,10 @@ <!-- markdownlint-disable MD010 -->

#### Bug Fixes
- `#I408673` - Data labels will now render properly when the values from `shapeDataPath` and `shapePropertyPath` are numbers.
## 20.3.47 (2022-09-29)
### Maps
#### Breaking Changes

@@ -15,0 +23,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 20.3.47
* version : 20.3.49
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"_from": "@syncfusion/ej2-maps@*",
"_id": "@syncfusion/ej2-maps@16.39.2",
"_id": "@syncfusion/ej2-maps@20.3.47",
"_inBundle": false,
"_integrity": "sha512-wd2+ymrFzw6zBd2nH3Zl4MtTYFgp0nzEDl427hMvgwzYVOghAc/GW4NG1LpTGHtUDswjvAaYBFbY3057/sRhmA==",
"_integrity": "sha512-eM35NIkNhSwH73EarJVxZ5M1ED2F/t7BB23UD1Tgy9/ynEFhpFRlmRzT/YeiqlXgXJZLVW5DdwoUsc2w89TMBg==",
"_location": "/@syncfusion/ej2-maps",

@@ -26,4 +26,4 @@ "_phantomChildren": {},

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-maps/-/ej2-maps-16.39.2.tgz",
"_shasum": "3a372223d810b5637078aa09e45b00a5298c344d",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-maps/-/ej2-maps-20.3.47.tgz",
"_shasum": "4368a4fe57801d7161bf61ac79f29fd3f05156ea",
"_spec": "@syncfusion/ej2-maps@*",

@@ -39,4 +39,4 @@ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~20.3.47",
"@syncfusion/ej2-buttons": "~20.3.47",
"@syncfusion/ej2-base": "~20.3.49",
"@syncfusion/ej2-buttons": "~20.3.49",
"@syncfusion/ej2-compression": "~20.3.47",

@@ -85,4 +85,4 @@ "@syncfusion/ej2-data": "~20.3.47",

"typings": "index.d.ts",
"version": "20.3.47",
"version": "20.3.49",
"sideEffects": false
}

@@ -22,6 +22,6 @@ import { findMidPointOfPolygon, Rect, filter, getTemplateFunction, getZoomTranslate, getTranslate, RectOption, convertElementFromLabel, Point, TextOption, renderTextElement, textTrim, measureText, Internalize } from '../utils/helper';

var data = dataSource[i];
var dataShapePathValue = !isNullOrUndefined(data[shapeDataPath]) && isNaN(data[shapeDataPath]) ?
data[shapeDataPath].toLowerCase() : data[shapeDataPath];
shapeName = !isNullOrUndefined(shapeName) ? shapeName.toString() : shapeName;
shapeNameValue = !isNullOrUndefined(shapeName) ? shapeName.toLowerCase() : shapeName;
var dataShapePathValue = !isNullOrUndefined(data[shapeDataPath]) && isNaN(data[shapeDataPath]) &&
typeof data[shapeDataPath] === 'string' ? data[shapeDataPath].toLowerCase() : data[shapeDataPath];
shapeName = !isNullOrUndefined(shapeName) && typeof shapeName === 'string' ? shapeName.toString() : shapeName;
shapeNameValue = !isNullOrUndefined(shapeName) && typeof shapeName === 'string' ? shapeName.toLowerCase() : shapeName;
if ((dataShapePathValue) === shapeNameValue) {

@@ -28,0 +28,0 @@ text = data;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc