@ieeesa-npm/presentation 0.33.9 → 0.33.10
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/components/date-picker/date-picker.component.mjs +3 -4
- package/esm2022/lib/components/search/search.component.mjs +28 -3
- package/fesm2022/ieeesa-npm-presentation.mjs +29 -4
- package/fesm2022/ieeesa-npm-presentation.mjs.map +1 -1
- package/lib/components/search/search.component.d.ts +12 -0
- package/package.json +1 -1
|
@@ -43,6 +43,18 @@ export declare class SearchComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
43
43
|
* @memberof SearchComponent
|
|
44
44
|
*/
|
|
45
45
|
ngAfterViewInit(): void;
|
|
46
|
+
/**
|
|
47
|
+
* Stops typing keystrokes from bubbling up to a parent control (such as an
|
|
48
|
+
* Angular Material `mat-select`) that would otherwise consume them. This is
|
|
49
|
+
* required when the search input is rendered inside a `mat-select` dropdown,
|
|
50
|
+
* where the space bar activates the highlighted option instead of typing a
|
|
51
|
+
* space, and letter keys trigger the built-in typeahead. Navigation and
|
|
52
|
+
* dismissal keys (Arrow keys, Enter, Escape, Tab) are allowed to propagate so
|
|
53
|
+
* the parent dropdown keeps its keyboard behaviour.
|
|
54
|
+
* @param {KeyboardEvent} event - The keydown event raised by the search input.
|
|
55
|
+
* @memberof SearchComponent
|
|
56
|
+
*/
|
|
57
|
+
onSearchKeyDown(event: KeyboardEvent): void;
|
|
46
58
|
/**
|
|
47
59
|
* Validates email based on defined validation patterns
|
|
48
60
|
* @param {string} email
|