@backstage/plugin-app 0.0.0-nightly-20240903022649 → 0.1.0-next.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.
- package/CHANGELOG.md +3 -7
- package/dist/index.d.ts +1 -18
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
# @backstage/plugin-app
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- 2bb9517: Introduce the `@backstage/plugin-app` package to hold all of the built-in extensions for easy consumption and overriding.
|
|
3
|
+
## 0.1.0-next.1
|
|
8
4
|
|
|
9
5
|
### Patch Changes
|
|
10
6
|
|
|
@@ -39,8 +35,8 @@
|
|
|
39
35
|
```
|
|
40
36
|
|
|
41
37
|
- Updated dependencies
|
|
42
|
-
- @backstage/frontend-plugin-api@0.
|
|
43
|
-
- @backstage/core-components@0.14.
|
|
38
|
+
- @backstage/frontend-plugin-api@0.8.0-next.1
|
|
39
|
+
- @backstage/core-components@0.14.11-next.0
|
|
44
40
|
- @backstage/core-plugin-api@1.9.3
|
|
45
41
|
- @backstage/theme@0.5.6
|
|
46
42
|
- @backstage/plugin-permission-react@0.4.25
|
package/dist/index.d.ts
CHANGED
|
@@ -1,27 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
3
|
-
import * as react from 'react';
|
|
4
3
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
4
|
+
import * as react from 'react';
|
|
5
5
|
|
|
6
6
|
/** @public */
|
|
7
7
|
declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
8
|
-
[x: `component:app/${string}`]: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
9
|
-
config: {};
|
|
10
|
-
configInput: {};
|
|
11
|
-
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
12
|
-
ref: _backstage_frontend_plugin_api.ComponentRef;
|
|
13
|
-
impl: react.ComponentType;
|
|
14
|
-
}, "core.component.component", {}>;
|
|
15
|
-
inputs: {
|
|
16
|
-
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.AnyExtensionDataRef, {
|
|
17
|
-
optional: boolean;
|
|
18
|
-
singleton: boolean;
|
|
19
|
-
}>;
|
|
20
|
-
};
|
|
21
|
-
kind: "component";
|
|
22
|
-
namespace: string;
|
|
23
|
-
name: string;
|
|
24
|
-
}>;
|
|
25
8
|
app: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
26
9
|
config: {};
|
|
27
10
|
configInput: {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.0-next.1",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"postpack": "backstage-cli package postpack"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/core-components": "^0.14.
|
|
37
|
+
"@backstage/core-components": "^0.14.11-next.0",
|
|
38
38
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
39
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
39
|
+
"@backstage/frontend-plugin-api": "^0.8.0-next.1",
|
|
40
40
|
"@backstage/plugin-permission-react": "^0.4.25",
|
|
41
41
|
"@backstage/theme": "^0.5.6",
|
|
42
42
|
"@material-ui/core": "^4.9.13",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/cli": "^0.
|
|
54
|
-
"@backstage/dev-utils": "^
|
|
55
|
-
"@backstage/frontend-test-utils": "^0.
|
|
53
|
+
"@backstage/cli": "^0.27.1-next.1",
|
|
54
|
+
"@backstage/dev-utils": "^1.0.38-next.1",
|
|
55
|
+
"@backstage/frontend-test-utils": "^0.2.0-next.1",
|
|
56
56
|
"@testing-library/jest-dom": "^6.0.0",
|
|
57
57
|
"@testing-library/react": "^15.0.0",
|
|
58
58
|
"@testing-library/user-event": "^14.0.0",
|