@backstage/plugin-search 1.5.0-next.1 → 1.5.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 +17 -0
- package/dist/alpha.d.ts +6 -6
- package/dist/package.json.esm.js +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
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/frontend-plugin-api@0.13.0
|
|
13
|
+
- @backstage/core-compat-api@0.5.4
|
|
14
|
+
- @backstage/plugin-search-react@1.10.0
|
|
15
|
+
- @backstage/plugin-catalog-react@1.21.3
|
|
16
|
+
- @backstage/core-components@0.18.3
|
|
17
|
+
- @backstage/core-plugin-api@1.12.0
|
|
18
|
+
- @backstage/plugin-search-common@1.2.21
|
|
19
|
+
|
|
3
20
|
## 1.5.0-next.1
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare const searchTranslationRef: _backstage_core_plugin_api_alpha.Translation
|
|
|
18
18
|
}>;
|
|
19
19
|
|
|
20
20
|
/** @alpha */
|
|
21
|
-
declare const searchApi: _backstage_frontend_plugin_api.
|
|
21
|
+
declare const searchApi: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
22
22
|
kind: "api";
|
|
23
23
|
name: undefined;
|
|
24
24
|
config: {};
|
|
@@ -28,7 +28,7 @@ declare const searchApi: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
|
28
28
|
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params: _backstage_core_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_core_plugin_api.AnyApiFactory>;
|
|
29
29
|
}>;
|
|
30
30
|
/** @alpha */
|
|
31
|
-
declare const searchPage: _backstage_frontend_plugin_api.
|
|
31
|
+
declare const searchPage: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
32
32
|
config: {
|
|
33
33
|
noTrack: boolean;
|
|
34
34
|
} & {
|
|
@@ -76,7 +76,7 @@ declare const searchPage: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
|
76
76
|
};
|
|
77
77
|
}>;
|
|
78
78
|
/** @alpha */
|
|
79
|
-
declare const searchNavItem: _backstage_frontend_plugin_api.
|
|
79
|
+
declare const searchNavItem: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
80
80
|
kind: "nav-item";
|
|
81
81
|
name: undefined;
|
|
82
82
|
config: {};
|
|
@@ -97,7 +97,7 @@ declare const searchNavItem: _backstage_frontend_plugin_api.ExtensionDefinition<
|
|
|
97
97
|
declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{
|
|
98
98
|
root: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
99
99
|
}, {}, {
|
|
100
|
-
"api:search": _backstage_frontend_plugin_api.
|
|
100
|
+
"api:search": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
101
101
|
kind: "api";
|
|
102
102
|
name: undefined;
|
|
103
103
|
config: {};
|
|
@@ -106,7 +106,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
106
106
|
inputs: {};
|
|
107
107
|
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params: _backstage_core_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_core_plugin_api.AnyApiFactory>;
|
|
108
108
|
}>;
|
|
109
|
-
"nav-item:search": _backstage_frontend_plugin_api.
|
|
109
|
+
"nav-item:search": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
110
110
|
kind: "nav-item";
|
|
111
111
|
name: undefined;
|
|
112
112
|
config: {};
|
|
@@ -123,7 +123,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
123
123
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
124
124
|
};
|
|
125
125
|
}>;
|
|
126
|
-
"page:search": _backstage_frontend_plugin_api.
|
|
126
|
+
"page:search": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
127
127
|
config: {
|
|
128
128
|
noTrack: boolean;
|
|
129
129
|
} & {
|
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.5.0
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,26 +70,26 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/core-compat-api": "0.5.4
|
|
74
|
-
"@backstage/core-components": "0.18.3
|
|
75
|
-
"@backstage/core-plugin-api": "1.
|
|
76
|
-
"@backstage/errors": "1.2.7",
|
|
77
|
-
"@backstage/frontend-plugin-api": "0.
|
|
78
|
-
"@backstage/plugin-catalog-react": "1.21.3
|
|
79
|
-
"@backstage/plugin-search-common": "1.2.21
|
|
80
|
-
"@backstage/plugin-search-react": "1.10.0
|
|
81
|
-
"@backstage/types": "1.2.2",
|
|
82
|
-
"@backstage/version-bridge": "1.0.11",
|
|
73
|
+
"@backstage/core-compat-api": "^0.5.4",
|
|
74
|
+
"@backstage/core-components": "^0.18.3",
|
|
75
|
+
"@backstage/core-plugin-api": "^1.12.0",
|
|
76
|
+
"@backstage/errors": "^1.2.7",
|
|
77
|
+
"@backstage/frontend-plugin-api": "^0.13.0",
|
|
78
|
+
"@backstage/plugin-catalog-react": "^1.21.3",
|
|
79
|
+
"@backstage/plugin-search-common": "^1.2.21",
|
|
80
|
+
"@backstage/plugin-search-react": "^1.10.0",
|
|
81
|
+
"@backstage/types": "^1.2.2",
|
|
82
|
+
"@backstage/version-bridge": "^1.0.11",
|
|
83
83
|
"@material-ui/core": "^4.12.2",
|
|
84
84
|
"@material-ui/icons": "^4.9.1",
|
|
85
85
|
"qs": "^6.9.4",
|
|
86
86
|
"react-use": "^17.2.4"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@backstage/cli": "0.34.5
|
|
90
|
-
"@backstage/core-app-api": "1.19.2
|
|
91
|
-
"@backstage/dev-utils": "1.1.17
|
|
92
|
-
"@backstage/test-utils": "1.7.13
|
|
89
|
+
"@backstage/cli": "^0.34.5",
|
|
90
|
+
"@backstage/core-app-api": "^1.19.2",
|
|
91
|
+
"@backstage/dev-utils": "^1.1.17",
|
|
92
|
+
"@backstage/test-utils": "^1.7.13",
|
|
93
93
|
"@testing-library/dom": "^10.0.0",
|
|
94
94
|
"@testing-library/jest-dom": "^6.0.0",
|
|
95
95
|
"@testing-library/react": "^16.0.0",
|