@backstage/plugin-signals 0.0.24-next.1 → 0.0.24-next.3
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 +17 -0
- package/dist/alpha.d.ts +0 -12
- package/dist/alpha.esm.js +2 -11
- package/dist/alpha.esm.js.map +1 -1
- package/dist/package.json.esm.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-signals
|
|
2
2
|
|
|
3
|
+
## 0.0.24-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7b41d9d: Remove `app-root-element:signals/signals-display` which was not doing anything useful
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-components@0.18.2-next.3
|
|
10
|
+
- @backstage/frontend-plugin-api@0.12.1-next.2
|
|
11
|
+
|
|
12
|
+
## 0.0.24-next.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/core-components@0.18.2-next.2
|
|
18
|
+
- @backstage/theme@0.6.9-next.0
|
|
19
|
+
|
|
3
20
|
## 0.0.24-next.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import * as react from 'react';
|
|
2
1
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
3
2
|
|
|
4
3
|
/** @alpha */
|
|
@@ -12,17 +11,6 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
12
11
|
inputs: {};
|
|
13
12
|
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
14
13
|
}>;
|
|
15
|
-
"app-root-element:signals/signals-display": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
16
|
-
kind: "app-root-element";
|
|
17
|
-
name: "signals-display";
|
|
18
|
-
config: {};
|
|
19
|
-
configInput: {};
|
|
20
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}>;
|
|
21
|
-
inputs: {};
|
|
22
|
-
params: {
|
|
23
|
-
element: JSX.Element;
|
|
24
|
-
};
|
|
25
|
-
}>;
|
|
26
14
|
}>;
|
|
27
15
|
|
|
28
16
|
export { _default as default };
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ApiBlueprint, discoveryApiRef, identityApiRef, AppRootElementBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
1
|
+
import { ApiBlueprint, discoveryApiRef, identityApiRef, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
3
2
|
import { signalApiRef } from '@backstage/plugin-signals-react';
|
|
4
3
|
import { SignalClient } from './api/SignalClient.esm.js';
|
|
5
|
-
import { SignalsDisplay } from './plugin.esm.js';
|
|
6
|
-
import { compatWrapper } from '@backstage/core-compat-api';
|
|
7
4
|
|
|
8
5
|
const api = ApiBlueprint.make({
|
|
9
6
|
params: (defineParams) => defineParams({
|
|
@@ -20,16 +17,10 @@ const api = ApiBlueprint.make({
|
|
|
20
17
|
}
|
|
21
18
|
})
|
|
22
19
|
});
|
|
23
|
-
const signalsDisplayAppRootElement = AppRootElementBlueprint.make({
|
|
24
|
-
name: "signals-display",
|
|
25
|
-
params: {
|
|
26
|
-
element: compatWrapper(/* @__PURE__ */ jsx(SignalsDisplay, {}))
|
|
27
|
-
}
|
|
28
|
-
});
|
|
29
20
|
var alpha = createFrontendPlugin({
|
|
30
21
|
pluginId: "signals",
|
|
31
22
|
info: { packageJson: () => import('./package.json.esm.js') },
|
|
32
|
-
extensions: [api
|
|
23
|
+
extensions: [api]
|
|
33
24
|
});
|
|
34
25
|
|
|
35
26
|
export { alpha as default };
|
package/dist/alpha.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ApiBlueprint,\n
|
|
1
|
+
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ApiBlueprint,\n createFrontendPlugin,\n discoveryApiRef,\n identityApiRef,\n} from '@backstage/frontend-plugin-api';\nimport { signalApiRef } from '@backstage/plugin-signals-react';\nimport { SignalClient } from './api/SignalClient';\n\nconst api = ApiBlueprint.make({\n params: defineParams =>\n defineParams({\n api: signalApiRef,\n deps: {\n identity: identityApiRef,\n discoveryApi: discoveryApiRef,\n },\n factory: ({ identity, discoveryApi }) => {\n return SignalClient.create({\n identity,\n discoveryApi,\n });\n },\n }),\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'signals',\n info: { packageJson: () => import('../package.json') },\n extensions: [api],\n});\n"],"names":[],"mappings":";;;;AAyBA,MAAM,GAAA,GAAM,aAAa,IAAA,CAAK;AAAA,EAC5B,MAAA,EAAQ,kBACN,YAAA,CAAa;AAAA,IACX,GAAA,EAAK,YAAA;AAAA,IACL,IAAA,EAAM;AAAA,MACJ,QAAA,EAAU,cAAA;AAAA,MACV,YAAA,EAAc;AAAA,KAChB;AAAA,IACA,OAAA,EAAS,CAAC,EAAE,QAAA,EAAU,cAAa,KAAM;AACvC,MAAA,OAAO,aAAa,MAAA,CAAO;AAAA,QACzB,QAAA;AAAA,QACA;AAAA,OACD,CAAA;AAAA,IACH;AAAA,GACD;AACL,CAAC,CAAA;AAGD,YAAe,oBAAA,CAAqB;AAAA,EAClC,QAAA,EAAU,SAAA;AAAA,EACV,MAAM,EAAE,WAAA,EAAa,MAAM,OAAO,uBAAiB,CAAA,EAAE;AAAA,EACrD,UAAA,EAAY,CAAC,GAAG;AAClB,CAAC,CAAA;;;;"}
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-signals",
|
|
3
|
-
"version": "0.0.24-next.
|
|
3
|
+
"version": "0.0.24-next.3",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "signals",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@backstage/core-compat-api": "0.5.3-next.1",
|
|
67
|
-
"@backstage/core-components": "0.18.2-next.
|
|
67
|
+
"@backstage/core-components": "0.18.2-next.3",
|
|
68
68
|
"@backstage/core-plugin-api": "1.11.1-next.0",
|
|
69
|
-
"@backstage/frontend-plugin-api": "0.12.1-next.
|
|
69
|
+
"@backstage/frontend-plugin-api": "0.12.1-next.2",
|
|
70
70
|
"@backstage/plugin-signals-react": "0.0.16-next.0",
|
|
71
|
-
"@backstage/theme": "0.6.
|
|
71
|
+
"@backstage/theme": "0.6.9-next.0",
|
|
72
72
|
"@backstage/types": "1.2.2",
|
|
73
73
|
"@material-ui/core": "^4.12.4",
|
|
74
74
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -77,10 +77,10 @@
|
|
|
77
77
|
"uuid": "^11.0.0"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@backstage/cli": "0.34.4-next.
|
|
80
|
+
"@backstage/cli": "0.34.4-next.3",
|
|
81
81
|
"@backstage/core-app-api": "1.19.1-next.0",
|
|
82
|
-
"@backstage/dev-utils": "1.1.15-next.
|
|
83
|
-
"@backstage/test-utils": "1.7.12-next.
|
|
82
|
+
"@backstage/dev-utils": "1.1.15-next.2",
|
|
83
|
+
"@backstage/test-utils": "1.7.12-next.1",
|
|
84
84
|
"@testing-library/jest-dom": "^6.0.0",
|
|
85
85
|
"@testing-library/react": "^16.0.0",
|
|
86
86
|
"@testing-library/user-event": "^14.0.0",
|