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 +1 -1
- package/Project.toml +1 -1
- package/README-en_US.md +1 -1
- package/README.md +4 -1
- package/feffery_antd_components/AntdBackTop.py +6 -3
- package/feffery_antd_components/AntdSelect.py +1 -1
- package/feffery_antd_components/AntdTable.py +1 -1
- package/feffery_antd_components/async-antd_table.js +4 -4
- package/feffery_antd_components/async-data_display.js +4 -4
- package/feffery_antd_components/async-data_entry.js +28 -26
- package/feffery_antd_components/async-pro_editor.js +1 -1
- package/feffery_antd_components/async-upload.js +5 -5
- package/feffery_antd_components/feffery_antd_components.min.js +54 -51
- package/feffery_antd_components/metadata.json +16 -5
- package/feffery_antd_components/package-info.json +2 -2
- package/package.json +2 -2
- package/src/jl/'feffery'_antdbacktop.jl +3 -1
- package/src/jl/'feffery'_antdtable.jl +1 -1
- package/src/lib/components/dataDisplay/AntdTable.react.js +5 -1
- package/src/lib/components/dataEntry/AntdSelect.react.js +0 -6
- package/src/lib/components/other/AntdBackTop.react.js +10 -1
- package/src/lib/fragments/AntdTable.react.js +1 -3
- package/src/lib/fragments/dataEntry/AntdSelect.react.js +13 -2
- package/usage.py +35 -6
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
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-
|
|
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-
|
|
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)
|