zek 16.0.10 → 16.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/edit-base.component.mjs +1 -1
- package/esm2022/lib/components/list-base.component.mjs +13 -7
- package/esm2022/lib/modules/alert/alert/alert.mjs +6 -4
- package/fesm2022/zek.mjs +15 -8
- package/fesm2022/zek.mjs.map +1 -1
- package/lib/components/edit-base.component.d.ts +1 -1
- package/lib/components/list-base.component.d.ts +3 -1
- package/lib/modules/alert/alert/alert.d.ts +2 -2
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ export declare class EditFormComponent<TModel = any> extends BaseComponent<TMode
|
|
|
13
13
|
form?: NgForm;
|
|
14
14
|
approveModel: {
|
|
15
15
|
ids?: number[];
|
|
16
|
-
comment?: string;
|
|
16
|
+
comment?: string | null;
|
|
17
17
|
};
|
|
18
18
|
protected readonly approveModal?: ZekModal;
|
|
19
19
|
protected readonly disapproveModal?: ZekModal;
|
|
@@ -24,7 +24,9 @@ export declare class ListBaseComponent<TService extends IService = IService> ext
|
|
|
24
24
|
comment?: string;
|
|
25
25
|
};
|
|
26
26
|
protected readonly approveModal?: ZekModal | null;
|
|
27
|
+
approvedMesage: string;
|
|
27
28
|
protected readonly disapproveModal?: ZekModal | null;
|
|
29
|
+
disapprovedMesage: string;
|
|
28
30
|
constructor(service: TService, translate: TranslateService, alert: AlertService, route: ActivatedRoute, router: Router);
|
|
29
31
|
init(): void;
|
|
30
32
|
bindModel(): Promise<void>;
|
|
@@ -57,5 +59,5 @@ export declare class ListBaseComponent<TService extends IService = IService> ext
|
|
|
57
59
|
export(fileTypeId: number): void;
|
|
58
60
|
print(printType?: PrintType): void;
|
|
59
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListBaseComponent<any>, never>;
|
|
60
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ListBaseComponent<any>, never, never, {}, {}, never, never, false, never>;
|
|
62
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ListBaseComponent<any>, never, never, { "approvedMesage": { "alias": "approvedMesage"; "required": false; }; "disapprovedMesage": { "alias": "disapprovedMesage"; "required": false; }; }, {}, never, never, false, never>;
|
|
61
63
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BooleanInput } from '../../../components';
|
|
1
|
+
import { BooleanInput, CoreComponent } from '../../../components';
|
|
2
2
|
import { AlertType } from '../../../models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ZekAlert {
|
|
4
|
+
export declare class ZekAlert extends CoreComponent {
|
|
5
5
|
private _type;
|
|
6
6
|
get type(): AlertType | null | undefined;
|
|
7
7
|
set type(v: AlertType | null | undefined);
|