Skip to content

Commit

Permalink
chore: fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea committed Apr 2, 2024
1 parent d776386 commit 4dc6479
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions projects/kit/components/arrow/arrow.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {TUI_ARROW_OPTIONS} from './arrow.options';
styleUrls: ['./arrow.style.less'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class TuiArrowOldComponent {
export class TuiArrowComponent {
private readonly textfieldSize = inject(TUI_TEXTFIELD_SIZE);
private readonly options = inject(TUI_ARROW_OPTIONS);
protected readonly directive = inject(TuiDropdownOpenDirective, {optional: true});
Expand All @@ -34,4 +34,4 @@ export class TuiArrowOldComponent {
}
}

export const TUI_ARROW = new PolymorpheusComponent(TuiArrowOldComponent);
export const TUI_ARROW = new PolymorpheusComponent(TuiArrowComponent);
6 changes: 3 additions & 3 deletions projects/kit/components/arrow/arrow.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import {NgModule} from '@angular/core';
import {TuiSvgModule} from '@taiga-ui/core';
import {PolymorpheusModule} from '@tinkoff/ng-polymorpheus';

import {TuiArrowOldComponent} from './arrow.component';
import {TuiArrowComponent} from './arrow.component';

@NgModule({
imports: [CommonModule, TuiSvgModule, PolymorpheusModule],
declarations: [TuiArrowOldComponent],
exports: [TuiArrowOldComponent],
declarations: [TuiArrowComponent],
exports: [TuiArrowComponent],
})
export class TuiArrowModule {}

0 comments on commit 4dc6479

Please sign in to comment.