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

Add addon-a11y to monorepo #2292

Merged
merged 30 commits into from
Nov 13, 2017
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2a434dd
Initial commit
Oct 2, 2016
12d989e
Fix wrong import in manager.js
Oct 2, 2016
eb76e63
Remove unused preview.js file
Oct 2, 2016
0d67ae2
Correct main entry
Oct 2, 2016
fae8834
Export shared variables in entry point
Oct 4, 2016
0266c97
Create more example stories (#1)
jbovenschen Oct 4, 2016
17acba5
Bump version to 0.0.4
Nov 3, 2016
980468b
Update to use Storybook v3. Closes #7
jrwebdev May 29, 2017
c2aacec
Prepare for release
ndelangen Jun 1, 2017
7bd40cf
Fix git repo paths in package.json
jbovenschen Jun 2, 2017
8d4f74b
Get rid of extra span
zinserjan Jun 6, 2017
ea9ac1a
Prepare for release
ndelangen Jul 18, 2017
f3a8e48
Fixed typos in README.md
gsimone Jul 18, 2017
6fdc4e3
RENAME package & SYNC versions with monorepo && CHANGE readme
ndelangen Nov 11, 2017
986e552
FIX versions & dependencies for addon-a11y
ndelangen Nov 11, 2017
607f37d
FIX incorrect package names in readme
ndelangen Nov 11, 2017
1561f54
Merge branch 'master' into add-addon-a11y
ndelangen Nov 11, 2017
90f1711
DELETE unnecessary files
ndelangen Nov 11, 2017
88a8f00
Linting
ndelangen Nov 11, 2017
56d13ef
Remove most devDependencies
ndelangen Nov 11, 2017
90e8857
lockfile
ndelangen Nov 11, 2017
5792e09
Linting
ndelangen Nov 11, 2017
c3cfd7b
ADD story for addon-a11y to cra-kitchen-sink
ndelangen Nov 11, 2017
3bf698c
Linting
ndelangen Nov 13, 2017
862d4cf
ADD snapshots for new stories
ndelangen Nov 13, 2017
56c14a2
Merge branch 'master' into add-addon-a11y
ndelangen Nov 13, 2017
5ec50a8
FIX fonts (from lib/components)
ndelangen Nov 13, 2017
966c605
IMPROVE tabs visually
ndelangen Nov 13, 2017
857d84d
CHANGE simplify addon namespace
ndelangen Nov 13, 2017
0f30fc9
FIX lockfile
ndelangen Nov 13, 2017
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
Prev Previous commit
Next Next commit
CHANGE simplify addon namespace
  • Loading branch information
ndelangen committed Nov 13, 2017
commit 857d84d852827ab3452273a726022b756e643a60
6 changes: 3 additions & 3 deletions addons/a11y/src/shared/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// addons, panels and events get unique names using a prefix
const ADDON_ID = 'jbovenschen/storybook-addon-a11y';
const PANEL_ID = `${ADDON_ID}/addon-panel`;
const EVENT_ID = `${ADDON_ID}/addon-event`;
const ADDON_ID = '@storybook/addon-a11y';
const PANEL_ID = `${ADDON_ID}/panel`;
const EVENT_ID = `${ADDON_ID}/event`;

export { ADDON_ID, PANEL_ID, EVENT_ID };