@syncfusion/ej2-querybuilder 33.2.4 → 33.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 : 33.2.4
3
+ * version : 33.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. 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,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-querybuilder",
3
- "version": "33.2.4",
3
+ "version": "33.2.5",
4
4
  "description": "Essential JS 2 QueryBuilder",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -9,10 +9,10 @@
9
9
  "es2015": "./dist/es6/ej2-querybuilder.es5.js",
10
10
  "dependencies": {
11
11
  "@syncfusion/ej2-base": "~33.2.3",
12
- "@syncfusion/ej2-buttons": "~33.2.3",
13
- "@syncfusion/ej2-calendars": "~33.2.4",
14
- "@syncfusion/ej2-dropdowns": "~33.2.4",
15
- "@syncfusion/ej2-inputs": "~33.2.4",
12
+ "@syncfusion/ej2-buttons": "~33.2.5",
13
+ "@syncfusion/ej2-calendars": "~33.2.5",
14
+ "@syncfusion/ej2-dropdowns": "~33.2.5",
15
+ "@syncfusion/ej2-inputs": "~33.2.5",
16
16
  "@syncfusion/ej2-splitbuttons": "~33.2.3"
17
17
  },
18
18
  "devDependencies": {},
@@ -3438,7 +3438,9 @@ var QueryBuilder = /** @class */ (function (_super) {
3438
3438
  var isTemplate = (typeof itemData.template === 'string');
3439
3439
  if (rule.value && !isNullOrUndefined(format)) {
3440
3440
  selVal = (length_1 > 1) ? rule.value[i] : rule.value;
3441
- selectedValue = this.parseDate(selVal, format) || new Date();
3441
+ if (selVal) {
3442
+ selectedValue = this.parseDate(selVal, format) || new Date();
3443
+ }
3442
3444
  }
3443
3445
  if (!isNullOrUndefined(itemData) && itemData.value && !isTemplate) {
3444
3446
  var parsedDate = this.parseDate(itemData.value.toString(), itemData.format);