zek 14.2.89 → 14.2.91
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/esm2020/lib/components/base.component.mjs +2 -2
- package/esm2020/lib/components/core-ui.component.mjs +4 -4
- package/esm2020/lib/components/core.component.mjs +1 -1
- package/esm2020/lib/components/edit-base.component.mjs +1 -1
- package/esm2020/lib/components/list-base.component.mjs +1 -1
- package/esm2020/lib/models/pager.model.mjs +1 -8
- package/esm2020/lib/modules/alert/alert/alert.mjs +2 -2
- package/esm2020/lib/modules/bb/bb-modal-base.component.mjs +2 -2
- package/esm2020/lib/modules/bb/bb-modal-toolbar.mjs +2 -2
- package/esm2020/lib/modules/bb/bb.component.mjs +5 -5
- package/esm2020/lib/modules/edit-toolbar/edit-toolbar.component.mjs +4 -4
- package/esm2020/lib/modules/file-viewer/file-viewer.mjs +2 -2
- package/esm2020/lib/modules/file-viewer/module.mjs +5 -5
- package/esm2020/lib/modules/grid-toolbar/grid-toolbar/grid-toolbar.component.mjs +11 -11
- package/esm2020/lib/modules/list-toolbar/list-toolbar.component.mjs +7 -7
- package/esm2020/lib/modules/loading/loading.component.mjs +5 -5
- package/esm2020/lib/modules/loading/loading.module.mjs +9 -9
- package/esm2020/lib/modules/modal/filter-modal/filter-modal.component.mjs +6 -6
- package/esm2020/lib/modules/modal/modal/modal.component.mjs +35 -35
- package/esm2020/lib/modules/modal/modal.module.mjs +40 -40
- package/esm2020/lib/modules/modal/sum-modal/sum-modal.component.mjs +5 -5
- package/esm2020/lib/modules/page-title/page-title.component.mjs +2 -2
- package/esm2020/lib/modules/pager/pager/pager.component.mjs +6 -6
- package/esm2020/lib/modules/pager/pager.module.mjs +10 -10
- package/esm2020/lib/modules/password/password.component.mjs +2 -2
- package/esm2020/lib/modules/progress/progress.mjs +5 -5
- package/esm2020/lib/modules/radio/radio-button.component.mjs +2 -2
- package/esm2020/lib/modules/readonly/readonly.directive.mjs +2 -2
- package/esm2020/lib/modules/select/select.mjs +2 -2
- package/esm2020/lib/utils/convert.mjs +4 -1
- package/fesm2015/zek.mjs +149 -153
- package/fesm2015/zek.mjs.map +1 -1
- package/fesm2020/zek.mjs +149 -153
- package/fesm2020/zek.mjs.map +1 -1
- package/lib/components/edit-base.component.d.ts +3 -3
- package/lib/components/list-base.component.d.ts +4 -4
- package/lib/modules/file-viewer/file-viewer.d.ts +2 -2
- package/lib/modules/file-viewer/module.d.ts +1 -1
- package/lib/modules/loading/loading.component.d.ts +3 -3
- package/lib/modules/loading/loading.module.d.ts +4 -4
- package/lib/modules/modal/filter-modal/filter-modal.component.d.ts +4 -4
- package/lib/modules/modal/modal/modal.component.d.ts +18 -18
- package/lib/modules/modal/modal.module.d.ts +4 -4
- package/lib/modules/modal/sum-modal/sum-modal.component.d.ts +3 -3
- package/lib/modules/pager/pager/pager.component.d.ts +3 -3
- package/lib/modules/pager/pager.module.d.ts +4 -4
- package/lib/utils/convert.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/zek.mjs
CHANGED
|
@@ -335,6 +335,9 @@ class Convert {
|
|
|
335
335
|
}
|
|
336
336
|
return false;
|
|
337
337
|
}
|
|
338
|
+
static toBooleanProperty(value) {
|
|
339
|
+
return value != null && `${value}` !== 'false';
|
|
340
|
+
}
|
|
338
341
|
static parseNumber(value) {
|
|
339
342
|
if (typeof value === 'undefined' || value == null || (typeof value === 'string' && value.length === 0))
|
|
340
343
|
return null;
|
|
@@ -1491,19 +1494,12 @@ class Pager extends PagerBase {
|
|
|
1491
1494
|
class PagedListBase {
|
|
1492
1495
|
constructor() {
|
|
1493
1496
|
this.pager = new Pager();
|
|
1494
|
-
// constructor() {
|
|
1495
|
-
// this.pager = new Pager();
|
|
1496
|
-
// }
|
|
1497
1497
|
}
|
|
1498
1498
|
}
|
|
1499
1499
|
class PagedList extends PagedListBase {
|
|
1500
1500
|
constructor() {
|
|
1501
1501
|
super(...arguments);
|
|
1502
1502
|
this.data = [];
|
|
1503
|
-
// constructor() {
|
|
1504
|
-
// super();
|
|
1505
|
-
// this.data = [];
|
|
1506
|
-
// }
|
|
1507
1503
|
}
|
|
1508
1504
|
}
|
|
1509
1505
|
|
|
@@ -1929,7 +1925,7 @@ class BaseComponent extends CoreComponent {
|
|
|
1929
1925
|
return this._readOnly;
|
|
1930
1926
|
}
|
|
1931
1927
|
set readOnly(v) {
|
|
1932
|
-
this._readOnly = Convert.
|
|
1928
|
+
this._readOnly = Convert.toBooleanProperty(v);
|
|
1933
1929
|
}
|
|
1934
1930
|
get url() {
|
|
1935
1931
|
if (!this._url)
|
|
@@ -2088,7 +2084,7 @@ class CoreUiComponent extends CoreComponent {
|
|
|
2088
2084
|
return this._readonly;
|
|
2089
2085
|
}
|
|
2090
2086
|
set readonly(value) {
|
|
2091
|
-
let v = Convert.
|
|
2087
|
+
let v = Convert.toBooleanProperty(value);
|
|
2092
2088
|
if (this._readonly !== v) {
|
|
2093
2089
|
this._readonly = v;
|
|
2094
2090
|
this.onReadOnlyChanged();
|
|
@@ -2100,7 +2096,7 @@ class CoreUiComponent extends CoreComponent {
|
|
|
2100
2096
|
return this._disabled;
|
|
2101
2097
|
}
|
|
2102
2098
|
set disabled(value) {
|
|
2103
|
-
let v = Convert.
|
|
2099
|
+
let v = Convert.toBooleanProperty(value);
|
|
2104
2100
|
if (this._disabled !== v) {
|
|
2105
2101
|
this._disabled = v;
|
|
2106
2102
|
this.onDisabledChanged();
|
|
@@ -2112,7 +2108,7 @@ class CoreUiComponent extends CoreComponent {
|
|
|
2112
2108
|
return this._required;
|
|
2113
2109
|
}
|
|
2114
2110
|
set required(value) {
|
|
2115
|
-
let v = Convert.
|
|
2111
|
+
let v = Convert.toBooleanProperty(value);
|
|
2116
2112
|
if (this._required !== v) {
|
|
2117
2113
|
this._required = v;
|
|
2118
2114
|
this.onRequiredChanged();
|
|
@@ -2733,7 +2729,7 @@ class ZekAlert {
|
|
|
2733
2729
|
return this._showClose;
|
|
2734
2730
|
}
|
|
2735
2731
|
set showClose(v) {
|
|
2736
|
-
this._showClose = Convert.
|
|
2732
|
+
this._showClose = Convert.toBooleanProperty(v);
|
|
2737
2733
|
}
|
|
2738
2734
|
}
|
|
2739
2735
|
ZekAlert.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekAlert, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -3063,25 +3059,25 @@ class ButtonBrowseComponent extends CoreUiComponent {
|
|
|
3063
3059
|
return this._readOnly;
|
|
3064
3060
|
}
|
|
3065
3061
|
set readOnly(v) {
|
|
3066
|
-
this._readOnly = Convert.
|
|
3062
|
+
this._readOnly = Convert.toBooleanProperty(v);
|
|
3067
3063
|
}
|
|
3068
3064
|
get hide() {
|
|
3069
3065
|
return this._hide;
|
|
3070
3066
|
}
|
|
3071
3067
|
set hide(v) {
|
|
3072
|
-
this._hide = Convert.
|
|
3068
|
+
this._hide = Convert.toBooleanProperty(v);
|
|
3073
3069
|
}
|
|
3074
3070
|
get showInput() {
|
|
3075
3071
|
return this._showInput;
|
|
3076
3072
|
}
|
|
3077
3073
|
set showInput(v) {
|
|
3078
|
-
this._showInput = Convert.
|
|
3074
|
+
this._showInput = Convert.toBooleanProperty(v);
|
|
3079
3075
|
}
|
|
3080
3076
|
get multiSelect() {
|
|
3081
3077
|
return this._multiSelect;
|
|
3082
3078
|
}
|
|
3083
3079
|
set multiSelect(v) {
|
|
3084
|
-
this._multiSelect = Convert.
|
|
3080
|
+
this._multiSelect = Convert.toBooleanProperty(v);
|
|
3085
3081
|
}
|
|
3086
3082
|
get modal() {
|
|
3087
3083
|
if (!this._modal) {
|
|
@@ -3197,7 +3193,7 @@ class ButtonBrowseModalToolbarComponent {
|
|
|
3197
3193
|
return this._multiSelect;
|
|
3198
3194
|
}
|
|
3199
3195
|
set multiSelect(v) {
|
|
3200
|
-
this._multiSelect = Convert.
|
|
3196
|
+
this._multiSelect = Convert.toBooleanProperty(v);
|
|
3201
3197
|
}
|
|
3202
3198
|
chooseAll() {
|
|
3203
3199
|
if (!this.multiSelect)
|
|
@@ -3262,7 +3258,7 @@ class ButtonBrowseModalBaseComponent extends CoreComponent {
|
|
|
3262
3258
|
return this._multiSelect;
|
|
3263
3259
|
}
|
|
3264
3260
|
set multiSelect(v) {
|
|
3265
|
-
this._multiSelect = Convert.
|
|
3261
|
+
this._multiSelect = Convert.toBooleanProperty(v);
|
|
3266
3262
|
}
|
|
3267
3263
|
choose(value) {
|
|
3268
3264
|
this.onChoose.emit(value);
|
|
@@ -3710,19 +3706,19 @@ class EditToolbarComponent {
|
|
|
3710
3706
|
return this._showExport;
|
|
3711
3707
|
}
|
|
3712
3708
|
set showExport(v) {
|
|
3713
|
-
this._showExport = Convert.
|
|
3709
|
+
this._showExport = Convert.toBooleanProperty(v);
|
|
3714
3710
|
}
|
|
3715
3711
|
get showPrint() {
|
|
3716
3712
|
return this._showPrint;
|
|
3717
3713
|
}
|
|
3718
3714
|
set showPrint(v) {
|
|
3719
|
-
this._showPrint = Convert.
|
|
3715
|
+
this._showPrint = Convert.toBooleanProperty(v);
|
|
3720
3716
|
}
|
|
3721
3717
|
get readOnly() {
|
|
3722
3718
|
return this._readOnly;
|
|
3723
3719
|
}
|
|
3724
3720
|
set readOnly(v) {
|
|
3725
|
-
this._readOnly = Convert.
|
|
3721
|
+
this._readOnly = Convert.toBooleanProperty(v);
|
|
3726
3722
|
}
|
|
3727
3723
|
cancel() {
|
|
3728
3724
|
this.onCancel.emit();
|
|
@@ -3840,7 +3836,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
3840
3836
|
}] });
|
|
3841
3837
|
|
|
3842
3838
|
let nextUniqueId = 0;
|
|
3843
|
-
class
|
|
3839
|
+
class ZekModal extends CoreComponent {
|
|
3844
3840
|
constructor(translate) {
|
|
3845
3841
|
super();
|
|
3846
3842
|
this.translate = translate;
|
|
@@ -3895,61 +3891,61 @@ class ModalComponent extends CoreComponent {
|
|
|
3895
3891
|
return this._showOk;
|
|
3896
3892
|
}
|
|
3897
3893
|
set showOk(v) {
|
|
3898
|
-
this._showOk = Convert.
|
|
3894
|
+
this._showOk = Convert.toBooleanProperty(v);
|
|
3899
3895
|
}
|
|
3900
3896
|
get disabledOk() {
|
|
3901
3897
|
return this._disabledOk;
|
|
3902
3898
|
}
|
|
3903
3899
|
set disabledOk(v) {
|
|
3904
|
-
this._disabledOk = Convert.
|
|
3900
|
+
this._disabledOk = Convert.toBooleanProperty(v);
|
|
3905
3901
|
}
|
|
3906
3902
|
get showCancel() {
|
|
3907
3903
|
return this._showCancel;
|
|
3908
3904
|
}
|
|
3909
3905
|
set showCancel(v) {
|
|
3910
|
-
this._showCancel = Convert.
|
|
3906
|
+
this._showCancel = Convert.toBooleanProperty(v);
|
|
3911
3907
|
}
|
|
3912
3908
|
get autoHide() {
|
|
3913
3909
|
return this._autoHide;
|
|
3914
3910
|
}
|
|
3915
3911
|
set autoHide(v) {
|
|
3916
|
-
this._autoHide = Convert.
|
|
3912
|
+
this._autoHide = Convert.toBooleanProperty(v);
|
|
3917
3913
|
}
|
|
3918
3914
|
get large() {
|
|
3919
3915
|
return this._large;
|
|
3920
3916
|
}
|
|
3921
3917
|
set large(v) {
|
|
3922
|
-
this._large = Convert.
|
|
3918
|
+
this._large = Convert.toBooleanProperty(v);
|
|
3923
3919
|
}
|
|
3924
3920
|
get xl() {
|
|
3925
3921
|
return this._xl;
|
|
3926
3922
|
}
|
|
3927
3923
|
set xl(v) {
|
|
3928
|
-
this._xl = Convert.
|
|
3924
|
+
this._xl = Convert.toBooleanProperty(v);
|
|
3929
3925
|
}
|
|
3930
3926
|
get scrollable() {
|
|
3931
3927
|
return this._scrollable;
|
|
3932
3928
|
}
|
|
3933
3929
|
set scrollable(v) {
|
|
3934
|
-
this._scrollable = Convert.
|
|
3930
|
+
this._scrollable = Convert.toBooleanProperty(v);
|
|
3935
3931
|
}
|
|
3936
3932
|
get fullscreen() {
|
|
3937
3933
|
return this._fullscreen;
|
|
3938
3934
|
}
|
|
3939
3935
|
set fullscreen(v) {
|
|
3940
|
-
this._fullscreen = Convert.
|
|
3936
|
+
this._fullscreen = Convert.toBooleanProperty(v);
|
|
3941
3937
|
}
|
|
3942
3938
|
get showHeader() {
|
|
3943
3939
|
return this._showHeader;
|
|
3944
3940
|
}
|
|
3945
3941
|
set showHeader(v) {
|
|
3946
|
-
this._showHeader = Convert.
|
|
3942
|
+
this._showHeader = Convert.toBooleanProperty(v);
|
|
3947
3943
|
}
|
|
3948
3944
|
get showFooter() {
|
|
3949
3945
|
return this._showFooter;
|
|
3950
3946
|
}
|
|
3951
3947
|
set showFooter(v) {
|
|
3952
|
-
this._showFooter = Convert.
|
|
3948
|
+
this._showFooter = Convert.toBooleanProperty(v);
|
|
3953
3949
|
}
|
|
3954
3950
|
// public get modal(): any {
|
|
3955
3951
|
// if (!this._modal) {
|
|
@@ -4017,9 +4013,9 @@ class ModalComponent extends CoreComponent {
|
|
|
4017
4013
|
this.ok();
|
|
4018
4014
|
}
|
|
4019
4015
|
}
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4016
|
+
ZekModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModal, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4017
|
+
ZekModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekModal, selector: "zek-modal", inputs: { model: "model", showOk: "showOk", disabledOk: "disabledOk", showCancel: "showCancel", autoHide: "autoHide", title: "title", text: "text", icon: "icon", okButtonText: "okButtonText", componentType: "componentType", large: "large", xl: "xl", scrollable: "scrollable", fullscreen: "fullscreen", showHeader: "showHeader", showFooter: "showFooter" }, outputs: { onShown: "onShown", onHidden: "onHidden", onOk: "onOk", onValidating: "onValidating" }, usesInheritance: true, ngImport: i0, template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4018
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModal, decorators: [{
|
|
4023
4019
|
type: Component,
|
|
4024
4020
|
args: [{ selector: 'zek-modal', template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>" }]
|
|
4025
4021
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; }, propDecorators: { model: [{
|
|
@@ -4063,7 +4059,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4063
4059
|
}], onValidating: [{
|
|
4064
4060
|
type: Output
|
|
4065
4061
|
}] } });
|
|
4066
|
-
class
|
|
4062
|
+
class ZekDeleteModal extends ZekModal {
|
|
4067
4063
|
constructor(translate) {
|
|
4068
4064
|
super(translate);
|
|
4069
4065
|
this.icon = 'fas fa-fas fa-trash';
|
|
@@ -4072,13 +4068,13 @@ class DeleteModalComponent extends ModalComponent {
|
|
|
4072
4068
|
this.componentType = ComponentType.Delete;
|
|
4073
4069
|
}
|
|
4074
4070
|
}
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4071
|
+
ZekDeleteModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekDeleteModal, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4072
|
+
ZekDeleteModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekDeleteModal, selector: "zek-delete-modal", usesInheritance: true, ngImport: i0, template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4073
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekDeleteModal, decorators: [{
|
|
4078
4074
|
type: Component,
|
|
4079
4075
|
args: [{ selector: 'zek-delete-modal', template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>" }]
|
|
4080
4076
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
4081
|
-
class
|
|
4077
|
+
class ZekApproveModal extends ZekModal {
|
|
4082
4078
|
constructor(translate) {
|
|
4083
4079
|
super(translate);
|
|
4084
4080
|
this.icon = 'fas fa-thumbs-up';
|
|
@@ -4087,13 +4083,13 @@ class ApproveModalComponent extends ModalComponent {
|
|
|
4087
4083
|
this.componentType = ComponentType.Success;
|
|
4088
4084
|
}
|
|
4089
4085
|
}
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4086
|
+
ZekApproveModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekApproveModal, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4087
|
+
ZekApproveModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekApproveModal, selector: "zek-approve-modal", usesInheritance: true, ngImport: i0, template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekApproveModal, decorators: [{
|
|
4093
4089
|
type: Component,
|
|
4094
4090
|
args: [{ selector: 'zek-approve-modal', template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>" }]
|
|
4095
4091
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
4096
|
-
class
|
|
4092
|
+
class ZekSubmitModal extends ZekModal {
|
|
4097
4093
|
constructor(translate) {
|
|
4098
4094
|
super(translate);
|
|
4099
4095
|
this.icon = 'fas fa-thumbs-up';
|
|
@@ -4102,13 +4098,13 @@ class SubmitModalComponent extends ModalComponent {
|
|
|
4102
4098
|
this.componentType = ComponentType.Success;
|
|
4103
4099
|
}
|
|
4104
4100
|
}
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4101
|
+
ZekSubmitModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekSubmitModal, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4102
|
+
ZekSubmitModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekSubmitModal, selector: "zek-submit-modal", usesInheritance: true, ngImport: i0, template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekSubmitModal, decorators: [{
|
|
4108
4104
|
type: Component,
|
|
4109
4105
|
args: [{ selector: 'zek-submit-modal', template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>" }]
|
|
4110
4106
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
4111
|
-
class
|
|
4107
|
+
class ZekDisapproveModal extends ZekModal {
|
|
4112
4108
|
constructor(translate) {
|
|
4113
4109
|
super(translate);
|
|
4114
4110
|
this.icon = 'fas fa-thumbs-down';
|
|
@@ -4117,13 +4113,13 @@ class DisapproveModalComponent extends ModalComponent {
|
|
|
4117
4113
|
this.componentType = ComponentType.Delete;
|
|
4118
4114
|
}
|
|
4119
4115
|
}
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4116
|
+
ZekDisapproveModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekDisapproveModal, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4117
|
+
ZekDisapproveModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekDisapproveModal, selector: "zek-disapprove-modal", usesInheritance: true, ngImport: i0, template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekDisapproveModal, decorators: [{
|
|
4123
4119
|
type: Component,
|
|
4124
4120
|
args: [{ selector: 'zek-disapprove-modal', template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>" }]
|
|
4125
4121
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
4126
|
-
class
|
|
4122
|
+
class ZekRestoreModal extends ZekModal {
|
|
4127
4123
|
constructor(translate) {
|
|
4128
4124
|
super(translate);
|
|
4129
4125
|
this.icon = 'fas fa-redo';
|
|
@@ -4132,9 +4128,9 @@ class RestoreModalComponent extends ModalComponent {
|
|
|
4132
4128
|
this.componentType = ComponentType.Success;
|
|
4133
4129
|
}
|
|
4134
4130
|
}
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4131
|
+
ZekRestoreModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekRestoreModal, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4132
|
+
ZekRestoreModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekRestoreModal, selector: "zek-restore-modal", usesInheritance: true, ngImport: i0, template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekRestoreModal, decorators: [{
|
|
4138
4134
|
type: Component,
|
|
4139
4135
|
args: [{ selector: 'zek-restore-modal', template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"modal-{{elementId}}\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"large\" [class.modal-xl]=\"xl\" [class.modal-dialog-scrollable]=\"scrollable\" [class.modal-fullscreen]=\"fullscreen\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\" *ngIf=\"showHeader\">\r\n <ng-content select=\"header\"></ng-content>\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{title}}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n {{text}}\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\" *ngIf=\"showFooter\">\r\n <ng-content select=\"footer\"></ng-content>\r\n <button [class.visually-hidden]=\"!showOk\" [disabled]=\"disabledOk\" type=\"button\" class=\"btn {{cssButton()}}\" id=\"modal-ok-button-{{elementId}}\" (click)=\"ok()\"><i *ngIf=\"icon\" class=\"{{ icon }}\"></i> {{ okButtonText }}</button>\r\n <button [class.visually-hidden]=\"!showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>" }]
|
|
4140
4136
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
@@ -4208,7 +4204,7 @@ class ZekFileViewer extends CoreComponent {
|
|
|
4208
4204
|
}
|
|
4209
4205
|
}
|
|
4210
4206
|
ZekFileViewer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekFileViewer, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
4211
|
-
ZekFileViewer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekFileViewer, selector: "zek-file-viewer", providers: [], viewQueries: [{ propertyName: "viewModal", first: true, predicate: ["viewModal"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<zek-modal #viewModal [fullscreen]=\"true\" [showHeader]=\"true\" [showFooter]=\"false\">\r\n <ng-container *ngIf=\"src\">\r\n <iframe id=\"office\" width=\"100%\" height=\"99%\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" scrolling=\"no\" allowfullscreen=\"allowfullscreen\"\r\n [src]=\"src | safe:'resourceUrl'\">\r\n </iframe>\r\n </ng-container>\r\n</zek-modal>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type:
|
|
4207
|
+
ZekFileViewer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekFileViewer, selector: "zek-file-viewer", providers: [], viewQueries: [{ propertyName: "viewModal", first: true, predicate: ["viewModal"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<zek-modal #viewModal [fullscreen]=\"true\" [showHeader]=\"true\" [showFooter]=\"false\">\r\n <ng-container *ngIf=\"src\">\r\n <iframe id=\"office\" width=\"100%\" height=\"99%\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" scrolling=\"no\" allowfullscreen=\"allowfullscreen\"\r\n [src]=\"src | safe:'resourceUrl'\">\r\n </iframe>\r\n </ng-container>\r\n</zek-modal>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ZekModal, selector: "zek-modal", inputs: ["model", "showOk", "disabledOk", "showCancel", "autoHide", "title", "text", "icon", "okButtonText", "componentType", "large", "xl", "scrollable", "fullscreen", "showHeader", "showFooter"], outputs: ["onShown", "onHidden", "onOk", "onValidating"] }, { kind: "pipe", type: SafePipe, name: "safe" }] });
|
|
4212
4208
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekFileViewer, decorators: [{
|
|
4213
4209
|
type: Component,
|
|
4214
4210
|
args: [{ selector: 'zek-file-viewer', providers: [], template: "<zek-modal #viewModal [fullscreen]=\"true\" [showHeader]=\"true\" [showFooter]=\"false\">\r\n <ng-container *ngIf=\"src\">\r\n <iframe id=\"office\" width=\"100%\" height=\"99%\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" scrolling=\"no\" allowfullscreen=\"allowfullscreen\"\r\n [src]=\"src | safe:'resourceUrl'\">\r\n </iframe>\r\n </ng-container>\r\n</zek-modal>" }]
|
|
@@ -4217,7 +4213,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4217
4213
|
args: ['viewModal', { static: true }]
|
|
4218
4214
|
}] } });
|
|
4219
4215
|
|
|
4220
|
-
class
|
|
4216
|
+
class ZekFilterModal extends ZekModal {
|
|
4221
4217
|
constructor() {
|
|
4222
4218
|
super(...arguments);
|
|
4223
4219
|
this.onReset = new EventEmitter();
|
|
@@ -4229,16 +4225,16 @@ class FilterModalComponent extends ModalComponent {
|
|
|
4229
4225
|
return document.getElementById('filter-modal');
|
|
4230
4226
|
}
|
|
4231
4227
|
}
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4228
|
+
ZekFilterModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekFilterModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
4229
|
+
ZekFilterModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekFilterModal, selector: "zek-filter-modal", outputs: { onReset: "onReset" }, usesInheritance: true, ngImport: i0, template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"filter-modal\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"!xl\" [class.modal-xl]=\"xl\" >\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\">\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{ 'Action.Filter' | translate }}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\">\r\n <button type=\"button\" class=\"btn btn-primary\" (click)=\"ok()\"><i class=\"fa-solid fa-filter\"></i> {{ 'Action.Filter' | translate }}</button>\r\n <button *ngIf=\"showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n <button type=\"button\" class=\"btn btn-secondary\" (click)=\"reset()\"><i class=\"fa-solid fa-xmark\"></i> {{ 'Action.Reset' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>", dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekFilterModal, decorators: [{
|
|
4235
4231
|
type: Component,
|
|
4236
4232
|
args: [{ selector: 'zek-filter-modal', template: "<div (keydown.enter)=\"keyDown($event)\" class=\"modal fade\" data-bs-backdrop=\"static\" id=\"filter-modal\" tabindex=\"-1\" attr.aria-labelledby=\"modal-lable-{{elementId}}\" aria-hidden=\"true\">\r\n <div class=\"modal-dialog\" [class.modal-lg]=\"!xl\" [class.modal-xl]=\"xl\" >\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header\">\r\n <h5 class=\"modal-title\" id=\"modal-lable-{{elementId}}\">{{ 'Action.Filter' | translate }}</h5>\r\n <button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-label=\"Close\"></button>\r\n </div>\r\n <div class=\"modal-body\">\r\n <ng-content></ng-content>\r\n </div>\r\n <div class=\"modal-footer\">\r\n <button type=\"button\" class=\"btn btn-primary\" (click)=\"ok()\"><i class=\"fa-solid fa-filter\"></i> {{ 'Action.Filter' | translate }}</button>\r\n <button *ngIf=\"showCancel\" type=\"button\" class=\"btn btn-secondary\" id=\"modal-cancel-button-{{elementId}}\" data-bs-dismiss=\"modal\"><i class=\"fa-solid fa-ban\"></i> {{ 'Action.Cancel' | translate }}</button>\r\n <button type=\"button\" class=\"btn btn-secondary\" (click)=\"reset()\"><i class=\"fa-solid fa-xmark\"></i> {{ 'Action.Reset' | translate }}</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>" }]
|
|
4237
4233
|
}], propDecorators: { onReset: [{
|
|
4238
4234
|
type: Output
|
|
4239
4235
|
}] } });
|
|
4240
4236
|
|
|
4241
|
-
class
|
|
4237
|
+
class ZekSumModal {
|
|
4242
4238
|
sum() {
|
|
4243
4239
|
if (this.modal) {
|
|
4244
4240
|
this.modal.show();
|
|
@@ -4248,9 +4244,9 @@ class SumComponent {
|
|
|
4248
4244
|
}
|
|
4249
4245
|
}
|
|
4250
4246
|
}
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4247
|
+
ZekSumModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekSumModal, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4248
|
+
ZekSumModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekSumModal, selector: "zek-sum-modal", inputs: { model: "model" }, viewQueries: [{ propertyName: "modal", first: true, predicate: ["sumModal"], descendants: true }], ngImport: i0, template: "<zek-modal #sumModal [showCancel]=\"false\" [title]=\"'Action.Sum' | translate\">\r\n <table class=\"table table-striped table-borderless table-hover\">\r\n <tbody>\r\n <tr *ngFor=\"let item of model\">\r\n <td class=\"w-75\">{{item.key}}</td>\r\n <td class=\"w-25\">\r\n <ng-container *ngIf=\"item.key != 'Count'; else elseBlock\">{{item.value | number:'1.2' }}</ng-container>\r\n <ng-template #elseBlock>{{item.value}}</ng-template>\r\n </td>\r\n <tr>\r\n </tbody>\r\n </table>\r\n</zek-modal>", dependencies: [{ kind: "directive", type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ZekModal, selector: "zek-modal", inputs: ["model", "showOk", "disabledOk", "showCancel", "autoHide", "title", "text", "icon", "okButtonText", "componentType", "large", "xl", "scrollable", "fullscreen", "showHeader", "showFooter"], outputs: ["onShown", "onHidden", "onOk", "onValidating"] }, { kind: "pipe", type: i1$3.DecimalPipe, name: "number" }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekSumModal, decorators: [{
|
|
4254
4250
|
type: Component,
|
|
4255
4251
|
args: [{ selector: 'zek-sum-modal', template: "<zek-modal #sumModal [showCancel]=\"false\" [title]=\"'Action.Sum' | translate\">\r\n <table class=\"table table-striped table-borderless table-hover\">\r\n <tbody>\r\n <tr *ngFor=\"let item of model\">\r\n <td class=\"w-75\">{{item.key}}</td>\r\n <td class=\"w-25\">\r\n <ng-container *ngIf=\"item.key != 'Count'; else elseBlock\">{{item.value | number:'1.2' }}</ng-container>\r\n <ng-template #elseBlock>{{item.value}}</ng-template>\r\n </td>\r\n <tr>\r\n </tbody>\r\n </table>\r\n</zek-modal>" }]
|
|
4256
4252
|
}], propDecorators: { model: [{
|
|
@@ -4260,30 +4256,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4260
4256
|
args: ['sumModal', { static: false }]
|
|
4261
4257
|
}] } });
|
|
4262
4258
|
|
|
4263
|
-
class
|
|
4259
|
+
class ZekModalModule {
|
|
4264
4260
|
}
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
|
|
4261
|
+
ZekModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4262
|
+
ZekModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: ZekModalModule, declarations: [ZekModal,
|
|
4263
|
+
ZekDeleteModal,
|
|
4264
|
+
ZekApproveModal,
|
|
4265
|
+
ZekSubmitModal,
|
|
4266
|
+
ZekDisapproveModal,
|
|
4267
|
+
ZekRestoreModal,
|
|
4268
|
+
ZekFilterModal,
|
|
4269
|
+
ZekSumModal], imports: [CommonModule,
|
|
4274
4270
|
RouterModule,
|
|
4275
|
-
TranslateModule], exports: [
|
|
4276
|
-
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
|
|
4281
|
-
|
|
4282
|
-
|
|
4283
|
-
|
|
4271
|
+
TranslateModule], exports: [ZekModal,
|
|
4272
|
+
ZekDeleteModal,
|
|
4273
|
+
ZekApproveModal,
|
|
4274
|
+
ZekSubmitModal,
|
|
4275
|
+
ZekDisapproveModal,
|
|
4276
|
+
ZekRestoreModal,
|
|
4277
|
+
ZekFilterModal,
|
|
4278
|
+
ZekSumModal] });
|
|
4279
|
+
ZekModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModalModule, imports: [CommonModule,
|
|
4284
4280
|
RouterModule,
|
|
4285
4281
|
TranslateModule] });
|
|
4286
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4282
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModalModule, decorators: [{
|
|
4287
4283
|
type: NgModule,
|
|
4288
4284
|
args: [{
|
|
4289
4285
|
imports: [
|
|
@@ -4292,24 +4288,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4292
4288
|
TranslateModule
|
|
4293
4289
|
],
|
|
4294
4290
|
declarations: [
|
|
4295
|
-
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4291
|
+
ZekModal,
|
|
4292
|
+
ZekDeleteModal,
|
|
4293
|
+
ZekApproveModal,
|
|
4294
|
+
ZekSubmitModal,
|
|
4295
|
+
ZekDisapproveModal,
|
|
4296
|
+
ZekRestoreModal,
|
|
4297
|
+
ZekFilterModal,
|
|
4298
|
+
ZekSumModal
|
|
4303
4299
|
],
|
|
4304
4300
|
exports: [
|
|
4305
|
-
|
|
4306
|
-
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4301
|
+
ZekModal,
|
|
4302
|
+
ZekDeleteModal,
|
|
4303
|
+
ZekApproveModal,
|
|
4304
|
+
ZekSubmitModal,
|
|
4305
|
+
ZekDisapproveModal,
|
|
4306
|
+
ZekRestoreModal,
|
|
4307
|
+
ZekFilterModal,
|
|
4308
|
+
ZekSumModal
|
|
4313
4309
|
]
|
|
4314
4310
|
}]
|
|
4315
4311
|
}] });
|
|
@@ -4334,17 +4330,17 @@ class FileViewerModule {
|
|
|
4334
4330
|
}
|
|
4335
4331
|
FileViewerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FileViewerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4336
4332
|
FileViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: FileViewerModule, declarations: [ZekFileViewer], imports: [CommonModule,
|
|
4337
|
-
|
|
4333
|
+
ZekModalModule,
|
|
4338
4334
|
SafeModule], exports: [ZekFileViewer] });
|
|
4339
4335
|
FileViewerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FileViewerModule, imports: [CommonModule,
|
|
4340
|
-
|
|
4336
|
+
ZekModalModule,
|
|
4341
4337
|
SafeModule] });
|
|
4342
4338
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FileViewerModule, decorators: [{
|
|
4343
4339
|
type: NgModule,
|
|
4344
4340
|
args: [{
|
|
4345
4341
|
imports: [
|
|
4346
4342
|
CommonModule,
|
|
4347
|
-
|
|
4343
|
+
ZekModalModule,
|
|
4348
4344
|
SafeModule
|
|
4349
4345
|
],
|
|
4350
4346
|
declarations: [
|
|
@@ -4378,61 +4374,61 @@ class GridToolbarComponent {
|
|
|
4378
4374
|
return this._showEdit;
|
|
4379
4375
|
}
|
|
4380
4376
|
set showEdit(v) {
|
|
4381
|
-
this._showEdit = Convert.
|
|
4377
|
+
this._showEdit = Convert.toBooleanProperty(v);
|
|
4382
4378
|
}
|
|
4383
4379
|
get editEnabled() {
|
|
4384
4380
|
return this._editEnabled;
|
|
4385
4381
|
}
|
|
4386
4382
|
set editEnabled(v) {
|
|
4387
|
-
this._editEnabled = Convert.
|
|
4383
|
+
this._editEnabled = Convert.toBooleanProperty(v);
|
|
4388
4384
|
}
|
|
4389
4385
|
get showDelete() {
|
|
4390
4386
|
return this._showDelete;
|
|
4391
4387
|
}
|
|
4392
4388
|
set showDelete(v) {
|
|
4393
|
-
this._showDelete = Convert.
|
|
4389
|
+
this._showDelete = Convert.toBooleanProperty(v);
|
|
4394
4390
|
}
|
|
4395
4391
|
get deleteEnabled() {
|
|
4396
4392
|
return this._deleteEnabled;
|
|
4397
4393
|
}
|
|
4398
4394
|
set deleteEnabled(v) {
|
|
4399
|
-
this._deleteEnabled = Convert.
|
|
4395
|
+
this._deleteEnabled = Convert.toBooleanProperty(v);
|
|
4400
4396
|
}
|
|
4401
4397
|
get showRestore() {
|
|
4402
4398
|
return this._showRestore;
|
|
4403
4399
|
}
|
|
4404
4400
|
set showRestore(v) {
|
|
4405
|
-
this._showRestore = Convert.
|
|
4401
|
+
this._showRestore = Convert.toBooleanProperty(v);
|
|
4406
4402
|
}
|
|
4407
4403
|
get restoreEnabled() {
|
|
4408
4404
|
return this._restoreEnabled;
|
|
4409
4405
|
}
|
|
4410
4406
|
set restoreEnabled(v) {
|
|
4411
|
-
this._restoreEnabled = Convert.
|
|
4407
|
+
this._restoreEnabled = Convert.toBooleanProperty(v);
|
|
4412
4408
|
}
|
|
4413
4409
|
get showApprove() {
|
|
4414
4410
|
return this._showApprove;
|
|
4415
4411
|
}
|
|
4416
4412
|
set showApprove(v) {
|
|
4417
|
-
this._showApprove = Convert.
|
|
4413
|
+
this._showApprove = Convert.toBooleanProperty(v);
|
|
4418
4414
|
}
|
|
4419
4415
|
get approveEnabled() {
|
|
4420
4416
|
return this._approveEnabled;
|
|
4421
4417
|
}
|
|
4422
4418
|
set approveEnabled(v) {
|
|
4423
|
-
this._approveEnabled = Convert.
|
|
4419
|
+
this._approveEnabled = Convert.toBooleanProperty(v);
|
|
4424
4420
|
}
|
|
4425
4421
|
get showDisapprove() {
|
|
4426
4422
|
return this._showDisapprove;
|
|
4427
4423
|
}
|
|
4428
4424
|
set showDisapprove(v) {
|
|
4429
|
-
this._showDisapprove = Convert.
|
|
4425
|
+
this._showDisapprove = Convert.toBooleanProperty(v);
|
|
4430
4426
|
}
|
|
4431
4427
|
get disapproveEnabled() {
|
|
4432
4428
|
return this._disapproveEnabled;
|
|
4433
4429
|
}
|
|
4434
4430
|
set disapproveEnabled(v) {
|
|
4435
|
-
this._disapproveEnabled = Convert.
|
|
4431
|
+
this._disapproveEnabled = Convert.toBooleanProperty(v);
|
|
4436
4432
|
}
|
|
4437
4433
|
edit() {
|
|
4438
4434
|
//this.router.navigate([this.router.url, this.model]);
|
|
@@ -4550,37 +4546,37 @@ class ListToolbarComponent {
|
|
|
4550
4546
|
return this._isFiltered;
|
|
4551
4547
|
}
|
|
4552
4548
|
set isFiltered(v) {
|
|
4553
|
-
this._isFiltered = Convert.
|
|
4549
|
+
this._isFiltered = Convert.toBooleanProperty(v);
|
|
4554
4550
|
}
|
|
4555
4551
|
get showCreate() {
|
|
4556
4552
|
return this._showCreate;
|
|
4557
4553
|
}
|
|
4558
4554
|
set showCreate(v) {
|
|
4559
|
-
this._showCreate = Convert.
|
|
4555
|
+
this._showCreate = Convert.toBooleanProperty(v);
|
|
4560
4556
|
}
|
|
4561
4557
|
get showFilter() {
|
|
4562
4558
|
return this._showFilter;
|
|
4563
4559
|
}
|
|
4564
4560
|
set showFilter(v) {
|
|
4565
|
-
this._showFilter = Convert.
|
|
4561
|
+
this._showFilter = Convert.toBooleanProperty(v);
|
|
4566
4562
|
}
|
|
4567
4563
|
get showPrint() {
|
|
4568
4564
|
return this._showPrint;
|
|
4569
4565
|
}
|
|
4570
4566
|
set showPrint(v) {
|
|
4571
|
-
this._showPrint = Convert.
|
|
4567
|
+
this._showPrint = Convert.toBooleanProperty(v);
|
|
4572
4568
|
}
|
|
4573
4569
|
get showSum() {
|
|
4574
4570
|
return this._showSum;
|
|
4575
4571
|
}
|
|
4576
4572
|
set showSum(v) {
|
|
4577
|
-
this._showSum = Convert.
|
|
4573
|
+
this._showSum = Convert.toBooleanProperty(v);
|
|
4578
4574
|
}
|
|
4579
4575
|
get showExport() {
|
|
4580
4576
|
return this._showExport;
|
|
4581
4577
|
}
|
|
4582
4578
|
set showExport(v) {
|
|
4583
|
-
this._showExport = Convert.
|
|
4579
|
+
this._showExport = Convert.toBooleanProperty(v);
|
|
4584
4580
|
}
|
|
4585
4581
|
refresh() {
|
|
4586
4582
|
this.onRefresh.emit();
|
|
@@ -4725,7 +4721,7 @@ const LoadingInterceptorProvider = [{
|
|
|
4725
4721
|
multi: true
|
|
4726
4722
|
}];
|
|
4727
4723
|
|
|
4728
|
-
class
|
|
4724
|
+
class ZekLoading {
|
|
4729
4725
|
constructor(loadingInterceptor) {
|
|
4730
4726
|
this.loadingInterceptor = loadingInterceptor;
|
|
4731
4727
|
this.show = false;
|
|
@@ -4741,13 +4737,13 @@ class LoadingComponent {
|
|
|
4741
4737
|
}
|
|
4742
4738
|
}
|
|
4743
4739
|
}
|
|
4744
|
-
|
|
4745
|
-
|
|
4740
|
+
ZekLoading.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoading, deps: [{ token: LoadingInterceptor }], target: i0.ɵɵFactoryTarget.Component });
|
|
4741
|
+
ZekLoading.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekLoading, selector: "zek-loading", ngImport: i0, template: `
|
|
4746
4742
|
<div *ngIf="show" id="loading" class="progress">
|
|
4747
4743
|
<div class="progress-bar progress-bar-striped progress-bar-animated bg-danger" role="progressbar" style="width:100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
|
|
4748
4744
|
</div>
|
|
4749
4745
|
`, isInline: true, styles: ["#loading{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;user-select:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:10000;background-color:#00000080;outline:0;height:3px}#loading>.progress-bar{transition:none!important}\n"], dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
4750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoading, decorators: [{
|
|
4751
4747
|
type: Component,
|
|
4752
4748
|
args: [{ selector: 'zek-loading', template: `
|
|
4753
4749
|
<div *ngIf="show" id="loading" class="progress">
|
|
@@ -4756,29 +4752,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4756
4752
|
`, styles: ["#loading{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;user-select:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:10000;background-color:#00000080;outline:0;height:3px}#loading>.progress-bar{transition:none!important}\n"] }]
|
|
4757
4753
|
}], ctorParameters: function () { return [{ type: LoadingInterceptor }]; } });
|
|
4758
4754
|
|
|
4759
|
-
class
|
|
4755
|
+
class ZekLoadingModule {
|
|
4760
4756
|
}
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4757
|
+
ZekLoadingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoadingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4758
|
+
ZekLoadingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: ZekLoadingModule, declarations: [ZekLoading], imports: [CommonModule], exports: [ZekLoading] });
|
|
4759
|
+
ZekLoadingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoadingModule, providers: [
|
|
4764
4760
|
LoadingInterceptorProvider,
|
|
4765
4761
|
LoadingInterceptor,
|
|
4766
4762
|
], imports: [CommonModule] });
|
|
4767
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoadingModule, decorators: [{
|
|
4768
4764
|
type: NgModule,
|
|
4769
4765
|
args: [{
|
|
4770
4766
|
imports: [
|
|
4771
4767
|
CommonModule,
|
|
4772
4768
|
],
|
|
4773
4769
|
declarations: [
|
|
4774
|
-
|
|
4770
|
+
ZekLoading
|
|
4775
4771
|
],
|
|
4776
4772
|
providers: [
|
|
4777
4773
|
LoadingInterceptorProvider,
|
|
4778
4774
|
LoadingInterceptor,
|
|
4779
4775
|
],
|
|
4780
4776
|
exports: [
|
|
4781
|
-
|
|
4777
|
+
ZekLoading
|
|
4782
4778
|
]
|
|
4783
4779
|
}]
|
|
4784
4780
|
}] });
|
|
@@ -4793,7 +4789,7 @@ class PageTitleComponent {
|
|
|
4793
4789
|
return this._isEditPage;
|
|
4794
4790
|
}
|
|
4795
4791
|
set isEditPage(v) {
|
|
4796
|
-
this._isEditPage = Convert.
|
|
4792
|
+
this._isEditPage = Convert.toBooleanProperty(v);
|
|
4797
4793
|
}
|
|
4798
4794
|
}
|
|
4799
4795
|
PageTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PageTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -4832,7 +4828,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4832
4828
|
}]
|
|
4833
4829
|
}] });
|
|
4834
4830
|
|
|
4835
|
-
class
|
|
4831
|
+
class ZekPager {
|
|
4836
4832
|
constructor() {
|
|
4837
4833
|
this.pager = new Pager();
|
|
4838
4834
|
this._showPageSize = true;
|
|
@@ -4844,7 +4840,7 @@ class PagerComponent {
|
|
|
4844
4840
|
return this._showPageSize;
|
|
4845
4841
|
}
|
|
4846
4842
|
set showPageSize(v) {
|
|
4847
|
-
this._showPageSize = Convert.
|
|
4843
|
+
this._showPageSize = Convert.toBooleanProperty(v);
|
|
4848
4844
|
}
|
|
4849
4845
|
setPage(page) {
|
|
4850
4846
|
// if (!this.pager) return;
|
|
@@ -4859,9 +4855,9 @@ class PagerComponent {
|
|
|
4859
4855
|
this.onPageSizeChange.emit(pageSize);
|
|
4860
4856
|
}
|
|
4861
4857
|
}
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4858
|
+
ZekPager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPager, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4859
|
+
ZekPager.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekPager, selector: "zek-pager", inputs: { pager: "pager", showPageSize: "showPageSize", pagerAlign: "pagerAlign" }, outputs: { onPageChange: "onPageChange", onPageSizeChange: "onPageSizeChange" }, ngImport: i0, template: "<div *ngIf=\"pager\" class=\"row\">\r\n <div [ngClass]=\"{ 'col-sm-8': showPageSize, 'col-sm-12': !showPageSize}\">\r\n <nav aria-label=\"Pagination\">\r\n <ul class=\"pagination\" [ngClass]=\"{ 'justify-content-center': pagerAlign === 'center', 'justify-content-end': pagerAlign === 'end'}\">\r\n <li [class.disabled]=\"pager.isFirstPage\" class=\"page-item\">\r\n <a class=\"page-link\" (click)=\"setPage(1)\" href=\"javascript:void(0)\" [attr.aria-disabled]=\"pager.isFirstPage ? 'true' : null\" aria-label=\"First\">\r\n <span aria-hidden=\"true\">««</span>\r\n </a>\r\n </li>\r\n <li [class.disabled]=\"!pager.hasPreviousPage\" class=\"page-item\">\r\n <a class=\"page-link\" (click)=\"setPage(pager.pageNumber - 1)\" href=\"javascript:void(0)\" [attr.aria-disabled]=\"!pager.hasPreviousPage ? 'true' : null\" aria-label=\"Previous\">\r\n <span aria-hidden=\"true\">«</span>\r\n </a>\r\n </li>\r\n <li *ngFor=\"let page of pager.pages\" [class.active]=\"page === pager.pageNumber\" class=\"page-item\"><a class=\"page-link\" (click)=\"setPage(page)\" href=\"javascript:void(0)\">{{page}}</a></li>\r\n <li [class.disabled]=\"!pager.hasNextPage\" class=\"page-item\">\r\n <a class=\"page-link\" (click)=\"setPage(pager.pageNumber + 1)\" href=\"javascript:void(0)\" [attr.aria-disabled]=\"!pager.hasNextPage ? 'true' : null\" aria-label=\"Next\">\r\n <span aria-hidden=\"true\">»</span>\r\n </a>\r\n </li>\r\n <li [class.disabled]=\"pager.isLastPage\" class=\"page-item\">\r\n <a class=\"page-link\" (click)=\"setPage(pager.pageCount)\" href=\"javascript:void(0)\" [attr.aria-disabled]=\"pager.isLastPage ? 'true' : null\" aria-label=\"Last\">\r\n <span aria-hidden=\"true\">»»</span>\r\n </a>\r\n </li>\r\n </ul>\r\n </nav>\r\n </div>\r\n <div class=\"col-sm-4\" *ngIf=\"showPageSize\">\r\n <div class=\"float-end\">\r\n <div class=\"dropdown\">\r\n <button class=\"btn btn-secondary dropdown-toggle\" type=\"button\" id=\"page-size-button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\r\n {{pager.pageSize}}\r\n </button>\r\n <ul class=\"dropdown-menu dropdown-menu-end\" aria-labelledby=\"page-size-button\">\r\n <li><h6 class=\"dropdown-header\">{{ 'Pagination.PageSize' | translate }}</h6></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 10\" (click)=\"setPageSize(10)\" href=\"javascript:void(0)\">10</a></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 20\" (click)=\"setPageSize(20)\" href=\"javascript:void(0)\">20</a></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 50\" (click)=\"setPageSize(50)\" href=\"javascript:void(0)\">50</a></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 100\" (click)=\"setPageSize(100)\" href=\"javascript:void(0)\">100</a></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 500\" (click)=\"setPageSize(500)\" href=\"javascript:void(0)\">500</a></li>\r\n </ul>\r\n </div>\r\n </div>\r\n <div class=\"float-end mt-2\">\r\n {{pager.firstItemOnPage}} - {{pager.lastItemOnPage}} of {{pager.totalItemCount}} \r\n </div>\r\n </div>\r\n</div>", styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] });
|
|
4860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPager, decorators: [{
|
|
4865
4861
|
type: Component,
|
|
4866
4862
|
args: [{ selector: 'zek-pager', template: "<div *ngIf=\"pager\" class=\"row\">\r\n <div [ngClass]=\"{ 'col-sm-8': showPageSize, 'col-sm-12': !showPageSize}\">\r\n <nav aria-label=\"Pagination\">\r\n <ul class=\"pagination\" [ngClass]=\"{ 'justify-content-center': pagerAlign === 'center', 'justify-content-end': pagerAlign === 'end'}\">\r\n <li [class.disabled]=\"pager.isFirstPage\" class=\"page-item\">\r\n <a class=\"page-link\" (click)=\"setPage(1)\" href=\"javascript:void(0)\" [attr.aria-disabled]=\"pager.isFirstPage ? 'true' : null\" aria-label=\"First\">\r\n <span aria-hidden=\"true\">««</span>\r\n </a>\r\n </li>\r\n <li [class.disabled]=\"!pager.hasPreviousPage\" class=\"page-item\">\r\n <a class=\"page-link\" (click)=\"setPage(pager.pageNumber - 1)\" href=\"javascript:void(0)\" [attr.aria-disabled]=\"!pager.hasPreviousPage ? 'true' : null\" aria-label=\"Previous\">\r\n <span aria-hidden=\"true\">«</span>\r\n </a>\r\n </li>\r\n <li *ngFor=\"let page of pager.pages\" [class.active]=\"page === pager.pageNumber\" class=\"page-item\"><a class=\"page-link\" (click)=\"setPage(page)\" href=\"javascript:void(0)\">{{page}}</a></li>\r\n <li [class.disabled]=\"!pager.hasNextPage\" class=\"page-item\">\r\n <a class=\"page-link\" (click)=\"setPage(pager.pageNumber + 1)\" href=\"javascript:void(0)\" [attr.aria-disabled]=\"!pager.hasNextPage ? 'true' : null\" aria-label=\"Next\">\r\n <span aria-hidden=\"true\">»</span>\r\n </a>\r\n </li>\r\n <li [class.disabled]=\"pager.isLastPage\" class=\"page-item\">\r\n <a class=\"page-link\" (click)=\"setPage(pager.pageCount)\" href=\"javascript:void(0)\" [attr.aria-disabled]=\"pager.isLastPage ? 'true' : null\" aria-label=\"Last\">\r\n <span aria-hidden=\"true\">»»</span>\r\n </a>\r\n </li>\r\n </ul>\r\n </nav>\r\n </div>\r\n <div class=\"col-sm-4\" *ngIf=\"showPageSize\">\r\n <div class=\"float-end\">\r\n <div class=\"dropdown\">\r\n <button class=\"btn btn-secondary dropdown-toggle\" type=\"button\" id=\"page-size-button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\r\n {{pager.pageSize}}\r\n </button>\r\n <ul class=\"dropdown-menu dropdown-menu-end\" aria-labelledby=\"page-size-button\">\r\n <li><h6 class=\"dropdown-header\">{{ 'Pagination.PageSize' | translate }}</h6></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 10\" (click)=\"setPageSize(10)\" href=\"javascript:void(0)\">10</a></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 20\" (click)=\"setPageSize(20)\" href=\"javascript:void(0)\">20</a></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 50\" (click)=\"setPageSize(50)\" href=\"javascript:void(0)\">50</a></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 100\" (click)=\"setPageSize(100)\" href=\"javascript:void(0)\">100</a></li>\r\n <li><a class=\"dropdown-item\" [class.active]=\"pager.pageSize === 500\" (click)=\"setPageSize(500)\" href=\"javascript:void(0)\">500</a></li>\r\n </ul>\r\n </div>\r\n </div>\r\n <div class=\"float-end mt-2\">\r\n {{pager.firstItemOnPage}} - {{pager.lastItemOnPage}} of {{pager.totalItemCount}} \r\n </div>\r\n </div>\r\n</div>", styles: [":host{display:block}\n"] }]
|
|
4867
4863
|
}], propDecorators: { pager: [{
|
|
@@ -4876,14 +4872,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4876
4872
|
type: Output
|
|
4877
4873
|
}] } });
|
|
4878
4874
|
|
|
4879
|
-
class
|
|
4875
|
+
class ZekPagerModule {
|
|
4880
4876
|
}
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
TranslateModule], exports: [
|
|
4884
|
-
|
|
4877
|
+
ZekPagerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPagerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4878
|
+
ZekPagerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: ZekPagerModule, declarations: [ZekPager], imports: [CommonModule,
|
|
4879
|
+
TranslateModule], exports: [ZekPager] });
|
|
4880
|
+
ZekPagerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPagerModule, imports: [CommonModule,
|
|
4885
4881
|
TranslateModule] });
|
|
4886
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPagerModule, decorators: [{
|
|
4887
4883
|
type: NgModule,
|
|
4888
4884
|
args: [{
|
|
4889
4885
|
imports: [
|
|
@@ -4891,9 +4887,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4891
4887
|
TranslateModule
|
|
4892
4888
|
],
|
|
4893
4889
|
declarations: [
|
|
4894
|
-
|
|
4890
|
+
ZekPager,
|
|
4895
4891
|
],
|
|
4896
|
-
exports: [
|
|
4892
|
+
exports: [ZekPager]
|
|
4897
4893
|
}]
|
|
4898
4894
|
}] });
|
|
4899
4895
|
|
|
@@ -4926,7 +4922,7 @@ class PasswordComponent {
|
|
|
4926
4922
|
return this._required;
|
|
4927
4923
|
}
|
|
4928
4924
|
set required(v) {
|
|
4929
|
-
this._required = Convert.
|
|
4925
|
+
this._required = Convert.toBooleanProperty(v);
|
|
4930
4926
|
}
|
|
4931
4927
|
get type() {
|
|
4932
4928
|
return this._type;
|
|
@@ -5027,13 +5023,13 @@ class ZekProgress {
|
|
|
5027
5023
|
return this._showValue;
|
|
5028
5024
|
}
|
|
5029
5025
|
set showValue(v) {
|
|
5030
|
-
this._showValue = Convert.
|
|
5026
|
+
this._showValue = Convert.toBooleanProperty(v);
|
|
5031
5027
|
}
|
|
5032
5028
|
get showTitle() {
|
|
5033
5029
|
return this._showTitle;
|
|
5034
5030
|
}
|
|
5035
5031
|
set showTitle(v) {
|
|
5036
|
-
this._showTitle = Convert.
|
|
5032
|
+
this._showTitle = Convert.toBooleanProperty(v);
|
|
5037
5033
|
}
|
|
5038
5034
|
get _title() {
|
|
5039
5035
|
return this._showTitle ? `${this._value} %` : null;
|
|
@@ -5042,13 +5038,13 @@ class ZekProgress {
|
|
|
5042
5038
|
return this._striped;
|
|
5043
5039
|
}
|
|
5044
5040
|
set striped(v) {
|
|
5045
|
-
this._striped = Convert.
|
|
5041
|
+
this._striped = Convert.toBooleanProperty(v);
|
|
5046
5042
|
}
|
|
5047
5043
|
get animated() {
|
|
5048
5044
|
return this._animated;
|
|
5049
5045
|
}
|
|
5050
5046
|
set animated(v) {
|
|
5051
|
-
this._animated = Convert.
|
|
5047
|
+
this._animated = Convert.toBooleanProperty(v);
|
|
5052
5048
|
}
|
|
5053
5049
|
get label() {
|
|
5054
5050
|
return this._label;
|
|
@@ -5142,7 +5138,7 @@ class RadioComponent extends CoreUiComponent {
|
|
|
5142
5138
|
return this._checked;
|
|
5143
5139
|
}
|
|
5144
5140
|
set checked(value) {
|
|
5145
|
-
const newCheckedState = Convert.
|
|
5141
|
+
const newCheckedState = Convert.toBooleanProperty(value);
|
|
5146
5142
|
if (this._checked !== newCheckedState) {
|
|
5147
5143
|
this._checked = newCheckedState;
|
|
5148
5144
|
this._markForCheck();
|
|
@@ -5255,7 +5251,7 @@ class ReadOnlyDirective {
|
|
|
5255
5251
|
this._readonly = false;
|
|
5256
5252
|
}
|
|
5257
5253
|
readonly(v) {
|
|
5258
|
-
this._readonly = Convert.
|
|
5254
|
+
this._readonly = Convert.toBooleanProperty(v);
|
|
5259
5255
|
}
|
|
5260
5256
|
}
|
|
5261
5257
|
ReadOnlyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ReadOnlyDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -5487,7 +5483,7 @@ class ZekSelectMultiple extends CoreUiComponent {
|
|
|
5487
5483
|
return this._multiple;
|
|
5488
5484
|
}
|
|
5489
5485
|
set multiple(value) {
|
|
5490
|
-
this._multiple = Convert.
|
|
5486
|
+
this._multiple = Convert.toBooleanProperty(value);
|
|
5491
5487
|
}
|
|
5492
5488
|
get data() {
|
|
5493
5489
|
return this._data;
|
|
@@ -6625,5 +6621,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
6625
6621
|
* Generated bundle index. Do not edit.
|
|
6626
6622
|
*/
|
|
6627
6623
|
|
|
6628
|
-
export { API_BASE_URL, AgeModule, AgePipe, Alert, AlertModule, AlertService, AlertType, AppBaseModule,
|
|
6624
|
+
export { API_BASE_URL, AgeModule, AgePipe, Alert, AlertModule, AlertService, AlertType, AppBaseModule, ArrayHelper, AuthGuardService, AuthService, AutoCompleteDirective, AutoCompleteModule, Base64Helper, BaseAlert, BaseComponent, BaseService, BitwiseHelper, BootstrapHelper, ButtonBrowseComponent, ButtonBrowseModalBaseComponent, ButtonBrowseModalToolbarComponent, ButtonBrowseModule, CallbackModule, CallbackPipe, CardComponent, CardModule, Color, ComponentType, Convert, CoreComponent, CoreUiComponent, CrudService, CssHelper, CustomHttpParamEncoder, DATE_FORMAT, DateAgoModule, DateAgoPipe, DateHelper, DateValueAccessor, DatepickerModule, EditBase, EditBaseComponent, EditComponent, EditFormComponent, EditToolbarComponent, EditToolbarModule, FileBase, FileBytes, FileHelper, FileModule, FileSizePipe, FileString, FileViewerModule, FilterBase, FilterHelper, Gender, GridToolbarBarComponent, GridToolbarComponent, GridToolbarModule, HtmlHelper, HttpErrorHandler, KeyPair, KeyPairChecked, KeyPairEx, KeyPairRequired, LANGUAGE, ListBase, ListBaseComponent, ListToolbarComponent, ListToolbarModule, MathHelper, Month, ObjectHelper, OverlapHelper, PageTitleComponent, PageTitleModule, PagedList, PagedListBase, Pager, PagerBase, PagerHelper, PasswordComponent, PasswordModule, PeriodRelation, PrintType, ProgressModule, RECAPTCHA_SITE_KEY, RadioComponent, RadioModule, RandomHelper, RangeValidator, ReCaptchaService, ReadOnlyDirective, ReadOnlyModule, RecaptchaModule, SafeModule, SafePipe, Select2Component, Select2Module, Select2MultipleComponent, Select2MultipleModule, SortButtonGroupComponent, SortDirective, SortModule, StorageHelper, StringHelper, TimeHelper, TimeModule, TimePipe, TimerService, Toast, Tree, UrlHelper, ValidEventArgs, ValidationHelper, ValidatorModule, Validators, ValidatorsModule, WebApiClient, WebApiModule, WizardComponent, WizardComponent2, WizardModule, ZekAlert, ZekApproveModal, ZekDeleteModal, ZekDisapproveModal, ZekFieldValidator, ZekFileViewer, ZekFilterModal, ZekLoading, ZekLoadingModule, ZekModal, ZekModalModule, ZekPager, ZekPagerModule, ZekProgress, ZekRestoreModal, ZekSelectModule, ZekSelectMultiple, ZekSubmitModal, ZekSumModal, ZekToast, ZekValidation, firstBy, handler, nullValidator, rangeValidator };
|
|
6629
6625
|
//# sourceMappingURL=zek.mjs.map
|