info-library 2.10.87 → 2.14.0
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/controls/alert/alert.component.d.ts +3 -0
- package/controls/autocomplete/autocomplete.component.d.ts +5 -2
- package/controls/big-checkbox/big-checkbox.component.d.ts +3 -0
- package/controls/card/card.component.d.ts +3 -0
- package/controls/card-menu/card-menu.component.d.ts +3 -0
- package/controls/checkbox/checkbox.component.d.ts +3 -0
- package/controls/chips/chips.component.d.ts +3 -0
- package/controls/date/date.component.d.ts +3 -0
- package/controls/date-month/date-month.component.d.ts +3 -0
- package/controls/editor/editor.component.d.ts +3 -0
- package/controls/grid/grid.component.d.ts +5 -0
- package/controls/input/input.component.d.ts +3 -0
- package/controls/input-list/input-list.component.d.ts +3 -0
- package/controls/list-checkbox/list-checkbox.component.d.ts +3 -0
- package/controls/message/message.component.d.ts +3 -0
- package/controls/multi-select/multi-select.component.d.ts +3 -0
- package/controls/paginator/paginator.component.d.ts +3 -0
- package/controls/select/select.component.d.ts +3 -0
- package/controls/timeline/timeline.component.d.ts +3 -0
- package/directives/mask.directive.d.ts +3 -0
- package/directives/unmask.directive.d.ts +3 -0
- package/esm2020/controls/alert/alert.component.mjs +74 -0
- package/esm2020/controls/autocomplete/autocomplete.component.mjs +258 -0
- package/esm2020/controls/big-checkbox/big-checkbox.component.mjs +298 -0
- package/esm2020/controls/card/card.component.mjs +77 -0
- package/esm2020/controls/card-menu/card-menu.component.mjs +145 -0
- package/esm2020/controls/checkbox/checkbox.component.mjs +93 -0
- package/esm2020/controls/chips/chips.component.mjs +113 -0
- package/esm2020/controls/date/date.component.mjs +141 -0
- package/esm2020/controls/date-month/date-month.component.mjs +148 -0
- package/esm2020/controls/editor/editor.component.mjs +135 -0
- package/esm2020/controls/grid/grid.component.mjs +1800 -0
- package/esm2020/controls/input/input.component.mjs +314 -0
- package/esm2020/controls/input-list/input-list.component.mjs +258 -0
- package/esm2020/controls/list-checkbox/list-checkbox.component.mjs +238 -0
- package/esm2020/controls/message/message.component.mjs +50 -0
- package/esm2020/controls/multi-select/multi-select.component.mjs +161 -0
- package/esm2020/controls/paginator/paginator.component.mjs +178 -0
- package/esm2020/controls/select/select.component.mjs +180 -0
- package/esm2020/controls/timeline/timeline.component.mjs +117 -0
- package/esm2020/directives/mask.directive.mjs +125 -0
- package/esm2020/directives/unmask.directive.mjs +28 -0
- package/esm2020/enum/dialog-buttons.enum.mjs +9 -0
- package/esm2020/enum/index.mjs +4 -0
- package/esm2020/enum/modal-action.enum.mjs +12 -0
- package/esm2020/enum/page-action.enum.mjs +10 -0
- package/esm2020/global-config.mjs +4 -0
- package/esm2020/info-library.mjs +5 -0
- package/esm2020/info-library.module.mjs +278 -0
- package/esm2020/layouts/dialog/dialog.component.mjs +188 -0
- package/esm2020/layouts/loading/loading.component.mjs +42 -0
- package/esm2020/layouts/main/main.component.mjs +276 -0
- package/esm2020/layouts/modal/modal.component.mjs +258 -0
- package/esm2020/layouts/pagebar/pagebar.component.mjs +404 -0
- package/esm2020/layouts/sidebar/sidebar.component.mjs +395 -0
- package/esm2020/layouts/topbar/topbar.component.mjs +863 -0
- package/esm2020/layouts/topmenu/topmenu.component.mjs +165 -0
- package/esm2020/model/app-config.model.mjs +14 -0
- package/esm2020/model/data-access.model.mjs +35 -0
- package/esm2020/model/dialog-result.model.mjs +8 -0
- package/esm2020/model/dialog.model.mjs +16 -0
- package/esm2020/model/form-prop.model.mjs +35 -0
- package/esm2020/model/grid-button.model.mjs +21 -0
- package/esm2020/model/index.mjs +15 -0
- package/esm2020/model/last-search.model.mjs +9 -0
- package/esm2020/model/login.model.mjs +9 -0
- package/esm2020/model/method-grid-button.model.mjs +9 -0
- package/esm2020/model/notification.model.mjs +9 -0
- package/esm2020/model/pagebar-buttons.model.mjs +15 -0
- package/esm2020/model/permission.model.mjs +3 -0
- package/esm2020/model/platform.model.mjs +21 -0
- package/esm2020/model/session.model.mjs +8 -0
- package/esm2020/pipe/index.mjs +3 -0
- package/esm2020/pipe/mask.pipe.mjs +34 -0
- package/esm2020/pipe/translate.pipe.mjs +26 -0
- package/esm2020/public_api.mjs +36 -0
- package/esm2020/service/authentication.service.mjs +358 -0
- package/esm2020/service/configuration.service.mjs +59 -0
- package/esm2020/service/data.service.mjs +112 -0
- package/esm2020/service/index.mjs +6 -0
- package/esm2020/service/theme.service.mjs +79 -0
- package/esm2020/service/translate.service.mjs +53 -0
- package/esm2020/utils/utilities.mjs +142 -0
- package/fesm2015/info-library.mjs +9326 -0
- package/fesm2015/info-library.mjs.map +1 -0
- package/fesm2020/info-library.mjs +8474 -0
- package/fesm2020/info-library.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/info-library.module.d.ts +58 -0
- package/layouts/dialog/dialog.component.d.ts +5 -0
- package/layouts/loading/loading.component.d.ts +3 -0
- package/layouts/main/main.component.d.ts +6 -0
- package/layouts/modal/modal.component.d.ts +3 -0
- package/layouts/pagebar/pagebar.component.d.ts +5 -0
- package/layouts/sidebar/sidebar.component.d.ts +4 -1
- package/layouts/topbar/topbar.component.d.ts +4 -1
- package/layouts/topmenu/topmenu.component.d.ts +3 -0
- package/package.json +28 -13
- package/pipe/mask.pipe.d.ts +3 -0
- package/pipe/translate.pipe.d.ts +3 -0
- package/service/authentication.service.d.ts +5 -0
- package/service/configuration.service.d.ts +3 -0
- package/service/data.service.d.ts +3 -0
- package/service/theme.service.d.ts +3 -0
- package/service/translate.service.d.ts +3 -0
- package/utils/utilities.d.ts +3 -0
- package/bundles/info-library.umd.js +0 -9740
- package/bundles/info-library.umd.js.map +0 -1
- package/bundles/info-library.umd.min.js +0 -2
- package/bundles/info-library.umd.min.js.map +0 -1
- package/esm2015/controls/alert/alert.component.js +0 -43
- package/esm2015/controls/autocomplete/autocomplete.component.js +0 -386
- package/esm2015/controls/big-checkbox/big-checkbox.component.js +0 -282
- package/esm2015/controls/card/card.component.js +0 -64
- package/esm2015/controls/card-menu/card-menu.component.js +0 -90
- package/esm2015/controls/checkbox/checkbox.component.js +0 -130
- package/esm2015/controls/chips/chips.component.js +0 -124
- package/esm2015/controls/date/date.component.js +0 -167
- package/esm2015/controls/date-month/date-month.component.js +0 -181
- package/esm2015/controls/editor/editor.component.js +0 -237
- package/esm2015/controls/grid/grid.component.js +0 -1391
- package/esm2015/controls/input/input.component.js +0 -196
- package/esm2015/controls/input-list/input-list.component.js +0 -160
- package/esm2015/controls/list-checkbox/list-checkbox.component.js +0 -151
- package/esm2015/controls/message/message.component.js +0 -47
- package/esm2015/controls/multi-select/multi-select.component.js +0 -213
- package/esm2015/controls/paginator/paginator.component.js +0 -151
- package/esm2015/controls/select/select.component.js +0 -231
- package/esm2015/controls/timeline/timeline.component.js +0 -73
- package/esm2015/directives/mask.directive.js +0 -202
- package/esm2015/directives/unmask.directive.js +0 -51
- package/esm2015/enum/dialog-buttons.enum.js +0 -20
- package/esm2015/enum/index.js +0 -9
- package/esm2015/enum/modal-action.enum.js +0 -26
- package/esm2015/enum/page-action.enum.js +0 -22
- package/esm2015/global-config.js +0 -11
- package/esm2015/info-library.js +0 -27
- package/esm2015/info-library.module.js +0 -174
- package/esm2015/layouts/dialog/dialog.component.js +0 -173
- package/esm2015/layouts/loading/loading.component.js +0 -42
- package/esm2015/layouts/main/main.component.js +0 -312
- package/esm2015/layouts/modal/modal.component.js +0 -232
- package/esm2015/layouts/pagebar/pagebar.component.js +0 -286
- package/esm2015/layouts/sidebar/sidebar.component.js +0 -231
- package/esm2015/layouts/topbar/topbar.component.js +0 -413
- package/esm2015/layouts/topmenu/topmenu.component.js +0 -181
- package/esm2015/model/app-config.model.js +0 -39
- package/esm2015/model/data-access.model.js +0 -65
- package/esm2015/model/dialog-result.model.js +0 -23
- package/esm2015/model/dialog.model.js +0 -47
- package/esm2015/model/form-prop.model.js +0 -61
- package/esm2015/model/grid-button.model.js +0 -62
- package/esm2015/model/index.js +0 -20
- package/esm2015/model/last-search.model.js +0 -24
- package/esm2015/model/login.model.js +0 -27
- package/esm2015/model/method-grid-button.model.js +0 -27
- package/esm2015/model/notification.model.js +0 -34
- package/esm2015/model/pagebar-buttons.model.js +0 -39
- package/esm2015/model/permission.model.js +0 -16
- package/esm2015/model/platform.model.js +0 -56
- package/esm2015/model/session.model.js +0 -53
- package/esm2015/pipe/index.js +0 -8
- package/esm2015/pipe/mask.pipe.js +0 -47
- package/esm2015/pipe/translate.pipe.js +0 -45
- package/esm2015/public_api.js +0 -41
- package/esm2015/service/authentication.service.js +0 -732
- package/esm2015/service/configuration.service.js +0 -107
- package/esm2015/service/data.service.js +0 -292
- package/esm2015/service/index.js +0 -11
- package/esm2015/service/theme.service.js +0 -133
- package/esm2015/service/translate.service.js +0 -105
- package/esm2015/utils/utilities.js +0 -256
- package/fesm2015/info-library.js +0 -8792
- package/fesm2015/info-library.js.map +0 -1
- package/info-library.d.ts +0 -21
- package/info-library.metadata.json +0 -1
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
import { Component, ElementRef, EventEmitter, Input, Output, Renderer2 } from '@angular/core';
|
|
2
|
+
import { InfoDataService } from '../../service/data.service';
|
|
3
|
+
import { InfoAuthenticationService } from '../../service/authentication.service';
|
|
4
|
+
import { InfoThemeService } from '../../service/theme.service';
|
|
5
|
+
import { InfoLastSearchModel } from '../../model/last-search.model';
|
|
6
|
+
import { InfoSessionModel } from '../../model/session.model';
|
|
7
|
+
import { InfoPlatformModel } from '../../model/platform.model';
|
|
8
|
+
import { NavigationStart, Router } from '@angular/router';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
import * as i1 from "../../service/data.service";
|
|
11
|
+
import * as i2 from "../../service/authentication.service";
|
|
12
|
+
import * as i3 from "../../service/theme.service";
|
|
13
|
+
import * as i4 from "../../model/session.model";
|
|
14
|
+
import * as i5 from "../../model/platform.model";
|
|
15
|
+
import * as i6 from "../../model/last-search.model";
|
|
16
|
+
import * as i7 from "@angular/router";
|
|
17
|
+
import * as i8 from "@angular/common";
|
|
18
|
+
import * as i9 from "@angular/material/icon";
|
|
19
|
+
import * as i10 from "@angular/material/progress-bar";
|
|
20
|
+
import * as i11 from "@angular/material/tooltip";
|
|
21
|
+
import * as i12 from "../../pipe/translate.pipe";
|
|
22
|
+
function InfoSidebarComponent_ng_container_0_ul_7_li_1_a_1_Template(rf, ctx) { if (rf & 1) {
|
|
23
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
24
|
+
i0.ɵɵelementStart(0, "a", 10);
|
|
25
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_ul_7_li_1_a_1_Template_a_click_0_listener() { i0.ɵɵrestoreView(_r9); const _r7 = i0.ɵɵreference(2); const m_r4 = i0.ɵɵnextContext().$implicit; const ctx_r8 = i0.ɵɵnextContext(3); ctx_r8.changeSidebar(); ctx_r8.access(m_r4.Title); return i0.ɵɵresetView(_r7.hide()); });
|
|
26
|
+
i0.ɵɵelementStart(1, "mat-icon", 11, 12);
|
|
27
|
+
i0.ɵɵpipe(3, "translate");
|
|
28
|
+
i0.ɵɵtext(4);
|
|
29
|
+
i0.ɵɵelementEnd();
|
|
30
|
+
i0.ɵɵelementStart(5, "label", 13);
|
|
31
|
+
i0.ɵɵtext(6);
|
|
32
|
+
i0.ɵɵpipe(7, "translate");
|
|
33
|
+
i0.ɵɵelementEnd()();
|
|
34
|
+
} if (rf & 2) {
|
|
35
|
+
const m_r4 = i0.ɵɵnextContext().$implicit;
|
|
36
|
+
const ctx_r5 = i0.ɵɵnextContext(3);
|
|
37
|
+
i0.ɵɵproperty("routerLink", m_r4.Routing);
|
|
38
|
+
i0.ɵɵadvance(1);
|
|
39
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(3, 6, m_r4.Title))("matTooltipDisabled", !ctx_r5._platform.MenuMin)("matTooltipShowDelay", 600);
|
|
40
|
+
i0.ɵɵadvance(3);
|
|
41
|
+
i0.ɵɵtextInterpolate(m_r4.Icon);
|
|
42
|
+
i0.ɵɵadvance(2);
|
|
43
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 8, m_r4.Title));
|
|
44
|
+
} }
|
|
45
|
+
function InfoSidebarComponent_ng_container_0_ul_7_li_1_ng_container_2_li_14_Template(rf, ctx) { if (rf & 1) {
|
|
46
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
47
|
+
i0.ɵɵelementStart(0, "li")(1, "a", 10);
|
|
48
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_ul_7_li_1_ng_container_2_li_14_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r16); const m_r4 = i0.ɵɵnextContext(2).$implicit; const ctx_r15 = i0.ɵɵnextContext(3); ctx_r15.changeSidebar(); return i0.ɵɵresetView(ctx_r15.access(m_r4.Title)); });
|
|
49
|
+
i0.ɵɵtext(2);
|
|
50
|
+
i0.ɵɵpipe(3, "translate");
|
|
51
|
+
i0.ɵɵelementEnd()();
|
|
52
|
+
} if (rf & 2) {
|
|
53
|
+
const s_r14 = ctx.$implicit;
|
|
54
|
+
i0.ɵɵadvance(1);
|
|
55
|
+
i0.ɵɵproperty("routerLink", s_r14.Routing);
|
|
56
|
+
i0.ɵɵadvance(1);
|
|
57
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, s_r14.Title));
|
|
58
|
+
} }
|
|
59
|
+
function InfoSidebarComponent_ng_container_0_ul_7_li_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
60
|
+
const _r20 = i0.ɵɵgetCurrentView();
|
|
61
|
+
i0.ɵɵelementContainerStart(0);
|
|
62
|
+
i0.ɵɵelementStart(1, "a", 14);
|
|
63
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_ul_7_li_1_ng_container_2_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r20); const _r12 = i0.ɵɵreference(3); const m_r4 = i0.ɵɵnextContext().$implicit; const ctx_r18 = i0.ɵɵnextContext(3); ctx_r18.toggleSubmenu(m_r4.Title); return i0.ɵɵresetView(_r12.hide()); });
|
|
64
|
+
i0.ɵɵelementStart(2, "mat-icon", 11, 12);
|
|
65
|
+
i0.ɵɵpipe(4, "translate");
|
|
66
|
+
i0.ɵɵtext(5);
|
|
67
|
+
i0.ɵɵelementEnd();
|
|
68
|
+
i0.ɵɵelementStart(6, "label", 13);
|
|
69
|
+
i0.ɵɵtext(7);
|
|
70
|
+
i0.ɵɵpipe(8, "translate");
|
|
71
|
+
i0.ɵɵelementEnd()();
|
|
72
|
+
i0.ɵɵelementStart(9, "div", 15)(10, "h4");
|
|
73
|
+
i0.ɵɵtext(11);
|
|
74
|
+
i0.ɵɵpipe(12, "translate");
|
|
75
|
+
i0.ɵɵelementEnd();
|
|
76
|
+
i0.ɵɵelementStart(13, "ul");
|
|
77
|
+
i0.ɵɵtemplate(14, InfoSidebarComponent_ng_container_0_ul_7_li_1_ng_container_2_li_14_Template, 4, 4, "li", 16);
|
|
78
|
+
i0.ɵɵelementEnd()();
|
|
79
|
+
i0.ɵɵelementContainerEnd();
|
|
80
|
+
} if (rf & 2) {
|
|
81
|
+
const m_r4 = i0.ɵɵnextContext().$implicit;
|
|
82
|
+
const ctx_r6 = i0.ɵɵnextContext(3);
|
|
83
|
+
i0.ɵɵadvance(2);
|
|
84
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(4, 7, m_r4.Title))("matTooltipDisabled", !ctx_r6._platform.MenuMin)("matTooltipShowDelay", 600);
|
|
85
|
+
i0.ɵɵadvance(3);
|
|
86
|
+
i0.ɵɵtextInterpolate(m_r4.Icon);
|
|
87
|
+
i0.ɵɵadvance(2);
|
|
88
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 9, m_r4.Title));
|
|
89
|
+
i0.ɵɵadvance(4);
|
|
90
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 11, m_r4.Title));
|
|
91
|
+
i0.ɵɵadvance(3);
|
|
92
|
+
i0.ɵɵproperty("ngForOf", m_r4.Sub);
|
|
93
|
+
} }
|
|
94
|
+
const _c0 = function (a0, a1, a2) { return { "active": a0, "disabled": a1, "opened": a2 }; };
|
|
95
|
+
function InfoSidebarComponent_ng_container_0_ul_7_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
96
|
+
i0.ɵɵelementStart(0, "li", 8);
|
|
97
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_0_ul_7_li_1_a_1_Template, 8, 10, "a", 9);
|
|
98
|
+
i0.ɵɵtemplate(2, InfoSidebarComponent_ng_container_0_ul_7_li_1_ng_container_2_Template, 15, 13, "ng-container", 0);
|
|
99
|
+
i0.ɵɵelementEnd();
|
|
100
|
+
} if (rf & 2) {
|
|
101
|
+
const m_r4 = ctx.$implicit;
|
|
102
|
+
const ctx_r3 = i0.ɵɵnextContext(3);
|
|
103
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction3(3, _c0, ctx_r3.menuAtivo == m_r4.Title, !m_r4.Enabled, ctx_r3.openSubmenu == m_r4.Title));
|
|
104
|
+
i0.ɵɵadvance(1);
|
|
105
|
+
i0.ɵɵproperty("ngIf", m_r4.Sub == null);
|
|
106
|
+
i0.ɵɵadvance(1);
|
|
107
|
+
i0.ɵɵproperty("ngIf", m_r4.Sub != null);
|
|
108
|
+
} }
|
|
109
|
+
function InfoSidebarComponent_ng_container_0_ul_7_Template(rf, ctx) { if (rf & 1) {
|
|
110
|
+
i0.ɵɵelementStart(0, "ul");
|
|
111
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_0_ul_7_li_1_Template, 3, 7, "li", 7);
|
|
112
|
+
i0.ɵɵelementEnd();
|
|
113
|
+
} if (rf & 2) {
|
|
114
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
115
|
+
i0.ɵɵadvance(1);
|
|
116
|
+
i0.ɵɵproperty("ngForOf", ctx_r2.menu);
|
|
117
|
+
} }
|
|
118
|
+
const _c1 = function (a0) { return { "opened": a0 }; };
|
|
119
|
+
const _c2 = function (a0) { return { "min": a0 }; };
|
|
120
|
+
function InfoSidebarComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
121
|
+
const _r23 = i0.ɵɵgetCurrentView();
|
|
122
|
+
i0.ɵɵelementContainerStart(0);
|
|
123
|
+
i0.ɵɵelementStart(1, "div", 2)(2, "nav")(3, "div", 3)(4, "a", 4);
|
|
124
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_Template_a_click_4_listener() { i0.ɵɵrestoreView(_r23); const ctx_r22 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r22.toggleSidebar()); });
|
|
125
|
+
i0.ɵɵelementStart(5, "mat-icon", 5);
|
|
126
|
+
i0.ɵɵtext(6, "chevron_right");
|
|
127
|
+
i0.ɵɵelementEnd()();
|
|
128
|
+
i0.ɵɵtemplate(7, InfoSidebarComponent_ng_container_0_ul_7_Template, 2, 1, "ul", 0);
|
|
129
|
+
i0.ɵɵelementEnd()();
|
|
130
|
+
i0.ɵɵelementStart(8, "div", 6);
|
|
131
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_Template_div_click_8_listener() { i0.ɵɵrestoreView(_r23); const ctx_r24 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r24.openSubmenu = ""); });
|
|
132
|
+
i0.ɵɵelementEnd()();
|
|
133
|
+
i0.ɵɵelementContainerEnd();
|
|
134
|
+
} if (rf & 2) {
|
|
135
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
136
|
+
i0.ɵɵadvance(1);
|
|
137
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(3, _c1, ctx_r0.openSubmenu));
|
|
138
|
+
i0.ɵɵadvance(4);
|
|
139
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(5, _c2, ctx_r0._platform.MenuMin));
|
|
140
|
+
i0.ɵɵadvance(2);
|
|
141
|
+
i0.ɵɵproperty("ngIf", ctx_r0.menu);
|
|
142
|
+
} }
|
|
143
|
+
function InfoSidebarComponent_ng_container_1_section_12_Template(rf, ctx) { if (rf & 1) {
|
|
144
|
+
i0.ɵɵelementStart(0, "section", 23);
|
|
145
|
+
i0.ɵɵelement(1, "mat-progress-bar", 24);
|
|
146
|
+
i0.ɵɵelementEnd();
|
|
147
|
+
} }
|
|
148
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_span_1_Template(rf, ctx) { if (rf & 1) {
|
|
149
|
+
i0.ɵɵelementStart(0, "span", 30);
|
|
150
|
+
i0.ɵɵtext(1);
|
|
151
|
+
i0.ɵɵelementEnd();
|
|
152
|
+
} if (rf & 2) {
|
|
153
|
+
const m_r28 = i0.ɵɵnextContext().$implicit;
|
|
154
|
+
i0.ɵɵadvance(1);
|
|
155
|
+
i0.ɵɵtextInterpolate1("", m_r28.Title, " ");
|
|
156
|
+
} }
|
|
157
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_2_Template(rf, ctx) { if (rf & 1) {
|
|
158
|
+
const _r37 = i0.ɵɵgetCurrentView();
|
|
159
|
+
i0.ɵɵelementStart(0, "a", 31);
|
|
160
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_2_Template_a_click_0_listener($event) { i0.ɵɵrestoreView(_r37); const m_r28 = i0.ɵɵnextContext().$implicit; const ctx_r35 = i0.ɵɵnextContext(3); ctx_r35.toggle($event, m_r28); return i0.ɵɵresetView(ctx_r35.resetLastSearch()); });
|
|
161
|
+
i0.ɵɵelementStart(1, "mat-icon");
|
|
162
|
+
i0.ɵɵtext(2);
|
|
163
|
+
i0.ɵɵelementEnd();
|
|
164
|
+
i0.ɵɵtext(3);
|
|
165
|
+
i0.ɵɵpipe(4, "translate");
|
|
166
|
+
i0.ɵɵelementEnd();
|
|
167
|
+
} if (rf & 2) {
|
|
168
|
+
const m_r28 = i0.ɵɵnextContext().$implicit;
|
|
169
|
+
i0.ɵɵproperty("routerLink", m_r28.Routing);
|
|
170
|
+
i0.ɵɵadvance(2);
|
|
171
|
+
i0.ɵɵtextInterpolate(m_r28.Icon);
|
|
172
|
+
i0.ɵɵadvance(1);
|
|
173
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(4, 3, m_r28.Title), " ");
|
|
174
|
+
} }
|
|
175
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_3_Template(rf, ctx) { if (rf & 1) {
|
|
176
|
+
i0.ɵɵelementStart(0, "a", 32)(1, "mat-icon");
|
|
177
|
+
i0.ɵɵtext(2);
|
|
178
|
+
i0.ɵɵelementEnd();
|
|
179
|
+
i0.ɵɵtext(3);
|
|
180
|
+
i0.ɵɵpipe(4, "translate");
|
|
181
|
+
i0.ɵɵelementEnd();
|
|
182
|
+
} if (rf & 2) {
|
|
183
|
+
const m_r28 = i0.ɵɵnextContext().$implicit;
|
|
184
|
+
i0.ɵɵadvance(2);
|
|
185
|
+
i0.ɵɵtextInterpolate(m_r28.Icon);
|
|
186
|
+
i0.ɵɵadvance(1);
|
|
187
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(4, 2, m_r28.Title), " ");
|
|
188
|
+
} }
|
|
189
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_i_5_Template(rf, ctx) { if (rf & 1) {
|
|
190
|
+
i0.ɵɵelement(0, "i", 36);
|
|
191
|
+
} }
|
|
192
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_Template(rf, ctx) { if (rf & 1) {
|
|
193
|
+
const _r43 = i0.ɵɵgetCurrentView();
|
|
194
|
+
i0.ɵɵelementStart(0, "a", 33);
|
|
195
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_Template_a_click_0_listener($event) { i0.ɵɵrestoreView(_r43); const m_r28 = i0.ɵɵnextContext().$implicit; const ctx_r41 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r41.toggle($event, m_r28)); });
|
|
196
|
+
i0.ɵɵelementStart(1, "mat-icon", 34);
|
|
197
|
+
i0.ɵɵtext(2);
|
|
198
|
+
i0.ɵɵelementEnd();
|
|
199
|
+
i0.ɵɵtext(3);
|
|
200
|
+
i0.ɵɵpipe(4, "translate");
|
|
201
|
+
i0.ɵɵtemplate(5, InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_i_5_Template, 1, 0, "i", 35);
|
|
202
|
+
i0.ɵɵelementEnd();
|
|
203
|
+
} if (rf & 2) {
|
|
204
|
+
const m_r28 = i0.ɵɵnextContext().$implicit;
|
|
205
|
+
i0.ɵɵadvance(2);
|
|
206
|
+
i0.ɵɵtextInterpolate(m_r28.Icon);
|
|
207
|
+
i0.ɵɵadvance(1);
|
|
208
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(4, 3, m_r28.Title), " ");
|
|
209
|
+
i0.ɵɵadvance(2);
|
|
210
|
+
i0.ɵɵproperty("ngIf", m_r28.Sub);
|
|
211
|
+
} }
|
|
212
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
213
|
+
const _r48 = i0.ɵɵgetCurrentView();
|
|
214
|
+
i0.ɵɵelementStart(0, "li", 39)(1, "a", 10);
|
|
215
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_li_1_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r48); const ctx_r47 = i0.ɵɵnextContext(5); return i0.ɵɵresetView(ctx_r47.resetLastSearch()); });
|
|
216
|
+
i0.ɵɵtext(2);
|
|
217
|
+
i0.ɵɵpipe(3, "translate");
|
|
218
|
+
i0.ɵɵelementEnd()();
|
|
219
|
+
} if (rf & 2) {
|
|
220
|
+
const s_r46 = ctx.$implicit;
|
|
221
|
+
i0.ɵɵadvance(1);
|
|
222
|
+
i0.ɵɵproperty("routerLink", s_r46.Routing);
|
|
223
|
+
i0.ɵɵadvance(1);
|
|
224
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, s_r46.Title));
|
|
225
|
+
} }
|
|
226
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_Template(rf, ctx) { if (rf & 1) {
|
|
227
|
+
i0.ɵɵelementStart(0, "ul", 37);
|
|
228
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_li_1_Template, 4, 4, "li", 38);
|
|
229
|
+
i0.ɵɵelementEnd();
|
|
230
|
+
} if (rf & 2) {
|
|
231
|
+
const m_r28 = i0.ɵɵnextContext().$implicit;
|
|
232
|
+
i0.ɵɵadvance(1);
|
|
233
|
+
i0.ɵɵproperty("ngForOf", m_r28.Sub);
|
|
234
|
+
} }
|
|
235
|
+
const _c3 = function (a0, a1, a2, a3) { return { "has-sub": a0, "active": a1, "menu-item-group": a2, "disabled": a3 }; };
|
|
236
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
237
|
+
i0.ɵɵelementStart(0, "li", 8);
|
|
238
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_1_ul_13_li_1_span_1_Template, 2, 1, "span", 25);
|
|
239
|
+
i0.ɵɵtemplate(2, InfoSidebarComponent_ng_container_1_ul_13_li_1_a_2_Template, 5, 5, "a", 26);
|
|
240
|
+
i0.ɵɵtemplate(3, InfoSidebarComponent_ng_container_1_ul_13_li_1_a_3_Template, 5, 4, "a", 27);
|
|
241
|
+
i0.ɵɵtemplate(4, InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_Template, 6, 5, "a", 28);
|
|
242
|
+
i0.ɵɵtemplate(5, InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_Template, 2, 1, "ul", 29);
|
|
243
|
+
i0.ɵɵelementEnd();
|
|
244
|
+
} if (rf & 2) {
|
|
245
|
+
const m_r28 = ctx.$implicit;
|
|
246
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction4(6, _c3, m_r28.Sub != null, m_r28.Active, m_r28.Group, !m_r28.Enabled));
|
|
247
|
+
i0.ɵɵadvance(1);
|
|
248
|
+
i0.ɵɵproperty("ngIf", m_r28.Group);
|
|
249
|
+
i0.ɵɵadvance(1);
|
|
250
|
+
i0.ɵɵproperty("ngIf", !m_r28.Group && m_r28.Sub == null && m_r28.Enabled);
|
|
251
|
+
i0.ɵɵadvance(1);
|
|
252
|
+
i0.ɵɵproperty("ngIf", !m_r28.Group && m_r28.Sub == null && !m_r28.Enabled);
|
|
253
|
+
i0.ɵɵadvance(1);
|
|
254
|
+
i0.ɵɵproperty("ngIf", !m_r28.Group && m_r28.Sub != null);
|
|
255
|
+
i0.ɵɵadvance(1);
|
|
256
|
+
i0.ɵɵproperty("ngIf", !m_r28.Group && m_r28.Sub != null);
|
|
257
|
+
} }
|
|
258
|
+
function InfoSidebarComponent_ng_container_1_ul_13_Template(rf, ctx) { if (rf & 1) {
|
|
259
|
+
i0.ɵɵelementStart(0, "ul");
|
|
260
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_1_ul_13_li_1_Template, 6, 11, "li", 7);
|
|
261
|
+
i0.ɵɵelementEnd();
|
|
262
|
+
} if (rf & 2) {
|
|
263
|
+
const ctx_r26 = i0.ɵɵnextContext(2);
|
|
264
|
+
i0.ɵɵadvance(1);
|
|
265
|
+
i0.ɵɵproperty("ngForOf", ctx_r26.menu);
|
|
266
|
+
} }
|
|
267
|
+
function InfoSidebarComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
268
|
+
i0.ɵɵelementContainerStart(0);
|
|
269
|
+
i0.ɵɵelementStart(1, "div", 17)(2, "div", 18)(3, "a", 19);
|
|
270
|
+
i0.ɵɵelement(4, "i", 20);
|
|
271
|
+
i0.ɵɵelementEnd()();
|
|
272
|
+
i0.ɵɵelementStart(5, "div", 21)(6, "span");
|
|
273
|
+
i0.ɵɵtext(7);
|
|
274
|
+
i0.ɵɵelementEnd();
|
|
275
|
+
i0.ɵɵelementStart(8, "small");
|
|
276
|
+
i0.ɵɵtext(9);
|
|
277
|
+
i0.ɵɵelementEnd()();
|
|
278
|
+
i0.ɵɵelementStart(10, "nav")(11, "div", 3);
|
|
279
|
+
i0.ɵɵtemplate(12, InfoSidebarComponent_ng_container_1_section_12_Template, 2, 0, "section", 22);
|
|
280
|
+
i0.ɵɵtemplate(13, InfoSidebarComponent_ng_container_1_ul_13_Template, 2, 1, "ul", 0);
|
|
281
|
+
i0.ɵɵelementEnd()()();
|
|
282
|
+
i0.ɵɵelementContainerEnd();
|
|
283
|
+
} if (rf & 2) {
|
|
284
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
285
|
+
i0.ɵɵadvance(7);
|
|
286
|
+
i0.ɵɵtextInterpolate(ctx_r1._session.Usuario);
|
|
287
|
+
i0.ɵɵadvance(2);
|
|
288
|
+
i0.ɵɵtextInterpolate(ctx_r1._session.Perfil);
|
|
289
|
+
i0.ɵɵadvance(3);
|
|
290
|
+
i0.ɵɵproperty("ngIf", ctx_r1.loading);
|
|
291
|
+
i0.ɵɵadvance(1);
|
|
292
|
+
i0.ɵɵproperty("ngIf", ctx_r1.menu);
|
|
293
|
+
} }
|
|
294
|
+
export class InfoSidebarComponent {
|
|
295
|
+
constructor(_dataAcessService, _authentication, _themeService, _session, _platform, _lastSearch, _router, _renderer, _element) {
|
|
296
|
+
this._dataAcessService = _dataAcessService;
|
|
297
|
+
this._authentication = _authentication;
|
|
298
|
+
this._themeService = _themeService;
|
|
299
|
+
this._session = _session;
|
|
300
|
+
this._platform = _platform;
|
|
301
|
+
this._lastSearch = _lastSearch;
|
|
302
|
+
this._router = _router;
|
|
303
|
+
this._renderer = _renderer;
|
|
304
|
+
this._element = _element;
|
|
305
|
+
this.api = null;
|
|
306
|
+
this.method = 'GetMenu';
|
|
307
|
+
this.activemenubyurl = false;
|
|
308
|
+
this.onchangestate = new EventEmitter();
|
|
309
|
+
this.loading = false;
|
|
310
|
+
this.menu = [];
|
|
311
|
+
this.openSubmenu = '';
|
|
312
|
+
this.menuAtivo = 'Dashboard';
|
|
313
|
+
}
|
|
314
|
+
ngOnInit() {
|
|
315
|
+
if (!this._authentication.isLogged() || this.api == null)
|
|
316
|
+
return;
|
|
317
|
+
this._renderer.addClass(this._element.nativeElement, 'uxc' + this._platform.Config.ux);
|
|
318
|
+
this.loading = true;
|
|
319
|
+
this._dataAcessService
|
|
320
|
+
.get(this.api, this.method)
|
|
321
|
+
.subscribe(r => {
|
|
322
|
+
if (r.success) {
|
|
323
|
+
this.menu = r.data;
|
|
324
|
+
this._platform.Menu = r.data;
|
|
325
|
+
this._authentication.definePaginaAtiva(this._router.url);
|
|
326
|
+
this.monitorarUrl();
|
|
327
|
+
}
|
|
328
|
+
this.loading = false;
|
|
329
|
+
});
|
|
330
|
+
}
|
|
331
|
+
toggle(e, menuItem) {
|
|
332
|
+
e.preventDefault();
|
|
333
|
+
if (!menuItem.Enabled)
|
|
334
|
+
return;
|
|
335
|
+
if (!menuItem.Active)
|
|
336
|
+
for (let i = 0; i < this.menu.length; i++)
|
|
337
|
+
this.menu[i].Active = false;
|
|
338
|
+
menuItem.Active = !menuItem.Active;
|
|
339
|
+
}
|
|
340
|
+
access(menu) {
|
|
341
|
+
this.menuAtivo = menu;
|
|
342
|
+
this.openSubmenu = '';
|
|
343
|
+
this.resetLastSearch();
|
|
344
|
+
}
|
|
345
|
+
monitorarUrl() {
|
|
346
|
+
if (this.activemenubyurl) {
|
|
347
|
+
this.ativarMenu(this._router.url);
|
|
348
|
+
this._router.events.subscribe(e => {
|
|
349
|
+
if (e instanceof NavigationStart)
|
|
350
|
+
this.ativarMenu(e.url);
|
|
351
|
+
});
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
ativarMenu(url) {
|
|
355
|
+
let itemMenu = this.menu.find(m => m.Routing == url);
|
|
356
|
+
if (itemMenu != null)
|
|
357
|
+
this.menuAtivo = itemMenu.Title;
|
|
358
|
+
}
|
|
359
|
+
toggleSubmenu(menu) {
|
|
360
|
+
this.openSubmenu = this.openSubmenu == menu ? '' : menu;
|
|
361
|
+
}
|
|
362
|
+
resetLastSearch() {
|
|
363
|
+
this._lastSearch.model = null;
|
|
364
|
+
this._lastSearch.url = '';
|
|
365
|
+
}
|
|
366
|
+
changeSidebar() {
|
|
367
|
+
this.onchangestate.emit();
|
|
368
|
+
}
|
|
369
|
+
toggleSidebar() {
|
|
370
|
+
this._themeService.setMenuMin();
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
/** @nocollapse */ InfoSidebarComponent.ɵfac = function InfoSidebarComponent_Factory(t) { return new (t || InfoSidebarComponent)(i0.ɵɵdirectiveInject(i1.InfoDataService), i0.ɵɵdirectiveInject(i2.InfoAuthenticationService), i0.ɵɵdirectiveInject(i3.InfoThemeService), i0.ɵɵdirectiveInject(i4.InfoSessionModel), i0.ɵɵdirectiveInject(i5.InfoPlatformModel), i0.ɵɵdirectiveInject(i6.InfoLastSearchModel), i0.ɵɵdirectiveInject(i7.Router), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
|
|
374
|
+
/** @nocollapse */ InfoSidebarComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoSidebarComponent, selectors: [["info-sidebar"]], inputs: { api: "api", method: "method", activemenubyurl: "activemenubyurl" }, outputs: { onchangestate: "onchangestate" }, decls: 3, vars: 2, consts: [[4, "ngIf"], [1, "sidebar-overlay"], [1, "site-sidebar", 3, "ngClass"], [1, "main-menu"], ["id", "menu-min-icon", 3, "click"], [3, "ngClass"], [1, "sub-menu-overlay", 3, "click"], ["class", "menu-item", 3, "ngClass", 4, "ngFor", "ngForOf"], [1, "menu-item", 3, "ngClass"], ["class", "item-link", 3, "routerLink", "click", 4, "ngIf"], [1, "item-link", 3, "routerLink", "click"], ["matTooltipPosition", "right", "matTooltipClass", "mat-tooltip", 3, "matTooltip", "matTooltipDisabled", "matTooltipShowDelay"], ["tooltip", "matTooltip"], [1, "title"], [1, "item-link", 3, "click"], [1, "sub-menu"], [4, "ngFor", "ngForOf"], [1, "site-sidebar"], [1, "logo"], ["href", "/"], [1, "logo-img"], [1, "info"], ["class", "loading-bar", 4, "ngIf"], [1, "loading-bar"], ["color", "primary", "mode", "indeterminate"], ["class", "group-title", 4, "ngIf"], ["href", "#", "class", "item-link", 3, "routerLink", "click", 4, "ngIf"], ["class", "item-link", 4, "ngIf"], ["href", "#", "class", "item-link", 3, "click", 4, "ngIf"], ["class", "sub", 4, "ngIf"], [1, "group-title"], ["href", "#", 1, "item-link", 3, "routerLink", "click"], [1, "item-link"], ["href", "#", 1, "item-link", 3, "click"], [1, "icon"], ["class", "caret fa fa-angle-right", 4, "ngIf"], [1, "caret", "fa", "fa-angle-right"], [1, "sub"], ["class", "menu-item", 4, "ngFor", "ngForOf"], [1, "menu-item"]], template: function InfoSidebarComponent_Template(rf, ctx) { if (rf & 1) {
|
|
375
|
+
i0.ɵɵtemplate(0, InfoSidebarComponent_ng_container_0_Template, 9, 7, "ng-container", 0);
|
|
376
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_1_Template, 14, 4, "ng-container", 0);
|
|
377
|
+
i0.ɵɵelement(2, "div", 1);
|
|
378
|
+
} if (rf & 2) {
|
|
379
|
+
i0.ɵɵproperty("ngIf", ctx._platform.Config.ux >= 3);
|
|
380
|
+
i0.ɵɵadvance(1);
|
|
381
|
+
i0.ɵɵproperty("ngIf", ctx._platform.Config.ux <= 2);
|
|
382
|
+
} }, dependencies: [i8.NgClass, i8.NgForOf, i8.NgIf, i9.MatIcon, i10.MatProgressBar, i11.MatTooltip, i7.RouterLinkWithHref, i12.InfoTranslatePipe], styles: [".uxc3[_nghost-%COMP%]{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){.uxc3[_nghost-%COMP%]{left:-240px;top:84px}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{position:relative}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{top:180px}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{position:fixed;content:\" \";visibility:hidden;left:240px;top:0;width:370px;height:100%;z-index:-1;transition:opacity .2s ease-in-out,visibility .2s ease-in-out}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{display:none}}.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%]:before{opacity:1;visibility:visible}.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{opacity:.5;visibility:visible}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{opacity:0!important}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{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}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%]{display:block;padding-top:5px;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%]{position:absolute;top:20px;right:20px;width:20px;height:20px;cursor:pointer;transition:right .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{font-size:20px;width:inherit;height:inherit;transition:transform .2s ease-in-out;transform:rotate(180deg)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%] mat-icon.min[_ngcontent-%COMP%]{transform:rotate(0)}@media (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%]{display:none}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%]{width:240px;overflow-y:auto}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:30px 0 0;padding:10px 0 90px}@media (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{margin-top:0}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]{position:relative;margin-bottom:3px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:after{bottom:0;content:\"\";position:absolute;left:-5px;top:0;transition:transform .2s ease-in-out;width:5px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{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;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{height:auto;top:6px;margin-right:15px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{margin-bottom:0;transition:opacity .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover > .item-link[_ngcontent-%COMP%]{font-weight:600}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover:after{transform:translate(4px)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{background:transparent;font-weight:600}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%]:after, .uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%]:after{transform:translate(4px)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.disabled[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{opacity:.5;cursor:default}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{font-family:Open Sans,sans-serif;visibility:hidden;opacity:0;position:fixed;left:240px;width:370px;padding:0 40px;top:100px;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{display:none}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] h4[_ngcontent-%COMP%]{font-size:24px;font-weight:500}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{margin:0;padding:0;list-style:none}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin:10px 3px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:14px;font-weight:500;cursor:pointer;padding:5px 0;margin:0;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:none!important;font-weight:600!important}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{visibility:visible;opacity:1}.uxc3[_nghost-%COMP%] .sidebar-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:-3}.uxc2[_nghost-%COMP%]{display:block;height:100%;left:0;position:fixed;top:0;transition:left .2s ease-in-out;width:240px;z-index:997}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%]{left:-240px}}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%]{background:main-color(600);display:block;height:70px}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{align-items:flex-end;display:flex;font-family:Open Sans,sans-serif;height:inherit;padding:5px 15px;text-decoration:none}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%] a[_ngcontent-%COMP%] i.logo-img[_ngcontent-%COMP%]{width:210px;height:50px;margin:auto;vertical-align:top}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{position:relative;z-index:9999}}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{background-size:cover;padding:8px 20px}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{margin:0;font-size:1.2em}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] small[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin-top:5px}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:.9em;cursor:pointer}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:underline}.uxc2[_nghost-%COMP%] .sidebar-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}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%]{display:block;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%]{width:240px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;padding:10px 0 22px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]{position:relative;margin-bottom:3px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:after{bottom:0;content:\"\";position:absolute;right:100%;top:0;transition:transform .2s ease-in-out;width:4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%]{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}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .item-badge[_ngcontent-%COMP%]{border-radius:8px;float:right;font-size:10px;line-height:1;margin-top:2px;padding:2px 6px 4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .icon[_ngcontent-%COMP%]{transition:color .2s ease-in-out;width:22px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:18px;height:auto;width:25px;top:4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.menu-item-group[_ngcontent-%COMP%]:after{display:none}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .group-title[_ngcontent-%COMP%]{color:#0009;display:block;font-size:.8rem;font-weight:600;padding:6px 22px 5px;text-transform:uppercase}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%]{list-style-type:none;overflow:hidden;margin:0;max-height:0;padding:0;transition:max-height .1s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%]{padding:5px 22px 6px 48px;font-size:.9em}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:first-child > .item-link[_ngcontent-%COMP%]:before{border-top:1px solid transparent;content:\"\";left:0;position:absolute;right:0;top:0;transition:border .2s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover:not(.disabled):after{transform:translate(4px)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%]:after{transform:translate(4px)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.disabled[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{opacity:.5;cursor:default}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%]{position:relative}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{position:relative}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .caret[_ngcontent-%COMP%]{margin-top:.55rem;position:absolute;right:13px;top:6px;transition:transform .1s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub.active[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .caret[_ngcontent-%COMP%]{transform:rotate(90deg)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub.active[_ngcontent-%COMP%] > .sub[_ngcontent-%COMP%]{max-height:1000px}"] });
|
|
383
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoSidebarComponent, [{
|
|
384
|
+
type: Component,
|
|
385
|
+
args: [{ selector: 'info-sidebar', 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)=\"changeSidebar();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>", 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:84px}}:host.uxc3 .site-sidebar{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media screen and (max-width: 991px){:host.uxc3 .site-sidebar{position:relative}:host.uxc3 .site-sidebar:before{top:180px}}:host.uxc3 .site-sidebar:before{position:fixed;content:\" \";visibility:hidden;left:240px;top:0;width:370px;height:100%;z-index:-1;transition:opacity .2s ease-in-out,visibility .2s ease-in-out}@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{display:block;padding-top:5px;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}:host.uxc3 nav #menu-min-icon{position:absolute;top:20px;right:20px;width:20px;height:20px;cursor:pointer;transition:right .2s ease-in-out}:host.uxc3 nav #menu-min-icon mat-icon{font-size:20px;width:inherit;height:inherit;transition:transform .2s ease-in-out;transform:rotate(180deg)}:host.uxc3 nav #menu-min-icon mat-icon.min{transform:rotate(0)}@media (max-width: 991px){:host.uxc3 nav #menu-min-icon{display:none}}:host.uxc3 nav .main-menu{width:240px;overflow-y:auto}:host.uxc3 nav .main-menu>ul{list-style-type:none;margin:30px 0 0;padding:10px 0 90px}@media (max-width: 991px){:host.uxc3 nav .main-menu>ul{margin-top:0}}:host.uxc3 nav .main-menu>ul .menu-item{position:relative;margin-bottom:3px}:host.uxc3 nav .main-menu>ul .menu-item:after{bottom:0;content:\"\";position:absolute;left:-5px;top:0;transition:transform .2s ease-in-out;width:5px}:host.uxc3 nav .main-menu>ul .menu-item>.item-link{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;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}:host.uxc3 nav .main-menu>ul .menu-item>.item-link .mat-icon{height:auto;top:6px;margin-right:15px}: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:translate(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:translate(4px)}:host.uxc3 nav .main-menu>ul .menu-item.disabled>.item-link{opacity:.5;cursor:default}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu{font-family:Open Sans,sans-serif;visibility:hidden;opacity:0;position:fixed;left:240px;width:370px;padding:0 40px;top:100px;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out}@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{margin:0;padding:0;list-style:none}: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{font-size:14px;font-weight:500;cursor:pointer;padding:5px 0;margin:0;transition:color .2s ease-in-out}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul li a:hover{text-decoration:none!important;font-weight:600!important}:host.uxc3 nav .main-menu>ul .menu-item.opened .sub-menu{visibility:visible;opacity:1}:host.uxc3 .sidebar-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:-3}:host.uxc2{display:block;height:100%;left:0;position:fixed;top:0;transition:left .2s ease-in-out;width:240px;z-index:997}@media only screen and (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{width:210px;height:50px;margin:auto;vertical-align:top}:host.uxc2 .site-sidebar{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media only screen and (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{margin:0;font-size:1.2em}:host.uxc2 .site-sidebar .info small{display:block}:host.uxc2 .site-sidebar .info label{display:block}:host.uxc2 .site-sidebar .info p{margin-top:5px}:host.uxc2 .site-sidebar .info p a{font-size:.9em;cursor:pointer}: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:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}:host.uxc2 nav{display:block;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}: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{position:relative;margin-bottom:3px}: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;width:25px;top:4px}: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:#0009;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;overflow:hidden;margin:0;max-height:0;padding:0;transition:max-height .1s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item .sub .menu-item .item-link{padding:5px 22px 6px 48px;font-size:.9em}: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:hover:not(.disabled):after{transform:translate(4px)}:host.uxc2 nav .main-menu>ul .menu-item.active:after{transform:translate(4px)}:host.uxc2 nav .main-menu>ul .menu-item.disabled>.item-link{opacity:.5;cursor:default}:host.uxc2 nav .main-menu>ul .menu-item.has-sub{position:relative}: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}\n"] }]
|
|
386
|
+
}], function () { return [{ type: i1.InfoDataService }, { type: i2.InfoAuthenticationService }, { type: i3.InfoThemeService }, { type: i4.InfoSessionModel }, { type: i5.InfoPlatformModel }, { type: i6.InfoLastSearchModel }, { type: i7.Router }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { api: [{
|
|
387
|
+
type: Input
|
|
388
|
+
}], method: [{
|
|
389
|
+
type: Input
|
|
390
|
+
}], activemenubyurl: [{
|
|
391
|
+
type: Input
|
|
392
|
+
}], onchangestate: [{
|
|
393
|
+
type: Output
|
|
394
|
+
}] }); })();
|
|
395
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZWJhci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pbmZvLWxpYnJhcnkvc3JjL2xheW91dHMvc2lkZWJhci9zaWRlYmFyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2luZm8tbGlicmFyeS9zcmMvbGF5b3V0cy9zaWRlYmFyL3NpZGViYXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3RHLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUM3RCxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUNqRixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNwRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7Ozs7Ozs7Ozs7Ozs7O0lDS2xDLDZCQUErSDtJQUEzRCx1UEFBUyxzQkFBZSxFQUFDLHlCQUFlLFNBQUMsZUFBQSxVQUFjLENBQUEsSUFBRTtJQUN6SCx3Q0FBa007O0lBQUEsWUFBWTtJQUFBLGlCQUFXO0lBQ3pOLGlDQUFxQjtJQUFBLFlBQXlCOztJQUFBLGlCQUFRLEVBQUE7Ozs7SUFGakMseUNBQXdCO0lBQ2IsZUFBa0M7SUFBbEMsNkRBQWtDLGlEQUFBLDRCQUFBO0lBQWdJLGVBQVk7SUFBWiwrQkFBWTtJQUN6TCxlQUF5QjtJQUF6QixzREFBeUI7Ozs7SUFhdEMsMEJBQTRCLFlBQUE7SUFDc0IsNE9BQVMsdUJBQWUsU0FBQyxlQUFBLDBCQUFlLENBQUEsSUFBRTtJQUFFLFlBQXlCOztJQUFBLGlCQUFJLEVBQUE7OztJQUFwSCxlQUF3QjtJQUF4QiwwQ0FBd0I7SUFBK0QsZUFBeUI7SUFBekIsdURBQXlCOzs7O0lBWG5JLDZCQUFvQztJQUNoQyw2QkFBdUU7SUFBbEQscVFBQVMsaUNBQXNCLFNBQUMsZUFBQSxXQUFjLENBQUEsSUFBRTtJQUNqRSx3Q0FBbU07O0lBQUEsWUFBWTtJQUFBLGlCQUFXO0lBQzFOLGlDQUFxQjtJQUFBLFlBQXlCOztJQUFBLGlCQUFRLEVBQUE7SUFHMUQsK0JBQXNCLFVBQUE7SUFDZCxhQUF5Qjs7SUFBQSxpQkFBSztJQUVsQywyQkFBSTtJQUNBLDhHQUVLO0lBQ1QsaUJBQUssRUFBQTtJQUViLDBCQUFlOzs7O0lBYnlCLGVBQWtDO0lBQWxDLDZEQUFrQyxpREFBQSw0QkFBQTtJQUFpSSxlQUFZO0lBQVosK0JBQVk7SUFDMUwsZUFBeUI7SUFBekIsc0RBQXlCO0lBSTFDLGVBQXlCO0lBQXpCLHdEQUF5QjtJQUdQLGVBQVE7SUFBUixrQ0FBUTs7OztJQWpCMUMsNkJBQXNKO0lBRWxKLDJGQUdJO0lBRUosa0hBZWU7SUFDbkIsaUJBQUs7Ozs7SUF2QndDLHFJQUF3RztJQUU3SSxlQUFtQjtJQUFuQix1Q0FBbUI7SUFLUixlQUFtQjtJQUFuQix1Q0FBbUI7OztJQVQxQywwQkFBaUI7SUFFYix1RkF1Qks7SUFDVCxpQkFBSzs7O0lBeEJtQyxlQUFPO0lBQVAscUNBQU87Ozs7OztJQVYvRCw2QkFBK0M7SUFDM0MsOEJBQWlFLFVBQUEsYUFBQSxXQUFBO0lBRy9CLHVLQUFTLGVBQUEsdUJBQWUsQ0FBQSxJQUFDO0lBQzNDLG1DQUFvRDtJQUFBLDZCQUFhO0lBQUEsaUJBQVcsRUFBQTtJQUdoRixrRkEwQks7SUFDVCxpQkFBTSxFQUFBO0lBRVYsOEJBQXlEO0lBQTNCLDhNQUF1QixFQUFFLEtBQUM7SUFBQyxpQkFBTSxFQUFBO0lBRXZFLDBCQUFlOzs7SUF0Q2UsZUFBcUM7SUFBckMsd0VBQXFDO0lBSXJDLGVBQXlDO0lBQXpDLDhFQUF5QztJQUdsRCxlQUFVO0lBQVYsa0NBQVU7OztJQWlEZixtQ0FBNkM7SUFDekMsdUNBQTBFO0lBQzlFLGlCQUFVOzs7SUFLRixnQ0FBMEM7SUFBQSxZQUFjO0lBQUEsaUJBQU87OztJQUFyQixlQUFjO0lBQWQsMkNBQWM7Ozs7SUFHeEQsNkJBQXFKO0lBQS9DLGtPQUFTLDZCQUFpQixTQUFDLGVBQUEseUJBQWlCLENBQUEsSUFBRTtJQUNoSixnQ0FBVTtJQUFBLFlBQVk7SUFBQSxpQkFBVztJQUFBLFlBQ3JDOztJQUFBLGlCQUFJOzs7SUFGUSwwQ0FBd0I7SUFDdEIsZUFBWTtJQUFaLGdDQUFZO0lBQVcsZUFDckM7SUFEcUMsaUVBQ3JDOzs7SUFFQSw2QkFBcUUsZUFBQTtJQUN2RCxZQUFZO0lBQUEsaUJBQVc7SUFBQSxZQUNyQzs7SUFBQSxpQkFBSTs7O0lBRFUsZUFBWTtJQUFaLGdDQUFZO0lBQVcsZUFDckM7SUFEcUMsaUVBQ3JDOzs7SUFLSSx3QkFBcUQ7Ozs7SUFGekQsNkJBQTRGO0lBQTVCLHlPQUFTLGVBQUEsNkJBQWlCLENBQUEsSUFBQztJQUN2RixvQ0FBdUI7SUFBQSxZQUFZO0lBQUEsaUJBQVc7SUFBQSxZQUM5Qzs7SUFBQSxnR0FBcUQ7SUFDekQsaUJBQUk7OztJQUZ1QixlQUFZO0lBQVosZ0NBQVk7SUFBVyxlQUM5QztJQUQ4QyxpRUFDOUM7SUFBb0MsZUFBVztJQUFYLGdDQUFXOzs7O0lBSy9DLDhCQUE4QyxZQUFBO0lBQ2QsNkxBQVMsZUFBQSx5QkFBaUIsQ0FBQSxJQUFDO0lBQW9CLFlBQXlCOztJQUFBLGlCQUFJLEVBQUE7OztJQUFyRyxlQUF3QjtJQUF4QiwwQ0FBd0I7SUFBZ0QsZUFBeUI7SUFBekIsdURBQXlCOzs7SUFGNUcsOEJBQWtEO0lBQzlDLG1HQUVLO0lBQ1QsaUJBQUs7OztJQUhtQyxlQUFRO0lBQVIsbUNBQVE7Ozs7SUF0QnBELDZCQUE4SjtJQUcxSixrR0FBK0Q7SUFHL0QsNEZBRUk7SUFFSiw0RkFFSTtJQUdKLDRGQUdJO0lBR0osOEZBSUs7SUFDVCxpQkFBSzs7O0lBMUJ3QyxrSEFBZ0g7SUFHOUgsZUFBYTtJQUFiLGtDQUFhO0lBR2dCLGVBQTRDO0lBQTVDLHlFQUE0QztJQUk5RSxlQUE2QztJQUE3QywwRUFBNkM7SUFLcEMsZUFBK0I7SUFBL0Isd0RBQStCO0lBTTdDLGVBQStCO0lBQS9CLHdEQUErQjs7O0lBdEJ4RCwwQkFBaUI7SUFDYix5RkEwQks7SUFDVCxpQkFBSzs7O0lBM0JtQyxlQUFPO0lBQVAsc0NBQU87OztJQXBCL0QsNkJBQStDO0lBQzNDLCtCQUEwQixjQUFBLFlBQUE7SUFJZCx3QkFBd0I7SUFDNUIsaUJBQUksRUFBQTtJQUdSLCtCQUFrQixXQUFBO0lBQ1IsWUFBc0I7SUFBQSxpQkFBTztJQUNuQyw2QkFBTztJQUFBLFlBQXFCO0lBQUEsaUJBQVEsRUFBQTtJQUd4Qyw0QkFBSyxjQUFBO0lBRUcsK0ZBRVU7SUFDVixvRkE0Qks7SUFDVCxpQkFBTSxFQUFBLEVBQUE7SUFHbEIsMEJBQWU7OztJQXpDRyxlQUFzQjtJQUF0Qiw2Q0FBc0I7SUFDckIsZUFBcUI7SUFBckIsNENBQXFCO0lBS00sZUFBYTtJQUFiLHFDQUFhO0lBR3RDLGVBQVU7SUFBVixrQ0FBVTs7QUQ5Qy9CLE1BQU0sT0FBTyxvQkFBb0I7SUFZN0IsWUFBb0IsaUJBQWtDLEVBQVUsZUFBMEMsRUFDdEYsYUFBK0IsRUFBUyxRQUEwQixFQUFTLFNBQTRCLEVBQ3ZHLFdBQWdDLEVBQVUsT0FBZSxFQUFVLFNBQW9CLEVBQVMsUUFBb0I7UUFGcEgsc0JBQWlCLEdBQWpCLGlCQUFpQixDQUFpQjtRQUFVLG9CQUFlLEdBQWYsZUFBZSxDQUEyQjtRQUN0RixrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFBUyxhQUFRLEdBQVIsUUFBUSxDQUFrQjtRQUFTLGNBQVMsR0FBVCxTQUFTLENBQW1CO1FBQ3ZHLGdCQUFXLEdBQVgsV0FBVyxDQUFxQjtRQUFVLFlBQU8sR0FBUCxPQUFPLENBQVE7UUFBVSxjQUFTLEdBQVQsU0FBUyxDQUFXO1FBQVMsYUFBUSxHQUFSLFFBQVEsQ0FBWTtRQVovSCxRQUFHLEdBQVEsSUFBSSxDQUFDO1FBQ2hCLFdBQU0sR0FBVyxTQUFTLENBQUM7UUFDM0Isb0JBQWUsR0FBWSxLQUFLLENBQUM7UUFDaEMsa0JBQWEsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO1FBRTdDLFlBQU8sR0FBWSxLQUFLLENBQUM7UUFDekIsU0FBSSxHQUFRLEVBQUUsQ0FBQztRQUNmLGdCQUFXLEdBQVcsRUFBRSxDQUFDO1FBQ3pCLGNBQVMsR0FBVyxXQUFXLENBQUM7SUFLaEMsQ0FBQztJQUVELFFBQVE7UUFDSixJQUFJLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxRQUFRLEVBQUUsSUFBSSxJQUFJLENBQUMsR0FBRyxJQUFJLElBQUk7WUFDcEQsT0FBTztRQUVYLElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsYUFBYSxFQUFFLEtBQUssR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUN2RixJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQztRQUVwQixJQUFJLENBQUMsaUJBQWlCO2FBQ2pCLEdBQUcsQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUM7YUFDMUIsU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUFFO1lBQ1gsSUFBSSxDQUFDLENBQUMsT0FBTyxFQUFDO2dCQUNWLElBQUksQ0FBQyxJQUFJLEdBQUcsQ0FBQyxDQUFDLElBQUksQ0FBQztnQkFDbkIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLEdBQUcsQ0FBQyxDQUFDLElBQUksQ0FBQztnQkFDN0IsSUFBSSxDQUFDLGVBQWUsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDO2dCQUV6RCxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7YUFDdkI7WUFFRCxJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQztRQUN6QixDQUFDLENBQUMsQ0FBQztJQUNYLENBQUM7SUFFRCxNQUFNLENBQUMsQ0FBUSxFQUFFLFFBQWE7UUFFMUIsQ0FBQyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBRW5CLElBQUksQ0FBQyxRQUFRLENBQUMsT0FBTztZQUNqQixPQUFPO1FBRVgsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNO1lBQ2hCLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDLEVBQUU7Z0JBQ3JDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQztRQUVwQyxRQUFRLENBQUMsTUFBTSxHQUFHLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQztJQUN2QyxDQUFDO0lBRUQsTUFBTSxDQUFDLElBQVk7UUFDZixJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQztRQUN0QixJQUFJLENBQUMsV0FBVyxHQUFHLEVBQUUsQ0FBQztRQUV0QixJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7SUFDM0IsQ0FBQztJQUVELFlBQVk7UUFDUixJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUM7WUFDckIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDO1lBRWxDLElBQUksQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRTtnQkFDOUIsSUFBSSxDQUFDLFlBQVksZUFBZTtvQkFDNUIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDL0IsQ0FBQyxDQUFDLENBQUM7U0FDTjtJQUNMLENBQUM7SUFFRCxVQUFVLENBQUMsR0FBVztRQUNsQixJQUFJLFFBQVEsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxPQUFPLElBQUksR0FBRyxDQUFDLENBQUM7UUFFckQsSUFBSSxRQUFRLElBQUksSUFBSTtZQUNoQixJQUFJLENBQUMsU0FBUyxHQUFHLFFBQVEsQ0FBQyxLQUFLLENBQUM7SUFDeEMsQ0FBQztJQUVELGFBQWEsQ0FBQyxJQUFJO1FBQ2QsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDNUQsQ0FBQztJQUVELGVBQWU7UUFDWCxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7UUFDOUIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDO0lBQzlCLENBQUM7SUFFRCxhQUFhO1FBQ1QsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUM5QixDQUFDO0lBRUQsYUFBYTtRQUNULElBQUksQ0FBQyxhQUFhLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDcEMsQ0FBQzs7MkdBN0ZRLG9CQUFvQjtzR0FBcEIsb0JBQW9CO1FDZGpDLHVGQXVDZTtRQUVmLHdGQW1EZTtRQUVmLHlCQUFtQzs7UUE5RnBCLG1EQUE4QjtRQXlDOUIsZUFBOEI7UUFBOUIsbURBQThCOzt1RkQzQmhDLG9CQUFvQjtjQUxoQyxTQUFTOzJCQUNJLGNBQWM7Z1RBTWYsR0FBRztrQkFBWCxLQUFLO1lBQ0csTUFBTTtrQkFBZCxLQUFLO1lBQ0csZUFBZTtrQkFBdkIsS0FBSztZQUNJLGFBQWE7a0JBQXRCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBSZW5kZXJlcjIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgSW5mb0RhdGFTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZS9kYXRhLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBJbmZvQXV0aGVudGljYXRpb25TZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZS9hdXRoZW50aWNhdGlvbi5zZXJ2aWNlJztcclxuaW1wb3J0IHsgSW5mb1RoZW1lU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2UvdGhlbWUuc2VydmljZSc7XHJcbmltcG9ydCB7IEluZm9MYXN0U2VhcmNoTW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbC9sYXN0LXNlYXJjaC5tb2RlbCc7XHJcbmltcG9ydCB7IEluZm9TZXNzaW9uTW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbC9zZXNzaW9uLm1vZGVsJztcclxuaW1wb3J0IHsgSW5mb1BsYXRmb3JtTW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbC9wbGF0Zm9ybS5tb2RlbCc7XHJcbmltcG9ydCB7IE5hdmlnYXRpb25TdGFydCwgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6ICdpbmZvLXNpZGViYXInLFxyXG4gICAgdGVtcGxhdGVVcmw6ICcuL3NpZGViYXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gICAgc3R5bGVVcmxzOiBbJy4vc2lkZWJhci5jb21wb25lbnQuc2NzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBJbmZvU2lkZWJhckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcblxyXG4gICAgQElucHV0KCkgYXBpOiBhbnkgPSBudWxsO1xyXG4gICAgQElucHV0KCkgbWV0aG9kOiBzdHJpbmcgPSAnR2V0TWVudSc7XHJcbiAgICBASW5wdXQoKSBhY3RpdmVtZW51Ynl1cmw6IGJvb2xlYW4gPSBmYWxzZTtcclxuICAgIEBPdXRwdXQoKSBvbmNoYW5nZXN0YXRlID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG5cclxuICAgIGxvYWRpbmc6IGJvb2xlYW4gPSBmYWxzZTtcclxuICAgIG1lbnU6IGFueSA9IFtdO1xyXG4gICAgb3BlblN1Ym1lbnU6IHN0cmluZyA9ICcnO1xyXG4gICAgbWVudUF0aXZvOiBzdHJpbmcgPSAnRGFzaGJvYXJkJztcclxuXHJcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9kYXRhQWNlc3NTZXJ2aWNlOiBJbmZvRGF0YVNlcnZpY2UsIHByaXZhdGUgX2F1dGhlbnRpY2F0aW9uOiBJbmZvQXV0aGVudGljYXRpb25TZXJ2aWNlLCBcclxuICAgICAgICAgICAgICAgIHByaXZhdGUgX3RoZW1lU2VydmljZTogSW5mb1RoZW1lU2VydmljZSwgcHVibGljIF9zZXNzaW9uOiBJbmZvU2Vzc2lvbk1vZGVsLCBwdWJsaWMgX3BsYXRmb3JtOiBJbmZvUGxhdGZvcm1Nb2RlbCxcclxuICAgICAgICAgICAgICAgIHByaXZhdGUgX2xhc3RTZWFyY2g6IEluZm9MYXN0U2VhcmNoTW9kZWwsIHByaXZhdGUgX3JvdXRlcjogUm91dGVyLCBwcml2YXRlIF9yZW5kZXJlcjogUmVuZGVyZXIyLCBwdWJsaWMgX2VsZW1lbnQ6IEVsZW1lbnRSZWYpIHtcclxuICAgIH1cclxuXHJcbiAgICBuZ09uSW5pdCgpIHtcclxuICAgICAgICBpZiAoIXRoaXMuX2F1dGhlbnRpY2F0aW9uLmlzTG9nZ2VkKCkgfHwgdGhpcy5hcGkgPT0gbnVsbClcclxuICAgICAgICAgICAgcmV0dXJuO1xyXG5cclxuICAgICAgICB0aGlzLl9yZW5kZXJlci5hZGRDbGFzcyh0aGlzLl9lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsICd1eGMnICsgdGhpcy5fcGxhdGZvcm0uQ29uZmlnLnV4KTtcclxuICAgICAgICB0aGlzLmxvYWRpbmcgPSB0cnVlO1xyXG5cclxuICAgICAgICB0aGlzLl9kYXRhQWNlc3NTZXJ2aWNlXHJcbiAgICAgICAgICAgIC5nZXQodGhpcy5hcGksIHRoaXMubWV0aG9kKVxyXG4gICAgICAgICAgICAuc3Vic2NyaWJlKHIgPT4ge1xyXG4gICAgICAgICAgICAgICAgaWYgKHIuc3VjY2Vzcyl7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5tZW51ID0gci5kYXRhO1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX3BsYXRmb3JtLk1lbnUgPSByLmRhdGE7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5fYXV0aGVudGljYXRpb24uZGVmaW5lUGFnaW5hQXRpdmEodGhpcy5fcm91dGVyLnVybCk7XHJcblxyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMubW9uaXRvcmFyVXJsKCk7XHJcbiAgICAgICAgICAgICAgICB9XHJcblxyXG4gICAgICAgICAgICAgICAgdGhpcy5sb2FkaW5nID0gZmFsc2U7XHJcbiAgICAgICAgICAgIH0pO1xyXG4gICAgfVxyXG5cclxuICAgIHRvZ2dsZShlOiBFdmVudCwgbWVudUl0ZW06IGFueSkge1xyXG5cclxuICAgICAgICBlLnByZXZlbnREZWZhdWx0KCk7XHJcblxyXG4gICAgICAgIGlmICghbWVudUl0ZW0uRW5hYmxlZClcclxuICAgICAgICAgICAgcmV0dXJuO1xyXG5cclxuICAgICAgICBpZiAoIW1lbnVJdGVtLkFjdGl2ZSlcclxuICAgICAgICAgICAgZm9yIChsZXQgaSA9IDA7IGkgPCB0aGlzLm1lbnUubGVuZ3RoOyBpKyspXHJcbiAgICAgICAgICAgICAgICB0aGlzLm1lbnVbaV0uQWN0aXZlID0gZmFsc2U7XHJcblxyXG4gICAgICAgIG1lbnVJdGVtLkFjdGl2ZSA9ICFtZW51SXRlbS5BY3RpdmU7XHJcbiAgICB9XHJcblxyXG4gICAgYWNjZXNzKG1lbnU6IHN0cmluZyl7XHJcbiAgICAgICAgdGhpcy5tZW51QXRpdm8gPSBtZW51O1xyXG4gICAgICAgIHRoaXMub3BlblN1Ym1lbnUgPSAnJztcclxuICAgICAgICBcclxuICAgICAgICB0aGlzLnJlc2V0TGFzdFNlYXJjaCgpO1xyXG4gICAgfVxyXG5cclxuICAgIG1vbml0b3JhclVybCgpe1xyXG4gICAgICAgIGlmICh0aGlzLmFjdGl2ZW1lbnVieXVybCl7XHJcbiAgICAgICAgICAgIHRoaXMuYXRpdmFyTWVudSh0aGlzLl9yb3V0ZXIudXJsKTtcclxuXHJcbiAgICAgICAgICAgIHRoaXMuX3JvdXRlci5ldmVudHMuc3Vic2NyaWJlKGUgPT4ge1xyXG4gICAgICAgICAgICAgICAgaWYgKGUgaW5zdGFuY2VvZiBOYXZpZ2F0aW9uU3RhcnQpXHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5hdGl2YXJNZW51KGUudXJsKTtcclxuICAgICAgICAgICAgfSk7XHJcbiAgICAgICAgfVxyXG4gICAgfVxyXG5cclxuICAgIGF0aXZhck1lbnUodXJsOiBzdHJpbmcpe1xyXG4gICAgICAgIGxldCBpdGVtTWVudSA9IHRoaXMubWVudS5maW5kKG0gPT4gbS5Sb3V0aW5nID09IHVybCk7XHJcblxyXG4gICAgICAgIGlmIChpdGVtTWVudSAhPSBudWxsKVxyXG4gICAgICAgICAgICB0aGlzLm1lbnVBdGl2byA9IGl0ZW1NZW51LlRpdGxlO1xyXG4gICAgfVxyXG5cclxuICAgIHRvZ2dsZVN1Ym1lbnUobWVudSkge1xyXG4gICAgICAgIHRoaXMub3BlblN1Ym1lbnUgPSB0aGlzLm9wZW5TdWJtZW51ID09IG1lbnUgPyAnJyA6IG1lbnU7XHJcbiAgICB9XHJcblxyXG4gICAgcmVzZXRMYXN0U2VhcmNoKCl7XHJcbiAgICAgICAgdGhpcy5fbGFzdFNlYXJjaC5tb2RlbCA9IG51bGw7XHJcbiAgICAgICAgdGhpcy5fbGFzdFNlYXJjaC51cmwgPSAnJztcclxuICAgIH1cclxuXHJcbiAgICBjaGFuZ2VTaWRlYmFyKCkge1xyXG4gICAgICAgIHRoaXMub25jaGFuZ2VzdGF0ZS5lbWl0KCk7XHJcbiAgICB9XHJcblxyXG4gICAgdG9nZ2xlU2lkZWJhcigpe1xyXG4gICAgICAgIHRoaXMuX3RoZW1lU2VydmljZS5zZXRNZW51TWluKCk7XHJcbiAgICB9XHJcbn0iLCI8bmctY29udGFpbmVyICpuZ0lmPVwiX3BsYXRmb3JtLkNvbmZpZy51eCA+PSAzXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwic2l0ZS1zaWRlYmFyXCIgW25nQ2xhc3NdPVwieyAnb3BlbmVkJzogb3BlblN1Ym1lbnUgfVwiID5cclxuICAgICAgICA8bmF2PlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwibWFpbi1tZW51XCI+XHJcbiAgICAgICAgICAgICAgICA8YSBpZD1cIm1lbnUtbWluLWljb25cIiAoY2xpY2spPVwidG9nZ2xlU2lkZWJhcigpXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uIFtuZ0NsYXNzXT1cInsgJ21pbic6IF9wbGF0Zm9ybS5NZW51TWluICB9XCI+Y2hldnJvbl9yaWdodDwvbWF0LWljb24+XHJcbiAgICAgICAgICAgICAgICA8L2E+XHJcblxyXG4gICAgICAgICAgICAgICAgPHVsICpuZ0lmPVwibWVudVwiPlxyXG4gICAgXHJcbiAgICAgICAgICAgICAgICAgICAgPGxpIGNsYXNzPVwibWVudS1pdGVtXCIgKm5nRm9yPVwibGV0IG0gb2YgbWVudVwiIFtuZ0NsYXNzXT1cInsgJ2FjdGl2ZSc6IG1lbnVBdGl2byA9PSBtLlRpdGxlLCAnZGlzYWJsZWQnOiAhbS5FbmFibGVkLCAnb3BlbmVkJzogb3BlblN1Ym1lbnUgPT0gbS5UaXRsZSB9XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8YSAqbmdJZj1cIm0uU3ViID09IG51bGxcIiBbcm91dGVyTGlua109XCJtLlJvdXRpbmdcIiBjbGFzcz1cIml0ZW0tbGlua1wiIChjbGljayk9XCJjaGFuZ2VTaWRlYmFyKCk7YWNjZXNzKG0uVGl0bGUpO3Rvb2x0aXAuaGlkZSgpO1wiID5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxtYXQtaWNvbiAjdG9vbHRpcD1cIm1hdFRvb2x0aXBcIiBbbWF0VG9vbHRpcF09XCJtLlRpdGxlIHwgdHJhbnNsYXRlXCIgW21hdFRvb2x0aXBEaXNhYmxlZF09XCIhX3BsYXRmb3JtLk1lbnVNaW5cIiBtYXRUb29sdGlwUG9zaXRpb249XCJyaWdodFwiIFttYXRUb29sdGlwU2hvd0RlbGF5XT1cIjYwMFwiIG1hdFRvb2x0aXBDbGFzcz1cIm1hdC10b29sdGlwXCI+e3sgbS5JY29uIH19PC9tYXQtaWNvbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz1cInRpdGxlXCI+e3sgbS5UaXRsZSB8IHRyYW5zbGF0ZSB9fTwvbGFiZWw+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibS5TdWIgIT0gbnVsbFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9XCJpdGVtLWxpbmtcIiAoY2xpY2spPVwidG9nZ2xlU3VibWVudShtLlRpdGxlKTt0b29sdGlwLmhpZGUoKTtcIiA+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uICN0b29sdGlwPVwibWF0VG9vbHRpcFwiIFttYXRUb29sdGlwXT1cIm0uVGl0bGUgfCB0cmFuc2xhdGVcIiBbbWF0VG9vbHRpcERpc2FibGVkXT1cIiFfcGxhdGZvcm0uTWVudU1pblwiIG1hdFRvb2x0aXBQb3NpdGlvbj1cInJpZ2h0XCIgW21hdFRvb2x0aXBTaG93RGVsYXldPVwiNjAwXCIgbWF0VG9vbHRpcENsYXNzPVwibWF0LXRvb2x0aXBcIiA+e3sgbS5JY29uIH19PC9tYXQtaWNvbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9XCJ0aXRsZVwiPnt7IG0uVGl0bGUgfCB0cmFuc2xhdGUgfX08L2xhYmVsPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwic3ViLW1lbnVcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aDQ+e3sgbS5UaXRsZSB8IHRyYW5zbGF0ZSB9fTwvaDQ+XHJcbiAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dWw+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaSAqbmdGb3I9XCJsZXQgcyBvZiBtLlN1YlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgW3JvdXRlckxpbmtdPVwicy5Sb3V0aW5nXCIgY2xhc3M9XCJpdGVtLWxpbmtcIiAoY2xpY2spPVwiY2hhbmdlU2lkZWJhcigpO2FjY2VzcyhtLlRpdGxlKTtcIiA+e3sgcy5UaXRsZSB8IHRyYW5zbGF0ZSB9fTwvYT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3VsPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvbGk+XHJcbiAgICAgICAgICAgICAgICA8L3VsPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L25hdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwic3ViLW1lbnUtb3ZlcmxheVwiIChjbGljayk9XCJvcGVuU3VibWVudSA9ICcnXCI+PC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuPC9uZy1jb250YWluZXI+XHJcblxyXG48bmctY29udGFpbmVyICpuZ0lmPVwiX3BsYXRmb3JtLkNvbmZpZy51eCA8PSAyXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwic2l0ZS1zaWRlYmFyXCI+XHJcblxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJsb2dvXCI+XHJcbiAgICAgICAgICAgIDxhIGhyZWY9XCIvXCIgPlxyXG4gICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJsb2dvLWltZ1wiPjwvaT5cclxuICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgIDwvZGl2PlxyXG5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mb1wiPlxyXG4gICAgICAgICAgICA8c3Bhbj57eyBfc2Vzc2lvbi5Vc3VhcmlvIH19PC9zcGFuPlxyXG4gICAgICAgICAgICA8c21hbGw+e3sgX3Nlc3Npb24uUGVyZmlsIH19PC9zbWFsbD5cclxuICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgPG5hdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm1haW4tbWVudVwiPlxyXG4gICAgICAgICAgICAgICAgPHNlY3Rpb24gY2xhc3M9XCJsb2FkaW5nLWJhclwiICpuZ0lmPVwibG9hZGluZ1wiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxtYXQtcHJvZ3Jlc3MtYmFyIGNvbG9yPVwicHJpbWFyeVwiIG1vZGU9XCJpbmRldGVybWluYXRlXCI+PC9tYXQtcHJvZ3Jlc3MtYmFyPlxyXG4gICAgICAgICAgICAgICAgPC9zZWN0aW9uPlxyXG4gICAgICAgICAgICAgICAgPHVsICpuZ0lmPVwibWVudVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxsaSBjbGFzcz1cIm1lbnUtaXRlbVwiICpuZ0Zvcj1cImxldCBtIG9mIG1lbnVcIiBbbmdDbGFzc109XCJ7ICdoYXMtc3ViJzogbS5TdWIgIT0gbnVsbCwgJ2FjdGl2ZSc6IG0uQWN0aXZlLCAnbWVudS1pdGVtLWdyb3VwJzogbS5Hcm91cCwgJ2Rpc2FibGVkJzogIW0uRW5hYmxlZCB9XCI+XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8IS0tIEdydXBvcyAtLT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJncm91cC10aXRsZVwiICpuZ0lmPVwibS5Hcm91cFwiPnt7IG0uVGl0bGUgfX0gPC9zcGFuPlxyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPCEtLSBJdGVucyAtLT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiNcIiBbcm91dGVyTGlua109XCJtLlJvdXRpbmdcIiBjbGFzcz1cIml0ZW0tbGlua1wiICpuZ0lmPVwiIW0uR3JvdXAgJiYgbS5TdWIgPT0gbnVsbCAmJiBtLkVuYWJsZWRcIiAoY2xpY2spPVwidG9nZ2xlKCRldmVudCwgbSk7cmVzZXRMYXN0U2VhcmNoKCk7XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24+e3sgbS5JY29uIH19PC9tYXQtaWNvbj57eyBtLlRpdGxlIHwgdHJhbnNsYXRlIH19XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxhIGNsYXNzPVwiaXRlbS1saW5rXCIgKm5nSWY9XCIhbS5Hcm91cCAmJiBtLlN1YiA9PSBudWxsICYmICFtLkVuYWJsZWRcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxtYXQtaWNvbj57eyBtLkljb24gfX08L21hdC1pY29uPnt7IG0uVGl0bGUgfCB0cmFuc2xhdGUgfX0gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gSXRlbSBjb20gc3VibWVudSAtLT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiNcIiBjbGFzcz1cIml0ZW0tbGlua1wiICpuZ0lmPVwiIW0uR3JvdXAgJiYgbS5TdWIgIT0gbnVsbFwiIChjbGljayk9XCJ0b2dnbGUoJGV2ZW50LCBtKVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaWNvblwiPnt7IG0uSWNvbiB9fTwvbWF0LWljb24+e3sgbS5UaXRsZSB8IHRyYW5zbGF0ZSB9fVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJjYXJldCBmYSBmYS1hbmdsZS1yaWdodFwiICpuZ0lmPVwibS5TdWJcIj48L2k+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gU3ViIE1lbnUgLS0+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDx1bCBjbGFzcz1cInN1YlwiICpuZ0lmPVwiIW0uR3JvdXAgJiYgbS5TdWIgIT0gbnVsbFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxpIGNsYXNzPVwibWVudS1pdGVtXCIgKm5nRm9yPVwibGV0IHMgb2YgbS5TdWJcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBbcm91dGVyTGlua109XCJzLlJvdXRpbmdcIiAoY2xpY2spPVwicmVzZXRMYXN0U2VhcmNoKClcIiBjbGFzcz1cIml0ZW0tbGlua1wiID57eyBzLlRpdGxlIHwgdHJhbnNsYXRlIH19PC9hPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC91bD5cclxuICAgICAgICAgICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICAgICAgPC91bD5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9uYXY+XHJcbiAgICA8L2Rpdj5cclxuPC9uZy1jb250YWluZXI+XHJcblxyXG48ZGl2IGNsYXNzPVwic2lkZWJhci1vdmVybGF5XCI+PC9kaXY+Il19
|