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

Changelog History
Page 1

  • v4.2.3 Changes

    February 19, 2020

    4.2.3

    • Fix: install error at 4.2.2. #53
  • v4.2.2 Changes

    February 18, 2020

    4.2.2

    • Fix: useEffect not cancelling timeouts. #49
    • Switched from pnpm to yarn to manage package dependencies - Better community support.
  • v4.2.1 Changes

    January 10, 2020

    4.2.1

    • Fix: Heading and renderIcon not being passed to the toast component
  • v4.2.0 Changes

    January 08, 2020
    • ๐Ÿ”จ Refactored entire codebase to TypeScript.
    • ๐Ÿ“ฆ Switched from yarn to pnpm to manage package dependencies.
    • Bundle Size reduced to 4 KB
    • ๐Ÿ“ฆ No change to the package API or features. Everything should work as before.
  • v4.2.0-beta.0 Changes

    January 08, 2020
    • ๐Ÿ”จ Refactored entire codebase to TypeScript.
    • ๐Ÿ“ฆ Switched from yarn to pnpm to manage package dependencies.
    • Bundle Size reduced to 4 KB
    • ๐Ÿ“ฆ No change to the package API or features. Everything should work as before.
  • v4.1.3 Changes

    December 19, 2019

    v4.1.3

  • v4.1.1 Changes

    September 26, 2019

    v4.1.1

    • โž• Added missing types for 4.0, role, and toastContainerID. #35
  • v4.1.0 Changes

    September 25, 2019

    4.1.0

    • Added a new option toastContainerID. This enables specifying the id of the parent dom element, to which the toast is mounted as a child. #27
  • v4.0.0 Changes

    September 24, 2019

    4.0.0

    ๐Ÿ’ฅ Breaking Change

    - Hide the toast on Click
    

    Now:

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

    Before:

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

    ๐Ÿ‘€ Toast now always returns a promise, as opposed to before. See issue #28

    - 
    

    ๐Ÿ”ง Accessibility - Added a role of status by default. Configurable via options. Thanks @balazsorban44.

  • v3.2.2 Changes

    September 13, 2019

    v3.2.2

    • Classnames added to each type of toast, to enable css overrides