@backstage/plugin-search 1.5.3 → 1.5.4-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 +15 -0
- package/dist/alpha.d.ts +6 -0
- package/dist/package.json.esm.js +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 1.5.4-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@1.21.6-next.0
|
|
9
|
+
- @backstage/core-components@0.18.6-next.0
|
|
10
|
+
- @backstage/plugin-search-common@1.2.22-next.0
|
|
11
|
+
- @backstage/frontend-plugin-api@0.14.0-next.0
|
|
12
|
+
- @backstage/core-plugin-api@1.12.2-next.0
|
|
13
|
+
- @backstage/plugin-search-react@1.10.3-next.0
|
|
14
|
+
- @backstage/errors@1.2.7
|
|
15
|
+
- @backstage/types@1.2.2
|
|
16
|
+
- @backstage/version-bridge@1.0.11
|
|
17
|
+
|
|
3
18
|
## 1.5.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ declare const searchPage: _backstage_frontend_plugin_api.OverridableExtensionDef
|
|
|
47
47
|
}, "search.search-result-list-item.item", {}>, {
|
|
48
48
|
singleton: false;
|
|
49
49
|
optional: false;
|
|
50
|
+
internal: false;
|
|
50
51
|
}>;
|
|
51
52
|
resultTypes: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
52
53
|
value: string;
|
|
@@ -55,12 +56,14 @@ declare const searchPage: _backstage_frontend_plugin_api.OverridableExtensionDef
|
|
|
55
56
|
}, "search.filters.result-types.type", {}>, {
|
|
56
57
|
singleton: false;
|
|
57
58
|
optional: false;
|
|
59
|
+
internal: false;
|
|
58
60
|
}>;
|
|
59
61
|
searchFilters: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
60
62
|
component: _backstage_plugin_search_react_alpha.SearchFilterExtensionComponent;
|
|
61
63
|
}, "search.filters.filter", {}>, {
|
|
62
64
|
singleton: false;
|
|
63
65
|
optional: false;
|
|
66
|
+
internal: false;
|
|
64
67
|
}>;
|
|
65
68
|
};
|
|
66
69
|
kind: "page";
|
|
@@ -140,6 +143,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
140
143
|
}, "search.search-result-list-item.item", {}>, {
|
|
141
144
|
singleton: false;
|
|
142
145
|
optional: false;
|
|
146
|
+
internal: false;
|
|
143
147
|
}>;
|
|
144
148
|
resultTypes: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
145
149
|
value: string;
|
|
@@ -148,12 +152,14 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
148
152
|
}, "search.filters.result-types.type", {}>, {
|
|
149
153
|
singleton: false;
|
|
150
154
|
optional: false;
|
|
155
|
+
internal: false;
|
|
151
156
|
}>;
|
|
152
157
|
searchFilters: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
153
158
|
component: _backstage_plugin_search_react_alpha.SearchFilterExtensionComponent;
|
|
154
159
|
}, "search.filters.filter", {}>, {
|
|
155
160
|
singleton: false;
|
|
156
161
|
optional: false;
|
|
162
|
+
internal: false;
|
|
157
163
|
}>;
|
|
158
164
|
};
|
|
159
165
|
kind: "page";
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4-next.0",
|
|
4
4
|
"description": "The Backstage plugin that provides your backstage app with search",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,25 +70,25 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/core-components": "
|
|
74
|
-
"@backstage/core-plugin-api": "
|
|
75
|
-
"@backstage/errors": "
|
|
76
|
-
"@backstage/frontend-plugin-api": "
|
|
77
|
-
"@backstage/plugin-catalog-react": "
|
|
78
|
-
"@backstage/plugin-search-common": "
|
|
79
|
-
"@backstage/plugin-search-react": "
|
|
80
|
-
"@backstage/types": "
|
|
81
|
-
"@backstage/version-bridge": "
|
|
73
|
+
"@backstage/core-components": "0.18.6-next.0",
|
|
74
|
+
"@backstage/core-plugin-api": "1.12.2-next.0",
|
|
75
|
+
"@backstage/errors": "1.2.7",
|
|
76
|
+
"@backstage/frontend-plugin-api": "0.14.0-next.0",
|
|
77
|
+
"@backstage/plugin-catalog-react": "1.21.6-next.0",
|
|
78
|
+
"@backstage/plugin-search-common": "1.2.22-next.0",
|
|
79
|
+
"@backstage/plugin-search-react": "1.10.3-next.0",
|
|
80
|
+
"@backstage/types": "1.2.2",
|
|
81
|
+
"@backstage/version-bridge": "1.0.11",
|
|
82
82
|
"@material-ui/core": "^4.12.2",
|
|
83
83
|
"@material-ui/icons": "^4.9.1",
|
|
84
84
|
"qs": "^6.9.4",
|
|
85
85
|
"react-use": "^17.2.4"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@backstage/cli": "
|
|
89
|
-
"@backstage/core-app-api": "
|
|
90
|
-
"@backstage/dev-utils": "
|
|
91
|
-
"@backstage/test-utils": "
|
|
88
|
+
"@backstage/cli": "0.35.3-next.0",
|
|
89
|
+
"@backstage/core-app-api": "1.19.4-next.0",
|
|
90
|
+
"@backstage/dev-utils": "1.1.20-next.0",
|
|
91
|
+
"@backstage/test-utils": "1.7.15-next.0",
|
|
92
92
|
"@testing-library/dom": "^10.0.0",
|
|
93
93
|
"@testing-library/jest-dom": "^6.0.0",
|
|
94
94
|
"@testing-library/react": "^16.0.0",
|