Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-dropdowns

Package Overview
Dependencies
Maintainers
2
Versions
334
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-dropdowns - npm Package Compare versions

Comparing version 1.0.16 to 1.0.17

13

dist/es6/drop-down-base/drop-down-base.js

@@ -173,7 +173,7 @@ var __extends = (this && this.__extends) || (function () {

DropDownBase.prototype.onActionComplete = function (ulElement, list, e) {
this.listData = list;
this.list.innerHTML = '';
this.ulElement = ulElement;
this.liCollections = this.ulElement.querySelectorAll('.' + dropDownBaseClasses.li);
this.listData = list;
this.list.appendChild(this.ulElement);
this.list.appendChild(ulElement);
this.liCollections = this.list.querySelectorAll('.' + dropDownBaseClasses.li);
this.ulElement = this.list.querySelector('ul');
this.postRender(this.list, list, this.bindEvent);

@@ -321,2 +321,7 @@ };

;
DropDownBase.prototype.dispatchEvent = function (element, type) {
var evt = document.createEvent('HTMLEvents');
evt.initEvent(type, false, true);
element.dispatchEvent(evt);
};
DropDownBase.prototype.resetList = function (dataSource, fields, query) {

@@ -323,0 +328,0 @@ if (this.list) {

{
"name": "@syncfusion/ej2-dropdowns",
"version": "1.0.16",
"version": "1.0.17",
"description": "Essential JS 2 DropDown Components",

@@ -11,5 +11,5 @@ "author": "Syncfusion Inc.",

"@syncfusion/ej2-data": "^1.0.14",
"@syncfusion/ej2-inputs": "^1.0.16",
"@syncfusion/ej2-inputs": "^1.0.17",
"@syncfusion/ej2-lists": "^1.0.14",
"@syncfusion/ej2-popups": "^1.0.16"
"@syncfusion/ej2-popups": "^1.0.17"
},

@@ -16,0 +16,0 @@ "devDependencies": {

@@ -238,2 +238,6 @@ import { Component, KeyboardEvents, EmitType, L10n } from '@syncfusion/ej2-base';

/**
* To dispatch the event manually
*/
protected dispatchEvent(element: HTMLElement, type: string): void;
/**
* reset the items list.

@@ -240,0 +244,0 @@ */

@@ -171,7 +171,7 @@ var __extends = (this && this.__extends) || (function () {

DropDownBase.prototype.onActionComplete = function (ulElement, list, e) {
this.listData = list;
this.list.innerHTML = '';
this.ulElement = ulElement;
this.liCollections = this.ulElement.querySelectorAll('.' + exports.dropDownBaseClasses.li);
this.listData = list;
this.list.appendChild(this.ulElement);
this.list.appendChild(ulElement);
this.liCollections = this.list.querySelectorAll('.' + exports.dropDownBaseClasses.li);
this.ulElement = this.list.querySelector('ul');
this.postRender(this.list, list, this.bindEvent);

@@ -319,2 +319,7 @@ };

;
DropDownBase.prototype.dispatchEvent = function (element, type) {
var evt = document.createEvent('HTMLEvents');
evt.initEvent(type, false, true);
element.dispatchEvent(evt);
};
DropDownBase.prototype.resetList = function (dataSource, fields, query) {

@@ -321,0 +326,0 @@ if (this.list) {

@@ -59,2 +59,3 @@ /// <reference path="../drop-down-base/drop-down-base-model.d.ts" />

protected isEscapeKey: boolean;
protected isTabKey: boolean;
private actionCompleteData;

@@ -66,2 +67,3 @@ protected prevSelectPoints: {

private searchKeyEvent;
private isPreventBlur;
protected keyConfigure: {

@@ -336,2 +338,3 @@ [key: string]: string;

}[], e?: Object, isUpdated?: boolean): void;
private addNewItem(listData, newElement);
private focusIndexItem();

@@ -338,0 +341,0 @@ protected updateSelection(): void;

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

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 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 not supported yet

Sorry, the diff of this file is not supported yet

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