MCPcopy Index your code
hub / github.com/angular/components / setDefaultStateEffect

Method setDefaultStateEffect

src/aria/private/menu/menu.ts:211–217  ·  view source on GitHub ↗

Sets the default active state of the menu before receiving interaction for the first time.

()

Source from the content-addressed store, hash-verified

209
210 /** Sets the default active state of the menu before receiving interaction for the first time. */
211 setDefaultStateEffect(): void {
212 if (this.hasBeenInteracted() || this.hasBeenHovered()) return;
213
214 if (this.inputs.items().length > 0) {
215 this.setDefaultState();
216 }
217 }
218
219 /** Handles keyboard events for the menu. */
220 onKeydown(event: KeyboardEvent) {

Callers 1

menu.spec.tsFile · 0.45

Calls 1

setDefaultStateMethod · 0.95

Tested by

no test coverage detected