From 988e732bccc78c64d313b73bc0845d9ace936ec9 Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Fri, 24 Oct 2025 12:14:02 -0700 Subject: [PATCH] remove title truncate --- .../components/src/callout/callout.component.ts | 4 ++-- libs/components/src/callout/callout.stories.ts | 17 ----------------- 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/libs/components/src/callout/callout.component.ts b/libs/components/src/callout/callout.component.ts index 59156600b15..172bbdbc365 100644 --- a/libs/components/src/callout/callout.component.ts +++ b/libs/components/src/callout/callout.component.ts @@ -34,12 +34,12 @@ let nextId = 0; @Component({ selector: "bit-callout", templateUrl: "callout.component.html", - imports: [A11yTitleDirective, SharedModule, TypographyModule], + imports: [SharedModule, TypographyModule], }) export class CalloutComponent { readonly type = input("info"); readonly icon = input(); - readonly title = input(); + readonly title = input(); readonly truncate = input(false); readonly useAlertRole = input(false); readonly iconComputed = computed(() => diff --git a/libs/components/src/callout/callout.stories.ts b/libs/components/src/callout/callout.stories.ts index 9ee3e8eafd0..263247acde8 100644 --- a/libs/components/src/callout/callout.stories.ts +++ b/libs/components/src/callout/callout.stories.ts @@ -173,20 +173,3 @@ export const TruncateOnlyContent: Story = { truncate: true, }, }; - -export const TruncateOnlyTitle: Story = { - render: (args) => ({ - props: args, - template: ` -
- (args)}> - -
- `, - }), - args: { - title: - "This is a really long title that should truncate. Like really, really, really, ridiculously long title", - truncate: true, - }, -};