Re-implemented autosuggestions component for the compose form
Fix #205, fix #156, fix #124
This commit is contained in:
parent
4284093aa3
commit
b27066e154
16 changed files with 787 additions and 142 deletions
|
@ -1,8 +1,14 @@
|
|||
import { configure } from '@kadira/storybook';
|
||||
import { configure, setAddon } from '@kadira/storybook';
|
||||
import IntlAddon from 'react-storybook-addon-intl';
|
||||
import React from 'react';
|
||||
import { storiesOf, action } from '@kadira/storybook';
|
||||
import { addLocaleData } from 'react-intl';
|
||||
import en from 'react-intl/locale-data/en';
|
||||
import '../app/assets/stylesheets/components.scss'
|
||||
import './storybook.scss'
|
||||
|
||||
import './storybook.css'
|
||||
setAddon(IntlAddon);
|
||||
addLocaleData(en);
|
||||
|
||||
window.storiesOf = storiesOf;
|
||||
window.action = action;
|
||||
|
@ -11,7 +17,7 @@ window.React = React;
|
|||
function loadStories () {
|
||||
require('./stories/loading_indicator.story.jsx');
|
||||
require('./stories/button.story.jsx');
|
||||
require('./stories/tabs_bar.story.jsx');
|
||||
require('./stories/autosuggest_textarea.story.jsx');
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue