mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 21:33:27 +00:00
We're establishing a common language for the Component Library. As part of this work we're renaming componentType to variant. Starting with badges.
83 lines
1.7 KiB
TypeScript
83 lines
1.7 KiB
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { Meta, moduleMetadata, StoryObj } from "@storybook/angular";
|
|
|
|
import { BadgeDirective } from "./badge.directive";
|
|
|
|
export default {
|
|
title: "Component Library/Badge",
|
|
component: BadgeDirective,
|
|
decorators: [
|
|
moduleMetadata({
|
|
imports: [CommonModule],
|
|
declarations: [BadgeDirective],
|
|
}),
|
|
],
|
|
args: {
|
|
variant: "primary",
|
|
truncate: false,
|
|
},
|
|
parameters: {
|
|
design: {
|
|
type: "figma",
|
|
url: "https://www.figma.com/file/Zt3YSeb6E6lebAffrNLa0h/Tailwind-Component-Library?node-id=1881%3A16956",
|
|
},
|
|
},
|
|
} as Meta<BadgeDirective>;
|
|
|
|
type Story = StoryObj<BadgeDirective>;
|
|
|
|
export const Primary: Story = {
|
|
render: (args) => ({
|
|
props: args,
|
|
template: `
|
|
<span class="tw-text-main">Span </span><span bitBadge [variant]="variant" [truncate]="truncate">Badge containing lengthy text</span>
|
|
<br><br>
|
|
<span class="tw-text-main">Link </span><a href="#" bitBadge [variant]="variant" [truncate]="truncate">Badge</a>
|
|
<br><br>
|
|
<span class="tw-text-main">Button </span><button bitBadge [variant]="variant" [truncate]="truncate">Badge</button>
|
|
`,
|
|
}),
|
|
};
|
|
|
|
export const Secondary: Story = {
|
|
...Primary,
|
|
args: {
|
|
variant: "secondary",
|
|
},
|
|
};
|
|
|
|
export const Success: Story = {
|
|
...Primary,
|
|
args: {
|
|
variant: "success",
|
|
},
|
|
};
|
|
|
|
export const Danger: Story = {
|
|
...Primary,
|
|
args: {
|
|
variant: "danger",
|
|
},
|
|
};
|
|
|
|
export const Warning: Story = {
|
|
...Primary,
|
|
args: {
|
|
variant: "warning",
|
|
},
|
|
};
|
|
|
|
export const Info: Story = {
|
|
...Primary,
|
|
args: {
|
|
variant: "info",
|
|
},
|
|
};
|
|
|
|
export const Truncated: Story = {
|
|
...Primary,
|
|
args: {
|
|
truncate: true,
|
|
},
|
|
};
|