@sis-cc/dotstatsuite-visions 7.17.8 → 7.17.9
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/es/ScopeList/Item.js +7 -9
- package/lib/ScopeList/Item.js +7 -9
- package/package.json +1 -1
package/es/ScopeList/Item.js
CHANGED
|
@@ -118,20 +118,18 @@ var Item = function Item(_ref) {
|
|
|
118
118
|
title: R.or(R.isNil(HTMLRenderer), R.isEmpty(description)) ? description : React.createElement(HTMLRenderer, { html: description, onClick: function onClick(e) {
|
|
119
119
|
return e.stopPropagation();
|
|
120
120
|
} }),
|
|
121
|
-
PopperProps: {
|
|
122
|
-
onMouseEnter: function onMouseEnter() {
|
|
123
|
-
return setIsTooltipShown(true);
|
|
124
|
-
},
|
|
125
|
-
onMouseLeave: function onMouseLeave() {
|
|
126
|
-
return setIsTooltipShown(false);
|
|
127
|
-
}
|
|
128
|
-
},
|
|
129
121
|
enterDelay: 400,
|
|
130
122
|
tabIndex: 0,
|
|
131
123
|
'aria-label': description,
|
|
132
124
|
'aria-hidden': false,
|
|
133
125
|
placement: 'top',
|
|
134
|
-
interactive: Boolean(HTMLRenderer)
|
|
126
|
+
interactive: Boolean(HTMLRenderer),
|
|
127
|
+
onOpen: function onOpen() {
|
|
128
|
+
return setIsTooltipShown(true);
|
|
129
|
+
},
|
|
130
|
+
onClose: function onClose() {
|
|
131
|
+
return setIsTooltipShown(false);
|
|
132
|
+
}
|
|
135
133
|
},
|
|
136
134
|
React.createElement(
|
|
137
135
|
Typography,
|
package/lib/ScopeList/Item.js
CHANGED
|
@@ -156,20 +156,18 @@ var Item = function Item(_ref) {
|
|
|
156
156
|
title: R.or(R.isNil(HTMLRenderer), R.isEmpty(description)) ? description : _react2.default.createElement(HTMLRenderer, { html: description, onClick: function onClick(e) {
|
|
157
157
|
return e.stopPropagation();
|
|
158
158
|
} }),
|
|
159
|
-
PopperProps: {
|
|
160
|
-
onMouseEnter: function onMouseEnter() {
|
|
161
|
-
return setIsTooltipShown(true);
|
|
162
|
-
},
|
|
163
|
-
onMouseLeave: function onMouseLeave() {
|
|
164
|
-
return setIsTooltipShown(false);
|
|
165
|
-
}
|
|
166
|
-
},
|
|
167
159
|
enterDelay: 400,
|
|
168
160
|
tabIndex: 0,
|
|
169
161
|
'aria-label': description,
|
|
170
162
|
'aria-hidden': false,
|
|
171
163
|
placement: 'top',
|
|
172
|
-
interactive: Boolean(HTMLRenderer)
|
|
164
|
+
interactive: Boolean(HTMLRenderer),
|
|
165
|
+
onOpen: function onOpen() {
|
|
166
|
+
return setIsTooltipShown(true);
|
|
167
|
+
},
|
|
168
|
+
onClose: function onClose() {
|
|
169
|
+
return setIsTooltipShown(false);
|
|
170
|
+
}
|
|
173
171
|
},
|
|
174
172
|
_react2.default.createElement(
|
|
175
173
|
_Typography2.default,
|