@bigbinary/neetoui 6.5.2 → 6.5.3
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/formik.cjs.js +4 -3
- package/formik.cjs.js.map +1 -1
- package/formik.js +4 -3
- package/formik.js.map +1 -1
- package/index.cjs.js +4 -3
- package/index.cjs.js.map +1 -1
- package/index.css +2 -2
- package/index.js +4 -3
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -20845,14 +20845,15 @@ var Label = function Label(_ref) {
|
|
|
20845
20845
|
otherHelpIconProps = _objectWithoutProperties$1(_ref2, _excluded2$3);
|
|
20846
20846
|
var HelpIcon = icon || Help;
|
|
20847
20847
|
return /*#__PURE__*/React__default.createElement("label", _extends$4({
|
|
20848
|
-
className: classnames$1("neeto-ui-label
|
|
20848
|
+
className: classnames$1("neeto-ui-label", className)
|
|
20849
20849
|
}, otherProps), children, required && /*#__PURE__*/React__default.createElement("span", {
|
|
20850
|
-
"aria-hidden": true
|
|
20850
|
+
"aria-hidden": true,
|
|
20851
|
+
className: "neeto-ui-inline-flex"
|
|
20851
20852
|
}, "*"), helpIconProps && /*#__PURE__*/React__default.createElement(Tooltip, _extends$4({}, tooltipProps, {
|
|
20852
20853
|
disabled: !tooltipProps
|
|
20853
20854
|
}), /*#__PURE__*/React__default.createElement("span", {
|
|
20854
20855
|
onClick: onClick,
|
|
20855
|
-
className: classnames$1("neeto-ui-label__help-icon-wrap", _defineProperty$7({}, helpIconClassName, helpIconClassName))
|
|
20856
|
+
className: classnames$1("neeto-ui-label__help-icon-wrap neeto-ui-inline-flex", _defineProperty$7({}, helpIconClassName, helpIconClassName))
|
|
20856
20857
|
}, /*#__PURE__*/React__default.createElement(HelpIcon, _extends$4({
|
|
20857
20858
|
size: 16
|
|
20858
20859
|
}, otherHelpIconProps)))));
|