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.
- package/dist/sprintify-ui.es.js +3 -3
- package/package.json +1 -1
- package/src/index.ts +3 -3
package/dist/sprintify-ui.es.js
CHANGED
|
@@ -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:
|
|
45237
|
-
encode:
|
|
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:
|
|
45243
|
+
//comma: true,
|
|
45244
45244
|
});
|
|
45245
45245
|
},
|
|
45246
45246
|
countries: [],
|
package/package.json
CHANGED
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[],
|