Results 26 comments of Roderick Hsiao

Thanks! the reason we are checking is that we are trying to utilize the data from `emoji-button` https://github.com/joeattardi/emoji-button/commit/dbf36babe0bb01332526100429306700b906547b#commitcomment-51733591 which we currently have the full list from CLDR repo. But agree...

Most likely is compiling issue that some js syntax is not supported, I didn't see any syntax (arrow function/ES6 class) https://unpkg.com/browse/[email protected]/dist/lib/ Not really sure what's causing the issue, do you...

@PCOffline this is not really easy to do without introducing breaking changes. Some example is using the library for an functional component, we can't assign `ref` to a functional component...

Hi @PCOffline Some potential approaches ### `useInViewport` hook 1. If we change the interface assuming item passing down to hook is Ref with HTML element, then we don't need to...

Thanks, could you post a minimal reproducible code ? On Wed, Mar 30, 2022 at 5:39 AM jfnault-seedbox ***@***.***> wrote: > Im still looking at it, the error is: >...

@jfnault-seedbox you still see the same issue?

@jfnault-seedbox Will be helpful if you can provide some more information 1. which version you are using 2. How you are using the library (HOC or Hook) 3. Minimal rendering...

Thanks for the PR. This will be a breaking changes for the below reasons 1. HOC will break 2. We will be requiring ref attached to component now 3. component...

Thanks! looks good, I'll need sometime to think trough and test it out.

So what I saw the potential solution could be 1. programmatically connect/disconnect the intersection observer (which might be expensive in terms of performance and the parent component needs to handle...