master-control 0.3.86 → 0.3.88
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/annuity-premium-calculator/annuity-premium-calculator.component.mjs +5 -5
- package/esm2022/lib/dob/dob.component.mjs +76 -99
- package/esm2022/lib/toggle/toggle.component.mjs +3 -3
- package/fesm2022/master-control.mjs +97 -119
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/dob/dob.component.d.ts +8 -13
- package/master-control-0.3.88.tgz +0 -0
- package/package.json +1 -1
- package/master-control-0.3.86.tgz +0 -0
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor
|
|
3
|
-
import { DateAdapter } from '@angular/material/core';
|
|
4
|
-
import { MatDatepicker } from '@angular/material/datepicker';
|
|
5
|
-
import type { Moment } from 'moment';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
6
3
|
import { MasterControlService } from '../master-control.service';
|
|
7
4
|
import * as i0 from "@angular/core";
|
|
8
5
|
export declare const MY_DATE_FORMAT: {
|
|
@@ -18,26 +15,24 @@ export declare const MY_DATE_FORMAT: {
|
|
|
18
15
|
};
|
|
19
16
|
export declare class DobComponent implements ControlValueAccessor {
|
|
20
17
|
service: MasterControlService;
|
|
21
|
-
private adapter;
|
|
22
18
|
field: any;
|
|
19
|
+
inputValue: any;
|
|
23
20
|
reactiveFormControlobject: any;
|
|
24
21
|
blur: EventEmitter<any>;
|
|
25
22
|
valueChange: EventEmitter<any>;
|
|
26
23
|
dateSelected: EventEmitter<any>;
|
|
27
24
|
invalidDate: EventEmitter<any>;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
constructor(service: MasterControlService, adapter: DateAdapter<Moment>);
|
|
25
|
+
constructor(service: MasterControlService);
|
|
26
|
+
dateDivisionFormat(event: any): void;
|
|
27
|
+
_onChange: any;
|
|
28
|
+
_unTouched: any;
|
|
33
29
|
writeValue(obj: any): void;
|
|
34
30
|
registerOnChange(fn: any): void;
|
|
35
31
|
registerOnTouched(fn: any): void;
|
|
36
32
|
setDisabledState?(isDisabled: boolean): void;
|
|
37
|
-
|
|
38
|
-
onInputBlur(event
|
|
33
|
+
onInputChange(event: any): void;
|
|
34
|
+
onInputBlur(event?: any): void;
|
|
39
35
|
onDateChange(event: any): void;
|
|
40
|
-
private get ctrl();
|
|
41
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<DobComponent, never>;
|
|
42
37
|
static ɵcmp: i0.ɵɵComponentDeclaration<DobComponent, "lib-dob", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; }, { "blur": "blur"; "valueChange": "valueChange"; "dateSelected": "dateSelected"; "invalidDate": "invalidDate"; }, never, never, true, never>;
|
|
43
38
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|