Mohammad Asif cf937194cb Removed un-waned things 1. | 5 tháng trước cách đây | |
---|---|---|
.. | ||
dist | 5 tháng trước cách đây | |
.eslintrc.js | 5 tháng trước cách đây | |
LICENSE | 5 tháng trước cách đây | |
README.md | 5 tháng trước cách đây | |
manager.js | 5 tháng trước cách đây | |
package.json | 5 tháng trước cách đây | |
preview.js | 5 tháng trước cách đây |
Storybook Addon RTL allows you to switch to right-to-left flow in your stories in Storybook.
This addon has been tested with Storybook for React, Vue and Angular. It should also work in other frameworks.
This is a permanent fork of unindented/storybook-addon-rtl, which is now archived. Thanks for
unindented
for the original code!
npm i --save-dev storybook-addon-rtl
Add the addon to the addons array in .storybook/main.js
module.exports = {
/// other storybook configuration
addons: [
// other addons here
"storybook-addon-rtl",
],
};
Then write your stories normally:
import React from 'react'
import MyComponent from './MyComponent'
export default {
title: 'My Component',
component: MyComponent
};
export const default = {};
export const rtlParameter = {
// Optionally include direction as story parameter
parameters: {
direction: 'rtl'
}
}
You can also set the direction using query params in the URL. This is useful for things like e2e tests.
Just add &direction=rtl
or &direction=ltr
to the end of the URL:
storybook.example.com/?path=/story/button--standard&direction=rtl
git clone https://github.com/literalpie/storybook-addon-rtl.git
Copyright (c) 2023 Benjamin Kindle (@literalpie). This is free software, and may be redistributed under the terms specified in the LICENSE file.