Federico Zivolo
Federico Zivolo
Take this simple styled component: ``` type Props = { color: string, }; const Foo: StatelessFunctionalComponent = styled.div` color: ${props => props.color}; `; // @component export default Foo; ``` react-dogen...
I wonder what am I doing wrong... this is my script: ``` const RSG = require('react-styleguide-generator'); const INPUT = 'app/components/**/*.js'; const OUTPUT = 'docs/styleguide'; var rsg = RSG(INPUT, { output:...
Hi I'm having the same problem of #52, it worked fine a week ago. I'm on latest Hass and Node-RED and node-red-contrib-home-assistant
**Describe the bug** I get an error, apparently randomly, when I use the "server-state-changed" node. ``` 31/07/2018, 20:07:50node: clean guestsroom msg : error "TypeError: Cannot read property 'state' of null"...
**Describe the bug** The DeCONZ events received by the remotes don't seem to work properly, I can only get "short release" (short press) events, while "long release" and "hold" seem...
POC for #10
Hi, is there any way to use this tool programmatically rather than from CLI? Alternatively, could it be possible to allow to define a custom function for the `createSourceFile` method?...
### Describe the bug I'm using the `?url` suffix to import a TypeScript file to use it in an AudioWorklet. ```js import workletUrl from './audio.worklet.ts?url'; const audioContext = new AudioContext();...
Hi, for some reason, only on CI, some of my snapshots error out and show a diff that looks identical to the original. The only difference is that the proposed...
Right now the production build of Recoil runs `cloneStoreState` to ensure no accidental mutations happen, do you think this could be moved to a development-only check? The main reason to...