@breautek/router 4.1.0 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/router.js CHANGED
@@ -1019,7 +1019,7 @@ class TransitionSlide extends TransitionStrategy {
1019
1019
  }
1020
1020
 
1021
1021
  var name = "@breautek/router";
1022
- var version = "4.1.0";
1022
+ var version = "4.1.1";
1023
1023
  var description = "An alternate react router.";
1024
1024
  var main = "dist/router.js";
1025
1025
  var types = "dist/src/api.d.ts";
@@ -2,7 +2,7 @@ import * as React from 'react';
2
2
  import { View } from './View';
3
3
  import { RouteMatcher } from './RouteMatcher';
4
4
  import { RouterStrategy } from './RouterStrategy';
5
- import { TransitionStrategy } from 'TransitionStrategy';
5
+ import { TransitionStrategy } from './TransitionStrategy';
6
6
  export interface IRouteProps<T> {
7
7
  url: string;
8
8
  component: React.ComponentClass<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breautek/router",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "An alternate react router.",
5
5
  "main": "dist/router.js",
6
6
  "types": "dist/src/api.d.ts",
package/src/Route.tsx CHANGED
@@ -3,7 +3,7 @@ import * as React from 'react';
3
3
  import { View } from './View';
4
4
  import { RouteMatcher } from './RouteMatcher';
5
5
  import { RouterStrategy } from './RouterStrategy';
6
- import { TransitionStrategy } from 'TransitionStrategy';
6
+ import { TransitionStrategy } from './TransitionStrategy';
7
7
 
8
8
  export interface IRouteProps<T> {
9
9
  url: string;