-
Notifications
You must be signed in to change notification settings - Fork 194
refactor: use external CSS file MenuStyle and ShowRegion stories #698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Previously, the CSS was included programmatically in the document, which is not the best way to add CSS in the storybook context. In this case, the CSS was added each time the story was rendered, so the CSS definition was added multiple times The stories now use external CSS and use imports to include them. This removes the duplicated includes in the DOM and makes the thing easier to understand by using standard practices. Notice that the Scrollbars story is still using the former way of including custom CSS. It is not functional and requires additional work. So, it will be updated later.
WalkthroughThe changes remove inline CSS definitions and the dynamic creation of a Changes
Sequence Diagram(s)sequenceDiagram
participant Story as Story File
participant Browser as Browser
participant CSS as External CSS File
Story->>Browser: Load component with style imports
Browser->>CSS: Request and fetch external stylesheet(s)
CSS-->>Browser: Return styling rules
Browser-->>Story: Render component with applied styles
Suggested labels
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
✅ Files skipped from review due to trivial changes (3)
🔇 Additional comments (1)
✨ Finishing Touches
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
Previously, the CSS was included programmatically in the document, which is not the best way to add CSS in the storybook
context. In this case, the CSS was added each time the story was rendered, so the CSS definition was added multiple
times
The stories now use external CSS and use imports to include them. This removes the duplicated includes in the DOM and
makes the thing easier to understand by using standard practices.
Notice that the Scrollbars story is still using the former way of including custom CSS.
It is not functional and requires additional work. So, it will be updated later.
Summary by CodeRabbit