This commit is contained in:
Andras Schmelczer 2019-09-21 11:51:53 +02:00
parent 674f07f5f1
commit 19aad2b2af
23 changed files with 231 additions and 10012 deletions

View file

@ -8,18 +8,15 @@ import { CancelService } from '../../../services/cancel.service';
})
export class SelectAddComponent {
@Input() placeholder = 'Add a new value…';
@Input() newValuePlaceholder = 'Add a value…';
@Input() maxItemCount = 7;
@Input() options: string[];
@Input() alwaysDropShadow = false;
@Input() onlyShadowBorder = false;
@Input() editable = false;
@Input() disabled = false;
@Input() set default(value: string) {
this.selected = value;
if (value) {
this.value.emit(value);
}
}
backgroundHeight: string;