solved lint issues, added typedoc, fixed lgtm warnings

This commit is contained in:
lotte
2020-06-30 13:44:38 +02:00
parent c7994f9d90
commit 09665dfbe2
12 changed files with 39 additions and 14 deletions

View File

@@ -19,12 +19,16 @@ export class StringValueInputComponent extends ValueInputComponent<string> {
* The current value of the string
*/
value: string;
/**
* Initial value of the field
*/
@Input() initialValue;
ngOnInit() {
this.value = this.initialValue;
}
setValue(value) {
this.value = value;
this.updateValue.emit(value)