@equinor/fusion-framework-react-module-signalr 4.0.0 → 4.0.1

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.
@@ -1,3 +1,14 @@
1
+ /**
2
+ * React integration for the Fusion SignalR module.
3
+ *
4
+ * Provides hooks for subscribing to SignalR hub topics from React components.
5
+ * Use {@link useTopic} for module-scoped access or {@link useProviderTopic}
6
+ * when injecting a provider explicitly.
7
+ *
8
+ * @see {@link enableSignalR} to enable the module in a configurator.
9
+ *
10
+ * @packageDocumentation
11
+ */
1
12
  export { useSignalRProvider as useProviderTopic } from './use-signalr-provider';
2
13
  export { useTopic } from './use-signalr';
3
14
  export { Topic, enableSignalR } from '@equinor/fusion-framework-module-signalr';
@@ -1 +1 @@
1
- export declare const version = "4.0.0";
1
+ export declare const version = "4.0.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-react-module-signalr",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "",
5
5
  "sideEffects": false,
6
6
  "main": "dist/esm/index.js",
@@ -23,18 +23,18 @@
23
23
  "directory": "packages/react/modules/signalr"
24
24
  },
25
25
  "dependencies": {
26
- "@equinor/fusion-framework-module-signalr": "^11.0.0"
26
+ "@equinor/fusion-framework-module-signalr": "^12.0.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/react": "^19.2.7",
30
30
  "react": "^19.2.1",
31
- "typescript": "^5.9.3",
32
- "@equinor/fusion-framework-react-module": "^4.0.0"
31
+ "typescript": "^6.0.3",
32
+ "@equinor/fusion-framework-react-module": "^4.0.1"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "@types/react": "^18.0.0 || ^19.0.0",
36
36
  "react": "^18.0.0 || ^19.0.0",
37
- "@equinor/fusion-framework-react-module": "^4.0.0"
37
+ "@equinor/fusion-framework-react-module": "^4.0.1"
38
38
  },
39
39
  "peerDependenciesMeta": {
40
40
  "@types/react": {
package/src/index.ts CHANGED
@@ -1,3 +1,14 @@
1
+ /**
2
+ * React integration for the Fusion SignalR module.
3
+ *
4
+ * Provides hooks for subscribing to SignalR hub topics from React components.
5
+ * Use {@link useTopic} for module-scoped access or {@link useProviderTopic}
6
+ * when injecting a provider explicitly.
7
+ *
8
+ * @see {@link enableSignalR} to enable the module in a configurator.
9
+ *
10
+ * @packageDocumentation
11
+ */
1
12
  export { useSignalRProvider as useProviderTopic } from './use-signalr-provider';
2
13
  export { useTopic } from './use-signalr';
3
14
 
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '4.0.0';
2
+ export const version = '4.0.1';