-
-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #905 from jbetancur/feature/7-0-1-various
Feature/7 0 1 various
- Loading branch information
Showing
34 changed files
with
1,120 additions
and
644 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,52 @@ | ||
import "./base.css"; | ||
import './base.css'; | ||
|
||
export const parameters = { | ||
// controls: { expanded: true }, | ||
viewMode: 'docs', | ||
options: { | ||
storySort: { | ||
method: 'alphabetical', | ||
order: ['Getting Started', ['Introduction', 'Installation', 'Basic Examples', 'Kitchen Sink', 'Code of Conduct', 'Features & Issues', '*'], 'API Reference', ['Columns', 'Properties'], 'Columns', 'Sorting', 'Selectable', 'Expandable', 'Pagination', 'Headers', 'Loading', '*', 'Performance', ['Optimization', '*'], 'Contributing'], | ||
}, | ||
}, | ||
a11y: { | ||
element: "#root", | ||
config: {}, | ||
options: {}, | ||
manual: true, | ||
}, | ||
// controls: { expanded: true }, | ||
viewMode: 'docs', | ||
options: { | ||
storySort: { | ||
method: 'alphabetical', | ||
order: [ | ||
'Getting Started', | ||
[ | ||
'Introduction', | ||
'Installation', | ||
'Basic Examples', | ||
'Patterns', | ||
'Kitchen Sink', | ||
'Kitchen Sink TS', | ||
'Code of Conduct', | ||
'Features & Issues', | ||
'*', | ||
], | ||
'API Reference', | ||
['Columns', 'Properties'], | ||
'Columns', | ||
'Sorting', | ||
'Selectable', | ||
'Expandable', | ||
'Pagination', | ||
'Headers', | ||
'Loading', | ||
'*', | ||
'Performance', | ||
['Optimization', '*'], | ||
'Contributing', | ||
], | ||
}, | ||
}, | ||
a11y: { | ||
element: '#root', | ||
config: {}, | ||
options: {}, | ||
manual: true, | ||
}, | ||
}; | ||
|
||
export const globalTypes = { | ||
theme: { | ||
name: 'Theme', | ||
description: 'Global theme for components', | ||
defaultValue: 'light', | ||
}, | ||
}; | ||
theme: { | ||
name: 'Theme', | ||
description: 'Global theme for components', | ||
defaultValue: 'light', | ||
}, | ||
}; |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import styled from 'styled-components'; | ||
|
||
const TableBody = styled.div` | ||
const Body = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
`; | ||
|
||
export default TableBody; | ||
export default Body; |
Oops, something went wrong.