Svelte component
$ npm i -S @tadashi/svelte-notification
property | type | required | default | description |
---|---|---|---|---|
mode* | Enums | no | normal | box type |
message | String | no | - | message inside box |
lifetime | Number | no | 0 | autodestroy in seconds |
The mode
can be:
- normal
- info
- success || ok
- warning || warn
- danger || error
vars | default |
---|---|
--tadashi_svelte_notifications_width | 270px |
--tadashi_svelte_notifications_margin | 0.9em |
--tadashi_svelte_notifications_zindex | 1001 |
- | - |
--tadashi_svelte_notification_margin | 0 0 0.9em |
--tadashi_svelte_notification_border_radius | 3px |
--tadashi_svelte_notification_box_shadow | 0 4px 10px hsl(0deg 0% 0% / 10%) |
--tadashi_svelte_notification__content_padding | 0.9em |
--tadashi_svelte_notification__btn_font_size | 1.5em |
--tadashi_svelte_notification__btn_font_family | monospace |
--tadashi_svelte_notification__btn_after_content | ✗ |
--tadashi_svelte_notification_background | hsl(0deg 100% 100% / 90%) |
--tadashi_svelte_notification_color | hsl(0deg 0% 0%) |
--tadashi_svelte_notification__success_background | hsl(149deg 96% 42% / 90%) |
--tadashi_svelte_notification__success_color | hsl(0deg 100% 100%) |
--tadashi_svelte_notification__warning_background | hsl(44deg 100% 50% / 90%) |
--tadashi_svelte_notification__warning_color | hsl(0deg 0% 0%) |
--tadashi_svelte_notification__danger_background | hsl(359deg 88% 64% / 90%) |
--tadashi_svelte_notification__danger_color | hsl(0deg 100% 100%) |
--tadashi_svelte_notification__info_background | hsl(213deg 56% 47% / 90%) |
--tadashi_svelte_notification__info_color | hsl(0deg 100% 100%) |
You can see an example here: https://svelte.dev/repl/d11f78c338f543c2b9c4ec529009dd4e
<script>
import {Notifications, acts} from '@tadashi/svelte-notification'
let triggers = [
{mode: 'normal', message: 'Nothing to say...', lifetime: 2},
{mode: 'success', message: '✓ Nice!'},
{mode: 'info', message: 'ℹ Leve a japona'},
{mode: 'warn', message: '⚠ Já chegou o disco voador!'},
{mode: 'danger', message: '☠ Alta tensão'},
]
</script>
{#each triggers as trigger}
<button
type="button"
on:click={() => {
acts.add(trigger)
}}>Add {trigger.mode}</button
>
{/each}
<Notifications />
BTC: bc1q7famhuj5f25n6qvlm3sssnymk2qpxrfwpyq7g4
MIT © Thiago Lagden