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 CHANGED
@@ -1,6 +1,6 @@
1
1
  Package: fefferyUtilsComponents
2
2
  Title: Build more utility components for Plotly Dash.
3
- Version: 0.0.22
3
+ Version: 0.0.23
4
4
  Description: Build more utility components for Plotly Dash.
5
5
  Depends: R (>= 3.0.2)
6
6
  Imports:
package/Project.toml CHANGED
@@ -2,7 +2,7 @@
2
2
  name = "FefferyUtilsComponents"
3
3
  uuid = "1b08a953-4be3-4667-9a23-ea89cd6d0d23"
4
4
  authors = ["CNFeffery <fefferypzy@gmail.com>"]
5
- version = "0.0.22"
5
+ version = "0.0.23"
6
6
 
7
7
  [deps]
8
8
  Dash = "1b08a953-4be3-4667-9a23-3db579824955"
@@ -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",