100479: Removed the default input values to make it possible to override them in themes

This commit is contained in:
Alexandre Vryghem
2023-03-27 13:09:10 +02:00
parent 7b27251cf2
commit fc7997d8b8
7 changed files with 10 additions and 45 deletions

View File

@@ -11,11 +11,11 @@ export class ThemedCollectionDropdownComponent extends ThemedComponent<Collectio
@Input() entityType: string;
@Output() searchComplete = new EventEmitter<any>();
@Output() searchComplete: EventEmitter<any> = new EventEmitter();
@Output() theOnlySelectable = new EventEmitter<CollectionListEntry>();
@Output() theOnlySelectable: EventEmitter<CollectionListEntry> = new EventEmitter();
@Output() selectionChange = new EventEmitter<CollectionListEntry>();
@Output() selectionChange = new EventEmitter();
protected inAndOutputNames: (keyof CollectionDropdownComponent & keyof this)[] = ['entityType', 'searchComplete', 'theOnlySelectable', 'selectionChange'];