Skip to content

Releases: roberthgnz/buzz-notify

v2.5.6

09 Oct 05:51
Compare
Choose a tag to compare

v2.5.0

16 Jul 11:31
Compare
Choose a tag to compare

Core Changes

Now the data-attribute is used to define the notification container:

<div id="notify"></div> // <-- Before 2.5.0
<div data-notify></div> // <-- After 2.5.0

Define global options for all notifications.

<div 
  data-notify
  data-notify-type="warning" 
  data-notify-position="bottom-center"
  data-notify-transition="bounce" 
  data-notify-duration="2000">
</div>

Improvements

Added info style for notifications

Full Changelog: v2.4.5...v2.5.0

v2.4.1

27 Oct 08:08
Compare
Choose a tag to compare

Full Changelog: v2.3.3...v2.4.1

v2.3.1

16 Oct 11:45
Compare
Choose a tag to compare

Full Changelog: v2.2.4...v2.3.1

v2.1.6

15 Oct 21:55
Compare
Choose a tag to compare

What's Changed

  • fix: eslint fixed and the project refactored according to its rules by @Krausso in #16
  • docs: add Krausso as a contributor for code, maintenance by @allcontributors in #17

New Contributors

Full Changelog: v2.1.5...v2.1.6

v2.1.0

07 Oct 10:11
Compare
Choose a tag to compare

Full Changelog: v2.0.2...v2.1.0

v2.0.0

06 Oct 14:23
Compare
Choose a tag to compare

Full Changelog: v1.7.4...v2.0.0

v1.7.1

06 Oct 11:10
Compare
Choose a tag to compare

Full Changelog: v1.8.0...v1.7.1

v1.7.4

06 Oct 11:47
Compare
Choose a tag to compare

Full Changelog: v1.7.3...v1.7.4

v1.6.0

04 Oct 17:56
Compare
Choose a tag to compare

Improvements

Three new transition animations.

  • fade
  • bounce
  • slide-blurred

You can use it by adding the option transition

Changes

Now the styles come separately and you will have to use a new import:

import Notify from '@reliutg/buzz-notify'
import '@reliutg/buzz-notify/css/index.css'