Comparing version 7.2.0 to 7.3.0
@@ -0,1 +1,14 @@ | ||
## v7.3.0 (2021-03-07) | ||
#### :rocket: Enhancement | ||
* [#321](https://github.com/tildeio/router.js/pull/321) Add `isIntermediate` flag to Transition ([@sly7-7](https://github.com/sly7-7)) | ||
#### :house: Internal | ||
* [#320](https://github.com/tildeio/router.js/pull/320) Remove testing for multiple platforms. ([@rwjblue](https://github.com/rwjblue)) | ||
#### Committers: 2 | ||
- Robert Jackson ([@rwjblue](https://github.com/rwjblue)) | ||
- Sylvain MINA ([@sly7-7](https://github.com/sly7-7)) | ||
## v7.2.0 (2021-03-07) | ||
@@ -2,0 +15,0 @@ |
@@ -170,2 +170,3 @@ "use strict"; | ||
let transition = new _transition.default(this, undefined, newState); | ||
transition.isIntermediate = true; | ||
this.toReadOnlyInfos(transition, newState); | ||
@@ -172,0 +173,0 @@ this.setupContexts(newState, transition); |
@@ -56,2 +56,3 @@ import { Promise } from 'rsvp'; | ||
_visibleQueryParams: Dict<unknown>; | ||
isIntermediate: boolean; | ||
/** | ||
@@ -58,0 +59,0 @@ In non-production builds, this function will return the stack that this Transition was |
@@ -56,2 +56,3 @@ "use strict"; | ||
this._visibleQueryParams = {}; | ||
this.isIntermediate = false; | ||
this[STATE_SYMBOL] = state || router.state; | ||
@@ -58,0 +59,0 @@ this.intent = intent; |
@@ -132,2 +132,3 @@ import RouteRecognizer from 'route-recognizer'; | ||
let transition = new InternalTransition(this, undefined, newState); | ||
transition.isIntermediate = true; | ||
this.toReadOnlyInfos(transition, newState); | ||
@@ -134,0 +135,0 @@ this.setupContexts(newState, transition); |
@@ -56,2 +56,3 @@ import { Promise } from 'rsvp'; | ||
_visibleQueryParams: Dict<unknown>; | ||
isIntermediate: boolean; | ||
/** | ||
@@ -58,0 +59,0 @@ In non-production builds, this function will return the stack that this Transition was |
@@ -37,2 +37,3 @@ import { Promise } from 'rsvp'; | ||
this._visibleQueryParams = {}; | ||
this.isIntermediate = false; | ||
this[STATE_SYMBOL] = state || router.state; | ||
@@ -39,0 +40,0 @@ this.intent = intent; |
{ | ||
"name": "router_js", | ||
"version": "7.2.0", | ||
"version": "7.3.0", | ||
"description": "A lightweight JavaScript library is built on top of route-recognizer and rsvp.js to provide an API for handling routes", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
356137
5225