@base-framework/base 3.7.72 → 3.7.73
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.
|
@@ -301,9 +301,12 @@ export class Router {
|
|
|
301
301
|
* This will select the route.
|
|
302
302
|
*
|
|
303
303
|
* @param {object} route
|
|
304
|
+
* @param {boolean} [isFallback] - when true, this selection is a
|
|
305
|
+
* switch-group fallback (no route in the group actually matched
|
|
306
|
+
* the current path) and must not emit a scroll intent.
|
|
304
307
|
* @returns {void}
|
|
305
308
|
*/
|
|
306
|
-
select(route: object): void;
|
|
309
|
+
select(route: object, isFallback?: boolean): void;
|
|
307
310
|
/**
|
|
308
311
|
* This will apply the collected scroll intent after all
|
|
309
312
|
* routes and switches have been processed.
|