File tree Expand file tree Collapse file tree 4 files changed +29
-17
lines changed
Expand file tree Collapse file tree 4 files changed +29
-17
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## 0.2.4 - Oct 12, 2015
4+
5+ ** Implemented enhancements:**
6+
7+ * Added React and ReactDOM as peerDependencies and devDependencies to help on component development.
8+
39## 0.2.3 - Oct 11, 2015
410
511** Implemented enhancements:**
612
713* Possibility to remove notification by uid.
814* Added onAdd property to notification object.
9- * Improved styles
15+ * Improved styles.
1016
1117## 0.2.2 - Oct 10, 2015
1218
1824
1925** Implemented enhancements:**
2026
21- * Improved function to get specific style based on element
22- * Improved notification styles
27+ * Improved function to get specific style based on element.
28+ * Improved notification styles.
2329* Added ESLint and linted all src files.
2430
2531## 0.2.0 - Oct 9, 2015
3238
3339** Implemented enhancements, merged pull requrests:**
3440
35- * Fix dismissible false to not require an action
36- * Added CHANGELOG and LICENSE files
41+ * Fix dismissible false to not require an action.
42+ * Added CHANGELOG and LICENSE files.
3743
3844## 0.1.15 - Oct 1, 2015
3945
4046** Implemented enhancements:**
4147
42- * ` addNotification() ` method now returns the notification object
43- * Added method ` removeNotification() ` to remove a notification programmatically based on returned notification object
48+ * ` addNotification() ` method now returns the notification object.
49+ * Added method ` removeNotification() ` to remove a notification programmatically based on returned notification object.
Original file line number Diff line number Diff line change 11var React = require ( 'react' ) ;
22var ReactDOM = require ( 'react-dom' ) ;
3-
4- var NotificationSystem = require ( 'react-notification-system' ) ;
3+ var NotificationSystem = require ( '../../dist/notification-system.js' ) ;
54
65var NotificationSystemExample = React . createClass ( {
76
Original file line number Diff line number Diff line change 11{
22 "name" : " react-notification-system" ,
3- "version" : " 0.2.3 " ,
3+ "version" : " 0.2.4 " ,
44 "description" : " A React Notification System fully customized" ,
55 "main" : " dist/notification-system.js" ,
66 "scripts" : {
3131 "dependencies" : {
3232 "object-assign" : " ^4.0.1"
3333 },
34+ "peerDependencies" : {
35+ "react" : " ^0.14.0" ,
36+ "react-dom" : " ^0.14.0"
37+ },
3438 "devDependencies" : {
3539 "eslint" : " ^1.6.0" ,
3640 "eslint-config-airbnb" : " ^0.1.0" ,
3741 "eslint-plugin-react" : " ^3.5.1" ,
42+ "react" : " ^0.14.0" ,
43+ "react-dom" : " ^0.14.0" ,
3844 "react-tools" : " ^0.13.2" ,
3945 "watch" : " ^0.16.0"
4046 }
You can’t perform that action at this time.
0 commit comments