master-control 0.4.99 → 0.5.2
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/age-date/age-date.component.mjs +7 -3
- package/esm2022/lib/amount-textbox/amount-textbox.component.mjs +7 -3
- package/esm2022/lib/annuity-calculator-radio/annuity-calculator-radio.component.mjs +8 -4
- package/esm2022/lib/autocomplete/autocomplete.component.mjs +5 -3
- package/esm2022/lib/button/button.component.mjs +7 -3
- package/esm2022/lib/checkbox/checkbox.component.mjs +7 -3
- package/esm2022/lib/dob/dob.component.mjs +7 -3
- package/esm2022/lib/email-with-domain/email-with-domain.component.mjs +7 -3
- package/esm2022/lib/field-name-attribute.util.mjs +11 -0
- package/esm2022/lib/info-textbox/info-textbox.component.mjs +7 -3
- package/esm2022/lib/master-control.component.mjs +8 -3
- package/esm2022/lib/medial-questions/medial-questions.component.mjs +3 -3
- package/esm2022/lib/mob-number/mob-number.component.mjs +5 -3
- package/esm2022/lib/multiple-select/multiple-select.component.mjs +5 -3
- package/esm2022/lib/otp-mob-number/otp-mob-number.component.mjs +7 -3
- package/esm2022/lib/otp-textbox/otp-textbox.component.mjs +7 -3
- package/esm2022/lib/radio/radio.component.mjs +5 -3
- package/esm2022/lib/search-multi-select/search-multi-select.component.mjs +5 -3
- package/esm2022/lib/select/select.component.mjs +7 -6
- package/esm2022/lib/select-textbox/select-textbox.component.mjs +7 -3
- package/esm2022/lib/subscript-textbox/subscript-textbox.component.mjs +7 -3
- package/esm2022/lib/suffix-textbox/suffix-textbox.component.mjs +7 -3
- package/esm2022/lib/tag-mob-number/tag-mob-number.component.mjs +7 -3
- package/esm2022/lib/textarea/textarea.component.mjs +7 -3
- package/esm2022/lib/textbox/textbox.component.mjs +5 -3
- package/esm2022/lib/textbox-with-image/textbox-with-image.component.mjs +7 -3
- package/esm2022/lib/textbox-with-text/textbox-with-text.component.mjs +7 -3
- package/esm2022/lib/textbox-with-underscore/textbox-with-underscore.component.mjs +7 -3
- package/esm2022/lib/toggle/toggle.component.mjs +7 -3
- package/esm2022/lib/toggle-button/toggle-button.component.mjs +7 -3
- package/esm2022/lib/upload/upload.component.mjs +7 -3
- package/fesm2022/master-control.mjs +146 -62
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/age-date/age-date.component.d.ts +1 -0
- package/lib/amount-textbox/amount-textbox.component.d.ts +1 -0
- package/lib/button/button.component.d.ts +3 -1
- package/lib/checkbox/checkbox.component.d.ts +1 -0
- package/lib/dob/dob.component.d.ts +1 -0
- package/lib/email-with-domain/email-with-domain.component.d.ts +1 -0
- package/lib/field-name-attribute.util.d.ts +1 -0
- package/lib/info-textbox/info-textbox.component.d.ts +1 -0
- package/lib/otp-mob-number/otp-mob-number.component.d.ts +1 -0
- package/lib/otp-textbox/otp-textbox.component.d.ts +1 -0
- package/lib/select/select.component.d.ts +1 -0
- package/lib/select-textbox/select-textbox.component.d.ts +1 -0
- package/lib/subscript-textbox/subscript-textbox.component.d.ts +1 -0
- package/lib/suffix-textbox/suffix-textbox.component.d.ts +1 -0
- package/lib/tag-mob-number/tag-mob-number.component.d.ts +1 -0
- package/lib/textarea/textarea.component.d.ts +1 -0
- package/lib/textbox-with-image/textbox-with-image.component.d.ts +1 -0
- package/lib/textbox-with-text/textbox-with-text.component.d.ts +1 -0
- package/lib/textbox-with-underscore/textbox-with-underscore.component.d.ts +1 -0
- package/lib/toggle/toggle.component.d.ts +1 -0
- package/lib/toggle-button/toggle-button.component.d.ts +3 -2
- package/lib/upload/upload.component.d.ts +1 -0
- package/master-control-0.5.02.tgz +0 -0
- package/package.json +1 -1
- package/master-control-0.4.99.tgz +0 -0
|
@@ -12,6 +12,7 @@ export declare class AgeDateComponent implements AfterViewChecked {
|
|
|
12
12
|
dateSelected: EventEmitter<any>;
|
|
13
13
|
invalidDate: EventEmitter<any>;
|
|
14
14
|
constructor(service: MasterControlService);
|
|
15
|
+
ngOnInit(): void;
|
|
15
16
|
ngAfterViewChecked(): void;
|
|
16
17
|
dateDivisionFormat(event: any): void;
|
|
17
18
|
_onChange: any;
|
|
@@ -12,6 +12,7 @@ export declare class AmountTextboxComponent implements ControlValueAccessor {
|
|
|
12
12
|
_unTouched: any;
|
|
13
13
|
get isCommaAdded(): any;
|
|
14
14
|
blur: EventEmitter<any>;
|
|
15
|
+
ngOnInit(): void;
|
|
15
16
|
writeValue(obj: any): void;
|
|
16
17
|
registerOnChange(fn: any): void;
|
|
17
18
|
registerOnTouched(fn: any): void;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { MasterControlService } from '../master-control.service';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ButtonComponent {
|
|
4
|
+
export declare class ButtonComponent implements OnInit {
|
|
4
5
|
masterService: MasterControlService;
|
|
5
6
|
constructor(masterService: MasterControlService);
|
|
7
|
+
ngOnInit(): void;
|
|
6
8
|
field: any;
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
8
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -11,6 +11,7 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
11
11
|
change: EventEmitter<any>;
|
|
12
12
|
_onChange: any;
|
|
13
13
|
_unTouched: any;
|
|
14
|
+
ngOnInit(): void;
|
|
14
15
|
writeValue(obj: any): void;
|
|
15
16
|
registerOnChange(fn: any): void;
|
|
16
17
|
registerOnTouched(fn: any): void;
|
|
@@ -23,6 +23,7 @@ export declare class DobComponent implements ControlValueAccessor {
|
|
|
23
23
|
dateSelected: EventEmitter<any>;
|
|
24
24
|
invalidDate: EventEmitter<any>;
|
|
25
25
|
constructor(service: MasterControlService);
|
|
26
|
+
ngOnInit(): void;
|
|
26
27
|
dateDivisionFormat(event: any): void;
|
|
27
28
|
_onChange: any;
|
|
28
29
|
_unTouched: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function initializeFieldNameAttribute(field: any): any;
|
|
@@ -9,6 +9,7 @@ export declare class InfoTextboxComponent implements ControlValueAccessor {
|
|
|
9
9
|
infoClick: EventEmitter<any>;
|
|
10
10
|
_onChange: any;
|
|
11
11
|
_unTouched: any;
|
|
12
|
+
ngOnInit(): void;
|
|
12
13
|
writeValue(obj: any): void;
|
|
13
14
|
registerOnChange(fn: any): void;
|
|
14
15
|
registerOnTouched(fn: any): void;
|
|
@@ -15,6 +15,7 @@ export declare class SelectComponent implements ControlValueAccessor {
|
|
|
15
15
|
selectionChange: EventEmitter<any>;
|
|
16
16
|
infoClick: EventEmitter<any>;
|
|
17
17
|
isDropdownOpen: boolean;
|
|
18
|
+
ngOnInit(): void;
|
|
18
19
|
writeValue(value: any): void;
|
|
19
20
|
registerOnChange(fn: any): void;
|
|
20
21
|
registerOnTouched(fn: any): void;
|
|
@@ -11,6 +11,7 @@ export declare class SelectTextboxComponent {
|
|
|
11
11
|
_onChange: any;
|
|
12
12
|
_unTouched: any;
|
|
13
13
|
constructor(masterControlService: MasterControlService);
|
|
14
|
+
ngOnInit(): void;
|
|
14
15
|
writeValue(obj: any): void;
|
|
15
16
|
registerOnChange(fn: any): void;
|
|
16
17
|
registerOnTouched(fn: any): void;
|
|
@@ -11,6 +11,7 @@ export declare class TextareaComponent implements ControlValueAccessor {
|
|
|
11
11
|
_onChange: any;
|
|
12
12
|
_onTouched: any;
|
|
13
13
|
blur: EventEmitter<any>;
|
|
14
|
+
ngOnInit(): void;
|
|
14
15
|
writeValue(obj: any): void;
|
|
15
16
|
registerOnChange(fn: any): void;
|
|
16
17
|
registerOnTouched(fn: any): void;
|
|
@@ -11,6 +11,7 @@ export declare class ToggleComponent implements ControlValueAccessor {
|
|
|
11
11
|
_onChange: any;
|
|
12
12
|
_onTouched: any;
|
|
13
13
|
change: EventEmitter<any>;
|
|
14
|
+
ngOnInit(): void;
|
|
14
15
|
writeValue(obj: any): void;
|
|
15
16
|
registerOnChange(fn: any): void;
|
|
16
17
|
registerOnTouched(fn: any): void;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ToggleButtonComponent implements ControlValueAccessor {
|
|
4
|
+
export declare class ToggleButtonComponent implements ControlValueAccessor, OnInit {
|
|
5
|
+
ngOnInit(): void;
|
|
5
6
|
reactiveFormControlobject: any;
|
|
6
7
|
field: any;
|
|
7
8
|
selectedValue: any;
|
|
@@ -13,6 +13,7 @@ export declare class UploadComponent implements ControlValueAccessor {
|
|
|
13
13
|
openQuoteImageObj: any;
|
|
14
14
|
http: any;
|
|
15
15
|
constructor(masterService: MasterControlService, appRef: ApplicationRef, injector: EnvironmentInjector, masterservice: MasterService);
|
|
16
|
+
ngOnInit(): void;
|
|
16
17
|
ngOnChanges(changes: SimpleChanges): void;
|
|
17
18
|
field: any;
|
|
18
19
|
reactiveFormControlobject: any;
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|