This commit is contained in:
Luiz Silva 2025-09-26 09:45:46 -03:00
parent 7dd417a9fb
commit 556ea198e8
4 changed files with 6 additions and 6 deletions

View file

@ -94,13 +94,13 @@ class TipagemRotas {
typeof window !== "undefined" ? window.location.href : "http://localhost"
);
const query = url.searchParams;
const queryObj = Object.fromEntries(query.entries());
let queryObj = Object.fromEntries(query.entries());
const hash = url.hash;
if (hash) {
const hashObj = Object.fromEntries(
new URLSearchParams(hash.slice(1)).entries()
);
return { ...queryObj, ...hashObj };
queryObj = { ...queryObj, ...hashObj };
}
for (const chave in queryObj) {
try {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "p-comuns",
"version": "0.237.0",
"version": "0.242.0",
"description": "",
"main": "./dist-back/index.js",
"module": "./dist-front/index.mjs",

View file

@ -115,7 +115,7 @@ export class TipagemRotas<T extends { [q: string]: any }> {
: "http://localhost",
)
const query = url.searchParams
const queryObj = Object.fromEntries(query.entries())
let queryObj = Object.fromEntries(query.entries())
// pegar hash
const hash = url.hash
@ -123,7 +123,7 @@ export class TipagemRotas<T extends { [q: string]: any }> {
const hashObj = Object.fromEntries(
new URLSearchParams(hash.slice(1)).entries(),
)
return { ...queryObj, ...hashObj } as T
queryObj = { ...queryObj, ...hashObj } as T
}
for (const chave in queryObj) {