Skip to content

Commit ea430ce

Browse files
authored
Create a new dist version 2.2.6 (#339)
Collecting: - Fix [Tooltip] add ref (#337) - Impl [UI] Show details in a popup instead of redirection (#338)
1 parent cf7261f commit ea430ce

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

commit_message

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11

22

3-
Create a new dist version 2.2.5
3+
Create a new dist version 2.2.6
44

55
Collecting:
6-
- Cleanup [React] Replace createRef across the code (#333)
7-
- Fix [Labels chip] duplicated id (#334)
8-
- Fix [Feature store, Models] Label editing action issues (#335)
6+
- Fix [Tooltip] add ref (#337)
7+
- Impl [UI] Show details in a popup instead of redirection (#338)

dist/components/Modal/Modal.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ const Modal = _ref => {
3838
actions = [],
3939
children,
4040
className,
41+
noHeader = false,
4142
onClose,
4243
previewText = '',
4344
size = _constants.MODAL_MD,
@@ -68,7 +69,7 @@ const Modal = _ref => {
6869
})
6970
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
7071
className: "modal__content",
71-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
72+
children: [!noHeader && /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
7273
className: "modal__header",
7374
children: [previewText && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
7475
className: "modal__header-preview-text",

dist/components/Tooltip/Tooltip.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ const Tooltip = _ref => {
158158
in: show,
159159
timeout: duration,
160160
unmountOnExit: true,
161+
nodeRef: tooltipRef,
161162
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
162163
"data-testid": id ? "".concat(id, "-tooltip") : 'tooltip',
163164
ref: tooltipRef,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iguazio.dashboard-react-controls",
3-
"version": "2.2.5",
3+
"version": "2.2.6",
44
"description": "Collection of resources (such as CSS styles, fonts and images) and ReactJS 17.x components to share among different Iguazio React repos.",
55
"main": "dist/index.js",
66
"module": "dist/index.js",

0 commit comments

Comments
 (0)