Skip to content

Commit

Permalink
fix: js-utils fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alisahinozcelik committed Nov 28, 2020
1 parent 3dafcc7 commit da82e5b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion projects/ng-utils/form/array/array-value-accessor.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AbstractControl, ControlValueAccessor, FormArray, FormControl, FormGroup } from '@angular/forms';
import { noop } from '@thalesrc/js-utils';
import { noop } from '@thalesrc/js-utils/function/noop';
import { BehaviorSubject, Subject } from 'rxjs';

type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Directive, Host, Input } from '@angular/core';
import { NgForm } from '@angular/forms';
import { difference } from '@thalesrc/js-utils';
import { difference } from '@thalesrc/js-utils/array/difference';
import { combineLatest, Observable } from 'rxjs';
import { distinctUntilChanged, map, takeUntil } from 'rxjs/operators';
import { InputStream, Unsubscriber } from '@thalesrc/ng-utils/utils';
Expand Down
2 changes: 1 addition & 1 deletion projects/ng-utils/overlay/overlay.directive.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Directive, EventEmitter, OnDestroy, Output, TemplateRef, ViewContainerRef } from '@angular/core';
import { defer } from '@thalesrc/js-utils';
import { defer } from '@thalesrc/js-utils/function/defer';
import { BehaviorSubject, Observable, Subscription } from 'rxjs';

import { OverlayService } from './overlay.service';
Expand Down
2 changes: 1 addition & 1 deletion projects/ng-utils/overlay/overlay.service.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Overlay, OverlayRef } from '@angular/cdk/overlay';
import { TemplatePortal } from '@angular/cdk/portal';
import { ElementRef, EmbeddedViewRef, Injectable } from '@angular/core';
import { defer } from '@thalesrc/js-utils';
import { defer } from '@thalesrc/js-utils/function/defer';
import { Observable } from 'rxjs';

import { OverlayDirective } from './overlay.directive';
Expand Down
2 changes: 1 addition & 1 deletion projects/ng-utils/overlay/overlay/overlay.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, ViewChild, AfterViewInit, Input, Output, EventEmitter } from '@angular/core';
import { OverlayDirective } from '../overlay.directive';
import { OpenPromise } from '@thalesrc/js-utils';
import { OpenPromise } from '@thalesrc/js-utils/open-promise';
import { InputStream } from '@thalesrc/ng-utils/utils';
import { Observable, EMPTY } from 'rxjs';
import { map, switchMap, pluck, first } from 'rxjs/operators';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { LocationChangeListener, PlatformLocation } from '@angular/common';
import { minMax, noop, replace } from '@thalesrc/js-utils';
import { minMax } from '@thalesrc/js-utils/math/min-max';
import { noop } from '@thalesrc/js-utils/function/noop';
import { replace } from '@thalesrc/js-utils/array/replace';
import { HASHCHANGE_EVENT_TYPE, POPSTATE_EVENT_TYPE } from './history-event-types';
import { HistoryItem } from './history-item.interface';

Expand Down
2 changes: 1 addition & 1 deletion projects/ng-utils/resize/animate-resize.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { of, merge, interval } from 'rxjs';
import { distinctUntilChanged, takeUntil, mapTo, exhaustMap, take, filter, pairwise } from 'rxjs/operators';
import { ResizeEvent } from '@thalesrc/resize-manager';
import { ResizeMode } from './resize-mode';
import { isTruthy } from '@thalesrc/js-utils';
import { isTruthy } from '@thalesrc/js-utils/is-truthy';

@Directive({
selector: '[thaAnimateResize]',
Expand Down

0 comments on commit da82e5b

Please sign in to comment.