@backstage/plugin-search 1.4.15-next.0 → 1.4.15-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 +17 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +6 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.4.15-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6349099: Added config input type to the extensions
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-catalog-react@1.12.3-next.1
|
|
10
|
+
- @backstage/frontend-plugin-api@0.6.8-next.1
|
|
11
|
+
- @backstage/core-compat-api@0.2.8-next.1
|
|
12
|
+
- @backstage/plugin-search-react@1.7.14-next.1
|
|
13
|
+
- @backstage/plugin-search-common@1.2.14-next.0
|
|
14
|
+
- @backstage/core-components@0.14.10-next.0
|
|
15
|
+
- @backstage/core-plugin-api@1.9.3
|
|
16
|
+
- @backstage/errors@1.2.4
|
|
17
|
+
- @backstage/types@1.1.1
|
|
18
|
+
- @backstage/version-bridge@1.0.8
|
|
19
|
+
|
|
3
20
|
## 1.4.15-next.0
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
2
2
|
|
|
3
3
|
/** @alpha */
|
|
4
|
-
declare const searchApi: _backstage_frontend_plugin_api.ExtensionDefinition<{}>;
|
|
4
|
+
declare const searchApi: _backstage_frontend_plugin_api.ExtensionDefinition<{}, {}>;
|
|
5
5
|
/** @alpha */
|
|
6
6
|
declare const searchPage: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
7
7
|
path: string;
|
|
8
8
|
noTrack: boolean;
|
|
9
|
+
}, {
|
|
10
|
+
path: string;
|
|
11
|
+
noTrack: boolean;
|
|
9
12
|
}>;
|
|
10
13
|
/** @alpha */
|
|
11
14
|
declare const searchNavItem: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
12
15
|
title: string;
|
|
16
|
+
}, {
|
|
17
|
+
title?: string | undefined;
|
|
13
18
|
}>;
|
|
14
19
|
/** @alpha */
|
|
15
20
|
declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search",
|
|
3
|
-
"version": "1.4.15-next.
|
|
3
|
+
"version": "1.4.15-next.1",
|
|
4
4
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"test": "backstage-cli package test"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@backstage/core-compat-api": "^0.2.8-next.
|
|
59
|
+
"@backstage/core-compat-api": "^0.2.8-next.1",
|
|
60
60
|
"@backstage/core-components": "^0.14.10-next.0",
|
|
61
61
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
62
62
|
"@backstage/errors": "^1.2.4",
|
|
63
|
-
"@backstage/frontend-plugin-api": "^0.6.8-next.
|
|
64
|
-
"@backstage/plugin-catalog-react": "^1.12.3-next.
|
|
65
|
-
"@backstage/plugin-search-common": "^1.2.
|
|
66
|
-
"@backstage/plugin-search-react": "^1.7.14-next.
|
|
63
|
+
"@backstage/frontend-plugin-api": "^0.6.8-next.1",
|
|
64
|
+
"@backstage/plugin-catalog-react": "^1.12.3-next.1",
|
|
65
|
+
"@backstage/plugin-search-common": "^1.2.14-next.0",
|
|
66
|
+
"@backstage/plugin-search-react": "^1.7.14-next.1",
|
|
67
67
|
"@backstage/types": "^1.1.1",
|
|
68
68
|
"@backstage/version-bridge": "^1.0.8",
|
|
69
69
|
"@material-ui/core": "^4.12.2",
|
|
@@ -73,10 +73,10 @@
|
|
|
73
73
|
"react-use": "^17.2.4"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@backstage/cli": "^0.27.0-next.
|
|
77
|
-
"@backstage/core-app-api": "^1.14.
|
|
78
|
-
"@backstage/dev-utils": "^1.0.
|
|
79
|
-
"@backstage/test-utils": "^1.5.
|
|
76
|
+
"@backstage/cli": "^0.27.0-next.1",
|
|
77
|
+
"@backstage/core-app-api": "^1.14.2-next.0",
|
|
78
|
+
"@backstage/dev-utils": "^1.0.37-next.1",
|
|
79
|
+
"@backstage/test-utils": "^1.5.10-next.1",
|
|
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",
|