2.1.8 • Published 2 days ago

@igloo-ui/toaster v2.1.8

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 days ago

Toaster

The Toaster component is a non-disruptive message that appears at the top of the viewport to provide quick, at-a-glance feedback on the outcome of an action.

Installation

To install @igloo-ui/toaster in your project, you will need to run the following command using npm:

npm install @igloo-ui/toaster

If you prefer Yarn, use the following command instead:

yarn add @igloo-ui/toaster

Usage

Displaying a toast

Then to use the component in your code just import it!

import Toaster, { toast } from '@igloo-ui/toaster';
import Button from '@igloo-ui/button';

const App = () => {
  return (
    <div>
      <Button onClick={() => toast.success('Successfully toasted!')}>
        Success
      </Button>

      <Toaster />
    </div>
  );
};

Displaying multiple toasts with custom duration

Then to use the component in your code just import it!

import Toaster, { toast } from '@igloo-ui/toaster';
import Button from '@igloo-ui/button';

const App = () => {
  return (
    <div>
      <Button onClick={() => toast.success('Successfully toasted!', {duration: 6000})}>
        Success
      </Button>
      <Button
        appearance="secondary"
        onClick={() => toast.error("This didn't work!", {duration: 3000}))}
      >
        Error
      </Button>

      <Toaster />
    </div>
  );
};
2.1.8

2 days ago

2.1.7

17 days ago

2.1.6

24 days ago

2.1.5

2 months ago

2.1.4

2 months ago

2.1.3

2 months ago

2.1.2

2 months ago

2.1.1

2 months ago

2.1.0

3 months ago

2.0.6

4 months ago

2.0.5

5 months ago

2.0.4

5 months ago

2.0.3

6 months ago

2.0.2

9 months ago

2.0.1

10 months ago

2.0.0

11 months ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.1

2 years ago