master-control 0.3.32 → 0.3.33
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/autocomplete/autocomplete.component.mjs +3 -3
- package/esm2022/lib/footer/footer.component.mjs +12 -0
- package/esm2022/lib/footer-with-buttons/footer-with-buttons.component.mjs +23 -0
- package/esm2022/lib/master-control.component.mjs +10 -4
- package/esm2022/lib/textbox/textbox.component.mjs +213 -61
- package/esm2022/lib/top-header/top-header.component.mjs +34 -0
- package/fesm2022/master-control.mjs +279 -65
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/autocomplete/autocomplete.component.d.ts +1 -1
- package/lib/footer/footer.component.d.ts +6 -0
- package/lib/footer-with-buttons/footer-with-buttons.component.d.ts +16 -0
- package/lib/textbox/textbox.component.d.ts +26 -14
- package/lib/top-header/top-header.component.d.ts +23 -0
- package/master-control-0.3.33.tgz +0 -0
- package/package.json +2 -2
- package/master-control-0.3.32.tgz +0 -0
|
@@ -21,7 +21,7 @@ export declare class AutocompleteComponent implements ControlValueAccessor {
|
|
|
21
21
|
registerOnChange(fn: any): void;
|
|
22
22
|
registerOnTouched(fn: any): void;
|
|
23
23
|
setDisabledState?(isDisabled: boolean): void;
|
|
24
|
-
onInputChange(value:
|
|
24
|
+
onInputChange(value: any): void;
|
|
25
25
|
onOptionSelected(option: any): void;
|
|
26
26
|
onBlur(event?: any): void;
|
|
27
27
|
filterOptions(): void;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FooterComponent {
|
|
3
|
+
field: any;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "lib-footer", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FooterWithButtonsComponent {
|
|
3
|
+
field: any;
|
|
4
|
+
configData: {
|
|
5
|
+
configData: {
|
|
6
|
+
margin: string;
|
|
7
|
+
};
|
|
8
|
+
options: Array<{
|
|
9
|
+
label: string;
|
|
10
|
+
value: string;
|
|
11
|
+
}>;
|
|
12
|
+
};
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterWithButtonsComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterWithButtonsComponent, "lib-footer-with-buttons", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -1,27 +1,39 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, DoCheck, KeyValueDiffers } from '@angular/core';
|
|
2
2
|
import { MasterControlService } from '../master-control.service';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TextboxComponent implements ControlValueAccessor {
|
|
5
|
+
export declare class TextboxComponent implements ControlValueAccessor, DoCheck {
|
|
6
6
|
masterService: MasterControlService;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
private kvDiffers;
|
|
8
|
+
constructor(masterService: MasterControlService, kvDiffers: KeyValueDiffers);
|
|
9
9
|
field: any;
|
|
10
10
|
reactiveFormControlobject: any;
|
|
11
|
-
_onChange
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
private _onChange;
|
|
12
|
+
private _onTouched;
|
|
13
|
+
inputValueDeepCopy: string;
|
|
14
|
+
inputValue: string;
|
|
15
|
+
private lastBeforeInput;
|
|
16
|
+
private fieldDiffer?;
|
|
17
|
+
private cfgDiffer?;
|
|
18
|
+
private styleDiffer?;
|
|
19
|
+
private validatorsDiffer?;
|
|
15
20
|
blur: EventEmitter<any>;
|
|
16
|
-
|
|
21
|
+
ngDoCheck(): void;
|
|
22
|
+
private onFieldConfigChanged;
|
|
17
23
|
writeValue(obj: any): void;
|
|
18
24
|
registerOnChange(fn: any): void;
|
|
19
25
|
registerOnTouched(fn: any): void;
|
|
20
|
-
setDisabledState
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
setDisabledState(isDisabled: boolean): void;
|
|
27
|
+
onBeforeInput(event: InputEvent): void;
|
|
28
|
+
onInputChange(event: Event): void;
|
|
29
|
+
onInputBlur(event?: Event): void;
|
|
30
|
+
onInputFocus(): void;
|
|
31
|
+
private syncUIFromRaw;
|
|
32
|
+
private applyCapitalization;
|
|
33
|
+
private normalizeNumber;
|
|
34
|
+
private maskInput;
|
|
35
|
+
private applyIntentToRaw;
|
|
36
|
+
private computeNextCaret;
|
|
25
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, never>;
|
|
26
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "lib-textbox", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; }, { "blur": "blur"; }, never, never, true, never>;
|
|
27
39
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TopHeaderComponent {
|
|
3
|
+
field: any;
|
|
4
|
+
showProfileMenu: boolean;
|
|
5
|
+
configData: {
|
|
6
|
+
options: {
|
|
7
|
+
label: string;
|
|
8
|
+
value: string;
|
|
9
|
+
}[];
|
|
10
|
+
configData: {
|
|
11
|
+
logoUrl: string;
|
|
12
|
+
notificationBellVisible: string;
|
|
13
|
+
notificationCount: string;
|
|
14
|
+
notificationImageUrl: string;
|
|
15
|
+
UserProfileVisible: string;
|
|
16
|
+
imageUrl: string;
|
|
17
|
+
userProfileText: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TopHeaderComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TopHeaderComponent, "lib-top-header", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|