@colijnit/corecomponents_v12 261.20.15 → 261.20.16
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/index.d.ts
CHANGED
|
@@ -2001,6 +2001,7 @@ declare class InputRadioButtonModule {
|
|
|
2001
2001
|
|
|
2002
2002
|
declare class InputSearchComponent extends BaseInputComponent<string> implements OnDestroy {
|
|
2003
2003
|
readonly searchIcon: CoreComponentsIcon;
|
|
2004
|
+
inputSearchText: InputTextComponent;
|
|
2004
2005
|
placeholder: string;
|
|
2005
2006
|
handleKeydown: boolean;
|
|
2006
2007
|
search: EventEmitter<string>;
|
|
@@ -2015,6 +2016,7 @@ declare class InputSearchComponent extends BaseInputComponent<string> implements
|
|
|
2015
2016
|
showClass(): boolean;
|
|
2016
2017
|
handleKeyDown(event: KeyboardEvent): void;
|
|
2017
2018
|
handleModelChange(model: string): void;
|
|
2019
|
+
requestFocus(): void;
|
|
2018
2020
|
private isMobileDevice;
|
|
2019
2021
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputSearchComponent, never>;
|
|
2020
2022
|
static ɵcmp: i0.ɵɵComponentDeclaration<InputSearchComponent, "co-input-search", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "handleKeydown": { "alias": "handleKeydown"; "required": false; }; "useLeftIcon": { "alias": "useLeftIcon"; "required": false; }; "useRightIcon": { "alias": "useRightIcon"; "required": false; }; "leftIconData": { "alias": "leftIconData"; "required": false; }; "rightIconData": { "alias": "rightIconData"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; }, { "search": "search"; "isFocused": "isFocused"; "leftIconClick": "leftIconClick"; "rightIconClick": "rightIconClick"; }, never, never, false, never>;
|
|
@@ -3190,6 +3192,7 @@ declare class ScannerService implements OnDestroy {
|
|
|
3190
3192
|
|
|
3191
3193
|
declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
3192
3194
|
private _scannerService;
|
|
3195
|
+
inputSearch: InputSearchComponent;
|
|
3193
3196
|
model: string;
|
|
3194
3197
|
placeholder: string;
|
|
3195
3198
|
centerLabel: boolean;
|
|
@@ -3212,6 +3215,7 @@ declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
|
3212
3215
|
ngOnDestroy(): void;
|
|
3213
3216
|
handleKeyDown(event: KeyboardEvent): void;
|
|
3214
3217
|
triggerCodeScanned(code?: string): void;
|
|
3218
|
+
requestFocus(): void;
|
|
3215
3219
|
private _clearTimeout;
|
|
3216
3220
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputScannerComponent, never>;
|
|
3217
3221
|
static ɵcmp: i0.ɵɵComponentDeclaration<InputScannerComponent, "co-input-scanner", never, { "model": { "alias": "model"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "useLeftIcon": { "alias": "useLeftIcon"; "required": false; }; "useRightIcon": { "alias": "useRightIcon"; "required": false; }; "leftIconData": { "alias": "leftIconData"; "required": false; }; "rightIconData": { "alias": "rightIconData"; "required": false; }; "customCssClass": { "alias": "customCssClass"; "required": false; }; "scannerDisabled": { "alias": "scannerDisabled"; "required": false; }; }, { "modelChange": "modelChange"; "leftIconClick": "leftIconClick"; "rightIconClick": "rightIconClick"; "search": "search"; "isFocused": "isFocused"; "barCodeScanned": "barCodeScanned"; }, never, never, false, never>;
|