auto-animate icon indicating copy to clipboard operation
auto-animate copied to clipboard

Qwik js support

Open CherphAlt opened this issue 1 year ago • 6 comments

CherphAlt avatar Mar 21 '23 04:03 CherphAlt

Happy to accept a PR for it

justin-schroeder avatar Apr 06 '23 11:04 justin-schroeder

PR #142

FlatMapIO avatar Jun 16 '23 09:06 FlatMapIO

I created a new PR #144

FlatMapIO avatar Jun 16 '23 23:06 FlatMapIO

I saw a merge Removes Qwik from documentation. Why? It works wonderfully with Qwik. A simple example looks like :-

export default component$(() => {
  const parentDivRef = useSignal<HTMLDivElement>();

  useVisibleTask$(() => {
      if (parentDivRef.value) {
        autoAnimate(parentDivRef.value);
      }
    });

  return (
  <div ref={parentDivRef}>
    And this stuff animates
  </div>

Please add it back 🙏🏻

rhymbit avatar Aug 22 '23 13:08 rhymbit

I want to test it in my Qwik app, so when it will be added back?

lbensaad avatar Aug 27 '23 15:08 lbensaad

If the issues in https://github.com/formkit/auto-animate/pull/144 are resolved then it will be added back. Last I checked that PR did not lead to a working project when you built, even with a fresh version of Qwik. The function API (autoAnimate()) should work in Qwik just fine in the meantime though.

justin-schroeder avatar Aug 28 '23 17:08 justin-schroeder