updated to the latest 9.x version

This commit is contained in:
Giuseppe Digilio
2020-11-18 19:02:55 +01:00
parent 17d7e10ac3
commit 1b21af3191
35 changed files with 974 additions and 795 deletions

View File

@@ -2,7 +2,6 @@ import {
Component,
ElementRef,
EventEmitter,
forwardRef,
Input,
OnChanges,
Output,
@@ -13,7 +12,7 @@ import {
} from '@angular/core';
import { BehaviorSubject } from 'rxjs';
import { hasValue, isNotEmpty } from '../empty.util';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
import { ControlValueAccessor } from '@angular/forms';
@Component({
selector: 'ds-input-suggestions',
@@ -92,7 +91,7 @@ export class InputSuggestionsComponent implements ControlValueAccessor, OnChange
/**
* Reference to the input field component
*/
@ViewChild('inputField', {static: false}) queryInput: ElementRef;
@ViewChild('inputField') queryInput: ElementRef;
/**
* Reference to the suggestion components
*/