@bigbinary/neetoui 5.2.39 → 5.2.40
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.js +4 -3
- package/index.js.map +1 -1
- package/package.json +1 -1
package/formik.js
CHANGED
|
@@ -25211,9 +25211,10 @@ var STRATEGIES = {
|
|
|
25211
25211
|
var Control = function Control(_ref) {
|
|
25212
25212
|
var children = _ref.children,
|
|
25213
25213
|
props = _objectWithoutProperties$1(_ref, _excluded$9);
|
|
25214
|
-
var selectProps = props.selectProps
|
|
25215
|
-
|
|
25216
|
-
|
|
25214
|
+
var selectProps = props.selectProps,
|
|
25215
|
+
hasValue = props.hasValue;
|
|
25216
|
+
return /*#__PURE__*/React__default.createElement(components.Control, props, hasValue && selectProps.isMulti && /*#__PURE__*/React__default.createElement("span", {
|
|
25217
|
+
className: "neeto-ui-btn neeto-ui-btn--style-secondary neeto-ui-react-select__add-btn"
|
|
25217
25218
|
}, selectProps.addButtonLabel || "Add"), " ", children);
|
|
25218
25219
|
};
|
|
25219
25220
|
var DropdownIndicator = function DropdownIndicator(props) {
|