Ian VanSchooten
f3a44f0c96
Do not try to named import from global
2021-05-25 15:59:46 -04:00
Eirik Sletteberg
841a55bd68
Don't shadow the window global variable
...
This snippet:
```
import { window } from 'global';
```
will let you mock window variables in Jest tests.
However, it breaks hot module reloading in Vite,
because Vite injects code snippets in top of every
file:
```
window.STUFF = 'Vite injected some HMR code here';
import { window } from 'global';
// this fails: Uncaught ReferenceError: Cannot access 'window' before initialization
```
The simple solution is to rename `window` when importing it:
```
import { window as globalWindow } from 'global';
globalWindow.alert('hello world');
```
The code works like before, but Vite will be able to
inject its code snippet without interfering with the
rest of the code.
2021-04-04 18:36:16 +02:00
Michael Shilman
12e066bf6f
CSF: Upgrade JS stories to hoisted annotations
2020-05-25 13:32:05 +08:00
Michael Shilman
f4f9dc5880
Pass args first by default in examples
2020-04-27 22:39:27 +08:00
Jon Palmer
493139529d
remove the decorate APIs
2020-03-23 22:15:43 -04:00
Jon Palmer
7c25d25b4e
Add Preset for Actions Addon
2020-03-23 21:56:19 -04:00
Michael Shilman
e06b2e7aa0
Addon-actions: Use argType.action instead of action.args
2020-03-13 17:32:40 +08:00
Michael Shilman
b9841ca688
Minor cleanup
2020-03-11 15:15:26 +08:00
Michael Shilman
4cd2414f4d
Addon-actions: Add args and argTypesRegex parameter enhancers
2020-03-02 21:36:54 +08:00
Norbert de Langen
2d94eac447
CLEANUP
2020-02-13 13:23:48 +01:00
Filipp Riabchun
24ec9d3674
Migrate examples and templates to PascalCase exports
2019-11-19 21:08:32 +01:00
Michael Shilman
fa0d62bf37
Examples: Upgrade official-storybook to simplified hierarchy separators
2019-11-13 17:57:51 +08:00
Norbert de Langen
1f12e4adb6
ADD support for allowFunction boolean option on telejson & set default value for action to false.
2019-07-02 17:12:14 +02:00
Michael Shilman
d9c67d7502
Official-storybook: update stories to module format
2019-06-27 22:55:22 +08:00
domyen
6505ec2bfa
Fix regression: Use the buttons from form instead of the other storybook buttons
...
Temporarily fixes regression from having 2 types of buttons, need to consolidate in the future
2019-02-06 17:43:35 -05:00
Norbert de Langen
1eef24f94f
RENAME selectedAddonPanel to selectedPanel
2018-12-29 16:15:00 +01:00
Norbert de Langen
0e905b5cb0
REMOVE a ton of cruft from snapshots (reset & divs)
2018-12-22 00:08:44 +01:00
Norbert de Langen
a9ee8a5dad
Merge branch 'next' into tech/overhaul-ui
...
# Conflicts:
# .babelrc.js
# addons/a11y/package.json
# addons/actions/package.json
# addons/backgrounds/package.json
# addons/cssresources/package.json
# addons/events/package.json
# addons/graphql/package.json
# addons/info/package.json
# addons/info/src/components/PropTable.js
# addons/jest/package.json
# addons/knobs/package.json
# addons/links/package.json
# addons/notes/package.json
# addons/ondevice-backgrounds/package.json
# addons/options/package.json
# addons/storyshots/storyshots-core/package.json
# addons/storyshots/storyshots-puppeteer/package.json
# addons/storysource/package.json
# app/angular/package.json
# app/ember/package.json
# app/html/package.json
# app/marko/package.json
# app/mithril/package.json
# app/polymer/package.json
# app/react/package.json
# app/riot/package.json
# app/svelte/package.json
# app/vue/package.json
# examples/official-storybook/stories/addon-a11y.stories.js
# examples/official-storybook/stories/addon-actions.stories.js
# lib/addons/package.json
# lib/channel-postmessage/package.json
# lib/channel-websocket/package.json
# lib/components/package.json
# lib/components/src/layout/mobile.js
# lib/core/package.json
# lib/core/src/server/common/babel.js
# lib/ui/package.json
# lib/ui/src/modules/ui/components/stories_panel/index.js
# lib/ui/src/modules/ui/components/stories_panel/stories_tree/index.test.js
# lib/ui/src/modules/ui/components/stories_panel/stories_tree/tree_decorators_utils.js
# lib/ui/src/modules/ui/components/stories_panel/text_filter.js
# yarn.lock
2018-12-06 16:49:52 +01:00
Mansoor Basha Bellary
9aeb439f89
fix(): deprecations with replacing setOptions with withOptions
2018-12-01 00:29:20 -05:00
Norbert de Langen
31c9f3dfe7
ADD decycling & support for functions, infinity, regex, instanced objects, undefined, null, symbol to channel
2018-10-22 14:03:57 +02:00
Norbert de Langen
625162455d
FIX errors display && REFACTOR addons to sync naming conventions && CHANGE to use addParameters for setOptions && FIX eslint
2018-09-12 19:31:40 +02:00
Norbert de Langen
68c1664ec9
WIP
2018-08-11 01:40:24 +02:00
Tom Coleman
fbbb12775e
Move deprecated stories to their own kinds
2018-07-06 17:04:15 +10:00
Hypnosphi
100985bfdb
withActions decorator
2018-05-02 20:31:53 +03:00
Hypnosphi
11cef25b44
Merge remote-tracking branch 'origin/master' into tmeasday/add-actions-helper
...
# Conflicts:
# addons/actions/README.md
# addons/actions/src/index.js
# addons/actions/src/preview/action.js
# examples/official-storybook/stories/__snapshots__/addon-actions.stories.storyshot
# examples/official-storybook/stories/addon-actions.stories.js
2018-04-27 03:03:42 +03:00
Jamie Charry
578c5757dc
add example to official-storybook
2018-04-25 16:02:03 -04:00
Keraito
51ee317fa4
Update the example and test
2018-04-22 20:57:24 +02:00
Keraito
0d452b129e
Add actionlogger clear example
2018-04-21 15:34:26 +02:00
Rob Halff
50d81a1a13
add configuration examples
2018-04-15 23:19:14 +01:00
Tom Coleman
f3c57b717d
Added new decorated
API to addons and stories in official storybook
2018-04-05 16:54:50 +10:00
Tom Coleman
2181eaf93f
Added actions(object)
syntax
2018-04-04 23:24:08 +10:00
Tom Coleman
8aa203ea28
Added actions
to addon-actions to create multiple actions
2018-04-04 14:37:47 +10:00
Rob Halff
82ed846ffd
deeper example
2018-03-02 22:21:13 +00:00
MJ Meinders
dbaf4e5690
extend kitchen sink example with multiple hierarchies
2017-12-27 10:41:31 +01:00
Tom Coleman
fda897567e
Created examples/official-storybook
with ui/components/addon stories
2017-12-20 15:22:08 +11:00