@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.cjs.js
CHANGED
|
@@ -20879,14 +20879,15 @@ var Label = function Label(_ref) {
|
|
|
20879
20879
|
otherHelpIconProps = _objectWithoutProperties$1(_ref2, _excluded2$3);
|
|
20880
20880
|
var HelpIcon = icon || neetoIcons.Help;
|
|
20881
20881
|
return /*#__PURE__*/React__default["default"].createElement("label", _extends$4({
|
|
20882
|
-
className: classnames$1("neeto-ui-label
|
|
20882
|
+
className: classnames$1("neeto-ui-label", className)
|
|
20883
20883
|
}, otherProps), children, required && /*#__PURE__*/React__default["default"].createElement("span", {
|
|
20884
|
-
"aria-hidden": true
|
|
20884
|
+
"aria-hidden": true,
|
|
20885
|
+
className: "neeto-ui-inline-flex"
|
|
20885
20886
|
}, "*"), helpIconProps && /*#__PURE__*/React__default["default"].createElement(Tooltip, _extends$4({}, tooltipProps, {
|
|
20886
20887
|
disabled: !tooltipProps
|
|
20887
20888
|
}), /*#__PURE__*/React__default["default"].createElement("span", {
|
|
20888
20889
|
onClick: onClick,
|
|
20889
|
-
className: classnames$1("neeto-ui-label__help-icon-wrap", _defineProperty$7({}, helpIconClassName, helpIconClassName))
|
|
20890
|
+
className: classnames$1("neeto-ui-label__help-icon-wrap neeto-ui-inline-flex", _defineProperty$7({}, helpIconClassName, helpIconClassName))
|
|
20890
20891
|
}, /*#__PURE__*/React__default["default"].createElement(HelpIcon, _extends$4({
|
|
20891
20892
|
size: 16
|
|
20892
20893
|
}, otherHelpIconProps)))));
|