@backstage/plugin-search 1.5.1-next.0 → 1.5.1-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 +10 -15
- package/dist/index.d.ts +2 -1
- package/dist/package.json.esm.js +4 -4
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.5.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f3f84f1: Minor extension type updates after frontend API bump
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/frontend-plugin-api@0.13.2-next.1
|
|
10
|
+
- @backstage/plugin-catalog-react@1.21.4-next.2
|
|
11
|
+
- @backstage/core-components@0.18.4-next.2
|
|
12
|
+
- @backstage/core-plugin-api@1.12.1-next.0
|
|
13
|
+
- @backstage/errors@1.2.7
|
|
14
|
+
- @backstage/types@1.2.2
|
|
15
|
+
- @backstage/version-bridge@1.0.11
|
|
16
|
+
- @backstage/plugin-search-common@1.2.21
|
|
17
|
+
- @backstage/plugin-search-react@1.10.1-next.0
|
|
18
|
+
|
|
3
19
|
## 1.5.1-next.0
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
|
+
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
1
2
|
import * as _backstage_plugin_search_react_alpha from '@backstage/plugin-search-react/alpha';
|
|
2
3
|
import * as react from 'react';
|
|
3
4
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
4
|
-
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
5
|
-
import * as _backstage_core_plugin_api_alpha from '@backstage/core-plugin-api/alpha';
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* @alpha
|
|
9
8
|
*/
|
|
10
|
-
declare const searchTranslationRef:
|
|
9
|
+
declare const searchTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"search", {
|
|
11
10
|
readonly "searchModal.viewFullResults": "View Full Results";
|
|
12
11
|
readonly "searchType.tabs.allTitle": "All";
|
|
13
12
|
readonly "searchType.allResults": "All Results";
|
|
@@ -23,20 +22,18 @@ declare const searchApi: _backstage_frontend_plugin_api.OverridableExtensionDefi
|
|
|
23
22
|
name: undefined;
|
|
24
23
|
config: {};
|
|
25
24
|
configInput: {};
|
|
26
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
25
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
27
26
|
inputs: {};
|
|
28
|
-
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params:
|
|
27
|
+
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
29
28
|
}>;
|
|
30
29
|
/** @alpha */
|
|
31
30
|
declare const searchPage: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
32
31
|
config: {
|
|
33
32
|
noTrack: boolean;
|
|
34
|
-
} & {
|
|
35
33
|
path: string | undefined;
|
|
36
34
|
};
|
|
37
35
|
configInput: {
|
|
38
36
|
noTrack?: boolean | undefined;
|
|
39
|
-
} & {
|
|
40
37
|
path?: string | undefined;
|
|
41
38
|
};
|
|
42
39
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
@@ -83,13 +80,13 @@ declare const searchNavItem: _backstage_frontend_plugin_api.OverridableExtension
|
|
|
83
80
|
configInput: {};
|
|
84
81
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
85
82
|
title: string;
|
|
86
|
-
icon:
|
|
83
|
+
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
87
84
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
88
85
|
}, "core.nav-item.target", {}>;
|
|
89
86
|
inputs: {};
|
|
90
87
|
params: {
|
|
91
88
|
title: string;
|
|
92
|
-
icon:
|
|
89
|
+
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
93
90
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
94
91
|
};
|
|
95
92
|
}>;
|
|
@@ -102,9 +99,9 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
102
99
|
name: undefined;
|
|
103
100
|
config: {};
|
|
104
101
|
configInput: {};
|
|
105
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
102
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
106
103
|
inputs: {};
|
|
107
|
-
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params:
|
|
104
|
+
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
108
105
|
}>;
|
|
109
106
|
"nav-item:search": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
110
107
|
kind: "nav-item";
|
|
@@ -113,25 +110,23 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
113
110
|
configInput: {};
|
|
114
111
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
115
112
|
title: string;
|
|
116
|
-
icon:
|
|
113
|
+
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
117
114
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
118
115
|
}, "core.nav-item.target", {}>;
|
|
119
116
|
inputs: {};
|
|
120
117
|
params: {
|
|
121
118
|
title: string;
|
|
122
|
-
icon:
|
|
119
|
+
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
123
120
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
124
121
|
};
|
|
125
122
|
}>;
|
|
126
123
|
"page:search": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
127
124
|
config: {
|
|
128
125
|
noTrack: boolean;
|
|
129
|
-
} & {
|
|
130
126
|
path: string | undefined;
|
|
131
127
|
};
|
|
132
128
|
configInput: {
|
|
133
129
|
noTrack?: boolean | undefined;
|
|
134
|
-
} & {
|
|
135
130
|
path?: string | undefined;
|
|
136
131
|
};
|
|
137
132
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
package/dist/index.d.ts
CHANGED
|
@@ -222,4 +222,5 @@ declare const SidebarSearchModal: (props: SidebarSearchModalProps) => JSX.Elemen
|
|
|
222
222
|
*/
|
|
223
223
|
declare const HomePageSearchBar: (props: HomePageSearchBarProps) => react_jsx_runtime.JSX.Element;
|
|
224
224
|
|
|
225
|
-
export { HomePageSearchBar,
|
|
225
|
+
export { HomePageSearchBar, SearchPage$1 as Router, SearchModal, SearchModalProvider, SearchPage, SearchType, SidebarSearch, SidebarSearchModal, searchPlugin as plugin, searchPlugin, useSearchModal };
|
|
226
|
+
export type { HomePageSearchBarProps, SearchModalChildrenProps, SearchModalProps, SearchModalProviderProps, SearchModalValue, SearchTypeAccordionProps, SearchTypeProps, SearchTypeTabsProps, SidebarSearchModalProps, SidebarSearchProps };
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-search";
|
|
2
|
-
var version = "1.5.1-next.
|
|
2
|
+
var version = "1.5.1-next.1";
|
|
3
3
|
var description = "The Backstage plugin that provides your backstage app with search";
|
|
4
4
|
var backstage = {
|
|
5
5
|
role: "frontend-plugin",
|
|
@@ -26,7 +26,7 @@ var repository = {
|
|
|
26
26
|
};
|
|
27
27
|
var license = "Apache-2.0";
|
|
28
28
|
var sideEffects = false;
|
|
29
|
-
var exports = {
|
|
29
|
+
var exports$1 = {
|
|
30
30
|
".": "./src/index.ts",
|
|
31
31
|
"./alpha": "./src/alpha.tsx",
|
|
32
32
|
"./package.json": "./package.json"
|
|
@@ -109,7 +109,7 @@ var _package = {
|
|
|
109
109
|
repository: repository,
|
|
110
110
|
license: license,
|
|
111
111
|
sideEffects: sideEffects,
|
|
112
|
-
exports: exports,
|
|
112
|
+
exports: exports$1,
|
|
113
113
|
main: main,
|
|
114
114
|
types: types,
|
|
115
115
|
typesVersions: typesVersions,
|
|
@@ -122,5 +122,5 @@ var _package = {
|
|
|
122
122
|
configSchema: configSchema
|
|
123
123
|
};
|
|
124
124
|
|
|
125
|
-
export { backstage, configSchema, _package as default, dependencies, description, devDependencies, exports, files, homepage, keywords, license, main, name, peerDependencies, peerDependenciesMeta, publishConfig, repository, scripts, sideEffects, types, typesVersions, version };
|
|
125
|
+
export { backstage, configSchema, _package as default, dependencies, description, devDependencies, exports$1 as exports, files, homepage, keywords, license, main, name, peerDependencies, peerDependenciesMeta, publishConfig, repository, scripts, sideEffects, types, typesVersions, version };
|
|
126
126
|
//# sourceMappingURL=package.json.esm.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search",
|
|
3
|
-
"version": "1.5.1-next.
|
|
3
|
+
"version": "1.5.1-next.1",
|
|
4
4
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/core-components": "0.18.4-next.
|
|
73
|
+
"@backstage/core-components": "0.18.4-next.2",
|
|
74
74
|
"@backstage/core-plugin-api": "1.12.1-next.0",
|
|
75
75
|
"@backstage/errors": "1.2.7",
|
|
76
|
-
"@backstage/frontend-plugin-api": "0.13.2-next.
|
|
77
|
-
"@backstage/plugin-catalog-react": "1.21.4-next.
|
|
76
|
+
"@backstage/frontend-plugin-api": "0.13.2-next.1",
|
|
77
|
+
"@backstage/plugin-catalog-react": "1.21.4-next.2",
|
|
78
78
|
"@backstage/plugin-search-common": "1.2.21",
|
|
79
79
|
"@backstage/plugin-search-react": "1.10.1-next.0",
|
|
80
80
|
"@backstage/types": "1.2.2",
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
"react-use": "^17.2.4"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@backstage/cli": "0.
|
|
89
|
-
"@backstage/core-app-api": "1.19.3-next.
|
|
90
|
-
"@backstage/dev-utils": "1.1.18-next.
|
|
88
|
+
"@backstage/cli": "0.35.0-next.2",
|
|
89
|
+
"@backstage/core-app-api": "1.19.3-next.1",
|
|
90
|
+
"@backstage/dev-utils": "1.1.18-next.1",
|
|
91
91
|
"@backstage/test-utils": "1.7.14-next.0",
|
|
92
92
|
"@testing-library/dom": "^10.0.0",
|
|
93
93
|
"@testing-library/jest-dom": "^6.0.0",
|