@backstage-community/plugin-entity-feedback 0.13.0 → 0.14.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 +11 -0
- package/dist/alpha.d.ts +4 -23
- package/dist/index.d.ts +2 -1
- package/dist/package.json.esm.js +11 -11
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage-community/plugin-entity-feedback
|
|
2
2
|
|
|
3
|
+
## 0.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a3c15ac: Backstage version bump to v1.46.1
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [a3c15ac]
|
|
12
|
+
- @backstage-community/plugin-entity-feedback-common@0.12.0
|
|
13
|
+
|
|
3
14
|
## 0.13.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
|
|
5
|
-
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
6
5
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
7
6
|
|
|
8
7
|
/**
|
|
@@ -16,11 +15,11 @@ declare const entityFeedbackPlugin: _backstage_frontend_plugin_api.OverridableFr
|
|
|
16
15
|
name: undefined;
|
|
17
16
|
config: {};
|
|
18
17
|
configInput: {};
|
|
19
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
18
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
20
19
|
inputs: {};
|
|
21
20
|
params: <TApi, TImpl extends TApi, TDeps extends {
|
|
22
21
|
[x: string]: unknown;
|
|
23
|
-
}>(params:
|
|
22
|
+
}>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
24
23
|
}>;
|
|
25
24
|
"entity-card:entity-feedback/ratings-buttons": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
26
25
|
config: {
|
|
@@ -32,7 +31,6 @@ declare const entityFeedbackPlugin: _backstage_frontend_plugin_api.OverridableFr
|
|
|
32
31
|
id: string;
|
|
33
32
|
label: string;
|
|
34
33
|
}[] | undefined;
|
|
35
|
-
} & {
|
|
36
34
|
filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
37
35
|
type: "content" | "summary" | "info" | undefined;
|
|
38
36
|
};
|
|
@@ -45,7 +43,6 @@ declare const entityFeedbackPlugin: _backstage_frontend_plugin_api.OverridableFr
|
|
|
45
43
|
id: string;
|
|
46
44
|
label: string;
|
|
47
45
|
}[] | undefined;
|
|
48
|
-
} & {
|
|
49
46
|
filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
50
47
|
type?: "content" | "summary" | "info" | undefined;
|
|
51
48
|
};
|
|
@@ -56,14 +53,7 @@ declare const entityFeedbackPlugin: _backstage_frontend_plugin_api.OverridableFr
|
|
|
56
53
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_plugin_catalog_react_alpha.EntityCardType, "catalog.entity-card-type", {
|
|
57
54
|
optional: true;
|
|
58
55
|
}>;
|
|
59
|
-
inputs: {
|
|
60
|
-
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ExtensionDataRef<unknown, string, {
|
|
61
|
-
optional?: true | undefined;
|
|
62
|
-
}>, {
|
|
63
|
-
singleton: boolean;
|
|
64
|
-
optional: boolean;
|
|
65
|
-
}>;
|
|
66
|
-
};
|
|
56
|
+
inputs: {};
|
|
67
57
|
kind: "entity-card";
|
|
68
58
|
name: "ratings-buttons";
|
|
69
59
|
params: {
|
|
@@ -77,7 +67,6 @@ declare const entityFeedbackPlugin: _backstage_frontend_plugin_api.OverridableFr
|
|
|
77
67
|
title: string | undefined;
|
|
78
68
|
allEntities: boolean | undefined;
|
|
79
69
|
variant: "starred" | "like-dislike";
|
|
80
|
-
} & {
|
|
81
70
|
filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
82
71
|
type: "content" | "summary" | "info" | undefined;
|
|
83
72
|
};
|
|
@@ -85,7 +74,6 @@ declare const entityFeedbackPlugin: _backstage_frontend_plugin_api.OverridableFr
|
|
|
85
74
|
title?: string | undefined;
|
|
86
75
|
allEntities?: boolean | undefined;
|
|
87
76
|
variant?: "starred" | "like-dislike" | undefined;
|
|
88
|
-
} & {
|
|
89
77
|
filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
90
78
|
type?: "content" | "summary" | "info" | undefined;
|
|
91
79
|
};
|
|
@@ -96,14 +84,7 @@ declare const entityFeedbackPlugin: _backstage_frontend_plugin_api.OverridableFr
|
|
|
96
84
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_plugin_catalog_react_alpha.EntityCardType, "catalog.entity-card-type", {
|
|
97
85
|
optional: true;
|
|
98
86
|
}>;
|
|
99
|
-
inputs: {
|
|
100
|
-
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ExtensionDataRef<unknown, string, {
|
|
101
|
-
optional?: true | undefined;
|
|
102
|
-
}>, {
|
|
103
|
-
singleton: boolean;
|
|
104
|
-
optional: boolean;
|
|
105
|
-
}>;
|
|
106
|
-
};
|
|
87
|
+
inputs: {};
|
|
107
88
|
kind: "entity-card";
|
|
108
89
|
name: "ratings-table";
|
|
109
90
|
params: {
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
4
4
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
5
5
|
import { DiscoveryApi, FetchApi } from '@backstage/core-plugin-api';
|
|
6
6
|
import { EntityRatingsData, Rating, Ratings, FeedbackResponse } from '@backstage-community/plugin-entity-feedback-common';
|
|
7
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
7
8
|
|
|
8
9
|
/**
|
|
9
10
|
* @public
|
|
@@ -114,7 +115,7 @@ declare const StarredRatingsTable: (props: StarredRatingsTableProps) => react_js
|
|
|
114
115
|
/**
|
|
115
116
|
* @public
|
|
116
117
|
*/
|
|
117
|
-
declare const entityFeedbackApiRef:
|
|
118
|
+
declare const entityFeedbackApiRef: _backstage_frontend_plugin_api.ApiRef<EntityFeedbackApi>;
|
|
118
119
|
/**
|
|
119
120
|
* @public
|
|
120
121
|
*/
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage-community/plugin-entity-feedback";
|
|
2
|
-
var version = "0.
|
|
2
|
+
var version = "0.14.0";
|
|
3
3
|
var backstage = {
|
|
4
4
|
role: "frontend-plugin",
|
|
5
5
|
pluginId: "entity-feedback",
|
|
@@ -53,23 +53,23 @@ var scripts = {
|
|
|
53
53
|
var dependencies = {
|
|
54
54
|
"@backstage-community/plugin-entity-feedback-common": "workspace:^",
|
|
55
55
|
"@backstage/catalog-model": "^1.7.6",
|
|
56
|
-
"@backstage/core-compat-api": "^0.5.
|
|
57
|
-
"@backstage/core-components": "^0.18.
|
|
58
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
56
|
+
"@backstage/core-compat-api": "^0.5.5",
|
|
57
|
+
"@backstage/core-components": "^0.18.4",
|
|
58
|
+
"@backstage/core-plugin-api": "^1.12.1",
|
|
59
59
|
"@backstage/errors": "^1.2.7",
|
|
60
|
-
"@backstage/frontend-plugin-api": "^0.13.
|
|
61
|
-
"@backstage/plugin-catalog-react": "^1.21.
|
|
60
|
+
"@backstage/frontend-plugin-api": "^0.13.2",
|
|
61
|
+
"@backstage/plugin-catalog-react": "^1.21.4",
|
|
62
62
|
"@material-ui/core": "^4.9.13",
|
|
63
63
|
"@material-ui/icons": "^4.9.1",
|
|
64
64
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
65
65
|
"react-use": "^17.2.4"
|
|
66
66
|
};
|
|
67
67
|
var devDependencies = {
|
|
68
|
-
"@backstage/cli": "^0.
|
|
69
|
-
"@backstage/dev-utils": "^1.1.
|
|
70
|
-
"@backstage/frontend-defaults": "^0.3.
|
|
71
|
-
"@backstage/plugin-catalog": "^1.32.
|
|
72
|
-
"@backstage/test-utils": "^1.7.
|
|
68
|
+
"@backstage/cli": "^0.35.1",
|
|
69
|
+
"@backstage/dev-utils": "^1.1.18",
|
|
70
|
+
"@backstage/frontend-defaults": "^0.3.4",
|
|
71
|
+
"@backstage/plugin-catalog": "^1.32.1",
|
|
72
|
+
"@backstage/test-utils": "^1.7.14",
|
|
73
73
|
"@testing-library/dom": "^10.0.0",
|
|
74
74
|
"@testing-library/jest-dom": "^6.0.0",
|
|
75
75
|
"@testing-library/react": "^15.0.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-entity-feedback",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "entity-feedback",
|
|
@@ -64,25 +64,25 @@
|
|
|
64
64
|
"test": "backstage-cli package test"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@backstage-community/plugin-entity-feedback-common": "^0.
|
|
67
|
+
"@backstage-community/plugin-entity-feedback-common": "^0.12.0",
|
|
68
68
|
"@backstage/catalog-model": "^1.7.6",
|
|
69
|
-
"@backstage/core-compat-api": "^0.5.
|
|
70
|
-
"@backstage/core-components": "^0.18.
|
|
71
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
69
|
+
"@backstage/core-compat-api": "^0.5.5",
|
|
70
|
+
"@backstage/core-components": "^0.18.4",
|
|
71
|
+
"@backstage/core-plugin-api": "^1.12.1",
|
|
72
72
|
"@backstage/errors": "^1.2.7",
|
|
73
|
-
"@backstage/frontend-plugin-api": "^0.13.
|
|
74
|
-
"@backstage/plugin-catalog-react": "^1.21.
|
|
73
|
+
"@backstage/frontend-plugin-api": "^0.13.2",
|
|
74
|
+
"@backstage/plugin-catalog-react": "^1.21.4",
|
|
75
75
|
"@material-ui/core": "^4.9.13",
|
|
76
76
|
"@material-ui/icons": "^4.9.1",
|
|
77
77
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
78
78
|
"react-use": "^17.2.4"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "^0.
|
|
82
|
-
"@backstage/dev-utils": "^1.1.
|
|
83
|
-
"@backstage/frontend-defaults": "^0.3.
|
|
84
|
-
"@backstage/plugin-catalog": "^1.32.
|
|
85
|
-
"@backstage/test-utils": "^1.7.
|
|
81
|
+
"@backstage/cli": "^0.35.1",
|
|
82
|
+
"@backstage/dev-utils": "^1.1.18",
|
|
83
|
+
"@backstage/frontend-defaults": "^0.3.4",
|
|
84
|
+
"@backstage/plugin-catalog": "^1.32.1",
|
|
85
|
+
"@backstage/test-utils": "^1.7.14",
|
|
86
86
|
"@testing-library/dom": "^10.0.0",
|
|
87
87
|
"@testing-library/jest-dom": "^6.0.0",
|
|
88
88
|
"@testing-library/react": "^15.0.0",
|