info-library 2.10.25 → 2.10.26
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 +18 -2
- 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/layouts/main/main.component.js +14 -3
- package/esm2015/layouts/topbar/topbar.component.js +7 -2
- package/fesm2015/info-library.js +18 -2
- package/fesm2015/info-library.js.map +1 -1
- package/info-library.metadata.json +1 -1
- package/layouts/main/main.component.d.ts +3 -1
- package/layouts/topbar/topbar.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6574,6 +6574,7 @@
|
|
|
6574
6574
|
this.fastsearchtitle = 'PesquisaRapidaCarteira';
|
|
6575
6575
|
this.setthemeonchangecompany = false;
|
|
6576
6576
|
this.shortcutapi = null;
|
|
6577
|
+
this.ongetnotification = new i0.EventEmitter();
|
|
6577
6578
|
}
|
|
6578
6579
|
Object.defineProperty(InfoMainComponent.prototype, "themes", {
|
|
6579
6580
|
/**
|
|
@@ -6680,12 +6681,19 @@
|
|
|
6680
6681
|
}
|
|
6681
6682
|
}));
|
|
6682
6683
|
};
|
|
6684
|
+
/**
|
|
6685
|
+
* @param {?} event
|
|
6686
|
+
* @return {?}
|
|
6687
|
+
*/
|
|
6688
|
+
InfoMainComponent.prototype.onGetNotificationsTopBar = function (event) {
|
|
6689
|
+
this.ongetnotification.emit(event);
|
|
6690
|
+
};
|
|
6683
6691
|
return InfoMainComponent;
|
|
6684
6692
|
}());
|
|
6685
6693
|
InfoMainComponent.decorators = [
|
|
6686
6694
|
{ type: i0.Component, args: [{
|
|
6687
6695
|
selector: 'info-main',
|
|
6688
|
-
template: "<div class=\"site-container\" [ngClass]=\"{ 'open-sidebar': opened }\">\r\n \r\n <info-topbar #topbar\r\n [themes]=\"themes\" \r\n [languages]=\"languages\" \r\n [profileurl]=\"profileurl\"\r\n [notificationapi]=\"notificationapi\" \r\n [notificationgetmethod]=\"notificationgetmethod\" \r\n [notificationpostmethod]=\"notificationpostmethod\"\r\n [notificationverifymethod]=\"notificationverifymethod\"\r\n [notificationverifyenabled]=\"notificationverifyenabled\"\r\n [fastsearchform]=\"fastsearchform\"\r\n [fastsearchformwidth]=\"fastsearchformwidth\"\r\n [fastsearchtitle]=\"fastsearchtitle\"\r\n [setthemeonchangecompany]=\"setthemeonchangecompany\"\r\n (onchangestate)=\"onChangeTopBarState()\">\r\n </info-topbar>\r\n \r\n <info-topmenu *ngIf=\"_platform.Config.topMenu\"\r\n [api]=\"menuapi\" \r\n [method]=\"menumethod\" \r\n (onchangestate)=\"onChangeSideBarState()\">\r\n </info-topmenu>\r\n\r\n <info-sidebar *ngIf=\"!_platform.Config.topMenu\"\r\n [api]=\"menuapi\" \r\n [method]=\"menumethod\" \r\n [activemenubyurl]=\"activemenubyurl\"\r\n (onchangestate)=\"onChangeSideBarState()\">\r\n </info-sidebar>\r\n\r\n <main class=\"main-content\">\r\n <div class=\"main-content-wrap\">\r\n <ng-content></ng-content>\r\n </div>\r\n\r\n <div class=\"footer row\">\r\n <div class=\"copyright col-md-9\">{{ 'Copyright' | translate}}</div>\r\n <div class=\"version col-md-3\" *ngIf=\"version\">{{ 'Versao' | translate}} {{ version }}</div>\r\n </div>\r\n \r\n <info-alert [messages]=\"messages\"></info-alert>\r\n </main>\r\n</div>",
|
|
6696
|
+
template: "<div class=\"site-container\" [ngClass]=\"{ 'open-sidebar': opened }\">\r\n \r\n <info-topbar #topbar\r\n [themes]=\"themes\" \r\n [languages]=\"languages\" \r\n [profileurl]=\"profileurl\"\r\n [notificationapi]=\"notificationapi\" \r\n [notificationgetmethod]=\"notificationgetmethod\" \r\n [notificationpostmethod]=\"notificationpostmethod\"\r\n [notificationverifymethod]=\"notificationverifymethod\"\r\n [notificationverifyenabled]=\"notificationverifyenabled\"\r\n [fastsearchform]=\"fastsearchform\"\r\n [fastsearchformwidth]=\"fastsearchformwidth\"\r\n [fastsearchtitle]=\"fastsearchtitle\"\r\n [setthemeonchangecompany]=\"setthemeonchangecompany\"\r\n (onchangestate)=\"onChangeTopBarState()\"\r\n (ongetnotification)=\"onGetNotificationsTopBar($event)\">\r\n </info-topbar>\r\n \r\n <info-topmenu *ngIf=\"_platform.Config.topMenu\"\r\n [api]=\"menuapi\" \r\n [method]=\"menumethod\" \r\n (onchangestate)=\"onChangeSideBarState()\">\r\n </info-topmenu>\r\n\r\n <info-sidebar *ngIf=\"!_platform.Config.topMenu\"\r\n [api]=\"menuapi\" \r\n [method]=\"menumethod\" \r\n [activemenubyurl]=\"activemenubyurl\"\r\n (onchangestate)=\"onChangeSideBarState()\">\r\n </info-sidebar>\r\n\r\n <main class=\"main-content\">\r\n <div class=\"main-content-wrap\">\r\n <ng-content></ng-content>\r\n </div>\r\n\r\n <div class=\"footer row\">\r\n <div class=\"copyright col-md-9\">{{ 'Copyright' | translate}}</div>\r\n <div class=\"version col-md-3\" *ngIf=\"version\">{{ 'Versao' | translate}} {{ version }}</div>\r\n </div>\r\n \r\n <info-alert [messages]=\"messages\"></info-alert>\r\n </main>\r\n</div>",
|
|
6689
6697
|
styles: [":host.topmenu .main-content{padding:180px 0 0!important}:host.uxc3 .main-content{padding:140px 0 0 240px;transition:padding .2s ease-in-out}:host.uxc3 .main-content .bg{background:#fff}@media screen and (max-width:991px){:host.uxc3 .main-content{padding-left:0}}@media screen and (max-width:543px){:host.uxc3 .main-content{padding-top:70px}}:host.uxc3 .main-content .footer{background:#fafafa}:host.uxc3 .main-content .footer .version{text-align:right}:host.uxc3 .open-sidebar info-sidebar,:host.uxc3 .open-sidebar info-topbar{left:0}@media screen and (max-width:991px){:host.uxc3 .open-sidebar info-sidebar .sidebar-overlay{opacity:.5;transition:opacity .2s ease-in-out 0s,visibility 0s ease-in-out 0s;visibility:visible}}@media screen and (max-width:991px){:host.uxc3 .open-sidebar info-sidebar .site-sidebar:before,:host.uxc3 .open-sidebar info-sidebar .sub-menu{display:block!important}}:host.uxc2 .main-content{padding:131px 0 0 240px;transition:padding .2s ease-in-out}@media (max-width:991px){:host.uxc2 .main-content{padding-left:0}}@media (max-width:543px){:host.uxc2 .main-content{padding-top:123px}}:host.uxc2 info-topbar{transition:left .2s ease-in-out}@media (max-width:991px){:host.uxc2 info-topbar{width:100%}}:host.uxc2 .open-sidebar info-topbar{left:240px}:host.uxc2 .open-sidebar info-sidebar{left:0}@media (max-width:991px){:host.uxc2 .open-sidebar info-sidebar /deep/ .sidebar-overlay{opacity:1;transition:opacity .2s ease-in-out 0s,visibility 0s ease-in-out 0s;visibility:visible}}:host.uxc2 .footer{align-items:center;background:rgba(0,0,0,.1);bottom:0;display:flex;font-size:.8rem;height:3.14286rem;justify-content:space-between;position:-webkit-sticky;position:sticky;width:100%;z-index:9997}@media (max-width:543px){:host.uxc2 .footer{font-size:.7rem}}:host.uxc2 .footer .copyright,:host.uxc2 .footer .version{padding:10px 22px}@media (max-width:543px){:host.uxc2 .footer .copyright{padding-right:0}}:host.uxc2 .footer .version{color:#000;text-align:right}"]
|
|
6690
6698
|
}] }
|
|
6691
6699
|
];
|
|
@@ -6722,6 +6730,7 @@
|
|
|
6722
6730
|
fastsearchtitle: [{ type: i0.Input }],
|
|
6723
6731
|
setthemeonchangecompany: [{ type: i0.Input }],
|
|
6724
6732
|
shortcutapi: [{ type: i0.Input }],
|
|
6733
|
+
ongetnotification: [{ type: i0.Output }],
|
|
6725
6734
|
topbar: [{ type: i0.ViewChild, args: ['topbar',] }]
|
|
6726
6735
|
};
|
|
6727
6736
|
if (false) {
|
|
@@ -6773,6 +6782,8 @@
|
|
|
6773
6782
|
/** @type {?} */
|
|
6774
6783
|
InfoMainComponent.prototype.shortcutapi;
|
|
6775
6784
|
/** @type {?} */
|
|
6785
|
+
InfoMainComponent.prototype.ongetnotification;
|
|
6786
|
+
/** @type {?} */
|
|
6776
6787
|
InfoMainComponent.prototype.topbar;
|
|
6777
6788
|
/** @type {?} */
|
|
6778
6789
|
InfoMainComponent.prototype._platform;
|
|
@@ -7085,6 +7096,7 @@
|
|
|
7085
7096
|
this.profileurl = '';
|
|
7086
7097
|
this.setthemeonchangecompany = false;
|
|
7087
7098
|
this.onchangestate = new i0.EventEmitter();
|
|
7099
|
+
this.ongetnotification = new i0.EventEmitter();
|
|
7088
7100
|
this.modalRef = null;
|
|
7089
7101
|
this.loading = false;
|
|
7090
7102
|
this.prodution = false;
|
|
@@ -7245,6 +7257,7 @@
|
|
|
7245
7257
|
_this.notifications.Itens = r.data.Itens;
|
|
7246
7258
|
if (_this.notificationverifyenabled)
|
|
7247
7259
|
_this.verifyNotifications();
|
|
7260
|
+
_this.ongetnotification.emit(_this.notifications);
|
|
7248
7261
|
}
|
|
7249
7262
|
}));
|
|
7250
7263
|
};
|
|
@@ -7351,7 +7364,8 @@
|
|
|
7351
7364
|
fastsearchtitle: [{ type: i0.Input }],
|
|
7352
7365
|
profileurl: [{ type: i0.Input }],
|
|
7353
7366
|
setthemeonchangecompany: [{ type: i0.Input }],
|
|
7354
|
-
onchangestate: [{ type: i0.Output }]
|
|
7367
|
+
onchangestate: [{ type: i0.Output }],
|
|
7368
|
+
ongetnotification: [{ type: i0.Output }]
|
|
7355
7369
|
};
|
|
7356
7370
|
if (false) {
|
|
7357
7371
|
/** @type {?} */
|
|
@@ -7383,6 +7397,8 @@
|
|
|
7383
7397
|
/** @type {?} */
|
|
7384
7398
|
InfoTopbarComponent.prototype.onchangestate;
|
|
7385
7399
|
/** @type {?} */
|
|
7400
|
+
InfoTopbarComponent.prototype.ongetnotification;
|
|
7401
|
+
/** @type {?} */
|
|
7386
7402
|
InfoTopbarComponent.prototype.modalRef;
|
|
7387
7403
|
/** @type {?} */
|
|
7388
7404
|
InfoTopbarComponent.prototype.loading;
|