@zykj2024/much-library 1.2.2 → 1.2.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.
@@ -27,6 +27,8 @@ export var isLabelInValue = function isLabelInValue(value) {
|
|
27
27
|
var ListSelectPanel = /*#__PURE__*/forwardRef(function (props, ref) {
|
28
28
|
var _props$title = props.title,
|
29
29
|
title = _props$title === void 0 ? '可选项' : _props$title,
|
30
|
+
_props$searchPlacehol = props.searchPlaceholder,
|
31
|
+
searchPlaceholder = _props$searchPlacehol === void 0 ? '请输入关键词' : _props$searchPlacehol,
|
30
32
|
options = props.options,
|
31
33
|
fetchOptions = props.fetchOptions,
|
32
34
|
_props$pageSize = props.pageSize,
|
@@ -305,6 +307,7 @@ var ListSelectPanel = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
305
307
|
}), /*#__PURE__*/_jsx("div", {
|
306
308
|
className: "mc-list-select-panel__card__search",
|
307
309
|
children: /*#__PURE__*/_jsx(McInput.Search, {
|
310
|
+
placeholder: searchPlaceholder,
|
308
311
|
value: keyword,
|
309
312
|
onChange: setKeyword,
|
310
313
|
onSearch: function onSearch() {
|