@backstage/plugin-search 1.4.19-next.3 → 1.4.19
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.esm.js +3 -3
- package/dist/plugin.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.4.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a4ccc82: Removes the card UI from the search results type filter for a cleaner UI consistent with other filters
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/types@1.2.0
|
|
10
|
+
- @backstage/plugin-catalog-react@1.14.1
|
|
11
|
+
- @backstage/core-components@0.16.0
|
|
12
|
+
- @backstage/core-compat-api@0.3.2
|
|
13
|
+
- @backstage/core-plugin-api@1.10.1
|
|
14
|
+
- @backstage/errors@1.2.5
|
|
15
|
+
- @backstage/frontend-plugin-api@0.9.1
|
|
16
|
+
- @backstage/version-bridge@1.0.10
|
|
17
|
+
- @backstage/plugin-search-common@1.2.15
|
|
18
|
+
- @backstage/plugin-search-react@1.8.2
|
|
19
|
+
|
|
3
20
|
## 1.4.19-next.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/alpha.esm.js
CHANGED
|
@@ -4,16 +4,16 @@ import Paper from '@material-ui/core/Paper';
|
|
|
4
4
|
import { makeStyles } from '@material-ui/core/styles';
|
|
5
5
|
import SearchIcon from '@material-ui/icons/Search';
|
|
6
6
|
import { useSidebarPinState, Page, Header, Content, CatalogIcon, DocsIcon } from '@backstage/core-components';
|
|
7
|
-
import { createApiFactory,
|
|
7
|
+
import { createApiFactory, fetchApiRef, discoveryApiRef, useApi } from '@backstage/core-plugin-api';
|
|
8
8
|
import { ApiBlueprint, PageBlueprint, createExtensionInput, NavItemBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
9
9
|
import { catalogApiRef, CATALOG_FILTER_EXISTS } from '@backstage/plugin-catalog-react';
|
|
10
|
-
import { searchApiRef, SearchContextProvider, useSearch, SearchBar, SearchFilter, SearchPagination, SearchResult,
|
|
10
|
+
import { searchApiRef, SearchContextProvider, useSearch, SearchBar, SearchFilter, SearchPagination, SearchResult, DefaultResultListItem, SearchResultPager } from '@backstage/plugin-search-react';
|
|
11
11
|
import { SearchResultListItemBlueprint } from '@backstage/plugin-search-react/alpha';
|
|
12
12
|
import { rootRouteRef } from './plugin.esm.js';
|
|
13
13
|
import { SearchClient } from './apis.esm.js';
|
|
14
14
|
import { SearchType } from './components/SearchType/SearchType.esm.js';
|
|
15
15
|
import { UrlUpdater } from './components/SearchPage/SearchPage.esm.js';
|
|
16
|
-
import {
|
|
16
|
+
import { compatWrapper, convertLegacyRouteRef, convertLegacyRouteRefs } from '@backstage/core-compat-api';
|
|
17
17
|
|
|
18
18
|
const searchApi = ApiBlueprint.make({
|
|
19
19
|
params: {
|
package/dist/plugin.esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SearchClient } from './apis.esm.js';
|
|
2
2
|
import { searchApiRef } from '@backstage/plugin-search-react';
|
|
3
|
-
import { createRouteRef, createPlugin, createApiFactory,
|
|
3
|
+
import { createRouteRef, createPlugin, createApiFactory, fetchApiRef, discoveryApiRef, createRoutableExtension, createComponentExtension } from '@backstage/core-plugin-api';
|
|
4
4
|
|
|
5
5
|
const rootRouteRef = createRouteRef({
|
|
6
6
|
id: "search"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search",
|
|
3
|
-
"version": "1.4.19
|
|
3
|
+
"version": "1.4.19",
|
|
4
4
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -67,26 +67,26 @@
|
|
|
67
67
|
"test": "backstage-cli package test"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@backstage/core-compat-api": "0.3.2
|
|
71
|
-
"@backstage/core-components": "0.16.0
|
|
72
|
-
"@backstage/core-plugin-api": "1.10.
|
|
73
|
-
"@backstage/errors": "1.2.
|
|
74
|
-
"@backstage/frontend-plugin-api": "0.9.1
|
|
75
|
-
"@backstage/plugin-catalog-react": "1.14.1
|
|
76
|
-
"@backstage/plugin-search-common": "1.2.
|
|
77
|
-
"@backstage/plugin-search-react": "1.8.2
|
|
78
|
-
"@backstage/types": "1.
|
|
79
|
-
"@backstage/version-bridge": "1.0.10",
|
|
70
|
+
"@backstage/core-compat-api": "^0.3.2",
|
|
71
|
+
"@backstage/core-components": "^0.16.0",
|
|
72
|
+
"@backstage/core-plugin-api": "^1.10.1",
|
|
73
|
+
"@backstage/errors": "^1.2.5",
|
|
74
|
+
"@backstage/frontend-plugin-api": "^0.9.1",
|
|
75
|
+
"@backstage/plugin-catalog-react": "^1.14.1",
|
|
76
|
+
"@backstage/plugin-search-common": "^1.2.15",
|
|
77
|
+
"@backstage/plugin-search-react": "^1.8.2",
|
|
78
|
+
"@backstage/types": "^1.2.0",
|
|
79
|
+
"@backstage/version-bridge": "^1.0.10",
|
|
80
80
|
"@material-ui/core": "^4.12.2",
|
|
81
81
|
"@material-ui/icons": "^4.9.1",
|
|
82
82
|
"qs": "^6.9.4",
|
|
83
83
|
"react-use": "^17.2.4"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@backstage/cli": "0.29.0
|
|
87
|
-
"@backstage/core-app-api": "1.15.
|
|
88
|
-
"@backstage/dev-utils": "1.1.3
|
|
89
|
-
"@backstage/test-utils": "1.7.1
|
|
86
|
+
"@backstage/cli": "^0.29.0",
|
|
87
|
+
"@backstage/core-app-api": "^1.15.2",
|
|
88
|
+
"@backstage/dev-utils": "^1.1.3",
|
|
89
|
+
"@backstage/test-utils": "^1.7.1",
|
|
90
90
|
"@testing-library/dom": "^10.0.0",
|
|
91
91
|
"@testing-library/jest-dom": "^6.0.0",
|
|
92
92
|
"@testing-library/react": "^16.0.0",
|