@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.
@@ -3942,6 +3942,15 @@ var Node = class _Node {
3942
3942
  if (m) {
3943
3943
  params[name] = m[0];
3944
3944
  this.#pushHandlerSets(handlerSets, child, method, node.#params, params);
3945
+ if (m[0].length === restPathString.length && child.#children["*"]) {
3946
+ this.#pushHandlerSets(
3947
+ handlerSets,
3948
+ child.#children["*"],
3949
+ method,
3950
+ node.#params,
3951
+ params
3952
+ );
3953
+ }
3945
3954
  if (hasChildren(child.#children)) {
3946
3955
  child.#params = params;
3947
3956
  const componentCount = m[0].match(/\//)?.length ?? 0;