@backstage/plugin-catalog-react 0.0.0-nightly-20230111022819 → 0.0.0-nightly-20230113023010
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 +12 -11
- package/alpha/package.json +1 -1
- package/dist/index.esm.js +9 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20230113023010
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 37426f6f5e: Fixed bug in `EntityTagPicker` that filtered on unavailable tags for the selected kind.
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
- @backstage/catalog-
|
|
12
|
-
- @backstage/
|
|
13
|
-
- @backstage/core-
|
|
14
|
-
- @backstage/plugin-
|
|
8
|
+
- 516b2039b6b: Add a reusable pop over `EntityPeekAheadPopover` component. It shows more details about the associated entity. See the playbook here https://backstage.io/storybook/?path=/story/catalog-entitypeekaheadpopover--default
|
|
9
|
+
- 0e33627996: Remove usage of raw span
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/catalog-model@0.0.0-nightly-20230113023010
|
|
12
|
+
- @backstage/catalog-client@0.0.0-nightly-20230113023010
|
|
13
|
+
- @backstage/core-components@0.0.0-nightly-20230113023010
|
|
14
|
+
- @backstage/core-plugin-api@0.0.0-nightly-20230113023010
|
|
15
|
+
- @backstage/plugin-permission-react@0.0.0-nightly-20230113023010
|
|
15
16
|
- @backstage/errors@1.1.4
|
|
16
|
-
- @backstage/integration@0.0.0-nightly-
|
|
17
|
+
- @backstage/integration@0.0.0-nightly-20230113023010
|
|
17
18
|
- @backstage/theme@0.2.16
|
|
18
19
|
- @backstage/types@1.0.2
|
|
19
20
|
- @backstage/version-bridge@1.0.3
|
|
20
|
-
- @backstage/plugin-catalog-common@0.0.0-nightly-
|
|
21
|
-
- @backstage/plugin-permission-common@0.0.0-nightly-
|
|
21
|
+
- @backstage/plugin-catalog-common@0.0.0-nightly-20230113023010
|
|
22
|
+
- @backstage/plugin-permission-common@0.0.0-nightly-20230113023010
|
|
22
23
|
|
|
23
24
|
## 1.2.4-next.2
|
|
24
25
|
|
package/alpha/package.json
CHANGED
package/dist/index.esm.js
CHANGED
|
@@ -1230,7 +1230,15 @@ const EntityPeekAheadPopover = (props) => {
|
|
|
1230
1230
|
load();
|
|
1231
1231
|
}
|
|
1232
1232
|
}, [popupState.isOpen, load, entity, error, loading]);
|
|
1233
|
-
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
1233
|
+
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(Typography, { component: "span", onMouseEnter: debouncedHandleMouseEnter }, /* @__PURE__ */ React.createElement(
|
|
1234
|
+
Typography,
|
|
1235
|
+
{
|
|
1236
|
+
component: "span",
|
|
1237
|
+
"data-testid": "trigger",
|
|
1238
|
+
...bindHover(popupState)
|
|
1239
|
+
},
|
|
1240
|
+
children
|
|
1241
|
+
)), isHovered && /* @__PURE__ */ React.createElement(
|
|
1234
1242
|
HoverPopover,
|
|
1235
1243
|
{
|
|
1236
1244
|
PaperProps: {
|