From ff686e8f21eef0f29bf0727aeab9c20ae9dc0afd Mon Sep 17 00:00:00 2001 From: Peter Lauck Date: Sat, 18 Nov 2023 01:09:54 +0000 Subject: [PATCH] fix lint --- libs/design/toast/src/service/toast.service.ts | 8 ++++---- libs/design/toast/src/toast.module.ts | 4 ++-- libs/design/toast/src/toast/toast.component.ts | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libs/design/toast/src/service/toast.service.ts b/libs/design/toast/src/service/toast.service.ts index 7dbeb61ea9..c0ce3a2740 100644 --- a/libs/design/toast/src/service/toast.service.ts +++ b/libs/design/toast/src/service/toast.service.ts @@ -31,6 +31,9 @@ import { DaffFocusStackService, } from '@daffodil/design'; +import { daffToastChangesFocus } from './changes-focus'; +import { createPositionStrategy } from './position-strategy'; +import { DaffToastPositionService } from './position.service'; import { DaffToast, DaffToastData, @@ -39,15 +42,12 @@ import { DAFF_TOAST_OPTIONS, DaffToastOptions, } from '../options/daff-toast-options'; -import { DaffToastModule } from '../toast.module'; import { daffDefaultToastConfiguration, DaffToastConfiguration, } from '../toast/toast-config'; import { DaffToastTemplateComponent } from '../toast/toast-template.component'; -import { daffToastChangesFocus } from './changes-focus'; -import { createPositionStrategy } from './position-strategy'; -import { DaffToastPositionService } from './position.service'; +import { DaffToastModule } from '../toast.module'; @Injectable({ providedIn: DaffToastModule }) export class DaffToastService implements OnDestroy { diff --git a/libs/design/toast/src/toast.module.ts b/libs/design/toast/src/toast.module.ts index 1967e1db0a..6e17a27166 100644 --- a/libs/design/toast/src/toast.module.ts +++ b/libs/design/toast/src/toast.module.ts @@ -10,11 +10,11 @@ import { } from '@daffodil/design'; import { DaffToastPositionService } from './service/position.service'; +import { DaffToastTemplateComponent } from './toast/toast-template.component'; +import { DaffToastComponent } from './toast/toast.component'; import { DaffToastActionsDirective } from './toast-actions/toast-actions.directive'; import { DaffToastMessageDirective } from './toast-message/toast-message.directive'; import { DaffToastTitleDirective } from './toast-title/toast-title.directive'; -import { DaffToastTemplateComponent } from './toast/toast-template.component'; -import { DaffToastComponent } from './toast/toast.component'; @NgModule({ diff --git a/libs/design/toast/src/toast/toast.component.ts b/libs/design/toast/src/toast/toast.component.ts index 68769793d7..f12a882353 100644 --- a/libs/design/toast/src/toast/toast.component.ts +++ b/libs/design/toast/src/toast/toast.component.ts @@ -63,10 +63,10 @@ export class DaffToastComponent @HostBinding('attr.role') ariaLive = 'status'; @ContentChild(DaffToastActionsDirective) - _actions: DaffToastActionsDirective; + _actions: DaffToastActionsDirective; @ContentChild(DaffPrefixDirective) - _prefix: DaffPrefixDirective; + _prefix: DaffPrefixDirective; @Input() toast: DaffToast;