qms-angular 1.0.79 → 1.0.80
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/qms-angular.umd.js +1 -5
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/select-one/select-one.component.js +1 -5
- package/esm2015/lib/components/tree/tree.component.js +2 -2
- package/fesm2015/qms-angular.js +1 -5
- package/fesm2015/qms-angular.js.map +1 -1
- package/package.json +1 -1
@@ -4967,7 +4967,7 @@
|
|
4967
4967
|
for (var i = 0; i < obj.children.length; i++) {
|
4968
4968
|
if (obj.children[i].children) {
|
4969
4969
|
this.getChild(obj.children[i]);
|
4970
|
-
delete obj.children[i].children;
|
4970
|
+
// delete obj.children[i].children;
|
4971
4971
|
this.listChildNode.push(obj.children[i]);
|
4972
4972
|
}
|
4973
4973
|
else {
|
@@ -19544,10 +19544,6 @@
|
|
19544
19544
|
};
|
19545
19545
|
SelectOneDialog.prototype.selectItemSearched = function (item) {
|
19546
19546
|
var _this = this;
|
19547
|
-
var _a;
|
19548
|
-
if ((_a = this.treeConfig) === null || _a === void 0 ? void 0 : _a.selectOne) {
|
19549
|
-
this.disabledList = [];
|
19550
|
-
}
|
19551
19547
|
// reset to root
|
19552
19548
|
this.expandToChildNode = [''];
|
19553
19549
|
this.checkedNodeList = [];
|