文字方向

在 LTR 和 RTL 文字方向之间切换

在 Github 上查看

Storybook 附加组件文字方向

安装

首先,安装包。

npm install --save-dev storybook-addon-text-direction

然后,在 .storybook/main.js 中将其注册为附加组件。

// .storybook/main.ts

// Replace your-framework with the framework you are using (e.g., react-webpack5, vue3-vite)
import type { StorybookConfig } from '@storybook/your-framework';

const config: StorybookConfig = {
  // ...rest of config
  addons: [
    '@storybook/addon-essentials'
    'storybook-addon-text-direction', // 👈 register the addon here
  ],
};

export default config;

使用

使用此附加组件的主要方式是定义 textDirection 参数。您可以在组件级别执行此操作,如下所示,以影响文件中所有故事,或者可以对单个故事执行此操作。

// Button.stories.ts

// Replace your-framework with the name of your framework
import type { Meta } from 'storybook-addon-text-direction';

import { Button } from './Button';

const meta: Meta<typeof Button> = {
  component: Button,
  parameters: {
    textDirection: 'rtl',
  }
};

export default meta;