diff --git a/apps/browser/src/platform/popup/layout/popup-layout.stories.ts b/apps/browser/src/platform/popup/layout/popup-layout.stories.ts index 894ab13dd19..c4f90db2f42 100644 --- a/apps/browser/src/platform/popup/layout/popup-layout.stories.ts +++ b/apps/browser/src/platform/popup/layout/popup-layout.stories.ts @@ -557,7 +557,10 @@ export const CenteredContent: Story = { -
+
+

Page with no content

Before centering a div One must first center oneself diff --git a/libs/components/src/card/card.stories.ts b/libs/components/src/card/card.stories.ts index 3482eedfd54..411cc8e83cc 100644 --- a/libs/components/src/card/card.stories.ts +++ b/libs/components/src/card/card.stories.ts @@ -91,7 +91,7 @@ export const WithoutBorderRadius: Story = { template: /*html*/ ` -

Cards used in bit-layout will not have a border radius

+

Cards used in bit-layout will not have a border radius

`, diff --git a/libs/components/src/checkbox/checkbox.stories.ts b/libs/components/src/checkbox/checkbox.stories.ts index 2796f6fde51..ee3e4ab402d 100644 --- a/libs/components/src/checkbox/checkbox.stories.ts +++ b/libs/components/src/checkbox/checkbox.stories.ts @@ -218,7 +218,10 @@ export const Indeterminate: Story = { render: (args) => ({ props: args, template: /*html*/ ` - + `, }), }; @@ -256,6 +259,9 @@ export const InTableRow: Story = { bitCheckbox id="checkOne" /> + Lorem Ipsum diff --git a/libs/components/src/form-field/form-field.stories.ts b/libs/components/src/form-field/form-field.stories.ts index d5dc6614ff8..5b92ab5dbd3 100644 --- a/libs/components/src/form-field/form-field.stories.ts +++ b/libs/components/src/form-field/form-field.stories.ts @@ -172,7 +172,7 @@ export const LabelWithIcon: Story = { Label - + @@ -203,7 +203,7 @@ export const LongLabel: Story = { Hello I am a very long label with lots of very cool helpful information - + diff --git a/libs/components/src/popover/popover.stories.ts b/libs/components/src/popover/popover.stories.ts index ee387d69e56..100990decca 100644 --- a/libs/components/src/popover/popover.stories.ts +++ b/libs/components/src/popover/popover.stories.ts @@ -4,6 +4,7 @@ import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.servic import { ButtonModule } from "../button"; import { IconButtonModule } from "../icon-button"; +import { LinkModule } from "../link"; import { SharedModule } from "../shared/shared.module"; import { I18nMockService } from "../utils/i18n-mock.service"; @@ -14,7 +15,7 @@ export default { title: "Component Library/Popover", decorators: [ moduleMetadata({ - imports: [PopoverModule, ButtonModule, IconButtonModule, SharedModule], + imports: [PopoverModule, ButtonModule, IconButtonModule, SharedModule, LinkModule], providers: [ { provide: I18nService, @@ -59,13 +60,13 @@ export default { type Story = StoryObj; -const popoverContent = ` +const popoverContent = /*html*/ ` -
Lorem ipsum dolor adipisicing elit.
+
Lorem ipsum dolor adipisicing elit.
  • Dolor sit amet consectetur
  • Esse labore veniam tempora
  • -
  • Adipisicing elit ipsum iustolaborum
  • +
  • Adipisicing elit ipsum iustolaborum
@@ -74,13 +75,15 @@ const popoverContent = ` export const Default: Story = { render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -93,13 +96,13 @@ export const Default: Story = { export const Open: Story = { render: (args) => ({ props: args, - template: ` + template: /*html*/ ` -
Lorem ipsum dolor adipisicing elit.
+
Lorem ipsum dolor adipisicing elit.
  • Dolor sit amet consectetur
  • Esse labore veniam tempora
  • -
  • Adipisicing elit ipsum iustolaborum
  • +
  • Adipisicing elit ipsum iustolaborum
@@ -115,13 +118,13 @@ export const Open: Story = { export const OpenLongTitle: Story = { render: (args) => ({ props: args, - template: ` + template: /*html*/ ` -
Lorem ipsum dolor adipisicing elit.
+
Lorem ipsum dolor adipisicing elit.
  • Dolor sit amet consectetur
  • Esse labore veniam tempora
  • -
  • Adipisicing elit ipsum iustolaborum
  • +
  • Adipisicing elit ipsum iustolaborum
@@ -137,7 +140,7 @@ export const OpenLongTitle: Story = { export const InitiallyOpen: Story = { render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -163,7 +168,7 @@ export const RightStart: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -186,7 +193,7 @@ export const RightCenter: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -209,7 +218,7 @@ export const RightEnd: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -232,7 +243,7 @@ export const LeftStart: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -255,7 +268,7 @@ export const LeftCenter: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -277,7 +292,7 @@ export const LeftEnd: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -300,7 +317,7 @@ export const BelowStart: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -323,7 +342,7 @@ export const BelowCenter: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -346,7 +367,7 @@ export const BelowEnd: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -369,7 +392,7 @@ export const AboveStart: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -392,7 +417,7 @@ export const AboveCenter: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
@@ -415,7 +442,7 @@ export const AboveEnd: Story = { }, render: (args) => ({ props: args, - template: ` + template: /*html*/ `
diff --git a/libs/components/src/stories/icons/icons.stories.ts b/libs/components/src/stories/icons/icons.stories.ts index 2d2656c9dcf..e3296730394 100644 --- a/libs/components/src/stories/icons/icons.stories.ts +++ b/libs/components/src/stories/icons/icons.stories.ts @@ -37,7 +37,7 @@ export const StatusIcons = { @for (row of rows$ | async; track row.id) { - {{row.id}} + {{row.id}} {{row.usage}} } @@ -152,7 +152,7 @@ export const SizeVariants = { @for (row of rows$ | async; track row.size) { - {{row.size}} + {{row.size}} {{row.usage}} } @@ -201,7 +201,7 @@ export const RotationVariants = { @for (row of rows$ | async; track row.class) { - {{row.class}} + {{row.class}} {{row.usage}} } diff --git a/libs/components/src/stories/kitchen-sink/components/kitchen-sink-main.component.ts b/libs/components/src/stories/kitchen-sink/components/kitchen-sink-main.component.ts index 6083b3d66e1..f8b5421f370 100644 --- a/libs/components/src/stories/kitchen-sink/components/kitchen-sink-main.component.ts +++ b/libs/components/src/stories/kitchen-sink/components/kitchen-sink-main.component.ts @@ -152,6 +152,7 @@ class KitchenSinkDialog { +

Tab Number 2

This tab is empty diff --git a/libs/components/src/toggle-group/toggle-group.stories.ts b/libs/components/src/toggle-group/toggle-group.stories.ts index 4860636c159..378e9eba2cd 100644 --- a/libs/components/src/toggle-group/toggle-group.stories.ts +++ b/libs/components/src/toggle-group/toggle-group.stories.ts @@ -75,7 +75,7 @@ export const LabelWrap: Story = { render: (args) => ({ props: args, template: /* HTML */ ` - fullWidth=false + fullWidth=false Deactivatedinvitationswraplabel
- fullWidth=true + fullWidth=true