mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:01:07 +08:00
Notes addon for Polymer
This commit is contained in:
parent
7783362848
commit
daa22d33fd
@ -1 +1,2 @@
|
||||
import '@storybook/addon-actions/register';
|
||||
import '@storybook/addon-actions/register';
|
||||
import '@storybook/addon-notes/register';
|
||||
|
@ -8,6 +8,7 @@
|
||||
"dependencies": {
|
||||
"@polymer/polymer": "^2.2.0",
|
||||
"@storybook/addon-actions": "file:../../addons/actions",
|
||||
"@storybook/addon-notes": "file:../../addons/notes",
|
||||
"@storybook/polymer": "file:../../app/polymer",
|
||||
"@webcomponents/webcomponentsjs": "^1.0.17",
|
||||
"global": "^4.3.2",
|
||||
|
@ -1,5 +1,6 @@
|
||||
import { storiesOf } from '@storybook/polymer';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { withNotes } from '@storybook/addon-notes';
|
||||
import { document } from 'global';
|
||||
import '../playground-button.html';
|
||||
import './storybook-welcome-to-polymer.html';
|
||||
@ -15,4 +16,10 @@ storiesOf('<playground-button>', module)
|
||||
const el = document.createElement('playground-button');
|
||||
el.addEventListener('click', action('Button clicked'));
|
||||
return el;
|
||||
});
|
||||
})
|
||||
.add(
|
||||
'with notes',
|
||||
withNotes('We have the <strong>best</strong> playground buttons, ever.')(
|
||||
() => '<playground-button></playground-button>'
|
||||
)
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user