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
Norbert de Langen
d74daf18e5
FIX #13630
2021-03-25 10:01:17 +01:00
Gert Hengeveld
ad89f03a86
Support presetColors parameter and fix changing presets
2021-03-23 17:28:36 +01:00
Gert Hengeveld
e4ed4575f6
Tweaks
2021-03-19 14:23:58 +01:00
Gert Hengeveld
7f064f4ef8
Fix initial presetColors
2021-03-19 14:16:36 +01:00
Gert Hengeveld
e397e28d5b
Merge branch 'next' into react-colorful
2021-03-19 08:24:41 +01:00
Victor Tortolero
5cdb42993d
Add story for MDX docs using dark theme
2021-03-17 15:24:47 -06:00
Victor Tortolero
d44ad0af51
Fix Docs table dark mode #14029
2021-03-16 21:20:47 -06:00
Ev Haus
b01bbdcdb1
Migrate from react-color to react-colorful
2021-03-16 11:08:55 -07:00
Michael Shilman
6135d4b8d7
Fix deepscan
2021-03-15 17:31:59 +08:00
Michael Shilman
da4f95309b
Controls: Tune up sorting
2021-03-15 17:18:33 +08:00
Gert Hengeveld
1f128d89a7
Render control based on 'control.labels' and fall back to 'control.options' or 'options' (in that order)
2021-03-08 16:41:51 +01:00
Gert Hengeveld
194abfba73
Introduce 'mapping' for arg values
2021-03-02 21:08:44 +01:00
Gert Hengeveld
63d32842e6
Merge branch 'next' into cameron.yick/feature/ui-editable-json-tree-knob
2021-02-23 00:30:59 +01:00
Gert Hengeveld
9168b45640
Add support for entering raw JSON
2021-02-22 20:34:39 +01:00
Gert Hengeveld
fa10ff5e5d
Improve addon-controls story
2021-02-22 19:34:41 +01:00
Michael Shilman
52479887c7
Addon-docs: Support story.mdx, stories.mdx
2021-02-22 08:40:23 +08:00
Gert Hengeveld
866f4b2305
Merge branch 'next' into cameron.yick/feature/ui-editable-json-tree-knob
2021-02-18 10:42:40 +01:00
Norbert de Langen
4802dad406
Merge branch 'next' into tech/core-builder
...
# Conflicts:
# addons/docs/package.json
# addons/essentials/package.json
# addons/graphql/package.json
# addons/knobs/package.json
# addons/storyshots/storyshots-core/package.json
# addons/storyshots/storyshots-puppeteer/package.json
# app/angular/package.json
# app/aurelia/package.json
# app/ember/package.json
# app/html/package.json
# app/marionette/package.json
# app/marko/package.json
# app/mithril/package.json
# app/preact/package.json
# app/rax/package.json
# app/react/package.json
# app/riot/package.json
# app/server/package.json
# app/svelte/package.json
# app/svelte/src/server/framework-preset-svelte.ts
# app/vue/package.json
# app/vue3/package.json
# app/web-components/package.json
# examples/cra-kitchen-sink/package.json
# examples/cra-react15/package.json
# examples/cra-ts-essentials/package.json
# examples/cra-ts-kitchen-sink/package.json
# examples/mithril-kitchen-sink/package.json
# examples/react-ts/package.json
# examples/svelte-kitchen-sink/package.json
# examples/vue-3-cli/package.json
# lib/cli/src/versions.json
# lib/core/package.json
# lib/ui/package.json
# yarn.lock
2021-02-15 10:23:52 +01:00
Michael Shilman
5ad68a16da
Fix docs page for the addons/controls stories in official-storybook
2021-02-15 10:03:30 +08:00
Michael Shilman
6d3bdf5437
Merge branch 'next' into feature/addon-controls-inferred-types
2021-02-14 20:45:03 +08:00
Michael Shilman
4ff7f88b0c
Disable controls stories in chromatic
2021-02-14 18:10:10 +08:00
Yann Braga
7b4964bc54
feat(addon-controls): use matchers for args inference
2021-02-13 10:57:47 +01:00
Yann Braga
09bc787a63
refactor(addon-controls): improve argTypes filter
2021-02-13 10:57:05 +01:00
Michael Shilman
89863deea4
Merge pull request #13544 from dominictwlee/files-control
...
Addon-controls: Files control
2021-02-13 03:11:58 +08:00
Michael Shilman
c5c5a983ab
Merge from next WIP
2021-02-03 22:34:44 +08:00
Michael Shilman
b351e46160
Fix broken configuration
2021-01-11 17:56:36 +08:00
Michael Shilman
014546dcbf
Fix broken story
2021-01-11 17:49:21 +08:00
Dominic Lee
de90d7ea85
refactor: uncomment CyclicArgs
2021-01-02 11:54:06 +00:00
Dominic Lee
cdf1066714
refactor: accept png files
2021-01-02 01:44:57 +00:00
Dominic Lee
8e46922be5
fix: pass accept through control property
2021-01-02 01:42:26 +00:00
Dominic Lee
33b688bdcd
refactor: appropriate naming
2021-01-02 00:04:54 +00:00
Dominic Lee
76864fe449
feat: default accept image
2021-01-01 22:56:48 +00:00
Dominic Lee
453c6f289c
feat: add file control story
2021-01-01 16:37:15 +00:00
Dominic Lee
80e5f9058d
fix: assign parameters to correct story
2020-12-29 15:55:39 +00:00
Dominic Lee
b5ea3158d0
chore: add additional addon-jest examples
2020-12-29 13:57:56 +00:00
Michael Shilman
bf00e62176
Addon-docs: Remove unused titleFunction export
2020-12-15 18:29:12 +08:00
Norbert de Langen
84a4bde3f0
FIX
2020-12-09 14:42:24 +01:00
Norbert de Langen
05ee0915c8
webpack 5 baby
2020-12-04 15:14:48 +01:00
Michael Shilman
c93b353142
Merge branch 'next' into pr/12824
2020-12-02 10:43:02 +08:00
Norbert de Langen
04acc44510
Change /dist to ESM && upgrade required dependencies to make this happen & deal with the consequences
2020-11-26 10:50:46 +01:00
Michael Shilman
01fd93e679
Disable chromatic for broken story
2020-11-25 22:20:58 +08:00
Michael Shilman
e3ed5b0957
Core: Detect arg inference for cyclic args and warn
2020-11-25 15:36:17 +08:00
Gert Hengeveld
ee34a02f90
Fix overflow scrolling on layout:centered.
2020-11-23 10:08:19 +01:00
Michael Shilman
96a124e197
Merge pull request #12727 from guilhermewaess/refactor/storyrenderer-styles
...
Core: Add new layout style `none` and fix layout styles
2020-10-27 06:17:23 +08:00
Guilherme Waess
21ec3c9ac8
refactor: move layout from styles attr to css classes.
...
Remove logic from adding styles through styles attr and start to use css instead.
2020-10-26 22:34:39 +01:00
Cameron Yick
87149e839b
(feat:controls) Update documentation examples for object controls to show when object props are updating
2020-10-19 23:35:47 -04:00
Michael Shilman
5989fd2bb2
Merge branch 'next' into 1009-async-loaders
2020-10-10 10:48:39 +08:00
Michael Shilman
2bb142ac65
Add global & story loaders
2020-10-08 14:00:35 +08:00
Michael Shilman
9c4ba3537d
Namespace loader results as "loaded"
2020-10-08 14:00:11 +08:00