skeleton user / group admin dialogs [WIP]

This commit is contained in:
Michael Shamoon
2022-11-13 07:23:33 -08:00
parent 2c95e632ef
commit def5c1a6cb
21 changed files with 515 additions and 34 deletions

View File

@@ -11,6 +11,7 @@
addTagText="Add item"
i18n-addTagText="Used for both types, correspondents, storage paths"
[placeholder]="placeholder"
[multiple]="multiple"
bindLabel="name"
bindValue="id"
(change)="onChange(value)"

View File

@@ -44,6 +44,9 @@ export class SelectComponent extends AbstractInputComponent<number> {
@Input()
placeholder: string
@Input()
multiple: boolean = false
@Output()
createNew = new EventEmitter<string>()