Skip to content
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

Move and include @storybook/components in standalone Storybook #19598

Merged
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b83cda6
move code/lib/components to code/ui/components
JReinhold Oct 17, 2022
79b61d3
fix Button.stories
JReinhold Oct 17, 2022
20a8761
upgrade Badge.stories to CSF3
JReinhold Oct 17, 2022
3c61418
migrate StorybookIcon, Form to CSF3
JReinhold Oct 17, 2022
bbd08f8
migrate Spaced, syntaxhighligter to CSF3
JReinhold Oct 18, 2022
e4a7020
migrate ListItem to csf3
JReinhold Oct 19, 2022
28f782e
migrate tabs stories to csf3
JReinhold Oct 19, 2022
e7ffa8c
migrate TooltipLinkList to CSF3
JReinhold Oct 19, 2022
6983da0
migrate TooltipMessage stories to CSF3
JReinhold Oct 20, 2022
adee41a
migrate WithTooltip to CSF3
JReinhold Oct 20, 2022
52c6498
migrate TooltipNote stories to CSF3
JReinhold Oct 20, 2022
052f034
migrate link stories to CSF3
JReinhold Oct 20, 2022
b2735df
migrate Tooltip stories to CSF3
JReinhold Oct 20, 2022
47404e4
Merge branch 'next'
JReinhold Oct 20, 2022
4c8f7a6
fix relative imports
JReinhold Oct 24, 2022
71fcb49
fix mdx2 comment syntax and upgrade prettier
JReinhold Oct 24, 2022
c383e3f
fix typography stories
JReinhold Oct 24, 2022
2bc1d71
remove custom viteFinal
JReinhold Oct 24, 2022
1db77f6
fix DocumentWrapper story
JReinhold Oct 24, 2022
dbea594
more strict prettier
JReinhold Oct 24, 2022
a9eeb19
correct prettier dependency
JReinhold Oct 24, 2022
b62de91
Merge branch 'next' of github.com:storybookjs/storybook into jeppe/sb…
JReinhold Oct 24, 2022
838e96d
cleanup
JReinhold Oct 24, 2022
120f5f8
Merge branch 'next' of github.com:storybookjs/storybook into jeppe/sb…
JReinhold Oct 25, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
'**/lib/theming/**/*',
'**/lib/router/**/*',
'**/ui/manager/**/*',
'**/lib/components/**/*',
'**/ui/components/**/*',
],
rules: {
'import/no-extraneous-dependencies': ['error', { bundledDependencies: false }],
Expand Down
2 changes: 1 addition & 1 deletion code/addons/links/src/react/components/RoutedLink.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

// NOTE: this is a copy of `lib/components/src/navigation/RoutedLink.tsx`.
// NOTE: this is a copy of `code/ui/components/src/navigation/RoutedLink.tsx`.
// It's duplicated here because that copy has an explicit dependency on
// React 16.3+, which breaks older versions of React running in the preview.
// The proper DRY solution is to create a new package that doesn't depend
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ const newWebpackConfiguration = (
'@storybook/api': '/Users/joe/storybook/lib/api',
'@storybook/channels': '/Users/joe/storybook/lib/channels',
'@storybook/channel-postmessage': '/Users/joe/storybook/lib/channel-postmessage',
'@storybook/components': '/Users/joe/storybook/lib/components',
'@storybook/components': '/Users/joe/storybook/ui/components',
'@storybook/core-events': '/Users/joe/storybook/lib/core-events',
'@storybook/router': '/Users/joe/storybook/lib/router',
'@storybook/theming': '/Users/joe/storybook/lib/theming',
Expand Down
13 changes: 0 additions & 13 deletions code/lib/components/src/Badge/Badge.stories.tsx

This file was deleted.

59 changes: 0 additions & 59 deletions code/lib/components/src/Button/Button.stories.tsx

This file was deleted.

6 changes: 0 additions & 6 deletions code/lib/components/src/brand/StorybookIcon.stories.tsx

This file was deleted.

156 changes: 0 additions & 156 deletions code/lib/components/src/form/form.stories.tsx

This file was deleted.

72 changes: 0 additions & 72 deletions code/lib/components/src/spaced/Spaced.stories.tsx

This file was deleted.

Loading