Showing
1 changed file
with
7 additions
and
8 deletions
... | ... | @@ -16,22 +16,25 @@ |
16 | 16 | |
17 | 17 | import { COMMA, ENTER, SEMICOLON } from '@angular/cdk/keycodes'; |
18 | 18 | import { |
19 | - AfterViewInit, ChangeDetectionStrategy, | |
19 | + AfterViewInit, | |
20 | 20 | Component, |
21 | 21 | ElementRef, |
22 | 22 | forwardRef, |
23 | 23 | Input, |
24 | 24 | OnChanges, |
25 | 25 | OnInit, |
26 | - SimpleChanges, SkipSelf, | |
26 | + SimpleChanges, | |
27 | + SkipSelf, | |
27 | 28 | ViewChild |
28 | 29 | } from '@angular/core'; |
29 | 30 | import { |
30 | 31 | ControlValueAccessor, |
31 | 32 | FormBuilder, |
32 | 33 | FormControl, |
33 | - FormGroup, FormGroupDirective, | |
34 | - NG_VALUE_ACCESSOR, NgForm, | |
34 | + FormGroup, | |
35 | + FormGroupDirective, | |
36 | + NG_VALUE_ACCESSOR, | |
37 | + NgForm, | |
35 | 38 | Validators |
36 | 39 | } from '@angular/forms'; |
37 | 40 | import { Observable, of } from 'rxjs'; |
... | ... | @@ -51,10 +54,6 @@ import { UtilsService } from '@core/services/utils.service'; |
51 | 54 | import { ErrorStateMatcher } from '@angular/material/core'; |
52 | 55 | import { TruncatePipe } from '@shared/pipe/truncate.pipe'; |
53 | 56 | import { DialogService } from '@core/services/dialog.service'; |
54 | -import { | |
55 | - ColorPickerDialogComponent, | |
56 | - ColorPickerDialogData | |
57 | -} from '@shared/components/dialog/color-picker-dialog.component'; | |
58 | 57 | import { MatDialog } from '@angular/material/dialog'; |
59 | 58 | import { |
60 | 59 | DataKeyConfigDialogComponent, | ... | ... |