@authhero/widget 0.34.8 → 0.34.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.
package/dist/esm/index.js CHANGED
@@ -3940,6 +3940,15 @@ var Node = class _Node {
3940
3940
  if (m) {
3941
3941
  params[name] = m[0];
3942
3942
  this.#pushHandlerSets(handlerSets, child, method, node.#params, params);
3943
+ if (m[0].length === restPathString.length && child.#children["*"]) {
3944
+ this.#pushHandlerSets(
3945
+ handlerSets,
3946
+ child.#children["*"],
3947
+ method,
3948
+ node.#params,
3949
+ params
3950
+ );
3951
+ }
3943
3952
  if (hasChildren(child.#children)) {
3944
3953
  child.#params = params;
3945
3954
  const componentCount = m[0].match(/\//)?.length ?? 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authhero/widget",
3
- "version": "0.34.8",
3
+ "version": "0.34.9",
4
4
  "description": "Server-Driven UI widget for AuthHero authentication flows",
5
5
  "repository": {
6
6
  "type": "git",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "country-list": "^2.4.1",
41
- "@authhero/adapter-interfaces": "3.8.0"
41
+ "@authhero/adapter-interfaces": "3.9.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@hono/node-server": "^1.19.14",