|
| 1 | +diff --git a/node_modules/react-select/.DS_Store b/node_modules/react-select/.DS_Store |
| 2 | +new file mode 100644 |
| 3 | +index 0000000..5008ddf |
| 4 | +Binary files /dev/null and b/node_modules/react-select/.DS_Store differ |
| 5 | +diff --git a/node_modules/react-select/dist/declarations/src/components/Input.d.ts b/node_modules/react-select/dist/declarations/src/components/Input.d.ts |
| 6 | +index e5f6741..c78fd13 100644 |
| 7 | +--- a/node_modules/react-select/dist/declarations/src/components/Input.d.ts |
| 8 | ++++ b/node_modules/react-select/dist/declarations/src/components/Input.d.ts |
| 9 | +@@ -13,6 +13,8 @@ export interface InputSpecificProps<Option = unknown, IsMulti extends boolean = |
| 10 | + form?: string; |
| 11 | + /** Set className for the input element */ |
| 12 | + inputClassName?: string; |
| 13 | ++ /** Whether the input is textarea */ |
| 14 | ++ isTextArea?: boolean; |
| 15 | + } |
| 16 | + export declare type InputProps<Option = unknown, IsMulti extends boolean = boolean, Group extends GroupBase<Option> = GroupBase<Option>> = InputSpecificProps<Option, IsMulti, Group>; |
| 17 | + export declare const inputCSS: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>({ isDisabled, value, theme: { spacing, colors }, }: InputProps<Option, IsMulti, Group>, unstyled: boolean) => CSSObjectWithLabel; |
| 18 | +diff --git a/node_modules/react-select/dist/index-665c4ed8.cjs.prod.js b/node_modules/react-select/dist/index-665c4ed8.cjs.prod.js |
| 19 | +index 96cd04f..0636ebe 100644 |
| 20 | +--- a/node_modules/react-select/dist/index-665c4ed8.cjs.prod.js |
| 21 | ++++ b/node_modules/react-select/dist/index-665c4ed8.cjs.prod.js |
| 22 | +@@ -1090,7 +1090,7 @@ var GroupHeading = function GroupHeading(props) { |
| 23 | + }; |
| 24 | + var Group$1 = Group; |
| 25 | + |
| 26 | +-var _excluded = ["innerRef", "isDisabled", "isHidden", "inputClassName"]; |
| 27 | ++var _excluded = ["innerRef", "isDisabled", "isHidden", "isTextArea", "inputClassName"]; |
| 28 | + var inputCSS = function inputCSS(_ref, unstyled) { |
| 29 | + var isDisabled = _ref.isDisabled, |
| 30 | + value = _ref.value, |
| 31 | +@@ -1145,13 +1145,25 @@ var Input = function Input(props) { |
| 32 | + innerRef = _cleanCommonProps.innerRef, |
| 33 | + isDisabled = _cleanCommonProps.isDisabled, |
| 34 | + isHidden = _cleanCommonProps.isHidden, |
| 35 | ++ isTextArea = _cleanCommonProps.isTextArea, |
| 36 | + inputClassName = _cleanCommonProps.inputClassName, |
| 37 | + innerProps = _objectWithoutProperties(_cleanCommonProps, _excluded); |
| 38 | + return react.jsx("div", _extends({}, getStyleProps(props, 'input', { |
| 39 | + 'input-container': true |
| 40 | + }), { |
| 41 | + "data-value": value || '' |
| 42 | +- }), react.jsx("input", _extends({ |
| 43 | ++ }), isTextArea ? react.jsx("textarea", _extends({ |
| 44 | ++ className: cx({ |
| 45 | ++ input: true |
| 46 | ++ }, inputClassName), |
| 47 | ++ ref: innerRef, |
| 48 | ++ style: _objectSpread(_objectSpread({}, inputStyle(isHidden)), {}, { |
| 49 | ++ resize: 'none' |
| 50 | ++ }), |
| 51 | ++ disabled: isDisabled |
| 52 | ++ }, innerProps, { |
| 53 | ++ rows: 1 |
| 54 | ++ })) : react.jsx("input", _extends({ |
| 55 | + className: cx({ |
| 56 | + input: true |
| 57 | + }, inputClassName), |
| 58 | +diff --git a/node_modules/react-select/dist/index-a301f526.esm.js b/node_modules/react-select/dist/index-a301f526.esm.js |
| 59 | +index 514ba81..40d005d 100644 |
| 60 | +--- a/node_modules/react-select/dist/index-a301f526.esm.js |
| 61 | ++++ b/node_modules/react-select/dist/index-a301f526.esm.js |
| 62 | +@@ -1090,7 +1090,7 @@ var GroupHeading = function GroupHeading(props) { |
| 63 | + }; |
| 64 | + var Group$1 = Group; |
| 65 | + |
| 66 | +-var _excluded = ["innerRef", "isDisabled", "isHidden", "inputClassName"]; |
| 67 | ++var _excluded = ["innerRef", "isDisabled", "isHidden", "isTextArea", "inputClassName"]; |
| 68 | + var inputCSS = function inputCSS(_ref, unstyled) { |
| 69 | + var isDisabled = _ref.isDisabled, |
| 70 | + value = _ref.value, |
| 71 | +@@ -1145,13 +1145,25 @@ var Input = function Input(props) { |
| 72 | + innerRef = _cleanCommonProps.innerRef, |
| 73 | + isDisabled = _cleanCommonProps.isDisabled, |
| 74 | + isHidden = _cleanCommonProps.isHidden, |
| 75 | ++ isTextArea = _cleanCommonProps.isTextArea, |
| 76 | + inputClassName = _cleanCommonProps.inputClassName, |
| 77 | + innerProps = _objectWithoutProperties(_cleanCommonProps, _excluded); |
| 78 | + return jsx("div", _extends({}, getStyleProps(props, 'input', { |
| 79 | + 'input-container': true |
| 80 | + }), { |
| 81 | + "data-value": value || '' |
| 82 | +- }), jsx("input", _extends({ |
| 83 | ++ }), isTextArea ? jsx("textarea", _extends({ |
| 84 | ++ className: cx({ |
| 85 | ++ input: true |
| 86 | ++ }, inputClassName), |
| 87 | ++ ref: innerRef, |
| 88 | ++ style: _objectSpread(_objectSpread({}, inputStyle(isHidden)), {}, { |
| 89 | ++ resize: 'none' |
| 90 | ++ }), |
| 91 | ++ disabled: isDisabled |
| 92 | ++ }, innerProps, { |
| 93 | ++ rows: 1 |
| 94 | ++ })) : jsx("input", _extends({ |
| 95 | + className: cx({ |
| 96 | + input: true |
| 97 | + }, inputClassName), |
| 98 | +diff --git a/node_modules/react-select/dist/index-d1cb43f3.cjs.dev.js b/node_modules/react-select/dist/index-d1cb43f3.cjs.dev.js |
| 99 | +index 7defcdc..c8d796b 100644 |
| 100 | +--- a/node_modules/react-select/dist/index-d1cb43f3.cjs.dev.js |
| 101 | ++++ b/node_modules/react-select/dist/index-d1cb43f3.cjs.dev.js |
| 102 | +@@ -1096,7 +1096,7 @@ var GroupHeading = function GroupHeading(props) { |
| 103 | + }; |
| 104 | + var Group$1 = Group; |
| 105 | + |
| 106 | +-var _excluded = ["innerRef", "isDisabled", "isHidden", "inputClassName"]; |
| 107 | ++var _excluded = ["innerRef", "isDisabled", "isHidden", "isTextArea", "inputClassName"]; |
| 108 | + var inputCSS = function inputCSS(_ref, unstyled) { |
| 109 | + var isDisabled = _ref.isDisabled, |
| 110 | + value = _ref.value, |
| 111 | +@@ -1151,13 +1151,25 @@ var Input = function Input(props) { |
| 112 | + innerRef = _cleanCommonProps.innerRef, |
| 113 | + isDisabled = _cleanCommonProps.isDisabled, |
| 114 | + isHidden = _cleanCommonProps.isHidden, |
| 115 | ++ isTextArea = _cleanCommonProps.isTextArea, |
| 116 | + inputClassName = _cleanCommonProps.inputClassName, |
| 117 | + innerProps = _objectWithoutProperties(_cleanCommonProps, _excluded); |
| 118 | + return react.jsx("div", _extends({}, getStyleProps(props, 'input', { |
| 119 | + 'input-container': true |
| 120 | + }), { |
| 121 | + "data-value": value || '' |
| 122 | +- }), react.jsx("input", _extends({ |
| 123 | ++ }), isTextArea ? react.jsx("textarea", _extends({ |
| 124 | ++ className: cx({ |
| 125 | ++ input: true |
| 126 | ++ }, inputClassName), |
| 127 | ++ ref: innerRef, |
| 128 | ++ style: _objectSpread(_objectSpread({}, inputStyle(isHidden)), {}, { |
| 129 | ++ resize: 'none' |
| 130 | ++ }), |
| 131 | ++ disabled: isDisabled |
| 132 | ++ }, innerProps, { |
| 133 | ++ rows: 1 |
| 134 | ++ })) : react.jsx("input", _extends({ |
| 135 | + className: cx({ |
| 136 | + input: true |
| 137 | + }, inputClassName), |
0 commit comments