All Versions
16
Latest Version
Avg Release Cycle
18 days
Latest Release
1500 days ago

Changelog History
Page 2

  • v3.2.1 Changes

    July 19, 2019

    v3.2.1

    • v3.2.0 Accidentally published a Non-Minified Build. v3.2.1 fixes this
  • v3.2.0 Changes

    July 19, 2019

    ๐Ÿ‘ JSX Support:

    • Prop types fix when using React node instead of a text message.
    • ๐Ÿ“š JSX Usage added in the documentation.
  • v3.1.0 Changes

    June 15, 2019

    Ability to hide the toast immediately on click. hide function passed as a param in onClick.

    cogoToast.success('This is a success message.', { onClick: (hide) =\> { hide(); }, });
    
  • v3.0.0 Changes

    June 14, 2019

    ๐Ÿšš Major internal rewrite to remove ReactDOMServer dependency.

    ๐Ÿ‘ Using react hooks internally, so support for React versions before hooks is now dropped. Use v2.0.1 if you want to use this library in versions before [email protected] (pre-hooks)

    ๐Ÿ’ฅ Breaking:

    • icon option changed to renderIcon, where you can pass a render function instead of a node. (Useful for Lazy Rendering)
    • ๐Ÿšš Export for create function removed. cogoToast() works like create did before.
  • v2.0.1 Changes

    May 28, 2019
    • ๐Ÿ›  Fix for top level typings declaration
  • v2.0.0 Changes

    May 28, 2019

    ๐Ÿ’… Custom styling is now supported. Just extend the CSS classes to specify your own styles. For all class names, refer to /src/styles.css

    Typescript typings added. Shout out to @sebastien-p

    ๐Ÿ’ฅ Breaking

    • ๐Ÿ’… CSS Classes have been changed, so if you extended the old class names, your styling may break. Refer to /src/styles.css for the new class names.