Created
March 26, 2022 21:25
-
-
Save mseemann/0d8dc19eb7ed7206d053cc0f25d5de84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input [ngModel]="viewModel" (click)="inputClicked()" (focus)="inputFocused()" (blur)="inputBlurred()"> | |
<div *ngIf="optionsVisible" class="options"> | |
<div *ngFor="let option of options" (click)="optionClicked(option)" class="option-item" | |
[ngClass]="{active:option===selectedOption}"> | |
{{option.label}} | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment