info-library 2.15.1-beta → 3.0.0-beta
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 +7 -7
- package/controls/autocomplete/autocomplete.component.d.ts +52 -51
- package/controls/big-checkbox/big-checkbox.component.d.ts +41 -41
- package/controls/card/card.component.d.ts +16 -16
- package/controls/card-menu/card-menu.component.d.ts +23 -23
- package/controls/checkbox/checkbox.component.d.ts +27 -27
- package/controls/chips/chips.component.d.ts +23 -23
- package/controls/date/date.component.d.ts +38 -37
- package/controls/date-month/date-month.component.d.ts +40 -39
- package/controls/editor/editor.component.d.ts +40 -40
- package/controls/grid/grid.component.d.ts +172 -172
- package/controls/input/input.component.d.ts +47 -37
- package/controls/input-list/input-list.component.d.ts +29 -29
- package/controls/list-checkbox/list-checkbox.component.d.ts +26 -26
- package/controls/message/message.component.d.ts +10 -10
- package/controls/multi-select/multi-select.component.d.ts +39 -37
- package/controls/paginator/paginator.component.d.ts +25 -25
- package/controls/select/select.component.d.ts +42 -41
- package/controls/timeline/timeline.component.d.ts +17 -17
- package/directives/mask.directive.d.ts +24 -24
- package/directives/unmask.directive.d.ts +12 -11
- package/enum/dialog-buttons.enum.d.ts +7 -7
- package/enum/index.d.ts +3 -3
- package/enum/modal-action.enum.d.ts +10 -10
- package/enum/page-action.enum.d.ts +8 -8
- package/esm2022/controls/alert/alert.component.mjs +72 -0
- package/esm2022/controls/autocomplete/autocomplete.component.mjs +265 -0
- package/esm2022/controls/big-checkbox/big-checkbox.component.mjs +300 -0
- package/esm2022/controls/card/card.component.mjs +83 -0
- package/esm2022/controls/card-menu/card-menu.component.mjs +143 -0
- package/esm2022/controls/checkbox/checkbox.component.mjs +93 -0
- package/esm2022/controls/chips/chips.component.mjs +114 -0
- package/esm2022/controls/date/date.component.mjs +173 -0
- package/esm2022/controls/date-month/date-month.component.mjs +181 -0
- package/esm2022/controls/editor/editor.component.mjs +139 -0
- package/esm2022/controls/grid/grid.component.mjs +1818 -0
- package/esm2022/controls/input/input.component.mjs +389 -0
- package/esm2022/controls/input-list/input-list.component.mjs +259 -0
- package/{esm2020 → esm2022}/controls/list-checkbox/list-checkbox.component.mjs +242 -238
- package/esm2022/controls/message/message.component.mjs +48 -0
- package/esm2022/controls/multi-select/multi-select.component.mjs +174 -0
- package/esm2022/controls/paginator/paginator.component.mjs +177 -0
- package/esm2022/controls/select/select.component.mjs +189 -0
- package/esm2022/controls/timeline/timeline.component.mjs +116 -0
- package/esm2022/directives/mask.directive.mjs +134 -0
- package/esm2022/directives/unmask.directive.mjs +35 -0
- package/{esm2020 → esm2022}/enum/dialog-buttons.enum.mjs +8 -8
- package/{esm2020 → esm2022}/enum/index.mjs +3 -3
- package/{esm2020 → esm2022}/enum/modal-action.enum.mjs +11 -11
- package/{esm2020 → esm2022}/enum/page-action.enum.mjs +9 -9
- package/{esm2020 → esm2022}/global-config.mjs +3 -3
- package/{esm2020 → esm2022}/info-library.mjs +4 -4
- package/esm2022/info-library.module.mjs +283 -0
- package/esm2022/layouts/dialog/dialog.component.mjs +192 -0
- package/esm2022/layouts/filter/filter.component.mjs +179 -0
- package/esm2022/layouts/loading/loading.component.mjs +40 -0
- package/esm2022/layouts/main/main.component.mjs +305 -0
- package/esm2022/layouts/modal/modal.component.mjs +273 -0
- package/esm2022/layouts/pagebar/pagebar.component.mjs +432 -0
- package/esm2022/layouts/sidebar/sidebar.component.mjs +447 -0
- package/esm2022/layouts/topbar/topbar.component.mjs +1032 -0
- package/esm2022/layouts/topmenu/topmenu.component.mjs +173 -0
- package/esm2022/model/app-config.model.mjs +14 -0
- package/esm2022/model/data-access.model.mjs +37 -0
- package/esm2022/model/dialog-result.model.mjs +9 -0
- package/esm2022/model/dialog.model.mjs +15 -0
- package/esm2022/model/form-prop.model.mjs +37 -0
- package/esm2022/model/grid-button.model.mjs +26 -0
- package/{esm2020 → esm2022}/model/index.mjs +14 -14
- package/esm2022/model/last-search.model.mjs +7 -0
- package/esm2022/model/login.model.mjs +11 -0
- package/esm2022/model/method-grid-button.model.mjs +11 -0
- package/esm2022/model/notification.model.mjs +13 -0
- package/{esm2020 → esm2022}/model/pagebar-buttons.model.mjs +15 -15
- package/esm2022/model/permission.model.mjs +6 -0
- package/esm2022/model/platform.model.mjs +20 -0
- package/esm2022/model/session.model.mjs +27 -0
- package/{esm2020 → esm2022}/pipe/index.mjs +2 -2
- package/esm2022/pipe/mask.pipe.mjs +38 -0
- package/esm2022/pipe/translate.pipe.mjs +27 -0
- package/{esm2020 → esm2022}/public_api.mjs +37 -36
- package/esm2022/service/authentication.service.mjs +411 -0
- package/esm2022/service/configuration.service.mjs +90 -0
- package/esm2022/service/data.service.mjs +129 -0
- package/{esm2020 → esm2022}/service/index.mjs +5 -5
- package/esm2022/service/theme.service.mjs +89 -0
- package/esm2022/service/translate.service.mjs +57 -0
- package/esm2022/utils/utilities.mjs +189 -0
- package/fesm2022/info-library.mjs +9364 -0
- package/fesm2022/info-library.mjs.map +1 -0
- package/global-config.d.ts +3 -3
- package/index.d.ts +5 -5
- package/info-library-3.0.0-beta.tgz +0 -0
- package/info-library.module.d.ts +61 -60
- package/layouts/dialog/dialog.component.d.ts +29 -29
- package/layouts/filter/filter.component.d.ts +24 -0
- package/layouts/loading/loading.component.d.ts +8 -8
- package/layouts/main/main.component.d.ts +60 -56
- package/layouts/modal/modal.component.d.ts +40 -39
- package/layouts/pagebar/pagebar.component.d.ts +45 -45
- package/layouts/sidebar/sidebar.component.d.ts +40 -40
- package/layouts/topbar/topbar.component.d.ts +69 -66
- package/layouts/topmenu/topmenu.component.d.ts +34 -34
- package/model/app-config.model.d.ts +13 -11
- package/model/data-access.model.d.ts +12 -12
- package/model/dialog-result.model.d.ts +6 -6
- package/model/dialog.model.d.ts +14 -14
- package/model/form-prop.model.d.ts +12 -12
- package/model/grid-button.model.d.ts +18 -18
- package/model/index.d.ts +14 -14
- package/model/last-search.model.d.ts +6 -6
- package/model/login.model.d.ts +6 -6
- package/model/method-grid-button.model.d.ts +6 -6
- package/model/notification.model.d.ts +12 -12
- package/model/pagebar-buttons.model.d.ts +10 -10
- package/model/permission.model.d.ts +5 -5
- package/model/platform.model.d.ts +16 -16
- package/model/session.model.d.ts +27 -22
- package/package.json +5 -11
- package/pipe/index.d.ts +2 -2
- package/pipe/mask.pipe.d.ts +8 -8
- package/pipe/translate.pipe.d.ts +10 -10
- package/public_api.d.ts +34 -33
- package/service/authentication.service.d.ts +63 -61
- package/service/configuration.service.d.ts +17 -14
- package/service/data.service.d.ts +41 -39
- package/service/index.d.ts +5 -5
- package/service/theme.service.d.ts +16 -16
- package/service/translate.service.d.ts +16 -16
- package/utils/utilities.d.ts +38 -27
- package/esm2020/controls/alert/alert.component.mjs +0 -74
- package/esm2020/controls/autocomplete/autocomplete.component.mjs +0 -258
- package/esm2020/controls/big-checkbox/big-checkbox.component.mjs +0 -298
- package/esm2020/controls/card/card.component.mjs +0 -77
- package/esm2020/controls/card-menu/card-menu.component.mjs +0 -145
- package/esm2020/controls/checkbox/checkbox.component.mjs +0 -93
- package/esm2020/controls/chips/chips.component.mjs +0 -113
- package/esm2020/controls/date/date.component.mjs +0 -141
- package/esm2020/controls/date-month/date-month.component.mjs +0 -148
- package/esm2020/controls/editor/editor.component.mjs +0 -135
- package/esm2020/controls/grid/grid.component.mjs +0 -1800
- package/esm2020/controls/input/input.component.mjs +0 -314
- package/esm2020/controls/input-list/input-list.component.mjs +0 -258
- package/esm2020/controls/message/message.component.mjs +0 -50
- package/esm2020/controls/multi-select/multi-select.component.mjs +0 -161
- package/esm2020/controls/paginator/paginator.component.mjs +0 -178
- package/esm2020/controls/select/select.component.mjs +0 -180
- package/esm2020/controls/timeline/timeline.component.mjs +0 -117
- package/esm2020/directives/mask.directive.mjs +0 -125
- package/esm2020/directives/unmask.directive.mjs +0 -28
- package/esm2020/info-library.module.mjs +0 -278
- package/esm2020/layouts/dialog/dialog.component.mjs +0 -188
- package/esm2020/layouts/loading/loading.component.mjs +0 -42
- package/esm2020/layouts/main/main.component.mjs +0 -258
- package/esm2020/layouts/modal/modal.component.mjs +0 -258
- package/esm2020/layouts/pagebar/pagebar.component.mjs +0 -404
- package/esm2020/layouts/sidebar/sidebar.component.mjs +0 -395
- package/esm2020/layouts/topbar/topbar.component.mjs +0 -868
- package/esm2020/layouts/topmenu/topmenu.component.mjs +0 -165
- package/esm2020/model/app-config.model.mjs +0 -14
- package/esm2020/model/data-access.model.mjs +0 -35
- package/esm2020/model/dialog-result.model.mjs +0 -8
- package/esm2020/model/dialog.model.mjs +0 -16
- package/esm2020/model/form-prop.model.mjs +0 -35
- package/esm2020/model/grid-button.model.mjs +0 -21
- package/esm2020/model/last-search.model.mjs +0 -9
- package/esm2020/model/login.model.mjs +0 -9
- package/esm2020/model/method-grid-button.model.mjs +0 -9
- package/esm2020/model/notification.model.mjs +0 -9
- package/esm2020/model/permission.model.mjs +0 -3
- package/esm2020/model/platform.model.mjs +0 -21
- package/esm2020/model/session.model.mjs +0 -8
- package/esm2020/pipe/mask.pipe.mjs +0 -34
- package/esm2020/pipe/translate.pipe.mjs +0 -26
- package/esm2020/service/authentication.service.mjs +0 -358
- package/esm2020/service/configuration.service.mjs +0 -59
- package/esm2020/service/data.service.mjs +0 -112
- package/esm2020/service/theme.service.mjs +0 -79
- package/esm2020/service/translate.service.mjs +0 -53
- package/esm2020/utils/utilities.mjs +0 -142
- package/fesm2015/info-library.mjs +0 -9312
- package/fesm2015/info-library.mjs.map +0 -1
- package/fesm2020/info-library.mjs +0 -8462
- package/fesm2020/info-library.mjs.map +0 -1
|
@@ -0,0 +1,447 @@
|
|
|
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_8_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_8_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_8_li_1_ng_container_2_li_14_Template(rf, ctx) { if (rf & 1) {
|
|
46
|
+
const _r17 = i0.ɵɵgetCurrentView();
|
|
47
|
+
i0.ɵɵelementStart(0, "li")(1, "a", 10);
|
|
48
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_li_14_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r17); const m_r4 = i0.ɵɵnextContext(2).$implicit; const ctx_r16 = i0.ɵɵnextContext(3); ctx_r16.changeSidebar(); return i0.ɵɵresetView(ctx_r16.access(m_r4.Title)); });
|
|
49
|
+
i0.ɵɵtext(2);
|
|
50
|
+
i0.ɵɵpipe(3, "translate");
|
|
51
|
+
i0.ɵɵelementEnd()();
|
|
52
|
+
} if (rf & 2) {
|
|
53
|
+
const s_r15 = ctx.$implicit;
|
|
54
|
+
i0.ɵɵadvance(1);
|
|
55
|
+
i0.ɵɵproperty("routerLink", s_r15.Routing);
|
|
56
|
+
i0.ɵɵadvance(1);
|
|
57
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, s_r15.Title));
|
|
58
|
+
} }
|
|
59
|
+
function InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_ng_container_15_div_1_li_5_Template(rf, ctx) { if (rf & 1) {
|
|
60
|
+
const _r24 = i0.ɵɵgetCurrentView();
|
|
61
|
+
i0.ɵɵelementStart(0, "li")(1, "a", 10);
|
|
62
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_ng_container_15_div_1_li_5_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r24); const m_r4 = i0.ɵɵnextContext(4).$implicit; const ctx_r23 = i0.ɵɵnextContext(3); ctx_r23.changeSidebar(); return i0.ɵɵresetView(ctx_r23.access(m_r4.Title)); });
|
|
63
|
+
i0.ɵɵtext(2);
|
|
64
|
+
i0.ɵɵpipe(3, "translate");
|
|
65
|
+
i0.ɵɵelementEnd()();
|
|
66
|
+
} if (rf & 2) {
|
|
67
|
+
const s_r22 = ctx.$implicit;
|
|
68
|
+
i0.ɵɵadvance(1);
|
|
69
|
+
i0.ɵɵproperty("routerLink", s_r22.Routing);
|
|
70
|
+
i0.ɵɵadvance(1);
|
|
71
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, s_r22.Title));
|
|
72
|
+
} }
|
|
73
|
+
function InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_ng_container_15_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
74
|
+
i0.ɵɵelementStart(0, "div", 18)(1, "h5");
|
|
75
|
+
i0.ɵɵtext(2);
|
|
76
|
+
i0.ɵɵpipe(3, "translate");
|
|
77
|
+
i0.ɵɵelementEnd();
|
|
78
|
+
i0.ɵɵelementStart(4, "ul");
|
|
79
|
+
i0.ɵɵtemplate(5, InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_ng_container_15_div_1_li_5_Template, 4, 4, "li", 16);
|
|
80
|
+
i0.ɵɵelementEnd()();
|
|
81
|
+
} if (rf & 2) {
|
|
82
|
+
const g_r20 = ctx.$implicit;
|
|
83
|
+
i0.ɵɵadvance(2);
|
|
84
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, g_r20.Title));
|
|
85
|
+
i0.ɵɵadvance(3);
|
|
86
|
+
i0.ɵɵproperty("ngForOf", g_r20.Sub);
|
|
87
|
+
} }
|
|
88
|
+
function InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_ng_container_15_Template(rf, ctx) { if (rf & 1) {
|
|
89
|
+
i0.ɵɵelementContainerStart(0);
|
|
90
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_ng_container_15_div_1_Template, 6, 4, "div", 17);
|
|
91
|
+
i0.ɵɵelementContainerEnd();
|
|
92
|
+
} if (rf & 2) {
|
|
93
|
+
const m_r4 = i0.ɵɵnextContext(2).$implicit;
|
|
94
|
+
i0.ɵɵadvance(1);
|
|
95
|
+
i0.ɵɵproperty("ngForOf", m_r4.SubGroup);
|
|
96
|
+
} }
|
|
97
|
+
function InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
98
|
+
const _r29 = i0.ɵɵgetCurrentView();
|
|
99
|
+
i0.ɵɵelementContainerStart(0);
|
|
100
|
+
i0.ɵɵelementStart(1, "a", 14);
|
|
101
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r29); const _r12 = i0.ɵɵreference(3); const m_r4 = i0.ɵɵnextContext().$implicit; const ctx_r27 = i0.ɵɵnextContext(3); ctx_r27.toggleSubmenu(m_r4.Title); return i0.ɵɵresetView(_r12.hide()); });
|
|
102
|
+
i0.ɵɵelementStart(2, "mat-icon", 11, 12);
|
|
103
|
+
i0.ɵɵpipe(4, "translate");
|
|
104
|
+
i0.ɵɵtext(5);
|
|
105
|
+
i0.ɵɵelementEnd();
|
|
106
|
+
i0.ɵɵelementStart(6, "label", 13);
|
|
107
|
+
i0.ɵɵtext(7);
|
|
108
|
+
i0.ɵɵpipe(8, "translate");
|
|
109
|
+
i0.ɵɵelementEnd()();
|
|
110
|
+
i0.ɵɵelementStart(9, "div", 15)(10, "h4");
|
|
111
|
+
i0.ɵɵtext(11);
|
|
112
|
+
i0.ɵɵpipe(12, "translate");
|
|
113
|
+
i0.ɵɵelementEnd();
|
|
114
|
+
i0.ɵɵelementStart(13, "ul");
|
|
115
|
+
i0.ɵɵtemplate(14, InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_li_14_Template, 4, 4, "li", 16);
|
|
116
|
+
i0.ɵɵelementEnd();
|
|
117
|
+
i0.ɵɵtemplate(15, InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_ng_container_15_Template, 2, 1, "ng-container", 0);
|
|
118
|
+
i0.ɵɵelementEnd();
|
|
119
|
+
i0.ɵɵelementContainerEnd();
|
|
120
|
+
} if (rf & 2) {
|
|
121
|
+
const m_r4 = i0.ɵɵnextContext().$implicit;
|
|
122
|
+
const ctx_r6 = i0.ɵɵnextContext(3);
|
|
123
|
+
i0.ɵɵadvance(2);
|
|
124
|
+
i0.ɵɵproperty("matTooltip", i0.ɵɵpipeBind1(4, 8, m_r4.Title))("matTooltipDisabled", !ctx_r6._platform.MenuMin)("matTooltipShowDelay", 600);
|
|
125
|
+
i0.ɵɵadvance(3);
|
|
126
|
+
i0.ɵɵtextInterpolate(m_r4.Icon);
|
|
127
|
+
i0.ɵɵadvance(2);
|
|
128
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 10, m_r4.Title));
|
|
129
|
+
i0.ɵɵadvance(4);
|
|
130
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 12, m_r4.Title));
|
|
131
|
+
i0.ɵɵadvance(3);
|
|
132
|
+
i0.ɵɵproperty("ngForOf", m_r4.Sub);
|
|
133
|
+
i0.ɵɵadvance(1);
|
|
134
|
+
i0.ɵɵproperty("ngIf", m_r4.SubGroup != null);
|
|
135
|
+
} }
|
|
136
|
+
const _c0 = function (a0, a1, a2) { return { "active": a0, "disabled": a1, "opened": a2 }; };
|
|
137
|
+
function InfoSidebarComponent_ng_container_0_ul_8_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
138
|
+
i0.ɵɵelementStart(0, "li", 8);
|
|
139
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_0_ul_8_li_1_a_1_Template, 8, 10, "a", 9);
|
|
140
|
+
i0.ɵɵtemplate(2, InfoSidebarComponent_ng_container_0_ul_8_li_1_ng_container_2_Template, 16, 14, "ng-container", 0);
|
|
141
|
+
i0.ɵɵelementEnd();
|
|
142
|
+
} if (rf & 2) {
|
|
143
|
+
const m_r4 = ctx.$implicit;
|
|
144
|
+
const ctx_r3 = i0.ɵɵnextContext(3);
|
|
145
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction3(3, _c0, ctx_r3.menuAtivo == m_r4.Title, !m_r4.Enabled, ctx_r3.openSubmenu == m_r4.Title));
|
|
146
|
+
i0.ɵɵadvance(1);
|
|
147
|
+
i0.ɵɵproperty("ngIf", m_r4.Sub == null);
|
|
148
|
+
i0.ɵɵadvance(1);
|
|
149
|
+
i0.ɵɵproperty("ngIf", m_r4.Sub != null || m_r4.SubGroup != null);
|
|
150
|
+
} }
|
|
151
|
+
function InfoSidebarComponent_ng_container_0_ul_8_Template(rf, ctx) { if (rf & 1) {
|
|
152
|
+
i0.ɵɵelementStart(0, "ul");
|
|
153
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_0_ul_8_li_1_Template, 3, 7, "li", 7);
|
|
154
|
+
i0.ɵɵelementEnd();
|
|
155
|
+
} if (rf & 2) {
|
|
156
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
157
|
+
i0.ɵɵadvance(1);
|
|
158
|
+
i0.ɵɵproperty("ngForOf", ctx_r2.menu);
|
|
159
|
+
} }
|
|
160
|
+
const _c1 = function (a0) { return { "opened": a0 }; };
|
|
161
|
+
const _c2 = function (a0) { return { "min": a0 }; };
|
|
162
|
+
function InfoSidebarComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
163
|
+
const _r32 = i0.ɵɵgetCurrentView();
|
|
164
|
+
i0.ɵɵelementContainerStart(0);
|
|
165
|
+
i0.ɵɵelementStart(1, "div", 2)(2, "nav")(3, "div", 3)(4, "a", 4);
|
|
166
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_Template_a_click_4_listener() { i0.ɵɵrestoreView(_r32); const ctx_r31 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r31.toggleSidebar()); });
|
|
167
|
+
i0.ɵɵelementStart(5, "mat-icon", 5);
|
|
168
|
+
i0.ɵɵpipe(6, "translate");
|
|
169
|
+
i0.ɵɵtext(7, "arrow_menu_close");
|
|
170
|
+
i0.ɵɵelementEnd()();
|
|
171
|
+
i0.ɵɵtemplate(8, InfoSidebarComponent_ng_container_0_ul_8_Template, 2, 1, "ul", 0);
|
|
172
|
+
i0.ɵɵelementEnd()();
|
|
173
|
+
i0.ɵɵelementStart(9, "div", 6);
|
|
174
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_0_Template_div_click_9_listener() { i0.ɵɵrestoreView(_r32); const ctx_r33 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r33.openSubmenu = ""); });
|
|
175
|
+
i0.ɵɵelementEnd()();
|
|
176
|
+
i0.ɵɵelementContainerEnd();
|
|
177
|
+
} if (rf & 2) {
|
|
178
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
179
|
+
i0.ɵɵadvance(1);
|
|
180
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c1, ctx_r0.openSubmenu));
|
|
181
|
+
i0.ɵɵadvance(4);
|
|
182
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c2, ctx_r0._platform.MenuMin))("matTooltip", ctx_r0._platform.MenuMin ? "Exibir" : i0.ɵɵpipeBind1(6, 4, "Ocultar"));
|
|
183
|
+
i0.ɵɵadvance(3);
|
|
184
|
+
i0.ɵɵproperty("ngIf", ctx_r0.menu);
|
|
185
|
+
} }
|
|
186
|
+
function InfoSidebarComponent_ng_container_1_section_12_Template(rf, ctx) { if (rf & 1) {
|
|
187
|
+
i0.ɵɵelementStart(0, "section", 25);
|
|
188
|
+
i0.ɵɵelement(1, "mat-progress-bar", 26);
|
|
189
|
+
i0.ɵɵelementEnd();
|
|
190
|
+
} }
|
|
191
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_span_1_Template(rf, ctx) { if (rf & 1) {
|
|
192
|
+
i0.ɵɵelementStart(0, "span", 32);
|
|
193
|
+
i0.ɵɵtext(1);
|
|
194
|
+
i0.ɵɵelementEnd();
|
|
195
|
+
} if (rf & 2) {
|
|
196
|
+
const m_r37 = i0.ɵɵnextContext().$implicit;
|
|
197
|
+
i0.ɵɵadvance(1);
|
|
198
|
+
i0.ɵɵtextInterpolate1("", m_r37.Title, " ");
|
|
199
|
+
} }
|
|
200
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_2_Template(rf, ctx) { if (rf & 1) {
|
|
201
|
+
const _r46 = i0.ɵɵgetCurrentView();
|
|
202
|
+
i0.ɵɵelementStart(0, "a", 33);
|
|
203
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_2_Template_a_click_0_listener($event) { i0.ɵɵrestoreView(_r46); const m_r37 = i0.ɵɵnextContext().$implicit; const ctx_r44 = i0.ɵɵnextContext(3); ctx_r44.toggle($event, m_r37); return i0.ɵɵresetView(ctx_r44.resetLastSearch()); });
|
|
204
|
+
i0.ɵɵelementStart(1, "mat-icon");
|
|
205
|
+
i0.ɵɵtext(2);
|
|
206
|
+
i0.ɵɵelementEnd();
|
|
207
|
+
i0.ɵɵtext(3);
|
|
208
|
+
i0.ɵɵpipe(4, "translate");
|
|
209
|
+
i0.ɵɵelementEnd();
|
|
210
|
+
} if (rf & 2) {
|
|
211
|
+
const m_r37 = i0.ɵɵnextContext().$implicit;
|
|
212
|
+
i0.ɵɵproperty("routerLink", m_r37.Routing);
|
|
213
|
+
i0.ɵɵadvance(2);
|
|
214
|
+
i0.ɵɵtextInterpolate(m_r37.Icon);
|
|
215
|
+
i0.ɵɵadvance(1);
|
|
216
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(4, 3, m_r37.Title), " ");
|
|
217
|
+
} }
|
|
218
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_3_Template(rf, ctx) { if (rf & 1) {
|
|
219
|
+
i0.ɵɵelementStart(0, "a", 34)(1, "mat-icon");
|
|
220
|
+
i0.ɵɵtext(2);
|
|
221
|
+
i0.ɵɵelementEnd();
|
|
222
|
+
i0.ɵɵtext(3);
|
|
223
|
+
i0.ɵɵpipe(4, "translate");
|
|
224
|
+
i0.ɵɵelementEnd();
|
|
225
|
+
} if (rf & 2) {
|
|
226
|
+
const m_r37 = i0.ɵɵnextContext().$implicit;
|
|
227
|
+
i0.ɵɵadvance(2);
|
|
228
|
+
i0.ɵɵtextInterpolate(m_r37.Icon);
|
|
229
|
+
i0.ɵɵadvance(1);
|
|
230
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(4, 2, m_r37.Title), " ");
|
|
231
|
+
} }
|
|
232
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_i_5_Template(rf, ctx) { if (rf & 1) {
|
|
233
|
+
i0.ɵɵelement(0, "i", 38);
|
|
234
|
+
} }
|
|
235
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_Template(rf, ctx) { if (rf & 1) {
|
|
236
|
+
const _r52 = i0.ɵɵgetCurrentView();
|
|
237
|
+
i0.ɵɵelementStart(0, "a", 35);
|
|
238
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_Template_a_click_0_listener($event) { i0.ɵɵrestoreView(_r52); const m_r37 = i0.ɵɵnextContext().$implicit; const ctx_r50 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r50.toggle($event, m_r37)); });
|
|
239
|
+
i0.ɵɵelementStart(1, "mat-icon", 36);
|
|
240
|
+
i0.ɵɵtext(2);
|
|
241
|
+
i0.ɵɵelementEnd();
|
|
242
|
+
i0.ɵɵtext(3);
|
|
243
|
+
i0.ɵɵpipe(4, "translate");
|
|
244
|
+
i0.ɵɵtemplate(5, InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_i_5_Template, 1, 0, "i", 37);
|
|
245
|
+
i0.ɵɵelementEnd();
|
|
246
|
+
} if (rf & 2) {
|
|
247
|
+
const m_r37 = i0.ɵɵnextContext().$implicit;
|
|
248
|
+
i0.ɵɵadvance(2);
|
|
249
|
+
i0.ɵɵtextInterpolate(m_r37.Icon);
|
|
250
|
+
i0.ɵɵadvance(1);
|
|
251
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(4, 3, m_r37.Title), " ");
|
|
252
|
+
i0.ɵɵadvance(2);
|
|
253
|
+
i0.ɵɵproperty("ngIf", m_r37.Sub);
|
|
254
|
+
} }
|
|
255
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
256
|
+
const _r57 = i0.ɵɵgetCurrentView();
|
|
257
|
+
i0.ɵɵelementStart(0, "li", 41)(1, "a", 10);
|
|
258
|
+
i0.ɵɵlistener("click", function InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_li_1_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r57); const ctx_r56 = i0.ɵɵnextContext(5); return i0.ɵɵresetView(ctx_r56.resetLastSearch()); });
|
|
259
|
+
i0.ɵɵtext(2);
|
|
260
|
+
i0.ɵɵpipe(3, "translate");
|
|
261
|
+
i0.ɵɵelementEnd()();
|
|
262
|
+
} if (rf & 2) {
|
|
263
|
+
const s_r55 = ctx.$implicit;
|
|
264
|
+
i0.ɵɵadvance(1);
|
|
265
|
+
i0.ɵɵproperty("routerLink", s_r55.Routing);
|
|
266
|
+
i0.ɵɵadvance(1);
|
|
267
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, s_r55.Title));
|
|
268
|
+
} }
|
|
269
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_Template(rf, ctx) { if (rf & 1) {
|
|
270
|
+
i0.ɵɵelementStart(0, "ul", 39);
|
|
271
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_li_1_Template, 4, 4, "li", 40);
|
|
272
|
+
i0.ɵɵelementEnd();
|
|
273
|
+
} if (rf & 2) {
|
|
274
|
+
const m_r37 = i0.ɵɵnextContext().$implicit;
|
|
275
|
+
i0.ɵɵadvance(1);
|
|
276
|
+
i0.ɵɵproperty("ngForOf", m_r37.Sub);
|
|
277
|
+
} }
|
|
278
|
+
const _c3 = function (a0, a1, a2, a3) { return { "has-sub": a0, "active": a1, "menu-item-group": a2, "disabled": a3 }; };
|
|
279
|
+
function InfoSidebarComponent_ng_container_1_ul_13_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
280
|
+
i0.ɵɵelementStart(0, "li", 8);
|
|
281
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_1_ul_13_li_1_span_1_Template, 2, 1, "span", 27);
|
|
282
|
+
i0.ɵɵtemplate(2, InfoSidebarComponent_ng_container_1_ul_13_li_1_a_2_Template, 5, 5, "a", 28);
|
|
283
|
+
i0.ɵɵtemplate(3, InfoSidebarComponent_ng_container_1_ul_13_li_1_a_3_Template, 5, 4, "a", 29);
|
|
284
|
+
i0.ɵɵtemplate(4, InfoSidebarComponent_ng_container_1_ul_13_li_1_a_4_Template, 6, 5, "a", 30);
|
|
285
|
+
i0.ɵɵtemplate(5, InfoSidebarComponent_ng_container_1_ul_13_li_1_ul_5_Template, 2, 1, "ul", 31);
|
|
286
|
+
i0.ɵɵelementEnd();
|
|
287
|
+
} if (rf & 2) {
|
|
288
|
+
const m_r37 = ctx.$implicit;
|
|
289
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction4(6, _c3, m_r37.Sub != null, m_r37.Active, m_r37.Group, !m_r37.Enabled));
|
|
290
|
+
i0.ɵɵadvance(1);
|
|
291
|
+
i0.ɵɵproperty("ngIf", m_r37.Group);
|
|
292
|
+
i0.ɵɵadvance(1);
|
|
293
|
+
i0.ɵɵproperty("ngIf", !m_r37.Group && m_r37.Sub == null && m_r37.Enabled);
|
|
294
|
+
i0.ɵɵadvance(1);
|
|
295
|
+
i0.ɵɵproperty("ngIf", !m_r37.Group && m_r37.Sub == null && !m_r37.Enabled);
|
|
296
|
+
i0.ɵɵadvance(1);
|
|
297
|
+
i0.ɵɵproperty("ngIf", !m_r37.Group && m_r37.Sub != null);
|
|
298
|
+
i0.ɵɵadvance(1);
|
|
299
|
+
i0.ɵɵproperty("ngIf", !m_r37.Group && m_r37.Sub != null);
|
|
300
|
+
} }
|
|
301
|
+
function InfoSidebarComponent_ng_container_1_ul_13_Template(rf, ctx) { if (rf & 1) {
|
|
302
|
+
i0.ɵɵelementStart(0, "ul");
|
|
303
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_1_ul_13_li_1_Template, 6, 11, "li", 7);
|
|
304
|
+
i0.ɵɵelementEnd();
|
|
305
|
+
} if (rf & 2) {
|
|
306
|
+
const ctx_r35 = i0.ɵɵnextContext(2);
|
|
307
|
+
i0.ɵɵadvance(1);
|
|
308
|
+
i0.ɵɵproperty("ngForOf", ctx_r35.menu);
|
|
309
|
+
} }
|
|
310
|
+
function InfoSidebarComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
311
|
+
i0.ɵɵelementContainerStart(0);
|
|
312
|
+
i0.ɵɵelementStart(1, "div", 19)(2, "div", 20)(3, "a", 21);
|
|
313
|
+
i0.ɵɵelement(4, "i", 22);
|
|
314
|
+
i0.ɵɵelementEnd()();
|
|
315
|
+
i0.ɵɵelementStart(5, "div", 23)(6, "span");
|
|
316
|
+
i0.ɵɵtext(7);
|
|
317
|
+
i0.ɵɵelementEnd();
|
|
318
|
+
i0.ɵɵelementStart(8, "small");
|
|
319
|
+
i0.ɵɵtext(9);
|
|
320
|
+
i0.ɵɵelementEnd()();
|
|
321
|
+
i0.ɵɵelementStart(10, "nav")(11, "div", 3);
|
|
322
|
+
i0.ɵɵtemplate(12, InfoSidebarComponent_ng_container_1_section_12_Template, 2, 0, "section", 24);
|
|
323
|
+
i0.ɵɵtemplate(13, InfoSidebarComponent_ng_container_1_ul_13_Template, 2, 1, "ul", 0);
|
|
324
|
+
i0.ɵɵelementEnd()()();
|
|
325
|
+
i0.ɵɵelementContainerEnd();
|
|
326
|
+
} if (rf & 2) {
|
|
327
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
328
|
+
i0.ɵɵadvance(7);
|
|
329
|
+
i0.ɵɵtextInterpolate(ctx_r1._session.Usuario);
|
|
330
|
+
i0.ɵɵadvance(2);
|
|
331
|
+
i0.ɵɵtextInterpolate(ctx_r1._session.Perfil);
|
|
332
|
+
i0.ɵɵadvance(3);
|
|
333
|
+
i0.ɵɵproperty("ngIf", ctx_r1.loading);
|
|
334
|
+
i0.ɵɵadvance(1);
|
|
335
|
+
i0.ɵɵproperty("ngIf", ctx_r1.menu);
|
|
336
|
+
} }
|
|
337
|
+
export class InfoSidebarComponent {
|
|
338
|
+
_dataAcessService;
|
|
339
|
+
_authentication;
|
|
340
|
+
_themeService;
|
|
341
|
+
_session;
|
|
342
|
+
_platform;
|
|
343
|
+
_lastSearch;
|
|
344
|
+
_router;
|
|
345
|
+
_renderer;
|
|
346
|
+
_element;
|
|
347
|
+
api = null;
|
|
348
|
+
method = 'GetMenu';
|
|
349
|
+
activemenubyurl = false;
|
|
350
|
+
onchangestate = new EventEmitter();
|
|
351
|
+
loading = false;
|
|
352
|
+
menu = [];
|
|
353
|
+
openSubmenu = '';
|
|
354
|
+
menuAtivo = 'Dashboard';
|
|
355
|
+
constructor(_dataAcessService, _authentication, _themeService, _session, _platform, _lastSearch, _router, _renderer, _element) {
|
|
356
|
+
this._dataAcessService = _dataAcessService;
|
|
357
|
+
this._authentication = _authentication;
|
|
358
|
+
this._themeService = _themeService;
|
|
359
|
+
this._session = _session;
|
|
360
|
+
this._platform = _platform;
|
|
361
|
+
this._lastSearch = _lastSearch;
|
|
362
|
+
this._router = _router;
|
|
363
|
+
this._renderer = _renderer;
|
|
364
|
+
this._element = _element;
|
|
365
|
+
}
|
|
366
|
+
ngOnInit() {
|
|
367
|
+
if (!this._authentication.isLogged() || this.api == null)
|
|
368
|
+
return;
|
|
369
|
+
this._renderer.addClass(this._element.nativeElement, 'uxc' + this._platform.Config.ux);
|
|
370
|
+
this.loading = true;
|
|
371
|
+
this._dataAcessService
|
|
372
|
+
.get(this.api, this.method)
|
|
373
|
+
.subscribe(r => {
|
|
374
|
+
if (r.success) {
|
|
375
|
+
this.menu = r.data;
|
|
376
|
+
this._platform.Menu = r.data;
|
|
377
|
+
this._authentication.definePaginaAtiva(this._router.url);
|
|
378
|
+
this.monitorarUrl();
|
|
379
|
+
}
|
|
380
|
+
this.loading = false;
|
|
381
|
+
});
|
|
382
|
+
}
|
|
383
|
+
toggle(e, menuItem) {
|
|
384
|
+
e.preventDefault();
|
|
385
|
+
if (!menuItem.Enabled)
|
|
386
|
+
return;
|
|
387
|
+
if (!menuItem.Active)
|
|
388
|
+
for (let i = 0; i < this.menu.length; i++)
|
|
389
|
+
this.menu[i].Active = false;
|
|
390
|
+
menuItem.Active = !menuItem.Active;
|
|
391
|
+
}
|
|
392
|
+
access(menu) {
|
|
393
|
+
this.menuAtivo = menu;
|
|
394
|
+
this.openSubmenu = '';
|
|
395
|
+
this.resetLastSearch();
|
|
396
|
+
}
|
|
397
|
+
monitorarUrl() {
|
|
398
|
+
if (this.activemenubyurl) {
|
|
399
|
+
this.ativarMenu(this._router.url);
|
|
400
|
+
this._router.events.subscribe(e => {
|
|
401
|
+
if (e instanceof NavigationStart)
|
|
402
|
+
this.ativarMenu(e.url);
|
|
403
|
+
});
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
ativarMenu(url) {
|
|
407
|
+
let itemMenu = this.menu.find(m => m.Routing == url);
|
|
408
|
+
if (itemMenu != null)
|
|
409
|
+
this.menuAtivo = itemMenu.Title;
|
|
410
|
+
}
|
|
411
|
+
toggleSubmenu(menu) {
|
|
412
|
+
this.openSubmenu = this.openSubmenu == menu ? '' : menu;
|
|
413
|
+
}
|
|
414
|
+
resetLastSearch() {
|
|
415
|
+
this._lastSearch.model = null;
|
|
416
|
+
this._lastSearch.url = '';
|
|
417
|
+
}
|
|
418
|
+
changeSidebar() {
|
|
419
|
+
this.onchangestate.emit();
|
|
420
|
+
}
|
|
421
|
+
toggleSidebar() {
|
|
422
|
+
this._themeService.setMenuMin();
|
|
423
|
+
}
|
|
424
|
+
/** @nocollapse */ static ɵ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)); };
|
|
425
|
+
/** @nocollapse */ static ɵ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"], ["matTooltipPosition", "right", 3, "ngClass", "matTooltip"], [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"], ["class", "group-menu", 4, "ngFor", "ngForOf"], [1, "group-menu"], [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) {
|
|
426
|
+
i0.ɵɵtemplate(0, InfoSidebarComponent_ng_container_0_Template, 10, 10, "ng-container", 0);
|
|
427
|
+
i0.ɵɵtemplate(1, InfoSidebarComponent_ng_container_1_Template, 14, 4, "ng-container", 0);
|
|
428
|
+
i0.ɵɵelement(2, "div", 1);
|
|
429
|
+
} if (rf & 2) {
|
|
430
|
+
i0.ɵɵproperty("ngIf", ctx._platform.Config.ux >= 3);
|
|
431
|
+
i0.ɵɵadvance(1);
|
|
432
|
+
i0.ɵɵproperty("ngIf", ctx._platform.Config.ux <= 2);
|
|
433
|
+
} }, dependencies: [i8.NgClass, i8.NgForOf, i8.NgIf, i9.MatIcon, i10.MatProgressBar, i11.MatTooltip, i7.RouterLink, i12.InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.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:120px;z-index:9997}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{left:-120px;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:120px;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:120px;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:120px;width:370px;padding:0 40px;top:100px;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;height:100%}@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%]{max-height:calc(100% - 170px);overflow-y:auto;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:120px;z-index:997}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%]{left:-120px}}.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:120px}.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}"] });
|
|
434
|
+
}
|
|
435
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoSidebarComponent, [{
|
|
436
|
+
type: Component,
|
|
437
|
+
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 }\" [matTooltip]=\"_platform.MenuMin ? 'Exibir' : 'Ocultar' | translate\" matTooltipPosition=\"right\" >arrow_menu_close</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 || m.SubGroup != 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\r\n <ng-container *ngIf=\"m.SubGroup != null\">\r\n <div class=\"group-menu\" *ngFor=\"let g of m.SubGroup\">\r\n <h5>{{ g.Title | translate }}</h5>\r\n \r\n <ul>\r\n <li *ngFor=\"let s of g.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 </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: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host.uxc3{display:block;height:100%;left:0;position:fixed;top:80px;transition:left .2s ease-in-out,width .2s ease-in-out;width:120px;z-index:9997}@media screen and (max-width: 991px){:host.uxc3{left:-120px;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:120px;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:120px;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:120px;width:370px;padding:0 40px;top:100px;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;height:100%}@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{max-height:calc(100% - 170px);overflow-y:auto;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:120px;z-index:997}@media only screen and (max-width: 991px){:host.uxc2{left:-120px}}: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:120px}: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"] }]
|
|
438
|
+
}], 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: [{
|
|
439
|
+
type: Input
|
|
440
|
+
}], method: [{
|
|
441
|
+
type: Input
|
|
442
|
+
}], activemenubyurl: [{
|
|
443
|
+
type: Input
|
|
444
|
+
}], onchangestate: [{
|
|
445
|
+
type: Output
|
|
446
|
+
}] }); })();
|
|
447
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZWJhci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pbmZvLWxpYnJhcnkvc3JjL2xheW91dHMvc2lkZWJhci9zaWRlYmFyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2luZm8tbGlicmFyeS9zcmMvbGF5b3V0cy9zaWRlYmFyL3NpZGViYXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3RHLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUM3RCxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUNqRixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNwRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7Ozs7Ozs7Ozs7Ozs7O0lDS2xDLDZCQUErSDtJQUEzRCx1UEFBUyxzQkFBZSxFQUFDLHlCQUFlLFNBQUMsZUFBQSxVQUFjLENBQUEsSUFBRTtJQUN6SCx3Q0FBa007O0lBQUEsWUFBWTtJQUFBLGlCQUFXO0lBQ3pOLGlDQUFxQjtJQUFBLFlBQXlCOztJQUFBLGlCQUFRLEVBQUE7Ozs7SUFGakMseUNBQXdCO0lBQ2IsZUFBa0M7SUFBbEMsNkRBQWtDLGlEQUFBLDRCQUFBO0lBQWdJLGVBQVk7SUFBWiwrQkFBWTtJ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QUFDLGFBQWEsQ0FBQyxVQUFVLEVBQUUsQ0FBQztJQUNwQyxDQUFDO2lHQTdGUSxvQkFBb0I7NEZBQXBCLG9CQUFvQjtZQ2RqQyx5RkFtRGU7WUFFZix3RkFtRGU7WUFFZix5QkFBbUM7O1lBMUdwQixtREFBOEI7WUFxRDlCLGVBQThCO1lBQTlCLG1EQUE4Qjs7O3VGRHZDaEMsb0JBQW9CO2NBTGhDLFNBQVM7MkJBQ0ksY0FBYztnVEFNZixHQUFHO2tCQUFYLEtBQUs7WUFDRyxNQUFNO2tCQUFkLEtBQUs7WUFDRyxlQUFlO2tCQUF2QixLQUFLO1lBQ0ksYUFBYTtrQkFBdEIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRWxlbWVudFJlZiwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQsIFJlbmRlcmVyMiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBJbmZvRGF0YVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlL2RhdGEuc2VydmljZSc7XHJcbmltcG9ydCB7IEluZm9BdXRoZW50aWNhdGlvblNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlL2F1dGhlbnRpY2F0aW9uLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBJbmZvVGhlbWVTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZS90aGVtZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgSW5mb0xhc3RTZWFyY2hNb2RlbCB9IGZyb20gJy4uLy4uL21vZGVsL2xhc3Qtc2VhcmNoLm1vZGVsJztcclxuaW1wb3J0IHsgSW5mb1Nlc3Npb25Nb2RlbCB9IGZyb20gJy4uLy4uL21vZGVsL3Nlc3Npb24ubW9kZWwnO1xyXG5pbXBvcnQgeyBJbmZvUGxhdGZvcm1Nb2RlbCB9IGZyb20gJy4uLy4uL21vZGVsL3BsYXRmb3JtLm1vZGVsJztcclxuaW1wb3J0IHsgTmF2aWdhdGlvblN0YXJ0LCBSb3V0ZXIgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgICBzZWxlY3RvcjogJ2luZm8tc2lkZWJhcicsXHJcbiAgICB0ZW1wbGF0ZVVybDogJy4vc2lkZWJhci5jb21wb25lbnQuaHRtbCcsXHJcbiAgICBzdHlsZVVybHM6IFsnLi9zaWRlYmFyLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIEluZm9TaWRlYmFyQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuXHJcbiAgICBASW5wdXQoKSBhcGk6IGFueSA9IG51bGw7XHJcbiAgICBASW5wdXQoKSBtZXRob2Q6IHN0cmluZyA9ICdHZXRNZW51JztcclxuICAgIEBJbnB1dCgpIGFjdGl2ZW1lbnVieXVybDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gICAgQE91dHB1dCgpIG9uY2hhbmdlc3RhdGUgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcblxyXG4gICAgbG9hZGluZzogYm9vbGVhbiA9IGZhbHNlO1xyXG4gICAgbWVudTogYW55ID0gW107XHJcbiAgICBvcGVuU3VibWVudTogc3RyaW5nID0gJyc7XHJcbiAgICBtZW51QXRpdm86IHN0cmluZyA9ICdEYXNoYm9hcmQnO1xyXG5cclxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgX2RhdGFBY2Vzc1NlcnZpY2U6IEluZm9EYXRhU2VydmljZSwgcHJpdmF0ZSBfYXV0aGVudGljYXRpb246IEluZm9BdXRoZW50aWNhdGlvblNlcnZpY2UsIFxyXG4gICAgICAgICAgICAgICAgcHJpdmF0ZSBfdGhlbWVTZXJ2aWNlOiBJbmZvVGhlbWVTZXJ2aWNlLCBwdWJsaWMgX3Nlc3Npb246IEluZm9TZXNzaW9uTW9kZWwsIHB1YmxpYyBfcGxhdGZvcm06IEluZm9QbGF0Zm9ybU1vZGVsLFxyXG4gICAgICAgICAgICAgICAgcHJpdmF0ZSBfbGFzdFNlYXJjaDogSW5mb0xhc3RTZWFyY2hNb2RlbCwgcHJpdmF0ZSBfcm91dGVyOiBSb3V0ZXIsIHByaXZhdGUgX3JlbmRlcmVyOiBSZW5kZXJlcjIsIHB1YmxpYyBfZWxlbWVudDogRWxlbWVudFJlZikge1xyXG4gICAgfVxyXG5cclxuICAgIG5nT25Jbml0KCkge1xyXG4gICAgICAgIGlmICghdGhpcy5fYXV0aGVudGljYXRpb24uaXNMb2dnZWQoKSB8fCB0aGlzLmFwaSA9PSBudWxsKVxyXG4gICAgICAgICAgICByZXR1cm47XHJcblxyXG4gICAgICAgIHRoaXMuX3JlbmRlcmVyLmFkZENsYXNzKHRoaXMuX2VsZW1lbnQubmF0aXZlRWxlbWVudCwgJ3V4YycgKyB0aGlzLl9wbGF0Zm9ybS5Db25maWcudXgpO1xyXG4gICAgICAgIHRoaXMubG9hZGluZyA9IHRydWU7XHJcblxyXG4gICAgICAgIHRoaXMuX2RhdGFBY2Vzc1NlcnZpY2VcclxuICAgICAgICAgICAgLmdldCh0aGlzLmFwaSwgdGhpcy5tZXRob2QpXHJcbiAgICAgICAgICAgIC5zdWJzY3JpYmUociA9PiB7XHJcbiAgICAgICAgICAgICAgICBpZiAoci5zdWNjZXNzKXtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLm1lbnUgPSByLmRhdGE7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5fcGxhdGZvcm0uTWVudSA9IHIuZGF0YTtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9hdXRoZW50aWNhdGlvbi5kZWZpbmVQYWdpbmFBdGl2YSh0aGlzLl9yb3V0ZXIudXJsKTtcclxuXHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5tb25pdG9yYXJVcmwoKTtcclxuICAgICAgICAgICAgICAgIH1cclxuXHJcbiAgICAgICAgICAgICAgICB0aGlzLmxvYWRpbmcgPSBmYWxzZTtcclxuICAgICAgICAgICAgfSk7XHJcbiAgICB9XHJcblxyXG4gICAgdG9nZ2xlKGU6IEV2ZW50LCBtZW51SXRlbTogYW55KSB7XHJcblxyXG4gICAgICAgIGUucHJldmVudERlZmF1bHQoKTtcclxuXHJcbiAgICAgICAgaWYgKCFtZW51SXRlbS5FbmFibGVkKVxyXG4gICAgICAgICAgICByZXR1cm47XHJcblxyXG4gICAgICAgIGlmICghbWVudUl0ZW0uQWN0aXZlKVxyXG4gICAgICAgICAgICBmb3IgKGxldCBpID0gMDsgaSA8IHRoaXMubWVudS5sZW5ndGg7IGkrKylcclxuICAgICAgICAgICAgICAgIHRoaXMubWVudVtpXS5BY3RpdmUgPSBmYWxzZTtcclxuXHJcbiAgICAgICAgbWVudUl0ZW0uQWN0aXZlID0gIW1lbnVJdGVtLkFjdGl2ZTtcclxuICAgIH1cclxuXHJcbiAgICBhY2Nlc3MobWVudTogc3RyaW5nKXtcclxuICAgICAgICB0aGlzLm1lbnVBdGl2byA9IG1lbnU7XHJcbiAgICAgICAgdGhpcy5vcGVuU3VibWVudSA9ICcnO1xyXG4gICAgICAgIFxyXG4gICAgICAgIHRoaXMucmVzZXRMYXN0U2VhcmNoKCk7XHJcbiAgICB9XHJcblxyXG4gICAgbW9uaXRvcmFyVXJsKCl7XHJcbiAgICAgICAgaWYgKHRoaXMuYWN0aXZlbWVudWJ5dXJsKXtcclxuICAgICAgICAgICAgdGhpcy5hdGl2YXJNZW51KHRoaXMuX3JvdXRlci51cmwpO1xyXG5cclxuICAgICAgICAgICAgdGhpcy5fcm91dGVyLmV2ZW50cy5zdWJzY3JpYmUoZSA9PiB7XHJcbiAgICAgICAgICAgICAgICBpZiAoZSBpbnN0YW5jZW9mIE5hdmlnYXRpb25TdGFydClcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLmF0aXZhck1lbnUoZS51cmwpO1xyXG4gICAgICAgICAgICB9KTtcclxuICAgICAgICB9XHJcbiAgICB9XHJcblxyXG4gICAgYXRpdmFyTWVudSh1cmw6IHN0cmluZyl7XHJcbiAgICAgICAgbGV0IGl0ZW1NZW51ID0gdGhpcy5tZW51LmZpbmQobSA9PiBtLlJvdXRpbmcgPT0gdXJsKTtcclxuXHJcbiAgICAgICAgaWYgKGl0ZW1NZW51ICE9IG51bGwpXHJcbiAgICAgICAgICAgIHRoaXMubWVudUF0aXZvID0gaXRlbU1lbnUuVGl0bGU7XHJcbiAgICB9XHJcblxyXG4gICAgdG9nZ2xlU3VibWVudShtZW51KSB7XHJcbiAgICAgICAgdGhpcy5vcGVuU3VibWVudSA9IHRoaXMub3BlblN1Ym1lbnUgPT0gbWVudSA/ICcnIDogbWVudTtcclxuICAgIH1cclxuXHJcbiAgICByZXNldExhc3RTZWFyY2goKXtcclxuICAgICAgICB0aGlzLl9sYXN0U2VhcmNoLm1vZGVsID0gbnVsbDtcclxuICAgICAgICB0aGlzLl9sYXN0U2VhcmNoLnVybCA9ICcnO1xyXG4gICAgfVxyXG5cclxuICAgIGNoYW5nZVNpZGViYXIoKSB7XHJcbiAgICAgICAgdGhpcy5vbmNoYW5nZXN0YXRlLmVtaXQoKTtcclxuICAgIH1cclxuXHJcbiAgICB0b2dnbGVTaWRlYmFyKCl7XHJcbiAgICAgICAgdGhpcy5fdGhlbWVTZXJ2aWNlLnNldE1lbnVNaW4oKTtcclxuICAgIH1cclxufSIsIjxuZy1jb250YWluZXIgKm5nSWY9XCJfcGxhdGZvcm0uQ29uZmlnLnV4ID49IDNcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJzaXRlLXNpZGViYXJcIiBbbmdDbGFzc109XCJ7ICdvcGVuZWQnOiBvcGVuU3VibWVudSB9XCIgPlxyXG4gICAgICAgIDxuYXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJtYWluLW1lbnVcIj5cclxuICAgICAgICAgICAgICAgIDxhIGlkPVwibWVudS1taW4taWNvblwiIChjbGljayk9XCJ0b2dnbGVTaWRlYmFyKClcIj5cclxuICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24gW25nQ2xhc3NdPVwieyAnbWluJzogX3BsYXRmb3JtLk1lbnVNaW4gfVwiIFttYXRUb29sdGlwXT1cIl9wbGF0Zm9ybS5NZW51TWluID8gJ0V4aWJpcicgOiAnT2N1bHRhcicgfCB0cmFuc2xhdGVcIiBtYXRUb29sdGlwUG9zaXRpb249XCJyaWdodFwiID5hcnJvd19tZW51X2Nsb3NlPC9tYXQtaWNvbj5cclxuICAgICAgICAgICAgICAgIDwvYT5cclxuXHJcbiAgICAgICAgICAgICAgICA8dWwgKm5nSWY9XCJtZW51XCI+XHJcbiAgICBcclxuICAgICAgICAgICAgICAgICAgICA8bGkgY2xhc3M9XCJtZW51LWl0ZW1cIiAqbmdGb3I9XCJsZXQgbSBvZiBtZW51XCIgW25nQ2xhc3NdPVwieyAnYWN0aXZlJzogbWVudUF0aXZvID09IG0uVGl0bGUsICdkaXNhYmxlZCc6ICFtLkVuYWJsZWQsICdvcGVuZWQnOiBvcGVuU3VibWVudSA9PSBtLlRpdGxlIH1cIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxhICpuZ0lmPVwibS5TdWIgPT0gbnVsbFwiIFtyb3V0ZXJMaW5rXT1cIm0uUm91dGluZ1wiIGNsYXNzPVwiaXRlbS1saW5rXCIgKGNsaWNrKT1cImNoYW5nZVNpZGViYXIoKTthY2Nlc3MobS5UaXRsZSk7dG9vbHRpcC5oaWRlKCk7XCIgPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uICN0b29sdGlwPVwibWF0VG9vbHRpcFwiIFttYXRUb29sdGlwXT1cIm0uVGl0bGUgfCB0cmFuc2xhdGVcIiBbbWF0VG9vbHRpcERpc2FibGVkXT1cIiFfcGxhdGZvcm0uTWVudU1pblwiIG1hdFRvb2x0aXBQb3NpdGlvbj1cInJpZ2h0XCIgW21hdFRvb2x0aXBTaG93RGVsYXldPVwiNjAwXCIgbWF0VG9vbHRpcENsYXNzPVwibWF0LXRvb2x0aXBcIj57eyBtLkljb24gfX08L21hdC1pY29uPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPVwidGl0bGVcIj57eyBtLlRpdGxlIHwgdHJhbnNsYXRlIH19PC9sYWJlbD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJtLlN1YiAhPSBudWxsIHx8IG0uU3ViR3JvdXAgIT0gbnVsbFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9XCJpdGVtLWxpbmtcIiAoY2xpY2spPVwidG9nZ2xlU3VibWVudShtLlRpdGxlKTt0b29sdGlwLmhpZGUoKTtcIiA+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uICN0b29sdGlwPVwibWF0VG9vbHRpcFwiIFttYXRUb29sdGlwXT1cIm0uVGl0bGUgfCB0cmFuc2xhdGVcIiBbbWF0VG9vbHRpcERpc2FibGVkXT1cIiFfcGxhdGZvcm0uTWVudU1pblwiIG1hdFRvb2x0aXBQb3NpdGlvbj1cInJpZ2h0XCIgW21hdFRvb2x0aXBTaG93RGVsYXldPVwiNjAwXCIgbWF0VG9vbHRpcENsYXNzPVwibWF0LXRvb2x0aXBcIiA+e3sgbS5JY29uIH19PC9tYXQtaWNvbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9XCJ0aXRsZVwiPnt7IG0uVGl0bGUgfCB0cmFuc2xhdGUgfX08L2xhYmVsPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwic3ViLW1lbnVcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aDQ+e3sgbS5UaXRsZSB8IHRyYW5zbGF0ZSB9fTwvaDQ+XHJcbiAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dWw+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaSAqbmdGb3I9XCJsZXQgcyBvZiBtLlN1YlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgW3JvdXRlckxpbmtdPVwicy5Sb3V0aW5nXCIgY2xhc3M9XCJpdGVtLWxpbmtcIiAoY2xpY2spPVwiY2hhbmdlU2lkZWJhcigpO2FjY2VzcyhtLlRpdGxlKTtcIiA+e3sgcy5UaXRsZSB8IHRyYW5zbGF0ZSB9fTwvYT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3VsPlxyXG5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibS5TdWJHcm91cCAhPSBudWxsXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJncm91cC1tZW51XCIgKm5nRm9yPVwibGV0IGcgb2YgbS5TdWJHcm91cFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGg1Pnt7IGcuVGl0bGUgfCB0cmFuc2xhdGUgfX08L2g1PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dWw+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxpICpuZ0Zvcj1cImxldCBzIG9mIGcuU3ViXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhIFtyb3V0ZXJMaW5rXT1cInMuUm91dGluZ1wiIGNsYXNzPVwiaXRlbS1saW5rXCIgKGNsaWNrKT1cImNoYW5nZVNpZGViYXIoKTthY2Nlc3MobS5UaXRsZSk7XCIgPnt7IHMuVGl0bGUgfCB0cmFuc2xhdGUgfX08L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdWw+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvbGk+XHJcbiAgICAgICAgICAgICAgICA8L3VsPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L25hdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwic3ViLW1lbnUtb3ZlcmxheVwiIChjbGljayk9XCJvcGVuU3VibWVudSA9ICcnXCI+PC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuPC9uZy1jb250YWluZXI+XHJcblxyXG48bmctY29udGFpbmVyICpuZ0lmPVwiX3BsYXRmb3JtLkNvbmZpZy51eCA8PSAyXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwic2l0ZS1zaWRlYmFyXCI+XHJcblxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJsb2dvXCI+XHJcbiAgICAgICAgICAgIDxhIGhyZWY9XCIvXCIgPlxyXG4gICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJsb2dvLWltZ1wiPjwvaT5cclxuICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgIDwvZGl2PlxyXG5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mb1wiPlxyXG4gICAgICAgICAgICA8c3Bhbj57eyBfc2Vzc2lvbi5Vc3VhcmlvIH19PC9zcGFuPlxyXG4gICAgICAgICAgICA8c21hbGw+e3sgX3Nlc3Npb24uUGVyZmlsIH19PC9zbWFsbD5cclxuICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgPG5hdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm1haW4tbWVudVwiPlxyXG4gICAgICAgICAgICAgICAgPHNlY3Rpb24gY2xhc3M9XCJsb2FkaW5nLWJhclwiICpuZ0lmPVwibG9hZGluZ1wiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxtYXQtcHJvZ3Jlc3MtYmFyIGNvbG9yPVwicHJpbWFyeVwiIG1vZGU9XCJpbmRldGVybWluYXRlXCI+PC9tYXQtcHJvZ3Jlc3MtYmFyPlxyXG4gICAgICAgICAgICAgICAgPC9zZWN0aW9uPlxyXG4gICAgICAgICAgICAgICAgPHVsICpuZ0lmPVwibWVudVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxsaSBjbGFzcz1cIm1lbnUtaXRlbVwiICpuZ0Zvcj1cImxldCBtIG9mIG1lbnVcIiBbbmdDbGFzc109XCJ7ICdoYXMtc3ViJzogbS5TdWIgIT0gbnVsbCwgJ2FjdGl2ZSc6IG0uQWN0aXZlLCAnbWVudS1pdGVtLWdyb3VwJzogbS5Hcm91cCwgJ2Rpc2FibGVkJzogIW0uRW5hYmxlZCB9XCI+XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8IS0tIEdydXBvcyAtLT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJncm91cC10aXRsZVwiICpuZ0lmPVwibS5Hcm91cFwiPnt7IG0uVGl0bGUgfX0gPC9zcGFuPlxyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPCEtLSBJdGVucyAtLT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiNcIiBbcm91dGVyTGlua109XCJtLlJvdXRpbmdcIiBjbGFzcz1cIml0ZW0tbGlua1wiICpuZ0lmPVwiIW0uR3JvdXAgJiYgbS5TdWIgPT0gbnVsbCAmJiBtLkVuYWJsZWRcIiAoY2xpY2spPVwidG9nZ2xlKCRldmVudCwgbSk7cmVzZXRMYXN0U2VhcmNoKCk7XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24+e3sgbS5JY29uIH19PC9tYXQtaWNvbj57eyBtLlRpdGxlIHwgdHJhbnNsYXRlIH19XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxhIGNsYXNzPVwiaXRlbS1saW5rXCIgKm5nSWY9XCIhbS5Hcm91cCAmJiBtLlN1YiA9PSBudWxsICYmICFtLkVuYWJsZWRcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxtYXQtaWNvbj57eyBtLkljb24gfX08L21hdC1pY29uPnt7IG0uVGl0bGUgfCB0cmFuc2xhdGUgfX0gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gSXRlbSBjb20gc3VibWVudSAtLT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiNcIiBjbGFzcz1cIml0ZW0tbGlua1wiICpuZ0lmPVwiIW0uR3JvdXAgJiYgbS5TdWIgIT0gbnVsbFwiIChjbGljayk9XCJ0b2dnbGUoJGV2ZW50LCBtKVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaWNvblwiPnt7IG0uSWNvbiB9fTwvbWF0LWljb24+e3sgbS5UaXRsZSB8IHRyYW5zbGF0ZSB9fVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJjYXJldCBmYSBmYS1hbmdsZS1yaWdodFwiICpuZ0lmPVwibS5TdWJcIj48L2k+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gU3ViIE1lbnUgLS0+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDx1bCBjbGFzcz1cInN1YlwiICpuZ0lmPVwiIW0uR3JvdXAgJiYgbS5TdWIgIT0gbnVsbFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxpIGNsYXNzPVwibWVudS1pdGVtXCIgKm5nRm9yPVwibGV0IHMgb2YgbS5TdWJcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBbcm91dGVyTGlua109XCJzLlJvdXRpbmdcIiAoY2xpY2spPVwicmVzZXRMYXN0U2VhcmNoKClcIiBjbGFzcz1cIml0ZW0tbGlua1wiID57eyBzLlRpdGxlIHwgdHJhbnNsYXRlIH19PC9hPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC91bD5cclxuICAgICAgICAgICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICAgICAgPC91bD5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9uYXY+XHJcbiAgICA8L2Rpdj5cclxuPC9uZy1jb250YWluZXI+XHJcblxyXG48ZGl2IGNsYXNzPVwic2lkZWJhci1vdmVybGF5XCI+PC9kaXY+Il19
|