feffery_antd_components 0.3.0-rc21 → 0.3.0-rc23

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.3.0-rc21
3
+ Version: 0.3.0-rc23
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.3.0-rc21"
5
+ version = "0.3.0-rc23"
6
6
 
7
7
  [deps]
8
8
  Dash = "1b08a953-4be3-4667-9a23-3db579824955"
package/README-en_US.md CHANGED
@@ -26,7 +26,7 @@ pip install feffery-antd-components -U
26
26
  ## 2 Install the latest preview release version
27
27
 
28
28
  > [!NOTE]
29
- > The latest preview release version (2024-06-19): `0.3.0rc20`
29
+ > The latest preview release version (2024-06-23): `0.3.0rc22`
30
30
 
31
31
  ```bash
32
32
  pip install feffery-antd-components --pre -U
package/README.md CHANGED
@@ -29,7 +29,7 @@ pip install feffery-antd-components -U
29
29
  ## 2 最新预发布版本安装方式
30
30
 
31
31
  > [!NOTE]
32
- > 最新预发布版本(2024-06-19):`0.3.0rc20`
32
+ > 最新预发布版本(2024-06-23):`0.3.0rc22`
33
33
 
34
34
  ```bash
35
35
  pip install feffery-antd-components --pre -U
@@ -65,16 +65,19 @@ Keyword arguments:
65
65
  Determines if the component is loading or not.
66
66
 
67
67
  - prop_name (string; optional):
68
- Holds which property is loading."""
68
+ Holds which property is loading.
69
+
70
+ - style (dict; optional):
71
+ 当前组件css样式."""
69
72
  _children_props = []
70
73
  _base_nodes = ['children']
71
74
  _namespace = 'feffery_antd_components'
72
75
  _type = 'AntdDivider'
73
76
  @_explicitize_args
74
- def __init__(self, children=None, id=Component.UNDEFINED, key=Component.UNDEFINED, className=Component.UNDEFINED, innerTextOrientation=Component.UNDEFINED, isDashed=Component.UNDEFINED, direction=Component.UNDEFINED, fontSize=Component.UNDEFINED, lineColor=Component.UNDEFINED, fontStyle=Component.UNDEFINED, fontWeight=Component.UNDEFINED, fontFamily=Component.UNDEFINED, fontColor=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
75
- self._prop_names = ['children', 'id', 'aria-*', 'className', 'data-*', 'direction', 'fontColor', 'fontFamily', 'fontSize', 'fontStyle', 'fontWeight', 'innerTextOrientation', 'isDashed', 'key', 'lineColor', 'loading_state']
77
+ def __init__(self, children=None, id=Component.UNDEFINED, key=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, innerTextOrientation=Component.UNDEFINED, isDashed=Component.UNDEFINED, direction=Component.UNDEFINED, fontSize=Component.UNDEFINED, lineColor=Component.UNDEFINED, fontStyle=Component.UNDEFINED, fontWeight=Component.UNDEFINED, fontFamily=Component.UNDEFINED, fontColor=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
78
+ self._prop_names = ['children', 'id', 'aria-*', 'className', 'data-*', 'direction', 'fontColor', 'fontFamily', 'fontSize', 'fontStyle', 'fontWeight', 'innerTextOrientation', 'isDashed', 'key', 'lineColor', 'loading_state', 'style']
76
79
  self._valid_wildcard_attributes = ['data-', 'aria-']
77
- self.available_properties = ['children', 'id', 'aria-*', 'className', 'data-*', 'direction', 'fontColor', 'fontFamily', 'fontSize', 'fontStyle', 'fontWeight', 'innerTextOrientation', 'isDashed', 'key', 'lineColor', 'loading_state']
80
+ self.available_properties = ['children', 'id', 'aria-*', 'className', 'data-*', 'direction', 'fontColor', 'fontFamily', 'fontSize', 'fontStyle', 'fontWeight', 'innerTextOrientation', 'isDashed', 'key', 'lineColor', 'loading_state', 'style']
78
81
  self.available_wildcard_properties = ['data-', 'aria-']
79
82
  _explicit_args = kwargs.pop('_explicit_args')
80
83
  _locals = locals()
@@ -870,8 +870,8 @@ Keyword arguments:
870
870
  - content (a list of or a singular dash component, string or number; optional):
871
871
  组件型,当前总结栏单元格内容.
872
872
 
873
- - summaryRowFixed (boolean; default False):
874
- 总结栏是否启用固定布局功能 默认值:`False`.
873
+ - summaryRowFixed (boolean | a value equal to: 'top', 'bottom'; default False):
874
+ 总结栏是否启用固定布局功能,也可设置为`'top'`、`'bottom'`控制总结栏固定在顶部或底部 默认值:`False`.
875
875
 
876
876
  - tableLayout (a value equal to: 'auto', 'fixed'; optional):
877
877
  当`columns`中各字段未设置`width`时,用于控制整体字段宽度分配方式,可选项有`'auto'`、`'fixed'`.