documentation 4.7.0 (#7341)

* documentation 4.7.0

* fix
This commit is contained in:
Eugenio Romano
2021-11-01 15:13:46 +00:00
committed by GitHub
parent 93c63ba0c8
commit eb1183946d
16 changed files with 442 additions and 18 deletions

View File

@@ -21,6 +21,8 @@ import { Directive, Input, Component, OnInit, OnChanges, ComponentFactoryResolve
selector: '[adf-node-counter]'
})
export class NodeCounterDirective implements OnInit, OnChanges {
/** Number to display in the counter badge */
@Input('adf-node-counter')
counter: number;

View File

@@ -27,6 +27,8 @@ import { SEARCH_QUERY_SERVICE_TOKEN } from '../../search-query-service.token';
encapsulation: ViewEncapsulation.None
})
export class SearchFormComponent {
/** Emitted when the form change */
@Output()
formChange: EventEmitter<SearchForm> = new EventEmitter<SearchForm>();