feffery_antd_components 0.4.2 → 0.4.3-rc1

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.2
3
+ Version: 0.4.3-rc1
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.2"
5
+ version = "0.4.3-rc1"
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-07-09): `0.4.0rc9`
36
+ > The latest preview release version (2025-07-09): `0.4.3rc1`
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-07-09):`0.4.0rc9`
36
+ > 最新预发布版本(2025-07-09):`0.4.3rc1`
37
37
 
38
38
  ```bash
39
39
  pip install feffery-antd-components --pre -U
@@ -68,7 +68,7 @@ Keyword arguments:
68
68
  同css中的flex属性,用于更灵活的控制控件部分所占宽度.
69
69
 
70
70
  - colon (boolean; optional):
71
- 当`layput='horizontal'`时,控制是否在表单项标签部分末尾添加冒号,优先级高于所属`AntdForm`中的`colon`参数.
71
+ 当`layout='horizontal'`时,控制是否在表单项标签部分末尾添加冒号,优先级高于所属`AntdForm`中的`colon`参数.
72
72
 
73
73
  - label (a list of or a singular dash component, string or number; optional):
74
74
  组件型,当前表单项标签内容.
@@ -579,6 +579,9 @@ Keyword arguments:
579
579
 
580
580
  `sticky` is a boolean | dict with keys:
581
581
 
582
+ - belowSelector (string | list of strings; optional):
583
+ 粘性表头附着目标元素对应的选择器规则字符串,设置后,粘性表头激活后将附着在目标元素下方.
584
+
582
585
  - offsetHeader (number; optional):
583
586
  粘性表头竖直方向上的像素偏移量.
584
587
 
@@ -1174,6 +1177,7 @@ Keyword arguments:
1174
1177
  Sticky = TypedDict(
1175
1178
  "Sticky",
1176
1179
  {
1180
+ "belowSelector": NotRequired[typing.Union[str, typing.Sequence[str]]],
1177
1181
  "offsetHeader": NotRequired[NumberType],
1178
1182
  "offsetScroll": NotRequired[NumberType]
1179
1183
  }