@backstage/plugin-search-react 1.9.3-next.0 → 1.9.3-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 +14 -0
- package/dist/alpha.d.ts +3 -6
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-search-react
|
|
2
2
|
|
|
3
|
+
## 1.9.3-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/frontend-plugin-api@0.11.0-next.1
|
|
10
|
+
- @backstage/core-components@0.17.5-next.1
|
|
11
|
+
- @backstage/core-plugin-api@1.10.9
|
|
12
|
+
- @backstage/theme@0.6.8-next.0
|
|
13
|
+
- @backstage/types@1.2.1
|
|
14
|
+
- @backstage/version-bridge@1.0.11
|
|
15
|
+
- @backstage/plugin-search-common@1.2.19
|
|
16
|
+
|
|
3
17
|
## 1.9.3-next.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -41,9 +41,8 @@ interface SearchResultListItemBlueprintParams {
|
|
|
41
41
|
*/
|
|
42
42
|
declare const SearchResultListItemBlueprint: _backstage_frontend_plugin_api.ExtensionBlueprint<{
|
|
43
43
|
kind: "search-result-list-item";
|
|
44
|
-
name: undefined;
|
|
45
44
|
params: SearchResultListItemBlueprintParams;
|
|
46
|
-
output: _backstage_frontend_plugin_api.
|
|
45
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
47
46
|
predicate?: SearchResultItemExtensionPredicate;
|
|
48
47
|
component: SearchResultItemExtensionComponent;
|
|
49
48
|
}, "search.search-result-list-item.item", {}>;
|
|
@@ -82,9 +81,8 @@ interface SearchFilterResultTypeBlueprintParams {
|
|
|
82
81
|
*/
|
|
83
82
|
declare const SearchFilterResultTypeBlueprint: _backstage_frontend_plugin_api.ExtensionBlueprint<{
|
|
84
83
|
kind: "search-filter-result-type";
|
|
85
|
-
name: undefined;
|
|
86
84
|
params: SearchFilterResultTypeBlueprintParams;
|
|
87
|
-
output: _backstage_frontend_plugin_api.
|
|
85
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
88
86
|
value: string;
|
|
89
87
|
name: string;
|
|
90
88
|
icon: JSX.Element;
|
|
@@ -110,9 +108,8 @@ interface SearchFilterBlueprintParams {
|
|
|
110
108
|
*/
|
|
111
109
|
declare const SearchFilterBlueprint: _backstage_frontend_plugin_api.ExtensionBlueprint<{
|
|
112
110
|
kind: "search-filter";
|
|
113
|
-
name: undefined;
|
|
114
111
|
params: SearchFilterBlueprintParams;
|
|
115
|
-
output: _backstage_frontend_plugin_api.
|
|
112
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
116
113
|
component: SearchFilterExtensionComponent;
|
|
117
114
|
}, "search.filters.filter", {}>;
|
|
118
115
|
inputs: {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-react",
|
|
3
|
-
"version": "1.9.3-next.
|
|
3
|
+
"version": "1.9.3-next.1",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library",
|
|
6
6
|
"pluginId": "search",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"test": "backstage-cli package test"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@backstage/core-components": "0.17.5-next.
|
|
67
|
+
"@backstage/core-components": "0.17.5-next.1",
|
|
68
68
|
"@backstage/core-plugin-api": "1.10.9",
|
|
69
|
-
"@backstage/frontend-plugin-api": "0.11.0-next.
|
|
69
|
+
"@backstage/frontend-plugin-api": "0.11.0-next.1",
|
|
70
70
|
"@backstage/plugin-search-common": "1.2.19",
|
|
71
71
|
"@backstage/theme": "0.6.8-next.0",
|
|
72
72
|
"@backstage/types": "1.2.1",
|
|
@@ -80,10 +80,10 @@
|
|
|
80
80
|
"uuid": "^11.0.2"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@backstage/cli": "0.
|
|
83
|
+
"@backstage/cli": "0.34.0-next.1",
|
|
84
84
|
"@backstage/core-app-api": "1.18.0",
|
|
85
|
-
"@backstage/frontend-app-api": "0.
|
|
86
|
-
"@backstage/frontend-test-utils": "0.3.5-next.
|
|
85
|
+
"@backstage/frontend-app-api": "0.12.0-next.2",
|
|
86
|
+
"@backstage/frontend-test-utils": "0.3.5-next.2",
|
|
87
87
|
"@backstage/test-utils": "1.7.11-next.0",
|
|
88
88
|
"@testing-library/dom": "^10.0.0",
|
|
89
89
|
"@testing-library/jest-dom": "^6.0.0",
|