master-control 0.3.12 → 0.3.13

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.
@@ -11,6 +11,9 @@ export declare class AutocompleteComponent implements ControlValueAccessor {
11
11
  inputValue: any;
12
12
  reactiveFormControlobject: any;
13
13
  blur: EventEmitter<any>;
14
+ selectionChanged: EventEmitter<any>;
15
+ valueChanged: EventEmitter<any>;
16
+ optionSelected: EventEmitter<any>;
14
17
  ngOnInit(): void;
15
18
  onChange: any;
16
19
  onTouched: any;
@@ -23,6 +26,9 @@ export declare class AutocompleteComponent implements ControlValueAccessor {
23
26
  onBlur(event?: any): void;
24
27
  filterOptions(): void;
25
28
  displayFn: (option: any) => string;
29
+ getCurrentValue(): any;
30
+ getCurrentOption(): any;
31
+ setValue(value: any): void;
26
32
  static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "lib-autocomplete", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; }, { "blur": "blur"; }, never, never, true, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "lib-autocomplete", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; }, { "blur": "blur"; "selectionChanged": "selectionChanged"; "valueChanged": "valueChanged"; "optionSelected": "optionSelected"; }, never, never, true, never>;
28
34
  }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "master-control",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "description": "input mask to the textbox and visually highlight the selected radio button, even when feild itself disabled.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.2.0",
Binary file