feffery_utils_components 0.1.0 → 0.1.2
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/FefferyDiv.py +5 -3
- package/build/lib/feffery_utils_components/_imports_.py +2 -4
- package/build/lib/feffery_utils_components/feffery_utils_components.min.js +2 -2
- package/build/lib/feffery_utils_components/metadata.json +74 -153
- package/build/lib/feffery_utils_components/package-info.json +1 -1
- package/feffery_utils_components/FefferyGithubColorPicker.py +4 -6
- package/feffery_utils_components/feffery_utils_components.min.js +2 -2
- package/feffery_utils_components/metadata.json +0 -11
- package/feffery_utils_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/FefferyUtilsComponents.jl +3 -3
- package/src/jl/''_fefferygithubcolorpicker.jl +1 -2
- package/src/lib/components/FefferyCountDown.react.js +2 -2
- package/src/lib/components/FefferyCssVar.react.js +3 -4
- package/src/lib/components/colorPickers/FefferyBlockColorPicker.react.js +12 -2
- package/src/lib/components/colorPickers/FefferyCircleColorPicker.react.js +11 -1
- package/src/lib/components/colorPickers/FefferyGithubColorPicker.react.js +12 -7
- package/src/lib/components/colorPickers/FefferyTwitterColorPicker.react.js +11 -1
- package/src/lib/components/styles.css +4 -0
- package/usage.py +25 -26
package/DESCRIPTION
CHANGED
package/Project.toml
CHANGED
|
@@ -37,6 +37,8 @@ Keyword arguments:
|
|
|
37
37
|
|
|
38
38
|
- deleteChildIndex (number; optional)
|
|
39
39
|
|
|
40
|
+
- enableClickAway (boolean; default False)
|
|
41
|
+
|
|
40
42
|
- enableListenContextMenu (boolean; default False)
|
|
41
43
|
|
|
42
44
|
- insertChild (dict; optional)
|
|
@@ -88,10 +90,10 @@ Keyword arguments:
|
|
|
88
90
|
_namespace = 'feffery_utils_components'
|
|
89
91
|
_type = 'FefferyDiv'
|
|
90
92
|
@_explicitize_args
|
|
91
|
-
def __init__(self, children=None, id=Component.UNDEFINED, key=Component.UNDEFINED, appendChild=Component.UNDEFINED, insertChild=Component.UNDEFINED, replaceChild=Component.UNDEFINED, deleteChildIndex=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, _width=Component.UNDEFINED, _height=Component.UNDEFINED, debounceWait=Component.UNDEFINED, mouseEnterCount=Component.UNDEFINED, mouseLeaveCount=Component.UNDEFINED, nClicks=Component.UNDEFINED, nDoubleClicks=Component.UNDEFINED, enableListenContextMenu=Component.UNDEFINED, contextMenuEvent=Component.UNDEFINED, isHovering=Component.UNDEFINED, clickAwayCount=Component.UNDEFINED, shadow=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
92
|
-
self._prop_names = ['children', 'id', '_height', '_width', 'appendChild', 'className', 'clickAwayCount', 'contextMenuEvent', 'debounceWait', 'deleteChildIndex', 'enableListenContextMenu', 'insertChild', 'isHovering', 'key', 'loading_state', 'mouseEnterCount', 'mouseLeaveCount', 'nClicks', 'nDoubleClicks', 'replaceChild', 'shadow', 'style']
|
|
93
|
+
def __init__(self, children=None, id=Component.UNDEFINED, key=Component.UNDEFINED, appendChild=Component.UNDEFINED, insertChild=Component.UNDEFINED, replaceChild=Component.UNDEFINED, deleteChildIndex=Component.UNDEFINED, style=Component.UNDEFINED, className=Component.UNDEFINED, _width=Component.UNDEFINED, _height=Component.UNDEFINED, debounceWait=Component.UNDEFINED, mouseEnterCount=Component.UNDEFINED, mouseLeaveCount=Component.UNDEFINED, nClicks=Component.UNDEFINED, nDoubleClicks=Component.UNDEFINED, enableListenContextMenu=Component.UNDEFINED, contextMenuEvent=Component.UNDEFINED, isHovering=Component.UNDEFINED, clickAwayCount=Component.UNDEFINED, shadow=Component.UNDEFINED, enableClickAway=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
94
|
+
self._prop_names = ['children', 'id', '_height', '_width', 'appendChild', 'className', 'clickAwayCount', 'contextMenuEvent', 'debounceWait', 'deleteChildIndex', 'enableClickAway', 'enableListenContextMenu', 'insertChild', 'isHovering', 'key', 'loading_state', 'mouseEnterCount', 'mouseLeaveCount', 'nClicks', 'nDoubleClicks', 'replaceChild', 'shadow', 'style']
|
|
93
95
|
self._valid_wildcard_attributes = []
|
|
94
|
-
self.available_properties = ['children', 'id', '_height', '_width', 'appendChild', 'className', 'clickAwayCount', 'contextMenuEvent', 'debounceWait', 'deleteChildIndex', 'enableListenContextMenu', 'insertChild', 'isHovering', 'key', 'loading_state', 'mouseEnterCount', 'mouseLeaveCount', 'nClicks', 'nDoubleClicks', 'replaceChild', 'shadow', 'style']
|
|
96
|
+
self.available_properties = ['children', 'id', '_height', '_width', 'appendChild', 'className', 'clickAwayCount', 'contextMenuEvent', 'debounceWait', 'deleteChildIndex', 'enableClickAway', 'enableListenContextMenu', 'insertChild', 'isHovering', 'key', 'loading_state', 'mouseEnterCount', 'mouseLeaveCount', 'nClicks', 'nDoubleClicks', 'replaceChild', 'shadow', 'style']
|
|
95
97
|
self.available_wildcard_properties = []
|
|
96
98
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
97
99
|
_locals = locals()
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from .FefferyBlockColorPicker import FefferyBlockColorPicker
|
|
2
2
|
from .FefferyCircleColorPicker import FefferyCircleColorPicker
|
|
3
|
+
from .FefferyEyeDropper import FefferyEyeDropper
|
|
3
4
|
from .FefferyGithubColorPicker import FefferyGithubColorPicker
|
|
4
5
|
from .FefferyHexColorPicker import FefferyHexColorPicker
|
|
5
6
|
from .FefferyRgbColorPicker import FefferyRgbColorPicker
|
|
@@ -13,14 +14,12 @@ from .FefferyExecuteJs import FefferyExecuteJs
|
|
|
13
14
|
from .FefferyExternalCss import FefferyExternalCss
|
|
14
15
|
from .FefferyExternalJs import FefferyExternalJs
|
|
15
16
|
from .FefferyExtraSpinner import FefferyExtraSpinner
|
|
16
|
-
from .FefferyEyeDropper import FefferyEyeDropper
|
|
17
17
|
from .FefferyFancyMessage import FefferyFancyMessage
|
|
18
18
|
from .FefferyFancyNotification import FefferyFancyNotification
|
|
19
19
|
from .FefferyGuide import FefferyGuide
|
|
20
20
|
from .FefferyHighlightWords import FefferyHighlightWords
|
|
21
21
|
from .FefferyLazyLoad import FefferyLazyLoad
|
|
22
22
|
from .FefferyLazyLoadImage import FefferyLazyLoadImage
|
|
23
|
-
from .FefferyLocation import FefferyLocation
|
|
24
23
|
from .FefferyQRCode import FefferyQRCode
|
|
25
24
|
from .FefferyRawHTML import FefferyRawHTML
|
|
26
25
|
from .FefferyReload import FefferyReload
|
|
@@ -49,6 +48,7 @@ from .FefferySplitPane import FefferySplitPane
|
|
|
49
48
|
__all__ = [
|
|
50
49
|
"FefferyBlockColorPicker",
|
|
51
50
|
"FefferyCircleColorPicker",
|
|
51
|
+
"FefferyEyeDropper",
|
|
52
52
|
"FefferyGithubColorPicker",
|
|
53
53
|
"FefferyHexColorPicker",
|
|
54
54
|
"FefferyRgbColorPicker",
|
|
@@ -62,14 +62,12 @@ __all__ = [
|
|
|
62
62
|
"FefferyExternalCss",
|
|
63
63
|
"FefferyExternalJs",
|
|
64
64
|
"FefferyExtraSpinner",
|
|
65
|
-
"FefferyEyeDropper",
|
|
66
65
|
"FefferyFancyMessage",
|
|
67
66
|
"FefferyFancyNotification",
|
|
68
67
|
"FefferyGuide",
|
|
69
68
|
"FefferyHighlightWords",
|
|
70
69
|
"FefferyLazyLoad",
|
|
71
70
|
"FefferyLazyLoadImage",
|
|
72
|
-
"FefferyLocation",
|
|
73
71
|
"FefferyQRCode",
|
|
74
72
|
"FefferyRawHTML",
|
|
75
73
|
"FefferyReload",
|