@bnsights/bbsf-controls 1.0.114 → 1.0.116
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/README.md +8 -0
- package/bnsights-bbsf-controls-1.0.116.tgz +0 -0
- package/esm2022/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.mjs +28 -17
- package/fesm2022/bnsights-bbsf-controls.mjs +40 -30
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.d.ts +4 -1
- package/package.json +1 -1
- package/bnsights-bbsf-controls-1.0.114.tgz +0 -0
|
@@ -7,6 +7,7 @@ import { Observable } from 'rxjs';
|
|
|
7
7
|
import { HttpClient } from '@angular/common/http';
|
|
8
8
|
import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
9
9
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
10
|
+
import { CustomValidation } from '../../Shared/Models/CustomValidation';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class AutocompleteTextBoxComponent implements OnInit {
|
|
12
13
|
private http;
|
|
@@ -41,11 +42,13 @@ export declare class AutocompleteTextBoxComponent implements OnInit {
|
|
|
41
42
|
SelectedValue: string;
|
|
42
43
|
avatarImage: string;
|
|
43
44
|
textDir: any;
|
|
45
|
+
newSelectionValidation: CustomValidation;
|
|
44
46
|
ngOnInit(): void;
|
|
47
|
+
loadValidator: () => void;
|
|
45
48
|
ngAfterViewInit(): void;
|
|
46
49
|
resetError: () => void;
|
|
47
50
|
showGlobalError(): void;
|
|
48
|
-
getErrorValidation(ErrorList: any)
|
|
51
|
+
getErrorValidation: (ErrorList: any) => string;
|
|
49
52
|
copyInputMessage(inputElement: any): void;
|
|
50
53
|
selectEvent(item: any): void;
|
|
51
54
|
onChangeSearch(search: string): Promise<void>;
|
package/package.json
CHANGED
|
Binary file
|