Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-barcode-generator

Package Overview
Dependencies
Maintainers
3
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-barcode-generator - npm Package Compare versions

Comparing version 17.4.43 to 17.4.46

6

CHANGELOG.md

@@ -5,2 +5,8 @@ # Changelog

### Barcode
#### Bug Fixes
- `F150725` - The issue "Barcode Control hasn't rendered in IE11 browser" has been fixed.
## 17.2.28-beta (2019-06-27)

@@ -7,0 +13,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 17.4.43
* version : 17.4.46
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved.

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

{
"_from": "@syncfusion/ej2-barcode-generator@*",
"_id": "@syncfusion/ej2-barcode-generator@17.3.27",
"_id": "@syncfusion/ej2-barcode-generator@17.4.43",
"_inBundle": false,
"_integrity": "sha512-vcaBfZ60bkqhEdsMO05uozf8E0DEirIlbXJ8NphNQ1nTP5VQMNwtlEAuvldNtiIE6UGuXei1h+YaZ3zAdLHrlg==",
"_integrity": "sha512-2odIf/IWnREqpj+q2z5xVWdC86VUNgSJrmBLvzfwMzZmJSx4tZrKUYXygXhUNXMRVBhyi4V8nFG36XKuTQMNxg==",
"_location": "/@syncfusion/ej2-barcode-generator",

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

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-barcode-generator/-/ej2-barcode-generator-17.3.27.tgz",
"_shasum": "8bd9dadef497866102a5edc6f7b93fb30c4424ab",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-barcode-generator/-/ej2-barcode-generator-17.4.43.tgz",
"_shasum": "4d8296dc38e82cd1b8f7d2038f65ce9a9e7ef452",
"_spec": "@syncfusion/ej2-barcode-generator@*",

@@ -39,4 +39,4 @@ "_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~17.4.43",
"@syncfusion/ej2-data": "~17.4.43"
"@syncfusion/ej2-base": "~17.4.46",
"@syncfusion/ej2-data": "~17.4.46"
},

@@ -65,4 +65,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "17.4.43",
"version": "17.4.46",
"sideEffects": false
}
/**
* DOM util
*/
import { createElement } from '@syncfusion/ej2-base';
import { createElement, Browser } from '@syncfusion/ej2-base';
import { Size } from '../primitives/size';

@@ -15,3 +15,16 @@ /** @private */

export function getChildNode(node) {
return node.children;
var child;
var collection = [];
if (Browser.info.name === 'msie' || Browser.info.name === 'edge') {
for (var i = 0; i < node.childNodes.length; i++) {
child = node.childNodes[i];
if (child.nodeType === 1) {
collection.push(child);
}
}
}
else {
collection = node.children;
}
return collection;
}

@@ -18,0 +31,0 @@ export function measureText(textContent) {

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc