Cameron Ackerman
Cameron Ackerman
The community maintained UUID package has released: https://github.com/gofrs/uuid/releases/tag/v2.0.0
@yhaoyan https://github.com/satori/go.uuid/issues/103
@chingiz2387 @3013216027 @rajmaniar this package is obsolete. https://github.com/satori/go.uuid/issues/84 Recommend using https://github.com/gofrs/uuid
This repo is basically dead. Recommend moving to https://github.com/gofrs/uuid, which is an actively maintained fork. See https://github.com/satori/go.uuid/issues/84
Probably not. https://github.com/satori/go.uuid/issues/84
If this package is not going to release to your needs, get a different one. There was a huge stink about a critical vulnerability that was left outstanding in this...
Hi! I managed to figure it out by reading over your lovely example project :) I was missing these properties: ``` "modulePathIgnorePatterns": [ "packages/.*/build" ], "projects": ["/packages/*"], ``` Thanks!!
It seems like most people want the ref for focusing or for positioning purposes. For focusing, there's a helper that focuses, `ReactEditor.focus()`. It's usually most successful in a `setTimeout`. For...
https://github.com/ianstormtaylor/slate/blob/master/packages/slate-react/src/plugin/react-editor.ts#L117
Is the issue caused by the `useMemo` call being rerun too frequently? This is causing the editor to be regenerated everytime the callback is recalculated, which is every onChange. 🤔...