@churchillliving/se-ui-toolkit 6.54.608 → 6.54.609
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/components/shared/controls/textArea-control/textArea-control.component.mjs +6 -3
- package/esm2022/lib/components/shared/notes/notes.component.mjs +4 -3
- package/fesm2022/churchillliving-se-ui-toolkit.mjs +9 -8
- package/fesm2022/churchillliving-se-ui-toolkit.mjs.map +1 -1
- package/package.json +1 -1
package/esm2022/lib/components/shared/controls/textArea-control/textArea-control.component.mjs
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { Component, EventEmitter, Input, Output } from "@angular/core";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "@angular/forms";
|
|
5
|
+
import * as i3 from "primeng/inputtextarea";
|
|
3
6
|
export class TextAreaComponent {
|
|
4
7
|
constructor() {
|
|
5
8
|
this.onChange = new EventEmitter();
|
|
@@ -18,11 +21,11 @@ export class TextAreaComponent {
|
|
|
18
21
|
this.onFocusOut.emit(formField);
|
|
19
22
|
}
|
|
20
23
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
21
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextAreaComponent, selector: "textArea-control", inputs: { formField: "formField" }, outputs: { onChange: "onChange", onClick: "onClick", onFocusOut: "onFocusOut" }, ngImport: i0, template: "
|
|
24
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextAreaComponent, selector: "textArea-control", inputs: { formField: "formField" }, outputs: { onChange: "onChange", onClick: "onClick", onFocusOut: "onFocusOut" }, ngImport: i0, template: "<span *ngIf=\"!formField.hidden\">\n <div class=\"flex flex-column\">\n <label [class]=\"formField.label.onClick ? 'custom-link' : ''\" (click)=\"\n formField.label.onClick && formField.label.onClick()\n \" data-title-element=\"self\">\n {{\n formField.label.labelControl\n ? ''\n : formField.label.onClick\n ? formField.label.name\n : formField.label\n }}\n <span *ngIf=\"formField.requiredField\"\n [class]=\"'required-star ' + (formField?.errorMessage ? ' invalid ' : '')\">*</span>\n </label>\n <textarea data-title-element=\"self\" [class]=\"\n formField.errorMessage\n ? 'ng-invalid ng-dirty'\n : 'form-control'\n \" pInputTextarea [rows]=\"formField.row ? formField.row : 1 \" (change)=\"onChangeEvent(formField)\"\n (click)=\"handleClickEvent(formField)\" [(ngModel)]=\"formField.value\" [name]=\"formField.field\"\n [disabled]=\"formField.disabled\" [ngStyle]=\"{height: formField.height ? formField.height : ''}\"\n (blur)=\"onFocusOutEvent(formField)\"></textarea>\n </div>\n</span>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.InputTextarea, selector: "[pInputTextarea]", inputs: ["autoResize"], outputs: ["onResize"] }] }); }
|
|
22
25
|
}
|
|
23
26
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextAreaComponent, decorators: [{
|
|
24
27
|
type: Component,
|
|
25
|
-
args: [{ selector: 'textArea-control', template: "
|
|
28
|
+
args: [{ selector: 'textArea-control', template: "<span *ngIf=\"!formField.hidden\">\n <div class=\"flex flex-column\">\n <label [class]=\"formField.label.onClick ? 'custom-link' : ''\" (click)=\"\n formField.label.onClick && formField.label.onClick()\n \" data-title-element=\"self\">\n {{\n formField.label.labelControl\n ? ''\n : formField.label.onClick\n ? formField.label.name\n : formField.label\n }}\n <span *ngIf=\"formField.requiredField\"\n [class]=\"'required-star ' + (formField?.errorMessage ? ' invalid ' : '')\">*</span>\n </label>\n <textarea data-title-element=\"self\" [class]=\"\n formField.errorMessage\n ? 'ng-invalid ng-dirty'\n : 'form-control'\n \" pInputTextarea [rows]=\"formField.row ? formField.row : 1 \" (change)=\"onChangeEvent(formField)\"\n (click)=\"handleClickEvent(formField)\" [(ngModel)]=\"formField.value\" [name]=\"formField.field\"\n [disabled]=\"formField.disabled\" [ngStyle]=\"{height: formField.height ? formField.height : ''}\"\n (blur)=\"onFocusOutEvent(formField)\"></textarea>\n </div>\n</span>" }]
|
|
26
29
|
}], propDecorators: { formField: [{
|
|
27
30
|
type: Input
|
|
28
31
|
}], onChange: [{
|
|
@@ -32,4 +35,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
32
35
|
}], onFocusOut: [{
|
|
33
36
|
type: Output
|
|
34
37
|
}] } });
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dEFyZWEtY29udHJvbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9zZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9zaGFyZWQvY29udHJvbHMvdGV4dEFyZWEtY29udHJvbC90ZXh0QXJlYS1jb250cm9sLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3NlLXVpLXRvb2xraXQvc3JjL2xpYi9jb21wb25lbnRzL3NoYXJlZC9jb250cm9scy90ZXh0QXJlYS1jb250cm9sL3RleHRBcmVhLWNvbnRyb2wuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFNL0UsTUFBTSxPQUFPLGlCQUFpQjtJQUo5QjtRQU1jLGFBQVEsR0FBNkIsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUN4RCxZQUFPLEdBQTZCLElBQUksWUFBWSxFQUFFLENBQUM7UUFDdkQsZUFBVSxHQUE2QixJQUFJLFlBQVksRUFBRSxDQUFDO0tBWXZFO0lBWEcsUUFBUTtJQUNSLENBQUM7SUFDRCxhQUFhLENBQUMsU0FBcUI7UUFDL0IsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUE7SUFDakMsQ0FBQztJQUNELGdCQUFnQixDQUFDLFNBQXFCO1FBQ2xDLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFBO0lBQ2hDLENBQUM7SUFDRCxlQUFlLENBQUMsU0FBcUI7UUFDakMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUE7SUFDbkMsQ0FBQztrSUFmUSxpQkFBaUI7c0hBQWpCLGlCQUFpQiw2S0NOOUIsa3NDQXdCTzs7NEZEbEJNLGlCQUFpQjtrQkFKN0IsU0FBUzsrQkFDSSxrQkFBa0I7OEJBSW5CLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0ksUUFBUTtzQkFBakIsTUFBTTtnQkFDRyxPQUFPO3NCQUFoQixNQUFNO2dCQUNHLFVBQVU7c0JBQW5CLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0IH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7IElGb3JtRmllbGQgfSBmcm9tIFwiLi4vLi4vLi4vLi4vbW9kZWxzL2Zvcm0ubW9kZWxcIjtcbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAndGV4dEFyZWEtY29udHJvbCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL3RleHRBcmVhLWNvbnRyb2wuY29tcG9uZW50Lmh0bWwnLFxufSlcbmV4cG9ydCBjbGFzcyBUZXh0QXJlYUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gICAgQElucHV0KCkgZm9ybUZpZWxkOiBJRm9ybUZpZWxkIHwgYW55O1xuICAgIEBPdXRwdXQoKSBvbkNoYW5nZTogRXZlbnRFbWl0dGVyPElGb3JtRmllbGQ+ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuICAgIEBPdXRwdXQoKSBvbkNsaWNrOiBFdmVudEVtaXR0ZXI8SUZvcm1GaWVsZD4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG4gICAgQE91dHB1dCgpIG9uRm9jdXNPdXQ6IEV2ZW50RW1pdHRlcjxJRm9ybUZpZWxkPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcbiAgICBuZ09uSW5pdCgpIHtcbiAgICB9XG4gICAgb25DaGFuZ2VFdmVudChmb3JtRmllbGQ6IElGb3JtRmllbGQpIHtcbiAgICAgICAgdGhpcy5vbkNoYW5nZS5lbWl0KGZvcm1GaWVsZClcbiAgICB9XG4gICAgaGFuZGxlQ2xpY2tFdmVudChmb3JtRmllbGQ6IElGb3JtRmllbGQpIHtcbiAgICAgICAgdGhpcy5vbkNsaWNrLmVtaXQoZm9ybUZpZWxkKVxuICAgIH1cbiAgICBvbkZvY3VzT3V0RXZlbnQoZm9ybUZpZWxkOiBJRm9ybUZpZWxkKSB7XG4gICAgICAgIHRoaXMub25Gb2N1c091dC5lbWl0KGZvcm1GaWVsZClcbiAgICB9XG59IiwiPHNwYW4gKm5nSWY9XCIhZm9ybUZpZWxkLmhpZGRlblwiPlxuICAgIDxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtY29sdW1uXCI+XG4gICAgICAgIDxsYWJlbCBbY2xhc3NdPVwiZm9ybUZpZWxkLmxhYmVsLm9uQ2xpY2sgPyAnY3VzdG9tLWxpbmsnIDogJydcIiAoY2xpY2spPVwiXG4gICAgICAgICAgICBmb3JtRmllbGQubGFiZWwub25DbGljayAmJiBmb3JtRmllbGQubGFiZWwub25DbGljaygpXG4gICAgICAgICAgICBcIiBkYXRhLXRpdGxlLWVsZW1lbnQ9XCJzZWxmXCI+XG4gICAgICAgICAgICB7e1xuICAgICAgICAgICAgZm9ybUZpZWxkLmxhYmVsLmxhYmVsQ29udHJvbFxuICAgICAgICAgICAgPyAnJ1xuICAgICAgICAgICAgOiBmb3JtRmllbGQubGFiZWwub25DbGlja1xuICAgICAgICAgICAgPyBmb3JtRmllbGQubGFiZWwubmFtZVxuICAgICAgICAgICAgOiBmb3JtRmllbGQubGFiZWxcbiAgICAgICAgICAgIH19XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cImZvcm1GaWVsZC5yZXF1aXJlZEZpZWxkXCJcbiAgICAgICAgICAgICAgICBbY2xhc3NdPVwiJ3JlcXVpcmVkLXN0YXIgJyArIChmb3JtRmllbGQ/LmVycm9yTWVzc2FnZSA/ICcgaW52YWxpZCAnIDogJycpXCI+Kjwvc3Bhbj5cbiAgICAgICAgPC9sYWJlbD5cbiAgICAgICAgPHRleHRhcmVhIGRhdGEtdGl0bGUtZWxlbWVudD1cInNlbGZcIiBbY2xhc3NdPVwiXG4gICAgICAgICAgZm9ybUZpZWxkLmVycm9yTWVzc2FnZVxuICAgICAgICAgICAgPyAnbmctaW52YWxpZCBuZy1kaXJ0eSdcbiAgICAgICAgICAgIDogJ2Zvcm0tY29udHJvbCdcbiAgICAgICAgXCIgcElucHV0VGV4dGFyZWEgW3Jvd3NdPVwiZm9ybUZpZWxkLnJvdyA/IGZvcm1GaWVsZC5yb3cgOiAxIFwiIChjaGFuZ2UpPVwib25DaGFuZ2VFdmVudChmb3JtRmllbGQpXCJcbiAgICAgICAgICAgIChjbGljayk9XCJoYW5kbGVDbGlja0V2ZW50KGZvcm1GaWVsZClcIiBbKG5nTW9kZWwpXT1cImZvcm1GaWVsZC52YWx1ZVwiIFtuYW1lXT1cImZvcm1GaWVsZC5maWVsZFwiXG4gICAgICAgICAgICBbZGlzYWJsZWRdPVwiZm9ybUZpZWxkLmRpc2FibGVkXCIgW25nU3R5bGVdPVwie2hlaWdodDogZm9ybUZpZWxkLmhlaWdodCA/IGZvcm1GaWVsZC5oZWlnaHQgOiAnJ31cIlxuICAgICAgICAgICAgKGJsdXIpPVwib25Gb2N1c091dEV2ZW50KGZvcm1GaWVsZClcIj48L3RleHRhcmVhPlxuICAgIDwvZGl2PlxuPC9zcGFuPiJdfQ==
|
|
@@ -4,6 +4,7 @@ import * as i1 from "primeng/dynamicdialog";
|
|
|
4
4
|
import * as i2 from "@angular/common";
|
|
5
5
|
import * as i3 from "@angular/forms";
|
|
6
6
|
import * as i4 from "primeng/button";
|
|
7
|
+
import * as i5 from "primeng/inputtextarea";
|
|
7
8
|
export class NotesComponent {
|
|
8
9
|
constructor(ref, config) {
|
|
9
10
|
this.ref = ref;
|
|
@@ -22,10 +23,10 @@ export class NotesComponent {
|
|
|
22
23
|
this.ref.close(this.note);
|
|
23
24
|
}
|
|
24
25
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NotesComponent, deps: [{ token: i1.DynamicDialogRef }, { token: i1.DynamicDialogConfig }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
25
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NotesComponent, selector: "se-notes", ngImport: i0, template: "<textarea\n class=\"col-12 notes\"\n
|
|
26
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NotesComponent, selector: "se-notes", ngImport: i0, template: "<textarea\n class=\"col-12 notes\"\n pInputTextarea\n [disabled]=\"disabledText\"\n [(ngModel)]=\"note\"\n #name=\"ngModel\"\n required\n></textarea>\n<span\n *ngIf=\"name.invalid && (name.dirty || name.touched)\"\n class=\"validationClass\"\n>\n Note can not be empty\n</span>\n\n<div *ngIf=\"!disabledText\" class=\"col-12 flex justify-content-end\">\n <button\n pButton\n type=\"submit\"\n icon=\"pi pi-check\"\n label=\"OK\"\n class=\"p-button-success\"\n (click)=\"handleOk()\"\n [disabled]=\"name.invalid\"\n ></button>\n\n <!-- Close button -->\n <button\n pButton\n type=\"button\"\n icon=\"pi pi-times\"\n label=\"Cancel\"\n class=\"p-button-danger ml-3\"\n (click)=\"handleCancel()\"\n ></button>\n</div>\n", styles: [".validationClass{color:red}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i4.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }, { kind: "directive", type: i5.InputTextarea, selector: "[pInputTextarea]", inputs: ["autoResize"], outputs: ["onResize"] }] }); }
|
|
26
27
|
}
|
|
27
28
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NotesComponent, decorators: [{
|
|
28
29
|
type: Component,
|
|
29
|
-
args: [{ selector: 'se-notes', template: "<textarea\n class=\"col-12 notes\"\n
|
|
30
|
+
args: [{ selector: 'se-notes', template: "<textarea\n class=\"col-12 notes\"\n pInputTextarea\n [disabled]=\"disabledText\"\n [(ngModel)]=\"note\"\n #name=\"ngModel\"\n required\n></textarea>\n<span\n *ngIf=\"name.invalid && (name.dirty || name.touched)\"\n class=\"validationClass\"\n>\n Note can not be empty\n</span>\n\n<div *ngIf=\"!disabledText\" class=\"col-12 flex justify-content-end\">\n <button\n pButton\n type=\"submit\"\n icon=\"pi pi-check\"\n label=\"OK\"\n class=\"p-button-success\"\n (click)=\"handleOk()\"\n [disabled]=\"name.invalid\"\n ></button>\n\n <!-- Close button -->\n <button\n pButton\n type=\"button\"\n icon=\"pi pi-times\"\n label=\"Cancel\"\n class=\"p-button-danger ml-3\"\n (click)=\"handleCancel()\"\n ></button>\n</div>\n", styles: [".validationClass{color:red}\n"] }]
|
|
30
31
|
}], ctorParameters: function () { return [{ type: i1.DynamicDialogRef }, { type: i1.DynamicDialogConfig }]; } });
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90ZXMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvc2UtdWktdG9vbGtpdC9zcmMvbGliL2NvbXBvbmVudHMvc2hhcmVkL25vdGVzL25vdGVzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3NlLXVpLXRvb2xraXQvc3JjL2xpYi9jb21wb25lbnRzL3NoYXJlZC9ub3Rlcy9ub3Rlcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOzs7Ozs7O0FBUWxELE1BQU0sT0FBTyxjQUFjO0lBQ3pCLFlBQ1MsR0FBcUIsRUFDckIsTUFBMkI7UUFEM0IsUUFBRyxHQUFILEdBQUcsQ0FBa0I7UUFDckIsV0FBTSxHQUFOLE1BQU0sQ0FBcUI7UUFHN0IsU0FBSSxHQUFXLEVBQUUsQ0FBQztRQUNsQixpQkFBWSxHQUFZLEtBQUssQ0FBQztJQUhqQyxDQUFDO0lBS0wsUUFBUTtRQUNOLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsS0FBSyxJQUFJLEVBQUUsQ0FBQztRQUN6QyxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQztJQUNwRCxDQUFDO0lBRUQsWUFBWTtRQUNWLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDbkIsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDNUIsQ0FBQztrSUFwQlUsY0FBYztzSEFBZCxjQUFjLGdEQ1IzQixtd0JBb0NBOzs0RkQ1QmEsY0FBYztrQkFMMUIsU0FBUzsrQkFDRSxVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IER5bmFtaWNEaWFsb2dSZWYsIER5bmFtaWNEaWFsb2dDb25maWcgfSBmcm9tICdwcmltZW5nL2R5bmFtaWNkaWFsb2cnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdzZS1ub3RlcycsXG4gIHRlbXBsYXRlVXJsOiAnLi9ub3Rlcy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL25vdGVzLmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIE5vdGVzQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgY29uc3RydWN0b3IoXG4gICAgcHVibGljIHJlZjogRHluYW1pY0RpYWxvZ1JlZixcbiAgICBwdWJsaWMgY29uZmlnOiBEeW5hbWljRGlhbG9nQ29uZmlnXG4gICkgeyB9XG5cbiAgcHVibGljIG5vdGU6IHN0cmluZyA9ICcnO1xuICBwdWJsaWMgZGlzYWJsZWRUZXh0OiBib29sZWFuID0gZmFsc2U7XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5ub3RlID0gdGhpcy5jb25maWcuZGF0YS52YWx1ZSA/PyAnJztcbiAgICB0aGlzLmRpc2FibGVkVGV4dCA9IHRoaXMuY29uZmlnLmRhdGEuZGlzYWJsZWRUZXh0O1xuICB9XG5cbiAgaGFuZGxlQ2FuY2VsKCkge1xuICAgIHRoaXMucmVmLmNsb3NlKCk7XG4gIH1cblxuICBoYW5kbGVPaygpIHtcbiAgICB0aGlzLnJlZi5jbG9zZSh0aGlzLm5vdGUpO1xuICB9XG59XG4iLCI8dGV4dGFyZWFcbiAgY2xhc3M9XCJjb2wtMTIgbm90ZXNcIlxuICBwSW5wdXRUZXh0YXJlYVxuICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRUZXh0XCJcbiAgWyhuZ01vZGVsKV09XCJub3RlXCJcbiAgI25hbWU9XCJuZ01vZGVsXCJcbiAgcmVxdWlyZWRcbj48L3RleHRhcmVhPlxuPHNwYW5cbiAgKm5nSWY9XCJuYW1lLmludmFsaWQgJiYgKG5hbWUuZGlydHkgfHwgbmFtZS50b3VjaGVkKVwiXG4gIGNsYXNzPVwidmFsaWRhdGlvbkNsYXNzXCJcbj5cbiAgTm90ZSBjYW4gbm90IGJlIGVtcHR5XG48L3NwYW4+XG5cbjxkaXYgKm5nSWY9XCIhZGlzYWJsZWRUZXh0XCIgY2xhc3M9XCJjb2wtMTIgZmxleCBqdXN0aWZ5LWNvbnRlbnQtZW5kXCI+XG4gIDxidXR0b25cbiAgICBwQnV0dG9uXG4gICAgdHlwZT1cInN1Ym1pdFwiXG4gICAgaWNvbj1cInBpIHBpLWNoZWNrXCJcbiAgICBsYWJlbD1cIk9LXCJcbiAgICBjbGFzcz1cInAtYnV0dG9uLXN1Y2Nlc3NcIlxuICAgIChjbGljayk9XCJoYW5kbGVPaygpXCJcbiAgICBbZGlzYWJsZWRdPVwibmFtZS5pbnZhbGlkXCJcbiAgPjwvYnV0dG9uPlxuXG4gIDwhLS0gQ2xvc2UgYnV0dG9uIC0tPlxuICA8YnV0dG9uXG4gICAgcEJ1dHRvblxuICAgIHR5cGU9XCJidXR0b25cIlxuICAgIGljb249XCJwaSBwaS10aW1lc1wiXG4gICAgbGFiZWw9XCJDYW5jZWxcIlxuICAgIGNsYXNzPVwicC1idXR0b24tZGFuZ2VyIG1sLTNcIlxuICAgIChjbGljayk9XCJoYW5kbGVDYW5jZWwoKVwiXG4gID48L2J1dHRvbj5cbjwvZGl2PlxuIl19
|
|
@@ -45,6 +45,8 @@ import * as i22 from 'primeng/inputnumber';
|
|
|
45
45
|
import { InputNumberModule } from 'primeng/inputnumber';
|
|
46
46
|
import * as i17$1 from 'primeng/overlaypanel';
|
|
47
47
|
import { OverlayPanelModule } from 'primeng/overlaypanel';
|
|
48
|
+
import * as i5 from 'primeng/inputtextarea';
|
|
49
|
+
import { InputTextareaModule } from 'primeng/inputtextarea';
|
|
48
50
|
import * as i17 from 'primeng/progressspinner';
|
|
49
51
|
import { ProgressSpinnerModule } from 'primeng/progressspinner';
|
|
50
52
|
import * as i20 from 'primeng/accordion';
|
|
@@ -66,7 +68,7 @@ import { GalleriaModule } from 'primeng/galleria';
|
|
|
66
68
|
import { RadioButtonModule } from 'primeng/radiobutton';
|
|
67
69
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
68
70
|
import { TabViewModule } from 'primeng/tabview';
|
|
69
|
-
import * as i5 from 'primeng/panelmenu';
|
|
71
|
+
import * as i5$1 from 'primeng/panelmenu';
|
|
70
72
|
import { PanelMenuModule } from 'primeng/panelmenu';
|
|
71
73
|
import * as i2$3 from 'ngx-cookie-service';
|
|
72
74
|
import * as i6$2 from 'primeng/avatar';
|
|
@@ -74,7 +76,6 @@ import { AvatarModule } from 'primeng/avatar';
|
|
|
74
76
|
import { MenuModule } from 'primeng/menu';
|
|
75
77
|
import { MessagesModule } from 'primeng/messages';
|
|
76
78
|
import { ChipModule } from 'primeng/chip';
|
|
77
|
-
import { InputTextareaModule } from 'primeng/inputtextarea';
|
|
78
79
|
|
|
79
80
|
var EGridAggregate;
|
|
80
81
|
(function (EGridAggregate) {
|
|
@@ -4692,11 +4693,11 @@ class NotesComponent {
|
|
|
4692
4693
|
this.ref.close(this.note);
|
|
4693
4694
|
}
|
|
4694
4695
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NotesComponent, deps: [{ token: i1$1.DynamicDialogRef }, { token: i1$1.DynamicDialogConfig }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4695
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NotesComponent, selector: "se-notes", ngImport: i0, template: "<textarea\n class=\"col-12 notes\"\n
|
|
4696
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NotesComponent, selector: "se-notes", ngImport: i0, template: "<textarea\n class=\"col-12 notes\"\n pInputTextarea\n [disabled]=\"disabledText\"\n [(ngModel)]=\"note\"\n #name=\"ngModel\"\n required\n></textarea>\n<span\n *ngIf=\"name.invalid && (name.dirty || name.touched)\"\n class=\"validationClass\"\n>\n Note can not be empty\n</span>\n\n<div *ngIf=\"!disabledText\" class=\"col-12 flex justify-content-end\">\n <button\n pButton\n type=\"submit\"\n icon=\"pi pi-check\"\n label=\"OK\"\n class=\"p-button-success\"\n (click)=\"handleOk()\"\n [disabled]=\"name.invalid\"\n ></button>\n\n <!-- Close button -->\n <button\n pButton\n type=\"button\"\n icon=\"pi pi-times\"\n label=\"Cancel\"\n class=\"p-button-danger ml-3\"\n (click)=\"handleCancel()\"\n ></button>\n</div>\n", styles: [".validationClass{color:red}\n"], dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3$1.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }, { kind: "directive", type: i5.InputTextarea, selector: "[pInputTextarea]", inputs: ["autoResize"], outputs: ["onResize"] }] }); }
|
|
4696
4697
|
}
|
|
4697
4698
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NotesComponent, decorators: [{
|
|
4698
4699
|
type: Component,
|
|
4699
|
-
args: [{ selector: 'se-notes', template: "<textarea\n class=\"col-12 notes\"\n
|
|
4700
|
+
args: [{ selector: 'se-notes', template: "<textarea\n class=\"col-12 notes\"\n pInputTextarea\n [disabled]=\"disabledText\"\n [(ngModel)]=\"note\"\n #name=\"ngModel\"\n required\n></textarea>\n<span\n *ngIf=\"name.invalid && (name.dirty || name.touched)\"\n class=\"validationClass\"\n>\n Note can not be empty\n</span>\n\n<div *ngIf=\"!disabledText\" class=\"col-12 flex justify-content-end\">\n <button\n pButton\n type=\"submit\"\n icon=\"pi pi-check\"\n label=\"OK\"\n class=\"p-button-success\"\n (click)=\"handleOk()\"\n [disabled]=\"name.invalid\"\n ></button>\n\n <!-- Close button -->\n <button\n pButton\n type=\"button\"\n icon=\"pi pi-times\"\n label=\"Cancel\"\n class=\"p-button-danger ml-3\"\n (click)=\"handleCancel()\"\n ></button>\n</div>\n", styles: [".validationClass{color:red}\n"] }]
|
|
4700
4701
|
}], ctorParameters: function () { return [{ type: i1$1.DynamicDialogRef }, { type: i1$1.DynamicDialogConfig }]; } });
|
|
4701
4702
|
|
|
4702
4703
|
class FormUtilComponent {
|
|
@@ -6596,11 +6597,11 @@ class TextAreaComponent {
|
|
|
6596
6597
|
this.onFocusOut.emit(formField);
|
|
6597
6598
|
}
|
|
6598
6599
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6599
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextAreaComponent, selector: "textArea-control", inputs: { formField: "formField" }, outputs: { onChange: "onChange", onClick: "onClick", onFocusOut: "onFocusOut" }, ngImport: i0, template: "
|
|
6600
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextAreaComponent, selector: "textArea-control", inputs: { formField: "formField" }, outputs: { onChange: "onChange", onClick: "onClick", onFocusOut: "onFocusOut" }, ngImport: i0, template: "<span *ngIf=\"!formField.hidden\">\n <div class=\"flex flex-column\">\n <label [class]=\"formField.label.onClick ? 'custom-link' : ''\" (click)=\"\n formField.label.onClick && formField.label.onClick()\n \" data-title-element=\"self\">\n {{\n formField.label.labelControl\n ? ''\n : formField.label.onClick\n ? formField.label.name\n : formField.label\n }}\n <span *ngIf=\"formField.requiredField\"\n [class]=\"'required-star ' + (formField?.errorMessage ? ' invalid ' : '')\">*</span>\n </label>\n <textarea data-title-element=\"self\" [class]=\"\n formField.errorMessage\n ? 'ng-invalid ng-dirty'\n : 'form-control'\n \" pInputTextarea [rows]=\"formField.row ? formField.row : 1 \" (change)=\"onChangeEvent(formField)\"\n (click)=\"handleClickEvent(formField)\" [(ngModel)]=\"formField.value\" [name]=\"formField.field\"\n [disabled]=\"formField.disabled\" [ngStyle]=\"{height: formField.height ? formField.height : ''}\"\n (blur)=\"onFocusOutEvent(formField)\"></textarea>\n </div>\n</span>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i5.InputTextarea, selector: "[pInputTextarea]", inputs: ["autoResize"], outputs: ["onResize"] }] }); }
|
|
6600
6601
|
}
|
|
6601
6602
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextAreaComponent, decorators: [{
|
|
6602
6603
|
type: Component,
|
|
6603
|
-
args: [{ selector: 'textArea-control', template: "
|
|
6604
|
+
args: [{ selector: 'textArea-control', template: "<span *ngIf=\"!formField.hidden\">\n <div class=\"flex flex-column\">\n <label [class]=\"formField.label.onClick ? 'custom-link' : ''\" (click)=\"\n formField.label.onClick && formField.label.onClick()\n \" data-title-element=\"self\">\n {{\n formField.label.labelControl\n ? ''\n : formField.label.onClick\n ? formField.label.name\n : formField.label\n }}\n <span *ngIf=\"formField.requiredField\"\n [class]=\"'required-star ' + (formField?.errorMessage ? ' invalid ' : '')\">*</span>\n </label>\n <textarea data-title-element=\"self\" [class]=\"\n formField.errorMessage\n ? 'ng-invalid ng-dirty'\n : 'form-control'\n \" pInputTextarea [rows]=\"formField.row ? formField.row : 1 \" (change)=\"onChangeEvent(formField)\"\n (click)=\"handleClickEvent(formField)\" [(ngModel)]=\"formField.value\" [name]=\"formField.field\"\n [disabled]=\"formField.disabled\" [ngStyle]=\"{height: formField.height ? formField.height : ''}\"\n (blur)=\"onFocusOutEvent(formField)\"></textarea>\n </div>\n</span>" }]
|
|
6604
6605
|
}], propDecorators: { formField: [{
|
|
6605
6606
|
type: Input
|
|
6606
6607
|
}], onChange: [{
|
|
@@ -12914,7 +12915,7 @@ class MenuBarComponent {
|
|
|
12914
12915
|
});
|
|
12915
12916
|
}
|
|
12916
12917
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuBarComponent, deps: [{ token: AuthenticationService }, { token: i2$3.CookieService }, { token: i6.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12917
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MenuBarComponent, selector: "se-menu-bar", inputs: { hiddenPanelMenu: "hiddenPanelMenu", toolTip: "toolTip", menuItemsTop: "menuItemsTop", menuItemsBottom: "menuItemsBottom", menuFooter: "menuFooter", menuTitle: "menuTitle", headshotPath: "headshotPath" }, outputs: { onClickEvent: "onClickEvent" }, usesOnChanges: true, ngImport: i0, template: "<ng-template #testavatar>\n <p-avatar\n pBadge\n (click)=\"clickEvent()\"\n [image]=\"headshotPath\"\n size=\"xlarge\"\n [hidden]=\"!this.headshotPath \"\n shape=\"circle\"\n class=\"pr-3\"\n [title]=\"toolTip\"\n ></p-avatar>\n <p-avatar\n pBadge\n (click)=\"clickEvent()\"\n icon=\"pi pi-user\"\n size=\"xlarge\"\n [hidden]=\"this.headshotPath\"\n shape=\"circle\"\n class=\"pr-3\"\n [title]=\"toolTip\"\n ></p-avatar>\n</ng-template>\n<div\n class=\"wrapper menu-bar-wrapper main-menu-bar menu-bar-component\"\n *ngIf=\"hiddenPanelMenu\"\n>\n <div\n *ngIf=\"!isMenubarHidden\"\n class=\"p-0 sidebar\"\n [ngClass]=\"toggleMenu ? 'hide-nav' : ''\"\n >\n <!-- [style]=\"{ backgroundColor: menuBackColor }\" -->\n <div class=\"flex align-items-center toggle-btn\">\n <ng-template *ngIf=\"!toggleMenu\" [ngTemplateOutlet]=\"testavatar\"></ng-template>\n\n <button class=\"toggle-btn hover-scale\" (click)=\"toggleSidebar()\">\n <i\n class=\"pi pi-fw toggle-icon\"\n [ngClass]=\"toggleMenu ? 'pi-chevron-right' : 'pi-chevron-left'\"\n ></i>\n\n <span>{{ menuTitle }}</span>\n </button>\n </div>\n <nav\n class=\"navbar navbar-expand-lg p-0 grow-1\"\n [ngClass]=\"toggleMenu ? 'hide-nav' : ''\"\n >\n <div class=\"main-menu-menus-wrapper\">\n <div class=\"top-menu-main-menu-wrapper\">\n <p-panelMenu\n [model]=\"menuBarItemsTop\"\n class=\"menuSidebar first\"\n ></p-panelMenu>\n </div>\n <div class=\"bottom-menu-main-menu-wrapper\">\n <ng-template *ngIf=\"toggleMenu\" [ngTemplateOutlet]=\"testavatar\"></ng-template>\n <p-panelMenu\n [model]=\"menuBarItemsBottom\"\n class=\"menuSidebar second\"\n ></p-panelMenu>\n </div>\n </div>\n </nav>\n <div class=\"nav-footer m-2\" [innerHtml]=\"menuFooter\"></div>\n </div>\n</div>\n", styles: [".wrapper{position:relative;z-index:1}:host ::ng-deep .p-avatar img{-o-object-fit:cover;object-fit:cover}.hide-nav .p-menuitem-text,.hide-nav .p-panelmenu-icon,.hide-nav+.nav-footer{display:none;opacity:0}\n"], dependencies: [{ kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i5.PanelMenu, selector: "p-panelMenu", inputs: ["model", "style", "styleClass", "multiple", "transitionOptions", "id", "tabindex"] }, { kind: "component", type: i6$2.Avatar, selector: "p-avatar", inputs: ["label", "icon", "image", "size", "shape", "style", "styleClass", "ariaLabel", "ariaLabelledBy"], outputs: ["onImageError"] }] }); }
|
|
12918
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MenuBarComponent, selector: "se-menu-bar", inputs: { hiddenPanelMenu: "hiddenPanelMenu", toolTip: "toolTip", menuItemsTop: "menuItemsTop", menuItemsBottom: "menuItemsBottom", menuFooter: "menuFooter", menuTitle: "menuTitle", headshotPath: "headshotPath" }, outputs: { onClickEvent: "onClickEvent" }, usesOnChanges: true, ngImport: i0, template: "<ng-template #testavatar>\n <p-avatar\n pBadge\n (click)=\"clickEvent()\"\n [image]=\"headshotPath\"\n size=\"xlarge\"\n [hidden]=\"!this.headshotPath \"\n shape=\"circle\"\n class=\"pr-3\"\n [title]=\"toolTip\"\n ></p-avatar>\n <p-avatar\n pBadge\n (click)=\"clickEvent()\"\n icon=\"pi pi-user\"\n size=\"xlarge\"\n [hidden]=\"this.headshotPath\"\n shape=\"circle\"\n class=\"pr-3\"\n [title]=\"toolTip\"\n ></p-avatar>\n</ng-template>\n<div\n class=\"wrapper menu-bar-wrapper main-menu-bar menu-bar-component\"\n *ngIf=\"hiddenPanelMenu\"\n>\n <div\n *ngIf=\"!isMenubarHidden\"\n class=\"p-0 sidebar\"\n [ngClass]=\"toggleMenu ? 'hide-nav' : ''\"\n >\n <!-- [style]=\"{ backgroundColor: menuBackColor }\" -->\n <div class=\"flex align-items-center toggle-btn\">\n <ng-template *ngIf=\"!toggleMenu\" [ngTemplateOutlet]=\"testavatar\"></ng-template>\n\n <button class=\"toggle-btn hover-scale\" (click)=\"toggleSidebar()\">\n <i\n class=\"pi pi-fw toggle-icon\"\n [ngClass]=\"toggleMenu ? 'pi-chevron-right' : 'pi-chevron-left'\"\n ></i>\n\n <span>{{ menuTitle }}</span>\n </button>\n </div>\n <nav\n class=\"navbar navbar-expand-lg p-0 grow-1\"\n [ngClass]=\"toggleMenu ? 'hide-nav' : ''\"\n >\n <div class=\"main-menu-menus-wrapper\">\n <div class=\"top-menu-main-menu-wrapper\">\n <p-panelMenu\n [model]=\"menuBarItemsTop\"\n class=\"menuSidebar first\"\n ></p-panelMenu>\n </div>\n <div class=\"bottom-menu-main-menu-wrapper\">\n <ng-template *ngIf=\"toggleMenu\" [ngTemplateOutlet]=\"testavatar\"></ng-template>\n <p-panelMenu\n [model]=\"menuBarItemsBottom\"\n class=\"menuSidebar second\"\n ></p-panelMenu>\n </div>\n </div>\n </nav>\n <div class=\"nav-footer m-2\" [innerHtml]=\"menuFooter\"></div>\n </div>\n</div>\n", styles: [".wrapper{position:relative;z-index:1}:host ::ng-deep .p-avatar img{-o-object-fit:cover;object-fit:cover}.hide-nav .p-menuitem-text,.hide-nav .p-panelmenu-icon,.hide-nav+.nav-footer{display:none;opacity:0}\n"], dependencies: [{ kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i5$1.PanelMenu, selector: "p-panelMenu", inputs: ["model", "style", "styleClass", "multiple", "transitionOptions", "id", "tabindex"] }, { kind: "component", type: i6$2.Avatar, selector: "p-avatar", inputs: ["label", "icon", "image", "size", "shape", "style", "styleClass", "ariaLabel", "ariaLabelledBy"], outputs: ["onImageError"] }] }); }
|
|
12918
12919
|
}
|
|
12919
12920
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuBarComponent, decorators: [{
|
|
12920
12921
|
type: Component,
|
|
@@ -13331,7 +13332,7 @@ class SidebarComponent {
|
|
|
13331
13332
|
});
|
|
13332
13333
|
}
|
|
13333
13334
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SidebarComponent, deps: [{ token: i0.Renderer2 }, { token: FormService }, { token: GridService }, { token: AuthenticationService }, { token: i1$1.DialogService }, { token: i6.Router }, { token: PageLoggerService }, { token: HyperlinkService }, { token: AlertService }, { token: i0.NgZone }, { token: i6.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13334
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SidebarComponent, selector: "se-sidebar", inputs: { navHidden: "navHidden", collapseSidebar: "collapseSidebar", menuTitle: "menuTitle", activeTestMode: "activeTestMode", sidebarItems: "sidebarItems" }, usesOnChanges: true, ngImport: i0, template: "<span\n *ngIf=\"!isSidebarHidden && sidebarItemsList && sidebarItemsList.length > 0\"\n>\n<span *ngIf=\"!navHidden\">\n <nav\n class=\"navbar navbar-expand-lg p-0 grow-1\"\n [ngClass]=\"toggleMenu ? 'hide-nav' : ''\"\n >\n <button class=\"toggle-btn\" (click)=\"toggleSidebar()\">\n <i\n class=\"pi pi-fw toggle-icon\"\n [ngClass]=\"{\n 'pi-chevron-left': (toggleMenu && !isLeftSidebar) || (!toggleMenu && isLeftSidebar),\n 'pi-chevron-right': (!toggleMenu && !isLeftSidebar) || (toggleMenu && isLeftSidebar)\n }\"\n ></i>\n <span>{{ menuTitle }}</span>\n </button>\n <p-panelMenu [model]=\"menuItems\" (click)=\"clickedMenu(menuItems)\"></p-panelMenu>\n </nav>\n</span>\n</span>", styles: [":host ::ng-deep .p-menu{width:auto!important}:host ::ng-deep .p-panelmenu-header-link .p-panelmenu-icon:before{display:none}.sidebar .navbar{width:260px;overflow:auto;transition:width .5s;-webkit-transition:width .5s}.hide-nav .toggle-btn span{display:none}:host ::ng-deep .p-panelmenu-panel,:host ::ng-deep .p-element,:host ::ng-deep .p-panelmenu-header,:host ::ng-deep .p-panelmenu .p-panelmenu-header{border-bottom:0!important}:host ::ng-deep .hide-nav .p-menuitem-text,:host ::ng-deep .hide-nav .p-panelmenu-icon,:host ::ng-deep .hide-nav+.nav-footer{display:none;opacity:0}:host ::ng-deep nav.hide-nav .p-panelmenu-header-label{display:none;opacity:0}:host ::ng-deep nav .p-panelmenu{margin-top:10px}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel{border-width:unset;background:none;border-style:unset;border-color:unset;padding-block:0}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel .p-panelmenu-header:not(.p-disabled):hover .p-panelmenu-header-content{background:transparent}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-link{padding:0}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-link .p-panelmenu-submenu-icon{color:#3182e1;font-size:17px;margin-right:15px}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-link:hover .p-panelmenu-submenu-icon{color:#23527c}\n"], dependencies: [{ kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PanelMenu, selector: "p-panelMenu", inputs: ["model", "style", "styleClass", "multiple", "transitionOptions", "id", "tabindex"] }] }); }
|
|
13335
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SidebarComponent, selector: "se-sidebar", inputs: { navHidden: "navHidden", collapseSidebar: "collapseSidebar", menuTitle: "menuTitle", activeTestMode: "activeTestMode", sidebarItems: "sidebarItems" }, usesOnChanges: true, ngImport: i0, template: "<span\n *ngIf=\"!isSidebarHidden && sidebarItemsList && sidebarItemsList.length > 0\"\n>\n<span *ngIf=\"!navHidden\">\n <nav\n class=\"navbar navbar-expand-lg p-0 grow-1\"\n [ngClass]=\"toggleMenu ? 'hide-nav' : ''\"\n >\n <button class=\"toggle-btn\" (click)=\"toggleSidebar()\">\n <i\n class=\"pi pi-fw toggle-icon\"\n [ngClass]=\"{\n 'pi-chevron-left': (toggleMenu && !isLeftSidebar) || (!toggleMenu && isLeftSidebar),\n 'pi-chevron-right': (!toggleMenu && !isLeftSidebar) || (toggleMenu && isLeftSidebar)\n }\"\n ></i>\n <span>{{ menuTitle }}</span>\n </button>\n <p-panelMenu [model]=\"menuItems\" (click)=\"clickedMenu(menuItems)\"></p-panelMenu>\n </nav>\n</span>\n</span>", styles: [":host ::ng-deep .p-menu{width:auto!important}:host ::ng-deep .p-panelmenu-header-link .p-panelmenu-icon:before{display:none}.sidebar .navbar{width:260px;overflow:auto;transition:width .5s;-webkit-transition:width .5s}.hide-nav .toggle-btn span{display:none}:host ::ng-deep .p-panelmenu-panel,:host ::ng-deep .p-element,:host ::ng-deep .p-panelmenu-header,:host ::ng-deep .p-panelmenu .p-panelmenu-header{border-bottom:0!important}:host ::ng-deep .hide-nav .p-menuitem-text,:host ::ng-deep .hide-nav .p-panelmenu-icon,:host ::ng-deep .hide-nav+.nav-footer{display:none;opacity:0}:host ::ng-deep nav.hide-nav .p-panelmenu-header-label{display:none;opacity:0}:host ::ng-deep nav .p-panelmenu{margin-top:10px}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel{border-width:unset;background:none;border-style:unset;border-color:unset;padding-block:0}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel .p-panelmenu-header:not(.p-disabled):hover .p-panelmenu-header-content{background:transparent}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-link{padding:0}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-link .p-panelmenu-submenu-icon{color:#3182e1;font-size:17px;margin-right:15px}:host ::ng-deep nav .p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-link:hover .p-panelmenu-submenu-icon{color:#23527c}\n"], dependencies: [{ kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5$1.PanelMenu, selector: "p-panelMenu", inputs: ["model", "style", "styleClass", "multiple", "transitionOptions", "id", "tabindex"] }] }); }
|
|
13335
13336
|
}
|
|
13336
13337
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SidebarComponent, decorators: [{
|
|
13337
13338
|
type: Component,
|