Skip to content

Commit

Permalink
chore: apply changes after linting [bot]
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot authored and taiga-family-bot committed Sep 20, 2024
1 parent 5f42a14 commit 5d00180
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import {TuiAppBar, TuiCardLarge, TuiHeader} from '@taiga-ui/layout';
standalone: true,
imports: [
TuiAppBar,
TuiAppearance,
TuiButton,
TuiProgress,
TuiCardLarge,
TuiHeader,
TuiProgress,
TuiTitle,
TuiCardLarge,
TuiAppearance,
],
templateUrl: './index.html',
styleUrls: ['./index.less'],
Expand Down
5 changes: 3 additions & 2 deletions projects/layout/components/app-bar/app-bar-back.component.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
import {ChangeDetectionStrategy, Component, inject} from '@angular/core';
import {TUI_SPIN_ICONS, TuiIcon} from '@taiga-ui/core';
import {TuiIcon} from '@taiga-ui/core/components/icon';
import type {TuiAppearanceOptions} from '@taiga-ui/core/directives/appearance';
import {
TuiAppearance,
tuiAppearanceOptionsProvider,
} from '@taiga-ui/core/directives/appearance';
import {TUI_SPIN_ICONS} from '@taiga-ui/core/tokens';

@Component({
standalone: true,
selector: 'button[tuiAppBarBack], a[tuiAppBarBack]',
imports: [TuiIcon],
templateUrl: './app-bar-back.template.html',
styleUrls: ['./app-bar-back.style.less'],
changeDetection: ChangeDetectionStrategy.OnPush,
providers: [tuiAppearanceOptionsProvider(TuiAppBarBack)],
hostDirectives: [TuiAppearance],
imports: [TuiIcon],
})
export class TuiAppBarBack implements TuiAppearanceOptions {
protected readonly icons = inject(TUI_SPIN_ICONS);
Expand Down
4 changes: 2 additions & 2 deletions projects/layout/components/app-bar/app-bar-size.directive.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {Directive, inject} from '@angular/core';
import {toSignal} from '@angular/core/rxjs-interop';
import {tuiDirectiveBinding} from '@taiga-ui/cdk';
import {TuiBreakpointService} from '@taiga-ui/core';
import {tuiDirectiveBinding} from '@taiga-ui/cdk/utils/miscellaneous';
import {TuiBreakpointService} from '@taiga-ui/core/services';
import {map} from 'rxjs';

import {TuiAppBarComponent} from './app-bar.component';
Expand Down

0 comments on commit 5d00180

Please sign in to comment.