-
Updated
Jul 31, 2021 - JavaScript
styleguide
Here are 806 public repositories matching this topic...
-
Updated
Aug 13, 2021 - JavaScript
-
Updated
Jul 20, 2021 - HTML
-
Updated
Aug 12, 2021 - SCSS
Current behavior
I think there's a mismatch of environment variables being read by babel (JSX config) and Styleguidist, causing some issues deeper down.
(I've noticed this was raised before but was closed)
- build.js sets the env to be
production
here: https://github.com/styleguidist/react-styleguidist/blob/master/src/s
-
Updated
Aug 4, 2021 - Python
-
Updated
Dec 22, 2020 - Elixir
-
Updated
Apr 18, 2021
-
Updated
Sep 20, 2020
-
Updated
Jul 8, 2019
-
Updated
Aug 13, 2021
-
Updated
Aug 13, 2021 - TypeScript
-
Updated
Jul 21, 2021
-
Updated
May 31, 2019
-
Updated
Oct 10, 2020 - HTML
hello, i just found a text mentioning a basePxFontSize
configuration which is not documented anywhere inside the doc. This is really useful to use inside custom transforms and it should be documented.
Rule request
We need to forbid code like raise exc from exc
, because it does not make much sense and works the same way:
>>> e = Exception('m')
>>> raise e
Traceback (most recent call last):
File "ex.py", line 1, in <module>
e = Exception("m"); raise e
Exception: m
And with from
:
>>> e = Exception('m')
>>> raise e from e
Traceback (most rec
-
Updated
Aug 13, 2021 - HTML
-
Updated
Aug 11, 2021 - JavaScript
-
Updated
Aug 13, 2021 - Python
-
Updated
Jun 17, 2021 - Markdown
-
Updated
Aug 13, 2021 - JavaScript
-
Updated
Jan 11, 2021 - Python
-
Updated
Aug 2, 2021 - HTML
-
Updated
Oct 7, 2018 - Ruby
Improve this page
Add a description, image, and links to the styleguide topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the styleguide topic, visit your repo's landing page and select "manage topics."
Describe the bug
When using
@storybook/addons-backgrounds
in a react project with a customDecorator
, the initial/default background value is not passed to thecontext.globals
.I have a project performing text contrast logic where I need the initial value to pass to javascript.
To Reproduce