info-library 2.10.39 → 2.10.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/info-library.umd.js +4 -1
- package/bundles/info-library.umd.js.map +1 -1
- package/bundles/info-library.umd.min.js +1 -1
- package/bundles/info-library.umd.min.js.map +1 -1
- package/esm2015/controls/card/card.component.js +2 -2
- package/esm2015/layouts/main/main.component.js +2 -1
- package/esm2015/model/session.model.js +3 -1
- package/fesm2015/info-library.js +4 -1
- package/fesm2015/info-library.js.map +1 -1
- package/info-library.metadata.json +1 -1
- package/model/session.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -612,6 +612,8 @@
|
|
|
612
612
|
/** @type {?} */
|
|
613
613
|
InfoSessionModel.prototype.Parametros;
|
|
614
614
|
/** @type {?} */
|
|
615
|
+
InfoSessionModel.prototype.MFA;
|
|
616
|
+
/** @type {?} */
|
|
615
617
|
InfoSessionModel.prototype.TempoInatividade;
|
|
616
618
|
}
|
|
617
619
|
|
|
@@ -3117,7 +3119,7 @@
|
|
|
3117
3119
|
InfoCardComponent.decorators = [
|
|
3118
3120
|
{ type: i0.Component, args: [{
|
|
3119
3121
|
selector: 'info-card',
|
|
3120
|
-
template: "<mat-card (click)=\"onCardClick()\">\r\n <mat-card-content>\r\n <h4>{{ label | translate }}</h4>\r\n <p
|
|
3122
|
+
template: "<mat-card (click)=\"onCardClick()\">\r\n <mat-card-content>\r\n <h4>{{ label | translate }}</h4>\r\n <p [innerHTML]=\"description | translate\"></p>\r\n <mark *ngIf=\"mark\"><small>{{ mark }}</small></mark>\r\n </mat-card-content>\r\n <mat-card-footer>\r\n <mat-icon>{{icon}}</mat-icon>\r\n </mat-card-footer>\r\n</mat-card>",
|
|
3121
3123
|
styles: [":host mat-card-footer{height:70px;overflow:hidden;position:relative}:host mat-card-footer mat-icon{bottom:36px;color:#aaa;font-size:5.71rem;opacity:.4;position:absolute;right:42px}"]
|
|
3122
3124
|
}] }
|
|
3123
3125
|
];
|
|
@@ -6739,6 +6741,7 @@
|
|
|
6739
6741
|
_this._session.OcultarNomeCliente = r.data.OcultarNomeCliente;
|
|
6740
6742
|
_this._session.Empresas = r.data.Empresas;
|
|
6741
6743
|
_this._session.Parametros = r.data.Parametros;
|
|
6744
|
+
_this._session.MFA = r.data.MFA;
|
|
6742
6745
|
_this._session.TempoInatividade = r.data.TempoInatividade;
|
|
6743
6746
|
_this._session.Versao = r.data.Versao;
|
|
6744
6747
|
_this.version = r.data.Versao;
|