@xfe-repo/web-utils 1.3.6 → 1.3.7

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/tools.d.mts CHANGED
@@ -1,7 +1,9 @@
1
1
  import queryStringOrigin, { ParseOptions, ParsedQuery } from 'query-string';
2
+ export { ParseOptions, ParsedQuery } from 'query-string';
2
3
  export { debounce, throttle } from 'throttle-debounce';
3
4
 
4
5
  declare const queryString: typeof queryStringOrigin;
6
+
5
7
  declare function parseUrlQuery(options?: ParseOptions): queryStringOrigin.ParsedQuery<string>;
6
8
  declare function getUrlQuery(key: string): string | (string | null)[] | null | undefined;
7
9
  declare function setUrlQuery(queryJson: ParsedQuery<string | boolean | number>): void;
package/dist/tools.d.ts CHANGED
@@ -1,7 +1,9 @@
1
1
  import queryStringOrigin, { ParseOptions, ParsedQuery } from 'query-string';
2
+ export { ParseOptions, ParsedQuery } from 'query-string';
2
3
  export { debounce, throttle } from 'throttle-debounce';
3
4
 
4
5
  declare const queryString: typeof queryStringOrigin;
6
+
5
7
  declare function parseUrlQuery(options?: ParseOptions): queryStringOrigin.ParsedQuery<string>;
6
8
  declare function getUrlQuery(key: string): string | (string | null)[] | null | undefined;
7
9
  declare function setUrlQuery(queryJson: ParsedQuery<string | boolean | number>): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfe-repo/web-utils",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "sideEffects": false,
5
5
  "module": "dist/*.js",
6
6
  "types": "types/*.d.ts",
@@ -28,8 +28,8 @@
28
28
  "devDependencies": {
29
29
  "@types/js-cookie": "^3.0.5",
30
30
  "@types/node": "^20.10.3",
31
- "@xfe-repo/eslint-config": "0.0.5",
32
- "@xfe-repo/typescript-config": "0.0.6"
31
+ "@xfe-repo/typescript-config": "0.0.6",
32
+ "@xfe-repo/eslint-config": "0.0.5"
33
33
  },
34
34
  "publishConfig": {
35
35
  "registry": "https://registry.npmjs.org/"