@syncfusion/ej2-querybuilder 19.4.48 → 19.4.50

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.48
3
+ * version : 19.4.50
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@19.4.47",
3
+ "_id": "@syncfusion/ej2-querybuilder@19.4.48",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-xyq6hZflXTBUMYgdhvcaM1XhoXfguRw0+36nGgpXKMfoFh5E2xtYA+GESbgYM4W+fxUQ7K2HjwYJXhHJTK1SYA==",
5
+ "_integrity": "sha512-38+4DXealvr+/ilsoiXsSbntiZsi12LiBsyZj7m2Lt2sYbqASv3glc3KevxKzpN+56ID6iVUnDtp3hAGn6FehA==",
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": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-19.4.47.tgz",
27
- "_shasum": "530487879dd8d5b1a49db2933ab5de33804c9b93",
26
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-19.4.48.tgz",
27
+ "_shasum": "40848896d9dba8fe345fae9dc651c97e14420f14",
28
28
  "_spec": "@syncfusion/ej2-querybuilder@*",
29
29
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
30
30
  "author": {
@@ -33,9 +33,9 @@
33
33
  "bundleDependencies": false,
34
34
  "dependencies": {
35
35
  "@syncfusion/ej2-base": "~19.4.48",
36
- "@syncfusion/ej2-buttons": "~19.4.48",
37
- "@syncfusion/ej2-calendars": "~19.4.48",
38
- "@syncfusion/ej2-dropdowns": "~19.4.48",
36
+ "@syncfusion/ej2-buttons": "~19.4.50",
37
+ "@syncfusion/ej2-calendars": "~19.4.50",
38
+ "@syncfusion/ej2-dropdowns": "~19.4.50",
39
39
  "@syncfusion/ej2-inputs": "~19.4.48",
40
40
  "@syncfusion/ej2-splitbuttons": "~19.4.48"
41
41
  },
@@ -69,6 +69,6 @@
69
69
  "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/querybuilder"
70
70
  },
71
71
  "typings": "index.d.ts",
72
- "version": "19.4.48",
72
+ "version": "19.4.50",
73
73
  "sideEffects": false
74
74
  }
@@ -1324,6 +1324,9 @@ var QueryBuilder = /** @class */ (function (_super) {
1324
1324
  };
1325
1325
  QueryBuilder.prototype.changeField = function (args) {
1326
1326
  if (args.isInteracted) {
1327
+ if (isNullOrUndefined(args.value)) {
1328
+ return;
1329
+ }
1327
1330
  this.isFieldChange = true;
1328
1331
  this.prevItemData = args.itemData;
1329
1332
  var fieldElem = closest(args.element, '.e-rule-filter') || closest(args.element, '.e-rule-sub-filter');
@@ -1464,7 +1467,7 @@ var QueryBuilder = /** @class */ (function (_super) {
1464
1467
  getComponent(tooltipElem[i], 'tooltip').destroy();
1465
1468
  }
1466
1469
  if (!args.cancel) {
1467
- if (this.selectedColumn === null) {
1470
+ if (isNullOrUndefined(this.selectedColumn)) {
1468
1471
  return;
1469
1472
  }
1470
1473
  tempRule.type = this.selectedColumn.type;