@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
|
@@ -14481,7 +14481,7 @@ class TabsOutletComponent {
|
|
|
14481
14481
|
if (this.tabs) {
|
|
14482
14482
|
visibleTabs = this.tabs.filter(tab => tab.hide !== true);
|
|
14483
14483
|
}
|
|
14484
|
-
return visibleTabs.length > 1;
|
|
14484
|
+
return visibleTabs.length > 1 || visibleTabs.find(tab => tab.showAlways);
|
|
14485
14485
|
}
|
|
14486
14486
|
get isHorizontal() {
|
|
14487
14487
|
return this.orientation === 'horizontal';
|