ng-implementation/my-workspace/projects/sae-lib/inputs/multi-selector/multi-selector.ts
2025-09-02 14:40:47 +02:00

15 lines
383 B
TypeScript

import {Component, Input} from '@angular/core';
@Component({
selector: 'sae-multi-selector',
imports: [],
templateUrl: './multi-selector.html',
styleUrl: './multi-selector.scss'
})
export class MultiSelector {
@Input() label!: string;
@Input() choices: any = ['choix 1', 'choix 2', 'choix 3'];
@Input() selectedChoices: any = ['choix 4'];
displayDropdown = true;
}