react-notification
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "react-notification", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Snackbar style notification component for React.", | ||
@@ -5,0 +5,0 @@ "main": "web_modules/notification.js", |
@@ -17,3 +17,3 @@ # react-notification [![npm version](https://badge.fury.io/js/react-notification.svg)](http://badge.fury.io/js/react-notification) [![Dependency Status](https://david-dm.org/pburtchaell/react-classes.svg)](https://david-dm.org/pburtchaell/react-notification) | ||
``` | ||
<Notfication | ||
<Notification | ||
message={string} | ||
@@ -64,4 +64,4 @@ action={string} | ||
```html | ||
<div class="notficiation-bar"> | ||
<div class="notfication-bar-wrapper" onClick={this.props.onClick}> | ||
<div class="notification-bar"> | ||
<div class="notification-bar-wrapper" onClick={this.props.onClick}> | ||
<span class="notification-bar-message">{this.props.message}</span> | ||
@@ -68,0 +68,0 @@ <span class="notification-bar-action">{this.props.action}</span> |
@@ -128,3 +128,3 @@ var React = require('react'); | ||
return ( | ||
<div className="notificiation-bar" style={this.getBarStyles()}> | ||
<div className="notification-bar" style={this.getBarStyles()}> | ||
<div className="notification-bar-wrapper" onClick={this.handleClick}> | ||
@@ -131,0 +131,0 @@ <span className="notification-bar-message">{this.props.message}</span> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30850