@syncfusion/ej2-querybuilder 23.1.36 → 23.1.38

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,7 +1,7 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 23.1.36
4
- * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
3
+ * version : 23.1.38
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
7
7
  * licensing@syncfusion.com. Any infringement will be prosecuted under
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-querybuilder@*",
3
- "_id": "@syncfusion/ej2-querybuilder@18.24.1",
3
+ "_id": "@syncfusion/ej2-querybuilder@23.1.36",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-TR2/bPe4IL860JFZb6v5wqumcZxXWhwRUPi7pAozcJxyljmsyLpeSQCPfDP4sp5WzPCblBdOyFjZFGzapUD7Uw==",
5
+ "_integrity": "sha512-Y1PpWURzXsJOGZz+13ww+hz78lDoOzXI6RAF8GdxZcmkA8AL2BXE1E7AwhmA7qOaA1PbPCE8fE3e93EIga9lDA==",
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.24.1.tgz",
27
- "_shasum": "807962d5decdf309cbfc488e6fd95e67b49df099",
26
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-querybuilder/-/ej2-querybuilder-23.1.36.tgz",
27
+ "_shasum": "6bac49c33d064d302743a527ed45f660e6e0af87",
28
28
  "_spec": "@syncfusion/ej2-querybuilder@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
30
30
  "author": {
@@ -32,11 +32,11 @@
32
32
  },
33
33
  "bundleDependencies": false,
34
34
  "dependencies": {
35
- "@syncfusion/ej2-base": "~23.1.36",
35
+ "@syncfusion/ej2-base": "~23.1.38",
36
36
  "@syncfusion/ej2-buttons": "~23.1.36",
37
- "@syncfusion/ej2-calendars": "~23.1.36",
38
- "@syncfusion/ej2-dropdowns": "~23.1.36",
39
- "@syncfusion/ej2-inputs": "~23.1.36",
37
+ "@syncfusion/ej2-calendars": "~23.1.38",
38
+ "@syncfusion/ej2-dropdowns": "~23.1.38",
39
+ "@syncfusion/ej2-inputs": "~23.1.38",
40
40
  "@syncfusion/ej2-splitbuttons": "~23.1.36"
41
41
  },
42
42
  "deprecated": false,
@@ -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": "23.1.36",
69
+ "version": "23.1.38",
70
70
  "sideEffects": false,
71
71
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
72
72
  }
@@ -2584,15 +2584,23 @@ var QueryBuilder = /** @class */ (function (_super) {
2584
2584
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
2585
2585
  if (this.isReact) {
2586
2586
  valElem = this.columnTemplateFn(args, this, ruleID, templateID)[0];
2587
+ target.nextElementSibling.appendChild(valElem);
2587
2588
  } // eslint-disable-next-line @typescript-eslint/no-explicit-any
2588
2589
  else if (this.isAngular) {
2589
2590
  var valElemColl = this.columnTemplateFn(args, this, ruleID, templateID);
2590
2591
  valElem = (valElemColl[0].nodeType === 3) ? valElemColl[1] : valElemColl[0];
2592
+ target.nextElementSibling.appendChild(valElem);
2593
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
2594
+ }
2595
+ else if (this.isVue3) {
2596
+ valElem = this.columnTemplateFn(args, this, 'Template', templateID);
2597
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
2598
+ append(valElem, target.nextElementSibling);
2591
2599
  }
2592
2600
  else {
2593
2601
  valElem = this.columnTemplateFn(args, this, 'Template', templateID)[0];
2602
+ target.nextElementSibling.appendChild(valElem);
2594
2603
  }
2595
- target.nextElementSibling.appendChild(valElem);
2596
2604
  addClass([target.nextElementSibling], 'e-template-value');
2597
2605
  this.renderReactTemplates();
2598
2606
  return true;