We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1504f1 commit f411f52Copy full SHA for f411f52
src/dropdown/abstract-dropdown-view.class.ts
@@ -19,6 +19,17 @@ export class AbstractDropdownView {
19
* Emits selection events to other class.
20
*/
21
@Output() select: EventEmitter<Object>;
22
+ /**
23
+ * Event to suggest a blur on the view.
24
+ * Emits _after_ the first/last item has been focussed
25
+ * ex.
26
+ * ArrowUp -> focus first item
27
+ * ArrowUp -> emit event
28
+ *
29
+ * It's recommended that the implementing view include a specific type union of possible blurs
30
+ * ex. `@Output() blur = new EventEmitter<"top" | "bottom">();`
31
+ */
32
+ @Output() blur: EventEmitter<any>;
33
/**
34
* Specifies whether or not the `DropdownList` supports selecting multiple items as opposed to single
35
* item selection.
0 commit comments