Results 17 comments of Michael Lucht

Hi, this seems to work for me: ```html /// App.svelte import Dialog_ from 'smelte/src/components/Dialog'; import { Button, DatePicker } from 'smelte/src'; export let name: string; let value=false {value=true}}>Open Dialog {value=false}}>Close...

- If you want to change eg. the speed of the Switch component, you can use: ```javascript s.replace("duration-100","duration-1000")}/> ``` - for global changes you can adjust the [tailwind theme](https://tailwindcss.com/docs/theme) in...

Sounds a bit like the React way of doing things, where the Component is completely controlled by its props. How about this: ```javascript import {Switch} from 'smelte/src'; let checked=false let...

Hi, useTransform returns a store. You can use auto subscription ($ before background): $: console.log("Background:", $background)

Hi, It is true that the progress has been slow on this project recently, but it's is still active. So far I have been mostly working alone on the project....

Hi, looks nice so far. I would not try to use 'layout' effects to transform the inner boxes, here is a REPL: https://svelte.dev/repl/1d8ea18369a646bba4e05a22a7b276a0?version=3.38.2

The percentage is tied to the scroll value of the body container. If you move the whole page up and down, it should change. Rotation is tied to vertical scroll...

I believe the issue it's that the scale correction (https://svelte-motion.gradientdescent.de/layout) is not working correctly at the moment. I try to fix but it is tricky.

Thank you for the feedback! Now that the library approaches v. 1.0, the page could definitely get some reordering and polishing. I'll look into it when time permits.

I started a new sveltekit app from the template today. I tried basic motion and some layout effects and both worked. Sveltekit version is "1.0.0-next.483", but I also downgraded to...