简体中文 | English
Subproject of feffery-components
projects, third-party components library of Plotly Dash
, based on the Antd, brings many common and powerful components into Dash
🥳, latest stable version: 0.3.12
(2024-12-27)
pip install feffery-antd-components -U
Note
The latest preview release version (2024-08-09): 0.3.0rc31
pip install feffery-antd-components --pre -U
# just set serve_locally=False in dash.Dash()
app = dash.Dash(serve_locally=False)
Some components in fac
have built-in copy information, and internationalization settings can be made through the parameter locale
. The default is 'zh-cn'
, which is Simplified Chinese. You can set it to 'en-us'
and 'de-de'
to use English and German copy, respectively. For example:
fac.AntdDatePicker(locale='en-us')
fac.AntdDatePicker(locale='de-de')