Alexander Kuznetsov

Results 72 comments of Alexander Kuznetsov

> cdnjs contains files running on browsers. Yeah, I get that, but I'm not sure how it will should be built to work with external React etc. All files are...

True. It's probably not hard to build that dist (and there are probably other react libs in `cdnjs` already, just like that `formsy-react`), but I don't have much time to...

Yep, that's fine for me

Thank you! But I'd just use a polyfill actually ```js import 'core-js/fn/array/find'; ```

I think the best solution here would be not using `find` at all, I'll get rid of it in the [next](https://github.com/alexkuz/react-json-tree/tree/next) version. For now, if you're using it in an...

(`Array.find` doesn't seem to me like an appropriate solution, it's not in specs so technically this code is not valid)

`react-json-tree` doesn't support filtering entries, although in your case it can be solved with `LogMonitor.select` prop, I suppose.

yes, `react-three-renderer` lib (which is used here) relies heavily on React inner structure, so it doesn't work with the latest versions of React. To be fair, `stellar-webpack` also depends a...

Note that this is still broken (`ListProps` expects `children` to be of type `ReactNode` instead of a function) https://github.com/grommet/grommet/blob/master/src/js/components/List/index.d.ts#L46

@srealmoreno if this is still relevant: on Mac, it would work like this ```sh history -n | sed -n 's/^\(bun[[:space:]]\{1,\}add[[:space:]]\{1,\}\)\(.\{1,\}\)$/\2/p' ``` or with extended regex: ```sh history -n | sed...