feffery_antd_components 0.4.3-rc1 → 0.4.3-rc2
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/DESCRIPTION +1 -1
- package/Project.toml +1 -1
- package/README-en_US.md +1 -1
- package/README.md +1 -1
- package/feffery_antd_components/AntdSelect.py +6 -2
- package/feffery_antd_components/async-data_entry.js +1 -1
- package/feffery_antd_components/feffery_antd_components.min.js +2 -2
- package/feffery_antd_components/metadata.json +1 -1
- package/feffery_antd_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/jl/'feffery'_antdselect.jl +2 -1
- package/src/lib/components/dataEntry/AntdSelect.react.js +7 -0
- package/src/lib/fragments/dataEntry/AntdSelect.react.js +2 -1
- package/tests/dataEntry/AntdSelect/feat_show_search.py +32 -0
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
package/README-en_US.md
CHANGED
|
@@ -33,7 +33,7 @@ pip install feffery-antd-components -U
|
|
|
33
33
|
## 2 Install the latest preview release version
|
|
34
34
|
|
|
35
35
|
> [!NOTE]
|
|
36
|
-
> The latest preview release version (2025-
|
|
36
|
+
> The latest preview release version (2025-10-11): `0.4.3rc2`
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
pip install feffery-antd-components --pre -U
|
package/README.md
CHANGED
|
@@ -187,6 +187,9 @@ Keyword arguments:
|
|
|
187
187
|
- maxCount (number; optional):
|
|
188
188
|
`'multiple'`及 `'tags'`模式下有效,限制已选项数量上限.
|
|
189
189
|
|
|
190
|
+
- showSearch (boolean; optional):
|
|
191
|
+
是否开启输入框可搜索功能.
|
|
192
|
+
|
|
190
193
|
- popupContainer (a value equal to: 'parent', 'body'; default 'body'):
|
|
191
194
|
相关展开层锚定策略,可选项有`'parent'`、`'body'` 默认值:`'body'`.
|
|
192
195
|
|
|
@@ -277,6 +280,7 @@ Keyword arguments:
|
|
|
277
280
|
popupMatchSelectWidth: typing.Optional[bool] = None,
|
|
278
281
|
readOnly: typing.Optional[bool] = None,
|
|
279
282
|
maxCount: typing.Optional[NumberType] = None,
|
|
283
|
+
showSearch: typing.Optional[bool] = None,
|
|
280
284
|
popupContainer: typing.Optional[Literal["parent", "body"]] = None,
|
|
281
285
|
batchPropsNames: typing.Optional[typing.Sequence[str]] = None,
|
|
282
286
|
batchPropsValues: typing.Optional[dict] = None,
|
|
@@ -285,9 +289,9 @@ Keyword arguments:
|
|
|
285
289
|
persistence_type: typing.Optional[Literal["local", "session", "memory"]] = None,
|
|
286
290
|
**kwargs
|
|
287
291
|
):
|
|
288
|
-
self._prop_names = ['id', 'key', 'style', 'className', 'popupClassName', 'name', 'enableBatchControl', 'locale', 'options', 'listHeight', 'colorsMode', 'colorsNameWidth', 'mode', 'disabled', 'size', 'bordered', 'variant', 'placeholder', 'placement', 'value', 'defaultValue', 'maxTagCount', 'status', 'optionFilterProp', 'searchValue', 'optionFilterMode', 'debounceSearchValue', 'debounceWait', 'autoSpin', 'autoClearSearchValue', 'emptyContent', 'loadingEmptyContent', 'dropdownBefore', 'dropdownAfter', 'prefix', 'suffixIcon', 'allowClear', 'autoFocus', 'popupMatchSelectWidth', 'readOnly', 'maxCount', 'popupContainer', 'batchPropsNames', 'batchPropsValues', 'data-*', 'aria-*', 'persistence', 'persisted_props', 'persistence_type']
|
|
292
|
+
self._prop_names = ['id', 'key', 'style', 'className', 'popupClassName', 'name', 'enableBatchControl', 'locale', 'options', 'listHeight', 'colorsMode', 'colorsNameWidth', 'mode', 'disabled', 'size', 'bordered', 'variant', 'placeholder', 'placement', 'value', 'defaultValue', 'maxTagCount', 'status', 'optionFilterProp', 'searchValue', 'optionFilterMode', 'debounceSearchValue', 'debounceWait', 'autoSpin', 'autoClearSearchValue', 'emptyContent', 'loadingEmptyContent', 'dropdownBefore', 'dropdownAfter', 'prefix', 'suffixIcon', 'allowClear', 'autoFocus', 'popupMatchSelectWidth', 'readOnly', 'maxCount', 'showSearch', 'popupContainer', 'batchPropsNames', 'batchPropsValues', 'data-*', 'aria-*', 'persistence', 'persisted_props', 'persistence_type']
|
|
289
293
|
self._valid_wildcard_attributes = ['data-', 'aria-']
|
|
290
|
-
self.available_properties = ['id', 'key', 'style', 'className', 'popupClassName', 'name', 'enableBatchControl', 'locale', 'options', 'listHeight', 'colorsMode', 'colorsNameWidth', 'mode', 'disabled', 'size', 'bordered', 'variant', 'placeholder', 'placement', 'value', 'defaultValue', 'maxTagCount', 'status', 'optionFilterProp', 'searchValue', 'optionFilterMode', 'debounceSearchValue', 'debounceWait', 'autoSpin', 'autoClearSearchValue', 'emptyContent', 'loadingEmptyContent', 'dropdownBefore', 'dropdownAfter', 'prefix', 'suffixIcon', 'allowClear', 'autoFocus', 'popupMatchSelectWidth', 'readOnly', 'maxCount', 'popupContainer', 'batchPropsNames', 'batchPropsValues', 'data-*', 'aria-*', 'persistence', 'persisted_props', 'persistence_type']
|
|
294
|
+
self.available_properties = ['id', 'key', 'style', 'className', 'popupClassName', 'name', 'enableBatchControl', 'locale', 'options', 'listHeight', 'colorsMode', 'colorsNameWidth', 'mode', 'disabled', 'size', 'bordered', 'variant', 'placeholder', 'placement', 'value', 'defaultValue', 'maxTagCount', 'status', 'optionFilterProp', 'searchValue', 'optionFilterMode', 'debounceSearchValue', 'debounceWait', 'autoSpin', 'autoClearSearchValue', 'emptyContent', 'loadingEmptyContent', 'dropdownBefore', 'dropdownAfter', 'prefix', 'suffixIcon', 'allowClear', 'autoFocus', 'popupMatchSelectWidth', 'readOnly', 'maxCount', 'showSearch', 'popupContainer', 'batchPropsNames', 'batchPropsValues', 'data-*', 'aria-*', 'persistence', 'persisted_props', 'persistence_type']
|
|
291
295
|
self.available_wildcard_properties = ['data-', 'aria-']
|
|
292
296
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
293
297
|
_locals = locals()
|