anxpara

Results 15 comments of anxpara

Does anime.js have a community somewhere? Like a discord server? I'm looking for beta testers for an animation tool I'm working on. Wayfinder lets you treat elements like waypoints by...

i'm also inclined to pitch in, although I won't have much spare energy for the foreseeable future. most of my energy is going into wayfinder, which is an indirect contribution...

Here are the current types from @types/animejs https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/animejs/index.d.ts

+1 for allowing slots to handle and/or forward events. i don't see why the approach should be any different than handling/forwarding events from directly-referenced components i have a layout for...

since this hasn't even been acknowledged yet--@Conduitry @Rich-Harris

I'm interested in a similar use case, except for enforcing an interface of functions on a list of , and not as props. ```ts // Demo.ts (DemoControls interface not used...

> alright, i figured out how to enforce the interface ```typescript // Demo.ts export interface DemoControls { reset(): void; start(): void; } export class Demo { demoComponent?: SvelteComponent & DemoControls;...

Pasting what i mentioned in the other related issue: "I've seen similar artifacts with animation libraries and I learned that the solution was to add "will-change: transforms;" to anything i...

generally with svelte 4, .set() is only necessary if you're outside of a component. otherwise: ```ts $: $checked = myControlledState ``` anyway, if you look at the api reference section,...

big +1 to this issue right now I had to write ```ts const sharedOptionsBoxesByName = new Map( sharedOptionNames.map((name) => [ name, createCheckbox({ defaultChecked: false, }), ]), ); ``` i'll try...