@backstage/plugin-search 1.4.15-next.1 → 1.4.15-next.3
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 +33 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +4 -4
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.4.15-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.7.0-next.3
|
|
9
|
+
- @backstage/core-compat-api@0.2.8-next.3
|
|
10
|
+
- @backstage/plugin-catalog-react@1.12.3-next.3
|
|
11
|
+
- @backstage/plugin-search-react@1.7.14-next.3
|
|
12
|
+
- @backstage/core-components@0.14.10-next.0
|
|
13
|
+
- @backstage/core-plugin-api@1.9.3
|
|
14
|
+
- @backstage/errors@1.2.4
|
|
15
|
+
- @backstage/types@1.1.1
|
|
16
|
+
- @backstage/version-bridge@1.0.8
|
|
17
|
+
- @backstage/plugin-search-common@1.2.14-next.1
|
|
18
|
+
|
|
19
|
+
## 1.4.15-next.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 3123c16: Fix package metadata
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/frontend-plugin-api@0.7.0-next.2
|
|
26
|
+
- @backstage/core-compat-api@0.2.8-next.2
|
|
27
|
+
- @backstage/plugin-search-common@1.2.14-next.1
|
|
28
|
+
- @backstage/plugin-search-react@1.7.14-next.2
|
|
29
|
+
- @backstage/plugin-catalog-react@1.12.3-next.2
|
|
30
|
+
- @backstage/core-components@0.14.10-next.0
|
|
31
|
+
- @backstage/core-plugin-api@1.9.3
|
|
32
|
+
- @backstage/errors@1.2.4
|
|
33
|
+
- @backstage/types@1.1.1
|
|
34
|
+
- @backstage/version-bridge@1.0.8
|
|
35
|
+
|
|
3
36
|
## 1.4.15-next.1
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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<{}, {}, never, never, string | undefined, string | undefined, string | undefined>;
|
|
5
5
|
/** @alpha */
|
|
6
6
|
declare const searchPage: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
7
7
|
path: string;
|
|
@@ -9,16 +9,16 @@ declare const searchPage: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
|
9
9
|
}, {
|
|
10
10
|
path: string;
|
|
11
11
|
noTrack: boolean;
|
|
12
|
-
}>;
|
|
12
|
+
}, _backstage_frontend_plugin_api.AnyExtensionDataRef, {}, string | undefined, string | undefined, string | undefined>;
|
|
13
13
|
/** @alpha */
|
|
14
14
|
declare const searchNavItem: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
15
15
|
title: string;
|
|
16
16
|
}, {
|
|
17
17
|
title?: string | undefined;
|
|
18
|
-
}>;
|
|
18
|
+
}, never, never, string | undefined, string | undefined, string | undefined>;
|
|
19
19
|
/** @alpha */
|
|
20
20
|
declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{
|
|
21
21
|
root: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
22
|
-
}, {}>;
|
|
22
|
+
}, {}, {}>;
|
|
23
23
|
|
|
24
24
|
export { _default as default, searchApi, searchNavItem, searchPage };
|
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.3",
|
|
4
4
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"pluginPackages": [
|
|
9
9
|
"@backstage/plugin-search",
|
|
10
10
|
"@backstage/plugin-search-backend",
|
|
11
|
+
"@backstage/plugin-search-backend-node",
|
|
11
12
|
"@backstage/plugin-search-common",
|
|
12
13
|
"@backstage/plugin-search-react"
|
|
13
14
|
]
|
|
@@ -56,14 +57,14 @@
|
|
|
56
57
|
"test": "backstage-cli package test"
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
|
-
"@backstage/core-compat-api": "^0.2.8-next.
|
|
60
|
+
"@backstage/core-compat-api": "^0.2.8-next.3",
|
|
60
61
|
"@backstage/core-components": "^0.14.10-next.0",
|
|
61
62
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
62
63
|
"@backstage/errors": "^1.2.4",
|
|
63
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
64
|
-
"@backstage/plugin-catalog-react": "^1.12.3-next.
|
|
65
|
-
"@backstage/plugin-search-common": "^1.2.14-next.
|
|
66
|
-
"@backstage/plugin-search-react": "^1.7.14-next.
|
|
64
|
+
"@backstage/frontend-plugin-api": "^0.7.0-next.3",
|
|
65
|
+
"@backstage/plugin-catalog-react": "^1.12.3-next.3",
|
|
66
|
+
"@backstage/plugin-search-common": "^1.2.14-next.1",
|
|
67
|
+
"@backstage/plugin-search-react": "^1.7.14-next.3",
|
|
67
68
|
"@backstage/types": "^1.1.1",
|
|
68
69
|
"@backstage/version-bridge": "^1.0.8",
|
|
69
70
|
"@material-ui/core": "^4.12.2",
|
|
@@ -73,10 +74,10 @@
|
|
|
73
74
|
"react-use": "^17.2.4"
|
|
74
75
|
},
|
|
75
76
|
"devDependencies": {
|
|
76
|
-
"@backstage/cli": "^0.27.0-next.
|
|
77
|
+
"@backstage/cli": "^0.27.0-next.4",
|
|
77
78
|
"@backstage/core-app-api": "^1.14.2-next.0",
|
|
78
|
-
"@backstage/dev-utils": "^1.0.37-next.
|
|
79
|
-
"@backstage/test-utils": "^1.5.10-next.
|
|
79
|
+
"@backstage/dev-utils": "^1.0.37-next.3",
|
|
80
|
+
"@backstage/test-utils": "^1.5.10-next.2",
|
|
80
81
|
"@testing-library/dom": "^10.0.0",
|
|
81
82
|
"@testing-library/jest-dom": "^6.0.0",
|
|
82
83
|
"@testing-library/react": "^15.0.0",
|