Angela Papadopoulou
1debd1b219
Update docs to include showName property in toolbar items
2021-05-03 11:49:20 +03:00
Michael Shilman
fc3e0511ba
Update docs/snippets/common/component-story-mdx-argtypes.mdx.mdx
2021-04-18 18:07:56 +08:00
Huyen Nguyen
d68d4089fb
docs: correct typo and formatting
2021-04-18 04:39:54 +07:00
peterpeterparker
def4fb743c
docs: missing dash in place-hold.it url
2021-04-17 14:25:08 +02:00
Michael Shilman
9eb3b03b4c
Apply suggestions from code review
2021-04-15 09:47:01 +08:00
jonniebigodes
047c28afab
Adjust the styled-component get theme snippet
2021-04-14 22:41:13 +01:00
jh3y
cd0b4cc26b
docs: update code snippets for writing an addon
2021-04-12 20:03:11 +01:00
Michael Shilman
316b500adb
Merge branch 'next' into dont-shadow-window
2021-04-10 12:09:28 +08:00
Kristian Randall
b8ed01ff76
Add wildcard example to the docs
2021-04-09 17:58:58 +07: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
jonniebigodes
8ff0a6fcc9
Essentials and addons api (snippets and content) updated
2021-03-31 20:07:21 +01:00
Michael Shilman
1913c922b5
Merge pull request #14390 from YozhEzhi/patch-1
...
[Documentation]: Update my-component-story-use-globaltype.mdx.mdx
2021-03-30 18:12:09 +08:00
YozhEzhi
259b12a3a2
Update my-component-story-use-globaltype.js.mdx
...
https://github.com/storybookjs/storybook/issues/13602
2021-03-30 10:51:48 +03:00
YozhEzhi
a8a846bb82
Update my-component-story-use-globaltype.mdx.mdx
...
https://github.com/storybookjs/storybook/issues/13602
2021-03-30 10:51:25 +03:00
Andrew James
696ec549d4
Updated refs function signature to include StorybookOptions object
...
Discussed here:
https://discord.com/channels/486522875931656193/735329186880946247/821352835995795459
2021-03-16 12:15:04 +00:00
Michael Shilman
140721c03e
Document controls sorting
2021-03-15 17:29:18 +08:00
Michael Shilman
276aa9ba30
Merge pull request #14151 from storybookjs/chore_adjust_story_layout
...
Chore: (Docs) Adjusts layout parameter documentation
2021-03-11 18:54:41 +08:00
Gert Hengeveld
de26a04149
More explicit example
2021-03-09 10:26:54 +01:00
Gert Hengeveld
ccdcfacc9d
Update docs
2021-03-09 01:10:58 +01:00
jonniebigodes
905eb1c7b4
expands story layout documentation
2021-03-05 16:23:19 +00:00
jonniebigodes
ced02f55f5
Merge branch 'next' into chore_adjust_vue3_snapshots
2021-03-05 14:47:30 +00:00
jonniebigodes
9ef1d1c834
adjusts instructions for setup (yarn/npm).
...
Minor tweaks to yarn/npm references
2021-03-04 16:57:26 +00:00
Michael Shilman
54b1bbdc5a
Merge pull request #14117 from storybookjs/chore_docs_composition_docs_environment
...
Chore: (Docs) Adjusts composition docs
2021-03-04 07:45:14 +08:00
jonniebigodes
ee4cf2f547
adjusts composition docs
2021-03-03 21:02:16 +00:00
jonniebigodes
34672a1165
Adjusts the snapshots docs for specific framework usage.
2021-03-03 18:48:10 +00:00
jonniebigodes
b95d743cc8
Adjustments to controls and writing stories docs.
...
With snippets included
2021-03-02 22:30:46 +00:00
Gert Hengeveld
c263d1d1b9
Deprecate 'showRoots' in favor of 'sidebar.showRoots', and remove sidebarAnimations altogether
2021-02-26 16:52:50 +01:00
jonniebigodes
5183b11fd1
Merge branch 'next' into chore_vue3_snippets_and_assorted_adjustments
2021-02-23 00:31:25 +00:00
jonniebigodes
fc0a67c523
Adjusts snippets for Vue 3 and other minor tweaks.
2021-02-23 00:26:03 +00:00
Michael Shilman
5eda3dcf38
Merge pull request #13680 from semihraifgurel/next
...
documentation fixed typo
2021-02-21 23:49:41 +08:00
Michael Shilman
f656c970ad
Improve snippet for single-story hoisting
2021-02-15 11:00:13 +08:00
Michael Shilman
501e9fc712
Merge pull request #13758 from qoalu/patch-4
...
Fix import in badge-story-starter-example.mdx.mdx
2021-02-15 08:27:08 +08:00
Michael Shilman
6d3bdf5437
Merge branch 'next' into feature/addon-controls-inferred-types
2021-02-14 20:45:03 +08:00
Yann Braga
7a9279b249
docs(addon-controls): add custom matchers
2021-02-13 13:21:47 +01:00
Yann Braga
ac61ee39a0
docs(addon-controls): add example usage of include/exclude
2021-02-13 11:40:55 +01:00
Oleg
ba2a626503
Update badge-story-starter-example.mdx.mdx
2021-01-28 14:33:30 +01:00
jonniebigodes
b031b9b6af
minor snippets improvements
2021-01-28 00:11:22 +00:00
jonniebigodes
d9fff1b04a
Merge pull request #13603 from GregoryNative/patch-1
...
fix(mdx): Fix code for `button-group-story-subcomponents.ts.mdx`
2021-01-27 21:20:57 +00:00
jonniebigodes
803ccf72eb
Merge pull request #13236 from storybookjs/alternative-docs-to-disable-props-control
...
Added an alternative solution to disable a prop control in docs
2021-01-26 18:08:23 +00:00
Blaine Bublitz
f3e77d166b
docs: import from theming module to support esm
2021-01-25 14:06:59 -07:00
Semih Raif Gürel
aba2665576
Fixed typo (yourTheme to YourTheme)
2021-01-20 14:17:18 +03:00
Gregory Galushka
a508d175a3
Update button-group-story-subcomponents.ts.mdx
...
Fix TS example
2021-01-11 16:20:57 +02:00
acdzh
d192f68b03
Update storybook-addon-toolbar-example.js.mdx
2021-01-05 16:16:39 +08:00
Michael Shilman
bf0bb282b1
Merge branch 'next' into perf/esm-dist
2020-12-15 17:43:53 +08:00
Michael Shilman
4ebecd5083
Main.js: Add previewHead, previewBody, managerHead presets
2020-12-11 18:47:51 +08:00
Norbert de Langen
84a4bde3f0
FIX
2020-12-09 14:42:24 +01:00
Norbert de Langen
e717ab1f8b
Merge branch 'next' into perf/esm-dist
2020-12-09 09:45:06 +01:00
Michael Shilman
7891e1d1f4
Fix bad quotes
2020-12-09 12:20:28 +08:00
Norbert de Langen
aab422d33d
move ts3.4 into dist, generate types into dist/ts3.9, make esm dist for all, fix issues
2020-12-08 17:54:25 +01:00
Michael Shilman
4c91362871
cleanup
2020-12-08 19:28:02 +08:00