feffery_utils_components 0.0.9 → 0.0.13

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 (64) hide show
  1. package/DESCRIPTION +1 -1
  2. package/NAMESPACE +5 -5
  3. package/Project.toml +1 -1
  4. package/feffery_utils_components/FefferyCaptcha.py +5 -3
  5. package/feffery_utils_components/FefferyCircleColorPicker.py +47 -0
  6. package/{build/lib/feffery_utils_components/FefferyDashboard.py → feffery_utils_components/FefferyColorPicker.py} +9 -11
  7. package/feffery_utils_components/FefferyDiv.py +47 -0
  8. package/feffery_utils_components/FefferyExecuteJs.py +5 -3
  9. package/feffery_utils_components/FefferyExtraSpinner.py +49 -0
  10. package/feffery_utils_components/FefferyGuide.py +5 -3
  11. package/feffery_utils_components/FefferyScroll.py +57 -0
  12. package/feffery_utils_components/FefferyScrollbars.py +51 -0
  13. package/feffery_utils_components/FefferyShortcutPanel.py +5 -3
  14. package/feffery_utils_components/FefferySplit.py +8 -8
  15. package/feffery_utils_components/FefferySplitPane.py +5 -3
  16. package/feffery_utils_components/FefferySyntaxHighlighter.py +5 -3
  17. package/feffery_utils_components/FefferyTopProgress.py +5 -3
  18. package/feffery_utils_components/_imports_.py +10 -4
  19. package/feffery_utils_components/feffery_utils_components.min.js +50 -28
  20. package/feffery_utils_components/metadata.json +457 -202
  21. package/feffery_utils_components/package-info.json +7 -6
  22. package/package.json +7 -6
  23. package/src/FefferyUtilsComponents.jl +8 -5
  24. package/src/jl/''_fefferycirclecolorpicker.jl +26 -0
  25. package/src/jl/''_fefferycolorpicker.jl +22 -0
  26. package/src/jl/''_fefferydiv.jl +32 -0
  27. package/src/jl/''_fefferyextraspinner.jl +27 -0
  28. package/src/jl/''_fefferyscroll.jl +31 -0
  29. package/src/jl/''_fefferyscrollbars.jl +34 -0
  30. package/src/jl/''_fefferysplit.jl +1 -2
  31. package/src/lib/components/FefferyCaptcha.react.js +6 -2
  32. package/src/lib/components/FefferyDiv.react.js +85 -0
  33. package/src/lib/components/FefferyExecuteJs.react.js +21 -12
  34. package/src/lib/components/FefferyExtraSpinner.react.js +373 -0
  35. package/src/lib/components/FefferyGuide.react.js +11 -4
  36. package/src/lib/components/FefferyScroll.react.js +170 -0
  37. package/src/lib/components/FefferyScrollbars.react.js +104 -0
  38. package/src/lib/components/FefferyShortcutPanel.react.js +5 -1
  39. package/src/lib/components/FefferySyntaxHighlighter.react.js +6 -2
  40. package/src/lib/components/FefferyTopProgress.react.js +3 -3
  41. package/src/lib/components/colorPickers/FefferyCircleColorPicker.react.js +88 -0
  42. package/src/lib/components/nprogress.css +84 -0
  43. package/src/lib/components/split/FefferySplit.react.js +28 -42
  44. package/src/lib/components/styles.css +32 -8
  45. package/src/lib/index.js +11 -6
  46. package/usage.py +107 -39
  47. package/build/lib/feffery_utils_components/FefferyCaptcha.py +0 -51
  48. package/build/lib/feffery_utils_components/FefferyGuide.py +0 -69
  49. package/build/lib/feffery_utils_components/FefferyPasteImage.py +0 -56
  50. package/build/lib/feffery_utils_components/FefferyResizable.py +0 -39
  51. package/build/lib/feffery_utils_components/FefferyShortcutPanel.py +0 -51
  52. package/build/lib/feffery_utils_components/FefferySplit.py +0 -59
  53. package/build/lib/feffery_utils_components/FefferySplitPane.py +0 -48
  54. package/build/lib/feffery_utils_components/FefferySyntaxHighlighter.py +0 -52
  55. package/build/lib/feffery_utils_components/FefferyTopProgress.py +0 -68
  56. package/build/lib/feffery_utils_components/FefferyUtilsComponents.py +0 -40
  57. package/build/lib/feffery_utils_components/FefferyWaterMark.py +0 -64
  58. package/build/lib/feffery_utils_components/__init__.py +0 -89
  59. package/build/lib/feffery_utils_components/_imports_.py +0 -21
  60. package/build/lib/feffery_utils_components/feffery_utils_components.min.js +0 -407
  61. package/build/lib/feffery_utils_components/metadata.json +0 -1053
  62. package/build/lib/feffery_utils_components/package-info.json +0 -84
  63. package/src/lib/components/FefferyPasteImage.react.js +0 -168
  64. package/src/lib/components/FefferyWaterMark.react.js +0 -112
package/DESCRIPTION CHANGED
@@ -1,6 +1,6 @@
1
1
  Package: fefferyUtilsComponents
2
2
  Title: Utility augments components of Dash!
3
- Version: 0.0.9
3
+ Version: 0.0.13
4
4
  Description: Utility augments components of Dash!
5
5
  Depends: R (>= 3.0.2)
6
6
  Imports:
package/NAMESPACE CHANGED
@@ -1,15 +1,15 @@
1
1
  # AUTO GENERATED FILE - DO NOT EDIT
2
2
 
3
+ export(''FefferyCircleColorPicker)
3
4
  export(''FefferyCaptcha)
5
+ export(''FefferyDiv)
4
6
  export(''FefferyExecuteJs)
7
+ export(''FefferyExtraSpinner)
5
8
  export(''FefferyGuide)
6
- export(''FefferyPasteImage)
9
+ export(''FefferyScroll)
10
+ export(''FefferyScrollbars)
7
11
  export(''FefferyShortcutPanel)
8
12
  export(''FefferySyntaxHighlighter)
9
13
  export(''FefferyTopProgress)
10
- export(''FefferyWaterMark)
11
14
  export(''FefferySplit)
12
15
  export(''FefferySplitPane)
13
- export(FefferyDashboard)
14
- export(FefferyKeyboardShortcut)
15
- export(FefferyResizable)
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.9"
5
+ version = "0.0.13"
6
6
 
7
7
  [deps]
8
8
  Dash = "1b08a953-4be3-4667-9a23-3db579824955"
@@ -32,17 +32,19 @@ Keyword arguments:
32
32
  - style (optional)
33
33
 
34
34
  - width (optional)"""
35
+ _children_props = []
36
+ _base_nodes = ['children']
37
+ _namespace = 'feffery_utils_components'
38
+ _type = 'FefferyCaptcha'
35
39
  @_explicitize_args
36
40
  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):
37
41
  self._prop_names = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'setProps', 'style', 'width']
38
- self._type = 'FefferyCaptcha'
39
- self._namespace = 'feffery_utils_components'
40
42
  self._valid_wildcard_attributes = []
41
43
  self.available_properties = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'setProps', 'style', 'width']
42
44
  self.available_wildcard_properties = []
43
45
  _explicit_args = kwargs.pop('_explicit_args')
44
46
  _locals = locals()
45
- _locals.update(kwargs) # For wildcard attrs
47
+ _locals.update(kwargs) # For wildcard attrs and excess named props
46
48
  args = {k: _locals[k] for k in _explicit_args if k != 'children'}
47
49
  for k in []:
48
50
  if k not in 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 FefferyCircleColorPicker(Component):
7
+ """A FefferyCircleColorPicker component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (optional)
13
+
14
+ - circleSize (optional)
15
+
16
+ - circleSpacing (optional)
17
+
18
+ - className (optional)
19
+
20
+ - color (optional)
21
+
22
+ - colors (optional)
23
+
24
+ - loading_state (optional)
25
+
26
+ - style (optional)
27
+
28
+ - width (optional)"""
29
+ _children_props = []
30
+ _base_nodes = ['children']
31
+ _namespace = 'feffery_utils_components'
32
+ _type = 'FefferyCircleColorPicker'
33
+ @_explicitize_args
34
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, width=Component.UNDEFINED, colors=Component.UNDEFINED, circleSize=Component.UNDEFINED, circleSpacing=Component.UNDEFINED, color=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
35
+ self._prop_names = ['id', 'circleSize', 'circleSpacing', 'className', 'color', 'colors', 'loading_state', 'style', 'width']
36
+ self._valid_wildcard_attributes = []
37
+ self.available_properties = ['id', 'circleSize', 'circleSpacing', 'className', 'color', 'colors', 'loading_state', 'style', 'width']
38
+ self.available_wildcard_properties = []
39
+ _explicit_args = kwargs.pop('_explicit_args')
40
+ _locals = locals()
41
+ _locals.update(kwargs) # For wildcard attrs and excess named props
42
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
43
+ for k in []:
44
+ if k not in args:
45
+ raise TypeError(
46
+ 'Required argument `' + k + '` was not specified.')
47
+ super(FefferyCircleColorPicker, self).__init__(**args)
@@ -3,8 +3,8 @@
3
3
  from dash.development.base_component import Component, _explicitize_args
4
4
 
5
5
 
6
- class FefferyDashboard(Component):
7
- """A FefferyDashboard component.
6
+ class FefferyColorPicker(Component):
7
+ """A FefferyColorPicker component.
8
8
 
9
9
 
10
10
  Keyword arguments:
@@ -15,18 +15,16 @@ Keyword arguments:
15
15
 
16
16
  - loading_state (optional)
17
17
 
18
- - setProps (optional):
19
- Dash-assigned callback that should be called to report property
20
- changes to Dash, to make them available for callbacks.
18
+ - style (optional)
21
19
 
22
- - style (optional)"""
20
+ - type (default 'sketch')"""
23
21
  @_explicitize_args
24
- def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
25
- self._prop_names = ['id', 'className', 'loading_state', 'setProps', 'style']
26
- self._type = 'FefferyDashboard'
22
+ def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, type=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
23
+ self._prop_names = ['id', 'className', 'loading_state', 'style', 'type']
24
+ self._type = 'FefferyColorPicker'
27
25
  self._namespace = 'feffery_utils_components'
28
26
  self._valid_wildcard_attributes = []
29
- self.available_properties = ['id', 'className', 'loading_state', 'setProps', 'style']
27
+ self.available_properties = ['id', 'className', 'loading_state', 'style', 'type']
30
28
  self.available_wildcard_properties = []
31
29
  _explicit_args = kwargs.pop('_explicit_args')
32
30
  _locals = locals()
@@ -36,4 +34,4 @@ Keyword arguments:
36
34
  if k not in args:
37
35
  raise TypeError(
38
36
  'Required argument `' + k + '` was not specified.')
39
- super(FefferyDashboard, self).__init__(**args)
37
+ super(FefferyColorPicker, 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 FefferyDiv(Component):
7
+ """A FefferyDiv component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (optional)
13
+
14
+ - id (optional)
15
+
16
+ - _height (optional)
17
+
18
+ - _width (optional)
19
+
20
+ - className (optional)
21
+
22
+ - loading_state (optional)
23
+
24
+ - setProps (optional):
25
+ Dash-assigned callback that should be called to report property
26
+ changes to Dash, to make them available for callbacks.
27
+
28
+ - style (optional)"""
29
+ _children_props = []
30
+ _base_nodes = ['children']
31
+ _namespace = 'feffery_utils_components'
32
+ _type = 'FefferyDiv'
33
+ @_explicitize_args
34
+ def __init__(self, children=None, id=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, _width=Component.UNDEFINED, _height=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
35
+ self._prop_names = ['children', 'id', '_height', '_width', 'className', 'loading_state', 'setProps', 'style']
36
+ self._valid_wildcard_attributes = []
37
+ self.available_properties = ['children', 'id', '_height', '_width', 'className', 'loading_state', 'setProps', 'style']
38
+ self.available_wildcard_properties = []
39
+ _explicit_args = kwargs.pop('_explicit_args')
40
+ _locals = locals()
41
+ _locals.update(kwargs) # For wildcard attrs and excess named props
42
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
43
+ for k in []:
44
+ if k not in args:
45
+ raise TypeError(
46
+ 'Required argument `' + k + '` was not specified.')
47
+ super(FefferyDiv, self).__init__(children=children, **args)
@@ -14,17 +14,19 @@ Keyword arguments:
14
14
  - jsString (optional)
15
15
 
16
16
  - loading_state (optional)"""
17
+ _children_props = []
18
+ _base_nodes = ['children']
19
+ _namespace = 'feffery_utils_components'
20
+ _type = 'FefferyExecuteJs'
17
21
  @_explicitize_args
18
22
  def __init__(self, id=Component.UNDEFINED, jsString=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
19
23
  self._prop_names = ['id', 'jsString', 'loading_state']
20
- self._type = 'FefferyExecuteJs'
21
- self._namespace = 'feffery_utils_components'
22
24
  self._valid_wildcard_attributes = []
23
25
  self.available_properties = ['id', 'jsString', 'loading_state']
24
26
  self.available_wildcard_properties = []
25
27
  _explicit_args = kwargs.pop('_explicit_args')
26
28
  _locals = locals()
27
- _locals.update(kwargs) # For wildcard attrs
29
+ _locals.update(kwargs) # For wildcard attrs and excess named props
28
30
  args = {k: _locals[k] for k in _explicit_args if k != 'children'}
29
31
  for k in []:
30
32
  if k not in 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 FefferyExtraSpinner(Component):
7
+ """A FefferyExtraSpinner component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (optional)
13
+
14
+ - backColor (default '#1890ff')
15
+
16
+ - className (optional)
17
+
18
+ - color (default '#1890ff')
19
+
20
+ - frontColor (default '#def6ff')
21
+
22
+ - loading_state (optional)
23
+
24
+ - size (optional)
25
+
26
+ - sizeUnit (default 'px')
27
+
28
+ - style (optional)
29
+
30
+ - type (default 'ball')"""
31
+ _children_props = []
32
+ _base_nodes = ['children']
33
+ _namespace = 'feffery_utils_components'
34
+ _type = 'FefferyExtraSpinner'
35
+ @_explicitize_args
36
+ 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):
37
+ self._prop_names = ['id', 'backColor', 'className', 'color', 'frontColor', 'loading_state', 'size', 'sizeUnit', 'style', 'type']
38
+ self._valid_wildcard_attributes = []
39
+ self.available_properties = ['id', 'backColor', 'className', 'color', 'frontColor', 'loading_state', 'size', 'sizeUnit', 'style', 'type']
40
+ self.available_wildcard_properties = []
41
+ _explicit_args = kwargs.pop('_explicit_args')
42
+ _locals = locals()
43
+ _locals.update(kwargs) # For wildcard attrs and excess named props
44
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
45
+ for k in []:
46
+ if k not in args:
47
+ raise TypeError(
48
+ 'Required argument `' + k + '` was not specified.')
49
+ super(FefferyExtraSpinner, self).__init__(**args)
@@ -50,17 +50,19 @@ Keyword arguments:
50
50
  - steps (optional)
51
51
 
52
52
  - style (optional)"""
53
+ _children_props = []
54
+ _base_nodes = ['children']
55
+ _namespace = 'feffery_utils_components'
56
+ _type = 'FefferyGuide'
53
57
  @_explicitize_args
54
58
  def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, locale=Component.UNDEFINED, steps=Component.UNDEFINED, localKey=Component.UNDEFINED, closable=Component.UNDEFINED, modalClassName=Component.UNDEFINED, maskClassName=Component.UNDEFINED, mask=Component.UNDEFINED, arrow=Component.UNDEFINED, hotspot=Component.UNDEFINED, stepText=Component.UNDEFINED, nextText=Component.UNDEFINED, prevText=Component.UNDEFINED, showPreviousBtn=Component.UNDEFINED, okText=Component.UNDEFINED, step=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
55
59
  self._prop_names = ['id', 'arrow', 'className', 'closable', 'hotspot', 'loading_state', 'localKey', 'locale', 'mask', 'maskClassName', 'modalClassName', 'nextText', 'okText', 'prevText', 'setProps', 'showPreviousBtn', 'step', 'stepText', 'steps', 'style']
56
- self._type = 'FefferyGuide'
57
- self._namespace = 'feffery_utils_components'
58
60
  self._valid_wildcard_attributes = []
59
61
  self.available_properties = ['id', 'arrow', 'className', 'closable', 'hotspot', 'loading_state', 'localKey', 'locale', 'mask', 'maskClassName', 'modalClassName', 'nextText', 'okText', 'prevText', 'setProps', 'showPreviousBtn', 'step', 'stepText', 'steps', 'style']
60
62
  self.available_wildcard_properties = []
61
63
  _explicit_args = kwargs.pop('_explicit_args')
62
64
  _locals = locals()
63
- _locals.update(kwargs) # For wildcard attrs
65
+ _locals.update(kwargs) # For wildcard attrs and excess named props
64
66
  args = {k: _locals[k] for k in _explicit_args if k != 'children'}
65
67
  for k in []:
66
68
  if k not in 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 FefferyScroll(Component):
7
+ """A FefferyScroll component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - id (optional)
13
+
14
+ - containerId (optional)
15
+
16
+ - delay (optional)
17
+
18
+ - duration (optional)
19
+
20
+ - executeScroll (default False)
21
+
22
+ - loading_state (optional)
23
+
24
+ - offset (optional)
25
+
26
+ - scrollMode (default 'to-top')
27
+
28
+ - scrollRelativeOffset (optional)
29
+
30
+ - scrollTargetId (optional)
31
+
32
+ - scrollTopOffset (optional)
33
+
34
+ - setProps (optional):
35
+ Dash-assigned callback that should be called to report property
36
+ changes to Dash, to make them available for callbacks.
37
+
38
+ - smooth (optional)"""
39
+ _children_props = []
40
+ _base_nodes = ['children']
41
+ _namespace = 'feffery_utils_components'
42
+ _type = 'FefferyScroll'
43
+ @_explicitize_args
44
+ 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):
45
+ self._prop_names = ['id', 'containerId', 'delay', 'duration', 'executeScroll', 'loading_state', 'offset', 'scrollMode', 'scrollRelativeOffset', 'scrollTargetId', 'scrollTopOffset', 'setProps', 'smooth']
46
+ self._valid_wildcard_attributes = []
47
+ self.available_properties = ['id', 'containerId', 'delay', 'duration', 'executeScroll', 'loading_state', 'offset', 'scrollMode', 'scrollRelativeOffset', 'scrollTargetId', 'scrollTopOffset', 'setProps', 'smooth']
48
+ self.available_wildcard_properties = []
49
+ _explicit_args = kwargs.pop('_explicit_args')
50
+ _locals = locals()
51
+ _locals.update(kwargs) # For wildcard attrs and excess named props
52
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
53
+ for k in []:
54
+ if k not in args:
55
+ raise TypeError(
56
+ 'Required argument `' + k + '` was not specified.')
57
+ super(FefferyScroll, 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 FefferyScrollbars(Component):
7
+ """A FefferyScrollbars component.
8
+
9
+
10
+ Keyword arguments:
11
+
12
+ - children (optional)
13
+
14
+ - id (optional)
15
+
16
+ - autoHide (default True)
17
+
18
+ - className (optional)
19
+
20
+ - classNames (optional)
21
+
22
+ - forceVisible (default False)
23
+
24
+ - loading_state (optional)
25
+
26
+ - scrollbarMaxSize (optional)
27
+
28
+ - scrollbarMinSize (default 25)
29
+
30
+ - style (optional)
31
+
32
+ - timeout (default 1000)"""
33
+ _children_props = []
34
+ _base_nodes = ['children']
35
+ _namespace = 'feffery_utils_components'
36
+ _type = 'FefferyScrollbars'
37
+ @_explicitize_args
38
+ 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):
39
+ self._prop_names = ['children', 'id', 'autoHide', 'className', 'classNames', 'forceVisible', 'loading_state', 'scrollbarMaxSize', 'scrollbarMinSize', 'style', 'timeout']
40
+ self._valid_wildcard_attributes = []
41
+ self.available_properties = ['children', 'id', 'autoHide', 'className', 'classNames', 'forceVisible', 'loading_state', 'scrollbarMaxSize', 'scrollbarMinSize', 'style', 'timeout']
42
+ self.available_wildcard_properties = []
43
+ _explicit_args = kwargs.pop('_explicit_args')
44
+ _locals = locals()
45
+ _locals.update(kwargs) # For wildcard attrs and excess named props
46
+ args = {k: _locals[k] for k in _explicit_args if k != 'children'}
47
+ for k in []:
48
+ if k not in args:
49
+ raise TypeError(
50
+ 'Required argument `' + k + '` was not specified.')
51
+ super(FefferyScrollbars, self).__init__(children=children, **args)
@@ -32,17 +32,19 @@ Keyword arguments:
32
32
  - theme (default 'light')
33
33
 
34
34
  - triggeredHotkey (optional)"""
35
+ _children_props = []
36
+ _base_nodes = ['children']
37
+ _namespace = 'feffery_utils_components'
38
+ _type = 'FefferyShortcutPanel'
35
39
  @_explicitize_args
36
40
  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):
37
41
  self._prop_names = ['id', 'data', 'disableHotkeys', 'loading_state', 'locale', 'openHotkey', 'placeholder', 'setProps', 'style', 'theme', 'triggeredHotkey']
38
- self._type = 'FefferyShortcutPanel'
39
- self._namespace = 'feffery_utils_components'
40
42
  self._valid_wildcard_attributes = []
41
43
  self.available_properties = ['id', 'data', 'disableHotkeys', 'loading_state', 'locale', 'openHotkey', 'placeholder', 'setProps', 'style', 'theme', 'triggeredHotkey']
42
44
  self.available_wildcard_properties = []
43
45
  _explicit_args = kwargs.pop('_explicit_args')
44
46
  _locals = locals()
45
- _locals.update(kwargs) # For wildcard attrs
47
+ _locals.update(kwargs) # For wildcard attrs and excess named props
46
48
  args = {k: _locals[k] for k in _explicit_args if k != 'children'}
47
49
  for k in []:
48
50
  if k not in args:
@@ -17,8 +17,6 @@ Keyword arguments:
17
17
 
18
18
  - cursor (optional)
19
19
 
20
- - defaultSizes (optional)
21
-
22
20
  - direction (default 'horizontal')
23
21
 
24
22
  - dragInterval (optional)
@@ -40,17 +38,19 @@ Keyword arguments:
40
38
  - sizes (optional)
41
39
 
42
40
  - style (optional)"""
41
+ _children_props = []
42
+ _base_nodes = ['children']
43
+ _namespace = 'feffery_utils_components'
44
+ _type = 'FefferySplit'
43
45
  @_explicitize_args
44
- def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, defaultSizes=Component.UNDEFINED, sizes=Component.UNDEFINED, minSize=Component.UNDEFINED, maxSize=Component.UNDEFINED, expandToMin=Component.UNDEFINED, gutterSize=Component.UNDEFINED, dragInterval=Component.UNDEFINED, direction=Component.UNDEFINED, cursor=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
45
- self._prop_names = ['children', 'id', 'className', 'cursor', 'defaultSizes', 'direction', 'dragInterval', 'expandToMin', 'gutterSize', 'loading_state', 'maxSize', 'minSize', 'setProps', 'sizes', 'style']
46
- self._type = 'FefferySplit'
47
- self._namespace = 'feffery_utils_components'
46
+ def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, sizes=Component.UNDEFINED, minSize=Component.UNDEFINED, maxSize=Component.UNDEFINED, expandToMin=Component.UNDEFINED, gutterSize=Component.UNDEFINED, dragInterval=Component.UNDEFINED, direction=Component.UNDEFINED, cursor=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
47
+ self._prop_names = ['children', 'id', 'className', 'cursor', 'direction', 'dragInterval', 'expandToMin', 'gutterSize', 'loading_state', 'maxSize', 'minSize', 'setProps', 'sizes', 'style']
48
48
  self._valid_wildcard_attributes = []
49
- self.available_properties = ['children', 'id', 'className', 'cursor', 'defaultSizes', 'direction', 'dragInterval', 'expandToMin', 'gutterSize', 'loading_state', 'maxSize', 'minSize', 'setProps', 'sizes', 'style']
49
+ self.available_properties = ['children', 'id', 'className', 'cursor', 'direction', 'dragInterval', 'expandToMin', 'gutterSize', 'loading_state', 'maxSize', 'minSize', 'setProps', 'sizes', 'style']
50
50
  self.available_wildcard_properties = []
51
51
  _explicit_args = kwargs.pop('_explicit_args')
52
52
  _locals = locals()
53
- _locals.update(kwargs) # For wildcard attrs
53
+ _locals.update(kwargs) # For wildcard attrs and excess named props
54
54
  args = {k: _locals[k] for k in _explicit_args if k != 'children'}
55
55
  for k in []:
56
56
  if k not in args:
@@ -29,17 +29,19 @@ Keyword arguments:
29
29
  Holds which property is loading.
30
30
 
31
31
  - style (dict; optional)"""
32
+ _children_props = []
33
+ _base_nodes = ['children']
34
+ _namespace = 'feffery_utils_components'
35
+ _type = 'FefferySplitPane'
32
36
  @_explicitize_args
33
37
  def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
34
38
  self._prop_names = ['children', 'id', 'className', 'loading_state', 'style']
35
- self._type = 'FefferySplitPane'
36
- self._namespace = 'feffery_utils_components'
37
39
  self._valid_wildcard_attributes = []
38
40
  self.available_properties = ['children', 'id', 'className', 'loading_state', 'style']
39
41
  self.available_wildcard_properties = []
40
42
  _explicit_args = kwargs.pop('_explicit_args')
41
43
  _locals = locals()
42
- _locals.update(kwargs) # For wildcard attrs
44
+ _locals.update(kwargs) # For wildcard attrs and excess named props
43
45
  args = {k: _locals[k] for k in _explicit_args if k != 'children'}
44
46
  for k in []:
45
47
  if k not in args:
@@ -33,17 +33,19 @@ Keyword arguments:
33
33
  - showInlineLineNumbers (boolean; optional)
34
34
 
35
35
  - showLineNumbers (boolean; optional)"""
36
+ _children_props = []
37
+ _base_nodes = ['children']
38
+ _namespace = 'feffery_utils_components'
39
+ _type = 'FefferySyntaxHighlighter'
36
40
  @_explicitize_args
37
41
  def __init__(self, id=Component.UNDEFINED, codeStyle=Component.UNDEFINED, codeString=Component.REQUIRED, language=Component.REQUIRED, showLineNumbers=Component.UNDEFINED, showInlineLineNumbers=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
38
42
  self._prop_names = ['id', 'codeString', 'codeStyle', 'language', 'loading_state', 'showInlineLineNumbers', 'showLineNumbers']
39
- self._type = 'FefferySyntaxHighlighter'
40
- self._namespace = 'feffery_utils_components'
41
43
  self._valid_wildcard_attributes = []
42
44
  self.available_properties = ['id', 'codeString', 'codeStyle', 'language', 'loading_state', 'showInlineLineNumbers', 'showLineNumbers']
43
45
  self.available_wildcard_properties = []
44
46
  _explicit_args = kwargs.pop('_explicit_args')
45
47
  _locals = locals()
46
- _locals.update(kwargs) # For wildcard attrs
48
+ _locals.update(kwargs) # For wildcard attrs and excess named props
47
49
  args = {k: _locals[k] for k in _explicit_args if k != 'children'}
48
50
  for k in ['codeString', 'language']:
49
51
  if k not in args:
@@ -49,17 +49,19 @@ Keyword arguments:
49
49
  - spinning (boolean; default False)
50
50
 
51
51
  - style (dict; optional)"""
52
+ _children_props = []
53
+ _base_nodes = ['children']
54
+ _namespace = 'feffery_utils_components'
55
+ _type = 'FefferyTopProgress'
52
56
  @_explicitize_args
53
57
  def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, spinning=Component.UNDEFINED, minimum=Component.UNDEFINED, easing=Component.UNDEFINED, speed=Component.UNDEFINED, showSpinner=Component.UNDEFINED, debug=Component.UNDEFINED, listenPropsMode=Component.UNDEFINED, excludeProps=Component.UNDEFINED, includeProps=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
54
58
  self._prop_names = ['children', 'id', 'className', 'debug', 'easing', 'excludeProps', 'includeProps', 'listenPropsMode', 'loading_state', 'minimum', 'showSpinner', 'speed', 'spinning', 'style']
55
- self._type = 'FefferyTopProgress'
56
- self._namespace = 'feffery_utils_components'
57
59
  self._valid_wildcard_attributes = []
58
60
  self.available_properties = ['children', 'id', 'className', 'debug', 'easing', 'excludeProps', 'includeProps', 'listenPropsMode', 'loading_state', 'minimum', 'showSpinner', 'speed', 'spinning', 'style']
59
61
  self.available_wildcard_properties = []
60
62
  _explicit_args = kwargs.pop('_explicit_args')
61
63
  _locals = locals()
62
- _locals.update(kwargs) # For wildcard attrs
64
+ _locals.update(kwargs) # For wildcard attrs and excess named props
63
65
  args = {k: _locals[k] for k in _explicit_args if k != 'children'}
64
66
  for k in []:
65
67
  if k not in args:
@@ -1,23 +1,29 @@
1
+ from .FefferyCircleColorPicker import FefferyCircleColorPicker
1
2
  from .FefferyCaptcha import FefferyCaptcha
3
+ from .FefferyDiv import FefferyDiv
2
4
  from .FefferyExecuteJs import FefferyExecuteJs
5
+ from .FefferyExtraSpinner import FefferyExtraSpinner
3
6
  from .FefferyGuide import FefferyGuide
4
- from .FefferyPasteImage import FefferyPasteImage
7
+ from .FefferyScroll import FefferyScroll
8
+ from .FefferyScrollbars import FefferyScrollbars
5
9
  from .FefferyShortcutPanel import FefferyShortcutPanel
6
10
  from .FefferySyntaxHighlighter import FefferySyntaxHighlighter
7
11
  from .FefferyTopProgress import FefferyTopProgress
8
- from .FefferyWaterMark import FefferyWaterMark
9
12
  from .FefferySplit import FefferySplit
10
13
  from .FefferySplitPane import FefferySplitPane
11
14
 
12
15
  __all__ = [
16
+ "FefferyCircleColorPicker",
13
17
  "FefferyCaptcha",
18
+ "FefferyDiv",
14
19
  "FefferyExecuteJs",
20
+ "FefferyExtraSpinner",
15
21
  "FefferyGuide",
16
- "FefferyPasteImage",
22
+ "FefferyScroll",
23
+ "FefferyScrollbars",
17
24
  "FefferyShortcutPanel",
18
25
  "FefferySyntaxHighlighter",
19
26
  "FefferyTopProgress",
20
- "FefferyWaterMark",
21
27
  "FefferySplit",
22
28
  "FefferySplitPane"
23
29
  ]