Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@syncfusion/ej2-lists

Package Overview
Dependencies
Maintainers
3
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-lists - npm Package Compare versions

Comparing version 19.3.44 to 19.3.45

8

CHANGELOG.md

@@ -9,2 +9,10 @@ # Changelog

- `#F152660` - The issue with "ListView is not rendered while using both checkbox and template" has been resolved.
## 19.3.44 (2021-10-05)
### ListView
#### Bug Fixes
- `#F168185` - The issue with "Sorting is not applied properly when entering different values in the text field of the ListView component" has been resolved.

@@ -11,0 +19,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 19.3.44
* version : 19.3.45
* 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-lists@*",
"_id": "@syncfusion/ej2-lists@18.10.11",
"_id": "@syncfusion/ej2-lists@19.3.44",
"_inBundle": false,
"_integrity": "sha512-X3KVK1XlSJ8y8D0fistyDpP0zL8xgvCF/b2SJmBppbAO5BC+bYdzX/DX4Wfnz/EO3sDEilVoIMtccoQ0Oav4OQ==",
"_integrity": "sha512-5WCwO7KAGcKI9oA2lCPYyv0cthpCEoqb2yEa5T6KEMnxrYgR3TKZDTd38Bt/tYaLdYXQkaFhSen5bLMfNmRsyw==",
"_location": "/@syncfusion/ej2-lists",

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

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-lists/-/ej2-lists-18.10.11.tgz",
"_shasum": "300f40cca3f78416be591b1434c15a1ee02df655",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-lists/-/ej2-lists-19.3.44.tgz",
"_shasum": "76113e055bbcbd5203a8f2f8c0864c1be52995f9",
"_spec": "@syncfusion/ej2-lists@*",

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

"typings": "index.d.ts",
"version": "19.3.44",
"version": "19.3.45",
"sideEffects": false
}

@@ -638,14 +638,24 @@ /* eslint-disable no-inner-declarations */

if (isHeader) {
// eslint-disable-next-line
var compiledElement = compiledString(curItem, componentInstance, 'headerTemplate', currentID, !!curOpt.isStringTemplate, null, li);
if (compiledElement) {
append(compiledElement, li);
if (componentInstance && componentInstance.getModuleName() !== 'listview') {
// eslint-disable-next-line
var compiledElement = compiledString(curItem, componentInstance, 'headerTemplate', currentID, !!curOpt.isStringTemplate, null, li);
if (compiledElement) {
append(compiledElement, li);
}
}
else {
append(compiledString(curItem, componentInstance, 'headerTemplate', currentID, !!curOpt.isStringTemplate), li);
}
}
else {
// eslint-disable-next-line
var compiledElement = compiledString(curItem, componentInstance, 'template', currentID, !!curOpt.isStringTemplate, null, li);
if (compiledElement) {
append(compiledElement, li);
if (componentInstance && componentInstance.getModuleName() !== 'listview') {
// eslint-disable-next-line
var compiledElement = compiledString(curItem, componentInstance, 'template', currentID, !!curOpt.isStringTemplate, null, li);
if (compiledElement) {
append(compiledElement, li);
}
}
else {
append(compiledString(curItem, componentInstance, 'template', currentID, !!curOpt.isStringTemplate), li);
}
}

@@ -697,7 +707,12 @@ li.setAttribute('data-value', isNullOrUndefined(value) ? 'null' : value);

header.innerHTML = '';
// eslint-disable-next-line
var compiledElement = compiledString(headerData, componentInstance, 'groupTemplate', curOpt.groupTemplateID, !!curOpt.isStringTemplate, null, header);
if (compiledElement) {
append(compiledElement, header);
if (componentInstance && componentInstance.getModuleName() !== 'listview') {
// eslint-disable-next-line
var compiledElement = compiledString(headerData, componentInstance, 'groupTemplate', curOpt.groupTemplateID, !!curOpt.isStringTemplate, null, header);
if (compiledElement) {
append(compiledElement, header);
}
}
else {
append(compiledString(headerData, componentInstance, 'groupTemplate', curOpt.groupTemplateID, !!curOpt.isStringTemplate), header);
}
}

@@ -877,7 +892,12 @@ return headerItems;

var compiledString = compileTemplate(options.groupTemplate);
// eslint-disable-next-line
var compiledElement = compiledString(item, componentInstance, 'groupTemplate', curOpt.groupTemplateID, !!curOpt.isStringTemplate, null, li);
if (compiledElement) {
append(compiledElement, li);
if (componentInstance && componentInstance.getModuleName() !== 'listview') {
// eslint-disable-next-line
var compiledElement = compiledString(item, componentInstance, 'groupTemplate', curOpt.groupTemplateID, !!curOpt.isStringTemplate, null, li);
if (compiledElement) {
append(compiledElement, li);
}
}
else {
append(compiledString(item, componentInstance, 'groupTemplate', curOpt.groupTemplateID, !!curOpt.isStringTemplate), li);
}
}

@@ -887,7 +907,12 @@ else if (!grpLI && options && options.template) {

var compiledString = compileTemplate(options.template);
// eslint-disable-next-line
var compiledElement = compiledString(item, componentInstance, 'template', curOpt.templateID, !!curOpt.isStringTemplate, null, li);
if (compiledElement) {
append(compiledElement, li);
if (componentInstance && componentInstance.getModuleName() !== 'listview') {
// eslint-disable-next-line
var compiledElement = compiledString(item, componentInstance, 'template', curOpt.templateID, !!curOpt.isStringTemplate, null, li);
if (compiledElement) {
append(compiledElement, li);
}
}
else {
append(compiledString(item, componentInstance, 'template', curOpt.templateID, !!curOpt.isStringTemplate), li);
}
}

@@ -894,0 +919,0 @@ else {

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