qms-angular 1.1.10 → 1.1.12
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 +12 -3
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/qms-nav-drawer/qms-nav-drawer.component.js +3 -3
- package/esm2015/lib/directives/qms-multi-icon.directive.js +11 -2
- package/fesm2015/qms-angular.js +12 -3
- package/fesm2015/qms-angular.js.map +1 -1
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
@@ -3785,7 +3785,16 @@
|
|
3785
3785
|
'icon-local-folder-open',
|
3786
3786
|
'icon-regional-document',
|
3787
3787
|
'icon-regional-folder-closed',
|
3788
|
-
'icon-regional-folder-open'
|
3788
|
+
'icon-regional-folder-open',
|
3789
|
+
'icon-document_attachment_regional',
|
3790
|
+
'icon-document_url_regional',
|
3791
|
+
'icon-document_virtual_regional',
|
3792
|
+
'icon-document_attachment_enterprise',
|
3793
|
+
'icon-document_url_enterprise',
|
3794
|
+
'icon-document_virtual_enterprise',
|
3795
|
+
'icon-document_attachment_local',
|
3796
|
+
'icon-document_url_local',
|
3797
|
+
'icon-document_virtual_local',
|
3789
3798
|
];
|
3790
3799
|
this.icon_3path = ['icon-document-read', 'icon-file-pdf-verified', 'icon-flammable'];
|
3791
3800
|
this.icon_4path = ['icon-oxidizing'];
|
@@ -29933,8 +29942,8 @@
|
|
29933
29942
|
};
|
29934
29943
|
QMSNavDrawerComponent.prototype._activeNode = function () {
|
29935
29944
|
var currNode = this.openNodes[this.openNodes.length - 1];
|
29936
|
-
var idxParent = this.openNodes.length
|
29937
|
-
var parentNode = idxParent ? this.openNodes[idxParent] : '';
|
29945
|
+
var idxParent = this.openNodes.length >= 2 ? this.openNodes.length - 2 : '';
|
29946
|
+
var parentNode = idxParent !== '' ? this.openNodes[idxParent] : '';
|
29938
29947
|
this.activeNode = this.getActiveNode(currNode, parentNode);
|
29939
29948
|
};
|
29940
29949
|
QMSNavDrawerComponent.prototype.getActiveNode = function (id, parentId) {
|