|
|
@ -8,7 +8,6 @@ import { |
|
|
DoCheck, |
|
|
DoCheck, |
|
|
ElementRef, |
|
|
ElementRef, |
|
|
Input, |
|
|
Input, |
|
|
OnDestroy, |
|
|
|
|
|
OnInit, |
|
|
OnInit, |
|
|
ViewChild, |
|
|
ViewChild, |
|
|
inject, |
|
|
inject, |
|
|
@ -62,7 +61,7 @@ import { AbstractMatFormField } from '../shared/abstract-mat-form-field'; |
|
|
}) |
|
|
}) |
|
|
export class GfCurrencySelectorComponent |
|
|
export class GfCurrencySelectorComponent |
|
|
extends AbstractMatFormField<string | null> |
|
|
extends AbstractMatFormField<string | null> |
|
|
implements DoCheck, OnDestroy, OnInit |
|
|
implements DoCheck, OnInit |
|
|
{ |
|
|
{ |
|
|
@ViewChild('currencyAutocomplete') |
|
|
@ViewChild('currencyAutocomplete') |
|
|
public currencyAutocomplete: MatAutocomplete; |
|
|
public currencyAutocomplete: MatAutocomplete; |
|
|
@ -152,10 +151,6 @@ export class GfCurrencySelectorComponent |
|
|
super.value = option.value; |
|
|
super.value = option.value; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public ngOnDestroy() { |
|
|
|
|
|
super.ngOnDestroy(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private filter(value: string) { |
|
|
private filter(value: string) { |
|
|
const filterValue = value.toLowerCase(); |
|
|
const filterValue = value.toLowerCase(); |
|
|
|
|
|
|
|
|
|