@backstage/plugin-catalog-react 1.1.0-next.1 → 1.1.0-next.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 +15 -0
- package/alpha/package.json +1 -1
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 1.1.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 57f41fb8d6: Make Menu item on filters accessible through keyboard
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-components@0.9.4-next.1
|
|
10
|
+
- @backstage/catalog-model@1.0.2-next.0
|
|
11
|
+
- @backstage/core-plugin-api@1.0.2-next.1
|
|
12
|
+
- @backstage/integration@1.2.0-next.1
|
|
13
|
+
- @backstage/plugin-permission-common@0.6.1-next.0
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.1-next.1
|
|
15
|
+
- @backstage/catalog-client@1.0.2-next.0
|
|
16
|
+
- @backstage/plugin-catalog-common@1.0.2-next.0
|
|
17
|
+
|
|
3
18
|
## 1.1.0-next.1
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.esm.js
CHANGED
|
@@ -2037,7 +2037,8 @@ const UserListPicker = (props) => {
|
|
|
2037
2037
|
selected: item.id === ((_a2 = filters.user) == null ? void 0 : _a2.value),
|
|
2038
2038
|
className: classes.menuItem,
|
|
2039
2039
|
disabled: filterCounts[item.id] === 0,
|
|
2040
|
-
"data-testid": `user-picker-${item.id}
|
|
2040
|
+
"data-testid": `user-picker-${item.id}`,
|
|
2041
|
+
tabIndex: 0
|
|
2041
2042
|
}, item.icon && /* @__PURE__ */ React.createElement(ListItemIcon, {
|
|
2042
2043
|
className: classes.listIcon
|
|
2043
2044
|
}, /* @__PURE__ */ React.createElement(item.icon, {
|