2022-07-08 08:58:23 +02:00
|
|
|
<div class="main-container">
|
|
|
|
|
<ng-container *ngIf="(authService.user | async) || {} as user">
|
|
|
|
|
<cnsl-header
|
|
|
|
|
*ngIf="user && user !== {}"
|
|
|
|
|
[org]="org"
|
|
|
|
|
[user]="$any(user)"
|
|
|
|
|
[isDarkTheme]="componentCssClass === 'dark-theme'"
|
|
|
|
|
[labelpolicy]="labelpolicy"
|
|
|
|
|
(changedActiveOrg)="changedOrg($event)"
|
|
|
|
|
></cnsl-header>
|
2022-04-28 12:35:02 +02:00
|
|
|
|
2022-07-08 08:58:23 +02:00
|
|
|
<cnsl-nav
|
|
|
|
|
id="mainnav"
|
|
|
|
|
class="nav"
|
|
|
|
|
[ngClass]="{ shadow: yoffset > 60 }"
|
|
|
|
|
*ngIf="user && user !== {}"
|
|
|
|
|
[org]="org"
|
|
|
|
|
[user]="$any(user)"
|
|
|
|
|
[isDarkTheme]="componentCssClass === 'dark-theme'"
|
|
|
|
|
[labelpolicy]="labelpolicy"
|
|
|
|
|
></cnsl-nav>
|
feat(console): actions and flows (#2559)
* features, page, table, create dialog, i18n
* trigger actions service, add action dialog
* display flows, add flow dialog, duration pipe, i18n
* optim flow layout, action presets
* delete actions, flows, layout
* drag drop list, fix update
* lint
* stylelint
* fix template rest
* actions, drag, fix hasrole
* stylelint
* toast, i18n
* missing italian translations
* it
* fix ActionSearchQueries
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2021-11-16 08:18:03 +01:00
|
|
|
</ng-container>
|
2022-07-08 08:58:23 +02:00
|
|
|
|
|
|
|
|
<div class="router-container" [@routeAnimations]="prepareRoute(outlet)">
|
|
|
|
|
<div class="outlet">
|
|
|
|
|
<router-outlet class="outlet" #outlet="outlet"></router-outlet>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="fill-space"></span>
|
|
|
|
|
<cnsl-footer [privateLabelPolicy]="labelpolicy"></cnsl-footer>
|
|
|
|
|
</div>
|