@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/formik.js
CHANGED
|
@@ -18819,14 +18819,15 @@ var Label = function Label(_ref) {
|
|
|
18819
18819
|
otherHelpIconProps = _objectWithoutProperties$1(_ref2, _excluded2$2);
|
|
18820
18820
|
var HelpIcon = icon || Help;
|
|
18821
18821
|
return /*#__PURE__*/React__default.createElement("label", _extends$2({
|
|
18822
|
-
className: classnames$1("neeto-ui-label
|
|
18822
|
+
className: classnames$1("neeto-ui-label", className)
|
|
18823
18823
|
}, otherProps), children, required && /*#__PURE__*/React__default.createElement("span", {
|
|
18824
|
-
"aria-hidden": true
|
|
18824
|
+
"aria-hidden": true,
|
|
18825
|
+
className: "neeto-ui-inline-flex"
|
|
18825
18826
|
}, "*"), helpIconProps && /*#__PURE__*/React__default.createElement(Tooltip, _extends$2({}, tooltipProps, {
|
|
18826
18827
|
disabled: !tooltipProps
|
|
18827
18828
|
}), /*#__PURE__*/React__default.createElement("span", {
|
|
18828
18829
|
onClick: onClick,
|
|
18829
|
-
className: classnames$1("neeto-ui-label__help-icon-wrap", _defineProperty$1({}, helpIconClassName, helpIconClassName))
|
|
18830
|
+
className: classnames$1("neeto-ui-label__help-icon-wrap neeto-ui-inline-flex", _defineProperty$1({}, helpIconClassName, helpIconClassName))
|
|
18830
18831
|
}, /*#__PURE__*/React__default.createElement(HelpIcon, _extends$2({
|
|
18831
18832
|
size: 16
|
|
18832
18833
|
}, otherHelpIconProps)))));
|