305 Commits

Author SHA1 Message Date
jonniebigodes
8b8f6b79e4 adjustments to the args snippet 2021-05-17 22:31:53 +01:00
Michael Shilman
ee0c559606
Merge pull request #14897 from Tomastomaslol/issue-14617-provide-option-to-hide-default-toolbar-tools
UI: Provide option to hide default toolbar tools
2021-05-17 22:41:03 +08:00
Norbert de Langen
efe28bbbcb
Merge pull request #14903 from fedodd/patch-1
["bug", "documentation"] fix bug in example storybook-preview-body-font-size.html.mdx
2021-05-17 14:12:57 +02:00
jonniebigodes
47810060ca
Merge pull request #14906 from storybookjs/chore_minor_addon_docs_fix
Chore: (Docs) Fixes for issue 14218
2021-05-14 22:40:21 +01:00
Tomas Nygren
f4cc5c9528 Merge branch 'next' of github.com:storybookjs/storybook into issue-14617-provide-option-to-hide-default-toolbar-tools 2021-05-14 13:23:09 +10:00
Tomas Nygren
c268a733de add documentation and examples for toolbar configuration 2021-05-14 13:22:47 +10:00
Michael Shilman
73da2a769d
Merge pull request #14893 from storybookjs/fix_update_decorators_snippets_react
Chore: (Docs) Adjusts snippets in decorators for React
2021-05-13 12:38:53 +08:00
jonniebigodes
f06074924c fixes for issue 14218 2021-05-12 19:33:26 +01:00
Fedor Semenov
e53169dd88
Update storybook-preview-body-font-size.html.mdx
rem values are relative to the root html element, not the body. see https://developer.mozilla.org/en-US/docs/Web/CSS/font-size#rems
2021-05-12 12:34:21 +03:00
jonniebigodes
6699e22bcf adjusts snippets in decorators 2021-05-11 22:15:34 +01:00
Jason-Lough-Cap-Rx
9517efd409
Update page-story-slots.js.mdx
Added missing >
2021-05-11 13:48:21 -07:00
Michael Shilman
1df4b2744f
Merge pull request #14845 from nfdevil/patch-1
Update react/button-story-rename-story.ts.mdx
2021-05-08 20:34:10 +08:00
Michael Shilman
af6a8d5056
Merge pull request #14849 from storybookjs/adjust_community_frameworks
Chore: (Docs): Community frameworks location updated
2021-05-08 20:10:59 +08:00
jonniebigodes
7ecc1be87b spacing fixes 2021-05-07 18:07:39 +01:00
jonniebigodes
3f61e116d7
Merge branch 'next' into docs_add_svelte_snippets 2021-05-07 16:07:29 +01:00
jonniebigodes
e81051dad1 community frameworks location updated 2021-05-07 15:51:42 +01:00
Appsum Solutions
1c4107f3e6
Update react/button-story-rename-story.ts.mdx
TypeScripts needs the Story type to know about the existence of the storyName property
2021-05-07 13:54:14 +02:00
Michael Shilman
412eb52586 Merge branch 'next' into 13478-fix-doc-blocks-imports 2021-05-07 12:11:09 +08:00
Michael Shilman
06eb833d5f Fix doc blocks imports to import from ESM/CJS 2021-05-07 11:51:52 +08:00
inokawa
145654a0db
Remove unused import from snippet 2021-05-07 11:44:58 +09:00
jonniebigodes
341d31a37e Minor fixes to the common and react snippets 2021-05-06 21:05:56 +01:00
jonniebigodes
83092c8a29 Fixes based on feedback 2021-05-06 20:04:33 +01:00
jonniebigodes
0b03e56265 Adds the svelte snippets to the docs 2021-05-06 17:36:21 +01:00
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
Norbert de Langen
fd68d51d5b
Merge pull request #14572 from jh3y/next
docs: update code snippets for writing an addon
2021-04-13 16:43:07 +02:00
Michael Shilman
4355ca92c1
Merge pull request #14532 from lordVelisch/feature/add_angular_snippet_args
docs: add angular code snippet for using args
2021-04-13 08:39:03 +08: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
Valentin Mayer
42edf6536e docs: add angular code snippet for using args 2021-04-09 13:40:17 +02: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
Alexandr Zhidovlenko
e08571008e Add spaces for snippet 2021-03-16 23:11:26 +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
a67b682b6b
Merge pull request #14232 from storybookjs/docs/add-snippets-for-web-components
Docs: Add code snippets for Web Component
2021-03-15 18:42:55 +08:00
Michael Shilman
140721c03e Document controls sorting 2021-03-15 17:29:18 +08:00
Gaëtan Maisse
29c2285cf4
docs: add missing web components snippets for env variable section 2021-03-14 14:56:14 +01:00
Gaëtan Maisse
86dcf1c1e1
docs: add missing web components snippets for viewports addon section 2021-03-14 14:56:14 +01:00
Gaëtan Maisse
330186261b
docs: add missing web components snippets for introduction sections 2021-03-14 14:45:51 +01:00
Michael Shilman
e0fecd0121
Merge pull request #14179 from storybookjs/chore_docs_angular_6_2_snippets
Chore: (Docs): Updates Angular snippets for 6.2
2021-03-13 06:38:29 +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
Michael Shilman
c398bc56dd
Merge pull request #14169 from storybookjs/options-labels
Core: Hoist 'control.options', validate them in core and introduce 'control.labels'
2021-03-10 06:04:37 +08:00