@pjediny/react-notification
Advanced tools
Comparing version 0.0.4 to 0.0.5
(function (global, factory) { | ||
if (typeof define === "function" && define.amd) { | ||
define(['exports', 'react', 'prop-types', 'redux', 'react-redux', './../Notifications.jsx', './../actions/notification.js', 'lodash'], factory); | ||
define(['exports', 'react', 'prop-types', 'redux', 'react-redux', './../Notifications', './../actions/notification', 'lodash'], factory); | ||
} else if (typeof exports !== "undefined") { | ||
factory(exports, require('react'), require('prop-types'), require('redux'), require('react-redux'), require('./../Notifications.jsx'), require('./../actions/notification.js'), require('lodash')); | ||
factory(exports, require('react'), require('prop-types'), require('redux'), require('react-redux'), require('./../Notifications'), require('./../actions/notification'), require('lodash')); | ||
} else { | ||
@@ -7,0 +7,0 @@ var mod = { |
(function (global, factory) { | ||
if (typeof define === "function" && define.amd) { | ||
define(['exports', './../utils/redux.js', './initState.js', './../types/notification'], factory); | ||
define(['exports', './../utils/redux', './initState', './../types/notification'], factory); | ||
} else if (typeof exports !== "undefined") { | ||
factory(exports, require('./../utils/redux.js'), require('./initState.js'), require('./../types/notification')); | ||
factory(exports, require('./../utils/redux'), require('./initState'), require('./../types/notification')); | ||
} else { | ||
@@ -7,0 +7,0 @@ var mod = { |
{ | ||
"name": "@pjediny/react-notification", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "React redux notification", | ||
@@ -5,0 +5,0 @@ "author": "Pavol Jediny", |
@@ -5,4 +5,4 @@ import React, { Component } from 'react'; | ||
import { connect } from 'react-redux'; | ||
import Notifications from './../Notifications.jsx'; | ||
import { removeNotification } from './../actions/notification.js'; | ||
import Notifications from './../Notifications'; | ||
import { removeNotification } from './../actions/notification'; | ||
import _ from 'lodash'; | ||
@@ -9,0 +9,0 @@ |
@@ -1,3 +0,3 @@ | ||
import { createReducer } from './../utils/redux.js'; | ||
import initState from './initState.js'; | ||
import { createReducer } from './../utils/redux'; | ||
import initState from './initState'; | ||
import notificationTypes from './../types/notification'; | ||
@@ -4,0 +4,0 @@ |
44332