@backstage/plugin-config-schema 0.1.74 → 0.1.75
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 +18 -0
- package/dist/index.d.ts +5 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-config-schema
|
|
2
2
|
|
|
3
|
+
## 0.1.75
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/core-components@0.18.4
|
|
9
|
+
- @backstage/core-plugin-api@1.12.1
|
|
10
|
+
|
|
11
|
+
## 0.1.75-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/core-plugin-api@1.12.1-next.0
|
|
17
|
+
- @backstage/core-components@0.18.4-next.0
|
|
18
|
+
- @backstage/errors@1.2.7
|
|
19
|
+
- @backstage/types@1.2.2
|
|
20
|
+
|
|
3
21
|
## 0.1.74
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
2
2
|
import { Schema } from 'jsonschema';
|
|
3
3
|
import { Observable } from '@backstage/types';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
+
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
5
6
|
|
|
6
7
|
/** @public */
|
|
7
8
|
interface ConfigSchemaResult {
|
|
@@ -12,7 +13,7 @@ interface ConfigSchemaApi {
|
|
|
12
13
|
schema$(): Observable<ConfigSchemaResult>;
|
|
13
14
|
}
|
|
14
15
|
/** @public */
|
|
15
|
-
declare const configSchemaApiRef:
|
|
16
|
+
declare const configSchemaApiRef: _backstage_frontend_plugin_api.ApiRef<ConfigSchemaApi>;
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
* A ConfigSchemaApi implementation that loads the configuration from a URL.
|
|
@@ -35,4 +36,5 @@ declare const configSchemaPlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
|
35
36
|
/** @public */
|
|
36
37
|
declare const ConfigSchemaPage: () => react_jsx_runtime.JSX.Element;
|
|
37
38
|
|
|
38
|
-
export {
|
|
39
|
+
export { ConfigSchemaPage, StaticSchemaLoader, configSchemaApiRef, configSchemaPlugin };
|
|
40
|
+
export type { ConfigSchemaApi, ConfigSchemaResult };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-config-schema",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.75",
|
|
4
4
|
"description": "A Backstage plugin that lets you browse the configuration schema of your app",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/core-components": "^0.18.
|
|
41
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
40
|
+
"@backstage/core-components": "^0.18.4",
|
|
41
|
+
"@backstage/core-plugin-api": "^1.12.1",
|
|
42
42
|
"@backstage/errors": "^1.2.7",
|
|
43
43
|
"@backstage/types": "^1.2.2",
|
|
44
44
|
"@material-ui/core": "^4.12.2",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"zen-observable": "^0.10.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@backstage/cli": "^0.
|
|
53
|
-
"@backstage/dev-utils": "^1.1.
|
|
52
|
+
"@backstage/cli": "^0.35.0",
|
|
53
|
+
"@backstage/dev-utils": "^1.1.18",
|
|
54
54
|
"@testing-library/dom": "^10.0.0",
|
|
55
55
|
"@testing-library/jest-dom": "^6.0.0",
|
|
56
56
|
"@testing-library/react": "^16.0.0",
|