@trackunit/react-core-hooks 0.2.24-alpha-307439490d.0 → 0.2.25

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.js CHANGED
@@ -63,8 +63,7 @@ const useGlobalSelection = () => {
63
63
  const GlobalSelectionProvider = (props) => jsx(GlobalSelectionContext.Provider, Object.assign({}, props));
64
64
 
65
65
  /**
66
- * A react hook for notifying host about location change
67
- *
66
+ * A react hook for notifying host about location changes
68
67
  */
69
68
  const useURLSynchronization = () => {
70
69
  const location = useLocation();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-core-hooks",
3
- "version": "0.2.24-alpha-307439490d.0",
3
+ "version": "0.2.25",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "module": "./index.js",
@@ -8,9 +8,9 @@
8
8
  "type": "module",
9
9
  "types": "./src/index.d.ts",
10
10
  "dependencies": {
11
- "@trackunit/react-core-contexts-api": "0.2.14-alpha-307439490d.0",
11
+ "@trackunit/react-core-contexts-api": "0.2.14",
12
12
  "react": "18.2.0",
13
- "@trackunit/iris-app-runtime-core": "0.3.15-alpha-307439490d.0",
13
+ "@trackunit/iris-app-runtime-core": "0.3.15",
14
14
  "react-router-dom": "6.4.5"
15
15
  },
16
16
  "peerDependencies": {}
@@ -1,5 +1,4 @@
1
1
  /**
2
- * A react hook for notifying host about location change
3
- *
2
+ * A react hook for notifying host about location changes
4
3
  */
5
4
  export declare const useURLSynchronization: () => void;