Alecia Vogel
Alecia Vogel
Yup! That's the one
I successfully implemented `scorm-again` in an Electron project, so take this advice with a grain of salt. I might get some things wrong with the Vue implementation (I did some...
Here's a working example I put together (everything you need is in `src/App.tsx`): [CodeSandbox Link](https://codesandbox.io/p/sandbox/rnd-multiselect-example-x7mh6h) https://github.com/bokuweb/react-rnd/assets/11688080/be5e9aa7-17c5-4460-b667-a4bb097933a5 To summarize my solution: - Use `setState` to track an array of `selectedIds` -...
Add a `types.d.ts` file with the following: ```typescript declare module 'locomotive-scroll' { export interface ILenisScrollToOptions { behavior?: 'auto' | 'smooth' top?: number left?: number } export interface ILocomotiveScrollOptions { lenisOptions?:...
Refer to [this](https://github.com/chandlerprall/Physijs/blob/master/examples/heightfield.html#L106) excerpt from the comments of a heightfield example... `If your plane is not square as far as face count then the HeightfieldMesh takes two more arguments at...
Wellllll, the last merge from @chandlerprall was ~2 years ago and you made this PR over a year ago, so I'm gonna say no :(
I hear ya. Maybe one day it'll be revived, but it looks like Chandler's busy being a lead developer elsewhere so I don't necessarily blame him for putting this project...
Update your import ```tsx import { Highlight, Language } from "prism-react-renderer"; ``` and remove any mention of `defaultProps` ```tsx ```