@cauca-911/material 18.0.0 → 18.0.1-beta2
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/esm2022/lib/buttons/base-button.mjs +33 -0
- package/esm2022/lib/buttons/basic-button/basic-button.component.mjs +64 -0
- package/esm2022/lib/buttons/flat-button/flat-button.component.mjs +64 -0
- package/esm2022/lib/buttons/icon-button/icon-button.component.mjs +28 -0
- package/esm2022/lib/buttons/menu-item/menu-item.component.mjs +68 -0
- package/esm2022/lib/buttons/raised-button/raised-button.component.mjs +64 -0
- package/esm2022/lib/buttons/stroked-button/stroked-button.component.mjs +71 -0
- package/esm2022/lib/cauca-material.component.mjs +6 -5
- package/esm2022/lib/cauca-material.module.mjs +14 -52
- package/esm2022/lib/cauca-menu-sidebar/cauca-menu-sidebar.component.mjs +14 -10
- package/esm2022/lib/cauca-menu-vertical/cauca-menu-vertical.component.mjs +16 -8
- package/esm2022/lib/cauca-simple-dialog/cauca-simple-dialog.component.mjs +14 -10
- package/esm2022/lib/cauca-slideshow/cauca-slideshow.component.mjs +6 -6
- package/esm2022/lib/dialogs/alert-dialog/alert-dialog.component.mjs +57 -0
- package/esm2022/lib/dialogs/confirm-dialog/confirm-dialog.component.mjs +69 -0
- package/esm2022/lib/dialogs/services/dialog.service.mjs +52 -0
- package/esm2022/lib/inputs/cauca-date-time-picker/cauca-date-time-picker.component.mjs +137 -0
- package/esm2022/lib/{cauca-date-time-picker → inputs/cauca-date-time-picker}/components/desktop-time-picker/desktop-time-picker.component.mjs +2 -2
- package/esm2022/lib/inputs/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.mjs +358 -0
- package/esm2022/lib/inputs/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.mjs +74 -0
- package/esm2022/lib/inputs/cauca-date-time-picker/models/dialog-date-time-picker-data.mjs +2 -0
- package/esm2022/lib/inputs/cauca-input-file/cauca-input-file.component.mjs +147 -0
- package/esm2022/lib/inputs/cauca-input-multiple-langue/cauca-input-multiple-langue.component.mjs +99 -0
- package/esm2022/lib/inputs/password/models/password-validation.mjs +13 -0
- package/esm2022/lib/inputs/password/password-criteria/password-criteria.component.mjs +49 -0
- package/esm2022/lib/inputs/password/password-criteria-viewer/password-criteria-viewer.component.mjs +29 -0
- package/esm2022/lib/inputs/password/password-input/password-input.component.mjs +112 -0
- package/esm2022/lib/inputs/password/password-selection/password-selection.component.mjs +112 -0
- package/esm2022/lib/inputs/password/validators/password-validator.mjs +19 -0
- package/esm2022/lib/inputs/select-with-search/select-with-search.component.mjs +157 -0
- package/esm2022/lib/layout/expandable-panel/expandable-panel.component.mjs +75 -0
- package/esm2022/lib/layout/menu-expandable-panel/menu-expandable-panel.component.mjs +148 -0
- package/esm2022/lib/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.mjs +50 -0
- package/esm2022/lib/layout/page-title/page-title.component.mjs +86 -0
- package/esm2022/lib/notifications/snack-bar/snack-bar.component.mjs +75 -0
- package/esm2022/public-api.mjs +21 -4
- package/fesm2022/cauca-911-material.mjs +1988 -648
- package/fesm2022/cauca-911-material.mjs.map +1 -1
- package/lib/buttons/base-button.d.ts +21 -0
- package/lib/buttons/basic-button/basic-button.component.d.ts +6 -0
- package/lib/buttons/flat-button/flat-button.component.d.ts +6 -0
- package/lib/buttons/icon-button/icon-button.component.d.ts +6 -0
- package/lib/buttons/menu-item/menu-item.component.d.ts +9 -0
- package/lib/buttons/raised-button/raised-button.component.d.ts +6 -0
- package/lib/buttons/stroked-button/stroked-button.component.d.ts +6 -0
- package/lib/cauca-material.component.d.ts +1 -1
- package/lib/cauca-material.module.d.ts +4 -14
- package/lib/cauca-menu-sidebar/cauca-menu-sidebar.component.d.ts +1 -1
- package/lib/cauca-menu-vertical/cauca-menu-vertical.component.d.ts +1 -1
- package/lib/cauca-simple-dialog/cauca-simple-dialog.component.d.ts +1 -1
- package/lib/cauca-slideshow/cauca-slideshow.component.d.ts +1 -1
- package/lib/dialogs/alert-dialog/alert-dialog.component.d.ts +18 -0
- package/lib/dialogs/confirm-dialog/confirm-dialog.component.d.ts +17 -0
- package/lib/dialogs/services/dialog.service.d.ts +26 -0
- package/lib/{cauca-input-file → inputs/cauca-input-file}/cauca-input-file.component.d.ts +1 -1
- package/lib/{cauca-input-multiple-langue → inputs/cauca-input-multiple-langue}/cauca-input-multiple-langue.component.d.ts +1 -1
- package/lib/inputs/password/models/password-validation.d.ts +9 -0
- package/lib/inputs/password/password-criteria/password-criteria.component.d.ts +9 -0
- package/lib/inputs/password/password-criteria-viewer/password-criteria-viewer.component.d.ts +9 -0
- package/lib/inputs/password/password-input/password-input.component.d.ts +25 -0
- package/lib/inputs/password/password-selection/password-selection.component.d.ts +20 -0
- package/lib/inputs/password/validators/password-validator.d.ts +9 -0
- package/lib/inputs/select-with-search/select-with-search.component.d.ts +32 -0
- package/lib/layout/expandable-panel/expandable-panel.component.d.ts +10 -0
- package/lib/layout/menu-expandable-panel/menu-expandable-panel.component.d.ts +29 -0
- package/lib/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.d.ts +13 -0
- package/lib/layout/page-title/page-title.component.d.ts +11 -0
- package/lib/notifications/snack-bar/snack-bar.component.d.ts +17 -0
- package/package.json +3 -2
- package/public-api.d.ts +20 -3
- package/esm2022/lib/cauca-date-time-picker/cauca-date-time-picker.component.mjs +0 -137
- package/esm2022/lib/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.mjs +0 -357
- package/esm2022/lib/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.mjs +0 -74
- package/esm2022/lib/cauca-date-time-picker/models/dialog-date-time-picker-data.mjs +0 -2
- package/esm2022/lib/cauca-input-file/cauca-input-file.component.mjs +0 -148
- package/esm2022/lib/cauca-input-multiple-langue/cauca-input-multiple-langue.component.mjs +0 -87
- /package/lib/{cauca-date-time-picker → inputs/cauca-date-time-picker}/cauca-date-time-picker.component.d.ts +0 -0
- /package/lib/{cauca-date-time-picker → inputs/cauca-date-time-picker}/components/desktop-time-picker/desktop-time-picker.component.d.ts +0 -0
- /package/lib/{cauca-date-time-picker → inputs/cauca-date-time-picker}/components/dialog-date-time-picker/dialog-date-time-picker.component.d.ts +0 -0
- /package/lib/{cauca-date-time-picker → inputs/cauca-date-time-picker}/components/mobile-time-picker/mobile-time-picker.component.d.ts +0 -0
- /package/lib/{cauca-date-time-picker → inputs/cauca-date-time-picker}/models/dialog-date-time-picker-data.d.ts +0 -0
package/esm2022/lib/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.mjs
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Component, inject, input } from '@angular/core';
|
|
2
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/material/icon";
|
|
7
|
+
import * as i2 from "@ngx-translate/core";
|
|
8
|
+
export class MenuExpandablePanelItemComponent {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.icon = input();
|
|
11
|
+
this.title = input();
|
|
12
|
+
this.route = input();
|
|
13
|
+
this.isSubItem = input(false);
|
|
14
|
+
this.action = input(null);
|
|
15
|
+
this.router = inject(Router);
|
|
16
|
+
}
|
|
17
|
+
openRoute() {
|
|
18
|
+
if (this.action()) {
|
|
19
|
+
this.action()();
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
this.router.navigate(this.route());
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
static { this.ɵfac = function MenuExpandablePanelItemComponent_Factory(t) { return new (t || MenuExpandablePanelItemComponent)(); }; }
|
|
26
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: MenuExpandablePanelItemComponent, selectors: [["app-menu-expandable-panel-item"]], inputs: { icon: [1, "icon"], title: [1, "title"], route: [1, "route"], isSubItem: [1, "isSubItem"], action: [1, "action"] }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 6, vars: 6, consts: [[3, "click"]], template: function MenuExpandablePanelItemComponent_Template(rf, ctx) { if (rf & 1) {
|
|
27
|
+
i0.ɵɵelementStart(0, "section", 0);
|
|
28
|
+
i0.ɵɵlistener("click", function MenuExpandablePanelItemComponent_Template_section_click_0_listener() { return ctx.openRoute(); });
|
|
29
|
+
i0.ɵɵelementStart(1, "mat-icon");
|
|
30
|
+
i0.ɵɵtext(2);
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
i0.ɵɵelementStart(3, "div");
|
|
33
|
+
i0.ɵɵtext(4);
|
|
34
|
+
i0.ɵɵpipe(5, "translate");
|
|
35
|
+
i0.ɵɵelementEnd()();
|
|
36
|
+
} if (rf & 2) {
|
|
37
|
+
i0.ɵɵadvance(2);
|
|
38
|
+
i0.ɵɵtextInterpolate(ctx.icon());
|
|
39
|
+
i0.ɵɵadvance();
|
|
40
|
+
i0.ɵɵclassMap(ctx.isSubItem() ? "subtitle2" : "subtitle1");
|
|
41
|
+
i0.ɵɵadvance();
|
|
42
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 4, ctx.title()));
|
|
43
|
+
} }, dependencies: [MatIconModule, i1.MatIcon, TranslateModule, i2.TranslatePipe], styles: ["section[_ngcontent-%COMP%]{display:flex;gap:16px;padding:16px 24px}"] }); }
|
|
44
|
+
}
|
|
45
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MenuExpandablePanelItemComponent, [{
|
|
46
|
+
type: Component,
|
|
47
|
+
args: [{ selector: 'app-menu-expandable-panel-item', standalone: true, imports: [MatIconModule, TranslateModule], template: "<section (click)=\"openRoute()\">\r\n <mat-icon>{{icon()}}</mat-icon>\r\n <div [class]=\"isSubItem() ? 'subtitle2' : 'subtitle1'\">{{title() | translate}}</div>\r\n</section>", styles: ["section{display:flex;gap:16px;padding:16px 24px}\n"] }]
|
|
48
|
+
}], null, null); })();
|
|
49
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MenuExpandablePanelItemComponent, { className: "MenuExpandablePanelItemComponent", filePath: "lib\\layout\\menu-expandable-panel-item\\menu-expandable-panel-item.component.ts", lineNumber: 13 }); })();
|
|
50
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS1leHBhbmRhYmxlLXBhbmVsLWl0ZW0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2F1Y2EtbWF0ZXJpYWwvc3JjL2xpYi9sYXlvdXQvbWVudS1leHBhbmRhYmxlLXBhbmVsLWl0ZW0vbWVudS1leHBhbmRhYmxlLXBhbmVsLWl0ZW0uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2F1Y2EtbWF0ZXJpYWwvc3JjL2xpYi9sYXlvdXQvbWVudS1leHBhbmRhYmxlLXBhbmVsLWl0ZW0vbWVudS1leHBhbmRhYmxlLXBhbmVsLWl0ZW0uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFlLE1BQU0sZUFBZSxDQUFDO0FBQ3RFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDekMsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7O0FBU3RELE1BQU0sT0FBTyxnQ0FBZ0M7SUFQN0M7UUFRUyxTQUFJLEdBQXdCLEtBQUssRUFBRSxDQUFDO1FBQ3BDLFVBQUssR0FBd0IsS0FBSyxFQUFFLENBQUM7UUFDckMsVUFBSyxHQUEwQixLQUFLLEVBQUUsQ0FBQztRQUN2QyxjQUFTLEdBQXlCLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMvQyxXQUFNLEdBQWlDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUV6QyxXQUFNLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0tBUzFDO0lBUFEsU0FBUztRQUNkLElBQUksSUFBSSxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUM7WUFDbEIsSUFBSSxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUM7UUFDbEIsQ0FBQzthQUFNLENBQUM7WUFDTixJQUFJLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztRQUNyQyxDQUFDO0lBQ0gsQ0FBQztpR0FmVSxnQ0FBZ0M7b0VBQWhDLGdDQUFnQztZQ1o3QyxrQ0FBK0I7WUFBdEIsOEdBQVMsZUFBVyxJQUFDO1lBQzFCLGdDQUFVO1lBQUEsWUFBVTtZQUFBLGlCQUFXO1lBQy9CLDJCQUF1RDtZQUFBLFlBQXVCOztZQUNsRixBQURrRixpQkFBTSxFQUM5RTs7WUFGSSxlQUFVO1lBQVYsZ0NBQVU7WUFDZixjQUFpRDtZQUFqRCwwREFBaUQ7WUFBQyxjQUF1QjtZQUF2Qix1REFBdUI7NEJETXRFLGFBQWEsY0FBRSxlQUFlOztpRkFJN0IsZ0NBQWdDO2NBUDVDLFNBQVM7MkJBQ0UsZ0NBQWdDLGNBQzlCLElBQUksV0FDUCxDQUFDLGFBQWEsRUFBRSxlQUFlLENBQUM7O2tGQUk5QixnQ0FBZ0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIGluamVjdCwgaW5wdXQsIElucHV0U2lnbmFsIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcclxuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgVHJhbnNsYXRlTW9kdWxlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2FwcC1tZW51LWV4cGFuZGFibGUtcGFuZWwtaXRlbScsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbTWF0SWNvbk1vZHVsZSwgVHJhbnNsYXRlTW9kdWxlXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vbWVudS1leHBhbmRhYmxlLXBhbmVsLWl0ZW0uY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsOiAnLi9tZW51LWV4cGFuZGFibGUtcGFuZWwtaXRlbS5jb21wb25lbnQuc2NzcydcclxufSlcclxuZXhwb3J0IGNsYXNzIE1lbnVFeHBhbmRhYmxlUGFuZWxJdGVtQ29tcG9uZW50IHtcclxuICBwdWJsaWMgaWNvbjogSW5wdXRTaWduYWw8c3RyaW5nPiA9IGlucHV0KCk7XHJcbiAgcHVibGljIHRpdGxlOiBJbnB1dFNpZ25hbDxzdHJpbmc+ID0gaW5wdXQoKTtcclxuICBwdWJsaWMgcm91dGU6IElucHV0U2lnbmFsPHN0cmluZ1tdPiA9IGlucHV0KCk7XHJcbiAgcHVibGljIGlzU3ViSXRlbTogSW5wdXRTaWduYWw8Ym9vbGVhbj4gPSBpbnB1dChmYWxzZSk7XHJcbiAgcHVibGljIGFjdGlvbjogSW5wdXRTaWduYWw8KCkgPT4gdm9pZHxudWxsPiA9IGlucHV0KG51bGwpO1xyXG5cclxuICBwcml2YXRlIHJlYWRvbmx5IHJvdXRlciA9IGluamVjdChSb3V0ZXIpO1xyXG5cclxuICBwdWJsaWMgb3BlblJvdXRlKCk6IHZvaWQge1xyXG4gICAgaWYgKHRoaXMuYWN0aW9uKCkpIHtcclxuICAgICAgdGhpcy5hY3Rpb24oKSgpO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgdGhpcy5yb3V0ZXIubmF2aWdhdGUodGhpcy5yb3V0ZSgpKTtcclxuICAgIH1cclxuICB9XHJcbn1cclxuIiwiPHNlY3Rpb24gKGNsaWNrKT1cIm9wZW5Sb3V0ZSgpXCI+XHJcbiAgICA8bWF0LWljb24+e3tpY29uKCl9fTwvbWF0LWljb24+XHJcbiAgICA8ZGl2IFtjbGFzc109XCJpc1N1Ykl0ZW0oKSA/ICdzdWJ0aXRsZTInIDogJ3N1YnRpdGxlMSdcIj57e3RpdGxlKCkgfCB0cmFuc2xhdGV9fTwvZGl2PlxyXG48L3NlY3Rpb24+Il19
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
|
|
3
|
+
import { RouterModule } from '@angular/router';
|
|
4
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/common";
|
|
7
|
+
import * as i2 from "@ngx-translate/core";
|
|
8
|
+
import * as i3 from "@angular/router";
|
|
9
|
+
function PageTitleComponent_div_4_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementContainerStart(0);
|
|
11
|
+
i0.ɵɵelementStart(1, "a", 6);
|
|
12
|
+
i0.ɵɵtext(2);
|
|
13
|
+
i0.ɵɵpipe(3, "translate");
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
i0.ɵɵelementStart(4, "span");
|
|
16
|
+
i0.ɵɵtext(5, "/");
|
|
17
|
+
i0.ɵɵelementEnd();
|
|
18
|
+
i0.ɵɵelementContainerEnd();
|
|
19
|
+
} if (rf & 2) {
|
|
20
|
+
const location_r1 = ctx.$implicit;
|
|
21
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
22
|
+
i0.ɵɵadvance();
|
|
23
|
+
i0.ɵɵproperty("routerLink", ctx_r1.currentLocationLink());
|
|
24
|
+
i0.ɵɵadvance();
|
|
25
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, location_r1));
|
|
26
|
+
} }
|
|
27
|
+
function PageTitleComponent_div_4_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
28
|
+
i0.ɵɵelementStart(0, "span", 5);
|
|
29
|
+
i0.ɵɵtext(1);
|
|
30
|
+
i0.ɵɵpipe(2, "translate");
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
} if (rf & 2) {
|
|
33
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
34
|
+
i0.ɵɵadvance();
|
|
35
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r1.breadcrumb()));
|
|
36
|
+
} }
|
|
37
|
+
function PageTitleComponent_div_4_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
38
|
+
i0.ɵɵelementStart(0, "span", 5);
|
|
39
|
+
i0.ɵɵtext(1);
|
|
40
|
+
i0.ɵɵelementEnd();
|
|
41
|
+
} if (rf & 2) {
|
|
42
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43
|
+
i0.ɵɵadvance();
|
|
44
|
+
i0.ɵɵtextInterpolate(ctx_r1.breadcrumb());
|
|
45
|
+
} }
|
|
46
|
+
function PageTitleComponent_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
47
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
48
|
+
i0.ɵɵtemplate(1, PageTitleComponent_div_4_ng_container_1_Template, 6, 4, "ng-container", 4)(2, PageTitleComponent_div_4_Conditional_2_Template, 3, 3, "span", 5)(3, PageTitleComponent_div_4_Conditional_3_Template, 2, 1, "span", 5);
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
} if (rf & 2) {
|
|
51
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
52
|
+
i0.ɵɵadvance();
|
|
53
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.currentLocation());
|
|
54
|
+
i0.ɵɵadvance();
|
|
55
|
+
i0.ɵɵconditional(ctx_r1.translateBreadcrumb() ? 2 : 3);
|
|
56
|
+
} }
|
|
57
|
+
export class PageTitleComponent {
|
|
58
|
+
constructor() {
|
|
59
|
+
this.title = input('');
|
|
60
|
+
this.currentLocation = input([]);
|
|
61
|
+
this.currentLocationLink = input(null);
|
|
62
|
+
this.breadcrumb = input('');
|
|
63
|
+
this.showBreadcrumb = input(false);
|
|
64
|
+
this.translateBreadcrumb = input(false);
|
|
65
|
+
}
|
|
66
|
+
static { this.ɵfac = function PageTitleComponent_Factory(t) { return new (t || PageTitleComponent)(); }; }
|
|
67
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PageTitleComponent, selectors: [["app-page-title"]], inputs: { title: [1, "title"], currentLocation: [1, "currentLocation"], currentLocationLink: [1, "currentLocationLink"], breadcrumb: [1, "breadcrumb"], showBreadcrumb: [1, "showBreadcrumb"], translateBreadcrumb: [1, "translateBreadcrumb"] }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 5, vars: 4, consts: [[1, "title-section"], [1, "title-label"], ["class", "breadcrumb", 4, "ngIf"], [1, "breadcrumb"], [4, "ngFor", "ngForOf"], [1, "breadcrumb-current"], [3, "routerLink"]], template: function PageTitleComponent_Template(rf, ctx) { if (rf & 1) {
|
|
68
|
+
i0.ɵɵelementStart(0, "div", 0)(1, "h4", 1);
|
|
69
|
+
i0.ɵɵtext(2);
|
|
70
|
+
i0.ɵɵpipe(3, "translate");
|
|
71
|
+
i0.ɵɵelementEnd();
|
|
72
|
+
i0.ɵɵtemplate(4, PageTitleComponent_div_4_Template, 4, 2, "div", 2);
|
|
73
|
+
i0.ɵɵelementEnd();
|
|
74
|
+
} if (rf & 2) {
|
|
75
|
+
i0.ɵɵadvance(2);
|
|
76
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, ctx.title()));
|
|
77
|
+
i0.ɵɵadvance(2);
|
|
78
|
+
i0.ɵɵproperty("ngIf", ctx.showBreadcrumb);
|
|
79
|
+
} }, dependencies: [CommonModule, i1.NgForOf, i1.NgIf, TranslateModule, i2.TranslatePipe, RouterModule, i3.RouterLink], styles: [".title-section[_ngcontent-%COMP%]{display:flex;gap:8px;flex-direction:column;align-items:flex-start;align-self:stretch}.breadcrumb[_ngcontent-%COMP%]{display:flex;align-items:center;gap:8px}h4[_ngcontent-%COMP%]{padding:0}"], changeDetection: 0 }); }
|
|
80
|
+
}
|
|
81
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PageTitleComponent, [{
|
|
82
|
+
type: Component,
|
|
83
|
+
args: [{ selector: 'app-page-title', standalone: true, imports: [CommonModule, TranslateModule, RouterModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"title-section\">\n\n <h4 class=\"title-label\">{{title() | translate }}</h4>\n\n <div class=\"breadcrumb\" *ngIf=\"showBreadcrumb\">\n\n <ng-container *ngFor=\"let location of currentLocation()\">\n <a [routerLink]=\"currentLocationLink()\">{{location | translate }}</a>\n <span>/</span>\n </ng-container>\n\n @if (translateBreadcrumb()) {\n <span class=\"breadcrumb-current\">{{ breadcrumb() | translate }}</span>\n } @else {\n <span class=\"breadcrumb-current\">{{ breadcrumb() }}</span>\n }\n\n </div>\n\n</div>", styles: [".title-section{display:flex;gap:8px;flex-direction:column;align-items:flex-start;align-self:stretch}.breadcrumb{display:flex;align-items:center;gap:8px}h4{padding:0}\n"] }]
|
|
84
|
+
}], null, null); })();
|
|
85
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(PageTitleComponent, { className: "PageTitleComponent", filePath: "lib\\layout\\page-title\\page-title.component.ts", lineNumber: 14 }); })();
|
|
86
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS10aXRsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYXVjYS1tYXRlcmlhbC9zcmMvbGliL2xheW91dC9wYWdlLXRpdGxlL3BhZ2UtdGl0bGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2F1Y2EtbWF0ZXJpYWwvc3JjL2xpYi9sYXlvdXQvcGFnZS10aXRsZS9wYWdlLXRpdGxlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7Ozs7SUNHbEQsNkJBQXlEO0lBQ3ZELDRCQUF3QztJQUFBLFlBQXlCOztJQUFBLGlCQUFJO0lBQ3JFLDRCQUFNO0lBQUEsaUJBQUM7SUFBQSxpQkFBTzs7Ozs7SUFEWCxjQUFvQztJQUFwQyx5REFBb0M7SUFBQyxjQUF5QjtJQUF6Qix1REFBeUI7OztJQUtqRSwrQkFBaUM7SUFBQSxZQUE4Qjs7SUFBQSxpQkFBTzs7O0lBQXJDLGNBQThCO0lBQTlCLCtEQUE4Qjs7O0lBRS9ELCtCQUFpQztJQUFBLFlBQWtCO0lBQUEsaUJBQU87OztJQUF6QixjQUFrQjtJQUFsQix5Q0FBa0I7OztJQVZ2RCw4QkFBK0M7SUFTM0MsQUFGRixBQUxBLDJGQUF5RCxxRUFLNUIscUVBRXBCO0lBSVgsaUJBQU07OztJQVgrQixjQUFvQjtJQUFwQixrREFBb0I7SUFLdkQsY0FJQztJQUpELHNEQUlDOztBREZMLE1BQU0sT0FBTyxrQkFBa0I7SUFSL0I7UUFVUyxVQUFLLEdBQUcsS0FBSyxDQUFTLEVBQUUsQ0FBQyxDQUFDO1FBQzFCLG9CQUFlLEdBQUcsS0FBSyxDQUFXLEVBQUUsQ0FBQyxDQUFDO1FBQ3RDLHdCQUFtQixHQUFHLEtBQUssQ0FBTSxJQUFJLENBQUMsQ0FBQztRQUN2QyxlQUFVLEdBQUcsS0FBSyxDQUFTLEVBQUUsQ0FBQyxDQUFDO1FBQy9CLG1CQUFjLEdBQUcsS0FBSyxDQUFVLEtBQUssQ0FBQyxDQUFDO1FBQ3ZDLHdCQUFtQixHQUFHLEtBQUssQ0FBVSxLQUFLLENBQUMsQ0FBQztLQUNwRDttRkFSWSxrQkFBa0I7b0VBQWxCLGtCQUFrQjtZQ1g3QixBQUZGLDhCQUEyQixZQUVEO1lBQUEsWUFBd0I7O1lBQUEsaUJBQUs7WUFFckQsbUVBQStDO1lBZWpELGlCQUFNOztZQWpCb0IsZUFBd0I7WUFBeEIsdURBQXdCO1lBRXZCLGVBQW9CO1lBQXBCLHlDQUFvQjs0QkRJbEMsWUFBWSx1QkFBRSxlQUFlLG9CQUFFLFlBQVk7O2lGQUszQyxrQkFBa0I7Y0FSOUIsU0FBUzsyQkFDRSxnQkFBZ0IsY0FDZCxJQUFJLFdBQ1AsQ0FBRSxZQUFZLEVBQUUsZUFBZSxFQUFFLFlBQVksQ0FBRSxtQkFHdkMsdUJBQXVCLENBQUMsTUFBTTs7a0ZBRXBDLGtCQUFrQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtcGFnZS10aXRsZScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFsgQ29tbW9uTW9kdWxlLCBUcmFuc2xhdGVNb2R1bGUsIFJvdXRlck1vZHVsZSBdLFxuICB0ZW1wbGF0ZVVybDogJy4vcGFnZS10aXRsZS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3BhZ2UtdGl0bGUuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgUGFnZVRpdGxlQ29tcG9uZW50IHtcblxuICBwdWJsaWMgdGl0bGUgPSBpbnB1dDxzdHJpbmc+KCcnKTtcbiAgcHVibGljIGN1cnJlbnRMb2NhdGlvbiA9IGlucHV0PHN0cmluZ1tdPihbXSk7XG4gIHB1YmxpYyBjdXJyZW50TG9jYXRpb25MaW5rID0gaW5wdXQ8YW55PihudWxsKTtcbiAgcHVibGljIGJyZWFkY3J1bWIgPSBpbnB1dDxzdHJpbmc+KCcnKTtcbiAgcHVibGljIHNob3dCcmVhZGNydW1iID0gaW5wdXQ8Ym9vbGVhbj4oZmFsc2UpO1xuICBwdWJsaWMgdHJhbnNsYXRlQnJlYWRjcnVtYiA9IGlucHV0PGJvb2xlYW4+KGZhbHNlKTtcbn1cbiIsIjxkaXYgY2xhc3M9XCJ0aXRsZS1zZWN0aW9uXCI+XG5cbiAgPGg0IGNsYXNzPVwidGl0bGUtbGFiZWxcIj57e3RpdGxlKCkgfCB0cmFuc2xhdGUgfX08L2g0PlxuXG4gIDxkaXYgY2xhc3M9XCJicmVhZGNydW1iXCIgKm5nSWY9XCJzaG93QnJlYWRjcnVtYlwiPlxuXG4gICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgbG9jYXRpb24gb2YgY3VycmVudExvY2F0aW9uKClcIj5cbiAgICAgIDxhIFtyb3V0ZXJMaW5rXT1cImN1cnJlbnRMb2NhdGlvbkxpbmsoKVwiPnt7bG9jYXRpb24gfCB0cmFuc2xhdGUgfX08L2E+XG4gICAgICA8c3Bhbj4vPC9zcGFuPlxuICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgQGlmICh0cmFuc2xhdGVCcmVhZGNydW1iKCkpIHtcbiAgICAgIDxzcGFuIGNsYXNzPVwiYnJlYWRjcnVtYi1jdXJyZW50XCI+e3sgYnJlYWRjcnVtYigpIHwgdHJhbnNsYXRlIH19PC9zcGFuPlxuICAgIH0gQGVsc2Uge1xuICAgICAgPHNwYW4gY2xhc3M9XCJicmVhZGNydW1iLWN1cnJlbnRcIj57eyBicmVhZGNydW1iKCkgfX08L3NwYW4+XG4gICAgfVxuXG4gIDwvZGl2PlxuXG48L2Rpdj4iXX0=
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Output, computed, input } from '@angular/core';
|
|
2
|
+
import { MatIcon } from '@angular/material/icon';
|
|
3
|
+
import { StrokedButtonComponent } from '../../buttons/stroked-button/stroked-button.component';
|
|
4
|
+
import { IconButtonComponent } from '../../buttons/icon-button/icon-button.component';
|
|
5
|
+
import { NgClass } from '@angular/common';
|
|
6
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "@ngx-translate/core";
|
|
9
|
+
const _c0 = ["*"];
|
|
10
|
+
function SnackBarComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
const _r1 = i0.ɵɵgetCurrentView();
|
|
12
|
+
i0.ɵɵelementStart(0, "app-stroked-button", 7);
|
|
13
|
+
i0.ɵɵlistener("click", function SnackBarComponent_Conditional_10_Template_app_stroked_button_click_0_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.buttonClick.emit()); });
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
} if (rf & 2) {
|
|
16
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
17
|
+
i0.ɵɵproperty("color", ctx_r1.buttonColor())("label", ctx_r1.buttonLabel());
|
|
18
|
+
} }
|
|
19
|
+
function SnackBarComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
20
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
21
|
+
i0.ɵɵelementStart(0, "app-icon-button", 8);
|
|
22
|
+
i0.ɵɵlistener("click", function SnackBarComponent_Conditional_11_Template_app_icon_button_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeClick.emit()); });
|
|
23
|
+
i0.ɵɵelementEnd();
|
|
24
|
+
} }
|
|
25
|
+
export class SnackBarComponent {
|
|
26
|
+
constructor() {
|
|
27
|
+
this.icon = input('info_outlined');
|
|
28
|
+
this.title = input('');
|
|
29
|
+
this.showButton = input(false);
|
|
30
|
+
this.buttonLabel = input('');
|
|
31
|
+
this.showCloseButton = input(false);
|
|
32
|
+
this.type = input('info');
|
|
33
|
+
this.variant = input('standard');
|
|
34
|
+
this.appearanceClasses = computed(() => `${this.type()} ${this.variant()}`);
|
|
35
|
+
this.buttonColor = computed(() => this.variant() === 'filled' ? 'white' : undefined);
|
|
36
|
+
this.closeClick = new EventEmitter();
|
|
37
|
+
this.buttonClick = new EventEmitter();
|
|
38
|
+
}
|
|
39
|
+
static { this.ɵfac = function SnackBarComponent_Factory(t) { return new (t || SnackBarComponent)(); }; }
|
|
40
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SnackBarComponent, selectors: [["app-snackbar"]], inputs: { icon: [1, "icon"], title: [1, "title"], showButton: [1, "showButton"], buttonLabel: [1, "buttonLabel"], showCloseButton: [1, "showCloseButton"], type: [1, "type"], variant: [1, "variant"] }, outputs: { closeClick: "closeClick", buttonClick: "buttonClick" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0, decls: 12, vars: 7, consts: [[1, "container", 3, "ngClass"], [1, "icon-container"], [1, "text-container"], [1, "title", "alert-title"], [1, "message", "body2"], [3, "color", "label"], ["icon", "close"], [3, "click", "color", "label"], ["icon", "close", 3, "click"]], template: function SnackBarComponent_Template(rf, ctx) { if (rf & 1) {
|
|
41
|
+
i0.ɵɵprojectionDef();
|
|
42
|
+
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "mat-icon");
|
|
43
|
+
i0.ɵɵtext(3);
|
|
44
|
+
i0.ɵɵelementEnd()();
|
|
45
|
+
i0.ɵɵelementStart(4, "div", 2)(5, "div", 3);
|
|
46
|
+
i0.ɵɵtext(6);
|
|
47
|
+
i0.ɵɵpipe(7, "translate");
|
|
48
|
+
i0.ɵɵelementEnd();
|
|
49
|
+
i0.ɵɵelementStart(8, "div", 4);
|
|
50
|
+
i0.ɵɵprojection(9);
|
|
51
|
+
i0.ɵɵelementEnd()();
|
|
52
|
+
i0.ɵɵtemplate(10, SnackBarComponent_Conditional_10_Template, 1, 2, "app-stroked-button", 5)(11, SnackBarComponent_Conditional_11_Template, 1, 0, "app-icon-button", 6);
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
} if (rf & 2) {
|
|
55
|
+
i0.ɵɵproperty("ngClass", ctx.appearanceClasses());
|
|
56
|
+
i0.ɵɵadvance(3);
|
|
57
|
+
i0.ɵɵtextInterpolate(ctx.icon());
|
|
58
|
+
i0.ɵɵadvance(3);
|
|
59
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 5, ctx.title()));
|
|
60
|
+
i0.ɵɵadvance(4);
|
|
61
|
+
i0.ɵɵconditional(ctx.showButton() ? 10 : -1);
|
|
62
|
+
i0.ɵɵadvance();
|
|
63
|
+
i0.ɵɵconditional(ctx.showCloseButton() ? 11 : -1);
|
|
64
|
+
} }, dependencies: [MatIcon, StrokedButtonComponent, IconButtonComponent, NgClass, TranslateModule, i1.TranslatePipe], styles: [".info[_ngcontent-%COMP%]{--darkBackgroundColor: #0288D1;--lightBackgroundColor: #E5F6FD;--lightColor: white;--darkColor: #014361}.warning[_ngcontent-%COMP%]{--darkBackgroundColor: #ED6C02;--lightBackgroundColor: #FFF4E5;--lightColor: white;--darkColor: #663C00}.success[_ngcontent-%COMP%]{--darkBackgroundColor: #2E7D32;--lightBackgroundColor: #EDF7ED;--lightColor: white;--darkColor: #1E4620}.error[_ngcontent-%COMP%]{--darkBackgroundColor: #D32F2F;--lightBackgroundColor: #FDEDED;--lightColor: white;--darkColor: #5F2120}.filled[_ngcontent-%COMP%]{--textColor: var(--lightColor);--iconColor: var(--lightColor);background-color:var(--darkBackgroundColor)}.standard[_ngcontent-%COMP%], .outlined[_ngcontent-%COMP%]{--textColor: var(--darkColor);--iconColor: var(--darkBackgroundColor)}.container[_ngcontent-%COMP%]{display:flex;padding:6px 16px;align-items:flex-start;border-radius:4px}.text-container[_ngcontent-%COMP%]{display:flex;padding:8px 0;flex-direction:column;align-items:flex-start;gap:4px;flex:1 0 0}.icon-container[_ngcontent-%COMP%]{display:flex;padding:7px 12px 7px 0;align-items:flex-start}.icon-container[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{color:var(--iconColor)}.message[_ngcontent-%COMP%], .title[_ngcontent-%COMP%]{color:var(--textColor)}.standard[_ngcontent-%COMP%]{background-color:var(--lightBackgroundColor)}.outlined[_ngcontent-%COMP%]{background-color:transparent;border:1px solid var(--darkBackgroundColor)}.standard[_ngcontent-%COMP%] .outlined[_ngcontent-%COMP%]{color:var(--darkColor)}"], changeDetection: 0 }); }
|
|
65
|
+
}
|
|
66
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SnackBarComponent, [{
|
|
67
|
+
type: Component,
|
|
68
|
+
args: [{ selector: 'app-snackbar', standalone: true, imports: [MatIcon, StrokedButtonComponent, IconButtonComponent, NgClass, TranslateModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"container\" [ngClass]=\"appearanceClasses()\">\r\n\r\n <div class=\"icon-container\">\r\n <mat-icon>{{icon()}}</mat-icon>\r\n </div>\r\n\r\n <div class=\"text-container\">\r\n <div class=\"title alert-title\">{{title()|translate}}</div>\r\n <div class=\"message body2\"><ng-content></ng-content></div>\r\n </div>\r\n\r\n @if (showButton()) {<app-stroked-button [color]=\"buttonColor()\" [label]=\"buttonLabel()\" (click)=\"buttonClick.emit()\" />}\r\n\r\n @if (showCloseButton()) {<app-icon-button icon=\"close\" (click)=\"closeClick.emit()\" />}\r\n\r\n</div>", styles: [".info{--darkBackgroundColor: #0288D1;--lightBackgroundColor: #E5F6FD;--lightColor: white;--darkColor: #014361}.warning{--darkBackgroundColor: #ED6C02;--lightBackgroundColor: #FFF4E5;--lightColor: white;--darkColor: #663C00}.success{--darkBackgroundColor: #2E7D32;--lightBackgroundColor: #EDF7ED;--lightColor: white;--darkColor: #1E4620}.error{--darkBackgroundColor: #D32F2F;--lightBackgroundColor: #FDEDED;--lightColor: white;--darkColor: #5F2120}.filled{--textColor: var(--lightColor);--iconColor: var(--lightColor);background-color:var(--darkBackgroundColor)}.standard,.outlined{--textColor: var(--darkColor);--iconColor: var(--darkBackgroundColor)}.container{display:flex;padding:6px 16px;align-items:flex-start;border-radius:4px}.text-container{display:flex;padding:8px 0;flex-direction:column;align-items:flex-start;gap:4px;flex:1 0 0}.icon-container{display:flex;padding:7px 12px 7px 0;align-items:flex-start}.icon-container mat-icon{color:var(--iconColor)}.message,.title{color:var(--textColor)}.standard{background-color:var(--lightBackgroundColor)}.outlined{background-color:transparent;border:1px solid var(--darkBackgroundColor)}.standard .outlined{color:var(--darkColor)}\n"] }]
|
|
69
|
+
}], null, { closeClick: [{
|
|
70
|
+
type: Output
|
|
71
|
+
}], buttonClick: [{
|
|
72
|
+
type: Output
|
|
73
|
+
}] }); })();
|
|
74
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SnackBarComponent, { className: "SnackBarComponent", filePath: "lib\\notifications\\snack-bar\\snack-bar.component.ts", lineNumber: 16 }); })();
|
|
75
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic25hY2stYmFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhdWNhLW1hdGVyaWFsL3NyYy9saWIvbm90aWZpY2F0aW9ucy9zbmFjay1iYXIvc25hY2stYmFyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhdWNhLW1hdGVyaWFsL3NyYy9saWIvbm90aWZpY2F0aW9ucy9zbmFjay1iYXIvc25hY2stYmFyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFlLE1BQU0sRUFBVSxRQUFRLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9ILE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNqRCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSx1REFBdUQsQ0FBQztBQUMvRixPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUN0RixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDMUMsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7Ozs7SUNNOUIsNkNBQW1HO0lBQS9CLGtNQUFTLHlCQUFrQixLQUFDO0lBQWhHLGlCQUFtRzs7O0lBQXZELEFBQXhCLDRDQUF1QiwrQkFBd0I7Ozs7SUFFOUQsMENBQTREO0lBQTlCLCtMQUFTLHdCQUFpQixLQUFDO0lBQXpELGlCQUE0RDs7QURFekYsTUFBTSxPQUFPLGlCQUFpQjtJQVI5QjtRQVVTLFNBQUksR0FBd0IsS0FBSyxDQUFDLGVBQWUsQ0FBQyxDQUFDO1FBQ25ELFVBQUssR0FBd0IsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQ3ZDLGVBQVUsR0FBeUIsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ2hELGdCQUFXLEdBQXdCLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUM3QyxvQkFBZSxHQUF5QixLQUFLLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDckQsU0FBSSxHQUFvRCxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDdEUsWUFBTyxHQUFnRCxLQUFLLENBQUMsVUFBVSxDQUFDLENBQUM7UUFDekUsc0JBQWlCLEdBQW1CLFFBQVEsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsSUFBSSxJQUFJLENBQUMsT0FBTyxFQUFFLEVBQUUsQ0FBQyxDQUFBO1FBQ3RGLGdCQUFXLEdBQW1CLFFBQVEsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLEtBQUssUUFBUSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDO1FBRXRGLGVBQVUsR0FBdUIsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUMxRCxnQkFBVyxHQUF1QixJQUFJLFlBQVksRUFBUSxDQUFDO0tBQzdFO2tGQWRZLGlCQUFpQjtvRUFBakIsaUJBQWlCOztZQ1p0QixBQURKLEFBRkosOEJBQXVELGFBRXZCLGVBQ2Q7WUFBQSxZQUFVO1lBQ3hCLEFBRHdCLGlCQUFXLEVBQzdCO1lBR0YsQUFESiw4QkFBNEIsYUFDTztZQUFBLFlBQXFCOztZQUFBLGlCQUFNO1lBQzFELDhCQUEyQjtZQUFBLGtCQUF5QjtZQUN4RCxBQUR3RCxpQkFBTSxFQUN4RDtZQUlOLEFBRkEsMkZBQW9CLDJFQUVLO1lBRTdCLGlCQUFNOztZQWZpQixpREFBK0I7WUFHcEMsZUFBVTtZQUFWLGdDQUFVO1lBSVcsZUFBcUI7WUFBckIsdURBQXFCO1lBSXhELGVBQXdIO1lBQXhILDRDQUF3SDtZQUV4SCxjQUFzRjtZQUF0RixpREFBc0Y7NEJESDlFLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxtQkFBbUIsRUFBRSxPQUFPLEVBQUUsZUFBZTs7aUZBSzdFLGlCQUFpQjtjQVI3QixTQUFTOzJCQUNFLGNBQWMsY0FDWixJQUFJLFdBQ1AsQ0FBQyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsbUJBQW1CLEVBQUUsT0FBTyxFQUFFLGVBQWUsQ0FBQyxtQkFHeEUsdUJBQXVCLENBQUMsTUFBTTtnQkFjOUIsVUFBVTtrQkFBMUIsTUFBTTtZQUNVLFdBQVc7a0JBQTNCLE1BQU07O2tGQWJJLGlCQUFpQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXRTaWduYWwsIE91dHB1dCwgU2lnbmFsLCBjb21wdXRlZCwgaW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTWF0SWNvbiB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2ljb24nO1xyXG5pbXBvcnQgeyBTdHJva2VkQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vYnV0dG9ucy9zdHJva2VkLWJ1dHRvbi9zdHJva2VkLWJ1dHRvbi5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBJY29uQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vYnV0dG9ucy9pY29uLWJ1dHRvbi9pY29uLWJ1dHRvbi5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBOZ0NsYXNzIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHsgVHJhbnNsYXRlTW9kdWxlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2FwcC1zbmFja2JhcicsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbTWF0SWNvbiwgU3Ryb2tlZEJ1dHRvbkNvbXBvbmVudCwgSWNvbkJ1dHRvbkNvbXBvbmVudCwgTmdDbGFzcywgVHJhbnNsYXRlTW9kdWxlXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vc25hY2stYmFyLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vc25hY2stYmFyLmNvbXBvbmVudC5zY3NzJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIFNuYWNrQmFyQ29tcG9uZW50IHtcclxuXHJcbiAgcHVibGljIGljb246IElucHV0U2lnbmFsPHN0cmluZz4gPSBpbnB1dCgnaW5mb19vdXRsaW5lZCcpO1xyXG4gIHB1YmxpYyB0aXRsZTogSW5wdXRTaWduYWw8c3RyaW5nPiA9IGlucHV0KCcnKTtcclxuICBwdWJsaWMgc2hvd0J1dHRvbjogSW5wdXRTaWduYWw8Ym9vbGVhbj4gPSBpbnB1dChmYWxzZSk7XHJcbiAgcHVibGljIGJ1dHRvbkxhYmVsOiBJbnB1dFNpZ25hbDxzdHJpbmc+ID0gaW5wdXQoJycpO1xyXG4gIHB1YmxpYyBzaG93Q2xvc2VCdXR0b246IElucHV0U2lnbmFsPGJvb2xlYW4+ID0gaW5wdXQoZmFsc2UpO1xyXG4gIHB1YmxpYyB0eXBlOiBJbnB1dFNpZ25hbDwnaW5mbyd8J3N1Y2Nlc3MnfCd3YXJuaW5nJ3wnZXJyb3InPiA9IGlucHV0KCdpbmZvJyk7XHJcbiAgcHVibGljIHZhcmlhbnQ6IElucHV0U2lnbmFsPCdmaWxsZWQnfCdvdXRsaW5lZCd8J3N0YW5kYXJkJz4gPSBpbnB1dCgnc3RhbmRhcmQnKTtcclxuICBwdWJsaWMgYXBwZWFyYW5jZUNsYXNzZXM6IFNpZ25hbDxzdHJpbmc+ID0gY29tcHV0ZWQoKCkgPT4gYCR7dGhpcy50eXBlKCl9ICR7dGhpcy52YXJpYW50KCl9YClcclxuICBwdWJsaWMgYnV0dG9uQ29sb3I6IFNpZ25hbDxzdHJpbmc+ID0gY29tcHV0ZWQoKCkgPT4gdGhpcy52YXJpYW50KCkgPT09ICdmaWxsZWQnID8gJ3doaXRlJyA6IHVuZGVmaW5lZCk7XHJcblxyXG4gIEBPdXRwdXQoKSBwdWJsaWMgY2xvc2VDbGljazogRXZlbnRFbWl0dGVyPHZvaWQ+ID0gbmV3IEV2ZW50RW1pdHRlcjx2b2lkPigpO1xyXG4gIEBPdXRwdXQoKSBwdWJsaWMgYnV0dG9uQ2xpY2s6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwiY29udGFpbmVyXCIgW25nQ2xhc3NdPVwiYXBwZWFyYW5jZUNsYXNzZXMoKVwiPlxyXG5cclxuICAgIDxkaXYgY2xhc3M9XCJpY29uLWNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxtYXQtaWNvbj57e2ljb24oKX19PC9tYXQtaWNvbj5cclxuICAgIDwvZGl2PlxyXG5cclxuICAgIDxkaXYgY2xhc3M9XCJ0ZXh0LWNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0aXRsZSBhbGVydC10aXRsZVwiPnt7dGl0bGUoKXx0cmFuc2xhdGV9fTwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJtZXNzYWdlIGJvZHkyXCI+PG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PjwvZGl2PlxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgQGlmIChzaG93QnV0dG9uKCkpIHs8YXBwLXN0cm9rZWQtYnV0dG9uIFtjb2xvcl09XCJidXR0b25Db2xvcigpXCIgW2xhYmVsXT1cImJ1dHRvbkxhYmVsKClcIiAoY2xpY2spPVwiYnV0dG9uQ2xpY2suZW1pdCgpXCIgLz59XHJcblxyXG4gICAgQGlmIChzaG93Q2xvc2VCdXR0b24oKSkgezxhcHAtaWNvbi1idXR0b24gaWNvbj1cImNsb3NlXCIgKGNsaWNrKT1cImNsb3NlQ2xpY2suZW1pdCgpXCIgLz59XHJcblxyXG48L2Rpdj4iXX0=
|
package/esm2022/public-api.mjs
CHANGED
|
@@ -4,12 +4,29 @@
|
|
|
4
4
|
export * from './lib/cauca-material.service';
|
|
5
5
|
export * from './lib/cauca-material.component';
|
|
6
6
|
export * from './lib/cauca-material.module';
|
|
7
|
-
export * from './lib/cauca-date-time-picker/cauca-date-time-picker.component';
|
|
8
|
-
export * from './lib/cauca-input-file/cauca-input-file.component';
|
|
9
|
-
export * from './lib/cauca-input-multiple-langue/cauca-input-multiple-langue.component';
|
|
10
7
|
export * from './lib/cauca-menu-sidebar/cauca-menu-sidebar.component';
|
|
11
8
|
export * from './lib/cauca-menu-vertical/cauca-menu-vertical.component';
|
|
12
9
|
export * from './lib/cauca-simple-dialog/cauca-simple-dialog.component';
|
|
13
10
|
export * from './lib/cauca-slideshow/cauca-slideshow.component';
|
|
11
|
+
export * from './lib/buttons/basic-button/basic-button.component';
|
|
12
|
+
export * from './lib/buttons/flat-button/flat-button.component';
|
|
13
|
+
export * from './lib/buttons/stroked-button/stroked-button.component';
|
|
14
|
+
export * from './lib/buttons/raised-button/raised-button.component';
|
|
15
|
+
export * from './lib/buttons/icon-button/icon-button.component';
|
|
16
|
+
export * from './lib/buttons/menu-item/menu-item.component';
|
|
17
|
+
export * from './lib/layout/expandable-panel/expandable-panel.component';
|
|
18
|
+
export * from './lib/layout/menu-expandable-panel/menu-expandable-panel.component';
|
|
19
|
+
export * from './lib/layout/menu-expandable-panel-item/menu-expandable-panel-item.component';
|
|
20
|
+
export * from './lib/layout/page-title/page-title.component';
|
|
21
|
+
export * from './lib/inputs/cauca-input-file/cauca-input-file.component';
|
|
22
|
+
export * from './lib/inputs/cauca-input-multiple-langue/cauca-input-multiple-langue.component';
|
|
23
|
+
export * from './lib/inputs/password/password-criteria/password-criteria.component';
|
|
24
|
+
export * from './lib/inputs/password/password-input/password-input.component';
|
|
25
|
+
export * from './lib/inputs/password/password-criteria-viewer/password-criteria-viewer.component';
|
|
26
|
+
export * from './lib/inputs/password/password-selection/password-selection.component';
|
|
27
|
+
export * from './lib/inputs/select-with-search/select-with-search.component';
|
|
28
|
+
export * from './lib/inputs/cauca-date-time-picker/cauca-date-time-picker.component';
|
|
29
|
+
export * from './lib/notifications/snack-bar/snack-bar.component';
|
|
30
|
+
export * from './lib/dialogs/services/dialog.service';
|
|
14
31
|
export { MenuItem } from './lib/shared/models/menu-item';
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2NhdWNhLW1hdGVyaWFsL3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYyx1REFBdUQsQ0FBQztBQUN0RSxjQUFjLHlEQUF5RCxDQUFDO0FBQ3hFLGNBQWMseURBQXlELENBQUM7QUFDeEUsY0FBYyxpREFBaUQsQ0FBQztBQUVoRSxjQUFjLG1EQUFtRCxDQUFDO0FBQ2xFLGNBQWMsaURBQWlELENBQUM7QUFDaEUsY0FBYyx1REFBdUQsQ0FBQztBQUN0RSxjQUFjLHFEQUFxRCxDQUFDO0FBQ3BFLGNBQWMsaURBQWlELENBQUM7QUFDaEUsY0FBYyw2Q0FBNkMsQ0FBQztBQUU1RCxjQUFjLDBEQUEwRCxDQUFDO0FBQ3pFLGNBQWMsb0VBQW9FLENBQUM7QUFDbkYsY0FBYyw4RUFBOEUsQ0FBQztBQUM3RixjQUFjLDhDQUE4QyxDQUFDO0FBRTdELGNBQWMsMERBQTBELENBQUM7QUFDekUsY0FBYyxnRkFBZ0YsQ0FBQztBQUMvRixjQUFjLHFFQUFxRSxDQUFDO0FBQ3BGLGNBQWMsK0RBQStELENBQUM7QUFDOUUsY0FBYyxtRkFBbUYsQ0FBQztBQUNsRyxjQUFjLHVFQUF1RSxDQUFDO0FBQ3RGLGNBQWMsOERBQThELENBQUM7QUFDN0UsY0FBYyxzRUFBc0UsQ0FBQztBQUVyRixjQUFjLG1EQUFtRCxDQUFDO0FBRWxFLGNBQWMsdUNBQXVDLENBQUM7QUFJdEQsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLCtCQUErQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBjYXVjYS1tYXRlcmlhbFxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhdWNhLW1hdGVyaWFsLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY2F1Y2EtbWF0ZXJpYWwuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhdWNhLW1hdGVyaWFsLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXVjYS1tZW51LXNpZGViYXIvY2F1Y2EtbWVudS1zaWRlYmFyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXVjYS1tZW51LXZlcnRpY2FsL2NhdWNhLW1lbnUtdmVydGljYWwuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NhdWNhLXNpbXBsZS1kaWFsb2cvY2F1Y2Etc2ltcGxlLWRpYWxvZy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY2F1Y2Etc2xpZGVzaG93L2NhdWNhLXNsaWRlc2hvdy5jb21wb25lbnQnO1xuXG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b25zL2Jhc2ljLWJ1dHRvbi9iYXNpYy1idXR0b24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2J1dHRvbnMvZmxhdC1idXR0b24vZmxhdC1idXR0b24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2J1dHRvbnMvc3Ryb2tlZC1idXR0b24vc3Ryb2tlZC1idXR0b24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2J1dHRvbnMvcmFpc2VkLWJ1dHRvbi9yYWlzZWQtYnV0dG9uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b25zL2ljb24tYnV0dG9uL2ljb24tYnV0dG9uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b25zL21lbnUtaXRlbS9tZW51LWl0ZW0uY29tcG9uZW50JztcblxuZXhwb3J0ICogZnJvbSAnLi9saWIvbGF5b3V0L2V4cGFuZGFibGUtcGFuZWwvZXhwYW5kYWJsZS1wYW5lbC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbGF5b3V0L21lbnUtZXhwYW5kYWJsZS1wYW5lbC9tZW51LWV4cGFuZGFibGUtcGFuZWwuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2xheW91dC9tZW51LWV4cGFuZGFibGUtcGFuZWwtaXRlbS9tZW51LWV4cGFuZGFibGUtcGFuZWwtaXRlbS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbGF5b3V0L3BhZ2UtdGl0bGUvcGFnZS10aXRsZS5jb21wb25lbnQnO1xuXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnB1dHMvY2F1Y2EtaW5wdXQtZmlsZS9jYXVjYS1pbnB1dC1maWxlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnB1dHMvY2F1Y2EtaW5wdXQtbXVsdGlwbGUtbGFuZ3VlL2NhdWNhLWlucHV0LW11bHRpcGxlLWxhbmd1ZS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaW5wdXRzL3Bhc3N3b3JkL3Bhc3N3b3JkLWNyaXRlcmlhL3Bhc3N3b3JkLWNyaXRlcmlhLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnB1dHMvcGFzc3dvcmQvcGFzc3dvcmQtaW5wdXQvcGFzc3dvcmQtaW5wdXQuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2lucHV0cy9wYXNzd29yZC9wYXNzd29yZC1jcml0ZXJpYS12aWV3ZXIvcGFzc3dvcmQtY3JpdGVyaWEtdmlld2VyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnB1dHMvcGFzc3dvcmQvcGFzc3dvcmQtc2VsZWN0aW9uL3Bhc3N3b3JkLXNlbGVjdGlvbi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaW5wdXRzL3NlbGVjdC13aXRoLXNlYXJjaC9zZWxlY3Qtd2l0aC1zZWFyY2guY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2lucHV0cy9jYXVjYS1kYXRlLXRpbWUtcGlja2VyL2NhdWNhLWRhdGUtdGltZS1waWNrZXIuY29tcG9uZW50JztcblxuZXhwb3J0ICogZnJvbSAnLi9saWIvbm90aWZpY2F0aW9ucy9zbmFjay1iYXIvc25hY2stYmFyLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpYWxvZ3Mvc2VydmljZXMvZGlhbG9nLnNlcnZpY2UnO1xuXG5cblxuZXhwb3J0IHsgTWVudUl0ZW0gfSBmcm9tICcuL2xpYi9zaGFyZWQvbW9kZWxzL21lbnUtaXRlbSc7XG4iXX0=
|