-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Storybook back to root again (#111)
* move everything back to root * strip magic from storybook-components. Adjust root package scripts * Mute typings for withReadme * Fix netlify build path * Fix storybook decorator injection condition
- Loading branch information
Showing
30 changed files
with
153 additions
and
1,449 deletions.
There are no files selected for viewing
File renamed without changes.
25 changes: 11 additions & 14 deletions
25
...flame/.storybook/components/ExampleBox.js → .storybook/components/ExampleBox.js
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
2 changes: 1 addition & 1 deletion
2
...me/.storybook/components/SpacedGroup.d.ts → .storybook/components/SpacedGroup.d.ts
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,4 +1,4 @@ | ||
import { FlameFlexProps } from '../../src/Core'; | ||
import { FlameFlexProps } from '../../packages/flame/src/Core'; | ||
|
||
export interface SpacedGroupProps extends FlameFlexProps {} | ||
export const SpacedGroup: React.FC<SpacedGroupProps>; |
2 changes: 1 addition & 1 deletion
2
...lame/.storybook/components/SpacedGroup.js → .storybook/components/SpacedGroup.js
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.
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,14 @@ | ||
import React from 'react'; | ||
|
||
const Ul = (...restProps) => ( | ||
<ul | ||
style={{ | ||
listStyle: 'none', | ||
margin: 'none', | ||
padding: 'none', | ||
}} | ||
{...restProps} | ||
/> | ||
); | ||
|
||
export { Ul }; |
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.
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
display: none; | ||
} | ||
} | ||
html, | ||
body { | ||
font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif; | ||
} | ||
|
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,4 +1,4 @@ | ||
[build] | ||
command = "yarn build:storybook" | ||
publish = "packages/flame/storybook-static" | ||
publish = "storybook-static" | ||
environment = { YARN_VERSION = "1.17.3" } |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.