@7shifts/sous-chef 4.7.0 → 4.7.1
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/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -681,7 +681,7 @@ var calculateOverlayPosition$2 = function calculateOverlayPosition(actualPlaceme
|
|
|
681
681
|
}
|
|
682
682
|
// some maths to align the tooltip with whatever you just hovered over (the 'target')
|
|
683
683
|
var position = {
|
|
684
|
-
width: tooltipWidth - PADDING * 2,
|
|
684
|
+
width: Math.ceil(tooltipWidth) - PADDING * 2,
|
|
685
685
|
left: 0,
|
|
686
686
|
top: 0
|
|
687
687
|
};
|
|
@@ -16709,10 +16709,10 @@ var RadioGroupBoxOption = function RadioGroupBoxOption(_ref) {
|
|
|
16709
16709
|
id: inputId
|
|
16710
16710
|
});
|
|
16711
16711
|
return React__default["default"].createElement("label", {
|
|
16712
|
-
className: styles$u['radio-group-box-option']
|
|
16712
|
+
className: styles$u['radio-group-box-option'],
|
|
16713
|
+
"data-testid": testId
|
|
16713
16714
|
}, React__default["default"].createElement("input", {
|
|
16714
16715
|
type: "radio",
|
|
16715
|
-
"data-testid": testId,
|
|
16716
16716
|
id: id,
|
|
16717
16717
|
name: radioGroupContext.name,
|
|
16718
16718
|
value: value,
|