zek 19.0.7 → 19.0.10
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.
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnDestroy, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { StringInput } from '../../components';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class DateValueAccessor implements ControlValueAccessor, OnDestroy {
|
|
5
|
+
export declare class DateValueAccessor implements ControlValueAccessor, OnDestroy, OnChanges {
|
|
5
6
|
private el;
|
|
6
7
|
private datepicker?;
|
|
7
8
|
private oldValue?;
|
|
9
|
+
min?: StringInput;
|
|
10
|
+
max?: StringInput;
|
|
8
11
|
constructor(el: ElementRef, format: string, language: string, env?: any | null);
|
|
9
12
|
ngOnDestroy(): void;
|
|
13
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
10
14
|
/**
|
|
11
15
|
* Fires when user choose date in datepicker
|
|
12
16
|
* @param e Custom event
|
|
@@ -20,5 +24,5 @@ export declare class DateValueAccessor implements ControlValueAccessor, OnDestro
|
|
|
20
24
|
onTouched: () => void;
|
|
21
25
|
registerOnTouched(fn: any): void;
|
|
22
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateValueAccessor, never>;
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DateValueAccessor, "[zek-date],input[type=date][formControlName],input[type=date][formControl],input[type=date][ngModel]", never, {}, {}, never, never, false, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DateValueAccessor, "[zek-date],input[type=date][formControlName],input[type=date][formControl],input[type=date][ngModel]", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
28
|
}
|
|
@@ -7,7 +7,7 @@ export interface IService {
|
|
|
7
7
|
getAll(filter: any): Observable<PagedList>;
|
|
8
8
|
delete(id: any): Observable<any>;
|
|
9
9
|
delete2(id: any, id2: any): Observable<any>;
|
|
10
|
-
export(
|
|
10
|
+
export(model: any, fileTypeId: any): Observable<Blob | null>;
|
|
11
11
|
sum(filter: any): Observable<any>;
|
|
12
12
|
get(id: any): Observable<any>;
|
|
13
13
|
get2(id: any, id2: any): Observable<any>;
|