144 Commits

Author SHA1 Message Date
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
Tomas Nygren
c268a733de add documentation and examples for toolbar configuration 2021-05-14 13:22:47 +10: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
e81051dad1 community frameworks location updated 2021-05-07 15:51:42 +01: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
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