Commit 9e561eaf05985bcbe8a724b631edd369f1a7f064

Authored by Igor Kulikov
1 parent 654bd029

Optimize imports

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