@syncfusion/ej2-dropdowns 19.4.55 → 19.4.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 19.4.55
3
+ * version : 19.4.56
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-dropdowns@*",
3
- "_id": "@syncfusion/ej2-dropdowns@19.4.54",
3
+ "_id": "@syncfusion/ej2-dropdowns@19.4.55",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-r8PsHLkwM8ArSL9XypVNZIk2Mspnx/vMtVwjZvhlzATf1Iqa7reQKSRgfLXh+wth0O5y1Kp5aOCWaG5LevYfnw==",
5
+ "_integrity": "sha512-ZOsoaEJe3E8FnWEX/o0UCj2o2SG+mtKNG8O+tiwkzIXvpapZv3dlxjgpTcHJ7UzequRs1e4Nzu2aXkQktYMwMQ==",
6
6
  "_location": "/@syncfusion/ej2-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -33,8 +33,8 @@
33
33
  "/@syncfusion/ej2-spreadsheet",
34
34
  "/@syncfusion/ej2-vue-dropdowns"
35
35
  ],
36
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-19.4.54.tgz",
37
- "_shasum": "d63a753bbcb7c2139a028a69da21c409b0502e88",
36
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-19.4.55.tgz",
37
+ "_shasum": "3b22435822f074bd074a4ec707cd9eb7e92c26bd",
38
38
  "_spec": "@syncfusion/ej2-dropdowns@*",
39
39
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
40
40
  "author": {
@@ -46,7 +46,7 @@
46
46
  "@syncfusion/ej2-data": "~19.4.54",
47
47
  "@syncfusion/ej2-inputs": "~19.4.52",
48
48
  "@syncfusion/ej2-lists": "~19.4.55",
49
- "@syncfusion/ej2-navigations": "~19.4.55",
49
+ "@syncfusion/ej2-navigations": "~19.4.56",
50
50
  "@syncfusion/ej2-popups": "~19.4.53"
51
51
  },
52
52
  "deprecated": false,
@@ -72,6 +72,6 @@
72
72
  "module": "./index.js",
73
73
  "name": "@syncfusion/ej2-dropdowns",
74
74
  "typings": "index.d.ts",
75
- "version": "19.4.55",
75
+ "version": "19.4.56",
76
76
  "sideEffects": false
77
77
  }
@@ -2470,7 +2470,8 @@ var MultiSelect = /** @class */ (function (_super) {
2470
2470
  var isReactTemplateUpdate = ((this.ulElement.childElementCount > 0 && this.ulElement.children[0].childElementCount > 0) && (this.mainList.children[0].childElementCount < this.ulElement.children[0].childElementCount));
2471
2471
  var isAngularTemplateUpdate = this.itemTemplate && this.ulElement.childElementCount > 0 && (this.ulElement.children[0].childElementCount > 0 || (this.fields.groupBy && this.ulElement.children[1] && this.ulElement.children[1].childElementCount > 0));
2472
2472
  if (isDynamicGroupItemUpdate || isReactTemplateUpdate || isAngularTemplateUpdate) {
2473
- this.mainList = this.ulElement.cloneNode ? this.ulElement.cloneNode(true) : this.ulElement;
2473
+ //EJ2-57748 - for this task, we prevent the ul element cloning ( this.mainList = this.ulElement.cloneNode ? <HTMLElement>this.ulElement.cloneNode(true) : this.ulElement;)
2474
+ this.mainList = this.ulElement;
2474
2475
  }
2475
2476
  }
2476
2477
  };