arc-ux 0.0.8 → 0.0.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/ArcUX.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arc-ux",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "A purely functional router for independently evaluating a path against a list of routes",
5
5
  "main": "src/ArcUX.js",
6
6
  "type": "module",
package/src/ArcUX.js CHANGED
@@ -104,6 +104,7 @@ class ArcUX {
104
104
 
105
105
  renderRoute(_route) {
106
106
  const routeData = this.#RouteRenderer.travel(_route)
107
+ this.setKeyVal('routeData', routeData);
107
108
  if (routeData.match) {
108
109
  return routeData.match;
109
110
  }