feffery_utils_components 0.0.8 → 0.0.12

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