@c8y/ngx-components 1018.0.162 → 1018.0.164
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/NOTICES +1 -1
- package/core/tabs/tab.model.d.ts +5 -0
- package/core/tabs/tabs-outlet.component.d.ts +1 -1
- package/esm2020/context-dashboard/add-dashboard.factory.mjs +3 -2
- package/esm2020/context-dashboard/context-dashboard.service.mjs +7 -1
- package/esm2020/core/tabs/tab.model.mjs +1 -1
- package/esm2020/core/tabs/tabs-outlet.component.mjs +2 -2
- package/fesm2015/c8y-ngx-components-context-dashboard.mjs +8 -1
- package/fesm2015/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components.mjs +1 -1
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-context-dashboard.mjs +8 -1
- package/fesm2020/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components.mjs +1 -1
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -14585,7 +14585,7 @@ class TabsOutletComponent {
|
|
|
14585
14585
|
if (this.tabs) {
|
|
14586
14586
|
visibleTabs = this.tabs.filter(tab => tab.hide !== true);
|
|
14587
14587
|
}
|
|
14588
|
-
return visibleTabs.length > 1;
|
|
14588
|
+
return visibleTabs.length > 1 || visibleTabs.find(tab => tab.showAlways);
|
|
14589
14589
|
}
|
|
14590
14590
|
get isHorizontal() {
|
|
14591
14591
|
return this.orientation === 'horizontal';
|