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/fesm2015/zek.mjs
CHANGED
|
@@ -336,6 +336,9 @@ class Convert {
|
|
|
336
336
|
}
|
|
337
337
|
return false;
|
|
338
338
|
}
|
|
339
|
+
static toBooleanProperty(value) {
|
|
340
|
+
return value != null && `${value}` !== 'false';
|
|
341
|
+
}
|
|
339
342
|
static parseNumber(value) {
|
|
340
343
|
if (typeof value === 'undefined' || value == null || (typeof value === 'string' && value.length === 0))
|
|
341
344
|
return null;
|
|
@@ -1492,19 +1495,12 @@ class Pager extends PagerBase {
|
|
|
1492
1495
|
class PagedListBase {
|
|
1493
1496
|
constructor() {
|
|
1494
1497
|
this.pager = new Pager();
|
|
1495
|
-
// constructor() {
|
|
1496
|
-
// this.pager = new Pager();
|
|
1497
|
-
// }
|
|
1498
1498
|
}
|
|
1499
1499
|
}
|
|
1500
1500
|
class PagedList extends PagedListBase {
|
|
1501
1501
|
constructor() {
|
|
1502
1502
|
super(...arguments);
|
|
1503
1503
|
this.data = [];
|
|
1504
|
-
// constructor() {
|
|
1505
|
-
// super();
|
|
1506
|
-
// this.data = [];
|
|
1507
|
-
// }
|
|
1508
1504
|
}
|
|
1509
1505
|
}
|
|
1510
1506
|
|
|
@@ -1936,7 +1932,7 @@ class BaseComponent extends CoreComponent {
|
|
|
1936
1932
|
return this._readOnly;
|
|
1937
1933
|
}
|
|
1938
1934
|
set readOnly(v) {
|
|
1939
|
-
this._readOnly = Convert.
|
|
1935
|
+
this._readOnly = Convert.toBooleanProperty(v);
|
|
1940
1936
|
}
|
|
1941
1937
|
get url() {
|
|
1942
1938
|
if (!this._url)
|
|
@@ -2095,7 +2091,7 @@ class CoreUiComponent extends CoreComponent {
|
|
|
2095
2091
|
return this._readonly;
|
|
2096
2092
|
}
|
|
2097
2093
|
set readonly(value) {
|
|
2098
|
-
let v = Convert.
|
|
2094
|
+
let v = Convert.toBooleanProperty(value);
|
|
2099
2095
|
if (this._readonly !== v) {
|
|
2100
2096
|
this._readonly = v;
|
|
2101
2097
|
this.onReadOnlyChanged();
|
|
@@ -2107,7 +2103,7 @@ class CoreUiComponent extends CoreComponent {
|
|
|
2107
2103
|
return this._disabled;
|
|
2108
2104
|
}
|
|
2109
2105
|
set disabled(value) {
|
|
2110
|
-
let v = Convert.
|
|
2106
|
+
let v = Convert.toBooleanProperty(value);
|
|
2111
2107
|
if (this._disabled !== v) {
|
|
2112
2108
|
this._disabled = v;
|
|
2113
2109
|
this.onDisabledChanged();
|
|
@@ -2119,7 +2115,7 @@ class CoreUiComponent extends CoreComponent {
|
|
|
2119
2115
|
return this._required;
|
|
2120
2116
|
}
|
|
2121
2117
|
set required(value) {
|
|
2122
|
-
let v = Convert.
|
|
2118
|
+
let v = Convert.toBooleanProperty(value);
|
|
2123
2119
|
if (this._required !== v) {
|
|
2124
2120
|
this._required = v;
|
|
2125
2121
|
this.onRequiredChanged();
|
|
@@ -2773,7 +2769,7 @@ class ZekAlert {
|
|
|
2773
2769
|
return this._showClose;
|
|
2774
2770
|
}
|
|
2775
2771
|
set showClose(v) {
|
|
2776
|
-
this._showClose = Convert.
|
|
2772
|
+
this._showClose = Convert.toBooleanProperty(v);
|
|
2777
2773
|
}
|
|
2778
2774
|
}
|
|
2779
2775
|
ZekAlert.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekAlert, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -3105,25 +3101,25 @@ class ButtonBrowseComponent extends CoreUiComponent {
|
|
|
3105
3101
|
return this._readOnly;
|
|
3106
3102
|
}
|
|
3107
3103
|
set readOnly(v) {
|
|
3108
|
-
this._readOnly = Convert.
|
|
3104
|
+
this._readOnly = Convert.toBooleanProperty(v);
|
|
3109
3105
|
}
|
|
3110
3106
|
get hide() {
|
|
3111
3107
|
return this._hide;
|
|
3112
3108
|
}
|
|
3113
3109
|
set hide(v) {
|
|
3114
|
-
this._hide = Convert.
|
|
3110
|
+
this._hide = Convert.toBooleanProperty(v);
|
|
3115
3111
|
}
|
|
3116
3112
|
get showInput() {
|
|
3117
3113
|
return this._showInput;
|
|
3118
3114
|
}
|
|
3119
3115
|
set showInput(v) {
|
|
3120
|
-
this._showInput = Convert.
|
|
3116
|
+
this._showInput = Convert.toBooleanProperty(v);
|
|
3121
3117
|
}
|
|
3122
3118
|
get multiSelect() {
|
|
3123
3119
|
return this._multiSelect;
|
|
3124
3120
|
}
|
|
3125
3121
|
set multiSelect(v) {
|
|
3126
|
-
this._multiSelect = Convert.
|
|
3122
|
+
this._multiSelect = Convert.toBooleanProperty(v);
|
|
3127
3123
|
}
|
|
3128
3124
|
get modal() {
|
|
3129
3125
|
if (!this._modal) {
|
|
@@ -3240,7 +3236,7 @@ class ButtonBrowseModalToolbarComponent {
|
|
|
3240
3236
|
return this._multiSelect;
|
|
3241
3237
|
}
|
|
3242
3238
|
set multiSelect(v) {
|
|
3243
|
-
this._multiSelect = Convert.
|
|
3239
|
+
this._multiSelect = Convert.toBooleanProperty(v);
|
|
3244
3240
|
}
|
|
3245
3241
|
chooseAll() {
|
|
3246
3242
|
if (!this.multiSelect)
|
|
@@ -3305,7 +3301,7 @@ class ButtonBrowseModalBaseComponent extends CoreComponent {
|
|
|
3305
3301
|
return this._multiSelect;
|
|
3306
3302
|
}
|
|
3307
3303
|
set multiSelect(v) {
|
|
3308
|
-
this._multiSelect = Convert.
|
|
3304
|
+
this._multiSelect = Convert.toBooleanProperty(v);
|
|
3309
3305
|
}
|
|
3310
3306
|
choose(value) {
|
|
3311
3307
|
this.onChoose.emit(value);
|
|
@@ -3757,19 +3753,19 @@ class EditToolbarComponent {
|
|
|
3757
3753
|
return this._showExport;
|
|
3758
3754
|
}
|
|
3759
3755
|
set showExport(v) {
|
|
3760
|
-
this._showExport = Convert.
|
|
3756
|
+
this._showExport = Convert.toBooleanProperty(v);
|
|
3761
3757
|
}
|
|
3762
3758
|
get showPrint() {
|
|
3763
3759
|
return this._showPrint;
|
|
3764
3760
|
}
|
|
3765
3761
|
set showPrint(v) {
|
|
3766
|
-
this._showPrint = Convert.
|
|
3762
|
+
this._showPrint = Convert.toBooleanProperty(v);
|
|
3767
3763
|
}
|
|
3768
3764
|
get readOnly() {
|
|
3769
3765
|
return this._readOnly;
|
|
3770
3766
|
}
|
|
3771
3767
|
set readOnly(v) {
|
|
3772
|
-
this._readOnly = Convert.
|
|
3768
|
+
this._readOnly = Convert.toBooleanProperty(v);
|
|
3773
3769
|
}
|
|
3774
3770
|
cancel() {
|
|
3775
3771
|
this.onCancel.emit();
|
|
@@ -3887,7 +3883,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
3887
3883
|
}] });
|
|
3888
3884
|
|
|
3889
3885
|
let nextUniqueId = 0;
|
|
3890
|
-
class
|
|
3886
|
+
class ZekModal extends CoreComponent {
|
|
3891
3887
|
constructor(translate) {
|
|
3892
3888
|
super();
|
|
3893
3889
|
this.translate = translate;
|
|
@@ -3948,61 +3944,61 @@ class ModalComponent extends CoreComponent {
|
|
|
3948
3944
|
return this._showOk;
|
|
3949
3945
|
}
|
|
3950
3946
|
set showOk(v) {
|
|
3951
|
-
this._showOk = Convert.
|
|
3947
|
+
this._showOk = Convert.toBooleanProperty(v);
|
|
3952
3948
|
}
|
|
3953
3949
|
get disabledOk() {
|
|
3954
3950
|
return this._disabledOk;
|
|
3955
3951
|
}
|
|
3956
3952
|
set disabledOk(v) {
|
|
3957
|
-
this._disabledOk = Convert.
|
|
3953
|
+
this._disabledOk = Convert.toBooleanProperty(v);
|
|
3958
3954
|
}
|
|
3959
3955
|
get showCancel() {
|
|
3960
3956
|
return this._showCancel;
|
|
3961
3957
|
}
|
|
3962
3958
|
set showCancel(v) {
|
|
3963
|
-
this._showCancel = Convert.
|
|
3959
|
+
this._showCancel = Convert.toBooleanProperty(v);
|
|
3964
3960
|
}
|
|
3965
3961
|
get autoHide() {
|
|
3966
3962
|
return this._autoHide;
|
|
3967
3963
|
}
|
|
3968
3964
|
set autoHide(v) {
|
|
3969
|
-
this._autoHide = Convert.
|
|
3965
|
+
this._autoHide = Convert.toBooleanProperty(v);
|
|
3970
3966
|
}
|
|
3971
3967
|
get large() {
|
|
3972
3968
|
return this._large;
|
|
3973
3969
|
}
|
|
3974
3970
|
set large(v) {
|
|
3975
|
-
this._large = Convert.
|
|
3971
|
+
this._large = Convert.toBooleanProperty(v);
|
|
3976
3972
|
}
|
|
3977
3973
|
get xl() {
|
|
3978
3974
|
return this._xl;
|
|
3979
3975
|
}
|
|
3980
3976
|
set xl(v) {
|
|
3981
|
-
this._xl = Convert.
|
|
3977
|
+
this._xl = Convert.toBooleanProperty(v);
|
|
3982
3978
|
}
|
|
3983
3979
|
get scrollable() {
|
|
3984
3980
|
return this._scrollable;
|
|
3985
3981
|
}
|
|
3986
3982
|
set scrollable(v) {
|
|
3987
|
-
this._scrollable = Convert.
|
|
3983
|
+
this._scrollable = Convert.toBooleanProperty(v);
|
|
3988
3984
|
}
|
|
3989
3985
|
get fullscreen() {
|
|
3990
3986
|
return this._fullscreen;
|
|
3991
3987
|
}
|
|
3992
3988
|
set fullscreen(v) {
|
|
3993
|
-
this._fullscreen = Convert.
|
|
3989
|
+
this._fullscreen = Convert.toBooleanProperty(v);
|
|
3994
3990
|
}
|
|
3995
3991
|
get showHeader() {
|
|
3996
3992
|
return this._showHeader;
|
|
3997
3993
|
}
|
|
3998
3994
|
set showHeader(v) {
|
|
3999
|
-
this._showHeader = Convert.
|
|
3995
|
+
this._showHeader = Convert.toBooleanProperty(v);
|
|
4000
3996
|
}
|
|
4001
3997
|
get showFooter() {
|
|
4002
3998
|
return this._showFooter;
|
|
4003
3999
|
}
|
|
4004
4000
|
set showFooter(v) {
|
|
4005
|
-
this._showFooter = Convert.
|
|
4001
|
+
this._showFooter = Convert.toBooleanProperty(v);
|
|
4006
4002
|
}
|
|
4007
4003
|
// public get modal(): any {
|
|
4008
4004
|
// if (!this._modal) {
|
|
@@ -4070,9 +4066,9 @@ class ModalComponent extends CoreComponent {
|
|
|
4070
4066
|
this.ok();
|
|
4071
4067
|
}
|
|
4072
4068
|
}
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4069
|
+
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 });
|
|
4070
|
+
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" }] });
|
|
4071
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModal, decorators: [{
|
|
4076
4072
|
type: Component,
|
|
4077
4073
|
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>" }]
|
|
4078
4074
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; }, propDecorators: { model: [{
|
|
@@ -4116,7 +4112,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4116
4112
|
}], onValidating: [{
|
|
4117
4113
|
type: Output
|
|
4118
4114
|
}] } });
|
|
4119
|
-
class
|
|
4115
|
+
class ZekDeleteModal extends ZekModal {
|
|
4120
4116
|
constructor(translate) {
|
|
4121
4117
|
super(translate);
|
|
4122
4118
|
this.icon = 'fas fa-fas fa-trash';
|
|
@@ -4125,13 +4121,13 @@ class DeleteModalComponent extends ModalComponent {
|
|
|
4125
4121
|
this.componentType = ComponentType.Delete;
|
|
4126
4122
|
}
|
|
4127
4123
|
}
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4124
|
+
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 });
|
|
4125
|
+
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" }] });
|
|
4126
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekDeleteModal, decorators: [{
|
|
4131
4127
|
type: Component,
|
|
4132
4128
|
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>" }]
|
|
4133
4129
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
4134
|
-
class
|
|
4130
|
+
class ZekApproveModal extends ZekModal {
|
|
4135
4131
|
constructor(translate) {
|
|
4136
4132
|
super(translate);
|
|
4137
4133
|
this.icon = 'fas fa-thumbs-up';
|
|
@@ -4140,13 +4136,13 @@ class ApproveModalComponent extends ModalComponent {
|
|
|
4140
4136
|
this.componentType = ComponentType.Success;
|
|
4141
4137
|
}
|
|
4142
4138
|
}
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4139
|
+
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 });
|
|
4140
|
+
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" }] });
|
|
4141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekApproveModal, decorators: [{
|
|
4146
4142
|
type: Component,
|
|
4147
4143
|
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>" }]
|
|
4148
4144
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
4149
|
-
class
|
|
4145
|
+
class ZekSubmitModal extends ZekModal {
|
|
4150
4146
|
constructor(translate) {
|
|
4151
4147
|
super(translate);
|
|
4152
4148
|
this.icon = 'fas fa-thumbs-up';
|
|
@@ -4155,13 +4151,13 @@ class SubmitModalComponent extends ModalComponent {
|
|
|
4155
4151
|
this.componentType = ComponentType.Success;
|
|
4156
4152
|
}
|
|
4157
4153
|
}
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4154
|
+
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 });
|
|
4155
|
+
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" }] });
|
|
4156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekSubmitModal, decorators: [{
|
|
4161
4157
|
type: Component,
|
|
4162
4158
|
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>" }]
|
|
4163
4159
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
4164
|
-
class
|
|
4160
|
+
class ZekDisapproveModal extends ZekModal {
|
|
4165
4161
|
constructor(translate) {
|
|
4166
4162
|
super(translate);
|
|
4167
4163
|
this.icon = 'fas fa-thumbs-down';
|
|
@@ -4170,13 +4166,13 @@ class DisapproveModalComponent extends ModalComponent {
|
|
|
4170
4166
|
this.componentType = ComponentType.Delete;
|
|
4171
4167
|
}
|
|
4172
4168
|
}
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4169
|
+
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 });
|
|
4170
|
+
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" }] });
|
|
4171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekDisapproveModal, decorators: [{
|
|
4176
4172
|
type: Component,
|
|
4177
4173
|
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>" }]
|
|
4178
4174
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
4179
|
-
class
|
|
4175
|
+
class ZekRestoreModal extends ZekModal {
|
|
4180
4176
|
constructor(translate) {
|
|
4181
4177
|
super(translate);
|
|
4182
4178
|
this.icon = 'fas fa-redo';
|
|
@@ -4185,9 +4181,9 @@ class RestoreModalComponent extends ModalComponent {
|
|
|
4185
4181
|
this.componentType = ComponentType.Success;
|
|
4186
4182
|
}
|
|
4187
4183
|
}
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4184
|
+
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 });
|
|
4185
|
+
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" }] });
|
|
4186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekRestoreModal, decorators: [{
|
|
4191
4187
|
type: Component,
|
|
4192
4188
|
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>" }]
|
|
4193
4189
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; } });
|
|
@@ -4261,7 +4257,7 @@ class ZekFileViewer extends CoreComponent {
|
|
|
4261
4257
|
}
|
|
4262
4258
|
}
|
|
4263
4259
|
ZekFileViewer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekFileViewer, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
4264
|
-
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:
|
|
4260
|
+
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" }] });
|
|
4265
4261
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekFileViewer, decorators: [{
|
|
4266
4262
|
type: Component,
|
|
4267
4263
|
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>" }]
|
|
@@ -4270,7 +4266,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4270
4266
|
args: ['viewModal', { static: true }]
|
|
4271
4267
|
}] } });
|
|
4272
4268
|
|
|
4273
|
-
class
|
|
4269
|
+
class ZekFilterModal extends ZekModal {
|
|
4274
4270
|
constructor() {
|
|
4275
4271
|
super(...arguments);
|
|
4276
4272
|
this.onReset = new EventEmitter();
|
|
@@ -4282,16 +4278,16 @@ class FilterModalComponent extends ModalComponent {
|
|
|
4282
4278
|
return document.getElementById('filter-modal');
|
|
4283
4279
|
}
|
|
4284
4280
|
}
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4281
|
+
ZekFilterModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekFilterModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
4282
|
+
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" }] });
|
|
4283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekFilterModal, decorators: [{
|
|
4288
4284
|
type: Component,
|
|
4289
4285
|
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>" }]
|
|
4290
4286
|
}], propDecorators: { onReset: [{
|
|
4291
4287
|
type: Output
|
|
4292
4288
|
}] } });
|
|
4293
4289
|
|
|
4294
|
-
class
|
|
4290
|
+
class ZekSumModal {
|
|
4295
4291
|
sum() {
|
|
4296
4292
|
if (this.modal) {
|
|
4297
4293
|
this.modal.show();
|
|
@@ -4301,9 +4297,9 @@ class SumComponent {
|
|
|
4301
4297
|
}
|
|
4302
4298
|
}
|
|
4303
4299
|
}
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4300
|
+
ZekSumModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekSumModal, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4301
|
+
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" }] });
|
|
4302
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekSumModal, decorators: [{
|
|
4307
4303
|
type: Component,
|
|
4308
4304
|
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>" }]
|
|
4309
4305
|
}], propDecorators: { model: [{
|
|
@@ -4313,30 +4309,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4313
4309
|
args: ['sumModal', { static: false }]
|
|
4314
4310
|
}] } });
|
|
4315
4311
|
|
|
4316
|
-
class
|
|
4312
|
+
class ZekModalModule {
|
|
4317
4313
|
}
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4314
|
+
ZekModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4315
|
+
ZekModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: ZekModalModule, declarations: [ZekModal,
|
|
4316
|
+
ZekDeleteModal,
|
|
4317
|
+
ZekApproveModal,
|
|
4318
|
+
ZekSubmitModal,
|
|
4319
|
+
ZekDisapproveModal,
|
|
4320
|
+
ZekRestoreModal,
|
|
4321
|
+
ZekFilterModal,
|
|
4322
|
+
ZekSumModal], imports: [CommonModule,
|
|
4327
4323
|
RouterModule,
|
|
4328
|
-
TranslateModule], exports: [
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
|
|
4324
|
+
TranslateModule], exports: [ZekModal,
|
|
4325
|
+
ZekDeleteModal,
|
|
4326
|
+
ZekApproveModal,
|
|
4327
|
+
ZekSubmitModal,
|
|
4328
|
+
ZekDisapproveModal,
|
|
4329
|
+
ZekRestoreModal,
|
|
4330
|
+
ZekFilterModal,
|
|
4331
|
+
ZekSumModal] });
|
|
4332
|
+
ZekModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModalModule, imports: [CommonModule,
|
|
4337
4333
|
RouterModule,
|
|
4338
4334
|
TranslateModule] });
|
|
4339
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekModalModule, decorators: [{
|
|
4340
4336
|
type: NgModule,
|
|
4341
4337
|
args: [{
|
|
4342
4338
|
imports: [
|
|
@@ -4345,24 +4341,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4345
4341
|
TranslateModule
|
|
4346
4342
|
],
|
|
4347
4343
|
declarations: [
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4344
|
+
ZekModal,
|
|
4345
|
+
ZekDeleteModal,
|
|
4346
|
+
ZekApproveModal,
|
|
4347
|
+
ZekSubmitModal,
|
|
4348
|
+
ZekDisapproveModal,
|
|
4349
|
+
ZekRestoreModal,
|
|
4350
|
+
ZekFilterModal,
|
|
4351
|
+
ZekSumModal
|
|
4356
4352
|
],
|
|
4357
4353
|
exports: [
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4354
|
+
ZekModal,
|
|
4355
|
+
ZekDeleteModal,
|
|
4356
|
+
ZekApproveModal,
|
|
4357
|
+
ZekSubmitModal,
|
|
4358
|
+
ZekDisapproveModal,
|
|
4359
|
+
ZekRestoreModal,
|
|
4360
|
+
ZekFilterModal,
|
|
4361
|
+
ZekSumModal
|
|
4366
4362
|
]
|
|
4367
4363
|
}]
|
|
4368
4364
|
}] });
|
|
@@ -4387,17 +4383,17 @@ class FileViewerModule {
|
|
|
4387
4383
|
}
|
|
4388
4384
|
FileViewerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FileViewerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4389
4385
|
FileViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: FileViewerModule, declarations: [ZekFileViewer], imports: [CommonModule,
|
|
4390
|
-
|
|
4386
|
+
ZekModalModule,
|
|
4391
4387
|
SafeModule], exports: [ZekFileViewer] });
|
|
4392
4388
|
FileViewerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FileViewerModule, imports: [CommonModule,
|
|
4393
|
-
|
|
4389
|
+
ZekModalModule,
|
|
4394
4390
|
SafeModule] });
|
|
4395
4391
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FileViewerModule, decorators: [{
|
|
4396
4392
|
type: NgModule,
|
|
4397
4393
|
args: [{
|
|
4398
4394
|
imports: [
|
|
4399
4395
|
CommonModule,
|
|
4400
|
-
|
|
4396
|
+
ZekModalModule,
|
|
4401
4397
|
SafeModule
|
|
4402
4398
|
],
|
|
4403
4399
|
declarations: [
|
|
@@ -4431,61 +4427,61 @@ class GridToolbarComponent {
|
|
|
4431
4427
|
return this._showEdit;
|
|
4432
4428
|
}
|
|
4433
4429
|
set showEdit(v) {
|
|
4434
|
-
this._showEdit = Convert.
|
|
4430
|
+
this._showEdit = Convert.toBooleanProperty(v);
|
|
4435
4431
|
}
|
|
4436
4432
|
get editEnabled() {
|
|
4437
4433
|
return this._editEnabled;
|
|
4438
4434
|
}
|
|
4439
4435
|
set editEnabled(v) {
|
|
4440
|
-
this._editEnabled = Convert.
|
|
4436
|
+
this._editEnabled = Convert.toBooleanProperty(v);
|
|
4441
4437
|
}
|
|
4442
4438
|
get showDelete() {
|
|
4443
4439
|
return this._showDelete;
|
|
4444
4440
|
}
|
|
4445
4441
|
set showDelete(v) {
|
|
4446
|
-
this._showDelete = Convert.
|
|
4442
|
+
this._showDelete = Convert.toBooleanProperty(v);
|
|
4447
4443
|
}
|
|
4448
4444
|
get deleteEnabled() {
|
|
4449
4445
|
return this._deleteEnabled;
|
|
4450
4446
|
}
|
|
4451
4447
|
set deleteEnabled(v) {
|
|
4452
|
-
this._deleteEnabled = Convert.
|
|
4448
|
+
this._deleteEnabled = Convert.toBooleanProperty(v);
|
|
4453
4449
|
}
|
|
4454
4450
|
get showRestore() {
|
|
4455
4451
|
return this._showRestore;
|
|
4456
4452
|
}
|
|
4457
4453
|
set showRestore(v) {
|
|
4458
|
-
this._showRestore = Convert.
|
|
4454
|
+
this._showRestore = Convert.toBooleanProperty(v);
|
|
4459
4455
|
}
|
|
4460
4456
|
get restoreEnabled() {
|
|
4461
4457
|
return this._restoreEnabled;
|
|
4462
4458
|
}
|
|
4463
4459
|
set restoreEnabled(v) {
|
|
4464
|
-
this._restoreEnabled = Convert.
|
|
4460
|
+
this._restoreEnabled = Convert.toBooleanProperty(v);
|
|
4465
4461
|
}
|
|
4466
4462
|
get showApprove() {
|
|
4467
4463
|
return this._showApprove;
|
|
4468
4464
|
}
|
|
4469
4465
|
set showApprove(v) {
|
|
4470
|
-
this._showApprove = Convert.
|
|
4466
|
+
this._showApprove = Convert.toBooleanProperty(v);
|
|
4471
4467
|
}
|
|
4472
4468
|
get approveEnabled() {
|
|
4473
4469
|
return this._approveEnabled;
|
|
4474
4470
|
}
|
|
4475
4471
|
set approveEnabled(v) {
|
|
4476
|
-
this._approveEnabled = Convert.
|
|
4472
|
+
this._approveEnabled = Convert.toBooleanProperty(v);
|
|
4477
4473
|
}
|
|
4478
4474
|
get showDisapprove() {
|
|
4479
4475
|
return this._showDisapprove;
|
|
4480
4476
|
}
|
|
4481
4477
|
set showDisapprove(v) {
|
|
4482
|
-
this._showDisapprove = Convert.
|
|
4478
|
+
this._showDisapprove = Convert.toBooleanProperty(v);
|
|
4483
4479
|
}
|
|
4484
4480
|
get disapproveEnabled() {
|
|
4485
4481
|
return this._disapproveEnabled;
|
|
4486
4482
|
}
|
|
4487
4483
|
set disapproveEnabled(v) {
|
|
4488
|
-
this._disapproveEnabled = Convert.
|
|
4484
|
+
this._disapproveEnabled = Convert.toBooleanProperty(v);
|
|
4489
4485
|
}
|
|
4490
4486
|
edit() {
|
|
4491
4487
|
//this.router.navigate([this.router.url, this.model]);
|
|
@@ -4603,37 +4599,37 @@ class ListToolbarComponent {
|
|
|
4603
4599
|
return this._isFiltered;
|
|
4604
4600
|
}
|
|
4605
4601
|
set isFiltered(v) {
|
|
4606
|
-
this._isFiltered = Convert.
|
|
4602
|
+
this._isFiltered = Convert.toBooleanProperty(v);
|
|
4607
4603
|
}
|
|
4608
4604
|
get showCreate() {
|
|
4609
4605
|
return this._showCreate;
|
|
4610
4606
|
}
|
|
4611
4607
|
set showCreate(v) {
|
|
4612
|
-
this._showCreate = Convert.
|
|
4608
|
+
this._showCreate = Convert.toBooleanProperty(v);
|
|
4613
4609
|
}
|
|
4614
4610
|
get showFilter() {
|
|
4615
4611
|
return this._showFilter;
|
|
4616
4612
|
}
|
|
4617
4613
|
set showFilter(v) {
|
|
4618
|
-
this._showFilter = Convert.
|
|
4614
|
+
this._showFilter = Convert.toBooleanProperty(v);
|
|
4619
4615
|
}
|
|
4620
4616
|
get showPrint() {
|
|
4621
4617
|
return this._showPrint;
|
|
4622
4618
|
}
|
|
4623
4619
|
set showPrint(v) {
|
|
4624
|
-
this._showPrint = Convert.
|
|
4620
|
+
this._showPrint = Convert.toBooleanProperty(v);
|
|
4625
4621
|
}
|
|
4626
4622
|
get showSum() {
|
|
4627
4623
|
return this._showSum;
|
|
4628
4624
|
}
|
|
4629
4625
|
set showSum(v) {
|
|
4630
|
-
this._showSum = Convert.
|
|
4626
|
+
this._showSum = Convert.toBooleanProperty(v);
|
|
4631
4627
|
}
|
|
4632
4628
|
get showExport() {
|
|
4633
4629
|
return this._showExport;
|
|
4634
4630
|
}
|
|
4635
4631
|
set showExport(v) {
|
|
4636
|
-
this._showExport = Convert.
|
|
4632
|
+
this._showExport = Convert.toBooleanProperty(v);
|
|
4637
4633
|
}
|
|
4638
4634
|
refresh() {
|
|
4639
4635
|
this.onRefresh.emit();
|
|
@@ -4778,7 +4774,7 @@ const LoadingInterceptorProvider = [{
|
|
|
4778
4774
|
multi: true
|
|
4779
4775
|
}];
|
|
4780
4776
|
|
|
4781
|
-
class
|
|
4777
|
+
class ZekLoading {
|
|
4782
4778
|
constructor(loadingInterceptor) {
|
|
4783
4779
|
this.loadingInterceptor = loadingInterceptor;
|
|
4784
4780
|
this.show = false;
|
|
@@ -4794,13 +4790,13 @@ class LoadingComponent {
|
|
|
4794
4790
|
}
|
|
4795
4791
|
}
|
|
4796
4792
|
}
|
|
4797
|
-
|
|
4798
|
-
|
|
4793
|
+
ZekLoading.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoading, deps: [{ token: LoadingInterceptor }], target: i0.ɵɵFactoryTarget.Component });
|
|
4794
|
+
ZekLoading.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: ZekLoading, selector: "zek-loading", ngImport: i0, template: `
|
|
4799
4795
|
<div *ngIf="show" id="loading" class="progress">
|
|
4800
4796
|
<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>
|
|
4801
4797
|
</div>
|
|
4802
4798
|
`, 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"] }] });
|
|
4803
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4799
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoading, decorators: [{
|
|
4804
4800
|
type: Component,
|
|
4805
4801
|
args: [{ selector: 'zek-loading', template: `
|
|
4806
4802
|
<div *ngIf="show" id="loading" class="progress">
|
|
@@ -4809,29 +4805,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4809
4805
|
`, 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"] }]
|
|
4810
4806
|
}], ctorParameters: function () { return [{ type: LoadingInterceptor }]; } });
|
|
4811
4807
|
|
|
4812
|
-
class
|
|
4808
|
+
class ZekLoadingModule {
|
|
4813
4809
|
}
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
-
|
|
4810
|
+
ZekLoadingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoadingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4811
|
+
ZekLoadingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: ZekLoadingModule, declarations: [ZekLoading], imports: [CommonModule], exports: [ZekLoading] });
|
|
4812
|
+
ZekLoadingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoadingModule, providers: [
|
|
4817
4813
|
LoadingInterceptorProvider,
|
|
4818
4814
|
LoadingInterceptor,
|
|
4819
4815
|
], imports: [CommonModule] });
|
|
4820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekLoadingModule, decorators: [{
|
|
4821
4817
|
type: NgModule,
|
|
4822
4818
|
args: [{
|
|
4823
4819
|
imports: [
|
|
4824
4820
|
CommonModule,
|
|
4825
4821
|
],
|
|
4826
4822
|
declarations: [
|
|
4827
|
-
|
|
4823
|
+
ZekLoading
|
|
4828
4824
|
],
|
|
4829
4825
|
providers: [
|
|
4830
4826
|
LoadingInterceptorProvider,
|
|
4831
4827
|
LoadingInterceptor,
|
|
4832
4828
|
],
|
|
4833
4829
|
exports: [
|
|
4834
|
-
|
|
4830
|
+
ZekLoading
|
|
4835
4831
|
]
|
|
4836
4832
|
}]
|
|
4837
4833
|
}] });
|
|
@@ -4846,7 +4842,7 @@ class PageTitleComponent {
|
|
|
4846
4842
|
return this._isEditPage;
|
|
4847
4843
|
}
|
|
4848
4844
|
set isEditPage(v) {
|
|
4849
|
-
this._isEditPage = Convert.
|
|
4845
|
+
this._isEditPage = Convert.toBooleanProperty(v);
|
|
4850
4846
|
}
|
|
4851
4847
|
}
|
|
4852
4848
|
PageTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PageTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -4885,7 +4881,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4885
4881
|
}]
|
|
4886
4882
|
}] });
|
|
4887
4883
|
|
|
4888
|
-
class
|
|
4884
|
+
class ZekPager {
|
|
4889
4885
|
constructor() {
|
|
4890
4886
|
this.pager = new Pager();
|
|
4891
4887
|
this._showPageSize = true;
|
|
@@ -4897,7 +4893,7 @@ class PagerComponent {
|
|
|
4897
4893
|
return this._showPageSize;
|
|
4898
4894
|
}
|
|
4899
4895
|
set showPageSize(v) {
|
|
4900
|
-
this._showPageSize = Convert.
|
|
4896
|
+
this._showPageSize = Convert.toBooleanProperty(v);
|
|
4901
4897
|
}
|
|
4902
4898
|
setPage(page) {
|
|
4903
4899
|
// if (!this.pager) return;
|
|
@@ -4912,9 +4908,9 @@ class PagerComponent {
|
|
|
4912
4908
|
this.onPageSizeChange.emit(pageSize);
|
|
4913
4909
|
}
|
|
4914
4910
|
}
|
|
4915
|
-
|
|
4916
|
-
|
|
4917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4911
|
+
ZekPager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPager, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4912
|
+
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" }] });
|
|
4913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPager, decorators: [{
|
|
4918
4914
|
type: Component,
|
|
4919
4915
|
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"] }]
|
|
4920
4916
|
}], propDecorators: { pager: [{
|
|
@@ -4929,14 +4925,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4929
4925
|
type: Output
|
|
4930
4926
|
}] } });
|
|
4931
4927
|
|
|
4932
|
-
class
|
|
4928
|
+
class ZekPagerModule {
|
|
4933
4929
|
}
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
TranslateModule], exports: [
|
|
4937
|
-
|
|
4930
|
+
ZekPagerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPagerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4931
|
+
ZekPagerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: ZekPagerModule, declarations: [ZekPager], imports: [CommonModule,
|
|
4932
|
+
TranslateModule], exports: [ZekPager] });
|
|
4933
|
+
ZekPagerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPagerModule, imports: [CommonModule,
|
|
4938
4934
|
TranslateModule] });
|
|
4939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
|
4935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ZekPagerModule, decorators: [{
|
|
4940
4936
|
type: NgModule,
|
|
4941
4937
|
args: [{
|
|
4942
4938
|
imports: [
|
|
@@ -4944,9 +4940,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
4944
4940
|
TranslateModule
|
|
4945
4941
|
],
|
|
4946
4942
|
declarations: [
|
|
4947
|
-
|
|
4943
|
+
ZekPager,
|
|
4948
4944
|
],
|
|
4949
|
-
exports: [
|
|
4945
|
+
exports: [ZekPager]
|
|
4950
4946
|
}]
|
|
4951
4947
|
}] });
|
|
4952
4948
|
|
|
@@ -4979,7 +4975,7 @@ class PasswordComponent {
|
|
|
4979
4975
|
return this._required;
|
|
4980
4976
|
}
|
|
4981
4977
|
set required(v) {
|
|
4982
|
-
this._required = Convert.
|
|
4978
|
+
this._required = Convert.toBooleanProperty(v);
|
|
4983
4979
|
}
|
|
4984
4980
|
get type() {
|
|
4985
4981
|
return this._type;
|
|
@@ -5080,13 +5076,13 @@ class ZekProgress {
|
|
|
5080
5076
|
return this._showValue;
|
|
5081
5077
|
}
|
|
5082
5078
|
set showValue(v) {
|
|
5083
|
-
this._showValue = Convert.
|
|
5079
|
+
this._showValue = Convert.toBooleanProperty(v);
|
|
5084
5080
|
}
|
|
5085
5081
|
get showTitle() {
|
|
5086
5082
|
return this._showTitle;
|
|
5087
5083
|
}
|
|
5088
5084
|
set showTitle(v) {
|
|
5089
|
-
this._showTitle = Convert.
|
|
5085
|
+
this._showTitle = Convert.toBooleanProperty(v);
|
|
5090
5086
|
}
|
|
5091
5087
|
get _title() {
|
|
5092
5088
|
return this._showTitle ? `${this._value} %` : null;
|
|
@@ -5095,13 +5091,13 @@ class ZekProgress {
|
|
|
5095
5091
|
return this._striped;
|
|
5096
5092
|
}
|
|
5097
5093
|
set striped(v) {
|
|
5098
|
-
this._striped = Convert.
|
|
5094
|
+
this._striped = Convert.toBooleanProperty(v);
|
|
5099
5095
|
}
|
|
5100
5096
|
get animated() {
|
|
5101
5097
|
return this._animated;
|
|
5102
5098
|
}
|
|
5103
5099
|
set animated(v) {
|
|
5104
|
-
this._animated = Convert.
|
|
5100
|
+
this._animated = Convert.toBooleanProperty(v);
|
|
5105
5101
|
}
|
|
5106
5102
|
get label() {
|
|
5107
5103
|
return this._label;
|
|
@@ -5195,7 +5191,7 @@ class RadioComponent extends CoreUiComponent {
|
|
|
5195
5191
|
return this._checked;
|
|
5196
5192
|
}
|
|
5197
5193
|
set checked(value) {
|
|
5198
|
-
const newCheckedState = Convert.
|
|
5194
|
+
const newCheckedState = Convert.toBooleanProperty(value);
|
|
5199
5195
|
if (this._checked !== newCheckedState) {
|
|
5200
5196
|
this._checked = newCheckedState;
|
|
5201
5197
|
this._markForCheck();
|
|
@@ -5308,7 +5304,7 @@ class ReadOnlyDirective {
|
|
|
5308
5304
|
this._readonly = false;
|
|
5309
5305
|
}
|
|
5310
5306
|
readonly(v) {
|
|
5311
|
-
this._readonly = Convert.
|
|
5307
|
+
this._readonly = Convert.toBooleanProperty(v);
|
|
5312
5308
|
}
|
|
5313
5309
|
}
|
|
5314
5310
|
ReadOnlyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ReadOnlyDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -5542,7 +5538,7 @@ class ZekSelectMultiple extends CoreUiComponent {
|
|
|
5542
5538
|
return this._multiple;
|
|
5543
5539
|
}
|
|
5544
5540
|
set multiple(value) {
|
|
5545
|
-
this._multiple = Convert.
|
|
5541
|
+
this._multiple = Convert.toBooleanProperty(value);
|
|
5546
5542
|
}
|
|
5547
5543
|
get data() {
|
|
5548
5544
|
return this._data;
|
|
@@ -6682,5 +6678,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
6682
6678
|
* Generated bundle index. Do not edit.
|
|
6683
6679
|
*/
|
|
6684
6680
|
|
|
6685
|
-
export { API_BASE_URL, AgeModule, AgePipe, Alert, AlertModule, AlertService, AlertType, AppBaseModule,
|
|
6681
|
+
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 };
|
|
6686
6682
|
//# sourceMappingURL=zek.mjs.map
|