Alexander Pepper
Alexander Pepper
First all all thank you for your great plugin. It already helps a lot 🚀! One thing, that I'm missing is a "global" restore. Currently after each `rewire` import/call I...
There is this fairly new media query API [`prefers-reduced-motion`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion). web.dev has a nice [introduction article to reduced motion](https://web.dev/prefers-reduced-motion/). It would be awesome, if `react-reveal` could disable animations out of the...
The current `master` of `react-reveal` can not be installed on node 10 (at least on my mac with catalina): ``` > [email protected] install ~/react-reveal/node_modules/fsevents > node install node-pre-gyp ERR! Tried...
Currently `@loadable/component` only supports react 16 is supported: https://github.com/gregberge/loadable-components/blob/cba6cab47536e23ded8bac34ee24417e6452344e/package.json#L54-L55 It would be great, if it would also support [React 17](https://reactjs.org/blog/2020/10/20/react-v17.html) and the latest React 18.
### To reproduce Preparation: ```python import os from trello import TrelloClient client = TrelloClient(os.environ['TRELLO_API_KEY'], token=os.environ['TRELLO_TOKEN']) for b in client.list_boards(): if b.name == os.environ['TRELLO_TEST_BOARD_NAME']: board = b break lists = board.open_lists()...
Currently `react-bnb-gallery` supports `react` 15 and 16: https://github.com/peterpalau/react-bnb-gallery/blob/ad411497c42c1bbdf8c16c7e4ab5a35844a9529a/package.json#L58-L61 It would be great, if it would also support the latest [React 17 release](https://reactjs.org/blog/2020/10/20/react-v17.html).
This PR removes the only used `lodash` method `omit` from the codebase. It also removes some not in use dependencies (`ajv` and now `lodash`) and moved some more dev-only dependencies...
https://peterpalau.github.io/react-bnb-gallery/#/options currently states the following: Name | Type | Default | Description -- | -- | -- | -- wrap | boolean | `false` | Whether the gallery should cycle...
React 17 is out since October of 2020 (see https://reactjs.org/blog/2020/10/20/react-v17.html). It would be great if `react-custom-scrollbars` officially supports react 17.
`dnd-kit` currently ships with typescript type that will fail, if you do have `allowSyntheticDefaultImports` set to `false`: ``` node_modules/@dnd-kit/core/dist/components/DndContext/DndContext.d.ts:1:8 - error TS1259: Module '"node_modules/@types/react/index"' can only be default-imported using the...