feffery_utils_components 0.1.2 → 0.1.4
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/Project.toml +1 -1
- package/build/lib/feffery_utils_components/FefferyGithubColorPicker.py +4 -6
- package/build/lib/feffery_utils_components/FefferyGuide.py +4 -4
- package/build/lib/feffery_utils_components/FefferyWheelColorPicker.py +1 -1
- package/build/lib/feffery_utils_components/feffery_utils_components.min.js +2 -2
- package/build/lib/feffery_utils_components/metadata.json +8 -19
- package/build/lib/feffery_utils_components/package-info.json +1 -1
- package/feffery_utils_components/FefferyGuide.py +4 -4
- package/feffery_utils_components/FefferyScroll.py +3 -3
- package/feffery_utils_components/FefferyWheelColorPicker.py +1 -1
- package/feffery_utils_components/feffery_utils_components.min.js +2 -2
- package/feffery_utils_components/metadata.json +80 -60
- package/feffery_utils_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/FefferyUtilsComponents.jl +3 -3
- package/src/jl/''_fefferyguide.jl +2 -2
- package/src/jl/''_fefferyscroll.jl +1 -1
- package/src/lib/components/FefferyGuide.react.js +16 -13
- package/src/lib/components/FefferyScroll.react.js +28 -22
- package/src/lib/components/colorPickers/FefferyWheelColorPicker.react.js +14 -4
- package/usage.py +29 -15
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
|
@@ -32,18 +32,16 @@ Keyword arguments:
|
|
|
32
32
|
|
|
33
33
|
- style (dict; optional)
|
|
34
34
|
|
|
35
|
-
- triangle (a value equal to: 'hide', 'top-left', 'top-right'; default 'top-left')
|
|
36
|
-
|
|
37
|
-
- width (string; default '200px')"""
|
|
35
|
+
- triangle (a value equal to: 'hide', 'top-left', 'top-right'; default 'top-left')"""
|
|
38
36
|
_children_props = []
|
|
39
37
|
_base_nodes = ['children']
|
|
40
38
|
_namespace = 'feffery_utils_components'
|
|
41
39
|
_type = 'FefferyGithubColorPicker'
|
|
42
40
|
@_explicitize_args
|
|
43
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED,
|
|
44
|
-
self._prop_names = ['id', 'className', 'color', 'colors', 'loading_state', 'style', 'triangle'
|
|
41
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, color=Component.UNDEFINED, colors=Component.UNDEFINED, triangle=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
42
|
+
self._prop_names = ['id', 'className', 'color', 'colors', 'loading_state', 'style', 'triangle']
|
|
45
43
|
self._valid_wildcard_attributes = []
|
|
46
|
-
self.available_properties = ['id', 'className', 'color', 'colors', 'loading_state', 'style', 'triangle'
|
|
44
|
+
self.available_properties = ['id', 'className', 'color', 'colors', 'loading_state', 'style', 'triangle']
|
|
47
45
|
self.available_wildcard_properties = []
|
|
48
46
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
49
47
|
_locals = locals()
|
|
@@ -36,7 +36,7 @@ Keyword arguments:
|
|
|
36
36
|
|
|
37
37
|
- locale (a value equal to: 'zh', 'en'; default 'zh')
|
|
38
38
|
|
|
39
|
-
- mask (boolean;
|
|
39
|
+
- mask (boolean; default True)
|
|
40
40
|
|
|
41
41
|
- maskClassName (string; optional)
|
|
42
42
|
|
|
@@ -58,7 +58,7 @@ Keyword arguments:
|
|
|
58
58
|
|
|
59
59
|
`steps` is a list of dicts with keys:
|
|
60
60
|
|
|
61
|
-
- content (string; optional)
|
|
61
|
+
- content (a list of or a singular dash component, string or number; optional)
|
|
62
62
|
|
|
63
63
|
- offset (dict; optional)
|
|
64
64
|
|
|
@@ -84,10 +84,10 @@ Keyword arguments:
|
|
|
84
84
|
|
|
85
85
|
- width (number; optional)
|
|
86
86
|
|
|
87
|
-
- title (string; optional)
|
|
87
|
+
- title (a list of or a singular dash component, string or number; optional)
|
|
88
88
|
|
|
89
89
|
- style (dict; optional)"""
|
|
90
|
-
_children_props = []
|
|
90
|
+
_children_props = ['steps[].title', 'steps[].content']
|
|
91
91
|
_base_nodes = ['children']
|
|
92
92
|
_namespace = 'feffery_utils_components'
|
|
93
93
|
_type = 'FefferyGuide'
|