From 4dc6479c036dea17d9748c9ff565e9c3a8955c5e Mon Sep 17 00:00:00 2001 From: waterplea Date: Mon, 1 Apr 2024 21:05:37 +0700 Subject: [PATCH] chore: fix stuff --- projects/kit/components/arrow/arrow.component.ts | 4 ++-- projects/kit/components/arrow/arrow.module.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/kit/components/arrow/arrow.component.ts b/projects/kit/components/arrow/arrow.component.ts index 4be9bf092390..f42e534b1415 100644 --- a/projects/kit/components/arrow/arrow.component.ts +++ b/projects/kit/components/arrow/arrow.component.ts @@ -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}); @@ -34,4 +34,4 @@ export class TuiArrowOldComponent { } } -export const TUI_ARROW = new PolymorpheusComponent(TuiArrowOldComponent); +export const TUI_ARROW = new PolymorpheusComponent(TuiArrowComponent); diff --git a/projects/kit/components/arrow/arrow.module.ts b/projects/kit/components/arrow/arrow.module.ts index 54f0325144eb..bc4f27ba3ce6 100644 --- a/projects/kit/components/arrow/arrow.module.ts +++ b/projects/kit/components/arrow/arrow.module.ts @@ -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 {}