Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 6x 12x 12x | import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core' @Component({ selector: 'app-default-dropdown', standalone: true, schemas: [CUSTOM_ELEMENTS_SCHEMA], template: ` <div> <vg-dropdown label="Select an Option" placeholder="Choose one..." [options]="sampleOptions" [value]="value" (vg-change)="onChange($event)" data-testid="default-dropdown" ></vg-dropdown> <p style="margin-top: 12px;"> Selected: <strong>{{ value || '(none)' }}</strong> </p> </div> `, }) export class DefaultDropdownComponent { public value = '' public sampleOptions = [ { label: 'Option 1', value: 'option1', description: 'First option' }, { label: 'Option 2', value: 'option2', description: 'Second option' }, { label: 'Option 3', value: 'option3', description: 'Third option' }, { label: 'Disabled Option', value: 'disabled', description: 'This option is disabled', disabled: true }, ] onChange(event: Event) { const customEvent = event as CustomEvent this.value = customEvent.detail.value } } |