-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump node version max to 19 (#926) add TableFoot, update TableCell hover, and allow stickyRowBottom (#916) move btn-focus-outline--dark-bg to buttons styles (#917) Storybook 7 upgrade (#911) Improve Drawer breakpoints on tablets (#921) add Spacing stories to foundations (#914)
- Loading branch information
1 parent
c9fbef7
commit 35ee057
Showing
78 changed files
with
28,351 additions
and
25,072 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
16.20.0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,40 @@ | ||
module.exports = { | ||
const config = { | ||
addons: [ | ||
{ | ||
name: '@storybook/addon-docs', | ||
options: { mdxBabelOptions: { babelrc: true, configFile: true } }, | ||
options: { | ||
jsxOptions: { | ||
babelrc: true, | ||
configFile: true | ||
} | ||
} | ||
}, | ||
'@storybook/addon-a11y', | ||
'@storybook/addon-actions/register', | ||
'@storybook/addon-knobs/register', | ||
'@storybook/addon-links/register', | ||
'@storybook/addon-storysource/register' | ||
'@storybook/addon-actions', | ||
'@storybook/addon-controls', | ||
'@storybook/addon-links', | ||
'@storybook/addon-knobs', | ||
'@storybook/addon-storysource', | ||
'@storybook/addon-mdx-gfm' | ||
], | ||
docs: { | ||
autodocs: true, | ||
defaultName: 'Docs', | ||
}, | ||
stories: [ | ||
'../stories/Intro.stories.mdx', | ||
'../src/**/*.stories.@(js|mdx)', | ||
'../src/**/*.stories.js[x]', | ||
'../stories/**/*.stories.mdx', | ||
'../stories/**/*.stories.js[x]' | ||
] | ||
], | ||
features: { | ||
storyStoreV7: false, | ||
}, | ||
framework: { | ||
name: '@storybook/react-webpack5', | ||
options: { fastRefresh: true }, | ||
}, | ||
}; | ||
|
||
export default config; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
import React from 'react'; | ||
import { addDecorator } from "@storybook/react"; | ||
|
||
addDecorator(story => <div style={{ padding: '1rem' }}>{story()}</div>); | ||
|
||
export const parameters = { | ||
options: { | ||
storySort: { | ||
order: ['Foundations', 'Components'], | ||
const preview = { | ||
parameters: { | ||
options: { | ||
storySort: { | ||
order: ['Foundations', 'Components'], | ||
}, | ||
}, | ||
}, | ||
} | ||
}; | ||
|
||
export default preview; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
import { create } from '@storybook/theming'; | ||
import UILogo from '../public/ui-design-system.svg'; | ||
import UILogo from '../public/ui-design-system-light.svg'; | ||
|
||
export default create({ | ||
base: 'light', | ||
base: 'dark', | ||
brandTitle: 'User Interviews', | ||
brandUrl: 'https://github.com/user-interviews/ui-design-system', | ||
brandImage: UILogo, | ||
|
||
barBg: '#FFFFFF', | ||
barTextColor: '#444444', | ||
barSelectedColor: '#158D71', | ||
colorSecondary: '#158D71', | ||
}); |
This file contains 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
This file contains 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
This file contains 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
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Oops, something went wrong.