Skip to content

Commit

Permalink
fix: components import
Browse files Browse the repository at this point in the history
  • Loading branch information
astagi committed Dec 20, 2024
1 parent 7c86d84 commit e54bbb9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { TransferStore } from './store/transfer.store';
import { ItTransferListComponent } from './transfer-list/transfer-list.component';
import { TransferItem } from './transfer.model';
import { TranslateModule } from '@ngx-translate/core';
import { ItIconComponent } from 'projects/design-angular-kit/src/public_api';
import { ItIconComponent } from '../../utils/icon/icon.component';

/**
* Transfer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { ChangeDetectionStrategy, Component, Host, Input } from '@angular/core';
import { NgTemplateOutlet } from '@angular/common';
import { TranslateModule } from '@ngx-translate/core';
import { inputToBoolean } from '../../../../utils/coercion';
import { ItLinkComponent, ItSkiplinkComponent } from 'projects/design-angular-kit/src/public_api';
import { ItLinkComponent } from '../../../core/link/link.component';
import { ItSkiplinkComponent } from '../skiplink/skiplink.component';

@Component({
standalone: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
import { NgTemplateOutlet } from '@angular/common';
import { TranslateModule } from '@ngx-translate/core';
import { inputToBoolean } from '../../../../utils/coercion';
import { ItLinkComponent } from 'projects/design-angular-kit/src/public_api';
import { ItLinkComponent } from '../../../core/link/link.component';

@Component({
standalone: true,
Expand Down

0 comments on commit e54bbb9

Please sign in to comment.