File tree 4 files changed +29
-17
lines changed
4 files changed +29
-17
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
9
## 0.2.3 - Oct 11, 2015
4
10
5
11
** Implemented enhancements:**
6
12
7
13
* Possibility to remove notification by uid.
8
14
* Added onAdd property to notification object.
9
- * Improved styles
15
+ * Improved styles.
10
16
11
17
## 0.2.2 - Oct 10, 2015
12
18
18
24
19
25
** Implemented enhancements:**
20
26
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.
23
29
* Added ESLint and linted all src files.
24
30
25
31
## 0.2.0 - Oct 9, 2015
32
38
33
39
** Implemented enhancements, merged pull requrests:**
34
40
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.
37
43
38
44
## 0.1.15 - Oct 1, 2015
39
45
40
46
** Implemented enhancements:**
41
47
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 1
1
var React = require ( 'react' ) ;
2
2
var ReactDOM = require ( 'react-dom' ) ;
3
-
4
- var NotificationSystem = require ( 'react-notification-system' ) ;
3
+ var NotificationSystem = require ( '../../dist/notification-system.js' ) ;
5
4
6
5
var NotificationSystemExample = React . createClass ( {
7
6
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-notification-system" ,
3
- "version" : " 0.2.3 " ,
3
+ "version" : " 0.2.4 " ,
4
4
"description" : " A React Notification System fully customized" ,
5
5
"main" : " dist/notification-system.js" ,
6
6
"scripts" : {
31
31
"dependencies" : {
32
32
"object-assign" : " ^4.0.1"
33
33
},
34
+ "peerDependencies" : {
35
+ "react" : " ^0.14.0" ,
36
+ "react-dom" : " ^0.14.0"
37
+ },
34
38
"devDependencies" : {
35
39
"eslint" : " ^1.6.0" ,
36
40
"eslint-config-airbnb" : " ^0.1.0" ,
37
41
"eslint-plugin-react" : " ^3.5.1" ,
42
+ "react" : " ^0.14.0" ,
43
+ "react-dom" : " ^0.14.0" ,
38
44
"react-tools" : " ^0.13.2" ,
39
45
"watch" : " ^0.16.0"
40
46
}
You can’t perform that action at this time.
0 commit comments