svelte-toast icon indicating copy to clipboard operation
svelte-toast copied to clipboard

Simple elegant toast notifications

Results 33 svelte-toast issues
Sort by recently updated
recently updated
newest added

system: Version: 1.77.3 (Universal) Commit: 704ed70d4fd1c6bd6342c436f1ede30d1cff4710 Date: 2023-04-12T09:19:37.325Z Electron: 19.1.11 Chromium: 102.0.5005.196 Node.js: 16.14.2 V8: 10.2.154.26-electron.0 OS: Darwin arm64 22.6.0 Sandboxed: No

I'd like to play an audio fragment if a new toast gets shown, and while I could add a sound effect before I call `toast.push` or make a wrapper function,...

uppon update to svelte kit 2.0, this not working any more. code ```js toast.push({ component: { src: SuccesToast, props: { header: 'Successfully Saved!', detail: 'Database is backup' } } })...

```js const id = toast.push('message', {duration: 90000}); toast.set(id, {msg: 'another', duration: 3000}); ``` Hello. The code above must change the durations of the toast, but it does not. As a...

enhancement

Rendering un-sanitised html via `@html` is a potential xss (cross site scripting) vulnerability if that html is provided by a user. Consider removing support of html toast messages in favour...

enhancement

This is a work-in-progress. Some of the big items are: - [ ] swipeable toasts - [ ] decouple toast item view and logic - [ ] asyncable `onpop()` -...

Hello, Here is a PR to add an "onClick" feature, without using the Rich HTML options

Hi, I wanted to use this toast package, but because I'm using PicoCSS, there's issue where the main styling leaked into this package. Is there a way to make sure...

Hello, I was hoping to use this library but to re-style the component using a class based approach, a la TailwindCSS. From the docs I was unsure how to go...

First, congratulations for this great utility! It's the kind of thing we all have to do manually sooner or later, but here you have something robust and that works for...

enhancement