feffery_antd_components 0.4.3-rc2 → 0.4.3-rc3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  Package: fefferyAntdComponents
2
2
  Title: Best implementation of Antd components in Plotly Dash.
3
- Version: 0.4.3-rc2
3
+ Version: 0.4.3-rc3
4
4
  Description: Best implementation of Antd components in Plotly Dash.
5
5
  Depends: R (>= 3.0.2)
6
6
  Imports:
package/Project.toml CHANGED
@@ -2,7 +2,7 @@
2
2
  name = "FefferyAntdComponents"
3
3
  uuid = "1b08a953-4be3-4667-9a23-674b58f7de79"
4
4
  authors = ["CNFeffery <fefferypzy@gmail.com>"]
5
- version = "0.4.3-rc2"
5
+ version = "0.4.3-rc3"
6
6
 
7
7
  [deps]
8
8
  Dash = "1b08a953-4be3-4667-9a23-3db579824955"
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-10-11): `0.4.3rc2`
36
+ > The latest preview release version (2025-10-23): `0.4.3rc3`
37
37
 
38
38
  ```bash
39
39
  pip install feffery-antd-components --pre -U
package/README.md CHANGED
@@ -33,7 +33,7 @@ pip install feffery-antd-components -U
33
33
  ## 2 最新预发布版本安装方式
34
34
 
35
35
  > [!NOTE]
36
- > 最新预发布版本(2025-10-11):`0.4.3rc2`
36
+ > 最新预发布版本(2025-10-23):`0.4.3rc3`
37
37
 
38
38
  ```bash
39
39
  pip install feffery-antd-components --pre -U
@@ -535,7 +535,10 @@ Keyword arguments:
535
535
  默认值:`'value'`.
536
536
 
537
537
  - allowClear (boolean; optional):
538
- 适用于`'select'`模式,是否允许快捷清空已选项 默认值:`True`. | dict
538
+ 适用于`'select'`模式,是否允许快捷清空已选项 默认值:`True`.
539
+
540
+ - showSearch (boolean; optional):
541
+ 适用于`'select'`模式,是否开启输入框可搜索功能. | dict
539
542
 
540
543
  - bordered (boolean; default False):
541
544
  是否渲染框线 默认值:`False`.
@@ -1133,7 +1136,8 @@ Keyword arguments:
1133
1136
  "value": NotRequired[typing.Union[typing.Union[str, NumberType], typing.Sequence[typing.Union[str, NumberType]]]],
1134
1137
  "maxTagCount": NotRequired[typing.Union[NumberType, Literal["responsive"]]],
1135
1138
  "optionFilterProp": NotRequired[Literal["value", "label"]],
1136
- "allowClear": NotRequired[bool]
1139
+ "allowClear": NotRequired[bool],
1140
+ "showSearch": NotRequired[bool]
1137
1141
  }
1138
1142
  )
1139
1143