feffery_antd_components 0.3.0-rc15 → 0.3.0-rc17

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-rc15
3
+ Version: 0.3.0-rc17
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-baf51bd2b26e"
4
4
  authors = ["CNFeffery <fefferypzy@gmail.com>"]
5
- version = "0.3.0-rc15"
5
+ version = "0.3.0-rc17"
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-05-22): `0.3.0rc14`
29
+ > The latest preview release version (2024-06-04): `0.3.0rc16`
30
30
 
31
31
  ```bash
32
32
  pip install feffery-antd-components --pre -U
package/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ > [!IMPORTANT]
2
+ > `0.3.x`[新版文档网站预览版](https://fac-next.feffery.tech/)正在快速更新建设中,欢迎[参与官网建设](https://github.com/CNFeffery/feffery-antd-docs/issues/9)
3
+
1
4
  <p align="center">
2
5
  <img src="./fac-logo.svg" height=300></img>
3
6
  </p>
@@ -26,7 +29,7 @@ pip install feffery-antd-components -U
26
29
  ## 2 最新预发布版本安装方式
27
30
 
28
31
  > [!NOTE]
29
- > 最新预发布版本(2024-05-22):`0.3.0rc14`
32
+ > 最新预发布版本(2024-06-04):`0.3.0rc16`
30
33
 
31
34
  ```bash
32
35
  pip install feffery-antd-components --pre -U
@@ -46,6 +46,9 @@ Keyword arguments:
46
46
  - prop_name (string; optional):
47
47
  Holds which property is loading.
48
48
 
49
+ - nClicks (number; default 0):
50
+ 监听回到顶部按钮累计被点击次数 默认值:`0`.
51
+
49
52
  - style (dict; optional):
50
53
  当前组件css样式.
51
54
 
@@ -56,10 +59,10 @@ Keyword arguments:
56
59
  _namespace = 'feffery_antd_components'
57
60
  _type = 'AntdBackTop'
58
61
  @_explicitize_args
59
- def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, duration=Component.UNDEFINED, visibilityHeight=Component.UNDEFINED, containerId=Component.UNDEFINED, containerSelector=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
60
- self._prop_names = ['id', 'aria-*', 'className', 'containerId', 'containerSelector', 'data-*', 'duration', 'key', 'loading_state', 'style', 'visibilityHeight']
62
+ def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, duration=Component.UNDEFINED, visibilityHeight=Component.UNDEFINED, containerId=Component.UNDEFINED, containerSelector=Component.UNDEFINED, nClicks=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
63
+ self._prop_names = ['id', 'aria-*', 'className', 'containerId', 'containerSelector', 'data-*', 'duration', 'key', 'loading_state', 'nClicks', 'style', 'visibilityHeight']
61
64
  self._valid_wildcard_attributes = ['data-', 'aria-']
62
- self.available_properties = ['id', 'aria-*', 'className', 'containerId', 'containerSelector', 'data-*', 'duration', 'key', 'loading_state', 'style', 'visibilityHeight']
65
+ self.available_properties = ['id', 'aria-*', 'className', 'containerId', 'containerSelector', 'data-*', 'duration', 'key', 'loading_state', 'nClicks', 'style', 'visibilityHeight']
63
66
  self.available_wildcard_properties = ['data-', 'aria-']
64
67
  _explicit_args = kwargs.pop('_explicit_args')
65
68
  _locals = locals()
@@ -75,7 +75,7 @@ Keyword arguments:
75
75
  - listHeight (number; default 256):
76
76
  下拉菜单最大像素高度.
77
77
 
78
- - loadingEmptyContent (a list of or a singular dash component, string or number; default <div style={{ display: 'flex', 'justifyContent': 'center' }}>
79
78
  <Spin />
79
+ - loadingEmptyContent (a list of or a singular dash component, string or number; optional):
80
80
  组件型,自定义加载中状态下的空数据状态提示内容.
81
81
 
82
82
  - loading_state (dict; optional)
@@ -530,7 +530,7 @@ Keyword arguments:
530
530
  下拉选择css样式,其中`width`默认为`'100%'`.
531
531
 
532
532
  - value (string | number | list of string | numbers; optional):
533
- 下拉选择已选中值.
533
+ 下拉选择已选中值. | dict
534
534
 
535
535
  - data-* (string; optional):
536
536
  `data-*`格式属性通配.