-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add welcome landing page * load welcome story * style intro page * use import * update colors screenshots * fix teaser listing vrt * remove old color refereneces * add changelogs * add pr # to changelog to persist * update changelog * update mayflower react readme
- Loading branch information
1 parent
2f4d5ee
commit 7e706ce
Showing
18 changed files
with
146 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Changed: | ||
- project: Patternlab | ||
component: UtilityNav | ||
description: Change the state organizations menu from a button to a link directly to the page. #882 | ||
description: Change the state organizations menu from a button to a link directly to the page. (#882) | ||
issue: DP-16804 |
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,5 +1,5 @@ | ||
Added: | ||
- project: React | ||
component: Color | ||
description: Addded Color stories and color gradients. #909 | ||
description: Addded Color stories and color gradients. (#909) | ||
issue: DP-17253 |
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,6 +1,6 @@ | ||
Changed: | ||
- project: React | ||
component: Storybook | ||
description: Config storybook to add Mayflower theme. #915 | ||
description: Config storybook to add Mayflower theme. (#915) | ||
issue: DP-17320 | ||
impact: Patch |
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,11 @@ | ||
Changed: | ||
- project: React | ||
component: Storybook | ||
description: Render welcome page to Mayflower-react. (#916) | ||
issue: DP-17338 | ||
impact: Patch | ||
- project: React | ||
component: Storybook | ||
description: Display `Color` in category "Brand". (#916) | ||
issue: DP-17338 | ||
impact: Patch |
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file modified
BIN
-170 Bytes
(100%)
...kstop/data/bitmaps_reference/vrt_organisms_TeaserListing_0_document_0_phone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 +1,24 @@ | ||
// @TODO come up with a welcome story | ||
import React from 'react'; | ||
import ReactHtmlParser from 'react-html-parser'; | ||
import MarkdownIt from 'markdown-it'; | ||
import { storiesOf } from '@storybook/react'; | ||
|
||
import './index.css'; | ||
import './markdown.css'; | ||
|
||
import Docs from '../README.md'; | ||
|
||
const md = new MarkdownIt(); | ||
const result = md.render(Docs); | ||
|
||
storiesOf('Welcome🎉|mayflower-react', module) | ||
.add('About', (() => ( | ||
<div className="main-content main-content--two"> | ||
<div className="page-content"> | ||
<div className="markdown-body"> | ||
{ReactHtmlParser(result)} | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
)); |
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 @@ | ||
@import '../node_modules/github-markdown-css/github-markdown.css'; |