feffery_utils_components 0.1.4 → 0.1.6
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 +2 -1
- package/Project.toml +1 -1
- package/build/lib/feffery_utils_components/FefferyDiv.py +1 -1
- package/build/lib/feffery_utils_components/FefferyScroll.py +3 -3
- package/build/lib/feffery_utils_components/feffery_utils_components.min.js +6 -6
- package/build/lib/feffery_utils_components/metadata.json +83 -63
- package/build/lib/feffery_utils_components/package-info.json +1 -1
- package/feffery_utils_components/FefferyDiv.py +1 -1
- package/feffery_utils_components/FefferyLocalStorage.py +43 -0
- package/feffery_utils_components/FefferySessionStorage.py +48 -0
- package/feffery_utils_components/_imports_.py +3 -1
- package/feffery_utils_components/feffery_utils_components.min.js +5 -5
- package/feffery_utils_components/metadata.json +63 -11
- package/feffery_utils_components/package-info.json +2 -2
- package/package.json +2 -2
- package/src/FefferyUtilsComponents.jl +4 -3
- package/src/jl/''_fefferylocalstorage.jl +24 -0
- package/src/jl/''_fefferysessionstorage.jl +24 -0
- package/src/lib/components/FefferyDiv.react.js +11 -7
- package/src/lib/components/FefferyFancyMessage.js +0 -1
- package/src/lib/components/FefferyScroll.react.js +1 -1
- package/src/lib/components/store/FefferySessionStorage.js +87 -0
- package/src/lib/index.js +13 -1
- package/tests/StorageTest/app.py +54 -0
package/DESCRIPTION
CHANGED
package/NAMESPACE
CHANGED
package/Project.toml
CHANGED
|
@@ -90,7 +90,7 @@ Keyword arguments:
|
|
|
90
90
|
_namespace = 'feffery_utils_components'
|
|
91
91
|
_type = 'FefferyDiv'
|
|
92
92
|
@_explicitize_args
|
|
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,
|
|
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, enableClickAway=Component.UNDEFINED, clickAwayCount=Component.UNDEFINED, shadow=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
94
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']
|
|
95
95
|
self._valid_wildcard_attributes = []
|
|
96
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']
|
|
@@ -13,9 +13,9 @@ Keyword arguments:
|
|
|
13
13
|
|
|
14
14
|
- containerId (string; optional)
|
|
15
15
|
|
|
16
|
-
- delay (number;
|
|
16
|
+
- delay (number; default 0)
|
|
17
17
|
|
|
18
|
-
- duration (number;
|
|
18
|
+
- duration (number; default 500)
|
|
19
19
|
|
|
20
20
|
- executeScroll (boolean; default False)
|
|
21
21
|
|
|
@@ -42,7 +42,7 @@ Keyword arguments:
|
|
|
42
42
|
|
|
43
43
|
- scrollTopOffset (number; optional)
|
|
44
44
|
|
|
45
|
-
- smooth (a value equal to: 'linear', 'easeInQuad', 'easeOutQuad', 'easeInOutQuad', 'easeInCubic', 'easeOutCubic', 'easeInOutCubic', 'easeInQuart', 'easeOutQuart', 'easeInOutQuart', 'easeInQuint', 'easeOutQuint', 'easeInOutQuint';
|
|
45
|
+
- smooth (boolean | a value equal to: 'linear', 'easeInQuad', 'easeOutQuad', 'easeInOutQuad', 'easeInCubic', 'easeOutCubic', 'easeInOutCubic', 'easeInQuart', 'easeOutQuart', 'easeInOutQuart', 'easeInQuint', 'easeOutQuint', 'easeInOutQuint'; default True)"""
|
|
46
46
|
_children_props = []
|
|
47
47
|
_base_nodes = ['children']
|
|
48
48
|
_namespace = 'feffery_utils_components'
|