info-library 2.14.49 → 2.14.51-beta.1
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/esm2020/layouts/topbar/topbar.component.mjs +260 -209
- package/esm2020/layouts/topmenu/topmenu.component.mjs +2 -2
- package/esm2020/model/session.model.mjs +2 -1
- package/esm2020/service/authentication.service.mjs +18 -8
- package/fesm2015/info-library.mjs +281 -216
- package/fesm2015/info-library.mjs.map +1 -1
- package/fesm2020/info-library.mjs +278 -216
- package/fesm2020/info-library.mjs.map +1 -1
- package/layouts/topbar/topbar.component.d.ts +1 -0
- package/model/session.model.d.ts +1 -0
- package/package.json +1 -1
- package/service/authentication.service.d.ts +1 -0
|
@@ -278,6 +278,7 @@ class InfoSessionModel {
|
|
|
278
278
|
this.Permissoes = [];
|
|
279
279
|
this.Empresas = [];
|
|
280
280
|
this.Unidades = [];
|
|
281
|
+
this.Clientes = [];
|
|
281
282
|
this.Parametros = null;
|
|
282
283
|
}
|
|
283
284
|
}
|
|
@@ -1088,13 +1089,13 @@ class InfoAuthenticationService {
|
|
|
1088
1089
|
if (this._sessao.TempoInatividade == null || this._sessao.TempoInatividade <= 0)
|
|
1089
1090
|
return;
|
|
1090
1091
|
let tempoSessao = this._sessao.TempoInatividade;
|
|
1091
|
-
|
|
1092
|
+
this._utilities.setLocalStorage('ms', new Date().valueOf().toString());
|
|
1092
1093
|
this._sessionTimeInterval = setInterval(() => {
|
|
1093
1094
|
if (tempoSessao > 0) {
|
|
1094
1095
|
tempoSessao--;
|
|
1095
1096
|
return;
|
|
1096
1097
|
}
|
|
1097
|
-
let tempoRestante = Math.round(this._sessao.TempoInatividade - ((new Date().valueOf() - parseInt(
|
|
1098
|
+
let tempoRestante = Math.round(this._sessao.TempoInatividade - ((new Date().valueOf() - parseInt(this._utilities.getLocalStorage('ms'))) / 1000));
|
|
1098
1099
|
if (!isNaN(tempoRestante) && tempoRestante > 0) {
|
|
1099
1100
|
tempoSessao = tempoRestante;
|
|
1100
1101
|
return;
|
|
@@ -1114,7 +1115,7 @@ class InfoAuthenticationService {
|
|
|
1114
1115
|
width: '500px'
|
|
1115
1116
|
});
|
|
1116
1117
|
ref.afterClosed().subscribe((r) => {
|
|
1117
|
-
if (r != null && (r.modalAction == InfoModalAction.Yes || (this._sessao.TempoInatividade - ((new Date().valueOf() - parseInt(
|
|
1118
|
+
if (r != null && (r.modalAction == InfoModalAction.Yes || (this._sessao.TempoInatividade - ((new Date().valueOf() - parseInt(this._utilities.getLocalStorage('ms'))) / 1000)) > 0)) {
|
|
1118
1119
|
this._sessionActive = true;
|
|
1119
1120
|
this.refreshSessionTime();
|
|
1120
1121
|
}
|
|
@@ -1153,6 +1154,16 @@ class InfoAuthenticationService {
|
|
|
1153
1154
|
return new InfoLoginModel(r.Success, r.Messages, r.Data);
|
|
1154
1155
|
}), catchError((e) => this.errorHandling(e)));
|
|
1155
1156
|
}
|
|
1157
|
+
trocarCliente(usuario, clienteId) {
|
|
1158
|
+
return this._http
|
|
1159
|
+
.post(this._plataforma.Config.webapiUrl + 'centrocontrole/usuario/trocarcliente', this._utilities.jsonToEncrypt({ ClienteId: clienteId }), { headers: this._dataService.getHeaderToken(), responseType: 'text' })
|
|
1160
|
+
.pipe(map((rs) => {
|
|
1161
|
+
var r = this._utilities.decryptToJson(rs);
|
|
1162
|
+
if (r.Success && r.Data != null)
|
|
1163
|
+
this._utilities.setLocalStorage(this._plataforma.TokenKey, r.Data);
|
|
1164
|
+
return new InfoLoginModel(r.Success, r.Messages, r.Data);
|
|
1165
|
+
}), catchError((e) => this.errorHandling(e)));
|
|
1166
|
+
}
|
|
1156
1167
|
clonar(usuario) {
|
|
1157
1168
|
return this._http
|
|
1158
1169
|
.post(this._plataforma.Config.webapiUrl + 'centrocontrole/usuario/clonar', this._utilities.jsonToEncrypt({ Usuario: usuario }), { headers: this._dataService.getHeaderToken(), responseType: 'text' })
|
|
@@ -1276,8 +1287,8 @@ class InfoAuthenticationService {
|
|
|
1276
1287
|
}
|
|
1277
1288
|
removeSessao() {
|
|
1278
1289
|
Object.keys(localStorage).forEach((key) => {
|
|
1279
|
-
if (!key.includes('Dashboard') && !key.includes('cols'))
|
|
1280
|
-
|
|
1290
|
+
if (!key.includes('Dashboard') && !key.includes('cols') && !key.includes('_'))
|
|
1291
|
+
localStorage.removeItem(key);
|
|
1281
1292
|
});
|
|
1282
1293
|
}
|
|
1283
1294
|
definePaginaAtiva(url) {
|
|
@@ -1288,8 +1299,8 @@ class InfoAuthenticationService {
|
|
|
1288
1299
|
let aux = url.substring(1).replace(/-/g, '').toLowerCase().split('/');
|
|
1289
1300
|
let tituloMenu = aux.length > 0 ? aux[0].toString() : url;
|
|
1290
1301
|
let parametrosUrl = url.split('/').slice(2);
|
|
1291
|
-
if (tituloMenu.indexOf('
|
|
1292
|
-
this._plataforma.PaginaAtiva = { Icone: 'widgets', Titulo: '
|
|
1302
|
+
if (tituloMenu.indexOf('nicio') > -1)
|
|
1303
|
+
this._plataforma.PaginaAtiva = { Icone: 'widgets', Titulo: 'Inicio' };
|
|
1293
1304
|
else {
|
|
1294
1305
|
let item = this._plataforma.Menu.filter(m => m.Title.toLowerCase().indexOf(tituloMenu) > -1);
|
|
1295
1306
|
let subTitulo = "";
|
|
@@ -6900,22 +6911,33 @@ class InfoChipsComponent {
|
|
|
6900
6911
|
type: Output
|
|
6901
6912
|
}] }); })();
|
|
6902
6913
|
|
|
6903
|
-
function
|
|
6914
|
+
function InfoTopbarComponent_ng_container_0_li_19_Template(rf, ctx) { if (rf & 1) {
|
|
6904
6915
|
const _r16 = i0.ɵɵgetCurrentView();
|
|
6905
6916
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
6906
|
-
i0.ɵɵlistener("click", function
|
|
6917
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_li_19_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r16); const client_r14 = restoredCtx.$implicit; i0.ɵɵnextContext(); const _r13 = i0.ɵɵreference(39); const ctx_r15 = i0.ɵɵnextContext(); ctx_r15.setClient(client_r14); return i0.ɵɵresetView(_r13.click()); });
|
|
6907
6918
|
i0.ɵɵtext(2);
|
|
6908
6919
|
i0.ɵɵelementEnd()();
|
|
6909
6920
|
} if (rf & 2) {
|
|
6910
|
-
const
|
|
6921
|
+
const client_r14 = ctx.$implicit;
|
|
6911
6922
|
i0.ɵɵadvance(2);
|
|
6912
|
-
i0.ɵɵtextInterpolate(
|
|
6923
|
+
i0.ɵɵtextInterpolate(client_r14.Nome);
|
|
6924
|
+
} }
|
|
6925
|
+
function InfoTopbarComponent_ng_container_0_div_20_li_14_Template(rf, ctx) { if (rf & 1) {
|
|
6926
|
+
const _r20 = i0.ɵɵgetCurrentView();
|
|
6927
|
+
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
6928
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_20_li_14_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r20); const company_r18 = restoredCtx.$implicit; i0.ɵɵnextContext(2); const _r13 = i0.ɵɵreference(39); const ctx_r19 = i0.ɵɵnextContext(); ctx_r19.setCompany(company_r18); return i0.ɵɵresetView(_r13.click()); });
|
|
6929
|
+
i0.ɵɵtext(2);
|
|
6930
|
+
i0.ɵɵelementEnd()();
|
|
6931
|
+
} if (rf & 2) {
|
|
6932
|
+
const company_r18 = ctx.$implicit;
|
|
6933
|
+
i0.ɵɵadvance(2);
|
|
6934
|
+
i0.ɵɵtextInterpolate(company_r18.Nome);
|
|
6913
6935
|
} }
|
|
6914
6936
|
const _c0$4 = function (a0) { return { "opened": a0 }; };
|
|
6915
|
-
function
|
|
6916
|
-
const
|
|
6917
|
-
i0.ɵɵelementStart(0, "div",
|
|
6918
|
-
i0.ɵɵlistener("click", function
|
|
6937
|
+
function InfoTopbarComponent_ng_container_0_div_20_Template(rf, ctx) { if (rf & 1) {
|
|
6938
|
+
const _r22 = i0.ɵɵgetCurrentView();
|
|
6939
|
+
i0.ɵɵelementStart(0, "div", 25)(1, "dl", 9);
|
|
6940
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_20_Template_dl_click_1_listener() { i0.ɵɵrestoreView(_r22); const ctx_r21 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r21.open("empresa")); });
|
|
6919
6941
|
i0.ɵɵelementStart(2, "dt");
|
|
6920
6942
|
i0.ɵɵtext(3);
|
|
6921
6943
|
i0.ɵɵpipe(4, "translate");
|
|
@@ -6923,44 +6945,44 @@ function InfoTopbarComponent_ng_container_0_div_12_Template(rf, ctx) { if (rf &
|
|
|
6923
6945
|
i0.ɵɵelementStart(5, "dd");
|
|
6924
6946
|
i0.ɵɵtext(6);
|
|
6925
6947
|
i0.ɵɵelementEnd()();
|
|
6926
|
-
i0.ɵɵelementStart(7, "div",
|
|
6927
|
-
i0.ɵɵlistener("click", function
|
|
6948
|
+
i0.ɵɵelementStart(7, "div", 10)(8, "mat-icon", 11);
|
|
6949
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_20_Template_mat_icon_click_8_listener() { i0.ɵɵrestoreView(_r22); const ctx_r23 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r23.close()); });
|
|
6928
6950
|
i0.ɵɵtext(9, "close");
|
|
6929
6951
|
i0.ɵɵelementEnd();
|
|
6930
6952
|
i0.ɵɵelementStart(10, "h4");
|
|
6931
6953
|
i0.ɵɵtext(11);
|
|
6932
6954
|
i0.ɵɵpipe(12, "translate");
|
|
6933
6955
|
i0.ɵɵelementEnd();
|
|
6934
|
-
i0.ɵɵelementStart(13, "ul",
|
|
6935
|
-
i0.ɵɵtemplate(14,
|
|
6956
|
+
i0.ɵɵelementStart(13, "ul", 12);
|
|
6957
|
+
i0.ɵɵtemplate(14, InfoTopbarComponent_ng_container_0_div_20_li_14_Template, 3, 1, "li", 13);
|
|
6936
6958
|
i0.ɵɵelementEnd()()();
|
|
6937
6959
|
} if (rf & 2) {
|
|
6938
|
-
const
|
|
6939
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c0$4,
|
|
6960
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
6961
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c0$4, ctx_r5.topMenu.empresa));
|
|
6940
6962
|
i0.ɵɵadvance(3);
|
|
6941
6963
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 5, "Empresa"));
|
|
6942
6964
|
i0.ɵɵadvance(3);
|
|
6943
|
-
i0.ɵɵtextInterpolate(
|
|
6965
|
+
i0.ɵɵtextInterpolate(ctx_r5._session.Empresa);
|
|
6944
6966
|
i0.ɵɵadvance(5);
|
|
6945
6967
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 7, "Empresas"));
|
|
6946
6968
|
i0.ɵɵadvance(3);
|
|
6947
|
-
i0.ɵɵproperty("ngForOf",
|
|
6969
|
+
i0.ɵɵproperty("ngForOf", ctx_r5._session.Empresas);
|
|
6948
6970
|
} }
|
|
6949
|
-
function
|
|
6950
|
-
const
|
|
6971
|
+
function InfoTopbarComponent_ng_container_0_div_21_li_14_Template(rf, ctx) { if (rf & 1) {
|
|
6972
|
+
const _r27 = i0.ɵɵgetCurrentView();
|
|
6951
6973
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
6952
|
-
i0.ɵɵlistener("click", function
|
|
6974
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_21_li_14_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r27); const unity_r25 = restoredCtx.$implicit; i0.ɵɵnextContext(2); const _r13 = i0.ɵɵreference(39); const ctx_r26 = i0.ɵɵnextContext(); ctx_r26.setUnity(unity_r25); return i0.ɵɵresetView(_r13.click()); });
|
|
6953
6975
|
i0.ɵɵtext(2);
|
|
6954
6976
|
i0.ɵɵelementEnd()();
|
|
6955
6977
|
} if (rf & 2) {
|
|
6956
|
-
const
|
|
6978
|
+
const unity_r25 = ctx.$implicit;
|
|
6957
6979
|
i0.ɵɵadvance(2);
|
|
6958
|
-
i0.ɵɵtextInterpolate(
|
|
6980
|
+
i0.ɵɵtextInterpolate(unity_r25.Nome);
|
|
6959
6981
|
} }
|
|
6960
|
-
function
|
|
6961
|
-
const
|
|
6962
|
-
i0.ɵɵelementStart(0, "div",
|
|
6963
|
-
i0.ɵɵlistener("click", function
|
|
6982
|
+
function InfoTopbarComponent_ng_container_0_div_21_Template(rf, ctx) { if (rf & 1) {
|
|
6983
|
+
const _r29 = i0.ɵɵgetCurrentView();
|
|
6984
|
+
i0.ɵɵelementStart(0, "div", 25)(1, "dl", 9);
|
|
6985
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_21_Template_dl_click_1_listener() { i0.ɵɵrestoreView(_r29); const ctx_r28 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r28.open("unidade")); });
|
|
6964
6986
|
i0.ɵɵelementStart(2, "dt");
|
|
6965
6987
|
i0.ɵɵtext(3);
|
|
6966
6988
|
i0.ɵɵpipe(4, "translate");
|
|
@@ -6968,33 +6990,33 @@ function InfoTopbarComponent_ng_container_0_div_13_Template(rf, ctx) { if (rf &
|
|
|
6968
6990
|
i0.ɵɵelementStart(5, "dd");
|
|
6969
6991
|
i0.ɵɵtext(6);
|
|
6970
6992
|
i0.ɵɵelementEnd()();
|
|
6971
|
-
i0.ɵɵelementStart(7, "div",
|
|
6972
|
-
i0.ɵɵlistener("click", function
|
|
6993
|
+
i0.ɵɵelementStart(7, "div", 10)(8, "mat-icon", 11);
|
|
6994
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_21_Template_mat_icon_click_8_listener() { i0.ɵɵrestoreView(_r29); const ctx_r30 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r30.close()); });
|
|
6973
6995
|
i0.ɵɵtext(9, "close");
|
|
6974
6996
|
i0.ɵɵelementEnd();
|
|
6975
6997
|
i0.ɵɵelementStart(10, "h4");
|
|
6976
6998
|
i0.ɵɵtext(11);
|
|
6977
6999
|
i0.ɵɵpipe(12, "translate");
|
|
6978
7000
|
i0.ɵɵelementEnd();
|
|
6979
|
-
i0.ɵɵelementStart(13, "ul",
|
|
6980
|
-
i0.ɵɵtemplate(14,
|
|
7001
|
+
i0.ɵɵelementStart(13, "ul", 12);
|
|
7002
|
+
i0.ɵɵtemplate(14, InfoTopbarComponent_ng_container_0_div_21_li_14_Template, 3, 1, "li", 13);
|
|
6981
7003
|
i0.ɵɵelementEnd()()();
|
|
6982
7004
|
} if (rf & 2) {
|
|
6983
|
-
const
|
|
6984
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c0$4,
|
|
7005
|
+
const ctx_r6 = i0.ɵɵnextContext(2);
|
|
7006
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c0$4, ctx_r6.topMenu.unidade));
|
|
6985
7007
|
i0.ɵɵadvance(3);
|
|
6986
7008
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 5, "Unidade"));
|
|
6987
7009
|
i0.ɵɵadvance(3);
|
|
6988
|
-
i0.ɵɵtextInterpolate(
|
|
7010
|
+
i0.ɵɵtextInterpolate(ctx_r6._session.Unidade);
|
|
6989
7011
|
i0.ɵɵadvance(5);
|
|
6990
7012
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 7, "Unidades"));
|
|
6991
7013
|
i0.ɵɵadvance(3);
|
|
6992
|
-
i0.ɵɵproperty("ngForOf",
|
|
7014
|
+
i0.ɵɵproperty("ngForOf", ctx_r6._session.Unidades);
|
|
6993
7015
|
} }
|
|
6994
|
-
function
|
|
6995
|
-
const
|
|
6996
|
-
i0.ɵɵelementStart(0, "div", 26)(1, "button",
|
|
6997
|
-
i0.ɵɵlistener("click", function
|
|
7016
|
+
function InfoTopbarComponent_ng_container_0_div_27_Template(rf, ctx) { if (rf & 1) {
|
|
7017
|
+
const _r32 = i0.ɵɵgetCurrentView();
|
|
7018
|
+
i0.ɵɵelementStart(0, "div", 26)(1, "button", 16);
|
|
7019
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_27_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r32); const ctx_r31 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r31.open("infoia")); });
|
|
6998
7020
|
i0.ɵɵpipe(2, "translate");
|
|
6999
7021
|
i0.ɵɵelementStart(3, "label");
|
|
7000
7022
|
i0.ɵɵtext(4);
|
|
@@ -7003,8 +7025,8 @@ function InfoTopbarComponent_ng_container_0_div_14_Template(rf, ctx) { if (rf &
|
|
|
7003
7025
|
i0.ɵɵelementStart(6, "mat-icon");
|
|
7004
7026
|
i0.ɵɵtext(7, "diversity_2");
|
|
7005
7027
|
i0.ɵɵelementEnd()();
|
|
7006
|
-
i0.ɵɵelementStart(8, "div", 27)(9, "mat-icon",
|
|
7007
|
-
i0.ɵɵlistener("click", function
|
|
7028
|
+
i0.ɵɵelementStart(8, "div", 27)(9, "mat-icon", 11);
|
|
7029
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_27_Template_mat_icon_click_9_listener() { i0.ɵɵrestoreView(_r32); const ctx_r33 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r33.close()); });
|
|
7008
7030
|
i0.ɵɵtext(10, "close");
|
|
7009
7031
|
i0.ɵɵelementEnd();
|
|
7010
7032
|
i0.ɵɵelementStart(11, "h4");
|
|
@@ -7015,8 +7037,8 @@ function InfoTopbarComponent_ng_container_0_div_14_Template(rf, ctx) { if (rf &
|
|
|
7015
7037
|
i0.ɵɵprojection(15);
|
|
7016
7038
|
i0.ɵɵelementEnd()()();
|
|
7017
7039
|
} if (rf & 2) {
|
|
7018
|
-
const
|
|
7019
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c0$4,
|
|
7040
|
+
const ctx_r7 = i0.ɵɵnextContext(2);
|
|
7041
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c0$4, ctx_r7.topMenu.infoia));
|
|
7020
7042
|
i0.ɵɵadvance(1);
|
|
7021
7043
|
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 4, "Info IA"));
|
|
7022
7044
|
i0.ɵɵadvance(3);
|
|
@@ -7024,29 +7046,29 @@ function InfoTopbarComponent_ng_container_0_div_14_Template(rf, ctx) { if (rf &
|
|
|
7024
7046
|
i0.ɵɵadvance(8);
|
|
7025
7047
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(13, 8, "InfoIA"));
|
|
7026
7048
|
} }
|
|
7027
|
-
function
|
|
7028
|
-
const
|
|
7029
|
-
i0.ɵɵelementStart(0, "div",
|
|
7030
|
-
i0.ɵɵlistener("click", function
|
|
7049
|
+
function InfoTopbarComponent_ng_container_0_div_28_Template(rf, ctx) { if (rf & 1) {
|
|
7050
|
+
const _r35 = i0.ɵɵgetCurrentView();
|
|
7051
|
+
i0.ɵɵelementStart(0, "div", 15)(1, "button", 16);
|
|
7052
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_28_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r35); const ctx_r34 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r34.openFastSearch()); });
|
|
7031
7053
|
i0.ɵɵpipe(2, "translate");
|
|
7032
7054
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7033
7055
|
i0.ɵɵtext(4, "search");
|
|
7034
7056
|
i0.ɵɵelementEnd()()();
|
|
7035
7057
|
} if (rf & 2) {
|
|
7036
|
-
const
|
|
7058
|
+
const ctx_r8 = i0.ɵɵnextContext(2);
|
|
7037
7059
|
i0.ɵɵadvance(1);
|
|
7038
|
-
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 1,
|
|
7060
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 1, ctx_r8.fastsearchtitle));
|
|
7039
7061
|
} }
|
|
7040
|
-
function
|
|
7062
|
+
function InfoTopbarComponent_ng_container_0_div_29_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
7041
7063
|
i0.ɵɵelementStart(0, "span", 30);
|
|
7042
7064
|
i0.ɵɵtext(1);
|
|
7043
7065
|
i0.ɵɵelementEnd();
|
|
7044
7066
|
} if (rf & 2) {
|
|
7045
|
-
const
|
|
7067
|
+
const ctx_r36 = i0.ɵɵnextContext(3);
|
|
7046
7068
|
i0.ɵɵadvance(1);
|
|
7047
|
-
i0.ɵɵtextInterpolate(
|
|
7069
|
+
i0.ɵɵtextInterpolate(ctx_r36.notifications.Count);
|
|
7048
7070
|
} }
|
|
7049
|
-
function
|
|
7071
|
+
function InfoTopbarComponent_ng_container_0_div_29_li_13_Template(rf, ctx) { if (rf & 1) {
|
|
7050
7072
|
i0.ɵɵelementStart(0, "li")(1, "a", 31)(2, "mat-icon");
|
|
7051
7073
|
i0.ɵɵtext(3, "notifications");
|
|
7052
7074
|
i0.ɵɵelementEnd();
|
|
@@ -7058,10 +7080,10 @@ function InfoTopbarComponent_ng_container_0_div_16_li_13_Template(rf, ctx) { if
|
|
|
7058
7080
|
i0.ɵɵadvance(6);
|
|
7059
7081
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 1, "TNotificacoesNenhuma"));
|
|
7060
7082
|
} }
|
|
7061
|
-
function
|
|
7062
|
-
const
|
|
7083
|
+
function InfoTopbarComponent_ng_container_0_div_29_ng_container_14_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
7084
|
+
const _r42 = i0.ɵɵgetCurrentView();
|
|
7063
7085
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
7064
|
-
i0.ɵɵlistener("click", function
|
|
7086
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_29_ng_container_14_li_1_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r42); const item_r40 = restoredCtx.$implicit; const ctx_r41 = i0.ɵɵnextContext(4); ctx_r41.navigate(item_r40.Url); return i0.ɵɵresetView(ctx_r41.close()); });
|
|
7065
7087
|
i0.ɵɵelementStart(2, "dl")(3, "dt");
|
|
7066
7088
|
i0.ɵɵtext(4);
|
|
7067
7089
|
i0.ɵɵpipe(5, "translate");
|
|
@@ -7070,33 +7092,33 @@ function InfoTopbarComponent_ng_container_0_div_16_ng_container_14_li_1_Template
|
|
|
7070
7092
|
i0.ɵɵpipe(7, "translate");
|
|
7071
7093
|
i0.ɵɵelementEnd()()();
|
|
7072
7094
|
} if (rf & 2) {
|
|
7073
|
-
const
|
|
7095
|
+
const item_r40 = ctx.$implicit;
|
|
7074
7096
|
i0.ɵɵadvance(4);
|
|
7075
|
-
i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(5, 3, "Dia"), " ",
|
|
7097
|
+
i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(5, 3, "Dia"), " ", item_r40.Date, "");
|
|
7076
7098
|
i0.ɵɵadvance(2);
|
|
7077
|
-
i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(7, 5,
|
|
7099
|
+
i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(7, 5, item_r40.Description), i0.ɵɵsanitizeHtml);
|
|
7078
7100
|
} }
|
|
7079
|
-
function
|
|
7101
|
+
function InfoTopbarComponent_ng_container_0_div_29_ng_container_14_Template(rf, ctx) { if (rf & 1) {
|
|
7080
7102
|
i0.ɵɵelementContainerStart(0);
|
|
7081
|
-
i0.ɵɵtemplate(1,
|
|
7103
|
+
i0.ɵɵtemplate(1, InfoTopbarComponent_ng_container_0_div_29_ng_container_14_li_1_Template, 8, 7, "li", 13);
|
|
7082
7104
|
i0.ɵɵelementContainerEnd();
|
|
7083
7105
|
} if (rf & 2) {
|
|
7084
|
-
const
|
|
7106
|
+
const ctx_r38 = i0.ɵɵnextContext(3);
|
|
7085
7107
|
i0.ɵɵadvance(1);
|
|
7086
|
-
i0.ɵɵproperty("ngForOf",
|
|
7108
|
+
i0.ɵɵproperty("ngForOf", ctx_r38.notifications.Itens);
|
|
7087
7109
|
} }
|
|
7088
|
-
function
|
|
7089
|
-
const
|
|
7090
|
-
i0.ɵɵelementStart(0, "div", 28)(1, "button",
|
|
7091
|
-
i0.ɵɵlistener("click", function
|
|
7110
|
+
function InfoTopbarComponent_ng_container_0_div_29_Template(rf, ctx) { if (rf & 1) {
|
|
7111
|
+
const _r44 = i0.ɵɵgetCurrentView();
|
|
7112
|
+
i0.ɵɵelementStart(0, "div", 28)(1, "button", 16);
|
|
7113
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_29_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r44); const ctx_r43 = i0.ɵɵnextContext(2); ctx_r43.setNotificationStatus(true, false, false); return i0.ɵɵresetView(ctx_r43.open("notificacao")); });
|
|
7092
7114
|
i0.ɵɵpipe(2, "translate");
|
|
7093
7115
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7094
7116
|
i0.ɵɵtext(4, "notifications_none");
|
|
7095
7117
|
i0.ɵɵelementEnd();
|
|
7096
|
-
i0.ɵɵtemplate(5,
|
|
7118
|
+
i0.ɵɵtemplate(5, InfoTopbarComponent_ng_container_0_div_29_span_5_Template, 2, 1, "span", 29);
|
|
7097
7119
|
i0.ɵɵelementEnd();
|
|
7098
|
-
i0.ɵɵelementStart(6, "div",
|
|
7099
|
-
i0.ɵɵlistener("click", function
|
|
7120
|
+
i0.ɵɵelementStart(6, "div", 10)(7, "mat-icon", 11);
|
|
7121
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_29_Template_mat_icon_click_7_listener() { i0.ɵɵrestoreView(_r44); const ctx_r45 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r45.close()); });
|
|
7100
7122
|
i0.ɵɵtext(8, "close");
|
|
7101
7123
|
i0.ɵɵelementEnd();
|
|
7102
7124
|
i0.ɵɵelementStart(9, "h4");
|
|
@@ -7104,45 +7126,45 @@ function InfoTopbarComponent_ng_container_0_div_16_Template(rf, ctx) { if (rf &
|
|
|
7104
7126
|
i0.ɵɵpipe(11, "translate");
|
|
7105
7127
|
i0.ɵɵelementEnd();
|
|
7106
7128
|
i0.ɵɵelementStart(12, "ul");
|
|
7107
|
-
i0.ɵɵtemplate(13,
|
|
7108
|
-
i0.ɵɵtemplate(14,
|
|
7129
|
+
i0.ɵɵtemplate(13, InfoTopbarComponent_ng_container_0_div_29_li_13_Template, 8, 3, "li", 0);
|
|
7130
|
+
i0.ɵɵtemplate(14, InfoTopbarComponent_ng_container_0_div_29_ng_container_14_Template, 2, 1, "ng-container", 0);
|
|
7109
7131
|
i0.ɵɵelementEnd()()();
|
|
7110
7132
|
} if (rf & 2) {
|
|
7111
|
-
const
|
|
7112
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c0$4,
|
|
7133
|
+
const ctx_r9 = i0.ɵɵnextContext(2);
|
|
7134
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c0$4, ctx_r9.topMenu.notificacao));
|
|
7113
7135
|
i0.ɵɵadvance(1);
|
|
7114
7136
|
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 6, "Notificacoes"));
|
|
7115
7137
|
i0.ɵɵadvance(4);
|
|
7116
|
-
i0.ɵɵproperty("ngIf",
|
|
7138
|
+
i0.ɵɵproperty("ngIf", ctx_r9.notifications.Count > 0);
|
|
7117
7139
|
i0.ɵɵadvance(5);
|
|
7118
7140
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(11, 8, "Notificacoes"));
|
|
7119
7141
|
i0.ɵɵadvance(3);
|
|
7120
|
-
i0.ɵɵproperty("ngIf",
|
|
7142
|
+
i0.ɵɵproperty("ngIf", ctx_r9.notifications.Itens.length == 0);
|
|
7121
7143
|
i0.ɵɵadvance(1);
|
|
7122
|
-
i0.ɵɵproperty("ngIf",
|
|
7144
|
+
i0.ɵɵproperty("ngIf", ctx_r9.notifications.Itens.length > 0);
|
|
7123
7145
|
} }
|
|
7124
|
-
function
|
|
7125
|
-
const
|
|
7146
|
+
function InfoTopbarComponent_ng_container_0_div_30_li_12_Template(rf, ctx) { if (rf & 1) {
|
|
7147
|
+
const _r49 = i0.ɵɵgetCurrentView();
|
|
7126
7148
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
7127
|
-
i0.ɵɵlistener("click", function
|
|
7149
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_30_li_12_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r49); const theme_r47 = restoredCtx.$implicit; i0.ɵɵnextContext(2); const _r13 = i0.ɵɵreference(39); const ctx_r48 = i0.ɵɵnextContext(); ctx_r48.setTheme(theme_r47.name); return i0.ɵɵresetView(_r13.click()); });
|
|
7128
7150
|
i0.ɵɵtext(2);
|
|
7129
7151
|
i0.ɵɵpipe(3, "translate");
|
|
7130
7152
|
i0.ɵɵelementEnd()();
|
|
7131
7153
|
} if (rf & 2) {
|
|
7132
|
-
const
|
|
7154
|
+
const theme_r47 = ctx.$implicit;
|
|
7133
7155
|
i0.ɵɵadvance(2);
|
|
7134
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 1,
|
|
7156
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 1, theme_r47.description), "");
|
|
7135
7157
|
} }
|
|
7136
|
-
function
|
|
7137
|
-
const
|
|
7138
|
-
i0.ɵɵelementStart(0, "div", 34)(1, "button",
|
|
7139
|
-
i0.ɵɵlistener("click", function
|
|
7158
|
+
function InfoTopbarComponent_ng_container_0_div_30_Template(rf, ctx) { if (rf & 1) {
|
|
7159
|
+
const _r51 = i0.ɵɵgetCurrentView();
|
|
7160
|
+
i0.ɵɵelementStart(0, "div", 34)(1, "button", 16);
|
|
7161
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_30_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r51); const ctx_r50 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r50.open("tema")); });
|
|
7140
7162
|
i0.ɵɵpipe(2, "translate");
|
|
7141
7163
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7142
7164
|
i0.ɵɵtext(4, "invert_colors");
|
|
7143
7165
|
i0.ɵɵelementEnd()();
|
|
7144
|
-
i0.ɵɵelementStart(5, "div",
|
|
7145
|
-
i0.ɵɵlistener("click", function
|
|
7166
|
+
i0.ɵɵelementStart(5, "div", 10)(6, "mat-icon", 11);
|
|
7167
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_30_Template_mat_icon_click_6_listener() { i0.ɵɵrestoreView(_r51); const ctx_r52 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r52.close()); });
|
|
7146
7168
|
i0.ɵɵtext(7, "close");
|
|
7147
7169
|
i0.ɵɵelementEnd();
|
|
7148
7170
|
i0.ɵɵelementStart(8, "h4");
|
|
@@ -7150,53 +7172,53 @@ function InfoTopbarComponent_ng_container_0_div_17_Template(rf, ctx) { if (rf &
|
|
|
7150
7172
|
i0.ɵɵpipe(10, "translate");
|
|
7151
7173
|
i0.ɵɵelementEnd();
|
|
7152
7174
|
i0.ɵɵelementStart(11, "ul", 35);
|
|
7153
|
-
i0.ɵɵtemplate(12,
|
|
7175
|
+
i0.ɵɵtemplate(12, InfoTopbarComponent_ng_container_0_div_30_li_12_Template, 4, 3, "li", 13);
|
|
7154
7176
|
i0.ɵɵelementEnd()()();
|
|
7155
7177
|
} if (rf & 2) {
|
|
7156
|
-
const
|
|
7157
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0$4,
|
|
7178
|
+
const ctx_r10 = i0.ɵɵnextContext(2);
|
|
7179
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0$4, ctx_r10.topMenu.tema));
|
|
7158
7180
|
i0.ɵɵadvance(1);
|
|
7159
7181
|
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 4, "Tema"));
|
|
7160
7182
|
i0.ɵɵadvance(8);
|
|
7161
7183
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 6, "Temas"));
|
|
7162
7184
|
i0.ɵɵadvance(3);
|
|
7163
|
-
i0.ɵɵproperty("ngForOf",
|
|
7185
|
+
i0.ɵɵproperty("ngForOf", ctx_r10.themes);
|
|
7164
7186
|
} }
|
|
7165
|
-
function
|
|
7166
|
-
const
|
|
7167
|
-
i0.ɵɵelementStart(0, "div",
|
|
7168
|
-
i0.ɵɵlistener("click", function
|
|
7187
|
+
function InfoTopbarComponent_ng_container_0_div_31_Template(rf, ctx) { if (rf & 1) {
|
|
7188
|
+
const _r54 = i0.ɵɵgetCurrentView();
|
|
7189
|
+
i0.ɵɵelementStart(0, "div", 15)(1, "button", 16);
|
|
7190
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_31_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r54); const ctx_r53 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r53.toggleMode()); });
|
|
7169
7191
|
i0.ɵɵpipe(2, "translate");
|
|
7170
7192
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7171
7193
|
i0.ɵɵtext(4, "brightness_6");
|
|
7172
7194
|
i0.ɵɵelementEnd()()();
|
|
7173
7195
|
} if (rf & 2) {
|
|
7174
|
-
const
|
|
7196
|
+
const ctx_r11 = i0.ɵɵnextContext(2);
|
|
7175
7197
|
i0.ɵɵadvance(1);
|
|
7176
|
-
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 1,
|
|
7198
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 1, ctx_r11._platform.ModoPrime ? "ModoPadrao" : "Prime"));
|
|
7177
7199
|
} }
|
|
7178
|
-
function
|
|
7179
|
-
const
|
|
7200
|
+
function InfoTopbarComponent_ng_container_0_div_32_li_12_Template(rf, ctx) { if (rf & 1) {
|
|
7201
|
+
const _r58 = i0.ɵɵgetCurrentView();
|
|
7180
7202
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
7181
|
-
i0.ɵɵlistener("click", function
|
|
7203
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_32_li_12_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r58); const lang_r56 = restoredCtx.$implicit; i0.ɵɵnextContext(2); const _r13 = i0.ɵɵreference(39); const ctx_r57 = i0.ɵɵnextContext(); ctx_r57.setLanguage(lang_r56.lang); return i0.ɵɵresetView(_r13.click()); });
|
|
7182
7204
|
i0.ɵɵtext(2);
|
|
7183
7205
|
i0.ɵɵpipe(3, "translate");
|
|
7184
7206
|
i0.ɵɵelementEnd()();
|
|
7185
7207
|
} if (rf & 2) {
|
|
7186
|
-
const
|
|
7208
|
+
const lang_r56 = ctx.$implicit;
|
|
7187
7209
|
i0.ɵɵadvance(2);
|
|
7188
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 1,
|
|
7210
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 1, lang_r56.name));
|
|
7189
7211
|
} }
|
|
7190
|
-
function
|
|
7191
|
-
const
|
|
7192
|
-
i0.ɵɵelementStart(0, "div", 36)(1, "button",
|
|
7193
|
-
i0.ɵɵlistener("click", function
|
|
7212
|
+
function InfoTopbarComponent_ng_container_0_div_32_Template(rf, ctx) { if (rf & 1) {
|
|
7213
|
+
const _r60 = i0.ɵɵgetCurrentView();
|
|
7214
|
+
i0.ɵɵelementStart(0, "div", 36)(1, "button", 16);
|
|
7215
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_32_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r60); const ctx_r59 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r59.open("idioma")); });
|
|
7194
7216
|
i0.ɵɵpipe(2, "translate");
|
|
7195
7217
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7196
7218
|
i0.ɵɵtext(4, "public");
|
|
7197
7219
|
i0.ɵɵelementEnd()();
|
|
7198
|
-
i0.ɵɵelementStart(5, "div",
|
|
7199
|
-
i0.ɵɵlistener("click", function
|
|
7220
|
+
i0.ɵɵelementStart(5, "div", 10)(6, "mat-icon", 11);
|
|
7221
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_div_32_Template_mat_icon_click_6_listener() { i0.ɵɵrestoreView(_r60); const ctx_r61 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r61.close()); });
|
|
7200
7222
|
i0.ɵɵtext(7, "close");
|
|
7201
7223
|
i0.ɵɵelementEnd();
|
|
7202
7224
|
i0.ɵɵelementStart(8, "h4");
|
|
@@ -7204,69 +7226,93 @@ function InfoTopbarComponent_ng_container_0_div_19_Template(rf, ctx) { if (rf &
|
|
|
7204
7226
|
i0.ɵɵpipe(10, "translate");
|
|
7205
7227
|
i0.ɵɵelementEnd();
|
|
7206
7228
|
i0.ɵɵelementStart(11, "ul", 37);
|
|
7207
|
-
i0.ɵɵtemplate(12,
|
|
7229
|
+
i0.ɵɵtemplate(12, InfoTopbarComponent_ng_container_0_div_32_li_12_Template, 4, 3, "li", 13);
|
|
7208
7230
|
i0.ɵɵelementEnd()()();
|
|
7209
7231
|
} if (rf & 2) {
|
|
7210
|
-
const
|
|
7211
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0$4,
|
|
7232
|
+
const ctx_r12 = i0.ɵɵnextContext(2);
|
|
7233
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0$4, ctx_r12.topMenu.idioma));
|
|
7212
7234
|
i0.ɵɵadvance(1);
|
|
7213
7235
|
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 4, "Idioma"));
|
|
7214
7236
|
i0.ɵɵadvance(8);
|
|
7215
7237
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 6, "Idiomas"));
|
|
7216
7238
|
i0.ɵɵadvance(3);
|
|
7217
|
-
i0.ɵɵproperty("ngForOf",
|
|
7239
|
+
i0.ɵɵproperty("ngForOf", ctx_r12.languages);
|
|
7218
7240
|
} }
|
|
7219
7241
|
const _c1$3 = function () { return []; };
|
|
7220
7242
|
const _c2$3 = function (a0) { return { "open": a0 }; };
|
|
7221
7243
|
function InfoTopbarComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
7222
|
-
const
|
|
7244
|
+
const _r63 = i0.ɵɵgetCurrentView();
|
|
7223
7245
|
i0.ɵɵelementContainerStart(0);
|
|
7224
7246
|
i0.ɵɵelementStart(1, "div", 3)(2, "a", 4);
|
|
7225
7247
|
i0.ɵɵelement(3, "i", 5)(4, "i", 6);
|
|
7226
7248
|
i0.ɵɵelementEnd();
|
|
7227
7249
|
i0.ɵɵelementStart(5, "div", 7)(6, "div", 8)(7, "dl", 9);
|
|
7228
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_Template_dl_click_7_listener() { i0.ɵɵrestoreView(
|
|
7250
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_Template_dl_click_7_listener() { i0.ɵɵrestoreView(_r63); const ctx_r62 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r62.open("cliente")); });
|
|
7229
7251
|
i0.ɵɵelementStart(8, "dt");
|
|
7230
7252
|
i0.ɵɵtext(9);
|
|
7231
7253
|
i0.ɵɵelementEnd();
|
|
7232
7254
|
i0.ɵɵelementStart(10, "dd");
|
|
7233
7255
|
i0.ɵɵtext(11);
|
|
7256
|
+
i0.ɵɵelementEnd()();
|
|
7257
|
+
i0.ɵɵelementStart(12, "div", 10)(13, "mat-icon", 11);
|
|
7258
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_Template_mat_icon_click_13_listener() { i0.ɵɵrestoreView(_r63); const ctx_r64 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r64.close()); });
|
|
7259
|
+
i0.ɵɵtext(14, "close");
|
|
7260
|
+
i0.ɵɵelementEnd();
|
|
7261
|
+
i0.ɵɵelementStart(15, "h4");
|
|
7262
|
+
i0.ɵɵtext(16);
|
|
7263
|
+
i0.ɵɵpipe(17, "translate");
|
|
7264
|
+
i0.ɵɵelementEnd();
|
|
7265
|
+
i0.ɵɵelementStart(18, "ul", 12);
|
|
7266
|
+
i0.ɵɵtemplate(19, InfoTopbarComponent_ng_container_0_li_19_Template, 3, 1, "li", 13);
|
|
7267
|
+
i0.ɵɵelementEnd()()();
|
|
7268
|
+
i0.ɵɵtemplate(20, InfoTopbarComponent_ng_container_0_div_20_Template, 15, 11, "div", 14);
|
|
7269
|
+
i0.ɵɵtemplate(21, InfoTopbarComponent_ng_container_0_div_21_Template, 15, 11, "div", 14);
|
|
7270
|
+
i0.ɵɵelementStart(22, "div", 15)(23, "button", 16);
|
|
7271
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_Template_button_click_23_listener() { i0.ɵɵrestoreView(_r63); const ctx_r65 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r65.navigate(ctx_r65.profileurl)); });
|
|
7272
|
+
i0.ɵɵpipe(24, "translate");
|
|
7273
|
+
i0.ɵɵelementStart(25, "mat-icon");
|
|
7274
|
+
i0.ɵɵtext(26, "person");
|
|
7234
7275
|
i0.ɵɵelementEnd()()();
|
|
7235
|
-
i0.ɵɵtemplate(
|
|
7236
|
-
i0.ɵɵtemplate(
|
|
7237
|
-
i0.ɵɵtemplate(
|
|
7238
|
-
i0.ɵɵtemplate(
|
|
7239
|
-
i0.ɵɵtemplate(
|
|
7240
|
-
i0.ɵɵtemplate(
|
|
7241
|
-
i0.ɵɵ
|
|
7242
|
-
i0.ɵɵ
|
|
7243
|
-
i0.ɵɵ
|
|
7244
|
-
i0.ɵɵ
|
|
7245
|
-
i0.ɵɵ
|
|
7246
|
-
i0.ɵɵelementStart(23, "mat-icon");
|
|
7247
|
-
i0.ɵɵtext(24, "power_settings_new");
|
|
7276
|
+
i0.ɵɵtemplate(27, InfoTopbarComponent_ng_container_0_div_27_Template, 16, 12, "div", 17);
|
|
7277
|
+
i0.ɵɵtemplate(28, InfoTopbarComponent_ng_container_0_div_28_Template, 5, 3, "div", 18);
|
|
7278
|
+
i0.ɵɵtemplate(29, InfoTopbarComponent_ng_container_0_div_29_Template, 15, 12, "div", 19);
|
|
7279
|
+
i0.ɵɵtemplate(30, InfoTopbarComponent_ng_container_0_div_30_Template, 13, 10, "div", 20);
|
|
7280
|
+
i0.ɵɵtemplate(31, InfoTopbarComponent_ng_container_0_div_31_Template, 5, 3, "div", 18);
|
|
7281
|
+
i0.ɵɵtemplate(32, InfoTopbarComponent_ng_container_0_div_32_Template, 13, 10, "div", 21);
|
|
7282
|
+
i0.ɵɵelementStart(33, "div", 15)(34, "button", 16);
|
|
7283
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_Template_button_click_34_listener() { i0.ɵɵrestoreView(_r63); const ctx_r66 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r66.logout()); });
|
|
7284
|
+
i0.ɵɵpipe(35, "translate");
|
|
7285
|
+
i0.ɵɵelementStart(36, "mat-icon");
|
|
7286
|
+
i0.ɵɵtext(37, "power_settings_new");
|
|
7248
7287
|
i0.ɵɵelementEnd()()();
|
|
7249
|
-
i0.ɵɵelementStart(
|
|
7250
|
-
i0.ɵɵlistener("click", function
|
|
7288
|
+
i0.ɵɵelementStart(38, "div", 22, 23);
|
|
7289
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_Template_div_click_38_listener() { i0.ɵɵrestoreView(_r63); const ctx_r67 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r67.close()); });
|
|
7251
7290
|
i0.ɵɵelementEnd()();
|
|
7252
|
-
i0.ɵɵelementStart(
|
|
7253
|
-
i0.ɵɵlistener("click", function
|
|
7254
|
-
i0.ɵɵelement(
|
|
7291
|
+
i0.ɵɵelementStart(40, "div", 24);
|
|
7292
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_0_Template_div_click_40_listener() { i0.ɵɵrestoreView(_r63); const ctx_r68 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r68.openSidebar()); });
|
|
7293
|
+
i0.ɵɵelement(41, "span")(42, "span")(43, "span")(44, "span")(45, "span")(46, "span");
|
|
7255
7294
|
i0.ɵɵelementEnd()();
|
|
7256
7295
|
i0.ɵɵelementContainerEnd();
|
|
7257
7296
|
} if (rf & 2) {
|
|
7258
7297
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
7259
7298
|
i0.ɵɵadvance(6);
|
|
7260
7299
|
i0.ɵɵclassProp("separador", ctx_r0._session.Empresas.length > 1 || ctx_r0._session.Unidades);
|
|
7300
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(24, _c0$4, ctx_r0.topMenu.cliente));
|
|
7261
7301
|
i0.ɵɵadvance(3);
|
|
7262
7302
|
i0.ɵɵtextInterpolate(ctx_r0._session.Perfil);
|
|
7263
7303
|
i0.ɵɵadvance(2);
|
|
7264
7304
|
i0.ɵɵtextInterpolate(ctx_r0._session.Usuario);
|
|
7305
|
+
i0.ɵɵadvance(5);
|
|
7306
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(17, 18, "Clientes"));
|
|
7307
|
+
i0.ɵɵadvance(3);
|
|
7308
|
+
i0.ɵɵproperty("ngForOf", ctx_r0._session.Clientes);
|
|
7265
7309
|
i0.ɵɵadvance(1);
|
|
7266
7310
|
i0.ɵɵproperty("ngIf", ctx_r0._session.Empresas.length > 1);
|
|
7267
7311
|
i0.ɵɵadvance(1);
|
|
7268
|
-
i0.ɵɵproperty("ngIf", ctx_r0._session.Unidade && (ctx_r0._session.Unidades || i0.ɵɵpureFunction0(
|
|
7269
|
-
i0.ɵɵadvance(
|
|
7312
|
+
i0.ɵɵproperty("ngIf", ctx_r0._session.Unidade && (ctx_r0._session.Unidades || i0.ɵɵpureFunction0(26, _c1$3)).length > 1);
|
|
7313
|
+
i0.ɵɵadvance(2);
|
|
7314
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(24, 20, "MeuPerfil"));
|
|
7315
|
+
i0.ɵɵadvance(4);
|
|
7270
7316
|
i0.ɵɵproperty("ngIf", ctx_r0.enabledia);
|
|
7271
7317
|
i0.ɵɵadvance(1);
|
|
7272
7318
|
i0.ɵɵproperty("ngIf", ctx_r0.fastsearchform);
|
|
@@ -7279,9 +7325,9 @@ function InfoTopbarComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
7279
7325
|
i0.ɵɵadvance(1);
|
|
7280
7326
|
i0.ɵɵproperty("ngIf", ctx_r0.languages.length > 0);
|
|
7281
7327
|
i0.ɵɵadvance(2);
|
|
7282
|
-
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(
|
|
7328
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(35, 22, "Sair"));
|
|
7283
7329
|
i0.ɵɵadvance(6);
|
|
7284
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(
|
|
7330
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(27, _c2$3, ctx_r0.opened));
|
|
7285
7331
|
} }
|
|
7286
7332
|
function InfoTopbarComponent_ng_container_1_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
7287
7333
|
i0.ɵɵelementStart(0, "div", 46)(1, "div")(2, "label");
|
|
@@ -7300,31 +7346,31 @@ function InfoTopbarComponent_ng_container_1_h1_10_Template(rf, ctx) { if (rf & 1
|
|
|
7300
7346
|
i0.ɵɵpipe(4, "translate");
|
|
7301
7347
|
i0.ɵɵelementEnd();
|
|
7302
7348
|
} if (rf & 2) {
|
|
7303
|
-
const
|
|
7349
|
+
const ctx_r70 = i0.ɵɵnextContext(2);
|
|
7304
7350
|
i0.ɵɵadvance(2);
|
|
7305
|
-
i0.ɵɵtextInterpolate(
|
|
7351
|
+
i0.ɵɵtextInterpolate(ctx_r70._platform.PaginaAtiva.Icone);
|
|
7306
7352
|
i0.ɵɵadvance(1);
|
|
7307
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(4, 2,
|
|
7353
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(4, 2, ctx_r70._platform.PaginaAtiva.Titulo), " ");
|
|
7308
7354
|
} }
|
|
7309
7355
|
function InfoTopbarComponent_ng_container_1_li_27_Template(rf, ctx) { if (rf & 1) {
|
|
7310
|
-
const
|
|
7356
|
+
const _r80 = i0.ɵɵgetCurrentView();
|
|
7311
7357
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
7312
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_li_27_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(
|
|
7358
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_li_27_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r80); const company_r78 = restoredCtx.$implicit; i0.ɵɵnextContext(); const _r77 = i0.ɵɵreference(39); const ctx_r79 = i0.ɵɵnextContext(); ctx_r79.setCompany(company_r78); return i0.ɵɵresetView(_r77.click()); });
|
|
7313
7359
|
i0.ɵɵtext(2);
|
|
7314
7360
|
i0.ɵɵelementEnd()();
|
|
7315
7361
|
} if (rf & 2) {
|
|
7316
|
-
const
|
|
7362
|
+
const company_r78 = ctx.$implicit;
|
|
7317
7363
|
i0.ɵɵadvance(2);
|
|
7318
|
-
i0.ɵɵtextInterpolate(
|
|
7364
|
+
i0.ɵɵtextInterpolate(company_r78.Nome);
|
|
7319
7365
|
} }
|
|
7320
7366
|
function InfoTopbarComponent_ng_container_1_div_28_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
7321
7367
|
i0.ɵɵelementStart(0, "span", 30);
|
|
7322
7368
|
i0.ɵɵtext(1);
|
|
7323
7369
|
i0.ɵɵelementEnd();
|
|
7324
7370
|
} if (rf & 2) {
|
|
7325
|
-
const
|
|
7371
|
+
const ctx_r81 = i0.ɵɵnextContext(3);
|
|
7326
7372
|
i0.ɵɵadvance(1);
|
|
7327
|
-
i0.ɵɵtextInterpolate(
|
|
7373
|
+
i0.ɵɵtextInterpolate(ctx_r81.notifications.Count);
|
|
7328
7374
|
} }
|
|
7329
7375
|
function InfoTopbarComponent_ng_container_1_div_28_li_11_Template(rf, ctx) { if (rf & 1) {
|
|
7330
7376
|
i0.ɵɵelementStart(0, "li")(1, "a", 31)(2, "mat-icon");
|
|
@@ -7339,9 +7385,9 @@ function InfoTopbarComponent_ng_container_1_div_28_li_11_Template(rf, ctx) { if
|
|
|
7339
7385
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 1, "TNotificacoesNenhuma"));
|
|
7340
7386
|
} }
|
|
7341
7387
|
function InfoTopbarComponent_ng_container_1_div_28_ng_container_12_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
7342
|
-
const
|
|
7388
|
+
const _r87 = i0.ɵɵgetCurrentView();
|
|
7343
7389
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
7344
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_28_ng_container_12_li_1_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(
|
|
7390
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_28_ng_container_12_li_1_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r87); const item_r85 = restoredCtx.$implicit; const ctx_r86 = i0.ɵɵnextContext(4); ctx_r86.navigate(item_r85.Url); return i0.ɵɵresetView(ctx_r86.close()); });
|
|
7345
7391
|
i0.ɵɵelementStart(2, "mat-icon");
|
|
7346
7392
|
i0.ɵɵtext(3);
|
|
7347
7393
|
i0.ɵɵelementEnd();
|
|
@@ -7352,27 +7398,27 @@ function InfoTopbarComponent_ng_container_1_div_28_ng_container_12_li_1_Template
|
|
|
7352
7398
|
i0.ɵɵtext(8);
|
|
7353
7399
|
i0.ɵɵelementEnd()()()();
|
|
7354
7400
|
} if (rf & 2) {
|
|
7355
|
-
const
|
|
7401
|
+
const item_r85 = ctx.$implicit;
|
|
7356
7402
|
i0.ɵɵadvance(3);
|
|
7357
|
-
i0.ɵɵtextInterpolate(
|
|
7403
|
+
i0.ɵɵtextInterpolate(item_r85.Icon);
|
|
7358
7404
|
i0.ɵɵadvance(2);
|
|
7359
|
-
i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(6, 3,
|
|
7405
|
+
i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(6, 3, item_r85.Description), i0.ɵɵsanitizeHtml);
|
|
7360
7406
|
i0.ɵɵadvance(3);
|
|
7361
|
-
i0.ɵɵtextInterpolate(
|
|
7407
|
+
i0.ɵɵtextInterpolate(item_r85.Date);
|
|
7362
7408
|
} }
|
|
7363
7409
|
function InfoTopbarComponent_ng_container_1_div_28_ng_container_12_Template(rf, ctx) { if (rf & 1) {
|
|
7364
7410
|
i0.ɵɵelementContainerStart(0);
|
|
7365
|
-
i0.ɵɵtemplate(1, InfoTopbarComponent_ng_container_1_div_28_ng_container_12_li_1_Template, 9, 5, "li",
|
|
7411
|
+
i0.ɵɵtemplate(1, InfoTopbarComponent_ng_container_1_div_28_ng_container_12_li_1_Template, 9, 5, "li", 13);
|
|
7366
7412
|
i0.ɵɵelementContainerEnd();
|
|
7367
7413
|
} if (rf & 2) {
|
|
7368
|
-
const
|
|
7414
|
+
const ctx_r83 = i0.ɵɵnextContext(3);
|
|
7369
7415
|
i0.ɵɵadvance(1);
|
|
7370
|
-
i0.ɵɵproperty("ngForOf",
|
|
7416
|
+
i0.ɵɵproperty("ngForOf", ctx_r83.notifications.Itens);
|
|
7371
7417
|
} }
|
|
7372
7418
|
function InfoTopbarComponent_ng_container_1_div_28_Template(rf, ctx) { if (rf & 1) {
|
|
7373
|
-
const
|
|
7374
|
-
i0.ɵɵelementStart(0, "div", 28)(1, "button",
|
|
7375
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_28_Template_button_click_1_listener() { i0.ɵɵrestoreView(
|
|
7419
|
+
const _r89 = i0.ɵɵgetCurrentView();
|
|
7420
|
+
i0.ɵɵelementStart(0, "div", 28)(1, "button", 16);
|
|
7421
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_28_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r89); const ctx_r88 = i0.ɵɵnextContext(2); ctx_r88.setNotificationStatus(true, false, false); return i0.ɵɵresetView(ctx_r88.open("notificacao")); });
|
|
7376
7422
|
i0.ɵɵpipe(2, "translate");
|
|
7377
7423
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7378
7424
|
i0.ɵɵtext(4, "notifications_none");
|
|
@@ -7388,35 +7434,35 @@ function InfoTopbarComponent_ng_container_1_div_28_Template(rf, ctx) { if (rf &
|
|
|
7388
7434
|
i0.ɵɵtemplate(12, InfoTopbarComponent_ng_container_1_div_28_ng_container_12_Template, 2, 1, "ng-container", 0);
|
|
7389
7435
|
i0.ɵɵelementEnd()()();
|
|
7390
7436
|
} if (rf & 2) {
|
|
7391
|
-
const
|
|
7392
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c0$4,
|
|
7437
|
+
const ctx_r72 = i0.ɵɵnextContext(2);
|
|
7438
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c0$4, ctx_r72.topMenu.notificacao));
|
|
7393
7439
|
i0.ɵɵadvance(1);
|
|
7394
7440
|
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 6, "Notificacoes"));
|
|
7395
7441
|
i0.ɵɵadvance(4);
|
|
7396
|
-
i0.ɵɵproperty("ngIf",
|
|
7442
|
+
i0.ɵɵproperty("ngIf", ctx_r72.notifications.Count > 0);
|
|
7397
7443
|
i0.ɵɵadvance(3);
|
|
7398
7444
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(9, 8, "Notificacoes"));
|
|
7399
7445
|
i0.ɵɵadvance(3);
|
|
7400
|
-
i0.ɵɵproperty("ngIf",
|
|
7446
|
+
i0.ɵɵproperty("ngIf", ctx_r72.notifications.Itens.length == 0);
|
|
7401
7447
|
i0.ɵɵadvance(1);
|
|
7402
|
-
i0.ɵɵproperty("ngIf",
|
|
7448
|
+
i0.ɵɵproperty("ngIf", ctx_r72.notifications.Itens.length > 0);
|
|
7403
7449
|
} }
|
|
7404
7450
|
function InfoTopbarComponent_ng_container_1_div_29_li_10_Template(rf, ctx) { if (rf & 1) {
|
|
7405
|
-
const
|
|
7451
|
+
const _r93 = i0.ɵɵgetCurrentView();
|
|
7406
7452
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
7407
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_29_li_10_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(
|
|
7453
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_29_li_10_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r93); const lang_r91 = restoredCtx.$implicit; i0.ɵɵnextContext(2); const _r77 = i0.ɵɵreference(39); const ctx_r92 = i0.ɵɵnextContext(); ctx_r92.setLanguage(lang_r91.lang); return i0.ɵɵresetView(_r77.click()); });
|
|
7408
7454
|
i0.ɵɵtext(2);
|
|
7409
7455
|
i0.ɵɵpipe(3, "translate");
|
|
7410
7456
|
i0.ɵɵelementEnd()();
|
|
7411
7457
|
} if (rf & 2) {
|
|
7412
|
-
const
|
|
7458
|
+
const lang_r91 = ctx.$implicit;
|
|
7413
7459
|
i0.ɵɵadvance(2);
|
|
7414
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 1,
|
|
7460
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 1, lang_r91.name));
|
|
7415
7461
|
} }
|
|
7416
7462
|
function InfoTopbarComponent_ng_container_1_div_29_Template(rf, ctx) { if (rf & 1) {
|
|
7417
|
-
const
|
|
7418
|
-
i0.ɵɵelementStart(0, "div", 28)(1, "button",
|
|
7419
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_29_Template_button_click_1_listener() { i0.ɵɵrestoreView(
|
|
7463
|
+
const _r95 = i0.ɵɵgetCurrentView();
|
|
7464
|
+
i0.ɵɵelementStart(0, "div", 28)(1, "button", 16);
|
|
7465
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_29_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r95); const ctx_r94 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r94.open("idioma")); });
|
|
7420
7466
|
i0.ɵɵpipe(2, "translate");
|
|
7421
7467
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7422
7468
|
i0.ɵɵtext(4, "public");
|
|
@@ -7426,34 +7472,34 @@ function InfoTopbarComponent_ng_container_1_div_29_Template(rf, ctx) { if (rf &
|
|
|
7426
7472
|
i0.ɵɵpipe(8, "translate");
|
|
7427
7473
|
i0.ɵɵelementEnd();
|
|
7428
7474
|
i0.ɵɵelementStart(9, "ul", 50);
|
|
7429
|
-
i0.ɵɵtemplate(10, InfoTopbarComponent_ng_container_1_div_29_li_10_Template, 4, 3, "li",
|
|
7475
|
+
i0.ɵɵtemplate(10, InfoTopbarComponent_ng_container_1_div_29_li_10_Template, 4, 3, "li", 13);
|
|
7430
7476
|
i0.ɵɵelementEnd()()();
|
|
7431
7477
|
} if (rf & 2) {
|
|
7432
|
-
const
|
|
7433
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0$4,
|
|
7478
|
+
const ctx_r73 = i0.ɵɵnextContext(2);
|
|
7479
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0$4, ctx_r73.topMenu.idioma));
|
|
7434
7480
|
i0.ɵɵadvance(1);
|
|
7435
7481
|
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 4, "Idioma"));
|
|
7436
7482
|
i0.ɵɵadvance(6);
|
|
7437
7483
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 6, "Idioma"));
|
|
7438
7484
|
i0.ɵɵadvance(3);
|
|
7439
|
-
i0.ɵɵproperty("ngForOf",
|
|
7485
|
+
i0.ɵɵproperty("ngForOf", ctx_r73.languages);
|
|
7440
7486
|
} }
|
|
7441
7487
|
function InfoTopbarComponent_ng_container_1_div_30_li_10_Template(rf, ctx) { if (rf & 1) {
|
|
7442
|
-
const
|
|
7488
|
+
const _r99 = i0.ɵɵgetCurrentView();
|
|
7443
7489
|
i0.ɵɵelementStart(0, "li")(1, "a", 9);
|
|
7444
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_30_li_10_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(
|
|
7490
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_30_li_10_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r99); const theme_r97 = restoredCtx.$implicit; i0.ɵɵnextContext(2); const _r77 = i0.ɵɵreference(39); const ctx_r98 = i0.ɵɵnextContext(); ctx_r98.setTheme(theme_r97.name); return i0.ɵɵresetView(_r77.click()); });
|
|
7445
7491
|
i0.ɵɵtext(2);
|
|
7446
7492
|
i0.ɵɵpipe(3, "translate");
|
|
7447
7493
|
i0.ɵɵelementEnd()();
|
|
7448
7494
|
} if (rf & 2) {
|
|
7449
|
-
const
|
|
7495
|
+
const theme_r97 = ctx.$implicit;
|
|
7450
7496
|
i0.ɵɵadvance(2);
|
|
7451
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 1,
|
|
7497
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 1, theme_r97.description), "");
|
|
7452
7498
|
} }
|
|
7453
7499
|
function InfoTopbarComponent_ng_container_1_div_30_Template(rf, ctx) { if (rf & 1) {
|
|
7454
|
-
const
|
|
7455
|
-
i0.ɵɵelementStart(0, "div", 28)(1, "button",
|
|
7456
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_30_Template_button_click_1_listener() { i0.ɵɵrestoreView(
|
|
7500
|
+
const _r101 = i0.ɵɵgetCurrentView();
|
|
7501
|
+
i0.ɵɵelementStart(0, "div", 28)(1, "button", 16);
|
|
7502
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_30_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r101); const ctx_r100 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r100.open("tema")); });
|
|
7457
7503
|
i0.ɵɵpipe(2, "translate");
|
|
7458
7504
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7459
7505
|
i0.ɵɵtext(4, "invert_colors");
|
|
@@ -7463,54 +7509,54 @@ function InfoTopbarComponent_ng_container_1_div_30_Template(rf, ctx) { if (rf &
|
|
|
7463
7509
|
i0.ɵɵpipe(8, "translate");
|
|
7464
7510
|
i0.ɵɵelementEnd();
|
|
7465
7511
|
i0.ɵɵelementStart(9, "ul", 51);
|
|
7466
|
-
i0.ɵɵtemplate(10, InfoTopbarComponent_ng_container_1_div_30_li_10_Template, 4, 3, "li",
|
|
7512
|
+
i0.ɵɵtemplate(10, InfoTopbarComponent_ng_container_1_div_30_li_10_Template, 4, 3, "li", 13);
|
|
7467
7513
|
i0.ɵɵelementEnd()()();
|
|
7468
7514
|
} if (rf & 2) {
|
|
7469
|
-
const
|
|
7470
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0$4,
|
|
7515
|
+
const ctx_r74 = i0.ɵɵnextContext(2);
|
|
7516
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0$4, ctx_r74.topMenu.tema));
|
|
7471
7517
|
i0.ɵɵadvance(1);
|
|
7472
7518
|
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 4, "Tema"));
|
|
7473
7519
|
i0.ɵɵadvance(6);
|
|
7474
7520
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 6, "Temas"));
|
|
7475
7521
|
i0.ɵɵadvance(3);
|
|
7476
|
-
i0.ɵɵproperty("ngForOf",
|
|
7522
|
+
i0.ɵɵproperty("ngForOf", ctx_r74.themes);
|
|
7477
7523
|
} }
|
|
7478
7524
|
function InfoTopbarComponent_ng_container_1_div_31_Template(rf, ctx) { if (rf & 1) {
|
|
7479
|
-
const
|
|
7480
|
-
i0.ɵɵelementStart(0, "div",
|
|
7481
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_31_Template_button_click_1_listener() { i0.ɵɵrestoreView(
|
|
7525
|
+
const _r103 = i0.ɵɵgetCurrentView();
|
|
7526
|
+
i0.ɵɵelementStart(0, "div", 15)(1, "button", 16);
|
|
7527
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_div_31_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r103); const ctx_r102 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r102.openFastSearch()); });
|
|
7482
7528
|
i0.ɵɵpipe(2, "translate");
|
|
7483
7529
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7484
7530
|
i0.ɵɵtext(4, "search");
|
|
7485
7531
|
i0.ɵɵelementEnd()()();
|
|
7486
7532
|
} if (rf & 2) {
|
|
7487
|
-
const
|
|
7533
|
+
const ctx_r75 = i0.ɵɵnextContext(2);
|
|
7488
7534
|
i0.ɵɵadvance(1);
|
|
7489
|
-
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 1,
|
|
7535
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 1, ctx_r75.fastsearchtitle));
|
|
7490
7536
|
} }
|
|
7491
7537
|
function InfoTopbarComponent_ng_container_1_div_32_Template(rf, ctx) { if (rf & 1) {
|
|
7492
|
-
i0.ɵɵelementStart(0, "div",
|
|
7538
|
+
i0.ɵɵelementStart(0, "div", 15)(1, "button", 52);
|
|
7493
7539
|
i0.ɵɵpipe(2, "translate");
|
|
7494
7540
|
i0.ɵɵelementStart(3, "mat-icon");
|
|
7495
7541
|
i0.ɵɵtext(4, "person");
|
|
7496
7542
|
i0.ɵɵelementEnd()()();
|
|
7497
7543
|
} if (rf & 2) {
|
|
7498
|
-
const
|
|
7544
|
+
const ctx_r76 = i0.ɵɵnextContext(2);
|
|
7499
7545
|
i0.ɵɵadvance(1);
|
|
7500
|
-
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 2, "MeuPerfil"))("routerLink",
|
|
7546
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(2, 2, "MeuPerfil"))("routerLink", ctx_r76.profileurl);
|
|
7501
7547
|
} }
|
|
7502
7548
|
function InfoTopbarComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
7503
|
-
const
|
|
7549
|
+
const _r105 = i0.ɵɵgetCurrentView();
|
|
7504
7550
|
i0.ɵɵelementContainerStart(0);
|
|
7505
7551
|
i0.ɵɵelementStart(1, "div", 3);
|
|
7506
7552
|
i0.ɵɵtemplate(2, InfoTopbarComponent_ng_container_1_div_2_Template, 5, 3, "div", 38);
|
|
7507
|
-
i0.ɵɵelementStart(3, "div",
|
|
7508
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_Template_div_click_3_listener() { i0.ɵɵrestoreView(
|
|
7553
|
+
i0.ɵɵelementStart(3, "div", 24);
|
|
7554
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_Template_div_click_3_listener() { i0.ɵɵrestoreView(_r105); const ctx_r104 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r104.openSidebar()); });
|
|
7509
7555
|
i0.ɵɵelement(4, "span")(5, "span")(6, "span")(7, "span")(8, "span")(9, "span");
|
|
7510
7556
|
i0.ɵɵelementEnd();
|
|
7511
7557
|
i0.ɵɵtemplate(10, InfoTopbarComponent_ng_container_1_h1_10_Template, 5, 4, "h1", 39);
|
|
7512
7558
|
i0.ɵɵelementStart(11, "div", 7)(12, "div", 40)(13, "button", 41);
|
|
7513
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_Template_button_click_13_listener() { i0.ɵɵrestoreView(
|
|
7559
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_Template_button_click_13_listener() { i0.ɵɵrestoreView(_r105); const ctx_r106 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r106.open("empresa")); });
|
|
7514
7560
|
i0.ɵɵelementStart(14, "mat-icon");
|
|
7515
7561
|
i0.ɵɵtext(15, "fingerprint");
|
|
7516
7562
|
i0.ɵɵelementEnd();
|
|
@@ -7526,21 +7572,21 @@ function InfoTopbarComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
7526
7572
|
i0.ɵɵpipe(25, "translate");
|
|
7527
7573
|
i0.ɵɵelementEnd();
|
|
7528
7574
|
i0.ɵɵelementStart(26, "ul", 45);
|
|
7529
|
-
i0.ɵɵtemplate(27, InfoTopbarComponent_ng_container_1_li_27_Template, 3, 1, "li",
|
|
7575
|
+
i0.ɵɵtemplate(27, InfoTopbarComponent_ng_container_1_li_27_Template, 3, 1, "li", 13);
|
|
7530
7576
|
i0.ɵɵelementEnd()()();
|
|
7531
|
-
i0.ɵɵtemplate(28, InfoTopbarComponent_ng_container_1_div_28_Template, 13, 12, "div",
|
|
7532
|
-
i0.ɵɵtemplate(29, InfoTopbarComponent_ng_container_1_div_29_Template, 11, 10, "div",
|
|
7533
|
-
i0.ɵɵtemplate(30, InfoTopbarComponent_ng_container_1_div_30_Template, 11, 10, "div",
|
|
7534
|
-
i0.ɵɵtemplate(31, InfoTopbarComponent_ng_container_1_div_31_Template, 5, 3, "div",
|
|
7535
|
-
i0.ɵɵtemplate(32, InfoTopbarComponent_ng_container_1_div_32_Template, 5, 4, "div",
|
|
7536
|
-
i0.ɵɵelementStart(33, "div",
|
|
7537
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_Template_button_click_34_listener() { i0.ɵɵrestoreView(
|
|
7577
|
+
i0.ɵɵtemplate(28, InfoTopbarComponent_ng_container_1_div_28_Template, 13, 12, "div", 19);
|
|
7578
|
+
i0.ɵɵtemplate(29, InfoTopbarComponent_ng_container_1_div_29_Template, 11, 10, "div", 19);
|
|
7579
|
+
i0.ɵɵtemplate(30, InfoTopbarComponent_ng_container_1_div_30_Template, 11, 10, "div", 19);
|
|
7580
|
+
i0.ɵɵtemplate(31, InfoTopbarComponent_ng_container_1_div_31_Template, 5, 3, "div", 18);
|
|
7581
|
+
i0.ɵɵtemplate(32, InfoTopbarComponent_ng_container_1_div_32_Template, 5, 4, "div", 18);
|
|
7582
|
+
i0.ɵɵelementStart(33, "div", 15)(34, "button", 16);
|
|
7583
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_Template_button_click_34_listener() { i0.ɵɵrestoreView(_r105); const ctx_r107 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r107.logout()); });
|
|
7538
7584
|
i0.ɵɵpipe(35, "translate");
|
|
7539
7585
|
i0.ɵɵelementStart(36, "mat-icon");
|
|
7540
7586
|
i0.ɵɵtext(37, "power_settings_new");
|
|
7541
7587
|
i0.ɵɵelementEnd()()();
|
|
7542
|
-
i0.ɵɵelementStart(38, "div",
|
|
7543
|
-
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_Template_div_click_38_listener() { i0.ɵɵrestoreView(
|
|
7588
|
+
i0.ɵɵelementStart(38, "div", 22, 23);
|
|
7589
|
+
i0.ɵɵlistener("click", function InfoTopbarComponent_ng_container_1_Template_div_click_38_listener() { i0.ɵɵrestoreView(_r105); const ctx_r108 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r108.close()); });
|
|
7544
7590
|
i0.ɵɵelementEnd()()();
|
|
7545
7591
|
i0.ɵɵelementContainerEnd();
|
|
7546
7592
|
} if (rf & 2) {
|
|
@@ -7619,6 +7665,7 @@ class InfoTopbarComponent {
|
|
|
7619
7665
|
this.prodution = false;
|
|
7620
7666
|
this.notifications = new InfoNotificationModel();
|
|
7621
7667
|
this.topMenu = {
|
|
7668
|
+
cliente: false,
|
|
7622
7669
|
empresa: false,
|
|
7623
7670
|
unidade: false,
|
|
7624
7671
|
infoia: false,
|
|
@@ -7696,6 +7743,19 @@ class InfoTopbarComponent {
|
|
|
7696
7743
|
this._authenticationService.logout();
|
|
7697
7744
|
}, err => this._authenticationService.logout());
|
|
7698
7745
|
}
|
|
7746
|
+
setClient(client) {
|
|
7747
|
+
this._authenticationService.trocarCliente(this._session.Login, client.Id).subscribe(res => {
|
|
7748
|
+
if (res.success) {
|
|
7749
|
+
document.body.setAttribute('loading', 'true');
|
|
7750
|
+
this._session.Permissoes = [];
|
|
7751
|
+
localStorage.removeItem("Dashboard");
|
|
7752
|
+
this._utilities.setLocalStorage(this._platform.SessionKey, JSON.stringify(this._session));
|
|
7753
|
+
this._router.navigateByUrl('').then(r => location.reload());
|
|
7754
|
+
}
|
|
7755
|
+
else
|
|
7756
|
+
this._authenticationService.logout();
|
|
7757
|
+
}, err => this._authenticationService.logout());
|
|
7758
|
+
}
|
|
7699
7759
|
setLanguage(language) {
|
|
7700
7760
|
this._translateService.set(language);
|
|
7701
7761
|
}
|
|
@@ -7720,6 +7780,7 @@ class InfoTopbarComponent {
|
|
|
7720
7780
|
this.modalRef.afterClosed().subscribe(r => { this.modalRef = null; });
|
|
7721
7781
|
}
|
|
7722
7782
|
open(achtiveMenu) {
|
|
7783
|
+
this.topMenu.cliente = achtiveMenu == 'cliente';
|
|
7723
7784
|
this.topMenu.empresa = achtiveMenu == 'empresa';
|
|
7724
7785
|
this.topMenu.unidade = achtiveMenu == 'unidade';
|
|
7725
7786
|
this.topMenu.infoia = achtiveMenu == 'infoia';
|
|
@@ -7729,6 +7790,7 @@ class InfoTopbarComponent {
|
|
|
7729
7790
|
this.topMenu.calendario = achtiveMenu == 'calendario';
|
|
7730
7791
|
}
|
|
7731
7792
|
close() {
|
|
7793
|
+
this.topMenu.cliente = false;
|
|
7732
7794
|
this.topMenu.empresa = false;
|
|
7733
7795
|
this.topMenu.unidade = false;
|
|
7734
7796
|
this.topMenu.infoia = false;
|
|
@@ -7784,9 +7846,9 @@ class InfoTopbarComponent {
|
|
|
7784
7846
|
}
|
|
7785
7847
|
}
|
|
7786
7848
|
/** @nocollapse */ InfoTopbarComponent.ɵfac = function InfoTopbarComponent_Factory(t) { return new (t || InfoTopbarComponent)(i0.ɵɵdirectiveInject(InfoTranslateService), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoThemeService), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(InfoDialogModal), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i1$3.MatDialog), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(Utilities)); };
|
|
7787
|
-
/** @nocollapse */ InfoTopbarComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoTopbarComponent, selectors: [["info-topbar"]], inputs: { opened: "opened", languages: "languages", themes: "themes", notificationapi: "notificationapi", notificationgetmethod: "notificationgetmethod", notificationpostmethod: "notificationpostmethod", notificationverifymethod: "notificationverifymethod", notificationverifyenabled: "notificationverifyenabled", fastsearchform: "fastsearchform", fastsearchformwidth: "fastsearchformwidth", fastsearchtitle: "fastsearchtitle", profileurl: "profileurl", setthemeonchangecompany: "setthemeonchangecompany", enabledia: "enabledia" }, outputs: { onchangestate: "onchangestate", ongetnotification: "ongetnotification", onverifynotification: "onverifynotification" }, ngContentSelectors: _c3$3, decls: 4, vars: 4, consts: [[4, "ngIf"], ["class", "loading-bar", 4, "ngIf"], ["class", "block", 4, "ngIf"], [1, "site-navbar"], [1, "logo"], [1, "logo-img"], [1, "logo-img-resp"], [1, "nav-items"], [1, "nav-item", "usuario-logado"], [3, "click"], [
|
|
7849
|
+
/** @nocollapse */ InfoTopbarComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoTopbarComponent, selectors: [["info-topbar"]], inputs: { opened: "opened", languages: "languages", themes: "themes", notificationapi: "notificationapi", notificationgetmethod: "notificationgetmethod", notificationpostmethod: "notificationpostmethod", notificationverifymethod: "notificationverifymethod", notificationverifyenabled: "notificationverifyenabled", fastsearchform: "fastsearchform", fastsearchformwidth: "fastsearchformwidth", fastsearchtitle: "fastsearchtitle", profileurl: "profileurl", setthemeonchangecompany: "setthemeonchangecompany", enabledia: "enabledia" }, outputs: { onchangestate: "onchangestate", ongetnotification: "ongetnotification", onverifynotification: "onverifynotification" }, ngContentSelectors: _c3$3, decls: 4, vars: 4, consts: [[4, "ngIf"], ["class", "loading-bar", 4, "ngIf"], ["class", "block", 4, "ngIf"], [1, "site-navbar"], [1, "logo"], [1, "logo-img"], [1, "logo-img-resp"], [1, "nav-items"], [1, "nav-item", "usuario-logado", 3, "ngClass"], [3, "click"], [1, "menu-lateral-direita"], [1, "fechar", 3, "click"], [1, "empresas"], [4, "ngFor", "ngForOf"], ["class", "nav-item selecao-empresa", 3, "ngClass", 4, "ngIf"], [1, "nav-item"], ["mat-icon-button", "", 3, "matTooltip", "click"], ["class", "nav-item selecao-infoia", 3, "ngClass", 4, "ngIf"], ["class", "nav-item", 4, "ngIf"], ["class", "nav-item", 3, "ngClass", 4, "ngIf"], ["class", "nav-item selecao-tema", 3, "ngClass", 4, "ngIf"], ["class", "nav-item selecao-idioma", 3, "ngClass", 4, "ngIf"], [1, "items-overlay", 3, "click"], ["divModal", ""], [1, "navbar-button", 3, "ngClass", "click"], [1, "nav-item", "selecao-empresa", 3, "ngClass"], [1, "nav-item", "selecao-infoia", 3, "ngClass"], [1, "menu-lateral-direita", "infoia"], [1, "nav-item", 3, "ngClass"], ["class", "badge", 4, "ngIf"], [1, "badge"], [2, "cursor", "default"], [1, "content"], [3, "innerHtml"], [1, "nav-item", "selecao-tema", 3, "ngClass"], [1, "temas"], [1, "nav-item", "selecao-idioma", 3, "ngClass"], [1, "idiomas"], ["class", "sessao-clone text-lightgray", 4, "ngIf"], ["id", "page-title", "class", "page-title", 4, "ngIf"], [1, "nav-item", "user-profile", 3, "ngClass"], ["mat-button", "", 3, "click"], [1, "name"], [1, "dropdown-menu"], [1, "menu-title"], [1, "company"], [1, "sessao-clone", "text-lightgray"], ["id", "page-title", 1, "page-title"], [1, "desc", 3, "innerHtml"], [1, "date"], [1, "languages"], [1, "themes"], ["mat-icon-button", "", 3, "matTooltip", "routerLink"], [1, "loading-bar"], ["color", "primary", "mode", "indeterminate"], [1, "block"]], template: function InfoTopbarComponent_Template(rf, ctx) { if (rf & 1) {
|
|
7788
7850
|
i0.ɵɵprojectionDef();
|
|
7789
|
-
i0.ɵɵtemplate(0, InfoTopbarComponent_ng_container_0_Template,
|
|
7851
|
+
i0.ɵɵtemplate(0, InfoTopbarComponent_ng_container_0_Template, 47, 29, "ng-container", 0);
|
|
7790
7852
|
i0.ɵɵtemplate(1, InfoTopbarComponent_ng_container_1_Template, 40, 24, "ng-container", 0);
|
|
7791
7853
|
i0.ɵɵtemplate(2, InfoTopbarComponent_section_2_Template, 2, 0, "section", 1);
|
|
7792
7854
|
i0.ɵɵtemplate(3, InfoTopbarComponent_div_3_Template, 1, 0, "div", 2);
|
|
@@ -7801,7 +7863,7 @@ class InfoTopbarComponent {
|
|
|
7801
7863
|
} }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i4.MatIcon, i13.MatButton, i7.MatProgressBar, i15.MatTooltip, i1$1.RouterLink, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.topmenu[_nghost-%COMP%]{border-bottom-width:0!important;box-shadow:none!important}.uxc3[_nghost-%COMP%]{transition:left .2s ease-in-out;display:block;height:85px;left:0;position:fixed;right:0;top:0;z-index:9998}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{left:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%]{position:absolute;top:17px}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%] .logo-img[_ngcontent-%COMP%]{display:none!important}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%] .logo-img-resp[_ngcontent-%COMP%]{display:block!important;height:45px!important}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%]{position:absolute;top:70px!important;left:-100%;width:calc(100% + 6px);border-right:none!important;padding-left:25px!important;padding-top:15px!important;transition:left .2s ease-in-out}.uxc3[_nghost-%COMP%] .usuario-logado.menu-aberto[_ngcontent-%COMP%]{left:0%}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{text-align:left!important}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{display:inline-block;font-size:14px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{position:relative;display:inline-block;padding-right:20px;margin-right:5px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]:after{position:absolute;top:2px;right:0;content:\"-\";width:10px;height:10px}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{position:absolute;top:115px!important;left:-100%;width:calc(100% + 6px);margin:0!important;padding:5px 15px 6px 25px;transition:left .2s ease-in-out}.uxc3[_nghost-%COMP%] .selecao-empresa.menu-aberto[_ngcontent-%COMP%]{left:0%}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] button[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{width:100%!important}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{flex-wrap:wrap}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%]{display:block;height:60px;width:500px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%] .logo-img[_ngcontent-%COMP%]{display:block;height:100%;width:100%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%] .logo-img-resp[_ngcontent-%COMP%]{display:none;height:100%;width:100%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{cursor:pointer;display:none;height:24px;margin:0;position:absolute;transform:rotate(0);width:35px;top:20px;left:70px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{display:block}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] sub[_ngcontent-%COMP%]{position:absolute;bottom:-10px;text-transform:uppercase}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%;top:10px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(even){left:50%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(odd){left:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){top:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){top:10px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){top:20px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){transform:rotate(45deg)}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){transform:rotate(-45deg)}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1){left:2px;top:6px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){left:calc(50% - 7px);top:6px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3){left:-50%;opacity:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){left:100%;opacity:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){left:2px;top:15px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){left:calc(50% - 7px);top:15px}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%]{line-height:20px;text-transform:none;transition:border .2s ease-in-out}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{font-size:10px;font-weight:500;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{position:relative;top:0;font-size:14px;font-weight:600;margin-bottom:0;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{top:-1px;padding:5px 20px 5px 0;cursor:pointer}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{top:5px;margin:0}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{position:absolute;font-size:22px;top:17px;right:0;text-align:center}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%]{padding-left:10px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{text-align:right}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{left:0}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{padding-left:20px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;height:100%;margin:0 -5px;text-align:right}@media screen and (min-width: 544px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;top:0;position:absolute;right:10px}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out;top:-14px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%]{display:flex;height:100%;padding:5px;width:100%}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:24px;height:auto!important;line-height:auto!important;vertical-align:middle;width:auto!important}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%] .marker[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%] .marker[_ngcontent-%COMP%]{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%]{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-ripple[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-ripple[_ngcontent-%COMP%]{display:none}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{display:none;top:0;right:0;padding:0;position:fixed;width:420px;height:100%;z-index:9999}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{left:auto;margin-left:0;right:0}}@media screen and (max-width: 543px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{left:0;margin-left:0;width:100%}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{left:100%;margin-left:-34px}}@media screen and (max-width: 543px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{display:none}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > .fechar[_ngcontent-%COMP%]{position:absolute;top:30px;right:30px;font-size:28px;cursor:pointer;opacity:.8}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > .fechar[_ngcontent-%COMP%]:hover{opacity:1}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > h4[_ngcontent-%COMP%]{font-size:24px;font-weight:500;margin:30px 0 30px 38px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;height:calc(100% - 170px);overflow-y:auto;border-radius:0 0 4px 4px;padding:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.05)}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{cursor:default!important;opacity:.4}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:last-child{border-bottom:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{line-height:20px;padding:5px 0;margin-bottom:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{font-weight:600;font-size:13px;margin-bottom:5px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{font-size:14px;font-weight:500}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:14px;font-weight:500;padding:10px 40px!important;align-items:center;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .lista-empresas[_ngcontent-%COMP%]{display:block}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] ~ .items-overlay[_ngcontent-%COMP%]{transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible;opacity:.5}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .items-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%]{background:#fff;border-bottom:1px solid #e4e9f0;display:block;height:70px;left:120px;position:fixed;right:0;top:0;z-index:9998}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%]{left:0}}.uxc2[_nghost-%COMP%] .sessao-clone[_ngcontent-%COMP%]{position:absolute;padding:8px;top:0;background-color:#a80707;z-index:1}.uxc2[_nghost-%COMP%] .sessao-clone[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{font-size:10px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{flex-wrap:wrap}}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{cursor:pointer;display:none;height:24px;margin:0;position:relative;transform:rotate(0);width:30px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{display:block}}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(even){left:50%}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(odd){left:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){top:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){top:10px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){top:20px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){transform:rotate(45deg)}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){transform:rotate(-45deg)}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1){left:3px;top:6px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){left:calc(50% - 3px);top:6px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3){left:-50%;opacity:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){left:100%;opacity:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){left:3px;top:15px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){left:calc(50% - 3px);top:15px}.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%]{font-size:1.4rem;font-weight:400;line-height:1;margin:0;width:100%}.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{top:4px;left:0;font-size:1.1em}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%]{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;height:100%;margin:0 -5px;text-align:right}@media only screen and (min-width: 544px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}@media only screen and (min-width: 544px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{position:relative}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .mat-icon, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .mat-icon{font-size:22px;height:30px;line-height:30px;vertical-align:top;width:30px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .mat-icon .marker, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .badge, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .avatar, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .avatar{border-radius:50%;height:40px;overflow:hidden;width:40px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name{top:10px;padding-left:10px;white-space:nowrap;line-height:19px;text-align:left;font-size:12px;margin-top:-3px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name label, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name label{display:block;margin:0;font-size:10px;line-height:12px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name span, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name span{top:-3px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-focus-overlay, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-ripple, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-focus-overlay, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-ripple{display:none}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{box-shadow:0 5px 10px 2px #00000040;display:none;left:50%;margin:0 0 0 -150px;padding:0;position:absolute;top:100%;width:300px;z-index:9999}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{left:auto;margin-left:0;right:0}}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{left:0;margin-left:0;width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.calendar[_ngcontent-%COMP%]{left:-34%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.calendar[_ngcontent-%COMP%]:before{left:60%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{left:100%;margin-left:-34px}}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .company[_ngcontent-%COMP%] a[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .languages[_ngcontent-%COMP%] a[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .themesa[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{cursor:pointer!important}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .themes[_ngcontent-%COMP%]{max-height:500px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .pesquisa-rapida[_ngcontent-%COMP%] input[_ngcontent-%COMP%]{color:#fff}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-title[_ngcontent-%COMP%]{margin:0;padding:11px;text-align:center}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-title[_ngcontent-%COMP%]{border-bottom:1px solid rgba(255,255,255,.1);color:#fff;font-size:16px;line-height:1.3}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{color:#fff}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:#fffc}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;max-height:241px;overflow:auto;padding:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]{border-bottom:1px solid rgba(255,255,255,.05)}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{cursor:default!important;opacity:.4}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]:hover{background:inherit!important}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:last-child{border-bottom:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{align-items:center;color:#fff;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .avatar[_ngcontent-%COMP%]{border-radius:50%;height:40px;margin-right:11px;width:40px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%]{font-size:.85rem}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .desc[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .date[_ngcontent-%COMP%]{display:block;font-size:.75rem;font-style:italic;margin-top:4px;opacity:.6}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .meta[_ngcontent-%COMP%]{align-items:flex-end;display:flex;justify-content:space-between;line-height:1.3;margin-bottom:4px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .meta[_ngcontent-%COMP%] .date[_ngcontent-%COMP%]{margin:0 0 0 11px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]{left:auto;right:0;width:220px}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]:before{display:none}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{padding-top:8px;padding-bottom:8px;cursor:pointer}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .fa[_ngcontent-%COMP%]{margin-right:11px;min-width:15px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] ~ .items-overlay[_ngcontent-%COMP%]{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .items-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}"] });
|
|
7802
7864
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoTopbarComponent, [{
|
|
7803
7865
|
type: Component,
|
|
7804
|
-
args: [{ selector: 'info-topbar', template: "<ng-container *ngIf=\"_platform.Config.ux >= 3\">\r\n <div class=\"site-navbar\">\r\n <a class=\"logo\" >\r\n <i class=\"logo-img\"></i>\r\n <i class=\"logo-img-resp\"></i>\r\n </a>\r\n \r\n <div class=\"nav-items\">\r\n <div class=\"nav-item usuario-logado\" [class.separador]=\"_session.Empresas.length > 1 || _session.Unidades\">\r\n <dl (click)=\"navigate(profileurl)\">\r\n <dt>{{ _session.Perfil }}</dt>\r\n <dd>{{ _session.Usuario }}</dd>\r\n </dl>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-empresa\" *ngIf=\"_session.Empresas.length > 1\" [ngClass]=\"{ 'opened' : topMenu.empresa }\">\r\n <dl (click)=\"open('empresa')\">\r\n <dt>{{ 'Empresa' | translate }}</dt>\r\n <dd>{{ _session.Empresa }}</dd>\r\n </dl>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Empresas' | translate }}</h4>\r\n \r\n <ul class=\"empresas\">\r\n <li *ngFor=\"let company of _session.Empresas\" >\r\n <a (click)=\"setCompany(company); divModal.click();\">{{ company.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-empresa\" *ngIf=\"_session.Unidade && (_session.Unidades || []).length > 1\" [ngClass]=\"{ 'opened' : topMenu.unidade }\">\r\n <dl (click)=\"open('unidade')\">\r\n <dt>{{ 'Unidade' | translate }}</dt>\r\n <dd>{{ _session.Unidade }}</dd>\r\n </dl>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Unidades' | translate }}</h4>\r\n \r\n <ul class=\"empresas\">\r\n <li *ngFor=\"let unity of _session.Unidades\" >\r\n <a (click)=\"setUnity(unity); divModal.click();\">{{ unity.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-infoia\" [ngClass]=\"{ 'opened': topMenu.infoia }\" *ngIf=\"enabledia\">\r\n <button mat-icon-button (click)=\"open('infoia')\" [matTooltip]=\"'Info IA' | translate\">\r\n <label>{{ 'InfoIA' | translate }}</label>\r\n <mat-icon>diversity_2</mat-icon>\r\n </button>\r\n \r\n <div class=\"menu-lateral-direita infoia\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'InfoIA' | translate }}</h4>\r\n <div>\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"fastsearchform\">\r\n <button mat-icon-button (click)=\"openFastSearch()\" [matTooltip]=\"fastsearchtitle | translate\">\r\n <mat-icon>search</mat-icon>\r\n </button>\r\n </div>\r\n \r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened' : topMenu.notificacao }\" *ngIf=\"notificationapi\">\r\n <button mat-icon-button (click)=\"setNotificationStatus(true, false, false);open('notificacao')\" [matTooltip]=\"'Notificacoes' | translate\"><mat-icon>notifications_none</mat-icon>\r\n <span class=\"badge\" *ngIf=\"notifications.Count > 0\">{{ notifications.Count }}</span>\r\n </button>\r\n \r\n <div class=\"menu-lateral-direita\" >\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Notificacoes' | translate }}</h4>\r\n \r\n <ul>\r\n <li *ngIf=\"notifications.Itens.length == 0\">\r\n <a style=\"cursor: default;\">\r\n <mat-icon>notifications</mat-icon>\r\n <div class=\"content\">\r\n <span>{{ 'TNotificacoesNenhuma' | translate }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n \r\n <ng-container *ngIf=\"notifications.Itens.length > 0\">\r\n <li *ngFor=\"let item of notifications.Itens\">\r\n <a (click)=\"navigate(item.Url);close()\">\r\n <dl>\r\n <dt>{{ 'Dia' | translate }} {{ item.Date }}</dt>\r\n <dd [innerHtml]=\"item.Description | translate\"></dd>\r\n </dl>\r\n </a>\r\n </li>\r\n </ng-container>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <!-- <div class=\"nav-item\">\r\n <button mat-icon-button (click)=\"alternarModo()\" [matTooltip]=\"'AlternarModo' | translate\"><mat-icon>brightness_6</mat-icon></button>\r\n </div> -->\r\n \r\n <div class=\"nav-item selecao-tema\" [ngClass]=\"{ 'opened': topMenu.tema }\" *ngIf=\"!prodution && themes.length > 0\">\r\n <button mat-icon-button (click)=\"open('tema')\" [matTooltip]=\"'Tema' | translate\"><mat-icon>invert_colors</mat-icon></button>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Temas' | translate }}</h4>\r\n \r\n <ul class=\"temas\">\r\n <li *ngFor=\"let theme of themes\">\r\n <a (click)=\"setTheme(theme.name); divModal.click();\"> {{ theme.description | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"_platform.Config.enabledPrime\">\r\n <button mat-icon-button [matTooltip]=\"(_platform.ModoPrime ? 'ModoPadrao' : 'Prime') | translate\" (click)=\"toggleMode()\"><mat-icon>brightness_6</mat-icon></button>\r\n </div>\r\n \r\n <div class=\"nav-item selecao-idioma\" [ngClass]=\"{ 'opened': topMenu.idioma }\" *ngIf=\"languages.length > 0\">\r\n <button mat-icon-button (click)=\"open('idioma')\" [matTooltip]=\"'Idioma' | translate\"><mat-icon>public</mat-icon></button>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Idiomas' | translate }}</h4>\r\n \r\n <ul class=\"idiomas\">\r\n <li *ngFor=\"let lang of languages\">\r\n <a (click)=\"setLanguage(lang.lang); divModal.click();\">{{ lang.name | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\">\r\n <button mat-icon-button [matTooltip]=\"'Sair' | translate\" (click)=\"logout()\"><mat-icon>power_settings_new</mat-icon></button>\r\n </div>\r\n \r\n <div class=\"items-overlay\" (click)=\"close()\" #divModal></div>\r\n </div>\r\n \r\n <div class=\"navbar-button\" [ngClass]=\"{ 'open' : opened }\" (click)=\"openSidebar()\">\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n </div>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"_platform.Config.ux <= 2\">\r\n <div class=\"site-navbar\">\r\n <div class=\"sessao-clone text-lightgray\" *ngIf=\"_session.Clone\">\r\n <div><label>({{ 'ModoClone' | translate }})</label></div>\r\n </div>\r\n\r\n <div class=\"navbar-button\" [ngClass]=\"{ 'open' : opened }\" (click)=\"openSidebar()\">\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n </div>\r\n\r\n <h1 id=\"page-title\" class=\"page-title\" *ngIf=\"_platform.PaginaAtiva\">\r\n <mat-icon>{{ _platform.PaginaAtiva.Icone }}</mat-icon> {{ _platform.PaginaAtiva.Titulo | translate }}\r\n </h1>\r\n\r\n <div class=\"nav-items\">\r\n <div class=\"nav-item user-profile\" [ngClass]=\"{ 'opened' : topMenu.empresa }\">\r\n <button mat-button (click)=\"open('empresa')\">\r\n <mat-icon>fingerprint</mat-icon>\r\n <div class=\"name\">\r\n <label>{{ \"Empresa\" | translate }}</label>\r\n <span>{{ _session.Empresa }}</span>\r\n </div>\r\n </button>\r\n\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Empresa' | translate }}</h4>\r\n\r\n <ul class=\"company\">\r\n <li *ngFor=\"let company of _session.Empresas\" >\r\n <a (click)=\"setCompany(company); divModal.click();\">{{ company.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened' : topMenu.notificacao }\" *ngIf=\"notificationapi\">\r\n <button mat-icon-button (click)=\"setNotificationStatus(true, false, false);open('notificacao')\" [matTooltip]=\"'Notificacoes' | translate\"><mat-icon>notifications_none</mat-icon>\r\n <span class=\"badge\" *ngIf=\"notifications.Count > 0\">{{ notifications.Count }}</span>\r\n </button>\r\n\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Notificacoes' | translate }}</h4>\r\n\r\n <ul>\r\n <li *ngIf=\"notifications.Itens.length == 0\">\r\n <a style=\"cursor: default;\">\r\n <mat-icon>notifications_off</mat-icon>\r\n <div class=\"content\">\r\n <span>{{ 'TNotificacoesNenhuma' | translate }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <ng-container *ngIf=\"notifications.Itens.length > 0\">\r\n <li *ngFor=\"let item of notifications.Itens\">\r\n <a (click)=\"navigate(item.Url);close()\">\r\n <mat-icon>{{ item.Icon }}</mat-icon>\r\n <div class=\"content\">\r\n <span class=\"desc\" [innerHtml]=\"item.Description | translate\"></span>\r\n <span class=\"date\">{{ item.Date }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n </ng-container>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened': topMenu.idioma }\" *ngIf=\"languages.length > 0\">\r\n <button mat-icon-button (click)=\"open('idioma')\" [matTooltip]=\"'Idioma' | translate\"><mat-icon>public</mat-icon></button>\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Idioma' | translate }}</h4>\r\n <ul class=\"languages\">\r\n <li *ngFor=\"let lang of languages\">\r\n <a (click)=\"setLanguage(lang.lang); divModal.click();\">{{ lang.name | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened': topMenu.tema }\" *ngIf=\"!prodution && themes.length > 0\">\r\n <button mat-icon-button (click)=\"open('tema')\" [matTooltip]=\"'Tema' | translate\"><mat-icon>invert_colors</mat-icon></button>\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Temas' | translate }}</h4>\r\n <ul class=\"themes\">\r\n <li *ngFor=\"let theme of themes\">\r\n <a (click)=\"setTheme(theme.name); divModal.click();\"> {{ theme.description | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"fastsearchform\">\r\n <button mat-icon-button (click)=\"openFastSearch()\" [matTooltip]=\"fastsearchtitle | translate\">\r\n <mat-icon>search</mat-icon>\r\n </button>\r\n </div>\r\n\r\n <div class=\"nav-item\" *ngIf=\"profileurl != ''\">\r\n <button mat-icon-button [matTooltip]=\"'MeuPerfil' | translate\" [routerLink]=\"profileurl\"><mat-icon>person</mat-icon></button>\r\n </div>\r\n\r\n <div class=\"nav-item\">\r\n <button mat-icon-button [matTooltip]=\"'Sair' | translate\" (click)=\"logout()\"><mat-icon>power_settings_new</mat-icon></button>\r\n </div>\r\n\r\n <div class=\"items-overlay\" (click)=\"close()\" #divModal></div>\r\n </div>\r\n </div>\r\n</ng-container>\r\n\r\n<section class=\"loading-bar\" *ngIf=\"loading\"><mat-progress-bar color=\"primary\" mode=\"indeterminate\"></mat-progress-bar></section>\r\n<div class=\"block\" *ngIf=\"loading\"></div>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host.topmenu{border-bottom-width:0!important;box-shadow:none!important}:host.uxc3{transition:left .2s ease-in-out;display:block;height:85px;left:0;position:fixed;right:0;top:0;z-index:9998}@media screen and (max-width: 991px){:host.uxc3{left:0}:host.uxc3 .nav-items{width:100%}:host.uxc3 .logo{position:absolute;top:17px}:host.uxc3 .logo .logo-img{display:none!important}:host.uxc3 .logo .logo-img-resp{display:block!important;height:45px!important}:host.uxc3 .usuario-logado{position:absolute;top:70px!important;left:-100%;width:calc(100% + 6px);border-right:none!important;padding-left:25px!important;padding-top:15px!important;transition:left .2s ease-in-out}:host.uxc3 .usuario-logado.menu-aberto{left:0%}:host.uxc3 .usuario-logado dl{text-align:left!important}:host.uxc3 .usuario-logado dl dt{display:inline-block;font-size:14px}:host.uxc3 .usuario-logado dl dd{position:relative;display:inline-block;padding-right:20px;margin-right:5px}:host.uxc3 .usuario-logado dl dd:after{position:absolute;top:2px;right:0;content:\"-\";width:10px;height:10px}:host.uxc3 .selecao-empresa{position:absolute;top:115px!important;left:-100%;width:calc(100% + 6px);margin:0!important;padding:5px 15px 6px 25px;transition:left .2s ease-in-out}:host.uxc3 .selecao-empresa.menu-aberto{left:0%}:host.uxc3 .selecao-empresa button,:host.uxc3 .selecao-empresa dl{width:100%!important}}:host.uxc3 .site-navbar{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media screen and (max-width: 991px){:host.uxc3 .site-navbar{flex-wrap:wrap}}:host.uxc3 .site-navbar .logo{display:block;height:60px;width:500px}:host.uxc3 .site-navbar .logo .logo-img{display:block;height:100%;width:100%}:host.uxc3 .site-navbar .logo .logo-img-resp{display:none;height:100%;width:100%}:host.uxc3 .site-navbar .navbar-button{cursor:pointer;display:none;height:24px;margin:0;position:absolute;transform:rotate(0);width:35px;top:20px;left:70px}@media screen and (max-width: 991px){:host.uxc3 .site-navbar .navbar-button{display:block}}:host.uxc3 .site-navbar .navbar-button sub{position:absolute;bottom:-10px;text-transform:uppercase}:host.uxc3 .site-navbar .navbar-button span{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%;top:10px}:host.uxc3 .site-navbar .navbar-button span:nth-child(even){left:50%}:host.uxc3 .site-navbar .navbar-button span:nth-child(odd){left:0}:host.uxc3 .site-navbar .navbar-button span:nth-child(1),:host.uxc3 .site-navbar .navbar-button span:nth-child(2){top:0}:host.uxc3 .site-navbar .navbar-button span:nth-child(3),:host.uxc3 .site-navbar .navbar-button span:nth-child(4){top:10px}:host.uxc3 .site-navbar .navbar-button span:nth-child(5),:host.uxc3 .site-navbar .navbar-button span:nth-child(6){top:20px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(1),:host.uxc3 .site-navbar .navbar-button.open span:nth-child(6){transform:rotate(45deg)}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(2),:host.uxc3 .site-navbar .navbar-button.open span:nth-child(5){transform:rotate(-45deg)}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(1){left:2px;top:6px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(2){left:calc(50% - 7px);top:6px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(3){left:-50%;opacity:0}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(4){left:100%;opacity:0}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(5){left:2px;top:15px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(6){left:calc(50% - 7px);top:15px}:host.uxc3 dl{line-height:20px;text-transform:none;transition:border .2s ease-in-out}:host.uxc3 dl dt{font-size:10px;font-weight:500;transition:color .2s ease-in-out}:host.uxc3 dl dd{position:relative;top:0;font-size:14px;font-weight:600;margin-bottom:0;transition:color .2s ease-in-out}:host.uxc3 .usuario-logado,:host.uxc3 .selecao-empresa{top:-1px;padding:5px 20px 5px 0;cursor:pointer}:host.uxc3 .usuario-logado dl,:host.uxc3 .selecao-empresa dl{top:5px;margin:0}:host.uxc3 .usuario-logado dl mat-icon,:host.uxc3 .selecao-empresa dl mat-icon{position:absolute;font-size:22px;top:17px;right:0;text-align:center}:host.uxc3 .usuario-logado{padding-left:10px}:host.uxc3 .usuario-logado dl{text-align:right}:host.uxc3 .usuario-logado dl mat-icon{left:0}:host.uxc3 .selecao-empresa{padding-left:20px}:host.uxc3 .nav-items{display:block;height:100%;margin:0 -5px;text-align:right}@media screen and (min-width: 544px){:host.uxc3 .nav-items{width:100%}}@media screen and (max-width: 991px){:host.uxc3 .nav-items{display:block;top:0;position:absolute;right:10px}}:host.uxc3 .nav-items .nav-item{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}:host.uxc3 .nav-items .nav-item .mat-button,:host.uxc3 .nav-items .nav-item .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out;top:-14px}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .mat-icon,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .mat-icon{font-size:24px;height:auto!important;line-height:auto!important;vertical-align:middle;width:auto!important}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .mat-icon .marker,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .badge,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-focus-overlay,:host.uxc3 .nav-items .nav-item .mat-button .mat-button-ripple,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-focus-overlay,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-ripple{display:none}:host.uxc3 .nav-items .nav-item .menu-lateral-direita{display:none;top:0;right:0;padding:0;position:fixed;width:420px;height:100%;z-index:9999}@media screen and (max-width: 991px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita{left:auto;margin-left:0;right:0}}@media screen and (max-width: 543px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita{left:0;margin-left:0;width:100%}}:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media screen and (max-width: 991px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{left:100%;margin-left:-34px}}@media screen and (max-width: 543px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{display:none}}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>.fechar{position:absolute;top:30px;right:30px;font-size:28px;cursor:pointer;opacity:.8}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>.fechar:hover{opacity:1}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>h4{font-size:24px;font-weight:500;margin:30px 0 30px 38px}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul{list-style-type:none;margin:0;height:calc(100% - 170px);overflow-y:auto;border-radius:0 0 4px 4px;padding:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li:hover{background:rgba(0,0,0,.05)}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li.disabled>a{cursor:default!important;opacity:.4}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li:last-child{border-bottom:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl{line-height:20px;padding:5px 0;margin-bottom:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl dt{font-weight:600;font-size:13px;margin-bottom:5px}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl dd{font-size:14px;font-weight:500}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li>a{font-size:14px;font-weight:500;padding:10px 40px!important;align-items:center;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li>a .mat-icon{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}:host.uxc3 .nav-items .nav-item.opened .menu-lateral-direita,:host.uxc3 .nav-items .nav-item.opened .lista-empresas{display:block}:host.uxc3 .nav-items .nav-item.opened~.items-overlay{transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible;opacity:.5}:host.uxc3 .nav-items .items-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}@media screen and (max-width: 991px){:host.uxc3{width:100%}}:host.uxc2{background:#fff;border-bottom:1px solid #e4e9f0;display:block;height:70px;left:120px;position:fixed;right:0;top:0;z-index:9998}@media only screen and (max-width: 991px){:host.uxc2{left:0}}:host.uxc2 .sessao-clone{position:absolute;padding:8px;top:0;background-color:#a80707;z-index:1}:host.uxc2 .sessao-clone .mat-icon-button{font-size:10px}:host.uxc2 .site-navbar{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media only screen and (max-width: 991px){:host.uxc2 .site-navbar{flex-wrap:wrap}}:host.uxc2 .site-navbar .navbar-button{cursor:pointer;display:none;height:24px;margin:0;position:relative;transform:rotate(0);width:30px}@media only screen and (max-width: 991px){:host.uxc2 .site-navbar .navbar-button{display:block}}:host.uxc2 .site-navbar .navbar-button span{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%}:host.uxc2 .site-navbar .navbar-button span:nth-child(even){left:50%}:host.uxc2 .site-navbar .navbar-button span:nth-child(odd){left:0}:host.uxc2 .site-navbar .navbar-button span:nth-child(1),:host.uxc2 .site-navbar .navbar-button span:nth-child(2){top:0}:host.uxc2 .site-navbar .navbar-button span:nth-child(3),:host.uxc2 .site-navbar .navbar-button span:nth-child(4){top:10px}:host.uxc2 .site-navbar .navbar-button span:nth-child(5),:host.uxc2 .site-navbar .navbar-button span:nth-child(6){top:20px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(1),:host.uxc2 .site-navbar .navbar-button.open span:nth-child(6){transform:rotate(45deg)}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(2),:host.uxc2 .site-navbar .navbar-button.open span:nth-child(5){transform:rotate(-45deg)}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(1){left:3px;top:6px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(2){left:calc(50% - 3px);top:6px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(3){left:-50%;opacity:0}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(4){left:100%;opacity:0}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(5){left:3px;top:15px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(6){left:calc(50% - 3px);top:15px}:host.uxc2 .page-title{font-size:1.4rem;font-weight:400;line-height:1;margin:0;width:100%}:host.uxc2 .page-title mat-icon{top:4px;left:0;font-size:1.1em}@media only screen and (max-width: 991px){:host.uxc2 .page-title{display:none}}:host.uxc2 .nav-items{display:block;height:100%;margin:0 -5px;text-align:right}@media only screen and (min-width: 544px){:host.uxc2 .nav-items{width:100%}}:host.uxc2 .nav-items .nav-item{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}@media only screen and (min-width: 544px){:host.uxc2 .nav-items .nav-item{position:relative}}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .mat-icon,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .mat-icon{font-size:22px;height:30px;line-height:30px;vertical-align:top;width:30px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .mat-icon .marker,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .badge,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .avatar,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .avatar{border-radius:50%;height:40px;overflow:hidden;width:40px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name{top:10px;padding-left:10px;white-space:nowrap;line-height:19px;text-align:left;font-size:12px;margin-top:-3px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name label,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name label{display:block;margin:0;font-size:10px;line-height:12px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name span,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name span{top:-3px}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name{display:none}}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-focus-overlay,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-ripple,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-focus-overlay,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-ripple{display:none}:host.uxc2 .nav-items .nav-item .dropdown-menu{box-shadow:0 5px 10px 2px #00000040;display:none;left:50%;margin:0 0 0 -150px;padding:0;position:absolute;top:100%;width:300px;z-index:9999}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item .dropdown-menu{left:auto;margin-left:0;right:0}}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu{left:0;margin-left:0;width:100%}}:host.uxc2 .nav-items .nav-item .dropdown-menu.calendar{left:-34%}:host.uxc2 .nav-items .nav-item .dropdown-menu.calendar:before{left:60%}:host.uxc2 .nav-items .nav-item .dropdown-menu:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item .dropdown-menu:before{left:100%;margin-left:-34px}}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu:before{display:none}}:host.uxc2 .nav-items .nav-item .dropdown-menu .company a,:host.uxc2 .nav-items .nav-item .dropdown-menu .languages a,:host.uxc2 .nav-items .nav-item .dropdown-menu .themesa a{cursor:pointer!important}:host.uxc2 .nav-items .nav-item .dropdown-menu .themes{max-height:500px}:host.uxc2 .nav-items .nav-item .dropdown-menu .pesquisa-rapida input{color:#fff}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer,:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-title{margin:0;padding:11px;text-align:center}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-title{border-bottom:1px solid rgba(255,255,255,.1);color:#fff;font-size:16px;line-height:1.3}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer a{color:#fff}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer a:hover{color:#fffc}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul{list-style-type:none;margin:0;max-height:241px;overflow:auto;padding:0}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li{border-bottom:1px solid rgba(255,255,255,.05)}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li.disabled>a{cursor:default!important;opacity:.4}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li.disabled>a:hover{background:inherit!important}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li:last-child{border-bottom:0}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a{align-items:center;color:#fff;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .mat-icon{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .avatar{border-radius:50%;height:40px;margin-right:11px;width:40px}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content{font-size:.85rem}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .desc{display:block}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .date{display:block;font-size:.75rem;font-style:italic;margin-top:4px;opacity:.6}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .meta{align-items:flex-end;display:flex;justify-content:space-between;line-height:1.3;margin-bottom:4px}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .meta .date{margin:0 0 0 11px}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu{left:auto;right:0;width:220px}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu{width:100%}}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu:before{display:none}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu>ul>li>a{padding-top:8px;padding-bottom:8px;cursor:pointer}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu>ul>li>a .fa{margin-right:11px;min-width:15px}:host.uxc2 .nav-items .nav-item.opened .dropdown-menu{display:block}:host.uxc2 .nav-items .nav-item.opened~.items-overlay{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}:host.uxc2 .nav-items .items-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}\n"] }]
|
|
7866
|
+
args: [{ selector: 'info-topbar', template: "<ng-container *ngIf=\"_platform.Config.ux >= 3\">\r\n <div class=\"site-navbar\">\r\n <a class=\"logo\" >\r\n <i class=\"logo-img\"></i>\r\n <i class=\"logo-img-resp\"></i>\r\n </a>\r\n \r\n <div class=\"nav-items\">\r\n <div class=\"nav-item usuario-logado\" [class.separador]=\"_session.Empresas.length > 1 || _session.Unidades\" [ngClass]=\"{ 'opened' : topMenu.cliente }\">\r\n <dl (click)=\"open('cliente')\">\r\n <dt>{{ _session.Perfil }}</dt>\r\n <dd>{{ _session.Usuario }}</dd>\r\n </dl>\r\n\r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Clientes' | translate }}</h4>\r\n \r\n <ul class=\"empresas\">\r\n <li *ngFor=\"let client of _session.Clientes\" >\r\n <a (click)=\"setClient(client); divModal.click();\">{{ client.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-empresa\" *ngIf=\"_session.Empresas.length > 1\" [ngClass]=\"{ 'opened' : topMenu.empresa }\">\r\n <dl (click)=\"open('empresa')\">\r\n <dt>{{ 'Empresa' | translate }}</dt>\r\n <dd>{{ _session.Empresa }}</dd>\r\n </dl>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Empresas' | translate }}</h4>\r\n \r\n <ul class=\"empresas\">\r\n <li *ngFor=\"let company of _session.Empresas\" >\r\n <a (click)=\"setCompany(company); divModal.click();\">{{ company.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-empresa\" *ngIf=\"_session.Unidade && (_session.Unidades || []).length > 1\" [ngClass]=\"{ 'opened' : topMenu.unidade }\">\r\n <dl (click)=\"open('unidade')\">\r\n <dt>{{ 'Unidade' | translate }}</dt>\r\n <dd>{{ _session.Unidade }}</dd>\r\n </dl>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Unidades' | translate }}</h4>\r\n \r\n <ul class=\"empresas\">\r\n <li *ngFor=\"let unity of _session.Unidades\" >\r\n <a (click)=\"setUnity(unity); divModal.click();\">{{ unity.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\">\r\n <button mat-icon-button (click)=\"navigate(profileurl)\" [matTooltip]=\"'MeuPerfil' | translate\">\r\n <mat-icon>person</mat-icon>\r\n </button>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-infoia\" [ngClass]=\"{ 'opened': topMenu.infoia }\" *ngIf=\"enabledia\">\r\n <button mat-icon-button (click)=\"open('infoia')\" [matTooltip]=\"'Info IA' | translate\">\r\n <label>{{ 'InfoIA' | translate }}</label>\r\n <mat-icon>diversity_2</mat-icon>\r\n </button>\r\n \r\n <div class=\"menu-lateral-direita infoia\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'InfoIA' | translate }}</h4>\r\n <div>\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"fastsearchform\">\r\n <button mat-icon-button (click)=\"openFastSearch()\" [matTooltip]=\"fastsearchtitle | translate\">\r\n <mat-icon>search</mat-icon>\r\n </button>\r\n </div>\r\n \r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened' : topMenu.notificacao }\" *ngIf=\"notificationapi\">\r\n <button mat-icon-button (click)=\"setNotificationStatus(true, false, false);open('notificacao')\" [matTooltip]=\"'Notificacoes' | translate\"><mat-icon>notifications_none</mat-icon>\r\n <span class=\"badge\" *ngIf=\"notifications.Count > 0\">{{ notifications.Count }}</span>\r\n </button>\r\n \r\n <div class=\"menu-lateral-direita\" >\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Notificacoes' | translate }}</h4>\r\n \r\n <ul>\r\n <li *ngIf=\"notifications.Itens.length == 0\">\r\n <a style=\"cursor: default;\">\r\n <mat-icon>notifications</mat-icon>\r\n <div class=\"content\">\r\n <span>{{ 'TNotificacoesNenhuma' | translate }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n \r\n <ng-container *ngIf=\"notifications.Itens.length > 0\">\r\n <li *ngFor=\"let item of notifications.Itens\">\r\n <a (click)=\"navigate(item.Url);close()\">\r\n <dl>\r\n <dt>{{ 'Dia' | translate }} {{ item.Date }}</dt>\r\n <dd [innerHtml]=\"item.Description | translate\"></dd>\r\n </dl>\r\n </a>\r\n </li>\r\n </ng-container>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <!-- <div class=\"nav-item\">\r\n <button mat-icon-button (click)=\"alternarModo()\" [matTooltip]=\"'AlternarModo' | translate\"><mat-icon>brightness_6</mat-icon></button>\r\n </div> -->\r\n \r\n <div class=\"nav-item selecao-tema\" [ngClass]=\"{ 'opened': topMenu.tema }\" *ngIf=\"!prodution && themes.length > 0\">\r\n <button mat-icon-button (click)=\"open('tema')\" [matTooltip]=\"'Tema' | translate\"><mat-icon>invert_colors</mat-icon></button>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Temas' | translate }}</h4>\r\n \r\n <ul class=\"temas\">\r\n <li *ngFor=\"let theme of themes\">\r\n <a (click)=\"setTheme(theme.name); divModal.click();\"> {{ theme.description | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"_platform.Config.enabledPrime\">\r\n <button mat-icon-button [matTooltip]=\"(_platform.ModoPrime ? 'ModoPadrao' : 'Prime') | translate\" (click)=\"toggleMode()\"><mat-icon>brightness_6</mat-icon></button>\r\n </div>\r\n \r\n <div class=\"nav-item selecao-idioma\" [ngClass]=\"{ 'opened': topMenu.idioma }\" *ngIf=\"languages.length > 0\">\r\n <button mat-icon-button (click)=\"open('idioma')\" [matTooltip]=\"'Idioma' | translate\"><mat-icon>public</mat-icon></button>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Idiomas' | translate }}</h4>\r\n \r\n <ul class=\"idiomas\">\r\n <li *ngFor=\"let lang of languages\">\r\n <a (click)=\"setLanguage(lang.lang); divModal.click();\">{{ lang.name | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\">\r\n <button mat-icon-button [matTooltip]=\"'Sair' | translate\" (click)=\"logout()\"><mat-icon>power_settings_new</mat-icon></button>\r\n </div>\r\n \r\n <div class=\"items-overlay\" (click)=\"close()\" #divModal></div>\r\n </div>\r\n \r\n <div class=\"navbar-button\" [ngClass]=\"{ 'open' : opened }\" (click)=\"openSidebar()\">\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n </div>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"_platform.Config.ux <= 2\">\r\n <div class=\"site-navbar\">\r\n <div class=\"sessao-clone text-lightgray\" *ngIf=\"_session.Clone\">\r\n <div><label>({{ 'ModoClone' | translate }})</label></div>\r\n </div>\r\n\r\n <div class=\"navbar-button\" [ngClass]=\"{ 'open' : opened }\" (click)=\"openSidebar()\">\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n </div>\r\n\r\n <h1 id=\"page-title\" class=\"page-title\" *ngIf=\"_platform.PaginaAtiva\">\r\n <mat-icon>{{ _platform.PaginaAtiva.Icone }}</mat-icon> {{ _platform.PaginaAtiva.Titulo | translate }}\r\n </h1>\r\n\r\n <div class=\"nav-items\">\r\n <div class=\"nav-item user-profile\" [ngClass]=\"{ 'opened' : topMenu.empresa }\">\r\n <button mat-button (click)=\"open('empresa')\">\r\n <mat-icon>fingerprint</mat-icon>\r\n <div class=\"name\">\r\n <label>{{ \"Empresa\" | translate }}</label>\r\n <span>{{ _session.Empresa }}</span>\r\n </div>\r\n </button>\r\n\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Empresa' | translate }}</h4>\r\n\r\n <ul class=\"company\">\r\n <li *ngFor=\"let company of _session.Empresas\" >\r\n <a (click)=\"setCompany(company); divModal.click();\">{{ company.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened' : topMenu.notificacao }\" *ngIf=\"notificationapi\">\r\n <button mat-icon-button (click)=\"setNotificationStatus(true, false, false);open('notificacao')\" [matTooltip]=\"'Notificacoes' | translate\"><mat-icon>notifications_none</mat-icon>\r\n <span class=\"badge\" *ngIf=\"notifications.Count > 0\">{{ notifications.Count }}</span>\r\n </button>\r\n\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Notificacoes' | translate }}</h4>\r\n\r\n <ul>\r\n <li *ngIf=\"notifications.Itens.length == 0\">\r\n <a style=\"cursor: default;\">\r\n <mat-icon>notifications_off</mat-icon>\r\n <div class=\"content\">\r\n <span>{{ 'TNotificacoesNenhuma' | translate }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <ng-container *ngIf=\"notifications.Itens.length > 0\">\r\n <li *ngFor=\"let item of notifications.Itens\">\r\n <a (click)=\"navigate(item.Url);close()\">\r\n <mat-icon>{{ item.Icon }}</mat-icon>\r\n <div class=\"content\">\r\n <span class=\"desc\" [innerHtml]=\"item.Description | translate\"></span>\r\n <span class=\"date\">{{ item.Date }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n </ng-container>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened': topMenu.idioma }\" *ngIf=\"languages.length > 0\">\r\n <button mat-icon-button (click)=\"open('idioma')\" [matTooltip]=\"'Idioma' | translate\"><mat-icon>public</mat-icon></button>\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Idioma' | translate }}</h4>\r\n <ul class=\"languages\">\r\n <li *ngFor=\"let lang of languages\">\r\n <a (click)=\"setLanguage(lang.lang); divModal.click();\">{{ lang.name | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened': topMenu.tema }\" *ngIf=\"!prodution && themes.length > 0\">\r\n <button mat-icon-button (click)=\"open('tema')\" [matTooltip]=\"'Tema' | translate\"><mat-icon>invert_colors</mat-icon></button>\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Temas' | translate }}</h4>\r\n <ul class=\"themes\">\r\n <li *ngFor=\"let theme of themes\">\r\n <a (click)=\"setTheme(theme.name); divModal.click();\"> {{ theme.description | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"fastsearchform\">\r\n <button mat-icon-button (click)=\"openFastSearch()\" [matTooltip]=\"fastsearchtitle | translate\">\r\n <mat-icon>search</mat-icon>\r\n </button>\r\n </div>\r\n\r\n <div class=\"nav-item\" *ngIf=\"profileurl != ''\">\r\n <button mat-icon-button [matTooltip]=\"'MeuPerfil' | translate\" [routerLink]=\"profileurl\"><mat-icon>person</mat-icon></button>\r\n </div>\r\n\r\n <div class=\"nav-item\">\r\n <button mat-icon-button [matTooltip]=\"'Sair' | translate\" (click)=\"logout()\"><mat-icon>power_settings_new</mat-icon></button>\r\n </div>\r\n\r\n <div class=\"items-overlay\" (click)=\"close()\" #divModal></div>\r\n </div>\r\n </div>\r\n</ng-container>\r\n\r\n<section class=\"loading-bar\" *ngIf=\"loading\"><mat-progress-bar color=\"primary\" mode=\"indeterminate\"></mat-progress-bar></section>\r\n<div class=\"block\" *ngIf=\"loading\"></div>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host.topmenu{border-bottom-width:0!important;box-shadow:none!important}:host.uxc3{transition:left .2s ease-in-out;display:block;height:85px;left:0;position:fixed;right:0;top:0;z-index:9998}@media screen and (max-width: 991px){:host.uxc3{left:0}:host.uxc3 .nav-items{width:100%}:host.uxc3 .logo{position:absolute;top:17px}:host.uxc3 .logo .logo-img{display:none!important}:host.uxc3 .logo .logo-img-resp{display:block!important;height:45px!important}:host.uxc3 .usuario-logado{position:absolute;top:70px!important;left:-100%;width:calc(100% + 6px);border-right:none!important;padding-left:25px!important;padding-top:15px!important;transition:left .2s ease-in-out}:host.uxc3 .usuario-logado.menu-aberto{left:0%}:host.uxc3 .usuario-logado dl{text-align:left!important}:host.uxc3 .usuario-logado dl dt{display:inline-block;font-size:14px}:host.uxc3 .usuario-logado dl dd{position:relative;display:inline-block;padding-right:20px;margin-right:5px}:host.uxc3 .usuario-logado dl dd:after{position:absolute;top:2px;right:0;content:\"-\";width:10px;height:10px}:host.uxc3 .selecao-empresa{position:absolute;top:115px!important;left:-100%;width:calc(100% + 6px);margin:0!important;padding:5px 15px 6px 25px;transition:left .2s ease-in-out}:host.uxc3 .selecao-empresa.menu-aberto{left:0%}:host.uxc3 .selecao-empresa button,:host.uxc3 .selecao-empresa dl{width:100%!important}}:host.uxc3 .site-navbar{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media screen and (max-width: 991px){:host.uxc3 .site-navbar{flex-wrap:wrap}}:host.uxc3 .site-navbar .logo{display:block;height:60px;width:500px}:host.uxc3 .site-navbar .logo .logo-img{display:block;height:100%;width:100%}:host.uxc3 .site-navbar .logo .logo-img-resp{display:none;height:100%;width:100%}:host.uxc3 .site-navbar .navbar-button{cursor:pointer;display:none;height:24px;margin:0;position:absolute;transform:rotate(0);width:35px;top:20px;left:70px}@media screen and (max-width: 991px){:host.uxc3 .site-navbar .navbar-button{display:block}}:host.uxc3 .site-navbar .navbar-button sub{position:absolute;bottom:-10px;text-transform:uppercase}:host.uxc3 .site-navbar .navbar-button span{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%;top:10px}:host.uxc3 .site-navbar .navbar-button span:nth-child(even){left:50%}:host.uxc3 .site-navbar .navbar-button span:nth-child(odd){left:0}:host.uxc3 .site-navbar .navbar-button span:nth-child(1),:host.uxc3 .site-navbar .navbar-button span:nth-child(2){top:0}:host.uxc3 .site-navbar .navbar-button span:nth-child(3),:host.uxc3 .site-navbar .navbar-button span:nth-child(4){top:10px}:host.uxc3 .site-navbar .navbar-button span:nth-child(5),:host.uxc3 .site-navbar .navbar-button span:nth-child(6){top:20px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(1),:host.uxc3 .site-navbar .navbar-button.open span:nth-child(6){transform:rotate(45deg)}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(2),:host.uxc3 .site-navbar .navbar-button.open span:nth-child(5){transform:rotate(-45deg)}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(1){left:2px;top:6px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(2){left:calc(50% - 7px);top:6px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(3){left:-50%;opacity:0}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(4){left:100%;opacity:0}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(5){left:2px;top:15px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(6){left:calc(50% - 7px);top:15px}:host.uxc3 dl{line-height:20px;text-transform:none;transition:border .2s ease-in-out}:host.uxc3 dl dt{font-size:10px;font-weight:500;transition:color .2s ease-in-out}:host.uxc3 dl dd{position:relative;top:0;font-size:14px;font-weight:600;margin-bottom:0;transition:color .2s ease-in-out}:host.uxc3 .usuario-logado,:host.uxc3 .selecao-empresa{top:-1px;padding:5px 20px 5px 0;cursor:pointer}:host.uxc3 .usuario-logado dl,:host.uxc3 .selecao-empresa dl{top:5px;margin:0}:host.uxc3 .usuario-logado dl mat-icon,:host.uxc3 .selecao-empresa dl mat-icon{position:absolute;font-size:22px;top:17px;right:0;text-align:center}:host.uxc3 .usuario-logado{padding-left:10px}:host.uxc3 .usuario-logado dl{text-align:right}:host.uxc3 .usuario-logado dl mat-icon{left:0}:host.uxc3 .selecao-empresa{padding-left:20px}:host.uxc3 .nav-items{display:block;height:100%;margin:0 -5px;text-align:right}@media screen and (min-width: 544px){:host.uxc3 .nav-items{width:100%}}@media screen and (max-width: 991px){:host.uxc3 .nav-items{display:block;top:0;position:absolute;right:10px}}:host.uxc3 .nav-items .nav-item{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}:host.uxc3 .nav-items .nav-item .mat-button,:host.uxc3 .nav-items .nav-item .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out;top:-14px}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .mat-icon,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .mat-icon{font-size:24px;height:auto!important;line-height:auto!important;vertical-align:middle;width:auto!important}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .mat-icon .marker,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .badge,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-focus-overlay,:host.uxc3 .nav-items .nav-item .mat-button .mat-button-ripple,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-focus-overlay,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-ripple{display:none}:host.uxc3 .nav-items .nav-item .menu-lateral-direita{display:none;top:0;right:0;padding:0;position:fixed;width:420px;height:100%;z-index:9999}@media screen and (max-width: 991px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita{left:auto;margin-left:0;right:0}}@media screen and (max-width: 543px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita{left:0;margin-left:0;width:100%}}:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media screen and (max-width: 991px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{left:100%;margin-left:-34px}}@media screen and (max-width: 543px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{display:none}}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>.fechar{position:absolute;top:30px;right:30px;font-size:28px;cursor:pointer;opacity:.8}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>.fechar:hover{opacity:1}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>h4{font-size:24px;font-weight:500;margin:30px 0 30px 38px}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul{list-style-type:none;margin:0;height:calc(100% - 170px);overflow-y:auto;border-radius:0 0 4px 4px;padding:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li:hover{background:rgba(0,0,0,.05)}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li.disabled>a{cursor:default!important;opacity:.4}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li:last-child{border-bottom:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl{line-height:20px;padding:5px 0;margin-bottom:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl dt{font-weight:600;font-size:13px;margin-bottom:5px}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl dd{font-size:14px;font-weight:500}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li>a{font-size:14px;font-weight:500;padding:10px 40px!important;align-items:center;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li>a .mat-icon{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}:host.uxc3 .nav-items .nav-item.opened .menu-lateral-direita,:host.uxc3 .nav-items .nav-item.opened .lista-empresas{display:block}:host.uxc3 .nav-items .nav-item.opened~.items-overlay{transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible;opacity:.5}:host.uxc3 .nav-items .items-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}@media screen and (max-width: 991px){:host.uxc3{width:100%}}:host.uxc2{background:#fff;border-bottom:1px solid #e4e9f0;display:block;height:70px;left:120px;position:fixed;right:0;top:0;z-index:9998}@media only screen and (max-width: 991px){:host.uxc2{left:0}}:host.uxc2 .sessao-clone{position:absolute;padding:8px;top:0;background-color:#a80707;z-index:1}:host.uxc2 .sessao-clone .mat-icon-button{font-size:10px}:host.uxc2 .site-navbar{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media only screen and (max-width: 991px){:host.uxc2 .site-navbar{flex-wrap:wrap}}:host.uxc2 .site-navbar .navbar-button{cursor:pointer;display:none;height:24px;margin:0;position:relative;transform:rotate(0);width:30px}@media only screen and (max-width: 991px){:host.uxc2 .site-navbar .navbar-button{display:block}}:host.uxc2 .site-navbar .navbar-button span{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%}:host.uxc2 .site-navbar .navbar-button span:nth-child(even){left:50%}:host.uxc2 .site-navbar .navbar-button span:nth-child(odd){left:0}:host.uxc2 .site-navbar .navbar-button span:nth-child(1),:host.uxc2 .site-navbar .navbar-button span:nth-child(2){top:0}:host.uxc2 .site-navbar .navbar-button span:nth-child(3),:host.uxc2 .site-navbar .navbar-button span:nth-child(4){top:10px}:host.uxc2 .site-navbar .navbar-button span:nth-child(5),:host.uxc2 .site-navbar .navbar-button span:nth-child(6){top:20px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(1),:host.uxc2 .site-navbar .navbar-button.open span:nth-child(6){transform:rotate(45deg)}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(2),:host.uxc2 .site-navbar .navbar-button.open span:nth-child(5){transform:rotate(-45deg)}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(1){left:3px;top:6px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(2){left:calc(50% - 3px);top:6px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(3){left:-50%;opacity:0}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(4){left:100%;opacity:0}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(5){left:3px;top:15px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(6){left:calc(50% - 3px);top:15px}:host.uxc2 .page-title{font-size:1.4rem;font-weight:400;line-height:1;margin:0;width:100%}:host.uxc2 .page-title mat-icon{top:4px;left:0;font-size:1.1em}@media only screen and (max-width: 991px){:host.uxc2 .page-title{display:none}}:host.uxc2 .nav-items{display:block;height:100%;margin:0 -5px;text-align:right}@media only screen and (min-width: 544px){:host.uxc2 .nav-items{width:100%}}:host.uxc2 .nav-items .nav-item{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}@media only screen and (min-width: 544px){:host.uxc2 .nav-items .nav-item{position:relative}}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .mat-icon,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .mat-icon{font-size:22px;height:30px;line-height:30px;vertical-align:top;width:30px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .mat-icon .marker,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .badge,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .avatar,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .avatar{border-radius:50%;height:40px;overflow:hidden;width:40px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name{top:10px;padding-left:10px;white-space:nowrap;line-height:19px;text-align:left;font-size:12px;margin-top:-3px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name label,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name label{display:block;margin:0;font-size:10px;line-height:12px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name span,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name span{top:-3px}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name{display:none}}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-focus-overlay,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-ripple,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-focus-overlay,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-ripple{display:none}:host.uxc2 .nav-items .nav-item .dropdown-menu{box-shadow:0 5px 10px 2px #00000040;display:none;left:50%;margin:0 0 0 -150px;padding:0;position:absolute;top:100%;width:300px;z-index:9999}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item .dropdown-menu{left:auto;margin-left:0;right:0}}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu{left:0;margin-left:0;width:100%}}:host.uxc2 .nav-items .nav-item .dropdown-menu.calendar{left:-34%}:host.uxc2 .nav-items .nav-item .dropdown-menu.calendar:before{left:60%}:host.uxc2 .nav-items .nav-item .dropdown-menu:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item .dropdown-menu:before{left:100%;margin-left:-34px}}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu:before{display:none}}:host.uxc2 .nav-items .nav-item .dropdown-menu .company a,:host.uxc2 .nav-items .nav-item .dropdown-menu .languages a,:host.uxc2 .nav-items .nav-item .dropdown-menu .themesa a{cursor:pointer!important}:host.uxc2 .nav-items .nav-item .dropdown-menu .themes{max-height:500px}:host.uxc2 .nav-items .nav-item .dropdown-menu .pesquisa-rapida input{color:#fff}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer,:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-title{margin:0;padding:11px;text-align:center}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-title{border-bottom:1px solid rgba(255,255,255,.1);color:#fff;font-size:16px;line-height:1.3}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer a{color:#fff}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer a:hover{color:#fffc}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul{list-style-type:none;margin:0;max-height:241px;overflow:auto;padding:0}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li{border-bottom:1px solid rgba(255,255,255,.05)}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li.disabled>a{cursor:default!important;opacity:.4}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li.disabled>a:hover{background:inherit!important}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li:last-child{border-bottom:0}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a{align-items:center;color:#fff;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .mat-icon{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .avatar{border-radius:50%;height:40px;margin-right:11px;width:40px}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content{font-size:.85rem}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .desc{display:block}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .date{display:block;font-size:.75rem;font-style:italic;margin-top:4px;opacity:.6}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .meta{align-items:flex-end;display:flex;justify-content:space-between;line-height:1.3;margin-bottom:4px}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .meta .date{margin:0 0 0 11px}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu{left:auto;right:0;width:220px}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu{width:100%}}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu:before{display:none}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu>ul>li>a{padding-top:8px;padding-bottom:8px;cursor:pointer}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu>ul>li>a .fa{margin-right:11px;min-width:15px}:host.uxc2 .nav-items .nav-item.opened .dropdown-menu{display:block}:host.uxc2 .nav-items .nav-item.opened~.items-overlay{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}:host.uxc2 .nav-items .items-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}\n"] }]
|
|
7805
7867
|
}], function () { return [{ type: InfoTranslateService }, { type: InfoAuthenticationService }, { type: InfoDataService }, { type: InfoThemeService }, { type: i1$1.Router }, { type: InfoDialogModal }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: i1$3.MatDialog }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: Utilities }]; }, { opened: [{
|
|
7806
7868
|
type: Input
|
|
7807
7869
|
}], languages: [{
|
|
@@ -8341,7 +8403,7 @@ class InfoTopMenuComponent {
|
|
|
8341
8403
|
this.loading = false;
|
|
8342
8404
|
this.menu = [];
|
|
8343
8405
|
this.openSubmenu = '';
|
|
8344
|
-
this.menuAtivo = '
|
|
8406
|
+
this.menuAtivo = 'Inicio';
|
|
8345
8407
|
}
|
|
8346
8408
|
ngOnInit() {
|
|
8347
8409
|
if (!this._authentication.isLogged() || this.api == null)
|