-
Updated
Jun 29, 2022 - JavaScript
styleguide
Here are 876 public repositories matching this topic...
-
Updated
Jul 4, 2022 - JavaScript
-
Updated
Jul 6, 2022 - HTML
-
Updated
Jul 6, 2022 - 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
Jul 5, 2022 - Python
-
Updated
May 30, 2022 - Elixir
-
Updated
Jun 13, 2022
-
Updated
Sep 20, 2020
-
Updated
May 14, 2022
-
Updated
May 12, 2022
One of the consumers of our system uses curly braces for content replacement in strings.
Due to the way that SD currently uses curly braces in the build process there is no way I can have a string that includes the braces for consumption.
I have tried a number of ways to escape the braces with no luck
Other languages and templating systems seem to use the concept of using double curly b
-
Updated
Jun 21, 2022
-
Updated
Jul 5, 2022 - HTML
-
Updated
Jul 6, 2022 - TypeScript
-
Updated
Jul 5, 2022 - Python
Forbid chaining `is`
Rule request
Thesis
Forbid ast.Is
in ast.Compare.ops
when it's size is not zero. For example:
a = None
a is None # True, as expected
a is None is True # False 🤔
a is None == True # False 🤔
a is None is None # True 🤯
Reasoning
From the AST perspective, is
is an operator and can be chained. That can lead to unexpected results when the autho
-
Updated
Nov 15, 2021 - HTML
-
Updated
May 31, 2019
-
Updated
Jul 5, 2022 - Markdown
-
Updated
Jun 1, 2022 - JavaScript
I have stories for simple components that work fine. But once I click on a story for a component that uses the next/image
component, nothing renders and ladle is broken until reload. Once I clock on a story with next/image
the following error occurs in the console:
react.development.js:1309 Uncaught ReferenceError: process is not defined
at node_modules/next/dist/client/normalize-
-
Updated
Dec 28, 2021 - Python
-
Updated
Jun 7, 2022 - JavaScript
-
Updated
Jul 7, 2022 - JavaScript
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
In Firefox, the zoom feature uses
transform
styles (see storybookjs/storybook#12845) - unfortunately this breaks positioning on elements that requireposition: fixed
when in the "Docs" view.Normally a
position: fixed
element's position would correspond to the viewport but in Firefox it corresponds to the element with thetransform
style.