@backstage/plugin-search 1.4.32-next.0 → 1.5.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 +16 -0
- package/dist/alpha.d.ts +4 -2
- package/dist/package.json.esm.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.5.0-next.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a521911: Add support for customizable icons in `SearchResultListItemBlueprint` and related components
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/plugin-search-react@1.10.0-next.1
|
|
13
|
+
- @backstage/plugin-catalog-react@1.21.3-next.1
|
|
14
|
+
- @backstage/core-components@0.18.3-next.1
|
|
15
|
+
- @backstage/core-plugin-api@1.11.2-next.1
|
|
16
|
+
- @backstage/frontend-plugin-api@0.12.2-next.1
|
|
17
|
+
- @backstage/core-compat-api@0.5.4-next.0
|
|
18
|
+
|
|
3
19
|
## 1.4.32-next.0
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ declare const searchPage: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
|
46
46
|
items: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
47
47
|
predicate?: _backstage_plugin_search_react_alpha.SearchResultItemExtensionPredicate;
|
|
48
48
|
component: _backstage_plugin_search_react_alpha.SearchResultItemExtensionComponent;
|
|
49
|
+
icon?: react.JSX.Element;
|
|
49
50
|
}, "search.search-result-list-item.item", {}>, {
|
|
50
51
|
singleton: false;
|
|
51
52
|
optional: false;
|
|
@@ -53,7 +54,7 @@ declare const searchPage: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
|
53
54
|
resultTypes: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
54
55
|
value: string;
|
|
55
56
|
name: string;
|
|
56
|
-
icon: JSX.Element;
|
|
57
|
+
icon: react.JSX.Element;
|
|
57
58
|
}, "search.filters.result-types.type", {}>, {
|
|
58
59
|
singleton: false;
|
|
59
60
|
optional: false;
|
|
@@ -140,6 +141,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
140
141
|
items: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
141
142
|
predicate?: _backstage_plugin_search_react_alpha.SearchResultItemExtensionPredicate;
|
|
142
143
|
component: _backstage_plugin_search_react_alpha.SearchResultItemExtensionComponent;
|
|
144
|
+
icon?: react.JSX.Element;
|
|
143
145
|
}, "search.search-result-list-item.item", {}>, {
|
|
144
146
|
singleton: false;
|
|
145
147
|
optional: false;
|
|
@@ -147,7 +149,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
147
149
|
resultTypes: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
148
150
|
value: string;
|
|
149
151
|
name: string;
|
|
150
|
-
icon: JSX.Element;
|
|
152
|
+
icon: react.JSX.Element;
|
|
151
153
|
}, "search.filters.result-types.type", {}>, {
|
|
152
154
|
singleton: false;
|
|
153
155
|
optional: false;
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0-next.1",
|
|
4
4
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@backstage/core-compat-api": "0.5.4-next.0",
|
|
74
|
-
"@backstage/core-components": "0.18.3-next.
|
|
75
|
-
"@backstage/core-plugin-api": "1.11.2-next.
|
|
74
|
+
"@backstage/core-components": "0.18.3-next.1",
|
|
75
|
+
"@backstage/core-plugin-api": "1.11.2-next.1",
|
|
76
76
|
"@backstage/errors": "1.2.7",
|
|
77
|
-
"@backstage/frontend-plugin-api": "0.12.2-next.
|
|
78
|
-
"@backstage/plugin-catalog-react": "1.21.3-next.
|
|
77
|
+
"@backstage/frontend-plugin-api": "0.12.2-next.1",
|
|
78
|
+
"@backstage/plugin-catalog-react": "1.21.3-next.1",
|
|
79
79
|
"@backstage/plugin-search-common": "1.2.21-next.0",
|
|
80
|
-
"@backstage/plugin-search-react": "1.
|
|
80
|
+
"@backstage/plugin-search-react": "1.10.0-next.1",
|
|
81
81
|
"@backstage/types": "1.2.2",
|
|
82
82
|
"@backstage/version-bridge": "1.0.11",
|
|
83
83
|
"@material-ui/core": "^4.12.2",
|
|
@@ -86,9 +86,9 @@
|
|
|
86
86
|
"react-use": "^17.2.4"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@backstage/cli": "0.34.5-next.
|
|
90
|
-
"@backstage/core-app-api": "1.19.2-next.
|
|
91
|
-
"@backstage/dev-utils": "1.1.17-next.
|
|
89
|
+
"@backstage/cli": "0.34.5-next.1",
|
|
90
|
+
"@backstage/core-app-api": "1.19.2-next.1",
|
|
91
|
+
"@backstage/dev-utils": "1.1.17-next.1",
|
|
92
92
|
"@backstage/test-utils": "1.7.13-next.0",
|
|
93
93
|
"@testing-library/dom": "^10.0.0",
|
|
94
94
|
"@testing-library/jest-dom": "^6.0.0",
|