info-library 2.10.42 → 2.10.45
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 +77 -17
- 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/alert/alert.component.js +1 -1
- package/esm2015/controls/autocomplete/autocomplete.component.js +13 -1
- package/esm2015/controls/big-checkbox/big-checkbox.component.js +1 -1
- package/esm2015/controls/card/card.component.js +1 -1
- package/esm2015/controls/card-menu/card-menu.component.js +1 -1
- package/esm2015/controls/checkbox/checkbox.component.js +1 -1
- package/esm2015/controls/chips/chips.component.js +1 -1
- package/esm2015/controls/date/date.component.js +1 -1
- package/esm2015/controls/date-month/date-month.component.js +1 -1
- package/esm2015/controls/editor/editor.component.js +1 -1
- package/esm2015/controls/grid/grid.component.js +1 -1
- package/esm2015/controls/input/input.component.js +1 -1
- package/esm2015/controls/input-list/input-list.component.js +1 -1
- package/esm2015/controls/list-checkbox/list-checkbox.component.js +1 -1
- package/esm2015/controls/message/message.component.js +1 -1
- package/esm2015/controls/multi-select/multi-select.component.js +1 -1
- package/esm2015/controls/paginator/paginator.component.js +1 -1
- package/esm2015/controls/select/select.component.js +1 -1
- package/esm2015/controls/timeline/timeline.component.js +1 -1
- package/esm2015/directives/mask.directive.js +1 -1
- package/esm2015/directives/unmask.directive.js +1 -1
- package/esm2015/enum/dialog-buttons.enum.js +1 -1
- package/esm2015/enum/index.js +1 -1
- package/esm2015/enum/modal-action.enum.js +1 -1
- package/esm2015/enum/page-action.enum.js +1 -1
- package/esm2015/global-config.js +1 -1
- package/esm2015/info-library.js +1 -1
- package/esm2015/info-library.module.js +1 -1
- package/esm2015/layouts/dialog/dialog.component.js +1 -1
- package/esm2015/layouts/loading/loading.component.js +1 -1
- package/esm2015/layouts/main/main.component.js +1 -1
- package/esm2015/layouts/modal/modal.component.js +1 -1
- package/esm2015/layouts/pagebar/pagebar.component.js +1 -1
- package/esm2015/layouts/sidebar/sidebar.component.js +2 -2
- package/esm2015/layouts/topbar/topbar.component.js +1 -1
- package/esm2015/layouts/topmenu/topmenu.component.js +1 -1
- package/esm2015/model/app-config.model.js +4 -1
- package/esm2015/model/data-access.model.js +1 -1
- package/esm2015/model/dialog-result.model.js +1 -1
- package/esm2015/model/dialog.model.js +1 -1
- package/esm2015/model/form-prop.model.js +1 -1
- package/esm2015/model/grid-button.model.js +1 -1
- package/esm2015/model/index.js +1 -1
- package/esm2015/model/last-search.model.js +1 -1
- package/esm2015/model/login.model.js +1 -1
- package/esm2015/model/method-grid-button.model.js +1 -1
- package/esm2015/model/notification.model.js +1 -1
- package/esm2015/model/pagebar-buttons.model.js +1 -1
- package/esm2015/model/permission.model.js +1 -1
- package/esm2015/model/platform.model.js +1 -1
- package/esm2015/model/session.model.js +1 -1
- package/esm2015/pipe/index.js +1 -1
- package/esm2015/pipe/mask.pipe.js +1 -1
- package/esm2015/pipe/translate.pipe.js +1 -1
- package/esm2015/public_api.js +1 -1
- package/esm2015/service/authentication.service.js +1 -1
- package/esm2015/service/configuration.service.js +18 -3
- package/esm2015/service/data.service.js +1 -1
- package/esm2015/service/index.js +1 -1
- package/esm2015/service/theme.service.js +1 -1
- package/esm2015/service/translate.service.js +1 -1
- package/fesm2015/info-library.js +33 -3
- package/fesm2015/info-library.js.map +1 -1
- package/info-library.metadata.json +1 -1
- package/model/app-config.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
this.theme = '';
|
|
33
33
|
this.dictionary = '';
|
|
34
34
|
this.ux = 2;
|
|
35
|
+
this.style = '';
|
|
35
36
|
this.topMenu = false;
|
|
36
37
|
this.enabledPrime = false;
|
|
37
38
|
}
|
|
@@ -51,6 +52,8 @@
|
|
|
51
52
|
/** @type {?} */
|
|
52
53
|
InfoAppConfigModel.prototype.ux;
|
|
53
54
|
/** @type {?} */
|
|
55
|
+
InfoAppConfigModel.prototype.style;
|
|
56
|
+
/** @type {?} */
|
|
54
57
|
InfoAppConfigModel.prototype.topMenu;
|
|
55
58
|
/** @type {?} */
|
|
56
59
|
InfoAppConfigModel.prototype.enabledPrime;
|
|
@@ -885,7 +888,7 @@
|
|
|
885
888
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
886
889
|
*/
|
|
887
890
|
|
|
888
|
-
|
|
891
|
+
/******************************************************************************
|
|
889
892
|
Copyright (c) Microsoft Corporation.
|
|
890
893
|
|
|
891
894
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -909,6 +912,8 @@
|
|
|
909
912
|
return extendStatics(d, b);
|
|
910
913
|
};
|
|
911
914
|
function __extends(d, b) {
|
|
915
|
+
if (typeof b !== "function" && b !== null)
|
|
916
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
912
917
|
extendStatics(d, b);
|
|
913
918
|
function __() { this.constructor = d; }
|
|
914
919
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -1045,7 +1050,11 @@
|
|
|
1045
1050
|
var __createBinding = Object.create ? (function (o, m, k, k2) {
|
|
1046
1051
|
if (k2 === undefined)
|
|
1047
1052
|
k2 = k;
|
|
1048
|
-
Object.
|
|
1053
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
1054
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
1055
|
+
desc = { enumerable: true, get: function () { return m[k]; } };
|
|
1056
|
+
}
|
|
1057
|
+
Object.defineProperty(o, k2, desc);
|
|
1049
1058
|
}) : (function (o, m, k, k2) {
|
|
1050
1059
|
if (k2 === undefined)
|
|
1051
1060
|
k2 = k;
|
|
@@ -1094,11 +1103,13 @@
|
|
|
1094
1103
|
}
|
|
1095
1104
|
return ar;
|
|
1096
1105
|
}
|
|
1106
|
+
/** @deprecated */
|
|
1097
1107
|
function __spread() {
|
|
1098
1108
|
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
1099
1109
|
ar = ar.concat(__read(arguments[i]));
|
|
1100
1110
|
return ar;
|
|
1101
1111
|
}
|
|
1112
|
+
/** @deprecated */
|
|
1102
1113
|
function __spreadArrays() {
|
|
1103
1114
|
for (var s = 0, i = 0, il = arguments.length; i < il; i++)
|
|
1104
1115
|
s += arguments[i].length;
|
|
@@ -1107,7 +1118,17 @@
|
|
|
1107
1118
|
r[k] = a[j];
|
|
1108
1119
|
return r;
|
|
1109
1120
|
}
|
|
1110
|
-
|
|
1121
|
+
function __spreadArray(to, from, pack) {
|
|
1122
|
+
if (pack || arguments.length === 2)
|
|
1123
|
+
for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
1124
|
+
if (ar || !(i in from)) {
|
|
1125
|
+
if (!ar)
|
|
1126
|
+
ar = Array.prototype.slice.call(from, 0, i);
|
|
1127
|
+
ar[i] = from[i];
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
1131
|
+
}
|
|
1111
1132
|
function __await(v) {
|
|
1112
1133
|
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
1113
1134
|
}
|
|
@@ -1172,18 +1193,26 @@
|
|
|
1172
1193
|
function __importDefault(mod) {
|
|
1173
1194
|
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
1174
1195
|
}
|
|
1175
|
-
function __classPrivateFieldGet(receiver,
|
|
1176
|
-
if (!
|
|
1177
|
-
throw new TypeError("
|
|
1178
|
-
|
|
1179
|
-
|
|
1196
|
+
function __classPrivateFieldGet(receiver, state, kind, f) {
|
|
1197
|
+
if (kind === "a" && !f)
|
|
1198
|
+
throw new TypeError("Private accessor was defined without a getter");
|
|
1199
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
1200
|
+
throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
1201
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
1180
1202
|
}
|
|
1181
|
-
function __classPrivateFieldSet(receiver,
|
|
1182
|
-
if (
|
|
1183
|
-
throw new TypeError("
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1203
|
+
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
|
1204
|
+
if (kind === "m")
|
|
1205
|
+
throw new TypeError("Private method is not writable");
|
|
1206
|
+
if (kind === "a" && !f)
|
|
1207
|
+
throw new TypeError("Private accessor was defined without a setter");
|
|
1208
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
1209
|
+
throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
1210
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
1211
|
+
}
|
|
1212
|
+
function __classPrivateFieldIn(state, receiver) {
|
|
1213
|
+
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
|
|
1214
|
+
throw new TypeError("Cannot use 'in' operator on non-object");
|
|
1215
|
+
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
1187
1216
|
}
|
|
1188
1217
|
|
|
1189
1218
|
/**
|
|
@@ -2299,8 +2328,23 @@
|
|
|
2299
2328
|
_this._plataforma.Config.ux = 2;
|
|
2300
2329
|
if (_this._plataforma.Config.ux == 2)
|
|
2301
2330
|
menuMin = 'false';
|
|
2302
|
-
|
|
2303
|
-
|
|
2331
|
+
/** @type {?} */
|
|
2332
|
+
var cssFile = document.createElement('link');
|
|
2333
|
+
cssFile.href = _this._plataforma.Config.webapiUrl.replace(/\/api\/$/ig, '') + '/layout/temas.css';
|
|
2334
|
+
cssFile.type = 'text/css';
|
|
2335
|
+
cssFile.rel = 'stylesheet';
|
|
2336
|
+
document.head.appendChild(cssFile);
|
|
2337
|
+
if (_this._plataforma.Config.style != null) {
|
|
2338
|
+
/** @type {?} */
|
|
2339
|
+
var cssClient = document.createElement('link');
|
|
2340
|
+
cssClient.href = '/assets/' + _this._plataforma.Config.style + '/style.css';
|
|
2341
|
+
cssClient.type = 'text/css';
|
|
2342
|
+
cssClient.rel = 'stylesheet';
|
|
2343
|
+
document.head.appendChild(cssClient);
|
|
2344
|
+
}
|
|
2345
|
+
if (activeTheme == null || activeTheme == undefined)
|
|
2346
|
+
activeTheme = "_" + _this._plataforma.Config.theme + "-theme";
|
|
2347
|
+
_this._themeService.setTheme(activeTheme || 'default-theme');
|
|
2304
2348
|
_this._themeService.setMenuMin(menuMin == 'true');
|
|
2305
2349
|
_this._themeService.setModePrime(prime == 'true');
|
|
2306
2350
|
r(config);
|
|
@@ -2594,6 +2638,22 @@
|
|
|
2594
2638
|
if (parameters != null && parameters != '')
|
|
2595
2639
|
parameters += '&';
|
|
2596
2640
|
parameters += "nome=" + (value.Nome == null ? value.toString().toLowerCase() : value.Nome) + "&take=" + this.maxlist;
|
|
2641
|
+
/** @type {?} */
|
|
2642
|
+
var model = parameters.split("&").map(( /**
|
|
2643
|
+
* @param {?} c
|
|
2644
|
+
* @return {?}
|
|
2645
|
+
*/function (/**
|
|
2646
|
+
* @param {?} c
|
|
2647
|
+
* @return {?}
|
|
2648
|
+
*/ c) {
|
|
2649
|
+
var _a;
|
|
2650
|
+
return (_a = {}, _a[c.split("=")[0].charAt(0).toUpperCase() + c.split("=")[0].substring(1)] = c.split("=")[1], _a);
|
|
2651
|
+
})).reduce(( /**
|
|
2652
|
+
* @param {?} a
|
|
2653
|
+
* @param {?} b
|
|
2654
|
+
* @return {?}
|
|
2655
|
+
*/function (a, b) { return (Object.assign(Object.assign({}, a), b)); }));
|
|
2656
|
+
return this._dataAcess.post(this.api, model, this.method);
|
|
2597
2657
|
}
|
|
2598
2658
|
return this._dataAcess.get(this.api, this.method, parameters);
|
|
2599
2659
|
};
|
|
@@ -7071,7 +7131,7 @@
|
|
|
7071
7131
|
{ type: i0.Component, args: [{
|
|
7072
7132
|
selector: 'info-sidebar',
|
|
7073
7133
|
template: "<ng-container *ngIf=\"_platform.Config.ux >= 3\">\r\n <div class=\"site-sidebar\" [ngClass]=\"{ 'opened': openSubmenu }\" >\r\n <nav>\r\n <div class=\"main-menu\">\r\n <a id=\"menu-min-icon\" (click)=\"toggleSidebar()\">\r\n <mat-icon [ngClass]=\"{ 'min': _platform.MenuMin }\">chevron_right</mat-icon>\r\n </a>\r\n\r\n <ul *ngIf=\"menu\">\r\n \r\n <li class=\"menu-item\" *ngFor=\"let m of menu\" [ngClass]=\"{ 'active': menuAtivo == m.Title, 'disabled': !m.Enabled, 'opened': openSubmenu == m.Title }\">\r\n \r\n <a *ngIf=\"m.Sub == null\" [routerLink]=\"m.Routing\" class=\"item-link\" (click)=\"access(m.Title);tooltip.hide();\" >\r\n <mat-icon #tooltip=\"matTooltip\" [matTooltip]=\"m.Title | translate\" [matTooltipDisabled]=\"!_platform.MenuMin\" matTooltipPosition=\"right\" [matTooltipShowDelay]=\"600\" matTooltipClass=\"mat-tooltip\">{{ m.Icon }}</mat-icon>\r\n <label class=\"title\">{{ m.Title | translate }}</label>\r\n </a>\r\n \r\n <ng-container *ngIf=\"m.Sub != null\">\r\n <a class=\"item-link\" (click)=\"toggleSubmenu(m.Title);tooltip.hide();\" >\r\n <mat-icon #tooltip=\"matTooltip\" [matTooltip]=\"m.Title | translate\" [matTooltipDisabled]=\"!_platform.MenuMin\" matTooltipPosition=\"right\" [matTooltipShowDelay]=\"600\" matTooltipClass=\"mat-tooltip\" >{{ m.Icon }}</mat-icon>\r\n <label class=\"title\">{{ m.Title | translate }}</label>\r\n </a>\r\n \r\n <div class=\"sub-menu\">\r\n <h4>{{ m.Title | translate }}</h4>\r\n \r\n <ul>\r\n <li *ngFor=\"let s of m.Sub\">\r\n <a [routerLink]=\"s.Routing\" class=\"item-link\" (click)=\"changeSidebar();access(m.Title);\" >{{ s.Title | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </ng-container>\r\n </li>\r\n </ul>\r\n </div>\r\n </nav>\r\n <div class=\"sub-menu-overlay\" (click)=\"openSubmenu = ''\"></div>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"_platform.Config.ux <= 2\">\r\n <div class=\"site-sidebar\">\r\n\r\n <div class=\"logo\">\r\n <a href=\"/\" >\r\n <i class=\"logo-img\"></i>\r\n </a>\r\n </div>\r\n\r\n <div class=\"info\">\r\n <span>{{ _session.Usuario }}</span>\r\n <small>{{ _session.Perfil }}</small>\r\n </div>\r\n\r\n <nav>\r\n <div class=\"main-menu\">\r\n <section class=\"loading-bar\" *ngIf=\"loading\">\r\n <mat-progress-bar color=\"primary\" mode=\"indeterminate\"></mat-progress-bar>\r\n </section>\r\n <ul *ngIf=\"menu\">\r\n <li class=\"menu-item\" *ngFor=\"let m of menu\" [ngClass]=\"{ 'has-sub': m.Sub != null, 'active': m.Active, 'menu-item-group': m.Group, 'disabled': !m.Enabled }\">\r\n \r\n <!-- Grupos -->\r\n <span class=\"group-title\" *ngIf=\"m.Group\">{{ m.Title }} </span>\r\n \r\n <!-- Itens -->\r\n <a href=\"#\" [routerLink]=\"m.Routing\" class=\"item-link\" *ngIf=\"!m.Group && m.Sub == null && m.Enabled\" (click)=\"toggle($event, m);resetLastSearch();\">\r\n <mat-icon>{{ m.Icon }}</mat-icon>{{ m.Title | translate }}\r\n </a>\r\n \r\n <a class=\"item-link\" *ngIf=\"!m.Group && m.Sub == null && !m.Enabled\">\r\n <mat-icon>{{ m.Icon }}</mat-icon>{{ m.Title | translate }} \r\n </a>\r\n \r\n <!-- Item com submenu -->\r\n <a href=\"#\" class=\"item-link\" *ngIf=\"!m.Group && m.Sub != null\" (click)=\"toggle($event, m)\">\r\n <mat-icon class=\"icon\">{{ m.Icon }}</mat-icon>{{ m.Title | translate }}\r\n <i class=\"caret fa fa-angle-right\" *ngIf=\"m.Sub\"></i>\r\n </a>\r\n \r\n <!-- Sub Menu -->\r\n <ul class=\"sub\" *ngIf=\"!m.Group && m.Sub != null\">\r\n <li class=\"menu-item\" *ngFor=\"let s of m.Sub\">\r\n <a [routerLink]=\"s.Routing\" (click)=\"resetLastSearch()\" class=\"item-link\" >{{ s.Title | translate }}</a>\r\n </li>\r\n </ul>\r\n </li>\r\n </ul>\r\n </div>\r\n </nav>\r\n </div>\r\n</ng-container>\r\n\r\n<div class=\"sidebar-overlay\"></div>",
|
|
7074
|
-
styles: [":host.uxc3{display:block;height:100%;left:0;position:fixed;top:80px;transition:left .2s ease-in-out,width .2s ease-in-out;width:240px;z-index:9997}@media screen and (max-width:991px){:host.uxc3{left:-240px;top:180px}}:host.uxc3 .site-sidebar{display:flex;flex-direction:column;height:100%;min-height:60px;width:100%}@media screen and (max-width:991px){:host.uxc3 .site-sidebar{position:relative}:host.uxc3 .site-sidebar:before{top:180px}}:host.uxc3 .site-sidebar:before{content:\" \";height:100%;left:240px;position:fixed;top:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out;visibility:hidden;width:370px;z-index:-1}@media screen and (max-width:991px){:host.uxc3 .site-sidebar:before{display:none}}:host.uxc3 .site-sidebar.opened:before{opacity:1;visibility:visible}:host.uxc3 .site-sidebar.opened .sub-menu-overlay{opacity:.5;visibility:visible}@media screen and (max-width:991px){:host.uxc3 .site-sidebar.opened .sub-menu-overlay{opacity:0!important}}:host.uxc3 .site-sidebar .sub-menu-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:-2}:host.uxc3 nav{-webkit-overflow-scrolling:touch;display:block;overflow-x:hidden;overflow-y:auto;padding-top:5px}:host.uxc3 nav #menu-min-icon{cursor:pointer;height:20px;position:absolute;right:20px;top:20px;transition:right .2s ease-in-out;width:20px}:host.uxc3 nav #menu-min-icon mat-icon{font-size:20px;height:inherit;transform:rotate(180deg);transition:transform .2s ease-in-out;width:inherit}:host.uxc3 nav #menu-min-icon mat-icon.min{transform:rotate(0deg)}:host.uxc3 nav .main-menu{overflow-y:auto;width:240px}:host.uxc3 nav .main-menu>ul{list-style-type:none;margin:30px 0 0;padding:10px 0 22px}:host.uxc3 nav .main-menu>ul .menu-item{margin-bottom:3px;position:relative}:host.uxc3 nav .main-menu>ul .menu-item:after{bottom:0;content:\"\";left:-5px;position:absolute;top:0;transition:transform .2s ease-in-out;width:5px}:host.uxc3 nav .main-menu>ul .menu-item>.item-link{-moz-user-select:none;-
|
|
7134
|
+
styles: [":host.uxc3{display:block;height:100%;left:0;position:fixed;top:80px;transition:left .2s ease-in-out,width .2s ease-in-out;width:240px;z-index:9997}@media screen and (max-width:991px){:host.uxc3{left:-240px;top:180px}}:host.uxc3 .site-sidebar{display:flex;flex-direction:column;height:100%;min-height:60px;width:100%}@media screen and (max-width:991px){:host.uxc3 .site-sidebar{position:relative}:host.uxc3 .site-sidebar:before{top:180px}}:host.uxc3 .site-sidebar:before{content:\" \";height:100%;left:240px;position:fixed;top:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out;visibility:hidden;width:370px;z-index:-1}@media screen and (max-width:991px){:host.uxc3 .site-sidebar:before{display:none}}:host.uxc3 .site-sidebar.opened:before{opacity:1;visibility:visible}:host.uxc3 .site-sidebar.opened .sub-menu-overlay{opacity:.5;visibility:visible}@media screen and (max-width:991px){:host.uxc3 .site-sidebar.opened .sub-menu-overlay{opacity:0!important}}:host.uxc3 .site-sidebar .sub-menu-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:-2}:host.uxc3 nav{-webkit-overflow-scrolling:touch;display:block;overflow-x:hidden;overflow-y:auto;padding-top:5px}:host.uxc3 nav #menu-min-icon{cursor:pointer;height:20px;position:absolute;right:20px;top:20px;transition:right .2s ease-in-out;width:20px}:host.uxc3 nav #menu-min-icon mat-icon{font-size:20px;height:inherit;transform:rotate(180deg);transition:transform .2s ease-in-out;width:inherit}:host.uxc3 nav #menu-min-icon mat-icon.min{transform:rotate(0deg)}:host.uxc3 nav .main-menu{overflow-y:auto;width:240px}:host.uxc3 nav .main-menu>ul{list-style-type:none;margin:30px 0 0;padding:10px 0 22px}:host.uxc3 nav .main-menu>ul .menu-item{margin-bottom:3px;position:relative}:host.uxc3 nav .main-menu>ul .menu-item:after{bottom:0;content:\"\";left:-5px;position:absolute;top:0;transition:transform .2s ease-in-out;width:5px}:host.uxc3 nav .main-menu>ul .menu-item>.item-link{-moz-user-select:none;-webkit-touch-callout:none;-webkit-user-select:none;cursor:pointer;display:block;font-size:14px;font-weight:500;padding:5px 5px 10px 20px;position:relative;text-decoration:none;transition:background .2s ease-in-out,color .2s ease-in-out;user-select:none}:host.uxc3 nav .main-menu>ul .menu-item>.item-link .mat-icon{height:auto;margin-right:15px;top:6px}:host.uxc3 nav .main-menu>ul .menu-item>.item-link .title{margin-bottom:0;transition:opacity .2s ease-in-out}:host.uxc3 nav .main-menu>ul .menu-item:hover>.item-link{font-weight:600}:host.uxc3 nav .main-menu>ul .menu-item:hover:after{transform:translateX(4px)}:host.uxc3 nav .main-menu>ul .menu-item.active>.item-link,:host.uxc3 nav .main-menu>ul .menu-item.opened>.item-link{background:transparent;font-weight:600}:host.uxc3 nav .main-menu>ul .menu-item.active:after,:host.uxc3 nav .main-menu>ul .menu-item.opened:after{transform:translateX(4px)}:host.uxc3 nav .main-menu>ul .menu-item.disabled>.item-link{cursor:default;opacity:.5}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu{font-family:Open Sans,sans-serif;left:240px;opacity:0;padding:0 40px;position:fixed;top:100px;transition:opacity .2s ease-in-out 0s,visibility 0s ease-in-out .2s;visibility:hidden;width:370px}@media screen and (max-width:991px){:host.uxc3 nav .main-menu>ul .menu-item .sub-menu{display:none}}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu h4{font-size:24px;font-weight:500}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul{list-style:none;margin:0;padding:0}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul li{margin:10px 3px}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul li a{cursor:pointer;font-size:14px;font-weight:500;margin:0;padding:5px 0;transition:color .2s ease-in-out}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul li a:hover{font-weight:600!important;text-decoration:none!important}:host.uxc3 nav .main-menu>ul .menu-item.opened .sub-menu{opacity:1;visibility:visible}:host.uxc3 .sidebar-overlay{opacity:0;transition:opacity .2s ease-in-out 0s,visibility 0s ease-in-out .2s;visibility:hidden;width:100%;z-index:-3}:host.uxc2,:host.uxc3 .sidebar-overlay{height:100%;left:0;position:fixed;top:0}:host.uxc2{display:block;transition:left .2s ease-in-out;width:240px;z-index:997}@media (max-width:991px){:host.uxc2{left:-240px}}:host.uxc2 .logo{background:main-color(600);display:block;height:70px}:host.uxc2 .logo a{align-items:flex-end;display:flex;font-family:Open Sans,sans-serif;height:inherit;padding:5px 15px;text-decoration:none}:host.uxc2 .logo a i.logo-img{height:50px;margin:auto;vertical-align:top;width:210px}:host.uxc2 .site-sidebar{display:flex;flex-direction:column;height:100%;min-height:60px;width:100%}@media (max-width:991px){:host.uxc2 .site-sidebar{position:relative;z-index:9999}}:host.uxc2 .site-sidebar .info{background-size:cover;padding:8px 20px}:host.uxc2 .site-sidebar .info span{font-size:1.2em;margin:0}:host.uxc2 .site-sidebar .info label,:host.uxc2 .site-sidebar .info small{display:block}:host.uxc2 .site-sidebar .info p{margin-top:5px}:host.uxc2 .site-sidebar .info p a{cursor:pointer;font-size:.9em}:host.uxc2 .site-sidebar .info p a:hover{text-decoration:underline}:host.uxc2 .sidebar-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity .2s ease-in-out 0s,visibility 0s ease-in-out .2s;visibility:hidden;width:100%;z-index:9998}:host.uxc2 nav{-webkit-overflow-scrolling:touch;display:block;overflow-x:hidden;overflow-y:auto}:host.uxc2 nav .main-menu{width:240px}:host.uxc2 nav .main-menu>ul{list-style-type:none;margin:0;padding:10px 0 22px}:host.uxc2 nav .main-menu>ul .menu-item{margin-bottom:3px;position:relative}:host.uxc2 nav .main-menu>ul .menu-item:after{bottom:0;content:\"\";position:absolute;right:100%;top:0;transition:transform .2s ease-in-out;width:4px}:host.uxc2 nav .main-menu>ul .menu-item .item-link{display:block;font-size:1rem;font-weight:400;padding:11px 22px;position:relative;text-decoration:none;transition:background .2s ease-in-out,color .2s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item .item-link .item-badge{border-radius:8px;float:right;font-size:10px;line-height:1;margin-top:2px;padding:2px 6px 4px}:host.uxc2 nav .main-menu>ul .menu-item .item-link .icon{transition:color .2s ease-in-out;width:22px}:host.uxc2 nav .main-menu>ul .menu-item .item-link .mat-icon{font-size:18px;height:auto;top:4px;width:25px}:host.uxc2 nav .main-menu>ul .menu-item.menu-item-group:after{display:none}:host.uxc2 nav .main-menu>ul .menu-item .group-title{color:rgba(0,0,0,.6);display:block;font-size:.8rem;font-weight:600;padding:6px 22px 5px;text-transform:uppercase}:host.uxc2 nav .main-menu>ul .menu-item .sub{list-style-type:none;margin:0;max-height:0;overflow:hidden;padding:0;transition:max-height .1s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item .sub .menu-item .item-link{font-size:.9em;padding:5px 22px 6px 48px}:host.uxc2 nav .main-menu>ul .menu-item .sub .menu-item:first-child>.item-link:before{border-top:1px solid transparent;content:\"\";left:0;position:absolute;right:0;top:0;transition:border .2s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item.active:after,:host.uxc2 nav .main-menu>ul .menu-item:hover:not(.disabled):after{transform:translateX(4px)}:host.uxc2 nav .main-menu>ul .menu-item.disabled>.item-link{cursor:default;opacity:.5}:host.uxc2 nav .main-menu>ul .menu-item.has-sub,:host.uxc2 nav .main-menu>ul .menu-item.has-sub>.item-link{position:relative}:host.uxc2 nav .main-menu>ul .menu-item.has-sub>.item-link .caret{margin-top:.55rem;position:absolute;right:13px;top:6px;transition:transform .1s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item.has-sub.active>.item-link .caret{transform:rotate(90deg)}:host.uxc2 nav .main-menu>ul .menu-item.has-sub.active>.sub{max-height:1000px}"]
|
|
7075
7135
|
}] }
|
|
7076
7136
|
];
|
|
7077
7137
|
/** @nocollapse */
|