@syncfusion/ej2-dropdowns 27.2.4 → 27.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 : 27.2.4
3
+ * version : 27.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@27.2.3",
3
+ "_id": "@syncfusion/ej2-dropdowns@27.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-LHpRyFlnkppjWgXxKv8CQL3l5jIDMYlI7EiDyuTovWdECbc2hckibuK1sZcSLpWob+2rKkhzvmo+CXuTB8ffbw==",
5
+ "_integrity": "sha512-kwUZ/36PpkSlj/Dt+Pely38/+otGDsjMAHtJqd6pucIRE+qskmr+68t6w+e1ejmxsCSRRgLJ8TTOILCNQQT6Mg==",
6
6
  "_location": "/@syncfusion/ej2-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -36,8 +36,8 @@
36
36
  "/@syncfusion/ej2-spreadsheet",
37
37
  "/@syncfusion/ej2-vue-dropdowns"
38
38
  ],
39
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-27.2.3.tgz",
40
- "_shasum": "d86eb63395912d970396ea24c9e74a626db22c46",
39
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-27.2.4.tgz",
40
+ "_shasum": "8e13af0cfcf786fbae3399f4fb7145e43b708535",
41
41
  "_spec": "@syncfusion/ej2-dropdowns@*",
42
42
  "_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
43
43
  "author": {
@@ -45,11 +45,11 @@
45
45
  },
46
46
  "bundleDependencies": false,
47
47
  "dependencies": {
48
- "@syncfusion/ej2-base": "~27.2.2",
48
+ "@syncfusion/ej2-base": "~27.2.5",
49
49
  "@syncfusion/ej2-data": "~27.2.2",
50
50
  "@syncfusion/ej2-inputs": "~27.2.4",
51
- "@syncfusion/ej2-lists": "~27.2.3",
52
- "@syncfusion/ej2-navigations": "~27.2.4",
51
+ "@syncfusion/ej2-lists": "~27.2.5",
52
+ "@syncfusion/ej2-navigations": "~27.2.5",
53
53
  "@syncfusion/ej2-notifications": "~27.2.4",
54
54
  "@syncfusion/ej2-popups": "~27.2.2"
55
55
  },
@@ -76,7 +76,7 @@
76
76
  "module": "./index.js",
77
77
  "name": "@syncfusion/ej2-dropdowns",
78
78
  "typings": "index.d.ts",
79
- "version": "27.2.4",
79
+ "version": "27.2.5",
80
80
  "sideEffects": false,
81
81
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
82
82
  }
@@ -1260,7 +1260,13 @@ var DropDownBase = /** @class */ (function (_super) {
1260
1260
  var oldUlElement = this.list.querySelector('.e-list-parent');
1261
1261
  var virtualUlElement = this.list.querySelector('.e-virtual-ddl-content');
1262
1262
  if ((listData.length >= this.virtualizedItemsCount && oldUlElement && virtualUlElement) || (oldUlElement && virtualUlElement && this.isAllowFiltering) || (oldUlElement && virtualUlElement && this.getModuleName() === 'autocomplete')) {
1263
- virtualUlElement.replaceChild(ulElement, oldUlElement);
1263
+ if (this.getModuleName() === 'multiselect' && this.isCheckBoxSelection && this.appendUncheckList && this.list && this.list.querySelector('.e-active')) {
1264
+ virtualUlElement.appendChild(ulElement);
1265
+ isCheckBoxUpdate = true;
1266
+ }
1267
+ else {
1268
+ virtualUlElement.replaceChild(ulElement, oldUlElement);
1269
+ }
1264
1270
  var reOrderList = this.list.querySelectorAll('.e-reorder');
1265
1271
  if (this.list.querySelector('.e-virtual-ddl-content') && reOrderList && reOrderList.length > 0 && !isCheckBoxUpdate) {
1266
1272
  this.list.querySelector('.e-virtual-ddl-content').removeChild(reOrderList[0]);
@@ -273,7 +273,7 @@ var DropDownTree = /** @class */ (function (_super) {
273
273
  }
274
274
  else {
275
275
  if (!isNOU(this.element.id)) {
276
- this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text', id: this.element.id } });
276
+ this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text', id: this.element.id + '_textbox' } });
277
277
  }
278
278
  else {
279
279
  this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text' } });
@@ -1536,6 +1536,9 @@ var DropDownTree = /** @class */ (function (_super) {
1536
1536
  var id = this.value[0].toString();
1537
1537
  if (this.treeObj.selectedNodes[0] !== id) {
1538
1538
  setValue('selectedNodes', [id], this.treeObj);
1539
+ if (this.fields.dataSource instanceof DataManager) {
1540
+ this.updateSelectedValues();
1541
+ }
1539
1542
  }
1540
1543
  }
1541
1544
  else {
@@ -3170,6 +3170,7 @@ var MultiSelect = /** @class */ (function (_super) {
3170
3170
  MultiSelect.prototype.clearAll = function (e) {
3171
3171
  if (this.enabled && !this.readonly) {
3172
3172
  var temp = void 0;
3173
+ this.setDynValue = false;
3173
3174
  if (this.value && this.value.length > 0) {
3174
3175
  if (this.allowFiltering) {
3175
3176
  this.refreshListItems(null);
@@ -2520,19 +2520,19 @@ ejs-multiselect {
2520
2520
  }
2521
2521
 
2522
2522
  .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2523
- color: rgba(var(--color-sf-on-surface-variant));
2523
+ color: rgba(var(--color-sf-outline));
2524
2524
  }
2525
2525
 
2526
2526
  .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2527
- color: rgba(var(--color-sf-on-surface-variant));
2527
+ color: rgba(var(--color-sf-outline));
2528
2528
  }
2529
2529
 
2530
2530
  .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2531
- color: rgba(var(--color-sf-on-surface-variant));
2531
+ color: rgba(var(--color-sf-outline));
2532
2532
  }
2533
2533
 
2534
2534
  .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2535
- color: rgba(var(--color-sf-on-surface-variant));
2535
+ color: rgba(var(--color-sf-outline));
2536
2536
  }
2537
2537
 
2538
2538
  .e-ul.e-reorder {
@@ -2753,19 +2753,19 @@ ejs-multiselect {
2753
2753
  }
2754
2754
 
2755
2755
  .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2756
- color: rgba(var(--color-sf-on-surface-variant));
2756
+ color: rgba(var(--color-sf-outline));
2757
2757
  }
2758
2758
 
2759
2759
  .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2760
- color: rgba(var(--color-sf-on-surface-variant));
2760
+ color: rgba(var(--color-sf-outline));
2761
2761
  }
2762
2762
 
2763
2763
  .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2764
- color: rgba(var(--color-sf-on-surface-variant));
2764
+ color: rgba(var(--color-sf-outline));
2765
2765
  }
2766
2766
 
2767
2767
  .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2768
- color: rgba(var(--color-sf-on-surface-variant));
2768
+ color: rgba(var(--color-sf-outline));
2769
2769
  }
2770
2770
 
2771
2771
  .e-ul.e-reorder {
@@ -2522,19 +2522,19 @@ ejs-multiselect {
2522
2522
  }
2523
2523
 
2524
2524
  .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2525
- color: rgba(var(--color-sf-on-surface-variant));
2525
+ color: rgba(var(--color-sf-outline));
2526
2526
  }
2527
2527
 
2528
2528
  .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2529
- color: rgba(var(--color-sf-on-surface-variant));
2529
+ color: rgba(var(--color-sf-outline));
2530
2530
  }
2531
2531
 
2532
2532
  .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2533
- color: rgba(var(--color-sf-on-surface-variant));
2533
+ color: rgba(var(--color-sf-outline));
2534
2534
  }
2535
2535
 
2536
2536
  .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2537
- color: rgba(var(--color-sf-on-surface-variant));
2537
+ color: rgba(var(--color-sf-outline));
2538
2538
  }
2539
2539
 
2540
2540
  .e-ul.e-reorder {
@@ -2755,19 +2755,19 @@ ejs-multiselect {
2755
2755
  }
2756
2756
 
2757
2757
  .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2758
- color: rgba(var(--color-sf-on-surface-variant));
2758
+ color: rgba(var(--color-sf-outline));
2759
2759
  }
2760
2760
 
2761
2761
  .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2762
- color: rgba(var(--color-sf-on-surface-variant));
2762
+ color: rgba(var(--color-sf-outline));
2763
2763
  }
2764
2764
 
2765
2765
  .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2766
- color: rgba(var(--color-sf-on-surface-variant));
2766
+ color: rgba(var(--color-sf-outline));
2767
2767
  }
2768
2768
 
2769
2769
  .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
2770
- color: rgba(var(--color-sf-on-surface-variant));
2770
+ color: rgba(var(--color-sf-outline));
2771
2771
  }
2772
2772
 
2773
2773
  .e-ul.e-reorder {
@@ -99,7 +99,7 @@ $ddl-popup-active-focus-font-color: rgba($flyout-text-color-selected) !default;
99
99
  $ddl-popup-active-focus-border-color: $transparent !default;
100
100
  $ddl-popup-active-focus-border-width: 1px !default;
101
101
  $ddl-popup-active-focus-shadow-item: none !default;
102
- $ddl-input-placeholder: rgba($content-text-color-alt1) !default;
102
+ $ddl-input-placeholder: rgba($border) !default;
103
103
  $ddl-popup-active-border-color: rgba($primary) !default;
104
104
  $ddl-popup-active-border-width: 1px !default;
105
105
  $ddl-delim-text-indent: 0 !default;
@@ -1557,19 +1557,19 @@ ejs-multiselect {
1557
1557
  }
1558
1558
 
1559
1559
  .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1560
- color: rgba(var(--color-sf-on-surface-variant));
1560
+ color: rgba(var(--color-sf-outline));
1561
1561
  }
1562
1562
 
1563
1563
  .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1564
- color: rgba(var(--color-sf-on-surface-variant));
1564
+ color: rgba(var(--color-sf-outline));
1565
1565
  }
1566
1566
 
1567
1567
  .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1568
- color: rgba(var(--color-sf-on-surface-variant));
1568
+ color: rgba(var(--color-sf-outline));
1569
1569
  }
1570
1570
 
1571
1571
  .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1572
- color: rgba(var(--color-sf-on-surface-variant));
1572
+ color: rgba(var(--color-sf-outline));
1573
1573
  }
1574
1574
 
1575
1575
  .e-ul.e-reorder {
@@ -1559,19 +1559,19 @@ ejs-multiselect {
1559
1559
  }
1560
1560
 
1561
1561
  .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1562
- color: rgba(var(--color-sf-on-surface-variant));
1562
+ color: rgba(var(--color-sf-outline));
1563
1563
  }
1564
1564
 
1565
1565
  .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1566
- color: rgba(var(--color-sf-on-surface-variant));
1566
+ color: rgba(var(--color-sf-outline));
1567
1567
  }
1568
1568
 
1569
1569
  .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1570
- color: rgba(var(--color-sf-on-surface-variant));
1570
+ color: rgba(var(--color-sf-outline));
1571
1571
  }
1572
1572
 
1573
1573
  .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1574
- color: rgba(var(--color-sf-on-surface-variant));
1574
+ color: rgba(var(--color-sf-outline));
1575
1575
  }
1576
1576
 
1577
1577
  .e-ul.e-reorder {