@backstage-community/plugin-newrelic-dashboard 0.21.1 → 0.22.0
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 +6 -0
- package/dist/alpha.d.ts +10 -13
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
|
|
3
2
|
import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
4
3
|
import * as react from 'react';
|
|
@@ -14,9 +13,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
14
13
|
configInput: {};
|
|
15
14
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
16
15
|
inputs: {};
|
|
17
|
-
params: <TApi, TImpl extends TApi, TDeps extends {
|
|
18
|
-
[x: string]: unknown;
|
|
19
|
-
}>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
16
|
+
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>;
|
|
20
17
|
}>;
|
|
21
18
|
"entity-card:newrelic-dashboard/EntityNewRelicDashboardCard": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
22
19
|
kind: "entity-card";
|
|
@@ -39,8 +36,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
39
36
|
inputs: {};
|
|
40
37
|
params: {
|
|
41
38
|
loader: () => Promise<JSX.Element>;
|
|
42
|
-
filter?: _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean)
|
|
43
|
-
type?: _backstage_plugin_catalog_react_alpha.EntityCardType
|
|
39
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
|
40
|
+
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
44
41
|
};
|
|
45
42
|
}>;
|
|
46
43
|
"entity-content:newrelic-dashboard/EntityNewRelicDashboardContent": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
@@ -73,16 +70,16 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
73
70
|
}>;
|
|
74
71
|
inputs: {};
|
|
75
72
|
params: {
|
|
76
|
-
defaultPath?: [Error:
|
|
73
|
+
defaultPath?: [Error: `Use the 'path' param instead`];
|
|
77
74
|
path: string;
|
|
78
|
-
defaultTitle?: [Error:
|
|
75
|
+
defaultTitle?: [Error: `Use the 'title' param instead`];
|
|
79
76
|
title: string;
|
|
80
|
-
defaultGroup?: [Error:
|
|
81
|
-
group?: (
|
|
82
|
-
icon?: string | react.ReactElement
|
|
77
|
+
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
78
|
+
group?: ("operation" | "development" | "deployment" | "overview" | "documentation" | "observability") | (string & {});
|
|
79
|
+
icon?: string | react.ReactElement;
|
|
83
80
|
loader: () => Promise<JSX.Element>;
|
|
84
|
-
routeRef?: _backstage_frontend_plugin_api.RouteRef
|
|
85
|
-
filter?: _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean)
|
|
81
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
82
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
|
86
83
|
};
|
|
87
84
|
}>;
|
|
88
85
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-newrelic-dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "newrelic-dashboard",
|
|
@@ -61,22 +61,22 @@
|
|
|
61
61
|
"test": "backstage-cli package test"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@backstage/catalog-model": "^1.7.
|
|
65
|
-
"@backstage/core-compat-api": "^0.5.
|
|
66
|
-
"@backstage/core-components": "^0.18.
|
|
67
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
64
|
+
"@backstage/catalog-model": "^1.7.7",
|
|
65
|
+
"@backstage/core-compat-api": "^0.5.9",
|
|
66
|
+
"@backstage/core-components": "^0.18.8",
|
|
67
|
+
"@backstage/core-plugin-api": "^1.12.4",
|
|
68
68
|
"@backstage/errors": "^1.2.7",
|
|
69
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
70
|
-
"@backstage/plugin-catalog-react": "^2.
|
|
69
|
+
"@backstage/frontend-plugin-api": "^0.15.1",
|
|
70
|
+
"@backstage/plugin-catalog-react": "^2.1.0",
|
|
71
71
|
"@material-ui/core": "^4.12.2",
|
|
72
72
|
"@material-ui/icons": "^4.9.1",
|
|
73
73
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
74
74
|
"react-use": "^17.2.4"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@backstage/cli": "^0.
|
|
78
|
-
"@backstage/dev-utils": "^1.1.
|
|
79
|
-
"@backstage/test-utils": "^1.7.
|
|
77
|
+
"@backstage/cli": "^0.36.0",
|
|
78
|
+
"@backstage/dev-utils": "^1.1.21",
|
|
79
|
+
"@backstage/test-utils": "^1.7.16",
|
|
80
80
|
"@testing-library/dom": "^10.0.0",
|
|
81
81
|
"@testing-library/jest-dom": "^6.0.0",
|
|
82
82
|
"@testing-library/react": "^15.0.0",
|