docs: use correct package name @openuidev/react-ui in Storybook import snippets#593
Merged
ankit-thesys merged 1 commit intoJun 2, 2026
Conversation
The docs.description.component import snippets in 42 react-ui story files referenced @openui-ui/react-ui, which is not a published package. Replace with the correct name @openuidev/react-ui. Documentation-only change scoped to packages/react-ui; story code uses relative imports, so there is no runtime or build behavior change. Closes thesysdev#592 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
i-subham23
approved these changes
Jun 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Fixes the package name shown in Storybook docs "import" snippets across
@openuidev/react-ui. 42 story files referenced@openui-ui/react-ui— a package that does not exist on npm — instead of the real name@openuidev/react-ui(perpackages/react-ui/package.json).Closes #592.
Why
The wrong name lives in each story's
parameters.docs.description.componentcode block — the import snippet shown on the component's autodocs page. It's documentation-only: the stories' real imports use relative paths, so nothing changes at build or runtime. But anyone copying the import line from Storybook gets a non-resolvable package.Change
@openui-ui/react-ui→@openuidev/react-uiin 42*.stories.tsxfiles underpackages/react-ui/src.packages/react-ui— there were zero occurrences of@openui-uianywhere else in the repo.Verification
🤖 Generated with Claude Code