qms-angular 1.0.59 → 1.0.60
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 +7 -0
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/related/popup/related-popup.component.js +4 -1
- package/esm2015/lib/components/tree/tree.component.js +5 -1
- package/fesm2015/qms-angular.js +7 -0
- package/fesm2015/qms-angular.js.map +1 -1
- package/package.json +1 -1
@@ -4580,6 +4580,10 @@
|
|
4580
4580
|
if (this.treeConfig.expandAll) {
|
4581
4581
|
this.treeControl.expandAll();
|
4582
4582
|
}
|
4583
|
+
//Disabled node
|
4584
|
+
if (this.disabledList.length) {
|
4585
|
+
this.checkDisabledList();
|
4586
|
+
}
|
4583
4587
|
// Risk Tree
|
4584
4588
|
if (this.selectedRiskData.length) {
|
4585
4589
|
var selectedData_1 = [];
|
@@ -6475,6 +6479,9 @@
|
|
6475
6479
|
};
|
6476
6480
|
RelatedPopupComponent.prototype.selectNodeTreeEvent = function (node) {
|
6477
6481
|
var _a, _b, _c, _d;
|
6482
|
+
if (!node.itemType) {
|
6483
|
+
return;
|
6484
|
+
}
|
6478
6485
|
var position = -1;
|
6479
6486
|
var parentName = '';
|
6480
6487
|
var itemNumberId = '';
|