feffery_utils_components 0.0.20 → 0.0.22

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.
Files changed (45) hide show
  1. package/DESCRIPTION +1 -1
  2. package/NAMESPACE +3 -0
  3. package/Project.toml +1 -1
  4. package/build/lib/feffery_utils_components/FefferyCaptcha.py +5 -3
  5. package/build/lib/feffery_utils_components/FefferyDiv.py +9 -5
  6. package/build/lib/feffery_utils_components/FefferyDocumentVisibility.py +46 -0
  7. package/{feffery_utils_components/FefferySliderColorPicker.py → build/lib/feffery_utils_components/FefferyExternalCss.py} +9 -11
  8. package/build/lib/feffery_utils_components/FefferyGeolocation.py +46 -0
  9. package/build/lib/feffery_utils_components/FefferyIdle.py +48 -0
  10. package/build/lib/feffery_utils_components/FefferyKeyPress.py +48 -0
  11. package/build/lib/feffery_utils_components/FefferyResponsive.py +46 -0
  12. package/build/lib/feffery_utils_components/FefferySetTitle.py +46 -0
  13. package/build/lib/feffery_utils_components/FefferyTimeout.py +48 -0
  14. package/build/lib/feffery_utils_components/FefferyWindowSize.py +48 -0
  15. package/build/lib/feffery_utils_components/_imports_.py +18 -0
  16. package/build/lib/feffery_utils_components/feffery_utils_components.min.js +1 -1
  17. package/build/lib/feffery_utils_components/metadata.json +582 -10
  18. package/build/lib/feffery_utils_components/package-info.json +2 -1
  19. package/feffery_utils_components/FefferyCaptcha.py +5 -3
  20. package/feffery_utils_components/FefferyCountDown.py +50 -0
  21. package/feffery_utils_components/FefferyDiv.py +7 -5
  22. package/feffery_utils_components/FefferyKeyPress.py +48 -0
  23. package/feffery_utils_components/FefferyTimeout.py +48 -0
  24. package/feffery_utils_components/_imports_.py +6 -0
  25. package/feffery_utils_components/feffery_utils_components.min.js +1 -1
  26. package/feffery_utils_components/metadata.json +216 -2
  27. package/feffery_utils_components/package-info.json +1 -1
  28. package/package.json +1 -1
  29. package/src/FefferyUtilsComponents.jl +6 -3
  30. package/src/jl/''_fefferycaptcha.jl +2 -1
  31. package/src/jl/''_fefferycountdown.jl +26 -0
  32. package/src/jl/''_fefferydiv.jl +4 -3
  33. package/src/jl/''_fefferykeypress.jl +25 -0
  34. package/src/jl/''_fefferytimeout.jl +25 -0
  35. package/src/lib/components/FefferyCaptcha.react.js +14 -2
  36. package/src/lib/components/FefferyCountDown.react.js +92 -0
  37. package/src/lib/components/FefferyTimeout.react.js +68 -0
  38. package/src/lib/components/listeners/FefferyDiv.react.js +20 -11
  39. package/src/lib/components/listeners/FefferyKeyPress.react.js +69 -0
  40. package/src/lib/index.js +7 -1
  41. package/tests/FefferyCaptchaRefreshRef/app.py +49 -0
  42. package/tests/FefferyClickAwayTest/app.py +41 -0
  43. package/tests/FefferyCountDownTest/app.py +53 -0
  44. package/tests/FefferyKeyPressTest/app.py +43 -0
  45. package/tests/FefferyTimeoutTest/app.py +63 -0
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.20
3
+ Version: 0.0.22
4
4
  Description: Build more utility components for Plotly Dash.
5
5
  Depends: R (>= 3.0.2)
6
6
  Imports:
package/NAMESPACE CHANGED
@@ -10,6 +10,7 @@ export(''FefferyWheelColorPicker)
10
10
  export(''FefferyExternalCss)
11
11
  export(''FefferySetTitle)
12
12
  export(''FefferyCaptcha)
13
+ export(''FefferyCountDown)
13
14
  export(''FefferyExecuteJs)
14
15
  export(''FefferyExtraSpinner)
15
16
  export(''FefferyGuide)
@@ -20,6 +21,7 @@ export(''FefferyScroll)
20
21
  export(''FefferyScrollbars)
21
22
  export(''FefferyShortcutPanel)
22
23
  export(''FefferySyntaxHighlighter)
24
+ export(''FefferyTimeout)
23
25
  export(''FefferyTopProgress)
24
26
  export(''FefferyVirtualList)
25
27
  export(''FefferyDiv)
@@ -27,6 +29,7 @@ export(''FefferyDocumentVisibility)
27
29
  export(''FefferyGeolocation)
28
30
  export(''FefferyIdle)
29
31
  export(''FefferyInViewport)
32
+ export(''FefferyKeyPress)
30
33
  export(''FefferyResponsive)
31
34
  export(''FefferyWindowSize)
32
35
  export(''FefferySplit)
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.20"
5
+ version = "0.0.22"
6
6
 
7
7
  [deps]
8
8
  Dash = "1b08a953-4be3-4667-9a23-3db579824955"
@@ -36,6 +36,8 @@ Keyword arguments:
36
36
  - prop_name (string; optional):
37
37
  Holds which property is loading.
38
38
 
39
+ - refresh (boolean; optional)
40
+
39
41
  - style (dict; optional)
40
42
 
41
43
  - width (number; optional)"""
@@ -44,10 +46,10 @@ Keyword arguments:
44
46
  _namespace = 'feffery_utils_components'
45
47
  _type = 'FefferyCaptcha'
46
48
  @_explicitize_args
47
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, captcha=Component.UNDEFINED, charNum=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, bgColor=Component.UNDEFINED, fontSize=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
48
- self._prop_names = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'style', 'width']
49
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, captcha=Component.UNDEFINED, charNum=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, bgColor=Component.UNDEFINED, fontSize=Component.UNDEFINED, refresh=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
50
+ self._prop_names = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'refresh', 'style', 'width']
49
51
  self._valid_wildcard_attributes = []
50
- self.available_properties = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'style', 'width']
52
+ self.available_properties = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'refresh', 'style', 'width']
51
53
  self.available_wildcard_properties = []
52
54
  _explicit_args = kwargs.pop('_explicit_args')
53
55
  _locals = locals()
@@ -19,6 +19,8 @@ Keyword arguments:
19
19
 
20
20
  - className (string; optional)
21
21
 
22
+ - clickAwayCount (number; default 0)
23
+
22
24
  - contextMenuEvent (dict; optional)
23
25
 
24
26
  `contextMenuEvent` is a dict with keys:
@@ -33,6 +35,8 @@ Keyword arguments:
33
35
 
34
36
  - enableListenContextMenu (boolean; default False)
35
37
 
38
+ - isHovering (boolean; optional)
39
+
36
40
  - loading_state (dict; optional)
37
41
 
38
42
  `loading_state` is a dict with keys:
@@ -46,9 +50,9 @@ Keyword arguments:
46
50
  - prop_name (string; optional):
47
51
  Holds which property is loading.
48
52
 
49
- - mouseEnterCounts (number; default 0)
53
+ - mouseEnterCount (number; default 0)
50
54
 
51
- - mouseLeaveCounts (number; default 0)
55
+ - mouseLeaveCount (number; default 0)
52
56
 
53
57
  - nClicks (number; default 0)
54
58
 
@@ -60,10 +64,10 @@ Keyword arguments:
60
64
  _namespace = 'feffery_utils_components'
61
65
  _type = 'FefferyDiv'
62
66
  @_explicitize_args
63
- def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, _width=Component.UNDEFINED, _height=Component.UNDEFINED, debounceWait=Component.UNDEFINED, mouseEnterCounts=Component.UNDEFINED, mouseLeaveCounts=Component.UNDEFINED, nClicks=Component.UNDEFINED, nDoubleClicks=Component.UNDEFINED, enableListenContextMenu=Component.UNDEFINED, contextMenuEvent=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
64
- self._prop_names = ['children', 'id', '_height', '_width', 'className', 'contextMenuEvent', 'debounceWait', 'enableListenContextMenu', 'loading_state', 'mouseEnterCounts', 'mouseLeaveCounts', 'nClicks', 'nDoubleClicks', 'style']
67
+ def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, _width=Component.UNDEFINED, _height=Component.UNDEFINED, debounceWait=Component.UNDEFINED, mouseEnterCount=Component.UNDEFINED, mouseLeaveCount=Component.UNDEFINED, nClicks=Component.UNDEFINED, nDoubleClicks=Component.UNDEFINED, enableListenContextMenu=Component.UNDEFINED, contextMenuEvent=Component.UNDEFINED, isHovering=Component.UNDEFINED, clickAwayCount=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
68
+ self._prop_names = ['children', 'id', '_height', '_width', 'className', 'clickAwayCount', 'contextMenuEvent', 'debounceWait', 'enableListenContextMenu', 'isHovering', 'loading_state', 'mouseEnterCount', 'mouseLeaveCount', 'nClicks', 'nDoubleClicks', 'style']
65
69
  self._valid_wildcard_attributes = []
66
- self.available_properties = ['children', 'id', '_height', '_width', 'className', 'contextMenuEvent', 'debounceWait', 'enableListenContextMenu', 'loading_state', 'mouseEnterCounts', 'mouseLeaveCounts', 'nClicks', 'nDoubleClicks', 'style']
70
+ self.available_properties = ['children', 'id', '_height', '_width', 'className', 'clickAwayCount', 'contextMenuEvent', 'debounceWait', 'enableListenContextMenu', 'isHovering', 'loading_state', 'mouseEnterCount', 'mouseLeaveCount', 'nClicks', 'nDoubleClicks', 'style']
67
71
  self.available_wildcard_properties = []
68
72
  _explicit_args = kwargs.pop('_explicit_args')
69
73
  _locals = locals()
@@ -0,0 +1,46 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyDocumentVisibility(Component):
7
+ """A FefferyDocumentVisibility component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - documentVisibility (a value equal to: 'visible', 'hidden'; optional)
15
+
16
+ - loading_state (dict; optional)
17
+
18
+ `loading_state` is a dict with keys:
19
+
20
+ - component_name (string; optional):
21
+ Holds the name of the component that is loading.
22
+
23
+ - is_loading (boolean; optional):
24
+ Determines if the component is loading or not.
25
+
26
+ - prop_name (string; optional):
27
+ Holds which property is loading."""
28
+ _children_props = []
29
+ _base_nodes = ['children']
30
+ _namespace = 'feffery_utils_components'
31
+ _type = 'FefferyDocumentVisibility'
32
+ @_explicitize_args
33
+ def __init__(self, id=Component.UNDEFINED, documentVisibility=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
34
+ self._prop_names = ['id', 'documentVisibility', 'loading_state']
35
+ self._valid_wildcard_attributes = []
36
+ self.available_properties = ['id', 'documentVisibility', 'loading_state']
37
+ self.available_wildcard_properties = []
38
+ _explicit_args = kwargs.pop('_explicit_args')
39
+ _locals = locals()
40
+ _locals.update(kwargs) # For wildcard attrs and excess named props
41
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
42
+ for k in []:
43
+ if k not in args:
44
+ raise TypeError(
45
+ 'Required argument `' + k + '` was not specified.')
46
+ super(FefferyDocumentVisibility, self).__init__(**args)
@@ -3,17 +3,15 @@
3
3
  from dash.development.base_component import Component, _explicitize_args
4
4
 
5
5
 
6
- class FefferySliderColorPicker(Component):
7
- """A FefferySliderColorPicker component.
6
+ class FefferyExternalCss(Component):
7
+ """A FefferyExternalCss component.
8
8
 
9
9
 
10
10
  Keyword arguments:
11
11
 
12
12
  - id (string; optional)
13
13
 
14
- - className (string; optional)
15
-
16
- - color (string; optional)
14
+ - cssUrl (string; default '')
17
15
 
18
16
  - loading_state (dict; optional)
19
17
 
@@ -28,16 +26,16 @@ Keyword arguments:
28
26
  - prop_name (string; optional):
29
27
  Holds which property is loading.
30
28
 
31
- - style (dict; optional)"""
29
+ - recentlyStatus (a value equal to: 'unset', 'loading', 'ready', 'error'; optional)"""
32
30
  _children_props = []
33
31
  _base_nodes = ['children']
34
32
  _namespace = 'feffery_utils_components'
35
- _type = 'FefferySliderColorPicker'
33
+ _type = 'FefferyExternalCss'
36
34
  @_explicitize_args
37
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, color=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
38
- self._prop_names = ['id', 'className', 'color', 'loading_state', 'style']
35
+ def __init__(self, id=Component.UNDEFINED, cssUrl=Component.UNDEFINED, recentlyStatus=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
36
+ self._prop_names = ['id', 'cssUrl', 'loading_state', 'recentlyStatus']
39
37
  self._valid_wildcard_attributes = []
40
- self.available_properties = ['id', 'className', 'color', 'loading_state', 'style']
38
+ self.available_properties = ['id', 'cssUrl', 'loading_state', 'recentlyStatus']
41
39
  self.available_wildcard_properties = []
42
40
  _explicit_args = kwargs.pop('_explicit_args')
43
41
  _locals = locals()
@@ -47,4 +45,4 @@ Keyword arguments:
47
45
  if k not in args:
48
46
  raise TypeError(
49
47
  'Required argument `' + k + '` was not specified.')
50
- super(FefferySliderColorPicker, self).__init__(**args)
48
+ super(FefferyExternalCss, self).__init__(**args)
@@ -0,0 +1,46 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyGeolocation(Component):
7
+ """A FefferyGeolocation component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - geoLocationInfo (dict; optional)
15
+
16
+ - loading_state (dict; optional)
17
+
18
+ `loading_state` is a dict with keys:
19
+
20
+ - component_name (string; optional):
21
+ Holds the name of the component that is loading.
22
+
23
+ - is_loading (boolean; optional):
24
+ Determines if the component is loading or not.
25
+
26
+ - prop_name (string; optional):
27
+ Holds which property is loading."""
28
+ _children_props = []
29
+ _base_nodes = ['children']
30
+ _namespace = 'feffery_utils_components'
31
+ _type = 'FefferyGeolocation'
32
+ @_explicitize_args
33
+ def __init__(self, id=Component.UNDEFINED, geoLocationInfo=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
34
+ self._prop_names = ['id', 'geoLocationInfo', 'loading_state']
35
+ self._valid_wildcard_attributes = []
36
+ self.available_properties = ['id', 'geoLocationInfo', 'loading_state']
37
+ self.available_wildcard_properties = []
38
+ _explicit_args = kwargs.pop('_explicit_args')
39
+ _locals = locals()
40
+ _locals.update(kwargs) # For wildcard attrs and excess named props
41
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
42
+ for k in []:
43
+ if k not in args:
44
+ raise TypeError(
45
+ 'Required argument `' + k + '` was not specified.')
46
+ super(FefferyGeolocation, self).__init__(**args)
@@ -0,0 +1,48 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyIdle(Component):
7
+ """A FefferyIdle component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - isIdle (boolean; optional)
15
+
16
+ - loading_state (dict; optional)
17
+
18
+ `loading_state` is a dict with keys:
19
+
20
+ - component_name (string; optional):
21
+ Holds the name of the component that is loading.
22
+
23
+ - is_loading (boolean; optional):
24
+ Determines if the component is loading or not.
25
+
26
+ - prop_name (string; optional):
27
+ Holds which property is loading.
28
+
29
+ - waitDuration (number; default 3000)"""
30
+ _children_props = []
31
+ _base_nodes = ['children']
32
+ _namespace = 'feffery_utils_components'
33
+ _type = 'FefferyIdle'
34
+ @_explicitize_args
35
+ def __init__(self, id=Component.UNDEFINED, isIdle=Component.UNDEFINED, waitDuration=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
36
+ self._prop_names = ['id', 'isIdle', 'loading_state', 'waitDuration']
37
+ self._valid_wildcard_attributes = []
38
+ self.available_properties = ['id', 'isIdle', 'loading_state', 'waitDuration']
39
+ self.available_wildcard_properties = []
40
+ _explicit_args = kwargs.pop('_explicit_args')
41
+ _locals = locals()
42
+ _locals.update(kwargs) # For wildcard attrs and excess named props
43
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
44
+ for k in []:
45
+ if k not in args:
46
+ raise TypeError(
47
+ 'Required argument `' + k + '` was not specified.')
48
+ super(FefferyIdle, self).__init__(**args)
@@ -0,0 +1,48 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyKeyPress(Component):
7
+ """A FefferyKeyPress component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - keys (string; required)
15
+
16
+ - loading_state (dict; optional)
17
+
18
+ `loading_state` is a dict with keys:
19
+
20
+ - component_name (string; optional):
21
+ Holds the name of the component that is loading.
22
+
23
+ - is_loading (boolean; optional):
24
+ Determines if the component is loading or not.
25
+
26
+ - prop_name (string; optional):
27
+ Holds which property is loading.
28
+
29
+ - pressedTimes (number; default 0)"""
30
+ _children_props = []
31
+ _base_nodes = ['children']
32
+ _namespace = 'feffery_utils_components'
33
+ _type = 'FefferyKeyPress'
34
+ @_explicitize_args
35
+ def __init__(self, id=Component.UNDEFINED, keys=Component.REQUIRED, pressedTimes=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
36
+ self._prop_names = ['id', 'keys', 'loading_state', 'pressedTimes']
37
+ self._valid_wildcard_attributes = []
38
+ self.available_properties = ['id', 'keys', 'loading_state', 'pressedTimes']
39
+ self.available_wildcard_properties = []
40
+ _explicit_args = kwargs.pop('_explicit_args')
41
+ _locals = locals()
42
+ _locals.update(kwargs) # For wildcard attrs and excess named props
43
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
44
+ for k in ['keys']:
45
+ if k not in args:
46
+ raise TypeError(
47
+ 'Required argument `' + k + '` was not specified.')
48
+ super(FefferyKeyPress, self).__init__(**args)
@@ -0,0 +1,46 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyResponsive(Component):
7
+ """A FefferyResponsive component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - loading_state (dict; optional)
15
+
16
+ `loading_state` is a dict with keys:
17
+
18
+ - component_name (string; optional):
19
+ Holds the name of the component that is loading.
20
+
21
+ - is_loading (boolean; optional):
22
+ Determines if the component is loading or not.
23
+
24
+ - prop_name (string; optional):
25
+ Holds which property is loading.
26
+
27
+ - responsive (dict; optional)"""
28
+ _children_props = []
29
+ _base_nodes = ['children']
30
+ _namespace = 'feffery_utils_components'
31
+ _type = 'FefferyResponsive'
32
+ @_explicitize_args
33
+ def __init__(self, id=Component.UNDEFINED, responsive=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
34
+ self._prop_names = ['id', 'loading_state', 'responsive']
35
+ self._valid_wildcard_attributes = []
36
+ self.available_properties = ['id', 'loading_state', 'responsive']
37
+ self.available_wildcard_properties = []
38
+ _explicit_args = kwargs.pop('_explicit_args')
39
+ _locals = locals()
40
+ _locals.update(kwargs) # For wildcard attrs and excess named props
41
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
42
+ for k in []:
43
+ if k not in args:
44
+ raise TypeError(
45
+ 'Required argument `' + k + '` was not specified.')
46
+ super(FefferyResponsive, self).__init__(**args)
@@ -0,0 +1,46 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferySetTitle(Component):
7
+ """A FefferySetTitle component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - loading_state (dict; optional)
15
+
16
+ `loading_state` is a dict with keys:
17
+
18
+ - component_name (string; optional):
19
+ Holds the name of the component that is loading.
20
+
21
+ - is_loading (boolean; optional):
22
+ Determines if the component is loading or not.
23
+
24
+ - prop_name (string; optional):
25
+ Holds which property is loading.
26
+
27
+ - title (string; optional)"""
28
+ _children_props = []
29
+ _base_nodes = ['children']
30
+ _namespace = 'feffery_utils_components'
31
+ _type = 'FefferySetTitle'
32
+ @_explicitize_args
33
+ def __init__(self, id=Component.UNDEFINED, title=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
34
+ self._prop_names = ['id', 'loading_state', 'title']
35
+ self._valid_wildcard_attributes = []
36
+ self.available_properties = ['id', 'loading_state', 'title']
37
+ self.available_wildcard_properties = []
38
+ _explicit_args = kwargs.pop('_explicit_args')
39
+ _locals = locals()
40
+ _locals.update(kwargs) # For wildcard attrs and excess named props
41
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
42
+ for k in []:
43
+ if k not in args:
44
+ raise TypeError(
45
+ 'Required argument `' + k + '` was not specified.')
46
+ super(FefferySetTitle, self).__init__(**args)
@@ -0,0 +1,48 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyTimeout(Component):
7
+ """A FefferyTimeout component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - delay (number; optional)
15
+
16
+ - loading_state (dict; optional)
17
+
18
+ `loading_state` is a dict with keys:
19
+
20
+ - component_name (string; optional):
21
+ Holds the name of the component that is loading.
22
+
23
+ - is_loading (boolean; optional):
24
+ Determines if the component is loading or not.
25
+
26
+ - prop_name (string; optional):
27
+ Holds which property is loading.
28
+
29
+ - timeoutCount (number; default 0)"""
30
+ _children_props = []
31
+ _base_nodes = ['children']
32
+ _namespace = 'feffery_utils_components'
33
+ _type = 'FefferyTimeout'
34
+ @_explicitize_args
35
+ def __init__(self, id=Component.UNDEFINED, timeoutCount=Component.UNDEFINED, delay=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
36
+ self._prop_names = ['id', 'delay', 'loading_state', 'timeoutCount']
37
+ self._valid_wildcard_attributes = []
38
+ self.available_properties = ['id', 'delay', 'loading_state', 'timeoutCount']
39
+ self.available_wildcard_properties = []
40
+ _explicit_args = kwargs.pop('_explicit_args')
41
+ _locals = locals()
42
+ _locals.update(kwargs) # For wildcard attrs and excess named props
43
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
44
+ for k in []:
45
+ if k not in args:
46
+ raise TypeError(
47
+ 'Required argument `' + k + '` was not specified.')
48
+ super(FefferyTimeout, self).__init__(**args)
@@ -0,0 +1,48 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyWindowSize(Component):
7
+ """A FefferyWindowSize component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - _height (number; optional)
15
+
16
+ - _width (number; optional)
17
+
18
+ - loading_state (dict; optional)
19
+
20
+ `loading_state` is a dict with keys:
21
+
22
+ - component_name (string; optional):
23
+ Holds the name of the component that is loading.
24
+
25
+ - is_loading (boolean; optional):
26
+ Determines if the component is loading or not.
27
+
28
+ - prop_name (string; optional):
29
+ Holds which property is loading."""
30
+ _children_props = []
31
+ _base_nodes = ['children']
32
+ _namespace = 'feffery_utils_components'
33
+ _type = 'FefferyWindowSize'
34
+ @_explicitize_args
35
+ def __init__(self, id=Component.UNDEFINED, _width=Component.UNDEFINED, _height=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
36
+ self._prop_names = ['id', '_height', '_width', 'loading_state']
37
+ self._valid_wildcard_attributes = []
38
+ self.available_properties = ['id', '_height', '_width', 'loading_state']
39
+ self.available_wildcard_properties = []
40
+ _explicit_args = kwargs.pop('_explicit_args')
41
+ _locals = locals()
42
+ _locals.update(kwargs) # For wildcard attrs and excess named props
43
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
44
+ for k in []:
45
+ if k not in args:
46
+ raise TypeError(
47
+ 'Required argument `' + k + '` was not specified.')
48
+ super(FefferyWindowSize, self).__init__(**args)
@@ -5,6 +5,8 @@ from .FefferyHexColorPicker import FefferyHexColorPicker
5
5
  from .FefferyRgbColorPicker import FefferyRgbColorPicker
6
6
  from .FefferyTwitterColorPicker import FefferyTwitterColorPicker
7
7
  from .FefferyWheelColorPicker import FefferyWheelColorPicker
8
+ from .FefferyExternalCss import FefferyExternalCss
9
+ from .FefferySetTitle import FefferySetTitle
8
10
  from .FefferyCaptcha import FefferyCaptcha
9
11
  from .FefferyExecuteJs import FefferyExecuteJs
10
12
  from .FefferyExtraSpinner import FefferyExtraSpinner
@@ -16,10 +18,17 @@ from .FefferyScroll import FefferyScroll
16
18
  from .FefferyScrollbars import FefferyScrollbars
17
19
  from .FefferyShortcutPanel import FefferyShortcutPanel
18
20
  from .FefferySyntaxHighlighter import FefferySyntaxHighlighter
21
+ from .FefferyTimeout import FefferyTimeout
19
22
  from .FefferyTopProgress import FefferyTopProgress
20
23
  from .FefferyVirtualList import FefferyVirtualList
21
24
  from .FefferyDiv import FefferyDiv
25
+ from .FefferyDocumentVisibility import FefferyDocumentVisibility
26
+ from .FefferyGeolocation import FefferyGeolocation
27
+ from .FefferyIdle import FefferyIdle
22
28
  from .FefferyInViewport import FefferyInViewport
29
+ from .FefferyKeyPress import FefferyKeyPress
30
+ from .FefferyResponsive import FefferyResponsive
31
+ from .FefferyWindowSize import FefferyWindowSize
23
32
  from .FefferySplit import FefferySplit
24
33
  from .FefferySplitPane import FefferySplitPane
25
34
 
@@ -31,6 +40,8 @@ __all__ = [
31
40
  "FefferyRgbColorPicker",
32
41
  "FefferyTwitterColorPicker",
33
42
  "FefferyWheelColorPicker",
43
+ "FefferyExternalCss",
44
+ "FefferySetTitle",
34
45
  "FefferyCaptcha",
35
46
  "FefferyExecuteJs",
36
47
  "FefferyExtraSpinner",
@@ -42,10 +53,17 @@ __all__ = [
42
53
  "FefferyScrollbars",
43
54
  "FefferyShortcutPanel",
44
55
  "FefferySyntaxHighlighter",
56
+ "FefferyTimeout",
45
57
  "FefferyTopProgress",
46
58
  "FefferyVirtualList",
47
59
  "FefferyDiv",
60
+ "FefferyDocumentVisibility",
61
+ "FefferyGeolocation",
62
+ "FefferyIdle",
48
63
  "FefferyInViewport",
64
+ "FefferyKeyPress",
65
+ "FefferyResponsive",
66
+ "FefferyWindowSize",
49
67
  "FefferySplit",
50
68
  "FefferySplitPane"
51
69
  ]