soft-decay

Results 10 comments of soft-decay
trafficstars

I was wondering if you were planning on including typescript support in v4 or rather do a v4 release while working on typescript support in a separate branch?

I was browsing the Svelte issues and actually, this is not a bug: https://github.com/sveltejs/svelte/issues/5810 If a developer wants to put `` in a string literal or comment, it has to...

@Graphmaxer You've mentioned keeping the documentation in the `.svelte` files using `sveltedoc-parser`, but it seems to me the best solution in the long run would be to migrate the components...

@TheComputerM TL; DR I wanted 1 but I think 2 would work well in the meantime. I've encountered a few problems while experimenting. 1. `sveltedoc-parser` does not support typescript inside...

So I worked on a declaration (d.ts) generator and I have a first working draft. I would like some input on how to improve it. Here's how it plugs into...

For sure I was not expecting this to be a permanent solution, just a way to reduce maintenance/effort on the typings in the short term. The new `SvelteComponentTyped` is a...

From what I tested, `SvelteComponentTyped` works out of the box in vscode. It seems like the only requirement is to update dependencies to `"svelte": "^3.31.0"` (both dev and peer). The...

- @Graphmaxer Thanks. I did not see that there was a way to set defaults in the generics. Can you link me to what you're referring to? - I think...

@Graphmaxer Are you referring to the 3rd generic param? That would be for slots, and the default keyword here refers to the default slot. You can also see it in...

@Graphmaxer I see what you're saying, but my understanding is that it refers to the *default slot*, that is, the unnamed slot. For example : ```typescript import { SvelteComponentTyped }...