@backstage/plugin-signals-react 0.0.17 → 0.0.18

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/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @backstage/plugin-signals-react
2
2
 
3
+ ## 0.0.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-plugin-api@1.12.1
9
+
10
+ ## 0.0.18-next.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+ - @backstage/core-plugin-api@1.12.1-next.0
16
+ - @backstage/types@1.2.2
17
+
3
18
  ## 0.0.17
4
19
 
5
20
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
1
+ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
2
2
  import { JsonObject } from '@backstage/types';
3
3
 
4
4
  /** @public */
5
- declare const signalApiRef: _backstage_core_plugin_api.ApiRef<SignalApi>;
5
+ declare const signalApiRef: _backstage_frontend_plugin_api.ApiRef<SignalApi>;
6
6
  /** @public */
7
7
  interface SignalSubscriber {
8
8
  unsubscribe(): void;
@@ -18,4 +18,5 @@ declare const useSignal: <TMessage extends JsonObject = JsonObject>(channel: str
18
18
  isSignalsAvailable: boolean;
19
19
  };
20
20
 
21
- export { type SignalApi, type SignalSubscriber, signalApiRef, useSignal };
21
+ export { signalApiRef, useSignal };
22
+ export type { SignalApi, SignalSubscriber };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-signals-react",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "description": "Web library for the signals plugin",
5
5
  "backstage": {
6
6
  "role": "web-library",
@@ -39,13 +39,13 @@
39
39
  "test": "backstage-cli package test"
40
40
  },
41
41
  "dependencies": {
42
- "@backstage/core-plugin-api": "^1.12.0",
42
+ "@backstage/core-plugin-api": "^1.12.1",
43
43
  "@backstage/types": "^1.2.2",
44
44
  "@material-ui/core": "^4.12.4"
45
45
  },
46
46
  "devDependencies": {
47
- "@backstage/cli": "^0.34.5",
48
- "@backstage/test-utils": "^1.7.13",
47
+ "@backstage/cli": "^0.35.0",
48
+ "@backstage/test-utils": "^1.7.14",
49
49
  "@testing-library/jest-dom": "^6.0.0",
50
50
  "@testing-library/react": "^16.0.0",
51
51
  "@types/react": "^18.0.0",