Mattias Hällkvist
Mattias Hällkvist
We dont use default exports so we cant use `match-exported` rule. I would like a rule to complain if yoh have: filename: `Button.tsx` and it contained only: ```jsx const BigButton...
(This was originally an issue on `ember-modifier` [here](https://github.com/ember-modifier/ember-modifier/issues/174) but it was concluded that its the underlying infrastructure that needs changing, not `ember-modifier` so I created the issue here instead.) I...
## Reproduction https://codesandbox.io/s/beautiful-nash-0llyo ## Steps to reproduce Use css prop and have a dynamic component variable, like the `As` variable here: ```jsx import React from "react"; import "styled-components/macro"; export default...
I would like to make this optional: https://github.com/wix/vscode-glean/blob/d2848eede545dbc1d3876c63a371e829f3c12d45/src/extension.ts#L60 Its mostly in the way for me :)
What I send in as `children` is always disregarded because of these lines: https://github.com/DevExpress/devextreme-reactive/blob/866c4303ed1eaa7d8605b4fb40da703cfc4967da/packages/dx-react-grid-material-ui/src/templates/table-tree-expand-button.jsx#L43-L45
I am trying to implement the rsuite `MultiCascader` component and make use of as much as possible of our own component that use `material-ui` components. I was able to make...
I need to run some js make a chart animate in. Then I want the threshold of `0.2` (ish) but when it scrolls out of view I dont want to...
Allow for sending in classes for all individual elements (especially required when using tailwind)
When styling with tailwind you send in classes for everything you style, so it would be nice to have args for that, like: `@beforeOptionsInputClass`, `@optionClass`, etc.
It would be nice to be able to use the `ember-power-select` components without having the default styling be applied. When overriding individual components you have to maintain that component over...
### 🐞 Describe the Bug If you do `{{#if has-block}}` its accepted but doesnt work. This condition is always false. You have to do `{{#if (has-block)}}` ### 🔬 Minimal Reproduction...