Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gt - Update version and docs #102

Merged
merged 1 commit into from
Jan 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<body>
<div id="root"></div>
<div id="error-display"></div>
<script src="static/preview.c475b22e9f6a49ebdfc8.bundle.js"></script>
<script src="static/preview.1ba8210b94e431f58ca8.bundle.js"></script>
</body>
</html>

4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="storybook-version" content="2.35.2">
<meta name="storybook-version" content="2.35.3">
<title>React Storybook</title>
<style>
/*
Expand Down Expand Up @@ -38,7 +38,7 @@
</head>
<body style="margin: 0;">
<div id="root"></div>
<script src="static/manager.a53b3b2afabf60f97b0c.bundle.js"></script>
<script src="static/manager.ea40c8ebad4103b4a2e7.bundle.js"></script>
</body>
</html>

1 change: 0 additions & 1 deletion docs/static/manager.a53b3b2afabf60f97b0c.bundle.js.map

This file was deleted.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/static/manager.ea40c8ebad4103b4a2e7.bundle.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/static/preview.1ba8210b94e431f58ca8.bundle.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion docs/static/preview.c475b22e9f6a49ebdfc8.bundle.js.map

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-gears",
"version": "0.1.16",
"version": "0.1.17",
"description": "React-based version of Gears",
"author": "Appfolio, Inc.",
"license": "MIT",
Expand Down
7 changes: 4 additions & 3 deletions stories/HelpBubble.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ import React from 'react';
import { storiesOf } from '@kadira/storybook';

import { HelpBubble } from '../src';
import { text, select } from '@kadira/storybook-addon-knobs';

storiesOf('Help Bubble', module)
.addWithInfo('Default', () => (
.addWithInfo('Live example', () => (
<div>
<p>
I can be placed in context to provide some contextual help!
<HelpBubble title="What does this mean?" className="ml-1" placement="bottom">
Help bubbles are a handy way of explaining things.
<HelpBubble title={text('title', 'What does this mean?')} className="ml-1" placement={select('placement', ['top', 'left', 'bottom', 'right'], 'bottom')}>
{text('content', 'Help bubbles are a handy way of explaining things.')}
</HelpBubble>
</p>
<p>
Expand Down