diff --git a/src/immutable.js b/src/immutable.js index e9808f5e..2e1b8f79 100644 --- a/src/immutable.js +++ b/src/immutable.js @@ -3,7 +3,7 @@ import createConnectRouter from "./reducer" import createSelectors from "./selectors" import immutableStructure from './structure/immutable' -export { LOCATION_CHANGE, CALL_HISTORY_METHOD, push, replace, go, goBack, goForward, routerActions } from "./actions" +export { LOCATION_CHANGE, CALL_HISTORY_METHOD, onLocationChanged, push, replace, go, goBack, goForward, routerActions } from "./actions" export { default as routerMiddleware } from "./middleware" export const ConnectedRouter = /*#__PURE__*/ createConnectedRouter(immutableStructure) diff --git a/src/index.js b/src/index.js index 8cf45aea..c31b8181 100644 --- a/src/index.js +++ b/src/index.js @@ -3,7 +3,7 @@ import createConnectRouter from "./reducer" import createSelectors from "./selectors" import plainStructure from "./structure/plain" -export { LOCATION_CHANGE, CALL_HISTORY_METHOD, push, replace, go, goBack, goForward, routerActions } from "./actions" +export { LOCATION_CHANGE, CALL_HISTORY_METHOD, onLocationChanged, push, replace, go, goBack, goForward, routerActions } from "./actions" export { default as routerMiddleware } from "./middleware" export const ConnectedRouter = /*#__PURE__*/ createConnectedRouter(plainStructure) diff --git a/src/seamless-immutable.js b/src/seamless-immutable.js index 40c0d30e..c62b7406 100644 --- a/src/seamless-immutable.js +++ b/src/seamless-immutable.js @@ -3,7 +3,7 @@ import createConnectRouter from "./reducer" import createSelectors from "./selectors" import immutableStructure from './structure/seamless-immutable' -export { LOCATION_CHANGE, CALL_HISTORY_METHOD, push, replace, go, goBack, goForward, routerActions } from "./actions" +export { LOCATION_CHANGE, CALL_HISTORY_METHOD, onLocationChanged, push, replace, go, goBack, goForward, routerActions } from "./actions" export { default as routerMiddleware } from "./middleware" export const ConnectedRouter = /*#__PURE__*/ createConnectedRouter(immutableStructure)