funky-framadate-front/src/app/features/administration/form/text-select/text-select.component.ts

22 lines
520 B
TypeScript
Raw Normal View History

2021-02-05 17:02:52 +01:00
import { Component, Input, OnInit } from '@angular/core';
import { UntypedFormGroup } from '@angular/forms';
2021-02-04 16:14:07 +01:00
@Component({
selector: 'app-text-select',
templateUrl: './text-select.component.html',
styleUrls: ['./text-select.component.scss'],
})
export class TextSelectComponent implements OnInit {
2021-02-05 17:02:52 +01:00
@Input()
public form: UntypedFormGroup;
2021-02-12 14:51:17 +01:00
public choices = [];
2021-02-05 17:02:52 +01:00
2021-02-04 16:14:07 +01:00
constructor() {}
ngOnInit(): void {}
2021-02-12 14:51:17 +01:00
reinitChoices(): void {}
addChoice(): void {}
deleteChoiceField(i): void {}
keyOnChoice($event, i): void {}
2021-02-04 16:14:07 +01:00
}