@bigbinary/neetoui 6.3.0 → 6.3.2
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 +3 -3
- package/formik.cjs.js.map +1 -1
- package/formik.js +4 -4
- package/formik.js.map +1 -1
- package/index.cjs.js +79 -45
- package/index.cjs.js.map +1 -1
- package/index.js +80 -46
- package/index.js.map +1 -1
- package/package.json +1 -1
package/formik.js
CHANGED
|
@@ -4,7 +4,7 @@ import { useFormikContext, Field, Form as Form$1, Formik, useField } from 'formi
|
|
|
4
4
|
import { isEmpty, equals, mergeLeft, toPairs, is, replace as replace$1, assoc, pluck, prop, flatten, either, isNil } from 'ramda';
|
|
5
5
|
import { Link, useHistory } from 'react-router-dom';
|
|
6
6
|
import ReactDOM, { createPortal } from 'react-dom';
|
|
7
|
-
import { Close,
|
|
7
|
+
import { Close, Help, Down, Check } from '@bigbinary/neeto-icons';
|
|
8
8
|
import { _existsBy } from '@bigbinary/neeto-cist';
|
|
9
9
|
import _ConfigProvider from 'antd/lib/config-provider';
|
|
10
10
|
import _Slider from 'antd/lib/slider';
|
|
@@ -18812,7 +18812,7 @@ var Label = function Label(_ref) {
|
|
|
18812
18812
|
tooltipProps = _ref2.tooltipProps,
|
|
18813
18813
|
helpIconClassName = _ref2.className,
|
|
18814
18814
|
otherHelpIconProps = _objectWithoutProperties$1(_ref2, _excluded2$2);
|
|
18815
|
-
var HelpIcon = icon ||
|
|
18815
|
+
var HelpIcon = icon || Help;
|
|
18816
18816
|
return /*#__PURE__*/React__default.createElement("label", _extends$2({
|
|
18817
18817
|
className: classnames$1("neeto-ui-label neeto-ui-flex neeto-ui-items-center", className)
|
|
18818
18818
|
}, otherProps), children, required && /*#__PURE__*/React__default.createElement("span", {
|
|
@@ -18820,8 +18820,8 @@ var Label = function Label(_ref) {
|
|
|
18820
18820
|
}, "*"), helpIconProps && /*#__PURE__*/React__default.createElement(Tooltip, _extends$2({}, tooltipProps, {
|
|
18821
18821
|
disabled: !tooltipProps
|
|
18822
18822
|
}), /*#__PURE__*/React__default.createElement("span", {
|
|
18823
|
-
|
|
18824
|
-
|
|
18823
|
+
onClick: onClick,
|
|
18824
|
+
className: classnames$1("neeto-ui-label__help-icon-wrap", _defineProperty$1({}, helpIconClassName, helpIconClassName))
|
|
18825
18825
|
}, /*#__PURE__*/React__default.createElement(HelpIcon, _extends$2({
|
|
18826
18826
|
size: 16
|
|
18827
18827
|
}, otherHelpIconProps)))));
|