intelicoreact 0.2.38 → 0.2.39
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.
|
@@ -43,6 +43,7 @@ var TagsDropdown = function TagsDropdown(_ref) {
|
|
|
43
43
|
className = _ref.className,
|
|
44
44
|
tagClassname = _ref.tagClassname,
|
|
45
45
|
onKeyPress = _ref.onKeyPress,
|
|
46
|
+
placeholder = _ref.placeholder,
|
|
46
47
|
label = _ref.label,
|
|
47
48
|
isLabelBold = _ref.isLabelBold,
|
|
48
49
|
hint = _ref.hint,
|
|
@@ -155,7 +156,7 @@ var TagsDropdown = function TagsDropdown(_ref) {
|
|
|
155
156
|
onChange: function onChange(e) {
|
|
156
157
|
return onSearchHandler(e.target.value);
|
|
157
158
|
},
|
|
158
|
-
placeholder: "Select from list",
|
|
159
|
+
placeholder: placeholder || "Select from list",
|
|
159
160
|
onKeyDown: function onKeyDown(e) {
|
|
160
161
|
return onKeyPress(e, searchValue);
|
|
161
162
|
}
|