sprintify-ui 0.6.30 → 0.6.31

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.
@@ -45233,14 +45233,14 @@ const FB = 100, t4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.define
45233
45233
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
45234
45234
  formatQueryString(n) {
45235
45235
  return Lf.stringify(n, {
45236
- arrayFormat: "comma",
45237
- encode: !0
45236
+ //arrayFormat: 'comma',
45237
+ //encode: true ? true : false,
45238
45238
  });
45239
45239
  },
45240
45240
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
45241
45241
  parseQueryString(n) {
45242
45242
  return Lf.parse(n, {
45243
- comma: !0
45243
+ //comma: true,
45244
45244
  });
45245
45245
  },
45246
45246
  countries: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.30",
3
+ "version": "0.6.31",
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
@@ -40,14 +40,14 @@ const config = {
40
40
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
41
41
  formatQueryString(params: Record<string, any>) {
42
42
  return QueryString.stringify(params, {
43
- arrayFormat: 'comma',
44
- encode: import.meta.env.PROD ? true : false,
43
+ //arrayFormat: 'comma',
44
+ //encode: import.meta.env.PROD ? true : false,
45
45
  });
46
46
  },
47
47
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
48
48
  parseQueryString(params: string): Record<string, any> {
49
49
  return QueryString.parse(params, {
50
- comma: true,
50
+ //comma: true,
51
51
  });
52
52
  },
53
53
  countries: [] as Country[],