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
@@ -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 FefferyLazyLoad(Component):
7
+ """A FefferyLazyLoad 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
+ - className (string; optional)
17
+
18
+ - height (number | string; optional)
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
+ - offset (number; optional)
34
+
35
+ - style (dict; optional)
36
+
37
+ - throttle (number; optional)
38
+
39
+ - visible (boolean; default False)
40
+
41
+ - width (number | string; optional)"""
42
+ _children_props = []
43
+ _base_nodes = ['children']
44
+ _namespace = 'feffery_utils_components'
45
+ _type = 'FefferyLazyLoad'
46
+ @_explicitize_args
47
+ def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, offset=Component.UNDEFINED, visible=Component.UNDEFINED, throttle=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
48
+ self._prop_names = ['children', 'id', 'className', 'height', 'loading_state', 'offset', 'style', 'throttle', 'visible', 'width']
49
+ self._valid_wildcard_attributes = []
50
+ self.available_properties = ['children', 'id', 'className', 'height', 'loading_state', 'offset', 'style', 'throttle', 'visible', 'width']
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 if k != 'children'}
56
+
57
+ super(FefferyLazyLoad, self).__init__(children=children, **args)
@@ -0,0 +1,54 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyLocation(Component):
7
+ """A FefferyLocation component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; required):
13
+ The ID of this component, used to identify dash components in
14
+ callbacks. The ID needs to be unique across all of the components
15
+ in an app.
16
+
17
+ - hash (string; optional):
18
+ hash in window.location - e.g., \"#myhash\".
19
+
20
+ - href (string; optional):
21
+ href in window.location - e.g.,
22
+ \"/my/full/pathname?myargument=1#myhash\".
23
+
24
+ - includePathnames (list of strings; optional)
25
+
26
+ - pathname (string; optional):
27
+ pathname in window.location - e.g., \"/my/full/pathname\".
28
+
29
+ - refresh (boolean; default True):
30
+ Refresh the page when the location is updated?.
31
+
32
+ - search (string; optional):
33
+ search in window.location - e.g., \"?myargument=1\"."""
34
+ _children_props = []
35
+ _base_nodes = ['children']
36
+ _namespace = 'feffery_utils_components'
37
+ _type = 'FefferyLocation'
38
+ @_explicitize_args
39
+ def __init__(self, id=Component.REQUIRED, pathname=Component.UNDEFINED, search=Component.UNDEFINED, hash=Component.UNDEFINED, href=Component.UNDEFINED, refresh=Component.UNDEFINED, includePathnames=Component.UNDEFINED, **kwargs):
40
+ self._prop_names = ['id', 'hash', 'href', 'includePathnames', 'pathname', 'refresh', 'search']
41
+ self._valid_wildcard_attributes = []
42
+ self.available_properties = ['id', 'hash', 'href', 'includePathnames', 'pathname', 'refresh', 'search']
43
+ self.available_wildcard_properties = []
44
+ _explicit_args = kwargs.pop('_explicit_args')
45
+ _locals = locals()
46
+ _locals.update(kwargs) # For wildcard attrs and excess named props
47
+ args = {k: _locals[k] for k in _explicit_args}
48
+
49
+ for k in ['id']:
50
+ if k not in args:
51
+ raise TypeError(
52
+ 'Required argument `' + k + '` was not specified.')
53
+
54
+ super(FefferyLocation, self).__init__(**args)
@@ -0,0 +1,72 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyQRCode(Component):
7
+ """A FefferyQRCode component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - bgColor (string; default '#FFFFFF')
15
+
16
+ - fgColor (string; default '#000000')
17
+
18
+ - imageSettings (dict; optional)
19
+
20
+ `imageSettings` is a dict with keys:
21
+
22
+ - excavate (boolean; optional)
23
+
24
+ - height (number; optional)
25
+
26
+ - src (string; optional)
27
+
28
+ - width (number; optional)
29
+
30
+ - includeMargin (boolean; default False)
31
+
32
+ - level (a value equal to: 'L', 'M', 'Q', 'H'; default 'L')
33
+
34
+ - loading_state (dict; optional)
35
+
36
+ `loading_state` is a dict with keys:
37
+
38
+ - component_name (string; optional):
39
+ Holds the name of the component that is loading.
40
+
41
+ - is_loading (boolean; optional):
42
+ Determines if the component is loading or not.
43
+
44
+ - prop_name (string; optional):
45
+ Holds which property is loading.
46
+
47
+ - renderer (a value equal to: 'svg', 'canvas'; default 'svg')
48
+
49
+ - size (number; default 128)
50
+
51
+ - value (string; required)"""
52
+ _children_props = []
53
+ _base_nodes = ['children']
54
+ _namespace = 'feffery_utils_components'
55
+ _type = 'FefferyQRCode'
56
+ @_explicitize_args
57
+ def __init__(self, id=Component.UNDEFINED, value=Component.REQUIRED, size=Component.UNDEFINED, bgColor=Component.UNDEFINED, fgColor=Component.UNDEFINED, level=Component.UNDEFINED, includeMargin=Component.UNDEFINED, imageSettings=Component.UNDEFINED, renderer=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
58
+ self._prop_names = ['id', 'bgColor', 'fgColor', 'imageSettings', 'includeMargin', 'level', 'loading_state', 'renderer', 'size', 'value']
59
+ self._valid_wildcard_attributes = []
60
+ self.available_properties = ['id', 'bgColor', 'fgColor', 'imageSettings', 'includeMargin', 'level', 'loading_state', 'renderer', 'size', 'value']
61
+ self.available_wildcard_properties = []
62
+ _explicit_args = kwargs.pop('_explicit_args')
63
+ _locals = locals()
64
+ _locals.update(kwargs) # For wildcard attrs and excess named props
65
+ args = {k: _locals[k] for k in _explicit_args}
66
+
67
+ for k in ['value']:
68
+ if k not in args:
69
+ raise TypeError(
70
+ 'Required argument `' + k + '` was not specified.')
71
+
72
+ super(FefferyQRCode, 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 FefferyRawHTML(Component):
7
+ """A FefferyRawHTML component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - htmlString (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 = 'FefferyRawHTML'
32
+ @_explicitize_args
33
+ def __init__(self, id=Component.UNDEFINED, htmlString=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
34
+ self._prop_names = ['id', 'htmlString', 'loading_state']
35
+ self._valid_wildcard_attributes = []
36
+ self.available_properties = ['id', 'htmlString', '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(FefferyRawHTML, 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 FefferyReload(Component):
7
+ """A FefferyReload 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
+ - reload (boolean; optional)"""
30
+ _children_props = []
31
+ _base_nodes = ['children']
32
+ _namespace = 'feffery_utils_components'
33
+ _type = 'FefferyReload'
34
+ @_explicitize_args
35
+ def __init__(self, id=Component.UNDEFINED, reload=Component.UNDEFINED, delay=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
36
+ self._prop_names = ['id', 'delay', 'loading_state', 'reload']
37
+ self._valid_wildcard_attributes = []
38
+ self.available_properties = ['id', 'delay', 'loading_state', 'reload']
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(FefferyReload, 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 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}
42
+
43
+ super(FefferyResponsive, self).__init__(**args)
@@ -0,0 +1,49 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyRgbColorPicker(Component):
7
+ """A FefferyRgbColorPicker component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - className (string; optional)
15
+
16
+ - color (string; default 'rgb(68, 206, 246)')
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
+
31
+ - showAlpha (boolean; default False)
32
+
33
+ - style (dict; optional)"""
34
+ _children_props = []
35
+ _base_nodes = ['children']
36
+ _namespace = 'feffery_utils_components'
37
+ _type = 'FefferyRgbColorPicker'
38
+ @_explicitize_args
39
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, color=Component.UNDEFINED, showAlpha=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
40
+ self._prop_names = ['id', 'className', 'color', 'loading_state', 'showAlpha', 'style']
41
+ self._valid_wildcard_attributes = []
42
+ self.available_properties = ['id', 'className', 'color', 'loading_state', 'showAlpha', 'style']
43
+ self.available_wildcard_properties = []
44
+ _explicit_args = kwargs.pop('_explicit_args')
45
+ _locals = locals()
46
+ _locals.update(kwargs) # For wildcard attrs and excess named props
47
+ args = {k: _locals[k] for k in _explicit_args}
48
+
49
+ super(FefferyRgbColorPicker, self).__init__(**args)
@@ -0,0 +1,61 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyScroll(Component):
7
+ """A FefferyScroll component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - containerId (string; optional)
15
+
16
+ - delay (number; optional)
17
+
18
+ - duration (number; optional)
19
+
20
+ - executeScroll (boolean; default False)
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
+ - offset (number; optional)
36
+
37
+ - scrollMode (a value equal to: 'to-top', 'to-bottom', 'top-offset', 'relative-offset', 'target'; default 'to-top')
38
+
39
+ - scrollRelativeOffset (number; optional)
40
+
41
+ - scrollTargetId (string; optional)
42
+
43
+ - scrollTopOffset (number; optional)
44
+
45
+ - smooth (a value equal to: 'linear', 'easeInQuad', 'easeOutQuad', 'easeInOutQuad', 'easeInCubic', 'easeOutCubic', 'easeInOutCubic', 'easeInQuart', 'easeOutQuart', 'easeInOutQuart', 'easeInQuint', 'easeOutQuint', 'easeInOutQuint'; optional)"""
46
+ _children_props = []
47
+ _base_nodes = ['children']
48
+ _namespace = 'feffery_utils_components'
49
+ _type = 'FefferyScroll'
50
+ @_explicitize_args
51
+ def __init__(self, id=Component.UNDEFINED, scrollMode=Component.UNDEFINED, executeScroll=Component.UNDEFINED, scrollTopOffset=Component.UNDEFINED, scrollRelativeOffset=Component.UNDEFINED, scrollTargetId=Component.UNDEFINED, duration=Component.UNDEFINED, smooth=Component.UNDEFINED, delay=Component.UNDEFINED, containerId=Component.UNDEFINED, offset=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
52
+ self._prop_names = ['id', 'containerId', 'delay', 'duration', 'executeScroll', 'loading_state', 'offset', 'scrollMode', 'scrollRelativeOffset', 'scrollTargetId', 'scrollTopOffset', 'smooth']
53
+ self._valid_wildcard_attributes = []
54
+ self.available_properties = ['id', 'containerId', 'delay', 'duration', 'executeScroll', 'loading_state', 'offset', 'scrollMode', 'scrollRelativeOffset', 'scrollTargetId', 'scrollTopOffset', 'smooth']
55
+ self.available_wildcard_properties = []
56
+ _explicit_args = kwargs.pop('_explicit_args')
57
+ _locals = locals()
58
+ _locals.update(kwargs) # For wildcard attrs and excess named props
59
+ args = {k: _locals[k] for k in _explicit_args}
60
+
61
+ super(FefferyScroll, self).__init__(**args)
@@ -0,0 +1,69 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyScrollbars(Component):
7
+ """A FefferyScrollbars 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
+ - autoHide (boolean; default True)
17
+
18
+ - className (string; optional)
19
+
20
+ - classNames (dict; optional)
21
+
22
+ `classNames` is a dict with keys:
23
+
24
+ - content (string; optional)
25
+
26
+ - scrollContent (string; optional)
27
+
28
+ - scrollbar (string; optional)
29
+
30
+ - track (string; optional)
31
+
32
+ - forceVisible (boolean | a value equal to: 'x', 'y'; default False)
33
+
34
+ - loading_state (dict; optional)
35
+
36
+ `loading_state` is a dict with keys:
37
+
38
+ - component_name (string; optional):
39
+ Holds the name of the component that is loading.
40
+
41
+ - is_loading (boolean; optional):
42
+ Determines if the component is loading or not.
43
+
44
+ - prop_name (string; optional):
45
+ Holds which property is loading.
46
+
47
+ - scrollbarMaxSize (number; optional)
48
+
49
+ - scrollbarMinSize (number; default 25)
50
+
51
+ - style (dict; optional)
52
+
53
+ - timeout (number; default 1000)"""
54
+ _children_props = []
55
+ _base_nodes = ['children']
56
+ _namespace = 'feffery_utils_components'
57
+ _type = 'FefferyScrollbars'
58
+ @_explicitize_args
59
+ def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, autoHide=Component.UNDEFINED, classNames=Component.UNDEFINED, forceVisible=Component.UNDEFINED, timeout=Component.UNDEFINED, scrollbarMinSize=Component.UNDEFINED, scrollbarMaxSize=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
60
+ self._prop_names = ['children', 'id', 'autoHide', 'className', 'classNames', 'forceVisible', 'loading_state', 'scrollbarMaxSize', 'scrollbarMinSize', 'style', 'timeout']
61
+ self._valid_wildcard_attributes = []
62
+ self.available_properties = ['children', 'id', 'autoHide', 'className', 'classNames', 'forceVisible', 'loading_state', 'scrollbarMaxSize', 'scrollbarMinSize', 'style', 'timeout']
63
+ self.available_wildcard_properties = []
64
+ _explicit_args = kwargs.pop('_explicit_args')
65
+ _locals = locals()
66
+ _locals.update(kwargs) # For wildcard attrs and excess named props
67
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
68
+
69
+ super(FefferyScrollbars, 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 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}
42
+
43
+ super(FefferySetTitle, self).__init__(**args)
@@ -0,0 +1,75 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferyShortcutPanel(Component):
7
+ """A FefferyShortcutPanel component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (string; optional)
13
+
14
+ - data (list of dicts; optional)
15
+
16
+ `data` is a list of dicts with keys:
17
+
18
+ - children (list of strings; optional)
19
+
20
+ - handler (string; optional)
21
+
22
+ - hotkey (string; optional)
23
+
24
+ - id (string; required)
25
+
26
+ - keywords (string; optional)
27
+
28
+ - parent (string; optional)
29
+
30
+ - section (string; optional)
31
+
32
+ - title (string; required)
33
+
34
+ - disableHotkeys (boolean; optional)
35
+
36
+ - loading_state (dict; optional)
37
+
38
+ `loading_state` is a dict with keys:
39
+
40
+ - component_name (string; optional):
41
+ Holds the name of the component that is loading.
42
+
43
+ - is_loading (boolean; optional):
44
+ Determines if the component is loading or not.
45
+
46
+ - prop_name (string; optional):
47
+ Holds which property is loading.
48
+
49
+ - locale (a value equal to: 'en', 'zh'; default 'zh')
50
+
51
+ - openHotkey (string; optional)
52
+
53
+ - placeholder (string; optional)
54
+
55
+ - style (dict; optional)
56
+
57
+ - theme (a value equal to: 'light', 'dark'; default 'light')
58
+
59
+ - triggeredHotkey (string; optional)"""
60
+ _children_props = []
61
+ _base_nodes = ['children']
62
+ _namespace = 'feffery_utils_components'
63
+ _type = 'FefferyShortcutPanel'
64
+ @_explicitize_args
65
+ def __init__(self, id=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, data=Component.UNDEFINED, triggeredHotkey=Component.UNDEFINED, placeholder=Component.UNDEFINED, disableHotkeys=Component.UNDEFINED, openHotkey=Component.UNDEFINED, theme=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
66
+ self._prop_names = ['id', 'data', 'disableHotkeys', 'loading_state', 'locale', 'openHotkey', 'placeholder', 'style', 'theme', 'triggeredHotkey']
67
+ self._valid_wildcard_attributes = []
68
+ self.available_properties = ['id', 'data', 'disableHotkeys', 'loading_state', 'locale', 'openHotkey', 'placeholder', 'style', 'theme', 'triggeredHotkey']
69
+ self.available_wildcard_properties = []
70
+ _explicit_args = kwargs.pop('_explicit_args')
71
+ _locals = locals()
72
+ _locals.update(kwargs) # For wildcard attrs and excess named props
73
+ args = {k: _locals[k] for k in _explicit_args}
74
+
75
+ super(FefferyShortcutPanel, self).__init__(**args)
@@ -0,0 +1,51 @@
1
+ # AUTO GENERATED FILE - DO NOT EDIT
2
+
3
+ from dash.development.base_component import Component, _explicitize_args
4
+
5
+
6
+ class FefferySortableContainer(Component):
7
+ """A FefferySortableContainer 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
+ - className (string; optional)
17
+
18
+ - helperClassName (string | dict; default 'sortable-helper')
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
+ - orders (list of numbers; optional)
34
+
35
+ - style (dict; optional)"""
36
+ _children_props = []
37
+ _base_nodes = ['children']
38
+ _namespace = 'feffery_utils_components'
39
+ _type = 'FefferySortableContainer'
40
+ @_explicitize_args
41
+ def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, helperClassName=Component.UNDEFINED, orders=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
42
+ self._prop_names = ['children', 'id', 'className', 'helperClassName', 'loading_state', 'orders', 'style']
43
+ self._valid_wildcard_attributes = []
44
+ self.available_properties = ['children', 'id', 'className', 'helperClassName', 'loading_state', 'orders', 'style']
45
+ self.available_wildcard_properties = []
46
+ _explicit_args = kwargs.pop('_explicit_args')
47
+ _locals = locals()
48
+ _locals.update(kwargs) # For wildcard attrs and excess named props
49
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
50
+
51
+ super(FefferySortableContainer, self).__init__(children=children, **args)