feffery_utils_components 0.0.25 → 0.0.26
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.
- package/DESCRIPTION +1 -1
- package/NAMESPACE +1 -0
- package/Project.toml +1 -1
- package/build/lib/feffery_utils_components/FefferyBlockColorPicker.py +2 -5
- package/build/lib/feffery_utils_components/FefferyCaptcha.py +2 -5
- package/build/lib/feffery_utils_components/FefferyCircleColorPicker.py +2 -5
- package/build/lib/feffery_utils_components/FefferyCountDown.py +2 -5
- package/build/lib/feffery_utils_components/FefferyDiv.py +1 -4
- package/build/lib/feffery_utils_components/FefferyDocumentVisibility.py +2 -5
- package/build/lib/feffery_utils_components/FefferyExecuteJs.py +2 -5
- package/build/lib/feffery_utils_components/FefferyExternalCss.py +2 -5
- package/build/lib/feffery_utils_components/FefferyExternalJs.py +2 -5
- package/build/lib/feffery_utils_components/FefferyExtraSpinner.py +2 -5
- package/build/lib/feffery_utils_components/FefferyGeolocation.py +2 -5
- package/build/lib/feffery_utils_components/FefferyGithubColorPicker.py +2 -5
- package/build/lib/feffery_utils_components/FefferyGuide.py +3 -1
- package/build/lib/feffery_utils_components/FefferyHexColorPicker.py +2 -5
- package/build/lib/feffery_utils_components/FefferyHighlightWords.py +2 -5
- package/build/lib/feffery_utils_components/FefferyIdle.py +2 -5
- package/build/lib/feffery_utils_components/FefferyInViewport.py +1 -4
- package/build/lib/feffery_utils_components/FefferyKeyPress.py +3 -1
- package/build/lib/feffery_utils_components/FefferyLazyLoad.py +1 -4
- package/build/lib/feffery_utils_components/FefferyLocation.py +3 -1
- package/build/lib/feffery_utils_components/FefferyRawHTML.py +43 -0
- package/build/lib/feffery_utils_components/FefferyResponsive.py +2 -5
- package/build/lib/feffery_utils_components/FefferyRgbColorPicker.py +2 -5
- package/build/lib/feffery_utils_components/FefferyScroll.py +2 -5
- package/build/lib/feffery_utils_components/FefferyScrollbars.py +1 -4
- package/build/lib/feffery_utils_components/FefferySetTitle.py +2 -5
- package/build/lib/feffery_utils_components/FefferyShortcutPanel.py +2 -5
- package/build/lib/feffery_utils_components/FefferySortableContainer.py +1 -4
- package/build/lib/feffery_utils_components/FefferySortableItem.py +1 -4
- package/build/lib/feffery_utils_components/FefferySplit.py +1 -4
- package/build/lib/feffery_utils_components/FefferySplitPane.py +1 -4
- package/build/lib/feffery_utils_components/FefferySyntaxHighlighter.py +3 -1
- package/build/lib/feffery_utils_components/FefferyTimeout.py +2 -5
- package/build/lib/feffery_utils_components/FefferyTopProgress.py +1 -4
- package/build/lib/feffery_utils_components/FefferyTwitterColorPicker.py +2 -5
- package/build/lib/feffery_utils_components/FefferyVirtualList.py +2 -0
- package/build/lib/feffery_utils_components/FefferyWheelColorPicker.py +2 -5
- package/build/lib/feffery_utils_components/FefferyWindowSize.py +2 -5
- package/build/lib/feffery_utils_components/_imports_.py +2 -0
- package/build/lib/feffery_utils_components/feffery_utils_components.min.js +1 -1
- package/build/lib/feffery_utils_components/metadata.json +52 -0
- package/build/lib/feffery_utils_components/package-info.json +2 -1
- package/feffery_utils_components/FefferyFancyNotification.py +85 -0
- package/feffery_utils_components/_imports_.py +2 -0
- package/feffery_utils_components/feffery_utils_components.min.js +1 -1
- package/feffery_utils_components/metadata.json +273 -0
- package/feffery_utils_components/package-info.json +2 -1
- package/package.json +2 -1
- package/src/FefferyUtilsComponents.jl +4 -3
- package/src/jl/''_fefferyfancynotification.jl +51 -0
- package/src/lib/components/FefferyFancyNotification.js +191 -0
- package/src/lib/index.js +3 -1
- package/tests/FancyNotificationTest/app.py +50 -0
package/DESCRIPTION
CHANGED
package/NAMESPACE
CHANGED
package/Project.toml
CHANGED
|
@@ -48,9 +48,6 @@ Keyword arguments:
|
|
|
48
48
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
49
49
|
_locals = locals()
|
|
50
50
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
51
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
52
|
-
|
|
53
|
-
if k not in args:
|
|
54
|
-
raise TypeError(
|
|
55
|
-
'Required argument `' + k + '` was not specified.')
|
|
51
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
52
|
+
|
|
56
53
|
super(FefferyBlockColorPicker, self).__init__(**args)
|
|
@@ -54,9 +54,6 @@ Keyword arguments:
|
|
|
54
54
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
55
55
|
_locals = locals()
|
|
56
56
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
57
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
58
|
-
|
|
59
|
-
if k not in args:
|
|
60
|
-
raise TypeError(
|
|
61
|
-
'Required argument `' + k + '` was not specified.')
|
|
57
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
58
|
+
|
|
62
59
|
super(FefferyCaptcha, self).__init__(**args)
|
|
@@ -50,9 +50,6 @@ Keyword arguments:
|
|
|
50
50
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
51
51
|
_locals = locals()
|
|
52
52
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
53
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
54
|
-
|
|
55
|
-
if k not in args:
|
|
56
|
-
raise TypeError(
|
|
57
|
-
'Required argument `' + k + '` was not specified.')
|
|
53
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
54
|
+
|
|
58
55
|
super(FefferyCircleColorPicker, self).__init__(**args)
|
|
@@ -42,9 +42,6 @@ Keyword arguments:
|
|
|
42
42
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
43
43
|
_locals = locals()
|
|
44
44
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
45
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
46
|
-
|
|
47
|
-
if k not in args:
|
|
48
|
-
raise TypeError(
|
|
49
|
-
'Required argument `' + k + '` was not specified.')
|
|
45
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
46
|
+
|
|
50
47
|
super(FefferyCountDown, self).__init__(**args)
|
|
@@ -73,8 +73,5 @@ Keyword arguments:
|
|
|
73
73
|
_locals = locals()
|
|
74
74
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
75
75
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
76
|
-
|
|
77
|
-
if k not in args:
|
|
78
|
-
raise TypeError(
|
|
79
|
-
'Required argument `' + k + '` was not specified.')
|
|
76
|
+
|
|
80
77
|
super(FefferyDiv, self).__init__(children=children, **args)
|
|
@@ -38,9 +38,6 @@ Keyword arguments:
|
|
|
38
38
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
39
39
|
_locals = locals()
|
|
40
40
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
41
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
42
|
-
|
|
43
|
-
if k not in args:
|
|
44
|
-
raise TypeError(
|
|
45
|
-
'Required argument `' + k + '` was not specified.')
|
|
41
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
42
|
+
|
|
46
43
|
super(FefferyDocumentVisibility, self).__init__(**args)
|
|
@@ -38,9 +38,6 @@ Keyword arguments:
|
|
|
38
38
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
39
39
|
_locals = locals()
|
|
40
40
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
41
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
42
|
-
|
|
43
|
-
if k not in args:
|
|
44
|
-
raise TypeError(
|
|
45
|
-
'Required argument `' + k + '` was not specified.')
|
|
41
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
42
|
+
|
|
46
43
|
super(FefferyExecuteJs, self).__init__(**args)
|
|
@@ -40,9 +40,6 @@ Keyword arguments:
|
|
|
40
40
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
41
41
|
_locals = locals()
|
|
42
42
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
43
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
44
|
-
|
|
45
|
-
if k not in args:
|
|
46
|
-
raise TypeError(
|
|
47
|
-
'Required argument `' + k + '` was not specified.')
|
|
43
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
44
|
+
|
|
48
45
|
super(FefferyExternalCss, self).__init__(**args)
|
|
@@ -40,9 +40,6 @@ Keyword arguments:
|
|
|
40
40
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
41
41
|
_locals = locals()
|
|
42
42
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
43
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
44
|
-
|
|
45
|
-
if k not in args:
|
|
46
|
-
raise TypeError(
|
|
47
|
-
'Required argument `' + k + '` was not specified.')
|
|
43
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
44
|
+
|
|
48
45
|
super(FefferyExternalJs, self).__init__(**args)
|
|
@@ -52,9 +52,6 @@ Keyword arguments:
|
|
|
52
52
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
53
53
|
_locals = locals()
|
|
54
54
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
55
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
56
|
-
|
|
57
|
-
if k not in args:
|
|
58
|
-
raise TypeError(
|
|
59
|
-
'Required argument `' + k + '` was not specified.')
|
|
55
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
56
|
+
|
|
60
57
|
super(FefferyExtraSpinner, self).__init__(**args)
|
|
@@ -38,9 +38,6 @@ Keyword arguments:
|
|
|
38
38
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
39
39
|
_locals = locals()
|
|
40
40
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
41
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
42
|
-
|
|
43
|
-
if k not in args:
|
|
44
|
-
raise TypeError(
|
|
45
|
-
'Required argument `' + k + '` was not specified.')
|
|
41
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
42
|
+
|
|
46
43
|
super(FefferyGeolocation, self).__init__(**args)
|
|
@@ -48,9 +48,6 @@ Keyword arguments:
|
|
|
48
48
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
49
49
|
_locals = locals()
|
|
50
50
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
51
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
52
|
-
|
|
53
|
-
if k not in args:
|
|
54
|
-
raise TypeError(
|
|
55
|
-
'Required argument `' + k + '` was not specified.')
|
|
51
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
52
|
+
|
|
56
53
|
super(FefferyGithubColorPicker, self).__init__(**args)
|
|
@@ -100,9 +100,11 @@ Keyword arguments:
|
|
|
100
100
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
101
101
|
_locals = locals()
|
|
102
102
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
103
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
103
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
104
|
+
|
|
104
105
|
for k in ['localKey', 'steps']:
|
|
105
106
|
if k not in args:
|
|
106
107
|
raise TypeError(
|
|
107
108
|
'Required argument `' + k + '` was not specified.')
|
|
109
|
+
|
|
108
110
|
super(FefferyGuide, self).__init__(**args)
|
|
@@ -44,9 +44,6 @@ Keyword arguments:
|
|
|
44
44
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
45
45
|
_locals = locals()
|
|
46
46
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
47
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
48
|
-
|
|
49
|
-
if k not in args:
|
|
50
|
-
raise TypeError(
|
|
51
|
-
'Required argument `' + k + '` was not specified.')
|
|
47
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
48
|
+
|
|
52
49
|
super(FefferyHexColorPicker, self).__init__(**args)
|
|
@@ -56,9 +56,6 @@ Keyword arguments:
|
|
|
56
56
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
57
57
|
_locals = locals()
|
|
58
58
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
59
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
60
|
-
|
|
61
|
-
if k not in args:
|
|
62
|
-
raise TypeError(
|
|
63
|
-
'Required argument `' + k + '` was not specified.')
|
|
59
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
60
|
+
|
|
64
61
|
super(FefferyHighlightWords, self).__init__(**args)
|
|
@@ -40,9 +40,6 @@ Keyword arguments:
|
|
|
40
40
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
41
41
|
_locals = locals()
|
|
42
42
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
43
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
44
|
-
|
|
45
|
-
if k not in args:
|
|
46
|
-
raise TypeError(
|
|
47
|
-
'Required argument `' + k + '` was not specified.')
|
|
43
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
44
|
+
|
|
48
45
|
super(FefferyIdle, self).__init__(**args)
|
|
@@ -43,8 +43,5 @@ Keyword arguments:
|
|
|
43
43
|
_locals = locals()
|
|
44
44
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
45
45
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
46
|
-
|
|
47
|
-
if k not in args:
|
|
48
|
-
raise TypeError(
|
|
49
|
-
'Required argument `' + k + '` was not specified.')
|
|
46
|
+
|
|
50
47
|
super(FefferyInViewport, self).__init__(children=children, **args)
|
|
@@ -40,9 +40,11 @@ Keyword arguments:
|
|
|
40
40
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
41
41
|
_locals = locals()
|
|
42
42
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
43
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
43
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
44
|
+
|
|
44
45
|
for k in ['keys']:
|
|
45
46
|
if k not in args:
|
|
46
47
|
raise TypeError(
|
|
47
48
|
'Required argument `' + k + '` was not specified.')
|
|
49
|
+
|
|
48
50
|
super(FefferyKeyPress, self).__init__(**args)
|
|
@@ -53,8 +53,5 @@ Keyword arguments:
|
|
|
53
53
|
_locals = locals()
|
|
54
54
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
55
55
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
56
|
-
|
|
57
|
-
if k not in args:
|
|
58
|
-
raise TypeError(
|
|
59
|
-
'Required argument `' + k + '` was not specified.')
|
|
56
|
+
|
|
60
57
|
super(FefferyLazyLoad, self).__init__(children=children, **args)
|
|
@@ -44,9 +44,11 @@ Keyword arguments:
|
|
|
44
44
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
45
45
|
_locals = locals()
|
|
46
46
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
47
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
47
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
48
|
+
|
|
48
49
|
for k in ['id']:
|
|
49
50
|
if k not in args:
|
|
50
51
|
raise TypeError(
|
|
51
52
|
'Required argument `' + k + '` was not specified.')
|
|
53
|
+
|
|
52
54
|
super(FefferyLocation, 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)
|
|
@@ -38,9 +38,6 @@ Keyword arguments:
|
|
|
38
38
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
39
39
|
_locals = locals()
|
|
40
40
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
41
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
42
|
-
|
|
43
|
-
if k not in args:
|
|
44
|
-
raise TypeError(
|
|
45
|
-
'Required argument `' + k + '` was not specified.')
|
|
41
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
42
|
+
|
|
46
43
|
super(FefferyResponsive, self).__init__(**args)
|
|
@@ -44,9 +44,6 @@ Keyword arguments:
|
|
|
44
44
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
45
45
|
_locals = locals()
|
|
46
46
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
47
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
48
|
-
|
|
49
|
-
if k not in args:
|
|
50
|
-
raise TypeError(
|
|
51
|
-
'Required argument `' + k + '` was not specified.')
|
|
47
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
48
|
+
|
|
52
49
|
super(FefferyRgbColorPicker, self).__init__(**args)
|
|
@@ -56,9 +56,6 @@ Keyword arguments:
|
|
|
56
56
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
57
57
|
_locals = locals()
|
|
58
58
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
59
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
60
|
-
|
|
61
|
-
if k not in args:
|
|
62
|
-
raise TypeError(
|
|
63
|
-
'Required argument `' + k + '` was not specified.')
|
|
59
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
60
|
+
|
|
64
61
|
super(FefferyScroll, self).__init__(**args)
|
|
@@ -65,8 +65,5 @@ Keyword arguments:
|
|
|
65
65
|
_locals = locals()
|
|
66
66
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
67
67
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
68
|
-
|
|
69
|
-
if k not in args:
|
|
70
|
-
raise TypeError(
|
|
71
|
-
'Required argument `' + k + '` was not specified.')
|
|
68
|
+
|
|
72
69
|
super(FefferyScrollbars, self).__init__(children=children, **args)
|
|
@@ -38,9 +38,6 @@ Keyword arguments:
|
|
|
38
38
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
39
39
|
_locals = locals()
|
|
40
40
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
41
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
42
|
-
|
|
43
|
-
if k not in args:
|
|
44
|
-
raise TypeError(
|
|
45
|
-
'Required argument `' + k + '` was not specified.')
|
|
41
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
42
|
+
|
|
46
43
|
super(FefferySetTitle, self).__init__(**args)
|
|
@@ -70,9 +70,6 @@ Keyword arguments:
|
|
|
70
70
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
71
71
|
_locals = locals()
|
|
72
72
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
73
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
74
|
-
|
|
75
|
-
if k not in args:
|
|
76
|
-
raise TypeError(
|
|
77
|
-
'Required argument `' + k + '` was not specified.')
|
|
73
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
74
|
+
|
|
78
75
|
super(FefferyShortcutPanel, self).__init__(**args)
|
|
@@ -47,8 +47,5 @@ Keyword arguments:
|
|
|
47
47
|
_locals = locals()
|
|
48
48
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
49
49
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
50
|
-
|
|
51
|
-
if k not in args:
|
|
52
|
-
raise TypeError(
|
|
53
|
-
'Required argument `' + k + '` was not specified.')
|
|
50
|
+
|
|
54
51
|
super(FefferySortableContainer, self).__init__(children=children, **args)
|
|
@@ -43,8 +43,5 @@ Keyword arguments:
|
|
|
43
43
|
_locals = locals()
|
|
44
44
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
45
45
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
46
|
-
|
|
47
|
-
if k not in args:
|
|
48
|
-
raise TypeError(
|
|
49
|
-
'Required argument `' + k + '` was not specified.')
|
|
46
|
+
|
|
50
47
|
super(FefferySortableItem, self).__init__(children=children, **args)
|
|
@@ -59,8 +59,5 @@ Keyword arguments:
|
|
|
59
59
|
_locals = locals()
|
|
60
60
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
61
61
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
62
|
-
|
|
63
|
-
if k not in args:
|
|
64
|
-
raise TypeError(
|
|
65
|
-
'Required argument `' + k + '` was not specified.')
|
|
62
|
+
|
|
66
63
|
super(FefferySplit, self).__init__(children=children, **args)
|
|
@@ -43,8 +43,5 @@ Keyword arguments:
|
|
|
43
43
|
_locals = locals()
|
|
44
44
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
45
45
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
46
|
-
|
|
47
|
-
if k not in args:
|
|
48
|
-
raise TypeError(
|
|
49
|
-
'Required argument `' + k + '` was not specified.')
|
|
46
|
+
|
|
50
47
|
super(FefferySplitPane, self).__init__(children=children, **args)
|
|
@@ -48,9 +48,11 @@ Keyword arguments:
|
|
|
48
48
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
49
49
|
_locals = locals()
|
|
50
50
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
51
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
51
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
52
|
+
|
|
52
53
|
for k in ['codeString', 'language']:
|
|
53
54
|
if k not in args:
|
|
54
55
|
raise TypeError(
|
|
55
56
|
'Required argument `' + k + '` was not specified.')
|
|
57
|
+
|
|
56
58
|
super(FefferySyntaxHighlighter, self).__init__(**args)
|
|
@@ -40,9 +40,6 @@ Keyword arguments:
|
|
|
40
40
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
41
41
|
_locals = locals()
|
|
42
42
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
43
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
44
|
-
|
|
45
|
-
if k not in args:
|
|
46
|
-
raise TypeError(
|
|
47
|
-
'Required argument `' + k + '` was not specified.')
|
|
43
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
44
|
+
|
|
48
45
|
super(FefferyTimeout, self).__init__(**args)
|
|
@@ -63,8 +63,5 @@ Keyword arguments:
|
|
|
63
63
|
_locals = locals()
|
|
64
64
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
65
65
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
66
|
-
|
|
67
|
-
if k not in args:
|
|
68
|
-
raise TypeError(
|
|
69
|
-
'Required argument `' + k + '` was not specified.')
|
|
66
|
+
|
|
70
67
|
super(FefferyTopProgress, self).__init__(children=children, **args)
|
|
@@ -48,9 +48,6 @@ Keyword arguments:
|
|
|
48
48
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
49
49
|
_locals = locals()
|
|
50
50
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
51
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
52
|
-
|
|
53
|
-
if k not in args:
|
|
54
|
-
raise TypeError(
|
|
55
|
-
'Required argument `' + k + '` was not specified.')
|
|
51
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
52
|
+
|
|
56
53
|
super(FefferyTwitterColorPicker, self).__init__(**args)
|
|
@@ -47,8 +47,10 @@ Keyword arguments:
|
|
|
47
47
|
_locals = locals()
|
|
48
48
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
49
49
|
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
|
|
50
|
+
|
|
50
51
|
for k in ['height', 'itemHeight']:
|
|
51
52
|
if k not in args:
|
|
52
53
|
raise TypeError(
|
|
53
54
|
'Required argument `' + k + '` was not specified.')
|
|
55
|
+
|
|
54
56
|
super(FefferyVirtualList, self).__init__(children=children, **args)
|
|
@@ -42,9 +42,6 @@ Keyword arguments:
|
|
|
42
42
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
43
43
|
_locals = locals()
|
|
44
44
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
45
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
46
|
-
|
|
47
|
-
if k not in args:
|
|
48
|
-
raise TypeError(
|
|
49
|
-
'Required argument `' + k + '` was not specified.')
|
|
45
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
46
|
+
|
|
50
47
|
super(FefferyWheelColorPicker, self).__init__(**args)
|
|
@@ -40,9 +40,6 @@ Keyword arguments:
|
|
|
40
40
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
41
41
|
_locals = locals()
|
|
42
42
|
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
43
|
-
args = {k: _locals[k] for k in _explicit_args
|
|
44
|
-
|
|
45
|
-
if k not in args:
|
|
46
|
-
raise TypeError(
|
|
47
|
-
'Required argument `' + k + '` was not specified.')
|
|
43
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
44
|
+
|
|
48
45
|
super(FefferyWindowSize, self).__init__(**args)
|
|
@@ -7,6 +7,7 @@ from .FefferyTwitterColorPicker import FefferyTwitterColorPicker
|
|
|
7
7
|
from .FefferyWheelColorPicker import FefferyWheelColorPicker
|
|
8
8
|
from .FefferyExternalCss import FefferyExternalCss
|
|
9
9
|
from .FefferyExternalJs import FefferyExternalJs
|
|
10
|
+
from .FefferyRawHTML import FefferyRawHTML
|
|
10
11
|
from .FefferySetTitle import FefferySetTitle
|
|
11
12
|
from .FefferyCaptcha import FefferyCaptcha
|
|
12
13
|
from .FefferyCountDown import FefferyCountDown
|
|
@@ -46,6 +47,7 @@ __all__ = [
|
|
|
46
47
|
"FefferyWheelColorPicker",
|
|
47
48
|
"FefferyExternalCss",
|
|
48
49
|
"FefferyExternalJs",
|
|
50
|
+
"FefferyRawHTML",
|
|
49
51
|
"FefferySetTitle",
|
|
50
52
|
"FefferyCaptcha",
|
|
51
53
|
"FefferyCountDown",
|