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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.29",
3
+ "version": "0.6.30",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
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[],