Skip to content

Commit

Permalink
feat(kit): imports made relative
Browse files Browse the repository at this point in the history
  • Loading branch information
zarghamkhandev committed Apr 7, 2022
1 parent 136fa1a commit afead3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion projects/kit/components/avatar/avatar-options.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {InjectionToken, ValueProvider} from '@angular/core';
import {TuiSizeXS, TuiSizeXXL} from '@taiga-ui/core/types';
import {TuiSizeXS, TuiSizeXXL} from '@taiga-ui/core';

export interface TuiAvatarOptions {
readonly size: TuiSizeXS | TuiSizeXXL;
Expand Down
9 changes: 4 additions & 5 deletions projects/kit/components/avatar/tests/avatar-options.spec.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import {Component, ViewChild} from '@angular/core';
import {ComponentFixture, TestBed} from '@angular/core/testing';
import {
TuiAvatarComponent,
TuiAvatarModule,
tuiAvatarOptionsProvider,
} from '@taiga-ui/kit';

import {TuiAvatarComponent} from '../avatar.component';
import {TuiAvatarModule} from '../avatar.module';
import {tuiAvatarOptionsProvider} from '../avatar-options';

describe('Avatar component options', () => {
let fixture: ComponentFixture<TestComponent>;
Expand Down

0 comments on commit afead3d

Please sign in to comment.