Browse Source

Optimize imports

pull/2411/head
Igor Kulikov 6 years ago
parent
commit
0c3feb4ecd
  1. 10
      ui-ngx/src/app/shared/components/dialog/material-icons-dialog.component.ts
  2. 2
      ui-ngx/src/app/shared/components/public-api.ts

10
ui-ngx/src/app/shared/components/dialog/material-icons-dialog.component.ts

@ -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;

2
ui-ngx/src/app/shared/components/public-api.ts

@ -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';

Loading…
Cancel
Save