@backstage/plugin-search 0.4.16 → 0.4.17
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 +24 -0
- package/dist/esm/{index-4ef7a5c8.esm.js → index-022e0330.esm.js} +6 -5
- package/dist/esm/index-022e0330.esm.js.map +1 -0
- package/dist/esm/index-12477c15.esm.js +23 -0
- package/dist/esm/index-12477c15.esm.js.map +1 -0
- package/dist/esm/{index-9c0d67e6.esm.js → index-17c9e868.esm.js} +356 -222
- package/dist/esm/index-17c9e868.esm.js.map +1 -0
- package/dist/esm/index-226c47ca.esm.js +39 -0
- package/dist/esm/index-226c47ca.esm.js.map +1 -0
- package/dist/esm/{index-6f14e751.esm.js → index-3b720a86.esm.js} +6 -5
- package/dist/esm/index-3b720a86.esm.js.map +1 -0
- package/dist/esm/index-597d3990.esm.js +23 -0
- package/dist/esm/index-597d3990.esm.js.map +1 -0
- package/dist/esm/{index-3eebaa65.esm.js → index-b3bf028c.esm.js} +9 -8
- package/dist/esm/{index-3eebaa65.esm.js.map → index-b3bf028c.esm.js.map} +1 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.esm.js +6 -5
- package/dist/index.esm.js.map +1 -1
- package/package.json +9 -9
- package/dist/esm/index-4ef7a5c8.esm.js.map +0 -1
- package/dist/esm/index-6f14e751.esm.js.map +0 -1
- package/dist/esm/index-92a9e2ec.esm.js +0 -18
- package/dist/esm/index-92a9e2ec.esm.js.map +0 -1
- package/dist/esm/index-9c0d67e6.esm.js.map +0 -1
- package/dist/esm/index-ee8d2563.esm.js +0 -46
- package/dist/esm/index-ee8d2563.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 0.4.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5dcea2586c: Added `SearchModal` component.
|
|
8
|
+
|
|
9
|
+
Now you can import `SearchModal` in your apps:
|
|
10
|
+
|
|
11
|
+
```js
|
|
12
|
+
import { SearchModal } from '@backstage/plugin-search';
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
You can also use the `SidebarSearchModal` component to integrate it into the sidebar of your sample apps:
|
|
16
|
+
|
|
17
|
+
```js
|
|
18
|
+
import { SidebarSearchModal } from '@backstage/plugin-search';
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/core-components@0.7.3
|
|
23
|
+
- @backstage/theme@0.2.13
|
|
24
|
+
- @backstage/core-plugin-api@0.1.13
|
|
25
|
+
- @backstage/plugin-catalog-react@0.6.3
|
|
26
|
+
|
|
3
27
|
## 0.4.16
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { c as SearchResult } from './index-17c9e868.esm.js';
|
|
2
2
|
import '@backstage/core-plugin-api';
|
|
3
3
|
import '@backstage/errors';
|
|
4
4
|
import 'qs';
|
|
@@ -9,14 +9,15 @@ import '@material-ui/icons/FilterList';
|
|
|
9
9
|
import 'react-use';
|
|
10
10
|
import '@material-ui/icons/Search';
|
|
11
11
|
import '@material-ui/icons/Clear';
|
|
12
|
-
import 'react-router';
|
|
13
12
|
import '@material-ui/core/styles';
|
|
13
|
+
import '@material-ui/icons/ArrowBackIos';
|
|
14
|
+
import '@material-ui/icons/ArrowForwardIos';
|
|
15
|
+
import '@material-ui/core/utils';
|
|
16
|
+
import 'react-router';
|
|
14
17
|
import '@material-ui/core/InputBase';
|
|
15
18
|
import '@material-ui/core/IconButton';
|
|
16
19
|
import '@material-ui/lab';
|
|
17
20
|
import '@backstage/plugin-catalog-react';
|
|
18
21
|
import '@backstage/catalog-model';
|
|
19
|
-
import '@material-ui/icons/ArrowBackIos';
|
|
20
|
-
import '@material-ui/icons/ArrowForwardIos';
|
|
21
22
|
import 'react-router-dom';
|
|
22
|
-
//# sourceMappingURL=index-
|
|
23
|
+
//# sourceMappingURL=index-022e0330.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-022e0330.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export { D as DefaultResultListItem } from './index-17c9e868.esm.js';
|
|
2
|
+
import '@backstage/core-plugin-api';
|
|
3
|
+
import '@backstage/errors';
|
|
4
|
+
import 'qs';
|
|
5
|
+
import 'react';
|
|
6
|
+
import '@material-ui/core';
|
|
7
|
+
import '@backstage/core-components';
|
|
8
|
+
import '@material-ui/icons/FilterList';
|
|
9
|
+
import 'react-use';
|
|
10
|
+
import '@material-ui/icons/Search';
|
|
11
|
+
import '@material-ui/icons/Clear';
|
|
12
|
+
import '@material-ui/core/styles';
|
|
13
|
+
import '@material-ui/icons/ArrowBackIos';
|
|
14
|
+
import '@material-ui/icons/ArrowForwardIos';
|
|
15
|
+
import '@material-ui/core/utils';
|
|
16
|
+
import 'react-router';
|
|
17
|
+
import '@material-ui/core/InputBase';
|
|
18
|
+
import '@material-ui/core/IconButton';
|
|
19
|
+
import '@material-ui/lab';
|
|
20
|
+
import '@backstage/plugin-catalog-react';
|
|
21
|
+
import '@backstage/catalog-model';
|
|
22
|
+
import 'react-router-dom';
|
|
23
|
+
//# sourceMappingURL=index-12477c15.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-12477c15.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
|