feffery_utils_components 0.0.22 → 0.0.23
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_utils_components/FefferyCountDown.py +50 -0
- package/build/lib/feffery_utils_components/_imports_.py +2 -0
- package/build/lib/feffery_utils_components/feffery_utils_components.min.js +1 -1
- package/build/lib/feffery_utils_components/metadata.json +70 -0
- package/build/lib/feffery_utils_components/package-info.json +1 -1
- package/feffery_utils_components/FefferyDiv.py +1 -1
- package/feffery_utils_components/feffery_utils_components.min.js +1 -1
- package/feffery_utils_components/metadata.json +9 -1
- package/feffery_utils_components/package-info.json +2 -1
- package/package.json +2 -1
- package/src/FefferyUtilsComponents.jl +3 -3
- package/src/jl/''_fefferydiv.jl +1 -1
- package/src/lib/components/listeners/FefferyDiv.react.js +11 -2
- package/tests/FefferyDivHoverTest/app.py +5 -1
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class FefferyCountDown(Component):
|
|
7
|
+
"""A FefferyCountDown component.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional)
|
|
13
|
+
|
|
14
|
+
- countdown (number; optional)
|
|
15
|
+
|
|
16
|
+
- delay (number; optional)
|
|
17
|
+
|
|
18
|
+
- interval (number; default 1)
|
|
19
|
+
|
|
20
|
+
- loading_state (dict; optional)
|
|
21
|
+
|
|
22
|
+
`loading_state` is a dict with keys:
|
|
23
|
+
|
|
24
|
+
- component_name (string; optional):
|
|
25
|
+
Holds the name of the component that is loading.
|
|
26
|
+
|
|
27
|
+
- is_loading (boolean; optional):
|
|
28
|
+
Determines if the component is loading or not.
|
|
29
|
+
|
|
30
|
+
- prop_name (string; optional):
|
|
31
|
+
Holds which property is loading."""
|
|
32
|
+
_children_props = []
|
|
33
|
+
_base_nodes = ['children']
|
|
34
|
+
_namespace = 'feffery_utils_components'
|
|
35
|
+
_type = 'FefferyCountDown'
|
|
36
|
+
@_explicitize_args
|
|
37
|
+
def __init__(self, id=Component.UNDEFINED, delay=Component.UNDEFINED, interval=Component.UNDEFINED, countdown=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
38
|
+
self._prop_names = ['id', 'countdown', 'delay', 'interval', 'loading_state']
|
|
39
|
+
self._valid_wildcard_attributes = []
|
|
40
|
+
self.available_properties = ['id', 'countdown', 'delay', 'interval', 'loading_state']
|
|
41
|
+
self.available_wildcard_properties = []
|
|
42
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
43
|
+
_locals = locals()
|
|
44
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
45
|
+
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
46
|
+
for k in []:
|
|
47
|
+
if k not in args:
|
|
48
|
+
raise TypeError(
|
|
49
|
+
'Required argument `' + k + '` was not specified.')
|
|
50
|
+
super(FefferyCountDown, self).__init__(**args)
|
|
@@ -8,6 +8,7 @@ from .FefferyWheelColorPicker import FefferyWheelColorPicker
|
|
|
8
8
|
from .FefferyExternalCss import FefferyExternalCss
|
|
9
9
|
from .FefferySetTitle import FefferySetTitle
|
|
10
10
|
from .FefferyCaptcha import FefferyCaptcha
|
|
11
|
+
from .FefferyCountDown import FefferyCountDown
|
|
11
12
|
from .FefferyExecuteJs import FefferyExecuteJs
|
|
12
13
|
from .FefferyExtraSpinner import FefferyExtraSpinner
|
|
13
14
|
from .FefferyGuide import FefferyGuide
|
|
@@ -43,6 +44,7 @@ __all__ = [
|
|
|
43
44
|
"FefferyExternalCss",
|
|
44
45
|
"FefferySetTitle",
|
|
45
46
|
"FefferyCaptcha",
|
|
47
|
+
"FefferyCountDown",
|
|
46
48
|
"FefferyExecuteJs",
|
|
47
49
|
"FefferyExtraSpinner",
|
|
48
50
|
"FefferyGuide",
|