Jason Lee
Jason Lee
That's quite an unusual use-case - I haven't actually tested this tbh. AFAICT, sending a component message only works when developing in a Svelte environment, since Svelte requires to be...
Hey, if I'm understanding correctly, you're passing the `--toastContainer*` CSS vars through `options.theme`? TBH the `toastContainer*` vars weren't intended to be used like that. The docs should have been clearer...
Going to label this issue as an enhancement - the CSS vars should be refactored in `v1`.
Hey, you can try applying tailwind classes with [user-defined classes](https://github.com/zerodevx/svelte-toast#styling-with-user-defined-classes). The classes are applied to each toast item. YMMV though, because of CSS specificity. Generally I'll recommend using the exposed...
Yes, I noticed this too but I'm not sure if it's fixable. This happens when 2 or more toasts are removed at about the same time. `svelte-toast` actually delegates all...
Normally I'd rather let Svelte do the heavy lifting re animations and batching - but I guess it's possible to place `pop` requests into a rate-limiting queue. I'll test this...
Use the `marked-emoji` [extension](https://github.com/UziTech/marked-emoji). ```html ... import ZeroMd from 'https://cdn.jsdelivr.net/npm/zero-md@next' import { markedEmoji } from 'https://cdn.jsdelivr.net/npm/marked-emoji@1/src/index.js' import { Octokit } from 'https://esm.sh/@octokit/rest' const octokit = new Octokit() const res =...
Closing for now, feel free to reopen.
Thanks for the report - I should really look into supporting non-latin characters.
Marking this as an enhancement because slugification is in the remit of `markedjs`: https://marked.js.org/using_pro#renderer Might add first class support in a future release.