Frankie Bagnardi

Results 19 issues of Frankie Bagnardi

Hey, I have a fork I've changed considerably; you might want to take a look and see if there's anything you like that you'd want to incorporate. The main differences...

Reference: [react-virtualized issue](https://github.com/bvaughn/react-virtualized/issues/1212) This import appears in a [source file] which doesn't define components or composite types. ```js import type WindowScroller from '../WindowScroller.js'; ``` This line is in the output:...

Ran into this with the following code: ```js type BaseProps = { x: string, } type Props = BaseProps | (BaseProps & { y: string, }) ```

Live example on [the npm website](https://www.npmjs.com/package/react-ck5#propseditorstate-and-propsonstatechange). ![react-ck5 readme on npmjs.com](https://user-images.githubusercontent.com/936069/32349287-c40d8324-bfd3-11e7-8f20-039e4dec5891.png) ```js state = { editorState: null } render() { return ( this.setState({ editorState })} /> e.preventDefault()} onClick={() => { this.setState(s...

enhancement
help welcome

I'm working on a project where it generates AST based on an external data source (specification -> js ast -> js code). I get errors like this: ``` TypeError: Cannot...

In the blessed Program docs: > enableMouse([el]) - Enable mouse events for the screen and optionally an element (automatically called when a form of on('mouse') is bound). Because react-blessed only...

bug

This brings the crate up to date with changes in the ecosystem. The changes here backwards-incompatible, but allow it to be easily used with recent tokio (std::future based) and k8s-openapi-codegen...

Some sugar for simple stores. It implements `handleAdd`, `handleRemove`, `handleEmpty`, `getState`, `emptyWhere`, `setCollectionName`. ``` js var TodoStore = Fluxxor.createCollectionStore({ actions: { "ADD_TODO": "handleAdd", "TOGGLE_TODO": "handleToggleTodo", "CLEAR_TODOS": "handleClear" }, initialize: function()...

The proposal is very rough. Mostly looking to see how people feel about it based on their own experiences and how you'd improve the situation yourself. This seems to manifest...

The idea is to maintain compatibility, but move all of the module level variables to instance properties. This allows prototypical inheritance so that the setters don't affect other areas of...