@breautek/router 1.0.2 → 2.0.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/CHANGELOG.md +28 -0
- package/dist/router.js +7761 -3865
- package/dist/src/HashStrategy.d.ts +9 -8
- package/dist/src/Route.d.ts +8 -5
- package/dist/src/RouteMatcher.d.ts +2 -2
- package/dist/src/Router.d.ts +9 -9
- package/dist/src/RouterStrategy.d.ts +3 -4
- package/dist/src/TransitionSlide.d.ts +5 -5
- package/dist/src/URLParser.d.ts +4 -4
- package/dist/src/URLStrategy.d.ts +7 -8
- package/dist/src/View.d.ts +2 -3
- package/package.json +39 -34
- package/src/HashStrategy.ts +44 -32
- package/src/Route.tsx +25 -9
- package/src/RouteMatcher.ts +5 -5
- package/src/Router.tsx +41 -41
- package/src/RouterStrategy.ts +5 -6
- package/src/TransitionSlide.ts +12 -12
- package/src/URLParser.ts +11 -11
- package/src/URLStrategy.ts +26 -27
- package/src/View.tsx +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,36 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v2.0.1](https://github.com/breautek/router/compare/v2.0.0...v2.0.1)
|
|
8
|
+
|
|
9
|
+
- deproll [`f6dfe6e`](https://github.com/breautek/router/commit/f6dfe6e18b65baad905ac3cb109db5a3d11dc714)
|
|
10
|
+
|
|
11
|
+
#### [v2.0.0](https://github.com/breautek/router/compare/v2.0.0-beta.0...v2.0.0)
|
|
12
|
+
|
|
13
|
+
> 8 November 2021
|
|
14
|
+
|
|
15
|
+
- npm configs to assert official NPM use [`04bdd49`](https://github.com/breautek/router/commit/04bdd49886a000ee8d83f659b138c607864c276b)
|
|
16
|
+
|
|
17
|
+
#### [v2.0.0-beta.0](https://github.com/breautek/router/compare/v1.0.3...v2.0.0-beta.0)
|
|
18
|
+
|
|
19
|
+
> 8 November 2021
|
|
20
|
+
|
|
21
|
+
- deproll [`e58bf0c`](https://github.com/breautek/router/commit/e58bf0c419c9ca650e570aa5d37c936a5f77ccef)
|
|
22
|
+
- deproll [`e2bc5d9`](https://github.com/breautek/router/commit/e2bc5d9699388535c77597a07e2449c16aee1636)
|
|
23
|
+
- jest 27 upgrade [`b97265a`](https://github.com/breautek/router/commit/b97265a1944bf6199b55ff2a96e0c7bfd47ce9a8)
|
|
24
|
+
|
|
25
|
+
#### [v1.0.3](https://github.com/breautek/router/compare/v1.0.2...v1.0.3)
|
|
26
|
+
|
|
27
|
+
> 14 July 2021
|
|
28
|
+
|
|
29
|
+
- deproll [`d77cd49`](https://github.com/breautek/router/commit/d77cd493904ff598de29fe3e8b540faaf81e080c)
|
|
30
|
+
- deproll [`14382f2`](https://github.com/breautek/router/commit/14382f21d49746937cddd42c27c059f6548f73f6)
|
|
31
|
+
- fix transitions [`f2901ca`](https://github.com/breautek/router/commit/f2901ca6d63f6d56c304fe24dded64db5762234a)
|
|
32
|
+
|
|
7
33
|
#### [v1.0.2](https://github.com/breautek/router/compare/v1.0.1...v1.0.2)
|
|
8
34
|
|
|
35
|
+
> 24 May 2021
|
|
36
|
+
|
|
9
37
|
- deproll [`3a44627`](https://github.com/breautek/router/commit/3a4462783ea5e848de7fc8fb79974b9d5ce10929)
|
|
10
38
|
|
|
11
39
|
#### [v1.0.1](https://github.com/breautek/router/compare/v1.0.0...v1.0.1)
|