feffery_antd_components 0.2.10-rc13 → 0.2.10-rc14
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/build/lib/feffery_antd_components/__init__.py +16 -0
- package/build/lib/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/build/lib/feffery_antd_components/package-info.json +1 -1
- package/feffery_antd_components/__init__.py +16 -0
- package/feffery_antd_components/feffery_antd_components.min.js +1 -1
- package/feffery_antd_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/lib/components/dataDisplay/AntdComment.react.js +16 -16
- package/src/lib/components/dataDisplay/AntdSegmented.react.js +16 -16
- package/src/lib/components/dataDisplay/AntdTree.react.js +16 -16
- package/src/lib/components/dataEntry/AntdCascader.react.js +16 -16
- package/src/lib/components/dataEntry/AntdCheckbox.react.js +17 -17
- package/src/lib/components/dataEntry/AntdCheckboxGroup.react.js +17 -17
- package/src/lib/components/dataEntry/AntdDatePicker.react.js +16 -16
- package/src/lib/components/dataEntry/AntdDateRangePicker.react.js +16 -16
- package/src/lib/components/dataEntry/AntdInput.react.js +16 -16
- package/src/lib/components/dataEntry/AntdInputNumber.react.js +16 -16
- package/src/lib/components/dataEntry/AntdMentions.react.js +17 -17
- package/src/lib/components/dataEntry/AntdRadioGroup.react.js +16 -16
- package/src/lib/components/dataEntry/AntdRate.react.js +16 -16
- package/src/lib/components/dataEntry/AntdSegmentedColoring.react.js +17 -17
- package/src/lib/components/dataEntry/AntdSelect.react.js +16 -16
- package/src/lib/components/dataEntry/AntdSlider.react.js +16 -16
- package/src/lib/components/dataEntry/AntdSwitch.react.js +16 -16
- package/src/lib/components/dataEntry/AntdTimePicker.react.js +16 -16
- package/src/lib/components/dataEntry/AntdTimeRangePicker.react.js +16 -16
- package/src/lib/components/dataEntry/AntdTransfer.react.js +17 -17
- package/src/lib/components/dataEntry/AntdTreeSelect.react.js +16 -16
- package/src/lib/components/navigation/AntdDropdown.react.js +17 -17
- package/src/lib/components/navigation/AntdPagination.react.js +16 -16
- package/usage.py +8 -92
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
|
@@ -61,6 +61,22 @@ _js_dist.extend(
|
|
|
61
61
|
]
|
|
62
62
|
)
|
|
63
63
|
|
|
64
|
+
# TODO: Figure out if unpkg link works
|
|
65
|
+
_js_dist.extend(
|
|
66
|
+
[
|
|
67
|
+
{
|
|
68
|
+
"relative_package_path": "async-{}.js.map".format(async_resource),
|
|
69
|
+
"external_url": (
|
|
70
|
+
"https://unpkg.com/{0}@{2}"
|
|
71
|
+
"/{1}/async-{3}.js.map"
|
|
72
|
+
).format(package_name, __name__, __version__, async_resource),
|
|
73
|
+
"namespace": package_name,
|
|
74
|
+
"dynamic": True,
|
|
75
|
+
}
|
|
76
|
+
for async_resource in async_resources
|
|
77
|
+
]
|
|
78
|
+
)
|
|
79
|
+
|
|
64
80
|
_css_dist = []
|
|
65
81
|
|
|
66
82
|
|