@acorex/components 3.0.43 → 3.0.44
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.
- package/bundles/acorex-components.umd.js +2 -6
- package/bundles/acorex-components.umd.js.map +1 -1
- package/bundles/acorex-components.umd.min.js +1 -1
- package/bundles/acorex-components.umd.min.js.map +1 -1
- package/esm2015/lib/query-builder/query-builder-group.component.js +1 -2
- package/esm2015/lib/query-builder/query-builder.service.js +1 -4
- package/esm2015/lib/tree-view/tree-view.component.js +3 -3
- package/esm5/lib/query-builder/query-builder-group.component.js +1 -2
- package/esm5/lib/query-builder/query-builder.service.js +1 -4
- package/esm5/lib/tree-view/tree-view.component.js +3 -3
- package/fesm2015/acorex-components.js +2 -6
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +2 -6
- package/fesm5/acorex-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -10021,7 +10021,6 @@ var AXQueryBuilderService = /** @class */ (function () {
|
|
|
10021
10021
|
return __generator(this, function (_d) {
|
|
10022
10022
|
switch (_d.label) {
|
|
10023
10023
|
case 0:
|
|
10024
|
-
debugger;
|
|
10025
10024
|
if (group.items.length > 0) {
|
|
10026
10025
|
query = ' ( ';
|
|
10027
10026
|
}
|
|
@@ -10080,7 +10079,6 @@ var AXQueryBuilderService = /** @class */ (function () {
|
|
|
10080
10079
|
codeOperator = item.operator;
|
|
10081
10080
|
break;
|
|
10082
10081
|
}
|
|
10083
|
-
debugger;
|
|
10084
10082
|
query = query + ' ' + item.caption + ' ' + codeOperator + ' ' + item.text;
|
|
10085
10083
|
_d.label = 6;
|
|
10086
10084
|
case 6:
|
|
@@ -10123,7 +10121,6 @@ var AXQueryBuilderService = /** @class */ (function () {
|
|
|
10123
10121
|
var query = '';
|
|
10124
10122
|
switch (type) {
|
|
10125
10123
|
case 'simple':
|
|
10126
|
-
debugger;
|
|
10127
10124
|
if (group.items.length > 0) {
|
|
10128
10125
|
query = ' ( ';
|
|
10129
10126
|
}
|
|
@@ -10265,7 +10262,6 @@ var AXQueryBuilderGroupComponent = /** @class */ (function () {
|
|
|
10265
10262
|
};
|
|
10266
10263
|
AXQueryBuilderGroupComponent.prototype.ruleChanged = function (e) {
|
|
10267
10264
|
var _this = this;
|
|
10268
|
-
debugger;
|
|
10269
10265
|
// this.group.queryString = this.qs.getQueryString(this.group, 'simple');
|
|
10270
10266
|
this.qs.getQueryStringSimple(this.group).then(function (c) {
|
|
10271
10267
|
_this.group.queryString = c;
|
|
@@ -13850,7 +13846,7 @@ var AXTreeViewComponent = /** @class */ (function (_super) {
|
|
|
13850
13846
|
}
|
|
13851
13847
|
};
|
|
13852
13848
|
node.parent.unSelectParent = function () {
|
|
13853
|
-
if (item.parentNode['select']
|
|
13849
|
+
if (item.parentNode['select'] != false) {
|
|
13854
13850
|
_this.internalSelectItem(item.parentNode, true);
|
|
13855
13851
|
}
|
|
13856
13852
|
};
|
|
@@ -13865,7 +13861,7 @@ var AXTreeViewComponent = /** @class */ (function (_super) {
|
|
|
13865
13861
|
};
|
|
13866
13862
|
node.children.unSelectChilds = function () {
|
|
13867
13863
|
item.childeren.forEach(function (element) {
|
|
13868
|
-
if (element['select']
|
|
13864
|
+
if (element['select'] != false) {
|
|
13869
13865
|
_this.internalSelectItem(element, true);
|
|
13870
13866
|
}
|
|
13871
13867
|
});
|