@backstage/plugin-search 1.4.0-next.3 → 1.4.1-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 +48 -0
- package/dist/index.d.ts +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.4.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@1.8.5-next.0
|
|
9
|
+
- @backstage/core-plugin-api@1.7.0-next.0
|
|
10
|
+
- @backstage/core-components@0.13.6-next.0
|
|
11
|
+
- @backstage/config@1.1.0
|
|
12
|
+
- @backstage/plugin-search-react@1.7.1-next.0
|
|
13
|
+
- @backstage/catalog-model@1.4.2
|
|
14
|
+
- @backstage/errors@1.2.2
|
|
15
|
+
- @backstage/theme@0.4.2
|
|
16
|
+
- @backstage/types@1.1.1
|
|
17
|
+
- @backstage/version-bridge@1.0.5
|
|
18
|
+
- @backstage/plugin-search-common@1.2.6
|
|
19
|
+
|
|
20
|
+
## 1.4.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- b78f570f44d3: The SearchPage component can now be configured via app-config.yaml with default query parameters to define how it behaves when it is first loaded or reset. Check out the following example:
|
|
25
|
+
|
|
26
|
+
```yaml
|
|
27
|
+
search:
|
|
28
|
+
query:
|
|
29
|
+
pageLimit: 50
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Acceptable values for `pageLimit` are `10`, `25`, `50` or `100`.
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
37
|
+
- 8cec7664e146: Removed `@types/node` dependency
|
|
38
|
+
- Updated dependencies
|
|
39
|
+
- @backstage/plugin-catalog-react@1.8.4
|
|
40
|
+
- @backstage/core-components@0.13.5
|
|
41
|
+
- @backstage/config@1.1.0
|
|
42
|
+
- @backstage/catalog-model@1.4.2
|
|
43
|
+
- @backstage/core-plugin-api@1.6.0
|
|
44
|
+
- @backstage/errors@1.2.2
|
|
45
|
+
- @backstage/plugin-search-common@1.2.6
|
|
46
|
+
- @backstage/plugin-search-react@1.7.0
|
|
47
|
+
- @backstage/theme@0.4.2
|
|
48
|
+
- @backstage/types@1.1.1
|
|
49
|
+
- @backstage/version-bridge@1.0.5
|
|
50
|
+
|
|
3
51
|
## 1.4.0-next.3
|
|
4
52
|
|
|
5
53
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search",
|
|
3
3
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.1-next.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/catalog-model": "^1.4.2
|
|
37
|
-
"@backstage/config": "^1.1.0
|
|
38
|
-
"@backstage/core-components": "^0.13.
|
|
39
|
-
"@backstage/core-plugin-api": "^1.
|
|
40
|
-
"@backstage/errors": "^1.2.2
|
|
41
|
-
"@backstage/plugin-catalog-react": "^1.8.
|
|
42
|
-
"@backstage/plugin-search-common": "^1.2.6
|
|
43
|
-
"@backstage/plugin-search-react": "^1.7.
|
|
44
|
-
"@backstage/theme": "^0.4.2
|
|
45
|
-
"@backstage/types": "^1.1.1
|
|
46
|
-
"@backstage/version-bridge": "^1.0.5
|
|
36
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
37
|
+
"@backstage/config": "^1.1.0",
|
|
38
|
+
"@backstage/core-components": "^0.13.6-next.0",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.7.0-next.0",
|
|
40
|
+
"@backstage/errors": "^1.2.2",
|
|
41
|
+
"@backstage/plugin-catalog-react": "^1.8.5-next.0",
|
|
42
|
+
"@backstage/plugin-search-common": "^1.2.6",
|
|
43
|
+
"@backstage/plugin-search-react": "^1.7.1-next.0",
|
|
44
|
+
"@backstage/theme": "^0.4.2",
|
|
45
|
+
"@backstage/types": "^1.1.1",
|
|
46
|
+
"@backstage/version-bridge": "^1.0.5",
|
|
47
47
|
"@material-ui/core": "^4.12.2",
|
|
48
48
|
"@material-ui/icons": "^4.9.1",
|
|
49
49
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@backstage/cli": "^0.
|
|
61
|
-
"@backstage/core-app-api": "^1.10.
|
|
62
|
-
"@backstage/dev-utils": "^1.0.
|
|
63
|
-
"@backstage/test-utils": "^1.4.
|
|
60
|
+
"@backstage/cli": "^0.23.0-next.0",
|
|
61
|
+
"@backstage/core-app-api": "^1.10.1-next.0",
|
|
62
|
+
"@backstage/dev-utils": "^1.0.22-next.0",
|
|
63
|
+
"@backstage/test-utils": "^1.4.4-next.0",
|
|
64
64
|
"@testing-library/dom": "^8.0.0",
|
|
65
65
|
"@testing-library/jest-dom": "^5.10.1",
|
|
66
66
|
"@testing-library/react": "^12.1.3",
|