-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
67 additions
and
175 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 +1 @@ | ||
export { default } from './Markdown' | ||
export { default, createMarkdownPage } from './Markdown' |
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,13 +1,12 @@ | ||
// eslint-disable-file @typescript-eslint/ban-ts-comment | ||
// @ts-ignore | ||
import { doc } from 'storybook-readme' | ||
|
||
import PicassoBook from '../../../components/PicassoBook' | ||
import { createMarkdownPage } from '../../../components/Markdown' | ||
// @ts-ignore | ||
import README from '../../../../packages/picasso/README.md' | ||
// @ts-ignore | ||
import CHANGELOG from '../../../../packages/picasso/CHANGELOG.md' | ||
|
||
const section = PicassoBook.section('Picasso') | ||
section.createDocPage('Introduction', doc(README)) | ||
section.createDocPage('Changelog', doc(CHANGELOG)) | ||
section.createDocPage('Introduction', createMarkdownPage(README)) | ||
section.createDocPage('Changelog', createMarkdownPage(CHANGELOG)) |
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,10 +1,13 @@ | ||
import { doc } from 'storybook-readme' | ||
|
||
import { createMarkdownPage } from '~/.storybook/components/Markdown' | ||
import PicassoBook from '~/.storybook/components/PicassoBook' | ||
import README from '../../README.md' | ||
import CHANGELOG from '../../CHANGELOG.md' | ||
|
||
const section = PicassoBook.section('Picasso Charts') | ||
|
||
section.createDocPage('README', doc(README), { alwaysOnTop: true }) | ||
section.createDocPage('CHANGELOG', doc(CHANGELOG), { alwaysOnTop: true }) | ||
section.createDocPage('README', createMarkdownPage(README), { | ||
alwaysOnTop: true, | ||
}) | ||
section.createDocPage('CHANGELOG', createMarkdownPage(CHANGELOG), { | ||
alwaysOnTop: true, | ||
}) |
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,10 +1,13 @@ | ||
import { doc } from 'storybook-readme' | ||
|
||
import { createMarkdownPage } from '~/.storybook/components/Markdown' | ||
import PicassoBook from '~/.storybook/components/PicassoBook' | ||
import README from '../../README.md' | ||
import CHANGELOG from '../../CHANGELOG.md' | ||
|
||
const section = PicassoBook.section('Picasso Pictograms') | ||
|
||
section.createDocPage('README', doc(README), { alwaysOnTop: true }) | ||
section.createDocPage('CHANGELOG', doc(CHANGELOG), { alwaysOnTop: true }) | ||
section.createDocPage('README', createMarkdownPage(README), { | ||
alwaysOnTop: true, | ||
}) | ||
section.createDocPage('CHANGELOG', createMarkdownPage(CHANGELOG), { | ||
alwaysOnTop: true, | ||
}) |
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,10 +1,13 @@ | ||
import { doc } from 'storybook-readme' | ||
|
||
import PicassoBook from '~/.storybook/components/PicassoBook' | ||
import { createMarkdownPage } from '~/.storybook/components/Markdown' | ||
import README from '../../README.md' | ||
import CHANGELOG from '../../CHANGELOG.md' | ||
|
||
const section = PicassoBook.section('Picasso Query Builder') | ||
|
||
section.createDocPage('README', doc(README), { alwaysOnTop: true }) | ||
section.createDocPage('CHANGELOG', doc(CHANGELOG), { alwaysOnTop: true }) | ||
section.createDocPage('README', createMarkdownPage(README), { | ||
alwaysOnTop: true, | ||
}) | ||
section.createDocPage('CHANGELOG', createMarkdownPage(CHANGELOG), { | ||
alwaysOnTop: true, | ||
}) |
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
Oops, something went wrong.