@backstage/plugin-search 1.4.0-next.2 → 1.4.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 +49 -0
- package/package.json +17 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 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:
|
|
8
|
+
|
|
9
|
+
```yaml
|
|
10
|
+
search:
|
|
11
|
+
query:
|
|
12
|
+
pageLimit: 50
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Acceptable values for `pageLimit` are `10`, `25`, `50` or `100`.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
20
|
+
- 8cec7664e146: Removed `@types/node` dependency
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/plugin-catalog-react@1.8.4
|
|
23
|
+
- @backstage/core-components@0.13.5
|
|
24
|
+
- @backstage/config@1.1.0
|
|
25
|
+
- @backstage/catalog-model@1.4.2
|
|
26
|
+
- @backstage/core-plugin-api@1.6.0
|
|
27
|
+
- @backstage/errors@1.2.2
|
|
28
|
+
- @backstage/plugin-search-common@1.2.6
|
|
29
|
+
- @backstage/plugin-search-react@1.7.0
|
|
30
|
+
- @backstage/theme@0.4.2
|
|
31
|
+
- @backstage/types@1.1.1
|
|
32
|
+
- @backstage/version-bridge@1.0.5
|
|
33
|
+
|
|
34
|
+
## 1.4.0-next.3
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/catalog-model@1.4.2-next.2
|
|
41
|
+
- @backstage/config@1.1.0-next.2
|
|
42
|
+
- @backstage/core-components@0.13.5-next.3
|
|
43
|
+
- @backstage/core-plugin-api@1.6.0-next.3
|
|
44
|
+
- @backstage/errors@1.2.2-next.0
|
|
45
|
+
- @backstage/plugin-catalog-react@1.8.4-next.3
|
|
46
|
+
- @backstage/plugin-search-common@1.2.6-next.2
|
|
47
|
+
- @backstage/plugin-search-react@1.7.0-next.3
|
|
48
|
+
- @backstage/theme@0.4.2-next.0
|
|
49
|
+
- @backstage/types@1.1.1-next.0
|
|
50
|
+
- @backstage/version-bridge@1.0.5-next.0
|
|
51
|
+
|
|
3
52
|
## 1.4.0-next.2
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|
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.0
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"keywords": [
|
|
23
23
|
"backstage"
|
|
24
24
|
],
|
|
25
|
+
"sideEffects": false,
|
|
25
26
|
"scripts": {
|
|
26
27
|
"build": "backstage-cli package build",
|
|
27
28
|
"start": "backstage-cli package start",
|
|
@@ -32,17 +33,17 @@
|
|
|
32
33
|
"clean": "backstage-cli package clean"
|
|
33
34
|
},
|
|
34
35
|
"dependencies": {
|
|
35
|
-
"@backstage/catalog-model": "^1.4.2
|
|
36
|
-
"@backstage/config": "^1.1.0
|
|
37
|
-
"@backstage/core-components": "^0.13.5
|
|
38
|
-
"@backstage/core-plugin-api": "^1.6.0
|
|
39
|
-
"@backstage/errors": "^1.2.
|
|
40
|
-
"@backstage/plugin-catalog-react": "^1.8.4
|
|
41
|
-
"@backstage/plugin-search-common": "^1.2.6
|
|
42
|
-
"@backstage/plugin-search-react": "^1.7.0
|
|
43
|
-
"@backstage/theme": "^0.4.
|
|
44
|
-
"@backstage/types": "^1.1.
|
|
45
|
-
"@backstage/version-bridge": "^1.0.
|
|
36
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
37
|
+
"@backstage/config": "^1.1.0",
|
|
38
|
+
"@backstage/core-components": "^0.13.5",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.6.0",
|
|
40
|
+
"@backstage/errors": "^1.2.2",
|
|
41
|
+
"@backstage/plugin-catalog-react": "^1.8.4",
|
|
42
|
+
"@backstage/plugin-search-common": "^1.2.6",
|
|
43
|
+
"@backstage/plugin-search-react": "^1.7.0",
|
|
44
|
+
"@backstage/theme": "^0.4.2",
|
|
45
|
+
"@backstage/types": "^1.1.1",
|
|
46
|
+
"@backstage/version-bridge": "^1.0.5",
|
|
46
47
|
"@material-ui/core": "^4.12.2",
|
|
47
48
|
"@material-ui/icons": "^4.9.1",
|
|
48
49
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -56,10 +57,10 @@
|
|
|
56
57
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
|
-
"@backstage/cli": "^0.22.13
|
|
60
|
-
"@backstage/core-app-api": "^1.10.0
|
|
61
|
-
"@backstage/dev-utils": "^1.0.21
|
|
62
|
-
"@backstage/test-utils": "^1.4.3
|
|
60
|
+
"@backstage/cli": "^0.22.13",
|
|
61
|
+
"@backstage/core-app-api": "^1.10.0",
|
|
62
|
+
"@backstage/dev-utils": "^1.0.21",
|
|
63
|
+
"@backstage/test-utils": "^1.4.3",
|
|
63
64
|
"@testing-library/dom": "^8.0.0",
|
|
64
65
|
"@testing-library/jest-dom": "^5.10.1",
|
|
65
66
|
"@testing-library/react": "^12.1.3",
|