@bigbinary/neetoui 6.5.2 → 6.5.4
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 +12 -5
- package/index.cjs.js.map +1 -1
- package/index.css +2 -2
- package/index.js +12 -5
- package/index.js.map +1 -1
- package/package.json +1 -1
package/formik.cjs.js
CHANGED
|
@@ -18849,14 +18849,15 @@ var Label = function Label(_ref) {
|
|
|
18849
18849
|
otherHelpIconProps = _objectWithoutProperties$1(_ref2, _excluded2$2);
|
|
18850
18850
|
var HelpIcon = icon || neetoIcons.Help;
|
|
18851
18851
|
return /*#__PURE__*/React__default["default"].createElement("label", _extends$2({
|
|
18852
|
-
className: classnames$1("neeto-ui-label
|
|
18852
|
+
className: classnames$1("neeto-ui-label", className)
|
|
18853
18853
|
}, otherProps), children, required && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
18854
|
-
"aria-hidden": true
|
|
18854
|
+
"aria-hidden": true,
|
|
18855
|
+
className: "neeto-ui-inline-flex"
|
|
18855
18856
|
}, "*"), helpIconProps && /*#__PURE__*/React__default["default"].createElement(Tooltip, _extends$2({}, tooltipProps, {
|
|
18856
18857
|
disabled: !tooltipProps
|
|
18857
18858
|
}), /*#__PURE__*/React__default["default"].createElement("span", {
|
|
18858
18859
|
onClick: onClick,
|
|
18859
|
-
className: classnames$1("neeto-ui-label__help-icon-wrap", _defineProperty$1({}, helpIconClassName, helpIconClassName))
|
|
18860
|
+
className: classnames$1("neeto-ui-label__help-icon-wrap neeto-ui-inline-flex", _defineProperty$1({}, helpIconClassName, helpIconClassName))
|
|
18860
18861
|
}, /*#__PURE__*/React__default["default"].createElement(HelpIcon, _extends$2({
|
|
18861
18862
|
size: 16
|
|
18862
18863
|
}, otherHelpIconProps)))));
|