@syncfusion/ej2-querybuilder 21.1.35 → 21.1.37

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 : 21.1.35
3
+ * version : 21.1.37
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-querybuilder@*",
3
- "_id": "@syncfusion/ej2-querybuilder@18.23.1",
3
+ "_id": "@syncfusion/ej2-querybuilder@21.1.35",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-02uJQ5uBN6/DujdhEV5MIylwpxYrGckneCGZeaNxcwWAAH3F6rgzssgjDLHxta6+g3Dn0EBcnW70ndSU6zmY6Q==",
5
+ "_integrity": "sha512-AMNYkcTb4Dql0T0yMGzG/Jbc7fj5XsPLi6vrLDR66vkY+Fv8Mc4x5RyQNFseYZbiExx58Q/tv3njx/Qc9lNXYQ==",
6
6
  "_location": "/@syncfusion/ej2-querybuilder",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -23,8 +23,8 @@
23
23
  "/@syncfusion/ej2-react-querybuilder",
24
24
  "/@syncfusion/ej2-vue-querybuilder"
25
25
  ],
26
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-18.23.1.tgz",
27
- "_shasum": "c887735acecaa148d8b68486299ac8034822896b",
26
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-21.1.35.tgz",
27
+ "_shasum": "6b6124524dd41257a57cbeb852c19906fef9831e",
28
28
  "_spec": "@syncfusion/ej2-querybuilder@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
30
30
  "author": {
@@ -32,12 +32,12 @@
32
32
  },
33
33
  "bundleDependencies": false,
34
34
  "dependencies": {
35
- "@syncfusion/ej2-base": "~21.1.35",
36
- "@syncfusion/ej2-buttons": "~21.1.35",
37
- "@syncfusion/ej2-calendars": "~21.1.35",
38
- "@syncfusion/ej2-dropdowns": "~21.1.35",
39
- "@syncfusion/ej2-inputs": "~21.1.35",
40
- "@syncfusion/ej2-splitbuttons": "~21.1.35"
35
+ "@syncfusion/ej2-base": "~21.1.37",
36
+ "@syncfusion/ej2-buttons": "~21.1.37",
37
+ "@syncfusion/ej2-calendars": "~21.1.37",
38
+ "@syncfusion/ej2-dropdowns": "~21.1.37",
39
+ "@syncfusion/ej2-inputs": "~21.1.37",
40
+ "@syncfusion/ej2-splitbuttons": "~21.1.37"
41
41
  },
42
42
  "deprecated": false,
43
43
  "description": "Essential JS 2 QueryBuilder",
@@ -66,7 +66,7 @@
66
66
  "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/querybuilder"
67
67
  },
68
68
  "typings": "index.d.ts",
69
- "version": "21.1.35",
69
+ "version": "21.1.37",
70
70
  "sideEffects": false,
71
71
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
72
72
  }
@@ -887,8 +887,8 @@ var QueryBuilder = /** @class */ (function (_super) {
887
887
  else if ((dropDownObj && dropDownObj.element && isNullOrUndefined(dropDownObj.index)) ||
888
888
  (dropDownTreeObj && dropDownTreeObj.element && (isNullOrUndefined(dropDownTreeObj.value) ||
889
889
  dropDownTreeObj.value.length < 1))) {
890
- if (fieldElem.className.indexOf('e-tooltip') < 0) {
891
- this.renderToolTip(fieldElem);
890
+ if (fieldElem.parentElement.className.indexOf('e-tooltip') < 0) {
891
+ this.renderToolTip(fieldElem.parentElement);
892
892
  }
893
893
  isValid = false;
894
894
  }
@@ -2694,8 +2694,8 @@ var QueryBuilder = /** @class */ (function (_super) {
2694
2694
  if (!this.isImportRules) {
2695
2695
  this.trigger('change', eventsArgs);
2696
2696
  }
2697
- if (this.allowValidation && rule.rules[index].field && target.className.indexOf('e-tooltip') > -1) {
2698
- getComponent(target, 'tooltip').destroy();
2697
+ if (this.allowValidation && rule.rules[index].field && target.parentElement.className.indexOf('e-tooltip') > -1) {
2698
+ getComponent(target.parentElement, 'tooltip').destroy();
2699
2699
  }
2700
2700
  this.filterRules(beforeRules, this.getValidRules(this.rule), 'field');
2701
2701
  }