Andy Richardson
Andy Richardson
Hey there - first off, thanks for making this plugin! # Feature request State machines currently cannot be not invoked by websocket events ```yml stepFunctions: stateMachines: myMachine: events: - websocket:...
# About Given the following tsconfig ```json { "compilerOptions": { "declaration": false } } ``` The user will see this message whenever building > rpt2: options error TS5069: Option 'declarationDir'...
**Library Affected**: workbox-routing **Browser & Platform**: all browsers **Issue or Feature Request Description**: Bug report: Consider the following service worker ```js import { clientsClaim, skipWaiting } from 'workbox-core'; import {...
## About It would be nice if wouter could include query parameter destructuring ## Example ```tsx const { pathName, search, searchParams } = useLocation(); // `https://someplace.com/test?a=1234` console.log(pathName) // `/test`(like browser...
# About I spent a decent amount of time trying to work out why a Vercel deployment with no build step (because assets are built pre-deploy) was resulting in no...
Hey there. First off, thanks for the awesome package! I'm wondering if there is/could be a way to have a single README with multiple different stories. ## Example Here I...
* Updates event handlers on prop change * Removes switch logic for lookup map * Removes event handlers on unmount Fix #142
Currently, component updates are [being ignored](https://github.com/scniro/react-codemirror2/blob/master/src/index.tsx#L590) ``` /** @internal */ public shouldComponentUpdate(nextProps, nextState) { return !SERVER_RENDERED } ``` This means that any update to event handlers just straight up don't...
Fix #144 Events have been determined by referring to the [MDN docs](https://developer.mozilla.org/en-US/docs/Web/Events).
Key events such as `onKeyPress` have the wrong types ``` '(k: Editor, e: KeyboardEvent) => void' is not assignable to type 'DomEvent'. ```