@backstage/plugin-search-react 1.8.2-next.2 → 1.8.2
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 +13 -0
- package/dist/components/SearchFilter/hooks.esm.js +1 -1
- package/dist/components/SearchResult/SearchResult.esm.js +2 -2
- package/dist/components/SearchResultGroup/SearchResultGroup.esm.js +1 -1
- package/dist/components/SearchResultList/SearchResultList.esm.js +1 -1
- package/dist/context/SearchContext.esm.js +1 -1
- package/dist/extensions.esm.js +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-search-react
|
|
2
2
|
|
|
3
|
+
## 1.8.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/theme@0.6.1
|
|
9
|
+
- @backstage/types@1.2.0
|
|
10
|
+
- @backstage/core-components@0.16.0
|
|
11
|
+
- @backstage/core-plugin-api@1.10.1
|
|
12
|
+
- @backstage/frontend-plugin-api@0.9.1
|
|
13
|
+
- @backstage/version-bridge@1.0.10
|
|
14
|
+
- @backstage/plugin-search-common@1.2.15
|
|
15
|
+
|
|
3
16
|
## 1.8.2-next.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import useAsync from 'react-use/esm/useAsync';
|
|
3
3
|
import { isFunction } from 'lodash';
|
|
4
|
-
import { Progress, ResponseErrorPanel
|
|
5
|
-
import {
|
|
4
|
+
import { EmptyState, Progress, ResponseErrorPanel } from '@backstage/core-components';
|
|
5
|
+
import { AnalyticsContext, useApi } from '@backstage/core-plugin-api';
|
|
6
6
|
import { searchApiRef } from '../../api.esm.js';
|
|
7
7
|
import { useSearch } from '../../context/SearchContext.esm.js';
|
|
8
8
|
import { SearchResultListItemExtensions } from '../../extensions.esm.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import List from '@material-ui/core/List';
|
|
3
|
-
import { Progress, ResponseErrorPanel
|
|
3
|
+
import { EmptyState, Progress, ResponseErrorPanel } from '@backstage/core-components';
|
|
4
4
|
import { AnalyticsContext } from '@backstage/core-plugin-api';
|
|
5
5
|
import { useSearchResultListItemExtensions } from '../../extensions.esm.js';
|
|
6
6
|
import { DefaultResultListItem as HigherOrderDefaultResultListItem } from '../DefaultResultListItem/DefaultResultListItem.esm.js';
|
|
@@ -3,7 +3,7 @@ import React, { useContext, useState, useCallback, useEffect } from 'react';
|
|
|
3
3
|
import useAsync from 'react-use/esm/useAsync';
|
|
4
4
|
import usePrevious from 'react-use/esm/usePrevious';
|
|
5
5
|
import { createVersionedContext, createVersionedValueMap } from '@backstage/version-bridge';
|
|
6
|
-
import { useApi, configApiRef,
|
|
6
|
+
import { useApi, configApiRef, useAnalytics, AnalyticsContext } from '@backstage/core-plugin-api';
|
|
7
7
|
import { searchApiRef } from '../api.esm.js';
|
|
8
8
|
|
|
9
9
|
const SearchContext = createVersionedContext("search-context");
|
package/dist/extensions.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { useCallback, createElement,
|
|
1
|
+
import React, { useCallback, createElement, isValidElement, cloneElement, Fragment } from 'react';
|
|
2
2
|
import { useAnalytics, createReactExtension, useElementFilter, getComponentData } from '@backstage/core-plugin-api';
|
|
3
3
|
import List from '@material-ui/core/List';
|
|
4
4
|
import ListItem from '@material-ui/core/ListItem';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-react",
|
|
3
|
-
"version": "1.8.2
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library",
|
|
6
6
|
"pluginId": "search",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"test": "backstage-cli package test"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@backstage/core-components": "0.16.0
|
|
68
|
-
"@backstage/core-plugin-api": "1.10.
|
|
69
|
-
"@backstage/frontend-plugin-api": "0.9.1
|
|
70
|
-
"@backstage/plugin-search-common": "1.2.
|
|
71
|
-
"@backstage/theme": "0.6.1
|
|
72
|
-
"@backstage/types": "1.
|
|
73
|
-
"@backstage/version-bridge": "1.0.10",
|
|
67
|
+
"@backstage/core-components": "^0.16.0",
|
|
68
|
+
"@backstage/core-plugin-api": "^1.10.1",
|
|
69
|
+
"@backstage/frontend-plugin-api": "^0.9.1",
|
|
70
|
+
"@backstage/plugin-search-common": "^1.2.15",
|
|
71
|
+
"@backstage/theme": "^0.6.1",
|
|
72
|
+
"@backstage/types": "^1.2.0",
|
|
73
|
+
"@backstage/version-bridge": "^1.0.10",
|
|
74
74
|
"@material-ui/core": "^4.12.2",
|
|
75
75
|
"@material-ui/icons": "^4.9.1",
|
|
76
76
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -79,11 +79,11 @@
|
|
|
79
79
|
"react-use": "^17.3.2"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/cli": "0.29.0
|
|
83
|
-
"@backstage/core-app-api": "1.15.
|
|
84
|
-
"@backstage/frontend-app-api": "0.10.1
|
|
85
|
-
"@backstage/frontend-test-utils": "0.2.2
|
|
86
|
-
"@backstage/test-utils": "1.7.1
|
|
82
|
+
"@backstage/cli": "^0.29.0",
|
|
83
|
+
"@backstage/core-app-api": "^1.15.2",
|
|
84
|
+
"@backstage/frontend-app-api": "^0.10.1",
|
|
85
|
+
"@backstage/frontend-test-utils": "^0.2.2",
|
|
86
|
+
"@backstage/test-utils": "^1.7.1",
|
|
87
87
|
"@testing-library/dom": "^10.0.0",
|
|
88
88
|
"@testing-library/jest-dom": "^6.0.0",
|
|
89
89
|
"@testing-library/react": "^16.0.0",
|