@colijnit/corecomponents_v12 257.1.19 → 257.1.21
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/bundles/colijnit-corecomponents_v12.umd.js +47 -5
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/input-scanner/bar-code-scanner.js +16 -3
- package/esm2015/lib/components/input-scanner/input-scanner.component.js +28 -4
- package/esm2015/lib/components/input-search/input-search.component.js +6 -1
- package/esm2015/lib/components/list-of-values/list-of-values.module.js +1 -2
- package/fesm2015/colijnit-corecomponents_v12.js +46 -5
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/input-scanner/bar-code-scanner.d.ts +3 -0
- package/lib/components/input-scanner/input-scanner.component.d.ts +7 -2
- package/lib/components/input-search/input-search.component.d.ts +1 -0
- package/package.json +1 -1
- package/colijnit-corecomponents_v12-257.1.18.tgz +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { ScannerService } from './scanner.service';
|
|
3
3
|
import { ScannerInput } from '../../interfaces/scanner-input.interface';
|
|
4
4
|
import { SafeHtml } from '@angular/platform-browser';
|
|
5
|
-
export declare class InputScannerComponent implements ScannerInput {
|
|
5
|
+
export declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
6
6
|
private _scannerService;
|
|
7
7
|
model: string;
|
|
8
8
|
placeholder: string;
|
|
@@ -19,6 +19,11 @@ export declare class InputScannerComponent implements ScannerInput {
|
|
|
19
19
|
isFocused: EventEmitter<boolean>;
|
|
20
20
|
barCodeScanned: EventEmitter<string>;
|
|
21
21
|
showClass(): boolean;
|
|
22
|
+
private _blockEnterKeydown;
|
|
23
|
+
private _keyDownTimeout;
|
|
22
24
|
constructor(_scannerService: ScannerService);
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
handleKeyDown(event: KeyboardEvent): void;
|
|
23
27
|
triggerCodeScanned(code?: string): void;
|
|
28
|
+
private _clearTimeout;
|
|
24
29
|
}
|
|
@@ -5,6 +5,7 @@ import { SafeHtml } from '@angular/platform-browser';
|
|
|
5
5
|
export declare class InputSearchComponent extends BaseInputComponent<string> implements OnDestroy {
|
|
6
6
|
readonly searchIcon: CoreComponentsIcon;
|
|
7
7
|
placeholder: string;
|
|
8
|
+
handleKeydown: boolean;
|
|
8
9
|
search: EventEmitter<string>;
|
|
9
10
|
isFocused: EventEmitter<boolean>;
|
|
10
11
|
leftIconClick: EventEmitter<MouseEvent>;
|
package/package.json
CHANGED
|
Binary file
|