mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
[PM-2276] Upgrade Storybook to v7 (#5258)
This commit is contained in:
67
libs/components/src/typography/typography.mdx
Normal file
67
libs/components/src/typography/typography.mdx
Normal file
@@ -0,0 +1,67 @@
|
||||
import { Meta, Story, Source, Primary, Controls } from "@storybook/addon-docs";
|
||||
|
||||
import * as stories from "./typography.stories";
|
||||
|
||||
<Meta of={stories} />
|
||||
|
||||
# Typography
|
||||
|
||||
<Primary />
|
||||
|
||||
<Controls />
|
||||
|
||||
## Stories
|
||||
|
||||
<Story of={stories.H1} />
|
||||
|
||||
```html
|
||||
<h1 bitTypography="h1">H1</h1>
|
||||
```
|
||||
|
||||
<Story of={stories.H2} />
|
||||
|
||||
```html
|
||||
<h2 bitTypography="h2">H2</h2>
|
||||
```
|
||||
|
||||
<Story of={stories.H3} />
|
||||
|
||||
```html
|
||||
<h3 bitTypography="h3">H3</h3>
|
||||
```
|
||||
|
||||
<Story of={stories.H4} />
|
||||
|
||||
```html
|
||||
<h4 bitTypography="h4">H4</h4>
|
||||
```
|
||||
|
||||
<Story of={stories.H5} />
|
||||
|
||||
```html
|
||||
<h5 bitTypography="h5">H5</h5>
|
||||
```
|
||||
|
||||
<Story of={stories.H6} />
|
||||
|
||||
```html
|
||||
<h6 bitTypography="h6">H6</h6>
|
||||
```
|
||||
|
||||
<Story of={stories.Body1} />
|
||||
|
||||
```html
|
||||
<p bitTypography="body1">Body 1</p>
|
||||
```
|
||||
|
||||
<Story of={stories.Body2} />
|
||||
|
||||
```html
|
||||
<p bitTypography="body2">Body 2</h1>
|
||||
```
|
||||
|
||||
<Story of={stories.Helper} />
|
||||
|
||||
```html
|
||||
<p bitTypography="helper">Helper Text</h1>
|
||||
```
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Meta, Story } from "@storybook/angular";
|
||||
import { Meta, StoryObj } from "@storybook/angular";
|
||||
|
||||
import { TypographyDirective } from "./typography.directive";
|
||||
|
||||
@@ -10,61 +10,81 @@ export default {
|
||||
},
|
||||
} as Meta;
|
||||
|
||||
const Template: Story = (args) => ({
|
||||
props: args,
|
||||
template: `<span [bitTypography]="bitTypography" class="tw-text-main">{{text}}</span>`,
|
||||
});
|
||||
type Story = StoryObj<TypographyDirective & { text: string }>;
|
||||
|
||||
export const H1 = Template.bind({});
|
||||
H1.args = {
|
||||
bitTypography: "h1",
|
||||
text: "h1. Page Title",
|
||||
export const H1: Story = {
|
||||
render: (args) => ({
|
||||
props: args,
|
||||
template: `<span [bitTypography]="bitTypography" class="tw-text-main">{{text}}</span>`,
|
||||
}),
|
||||
args: {
|
||||
bitTypography: "h1",
|
||||
text: "h1. Page Title",
|
||||
},
|
||||
};
|
||||
|
||||
export const H2 = Template.bind({});
|
||||
H2.args = {
|
||||
bitTypography: "h2",
|
||||
text: "h2. Page Section",
|
||||
export const H2: Story = {
|
||||
...H1,
|
||||
args: {
|
||||
bitTypography: "h2",
|
||||
text: "h2. Page Section",
|
||||
},
|
||||
};
|
||||
|
||||
export const H3 = Template.bind({});
|
||||
H3.args = {
|
||||
bitTypography: "h3",
|
||||
text: "h3. Page Section",
|
||||
export const H3: Story = {
|
||||
...H1,
|
||||
args: {
|
||||
bitTypography: "h3",
|
||||
text: "h3. Page Section",
|
||||
},
|
||||
};
|
||||
|
||||
export const H4 = Template.bind({});
|
||||
H4.args = {
|
||||
bitTypography: "h4",
|
||||
text: "h4. Page Section",
|
||||
export const H4: Story = {
|
||||
...H1,
|
||||
args: {
|
||||
bitTypography: "h4",
|
||||
text: "h4. Page Section",
|
||||
},
|
||||
};
|
||||
|
||||
export const H5 = Template.bind({});
|
||||
H5.args = {
|
||||
bitTypography: "h5",
|
||||
text: "h5. Page Section",
|
||||
export const H5: Story = {
|
||||
...H1,
|
||||
|
||||
args: {
|
||||
bitTypography: "h5",
|
||||
text: "h5. Page Section",
|
||||
},
|
||||
};
|
||||
|
||||
export const H6 = Template.bind({});
|
||||
H6.args = {
|
||||
bitTypography: "h6",
|
||||
text: "h6. Page Section",
|
||||
export const H6: Story = {
|
||||
...H1,
|
||||
|
||||
args: {
|
||||
bitTypography: "h6",
|
||||
text: "h6. Page Section",
|
||||
},
|
||||
};
|
||||
|
||||
export const Body1 = Template.bind({});
|
||||
Body1.args = {
|
||||
bitTypography: "body1",
|
||||
text: "Body 1",
|
||||
export const Body1: Story = {
|
||||
...H1,
|
||||
args: {
|
||||
bitTypography: "body1",
|
||||
text: "Body 1",
|
||||
},
|
||||
};
|
||||
|
||||
export const Body2 = Template.bind({});
|
||||
Body2.args = {
|
||||
bitTypography: "body2",
|
||||
text: "Body 2",
|
||||
export const Body2: Story = {
|
||||
...H1,
|
||||
args: {
|
||||
bitTypography: "body2",
|
||||
text: "Body 2",
|
||||
},
|
||||
};
|
||||
|
||||
export const Helper = Template.bind({});
|
||||
Helper.args = {
|
||||
bitTypography: "helper",
|
||||
text: "Helper Text",
|
||||
export const Helper: Story = {
|
||||
...H1,
|
||||
args: {
|
||||
bitTypography: "helper",
|
||||
text: "Helper Text",
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user