Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: segmentio/evergreen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7deeaaeebc05e58e0906f2b5fdfecb880cb74d3c
Choose a base ref
..
head repository: segmentio/evergreen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fb4bdfd36a62f099fcfc2879118c6010446e2ddd
Choose a head ref
Showing with 14 additions and 10 deletions.
  1. +1 −1 docs/package.json
  2. +4 −4 docs/yarn.lock
  3. +8 −4 index.d.ts
  4. +1 −1 package.json
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
"@segment/consent-manager": "^5.1.0",
"@types/react-github-button": "^0.1.0",
"@types/react-syntax-highlighter": "^13.5.0",
"evergreen-ui": "7.1.3",
"evergreen-ui": "7.1.4",
"lz-string": "^1.4.4",
"next": "latest",
"next-mdx-remote": "^2.1.3",
8 changes: 4 additions & 4 deletions docs/yarn.lock
Original file line number Diff line number Diff line change
@@ -2342,10 +2342,10 @@ esutils@^2.0.2:
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==

evergreen-ui@7.1.3:
version "7.1.3"
resolved "https://registry.yarnpkg.com/evergreen-ui/-/evergreen-ui-7.1.3.tgz#e553e4c070ba60bdfa55cdbf354a1814180530e6"
integrity sha512-udCFn0IcNHLGF17cG6VD1GTUUpnTOTnoMhbwVKfPObmTP9hQEt6vGmpD3wiORdWmhvl5pqkfEVU8pG+YmKDMIA==
evergreen-ui@7.1.4:
version "7.1.4"
resolved "https://registry.yarnpkg.com/evergreen-ui/-/evergreen-ui-7.1.4.tgz#818ff74d953504ab36b35b7243680f9dfda1c0c1"
integrity sha512-OgFGNGK+4PajRYnF/+qrTgugMD0eOYni+abRqkpfjZuZPRpN18g/kUSBQltfdjibF9yj7D1A7SJFkLnG/nRlhQ==
dependencies:
"@babel/runtime" "^7.1.2"
"@segment/react-tiny-virtual-list" "^2.2.1"
12 changes: 8 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -2822,19 +2822,19 @@ export const toaster: {
/**
* Opens a Toast with an intent of none.
*/
notify: (title: string, settings?: ToasterSettings) => void
notify: (title: React.ReactNode, settings?: ToasterSettings) => void
/**
* Opens a Toast with an intent of success.
*/
success: (title: string, settings?: ToasterSettings) => void
success: (title: React.ReactNode, settings?: ToasterSettings) => void
/**
* Opens a Toast with an intent of warning.
*/
warning: (title: string, settings?: ToasterSettings) => void
warning: (title: React.ReactNode, settings?: ToasterSettings) => void
/**
* Opens a Toast with an intent of danger.
*/
danger: (title: string, settings?: ToasterSettings) => void
danger: (title: React.ReactNode, settings?: ToasterSettings) => void
/**
* Closes all visible Toasts.
*/
@@ -2843,6 +2843,10 @@ export const toaster: {
* Returns all visible Toasts.
*/
getToasts: () => Toast[]
/**
* Removes toast with specific id
*/
remove: (id: string) => void
}

export interface OverlayProps
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evergreen-ui",
"version": "7.1.3",
"version": "7.1.4",
"description": "🌲 React UI Kit by Segment 🌲",
"contributors": [
"Jeroen Ransijn (https://jssr.design/)",