feffery_utils_components 0.0.30 → 0.0.32

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 (85) hide show
  1. package/DESCRIPTION +1 -1
  2. package/NAMESPACE +8 -4
  3. package/Project.toml +1 -1
  4. package/build/lib/feffery_utils_components/FefferyBlockColorPicker.py +53 -0
  5. package/build/lib/feffery_utils_components/FefferyCaptcha.py +59 -0
  6. package/build/lib/feffery_utils_components/FefferyCircleColorPicker.py +55 -0
  7. package/build/lib/feffery_utils_components/FefferyCountDown.py +47 -0
  8. package/build/lib/feffery_utils_components/FefferyCssVar.py +43 -0
  9. package/build/lib/feffery_utils_components/FefferyDiv.py +99 -0
  10. package/build/lib/feffery_utils_components/FefferyDocumentVisibility.py +43 -0
  11. package/build/lib/feffery_utils_components/FefferyExecuteJs.py +43 -0
  12. package/build/lib/feffery_utils_components/FefferyExternalCss.py +45 -0
  13. package/build/lib/feffery_utils_components/FefferyExternalJs.py +45 -0
  14. package/build/lib/feffery_utils_components/FefferyExtraSpinner.py +57 -0
  15. package/build/lib/feffery_utils_components/FefferyEyeDropper.py +45 -0
  16. package/build/lib/feffery_utils_components/FefferyFancyMessage.py +67 -0
  17. package/build/lib/feffery_utils_components/FefferyFancyNotification.py +85 -0
  18. package/build/lib/feffery_utils_components/FefferyGeolocation.py +43 -0
  19. package/build/lib/feffery_utils_components/FefferyGithubColorPicker.py +53 -0
  20. package/build/lib/feffery_utils_components/FefferyGuide.py +110 -0
  21. package/build/lib/feffery_utils_components/FefferyHexColorPicker.py +49 -0
  22. package/build/lib/feffery_utils_components/FefferyHighlightWords.py +61 -0
  23. package/build/lib/feffery_utils_components/FefferyIdle.py +45 -0
  24. package/build/lib/feffery_utils_components/FefferyInViewport.py +47 -0
  25. package/build/lib/feffery_utils_components/FefferyKeyPress.py +50 -0
  26. package/build/lib/feffery_utils_components/FefferyLazyLoad.py +57 -0
  27. package/build/lib/feffery_utils_components/FefferyLocation.py +54 -0
  28. package/build/lib/feffery_utils_components/FefferyQRCode.py +72 -0
  29. package/build/lib/feffery_utils_components/FefferyRawHTML.py +43 -0
  30. package/build/lib/feffery_utils_components/FefferyReload.py +45 -0
  31. package/build/lib/feffery_utils_components/FefferyResponsive.py +43 -0
  32. package/build/lib/feffery_utils_components/FefferyRgbColorPicker.py +49 -0
  33. package/build/lib/feffery_utils_components/FefferyScroll.py +61 -0
  34. package/build/lib/feffery_utils_components/FefferyScrollbars.py +69 -0
  35. package/build/lib/feffery_utils_components/FefferySetTitle.py +43 -0
  36. package/build/lib/feffery_utils_components/FefferyShortcutPanel.py +75 -0
  37. package/build/lib/feffery_utils_components/FefferySortableContainer.py +51 -0
  38. package/build/lib/feffery_utils_components/FefferySortableItem.py +47 -0
  39. package/build/lib/feffery_utils_components/FefferySplit.py +63 -0
  40. package/build/lib/feffery_utils_components/FefferySplitPane.py +47 -0
  41. package/build/lib/feffery_utils_components/FefferyStyle.py +43 -0
  42. package/build/lib/feffery_utils_components/FefferySyntaxHighlighter.py +58 -0
  43. package/build/lib/feffery_utils_components/FefferyTimeout.py +45 -0
  44. package/build/lib/feffery_utils_components/FefferyTopProgress.py +67 -0
  45. package/build/lib/feffery_utils_components/FefferyTwitterColorPicker.py +53 -0
  46. package/build/lib/feffery_utils_components/FefferyVirtualList.py +56 -0
  47. package/build/lib/feffery_utils_components/FefferyWheelColorPicker.py +47 -0
  48. package/build/lib/feffery_utils_components/FefferyWindowSize.py +45 -0
  49. package/build/lib/feffery_utils_components/__init__.py +89 -0
  50. package/build/lib/feffery_utils_components/_imports_.py +93 -0
  51. package/build/lib/feffery_utils_components/feffery_utils_components.min.js +599 -0
  52. package/build/lib/feffery_utils_components/metadata.json +4991 -0
  53. package/build/lib/feffery_utils_components/package-info.json +102 -0
  54. package/feffery_utils_components/FefferyCssVar.py +43 -0
  55. package/feffery_utils_components/FefferyDiv.py +5 -3
  56. package/feffery_utils_components/FefferyEyeDropper.py +45 -0
  57. package/feffery_utils_components/FefferyLazyLoadImage.py +53 -0
  58. package/feffery_utils_components/FefferySticky.py +51 -0
  59. package/feffery_utils_components/_imports_.py +16 -8
  60. package/feffery_utils_components/feffery_utils_components.min.js +8 -8
  61. package/feffery_utils_components/metadata.json +650 -295
  62. package/feffery_utils_components/package-info.json +5 -2
  63. package/package.json +5 -2
  64. package/src/FefferyUtilsComponents.jl +11 -7
  65. package/src/jl/''_fefferycssvar.jl +24 -0
  66. package/src/jl/''_fefferydiv.jl +2 -1
  67. package/src/jl/''_fefferyeyedropper.jl +25 -0
  68. package/src/jl/''_fefferylazyloadimage.jl +29 -0
  69. package/src/jl/''_fefferysticky.jl +34 -0
  70. package/src/lib/components/FefferyCssVar.react.js +67 -0
  71. package/src/lib/components/FefferyDiv.react.js +16 -2
  72. package/src/lib/components/FefferyExecuteJs.react.js +7 -5
  73. package/src/lib/components/{dom/FefferyExternalCss.react.js → FefferyExternalCss.react.js} +0 -0
  74. package/src/lib/components/{dom/FefferyExternalJs.react.js → FefferyExternalJs.react.js} +0 -0
  75. package/src/lib/components/FefferyEyeDropper.react.js +93 -0
  76. package/src/lib/components/FefferyLazyLoadImage.react.js +92 -0
  77. package/src/lib/components/{dom/FefferyRawHTML.react.js → FefferyRawHTML.react.js} +0 -0
  78. package/src/lib/components/{dom/FefferySetTitle.react.js → FefferySetTitle.react.js} +0 -0
  79. package/src/lib/components/FefferySticky.react.js +93 -0
  80. package/src/lib/components/FefferyStyle.react.js +1 -0
  81. package/src/lib/components/styles.css +13 -0
  82. package/src/lib/index.js +13 -5
  83. package/tests/FefferyLazyLoadImageTest/app.py +33 -0
  84. package/tests/FefferyStickyTest/app.py +41 -0
  85. package/usage.py +0 -30
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.30
3
+ Version: 0.0.32
4
4
  Description: Build more utility components for Plotly Dash.
5
5
  Depends: R (>= 3.0.2)
6
6
  Imports:
package/NAMESPACE CHANGED
@@ -7,26 +7,30 @@ export(''FefferyHexColorPicker)
7
7
  export(''FefferyRgbColorPicker)
8
8
  export(''FefferyTwitterColorPicker)
9
9
  export(''FefferyWheelColorPicker)
10
- export(''FefferyExternalCss)
11
- export(''FefferyExternalJs)
12
- export(''FefferyRawHTML)
13
- export(''FefferySetTitle)
14
10
  export(''FefferyCaptcha)
15
11
  export(''FefferyCountDown)
12
+ export(''FefferyCssVar)
16
13
  export(''FefferyDiv)
17
14
  export(''FefferyExecuteJs)
15
+ export(''FefferyExternalCss)
16
+ export(''FefferyExternalJs)
18
17
  export(''FefferyExtraSpinner)
18
+ export(''FefferyEyeDropper)
19
19
  export(''FefferyFancyMessage)
20
20
  export(''FefferyFancyNotification)
21
21
  export(''FefferyGuide)
22
22
  export(''FefferyHighlightWords)
23
23
  export(''FefferyLazyLoad)
24
+ export(''FefferyLazyLoadImage)
24
25
  export(''FefferyLocation)
25
26
  export(''FefferyQRCode)
27
+ export(''FefferyRawHTML)
26
28
  export(''FefferyReload)
27
29
  export(''FefferyScroll)
28
30
  export(''FefferyScrollbars)
31
+ export(''FefferySetTitle)
29
32
  export(''FefferyShortcutPanel)
33
+ export(''FefferySticky)
30
34
  export(''FefferyStyle)
31
35
  export(''FefferySyntaxHighlighter)
32
36
  export(''FefferyTimeout)
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.30"
5
+ version = "0.0.32"
6
6
 
7
7
  [deps]
8
8
  Dash = "1b08a953-4be3-4667-9a23-3db579824955"
@@ -0,0 +1,53 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyBlockColorPicker(Component):
7
+ """A FefferyBlockColorPicker component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - className (string; optional)
15
+
16
+ - color (string; optional)
17
+
18
+ - colors (list of strings; default ['#D9E3F0', '#F47373', '#697689', '#37D67A', '#2CCCE4', '#555555', '#dce775', '#ff8a65', '#ba68c8'])
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
+
33
+ - style (dict; optional)
34
+
35
+ - triangle (a value equal to: 'hide', 'top'; default 'top')
36
+
37
+ - width (string; default '170px')"""
38
+ _children_props = []
39
+ _base_nodes = ['children']
40
+ _namespace = 'feffery_utils_components'
41
+ _type = 'FefferyBlockColorPicker'
42
+ @_explicitize_args
43
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, width=Component.UNDEFINED, color=Component.UNDEFINED, colors=Component.UNDEFINED, triangle=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
44
+ self._prop_names = ['id', 'className', 'color', 'colors', 'loading_state', 'style', 'triangle', 'width']
45
+ self._valid_wildcard_attributes = []
46
+ self.available_properties = ['id', 'className', 'color', 'colors', 'loading_state', 'style', 'triangle', 'width']
47
+ self.available_wildcard_properties = []
48
+ _explicit_args = kwargs.pop('_explicit_args')
49
+ _locals = locals()
50
+ _locals.update(kwargs) # For wildcard attrs and excess named props
51
+ args = {k: _locals[k] for k in _explicit_args}
52
+
53
+ super(FefferyBlockColorPicker, self).__init__(**args)
@@ -0,0 +1,59 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyCaptcha(Component):
7
+ """A FefferyCaptcha component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - bgColor (string; optional)
15
+
16
+ - captcha (string; optional)
17
+
18
+ - charNum (number; default 4)
19
+
20
+ - className (string; optional)
21
+
22
+ - fontSize (number; optional)
23
+
24
+ - height (number; optional)
25
+
26
+ - loading_state (dict; optional)
27
+
28
+ `loading_state` is a dict with keys:
29
+
30
+ - component_name (string; optional):
31
+ Holds the name of the component that is loading.
32
+
33
+ - is_loading (boolean; optional):
34
+ Determines if the component is loading or not.
35
+
36
+ - prop_name (string; optional):
37
+ Holds which property is loading.
38
+
39
+ - refresh (boolean; optional)
40
+
41
+ - style (dict; optional)
42
+
43
+ - width (number; optional)"""
44
+ _children_props = []
45
+ _base_nodes = ['children']
46
+ _namespace = 'feffery_utils_components'
47
+ _type = 'FefferyCaptcha'
48
+ @_explicitize_args
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']
51
+ self._valid_wildcard_attributes = []
52
+ self.available_properties = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'refresh', 'style', 'width']
53
+ self.available_wildcard_properties = []
54
+ _explicit_args = kwargs.pop('_explicit_args')
55
+ _locals = locals()
56
+ _locals.update(kwargs) # For wildcard attrs and excess named props
57
+ args = {k: _locals[k] for k in _explicit_args}
58
+
59
+ super(FefferyCaptcha, self).__init__(**args)
@@ -0,0 +1,55 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyCircleColorPicker(Component):
7
+ """A FefferyCircleColorPicker component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - circleSize (number; default 28)
15
+
16
+ - circleSpacing (number; default 14)
17
+
18
+ - className (string; optional)
19
+
20
+ - color (string; optional)
21
+
22
+ - colors (list of strings; default ["#f44336", "#e91e63", "#9c27b0", "#673ab7", "#3f51b5", "#2196f3", "#03a9f4", "#00bcd4", "#009688", "#4caf50", "#8bc34a", "#cddc39", "#ffeb3b", "#ffc107", "#ff9800", "#ff5722", "#795548", "#607d8b"])
23
+
24
+ - loading_state (dict; optional)
25
+
26
+ `loading_state` is a dict with keys:
27
+
28
+ - component_name (string; optional):
29
+ Holds the name of the component that is loading.
30
+
31
+ - is_loading (boolean; optional):
32
+ Determines if the component is loading or not.
33
+
34
+ - prop_name (string; optional):
35
+ Holds which property is loading.
36
+
37
+ - style (dict; optional)
38
+
39
+ - width (string; default '252px')"""
40
+ _children_props = []
41
+ _base_nodes = ['children']
42
+ _namespace = 'feffery_utils_components'
43
+ _type = 'FefferyCircleColorPicker'
44
+ @_explicitize_args
45
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, width=Component.UNDEFINED, circleSize=Component.UNDEFINED, circleSpacing=Component.UNDEFINED, color=Component.UNDEFINED, colors=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
46
+ self._prop_names = ['id', 'circleSize', 'circleSpacing', 'className', 'color', 'colors', 'loading_state', 'style', 'width']
47
+ self._valid_wildcard_attributes = []
48
+ self.available_properties = ['id', 'circleSize', 'circleSpacing', 'className', 'color', 'colors', 'loading_state', 'style', 'width']
49
+ self.available_wildcard_properties = []
50
+ _explicit_args = kwargs.pop('_explicit_args')
51
+ _locals = locals()
52
+ _locals.update(kwargs) # For wildcard attrs and excess named props
53
+ args = {k: _locals[k] for k in _explicit_args}
54
+
55
+ super(FefferyCircleColorPicker, self).__init__(**args)
@@ -0,0 +1,47 @@
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}
46
+
47
+ super(FefferyCountDown, self).__init__(**args)
@@ -0,0 +1,43 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyCssVar(Component):
7
+ """A FefferyCssVar component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - cssVars (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 = 'FefferyCssVar'
32
+ @_explicitize_args
33
+ def __init__(self, id=Component.UNDEFINED, cssVars=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
34
+ self._prop_names = ['id', 'cssVars', 'loading_state']
35
+ self._valid_wildcard_attributes = []
36
+ self.available_properties = ['id', 'cssVars', '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}
42
+
43
+ super(FefferyCssVar, self).__init__(**args)
@@ -0,0 +1,99 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyDiv(Component):
7
+ """A FefferyDiv component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (a list of or a singular dash component, string or number; optional)
13
+
14
+ - id (string; optional)
15
+
16
+ - _height (number; optional)
17
+
18
+ - _width (number; optional)
19
+
20
+ - appendChild (a list of or a singular dash component, string or number; optional)
21
+
22
+ - className (string | dict; optional)
23
+
24
+ - clickAwayCount (number; default 0)
25
+
26
+ - contextMenuEvent (dict; optional)
27
+
28
+ `contextMenuEvent` is a dict with keys:
29
+
30
+ - pageX (number; optional)
31
+
32
+ - pageY (number; optional)
33
+
34
+ - timestamp (number; optional)
35
+
36
+ - debounceWait (number; default 150)
37
+
38
+ - deleteChildIndex (number; optional)
39
+
40
+ - enableListenContextMenu (boolean; default False)
41
+
42
+ - insertChild (dict; optional)
43
+
44
+ `insertChild` is a dict with keys:
45
+
46
+ - element (a list of or a singular dash component, string or number; optional)
47
+
48
+ - index (number; optional)
49
+
50
+ - isHovering (boolean; optional)
51
+
52
+ - key (string; optional)
53
+
54
+ - loading_state (dict; optional)
55
+
56
+ `loading_state` is a dict with keys:
57
+
58
+ - component_name (string; optional):
59
+ Holds the name of the component that is loading.
60
+
61
+ - is_loading (boolean; optional):
62
+ Determines if the component is loading or not.
63
+
64
+ - prop_name (string; optional):
65
+ Holds which property is loading.
66
+
67
+ - mouseEnterCount (number; default 0)
68
+
69
+ - mouseLeaveCount (number; default 0)
70
+
71
+ - nClicks (number; default 0)
72
+
73
+ - nDoubleClicks (number; default 0)
74
+
75
+ - replaceChild (dict; optional)
76
+
77
+ `replaceChild` is a dict with keys:
78
+
79
+ - element (a list of or a singular dash component, string or number; optional)
80
+
81
+ - index (number; optional)
82
+
83
+ - style (dict; optional)"""
84
+ _children_props = ['appendChild', 'insertChild.element', 'replaceChild.element']
85
+ _base_nodes = ['appendChild', 'children']
86
+ _namespace = 'feffery_utils_components'
87
+ _type = 'FefferyDiv'
88
+ @_explicitize_args
89
+ def __init__(self, children=None, id=Component.UNDEFINED, key=Component.UNDEFINED, appendChild=Component.UNDEFINED, insertChild=Component.UNDEFINED, replaceChild=Component.UNDEFINED, deleteChildIndex=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):
90
+ self._prop_names = ['children', 'id', '_height', '_width', 'appendChild', 'className', 'clickAwayCount', 'contextMenuEvent', 'debounceWait', 'deleteChildIndex', 'enableListenContextMenu', 'insertChild', 'isHovering', 'key', 'loading_state', 'mouseEnterCount', 'mouseLeaveCount', 'nClicks', 'nDoubleClicks', 'replaceChild', 'style']
91
+ self._valid_wildcard_attributes = []
92
+ self.available_properties = ['children', 'id', '_height', '_width', 'appendChild', 'className', 'clickAwayCount', 'contextMenuEvent', 'debounceWait', 'deleteChildIndex', 'enableListenContextMenu', 'insertChild', 'isHovering', 'key', 'loading_state', 'mouseEnterCount', 'mouseLeaveCount', 'nClicks', 'nDoubleClicks', 'replaceChild', 'style']
93
+ self.available_wildcard_properties = []
94
+ _explicit_args = kwargs.pop('_explicit_args')
95
+ _locals = locals()
96
+ _locals.update(kwargs) # For wildcard attrs and excess named props
97
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
98
+
99
+ super(FefferyDiv, self).__init__(children=children, **args)
@@ -0,0 +1,43 @@
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}
42
+
43
+ super(FefferyDocumentVisibility, self).__init__(**args)
@@ -0,0 +1,43 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyExecuteJs(Component):
7
+ """A FefferyExecuteJs component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - jsString (string; 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 = 'FefferyExecuteJs'
32
+ @_explicitize_args
33
+ def __init__(self, id=Component.UNDEFINED, jsString=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
34
+ self._prop_names = ['id', 'jsString', 'loading_state']
35
+ self._valid_wildcard_attributes = []
36
+ self.available_properties = ['id', 'jsString', '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}
42
+
43
+ super(FefferyExecuteJs, self).__init__(**args)
@@ -0,0 +1,45 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyExternalCss(Component):
7
+ """A FefferyExternalCss component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - cssUrl (string; default '')
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
+ - recentlyStatus (a value equal to: 'unset', 'loading', 'ready', 'error'; optional)"""
30
+ _children_props = []
31
+ _base_nodes = ['children']
32
+ _namespace = 'feffery_utils_components'
33
+ _type = 'FefferyExternalCss'
34
+ @_explicitize_args
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']
37
+ self._valid_wildcard_attributes = []
38
+ self.available_properties = ['id', 'cssUrl', 'loading_state', 'recentlyStatus']
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}
44
+
45
+ super(FefferyExternalCss, self).__init__(**args)
@@ -0,0 +1,45 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyExternalJs(Component):
7
+ """A FefferyExternalJs component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - jsUrl (string; default '')
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
+ - recentlyStatus (a value equal to: 'unset', 'loading', 'ready', 'error'; optional)"""
30
+ _children_props = []
31
+ _base_nodes = ['children']
32
+ _namespace = 'feffery_utils_components'
33
+ _type = 'FefferyExternalJs'
34
+ @_explicitize_args
35
+ def __init__(self, id=Component.UNDEFINED, jsUrl=Component.UNDEFINED, recentlyStatus=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
36
+ self._prop_names = ['id', 'jsUrl', 'loading_state', 'recentlyStatus']
37
+ self._valid_wildcard_attributes = []
38
+ self.available_properties = ['id', 'jsUrl', 'loading_state', 'recentlyStatus']
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}
44
+
45
+ super(FefferyExternalJs, self).__init__(**args)
@@ -0,0 +1,57 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyExtraSpinner(Component):
7
+ """A FefferyExtraSpinner component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - backColor (string; default '#1890ff')
15
+
16
+ - className (string; optional)
17
+
18
+ - color (string; default '#1890ff')
19
+
20
+ - frontColor (string; default '#def6ff')
21
+
22
+ - loading_state (dict; optional)
23
+
24
+ `loading_state` is a dict with keys:
25
+
26
+ - component_name (string; optional):
27
+ Holds the name of the component that is loading.
28
+
29
+ - is_loading (boolean; optional):
30
+ Determines if the component is loading or not.
31
+
32
+ - prop_name (string; optional):
33
+ Holds which property is loading.
34
+
35
+ - size (number; optional)
36
+
37
+ - sizeUnit (string; default 'px')
38
+
39
+ - style (dict; optional)
40
+
41
+ - type (a value equal to: "ball", "swap", "bars", "grid", "wave", "push", "firework", "stage", "ring", "heart", "guard", "rotate", "spiral", "pulse", "swish", "sequence", "impulse", "cube", "magic", "flag", "fill", "sphere", "domino", "goo", "comb", "pong", "rainbow", "hoop", "flapper", "jellyfish", "trace", "classic", "whisper", "metro"; default 'ball')"""
42
+ _children_props = []
43
+ _base_nodes = ['children']
44
+ _namespace = 'feffery_utils_components'
45
+ _type = 'FefferyExtraSpinner'
46
+ @_explicitize_args
47
+ def __init__(self, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, type=Component.UNDEFINED, size=Component.UNDEFINED, sizeUnit=Component.UNDEFINED, color=Component.UNDEFINED, frontColor=Component.UNDEFINED, backColor=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
48
+ self._prop_names = ['id', 'backColor', 'className', 'color', 'frontColor', 'loading_state', 'size', 'sizeUnit', 'style', 'type']
49
+ self._valid_wildcard_attributes = []
50
+ self.available_properties = ['id', 'backColor', 'className', 'color', 'frontColor', 'loading_state', 'size', 'sizeUnit', 'style', 'type']
51
+ self.available_wildcard_properties = []
52
+ _explicit_args = kwargs.pop('_explicit_args')
53
+ _locals = locals()
54
+ _locals.update(kwargs) # For wildcard attrs and excess named props
55
+ args = {k: _locals[k] for k in _explicit_args}
56
+
57
+ super(FefferyExtraSpinner, self).__init__(**args)