@syncfusion/ej2-dropdowns 26.2.4 → 26.2.5

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 : 26.2.4
3
+ * version : 26.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. 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@26.1.42",
3
+ "_id": "@syncfusion/ej2-dropdowns@26.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-UdClEhY2HQbTYT+UOxMqhEUglpxG0pJHaUqTZrf2F/GR7flia6DxFcinW3FGptCAN2jX/mfj7aMlNvzH2jueYA==",
5
+ "_integrity": "sha512-rYtFrunryOtJIvcg6Izb0ZowqYEWuLASJHoM/wmI3KYUvkCbSlCarJKXOdgr+bybY/Y15ptJM3CW8f7LaHK6Zg==",
6
6
  "_location": "/@syncfusion/ej2-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -35,8 +35,8 @@
35
35
  "/@syncfusion/ej2-spreadsheet",
36
36
  "/@syncfusion/ej2-vue-dropdowns"
37
37
  ],
38
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-26.1.42.tgz",
39
- "_shasum": "e053447f5050e03aae0fbcad3f9b4050fd8ac7cb",
38
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-26.2.4.tgz",
39
+ "_shasum": "905bcd69a60c92c8eb1203b485d3dbb5373f8ccf",
40
40
  "_spec": "@syncfusion/ej2-dropdowns@*",
41
41
  "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
42
42
  "author": {
@@ -44,13 +44,13 @@
44
44
  },
45
45
  "bundleDependencies": false,
46
46
  "dependencies": {
47
- "@syncfusion/ej2-base": "~26.2.4",
48
- "@syncfusion/ej2-data": "~26.2.4",
49
- "@syncfusion/ej2-inputs": "~26.2.4",
50
- "@syncfusion/ej2-lists": "~26.2.4",
51
- "@syncfusion/ej2-navigations": "~26.2.4",
52
- "@syncfusion/ej2-notifications": "~26.2.4",
53
- "@syncfusion/ej2-popups": "~26.2.4"
47
+ "@syncfusion/ej2-base": "~26.2.5",
48
+ "@syncfusion/ej2-data": "~26.2.5",
49
+ "@syncfusion/ej2-inputs": "~26.2.5",
50
+ "@syncfusion/ej2-lists": "~26.2.5",
51
+ "@syncfusion/ej2-navigations": "~26.2.5",
52
+ "@syncfusion/ej2-notifications": "~26.2.5",
53
+ "@syncfusion/ej2-popups": "~26.2.5"
54
54
  },
55
55
  "deprecated": false,
56
56
  "description": "Essential JS 2 DropDown Components",
@@ -75,7 +75,7 @@
75
75
  "module": "./index.js",
76
76
  "name": "@syncfusion/ej2-dropdowns",
77
77
  "typings": "index.d.ts",
78
- "version": "26.2.4",
78
+ "version": "26.2.5",
79
79
  "sideEffects": false,
80
80
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
81
81
  }
@@ -1284,12 +1284,21 @@ var DropDownBase = /** @class */ (function (_super) {
1284
1284
  option.templateID = this.itemTemplateId;
1285
1285
  option.isStringTemplate = this.isStringTemplate;
1286
1286
  var itemcheck = this.templateCompiler(this.itemTemplate);
1287
+ var ulElement;
1287
1288
  if (typeof this.itemTemplate !== 'function' && itemcheck) {
1288
1289
  var itemValue = select(this.itemTemplate, document).innerHTML.trim();
1289
- return ListBase.renderContentTemplate(this.createElement, itemValue, dataSource, fields.properties, option, this);
1290
+ ulElement = ListBase.renderContentTemplate(this.createElement, itemValue, dataSource, fields.properties, option, this);
1291
+ if (this.isVirtualizationEnabled && this.isReact) {
1292
+ this.renderReactTemplates();
1293
+ }
1294
+ return ulElement;
1290
1295
  }
1291
1296
  else {
1292
- return ListBase.renderContentTemplate(this.createElement, this.itemTemplate, dataSource, fields.properties, option, this);
1297
+ ulElement = ListBase.renderContentTemplate(this.createElement, this.itemTemplate, dataSource, fields.properties, option, this);
1298
+ if (this.isVirtualizationEnabled && this.isReact) {
1299
+ this.renderReactTemplates();
1300
+ }
1301
+ return ulElement;
1293
1302
  }
1294
1303
  };
1295
1304
  DropDownBase.prototype.typeOfData = function (items) {