@trackunit/react-core-hooks 1.7.32 → 1.7.35

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/index.cjs.js CHANGED
@@ -144,7 +144,7 @@ const b64urlDecode = (s) => {
144
144
  * with proper Unicode character support (including Japanese, Chinese, etc.) and automatic
145
145
  * compression for better performance with large objects.
146
146
  *
147
- * @returns Object containing encode and decode callback functions
147
+ * @returns { { encode: (input: unknown) => string, decode: (str: string) => JSON | string } } Object containing encode and decode callback functions
148
148
  */
149
149
  const useCustomEncoding = () => {
150
150
  /**
package/index.esm.js CHANGED
@@ -142,7 +142,7 @@ const b64urlDecode = (s) => {
142
142
  * with proper Unicode character support (including Japanese, Chinese, etc.) and automatic
143
143
  * compression for better performance with large objects.
144
144
  *
145
- * @returns Object containing encode and decode callback functions
145
+ * @returns { { encode: (input: unknown) => string, decode: (str: string) => JSON | string } } Object containing encode and decode callback functions
146
146
  */
147
147
  const useCustomEncoding = () => {
148
148
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-core-hooks",
3
- "version": "1.7.32",
3
+ "version": "1.7.35",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -10,10 +10,10 @@
10
10
  "react": "19.0.0",
11
11
  "jest-fetch-mock": "^3.0.3",
12
12
  "zod": "^3.23.8",
13
- "@trackunit/react-core-contexts-api": "1.8.29",
14
- "@trackunit/iris-app-runtime-core": "1.8.29",
15
- "@trackunit/shared-utils": "1.9.27",
16
- "@trackunit/react-test-setup": "1.4.27",
13
+ "@trackunit/react-core-contexts-api": "1.8.32",
14
+ "@trackunit/iris-app-runtime-core": "1.8.32",
15
+ "@trackunit/shared-utils": "1.9.30",
16
+ "@trackunit/react-test-setup": "1.4.30",
17
17
  "fflate": "^0.8.2",
18
18
  "es-toolkit": "^1.39.10"
19
19
  },
@@ -5,7 +5,7 @@
5
5
  * with proper Unicode character support (including Japanese, Chinese, etc.) and automatic
6
6
  * compression for better performance with large objects.
7
7
  *
8
- * @returns Object containing encode and decode callback functions
8
+ * @returns { { encode: (input: unknown) => string, decode: (str: string) => JSON | string } } Object containing encode and decode callback functions
9
9
  */
10
10
  export declare const useCustomEncoding: () => {
11
11
  encode: (input: unknown) => string;