@inglorious/web 4.2.4 → 4.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inglorious/web",
3
- "version": "4.2.4",
3
+ "version": "4.3.0",
4
4
  "description": "A new web framework that leverages the power of the Inglorious Store combined with the performance and simplicity of lit-html.",
5
5
  "author": "IceOnFire <antony.mistretta@gmail.com> (https://ingloriouscoderz.it)",
6
6
  "license": "MIT",
@@ -73,7 +73,7 @@
73
73
  "d3-shape": "^3.2.0",
74
74
  "d3-time-format": "^4.1.0",
75
75
  "lit-html": "^3.3.1",
76
- "@inglorious/store": "9.5.3",
76
+ "@inglorious/store": "9.6.0",
77
77
  "@inglorious/utils": "3.7.3"
78
78
  },
79
79
  "devDependencies": {
@@ -116,6 +116,13 @@ export const router = {
116
116
  }
117
117
 
118
118
  updateRouter(entity, route)
119
+
120
+ api.notify("routeChange", {
121
+ route: entity.route,
122
+ params: entity.params,
123
+ query: entity.query,
124
+ path: entity.path,
125
+ })
119
126
  }
120
127
  },
121
128