All Versions
16
Latest Version
Avg Release Cycle
18 days
Latest Release
1885 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.2.3 Changes
February 19, 2020 -
v4.2.2 Changes
February 18, 20204.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, 20204.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.1 Changes
September 26, 2019v4.1.1
- โ Added missing types for 4.0, role, and toastContainerID. #35
-
v4.1.0 Changes
September 25, 20194.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
- Added a new option
-
v4.0.0 Changes
September 24, 20194.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, 2019v3.2.2
- Classnames added to each type of toast, to enable css overrides