sprintify-ui 0.6.29 → 0.6.30
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/sprintify-ui.es.js +3 -1
- package/package.json +1 -1
- package/src/index.ts +3 -1
package/dist/sprintify-ui.es.js
CHANGED
|
@@ -45239,7 +45239,9 @@ const FB = 100, t4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.define
|
|
|
45239
45239
|
},
|
|
45240
45240
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
45241
45241
|
parseQueryString(n) {
|
|
45242
|
-
return Lf.parse(n
|
|
45242
|
+
return Lf.parse(n, {
|
|
45243
|
+
comma: !0
|
|
45244
|
+
});
|
|
45243
45245
|
},
|
|
45244
45246
|
countries: [],
|
|
45245
45247
|
regions: []
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -46,7 +46,9 @@ const config = {
|
|
|
46
46
|
},
|
|
47
47
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
48
48
|
parseQueryString(params: string): Record<string, any> {
|
|
49
|
-
return QueryString.parse(params
|
|
49
|
+
return QueryString.parse(params, {
|
|
50
|
+
comma: true,
|
|
51
|
+
});
|
|
50
52
|
},
|
|
51
53
|
countries: [] as Country[],
|
|
52
54
|
regions: [] as Region[],
|