@backstage/plugin-search 1.4.16 → 1.4.17-next.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 +16 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +26 -6
- package/package.json +12 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.4.17-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.9.0-next.0
|
|
9
|
+
- @backstage/core-compat-api@0.3.1-next.0
|
|
10
|
+
- @backstage/core-components@0.15.1-next.0
|
|
11
|
+
- @backstage/core-plugin-api@1.10.0-next.0
|
|
12
|
+
- @backstage/plugin-catalog-react@1.13.1-next.0
|
|
13
|
+
- @backstage/plugin-search-react@1.8.1-next.0
|
|
14
|
+
- @backstage/errors@1.2.4
|
|
15
|
+
- @backstage/types@1.1.1
|
|
16
|
+
- @backstage/version-bridge@1.0.9
|
|
17
|
+
- @backstage/plugin-search-common@1.2.14
|
|
18
|
+
|
|
3
19
|
## 1.4.16
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -6,12 +6,14 @@ import React__default from 'react';
|
|
|
6
6
|
/** @alpha */
|
|
7
7
|
declare const searchApi: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
8
8
|
kind: "api";
|
|
9
|
-
namespace: undefined;
|
|
10
9
|
name: undefined;
|
|
11
10
|
config: {};
|
|
12
11
|
configInput: {};
|
|
13
12
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
14
13
|
inputs: {};
|
|
14
|
+
params: {
|
|
15
|
+
factory: _backstage_core_plugin_api.AnyApiFactory;
|
|
16
|
+
};
|
|
15
17
|
}>;
|
|
16
18
|
/** @alpha */
|
|
17
19
|
declare const searchPage: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
@@ -38,13 +40,16 @@ declare const searchPage: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
|
38
40
|
}>;
|
|
39
41
|
};
|
|
40
42
|
kind: "page";
|
|
41
|
-
namespace: undefined;
|
|
42
43
|
name: undefined;
|
|
44
|
+
params: {
|
|
45
|
+
defaultPath: string;
|
|
46
|
+
loader: () => Promise<JSX.Element>;
|
|
47
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
48
|
+
};
|
|
43
49
|
}>;
|
|
44
50
|
/** @alpha */
|
|
45
51
|
declare const searchNavItem: _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
46
52
|
kind: "nav-item";
|
|
47
|
-
namespace: undefined;
|
|
48
53
|
name: undefined;
|
|
49
54
|
config: {};
|
|
50
55
|
configInput: {};
|
|
@@ -54,6 +59,11 @@ declare const searchNavItem: _backstage_frontend_plugin_api.ExtensionDefinition<
|
|
|
54
59
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
55
60
|
}, "core.nav-item.target", {}>;
|
|
56
61
|
inputs: {};
|
|
62
|
+
params: {
|
|
63
|
+
title: string;
|
|
64
|
+
icon: _backstage_core_plugin_api.IconComponent;
|
|
65
|
+
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
66
|
+
};
|
|
57
67
|
}>;
|
|
58
68
|
/** @alpha */
|
|
59
69
|
declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
@@ -61,16 +71,17 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
61
71
|
}, {}, {
|
|
62
72
|
"api:search": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
63
73
|
kind: "api";
|
|
64
|
-
namespace: undefined;
|
|
65
74
|
name: undefined;
|
|
66
75
|
config: {};
|
|
67
76
|
configInput: {};
|
|
68
77
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
69
78
|
inputs: {};
|
|
79
|
+
params: {
|
|
80
|
+
factory: _backstage_core_plugin_api.AnyApiFactory;
|
|
81
|
+
};
|
|
70
82
|
}>;
|
|
71
83
|
"nav-item:search": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
72
84
|
kind: "nav-item";
|
|
73
|
-
namespace: undefined;
|
|
74
85
|
name: undefined;
|
|
75
86
|
config: {};
|
|
76
87
|
configInput: {};
|
|
@@ -80,6 +91,11 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
80
91
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
81
92
|
}, "core.nav-item.target", {}>;
|
|
82
93
|
inputs: {};
|
|
94
|
+
params: {
|
|
95
|
+
title: string;
|
|
96
|
+
icon: _backstage_core_plugin_api.IconComponent;
|
|
97
|
+
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
98
|
+
};
|
|
83
99
|
}>;
|
|
84
100
|
"page:search": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
85
101
|
config: {
|
|
@@ -105,8 +121,12 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
105
121
|
}>;
|
|
106
122
|
};
|
|
107
123
|
kind: "page";
|
|
108
|
-
namespace: undefined;
|
|
109
124
|
name: undefined;
|
|
125
|
+
params: {
|
|
126
|
+
defaultPath: string;
|
|
127
|
+
loader: () => Promise<JSX.Element>;
|
|
128
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
129
|
+
};
|
|
110
130
|
}>;
|
|
111
131
|
}>;
|
|
112
132
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.17-next.0",
|
|
4
4
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"default": "./dist/index.esm.js"
|
|
35
35
|
},
|
|
36
36
|
"./alpha": {
|
|
37
|
+
"backstage": "@backstage/FrontendPlugin",
|
|
37
38
|
"import": "./dist/alpha.esm.js",
|
|
38
39
|
"types": "./dist/alpha.d.ts",
|
|
39
40
|
"default": "./dist/alpha.esm.js"
|
|
@@ -57,14 +58,14 @@
|
|
|
57
58
|
"test": "backstage-cli package test"
|
|
58
59
|
},
|
|
59
60
|
"dependencies": {
|
|
60
|
-
"@backstage/core-compat-api": "^0.3.0",
|
|
61
|
-
"@backstage/core-components": "^0.15.0",
|
|
62
|
-
"@backstage/core-plugin-api": "^1.
|
|
61
|
+
"@backstage/core-compat-api": "^0.3.1-next.0",
|
|
62
|
+
"@backstage/core-components": "^0.15.1-next.0",
|
|
63
|
+
"@backstage/core-plugin-api": "^1.10.0-next.0",
|
|
63
64
|
"@backstage/errors": "^1.2.4",
|
|
64
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
65
|
-
"@backstage/plugin-catalog-react": "^1.13.0",
|
|
65
|
+
"@backstage/frontend-plugin-api": "^0.9.0-next.0",
|
|
66
|
+
"@backstage/plugin-catalog-react": "^1.13.1-next.0",
|
|
66
67
|
"@backstage/plugin-search-common": "^1.2.14",
|
|
67
|
-
"@backstage/plugin-search-react": "^1.8.0",
|
|
68
|
+
"@backstage/plugin-search-react": "^1.8.1-next.0",
|
|
68
69
|
"@backstage/types": "^1.1.1",
|
|
69
70
|
"@backstage/version-bridge": "^1.0.9",
|
|
70
71
|
"@material-ui/core": "^4.12.2",
|
|
@@ -74,10 +75,10 @@
|
|
|
74
75
|
"react-use": "^17.2.4"
|
|
75
76
|
},
|
|
76
77
|
"devDependencies": {
|
|
77
|
-
"@backstage/cli": "^0.
|
|
78
|
-
"@backstage/core-app-api": "^1.15.0",
|
|
79
|
-
"@backstage/dev-utils": "^1.1.0",
|
|
80
|
-
"@backstage/test-utils": "^1.6.0",
|
|
78
|
+
"@backstage/cli": "^0.28.0-next.0",
|
|
79
|
+
"@backstage/core-app-api": "^1.15.1-next.0",
|
|
80
|
+
"@backstage/dev-utils": "^1.1.1-next.0",
|
|
81
|
+
"@backstage/test-utils": "^1.6.1-next.0",
|
|
81
82
|
"@testing-library/dom": "^10.0.0",
|
|
82
83
|
"@testing-library/jest-dom": "^6.0.0",
|
|
83
84
|
"@testing-library/react": "^16.0.0",
|