Optimize imports

This commit is contained in:
Igor Kulikov 2020-02-11 12:52:51 +02:00
parent 90047abc33
commit 0c3feb4ecd
2 changed files with 6 additions and 6 deletions

View File

@ -14,18 +14,16 @@
/// limitations under the License.
///
import { Component, Inject, OnInit, QueryList, ViewChildren, TemplateRef, AfterViewInit } from '@angular/core';
import { AfterViewInit, Component, Inject, OnInit, QueryList, ViewChildren } from '@angular/core';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
import { Router } from '@angular/router';
import { DialogComponent } from '@app/shared/components/dialog.component';
import { DialogComponent } from '@shared/components/dialog.component';
import { UtilsService } from '@core/services/utils.service';
import { FormControl } from '@angular/forms';
import { Observable, of, merge, noop } from 'rxjs';
import { delay, map, mergeMap, share, startWith, tap, mapTo } from 'rxjs/operators';
import { DashboardInfo } from '@shared/models/dashboard.models';
import { MatTab } from '@angular/material/tabs';
import { merge, Observable, of } from 'rxjs';
import { delay, map, mapTo, mergeMap, share, startWith, tap } from 'rxjs/operators';
export interface MaterialIconsDialogData {
icon: string;

View File

@ -14,5 +14,7 @@
/// limitations under the License.
///
export * from './dialog/color-picker-dialog.component';
export * from './dialog/material-icons-dialog.component';
export * from './page.component';
export * from './js-func.component';