Tall Toasts Versions Save

A Toast notification library for the Laravel TALL stack. You can push notifications from the backend or frontend to render customizable toasts with almost zero footprint on the published CSS/JS 🔥🚀

v2.1.0

1 month ago

What's Changed

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v2.0.1...v2.1.0

v2.0.1

7 months ago

Critical fix for rendering toasts, thanks @jacksontong

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v2.0.0...v2.0.1

v2.0.0

8 months ago

TLDR;

Added support for Livewire V3. Thanks @r2luna!

What's Changed

New Contributors

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v1.7.1...v2.0.0

v1.7.1

11 months ago

Bug Fixes

  • Fixed: JS Notification: no duration for danger #406

What's Changed

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v1.7.0...v1.7.1

v1.7.0

1 year ago

What's New

Added Feature: Per notification duration Please look at the readme for examples of adding duration and sticky behavior (toast won't disappear except if clicked).

What's Changed

New Contributors

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v1.6.0...v1.7.0

v1.6.0

1 year ago

What Changed

  • Support for Laravel 10
  • Minor fix for dark styled toast on mouse hover

New Contributors

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v1.5.1...v1.6.0

v1.5.1

1 year ago

What's Changed

  • Minor UI tweak to force toasts above tailwind's z-50 (toasts should always be above any UI as they offer temporary yet usually crucial information to the user that should not be hidden by other elements)
  • Update README by @jeffwhansen in https://github.com/usernotnull/tall-toasts/pull/216
  • Library Updates

New Contributors

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v1.5.0...v1.5.1

v1.5.0

1 year ago

What's Changed

  • Added support for RTL
  • Minor UI tweak for dark mode.

Dependency Updates

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v1.4.0...v1.5.0

v1.4.0

2 years ago

What's Changed

Added support for Laravel v9.x

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v1.3.0...v1.4.0

v1.3.0

2 years ago

What's Changed

Feature

debug method added which will also print the result in the console (silent in a production environment)

// JS
Toast.debug('I will NOT show in production! Locally, I will also log in console...', 'A Debug Message');
// PHP
toast()
    ->debug('I will NOT show in production! Locally, I will also log in console...', 'A Debug Message')
    ->push();

// debug also accepts objects as message
toast()
    ->debug(User::factory()->createOne()->only(['name', 'email']), 'A User Dump')
    ->push();

Full Changelog: https://github.com/usernotnull/tall-toasts/compare/v1.2.1...v1.3.0