feffery_utils_components 0.1.6 → 0.1.7
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/FefferyLocalStorage.py +43 -0
- package/build/lib/feffery_utils_components/FefferySessionStorage.py +48 -0
- package/build/lib/feffery_utils_components/_imports_.py +3 -1
- package/build/lib/feffery_utils_components/feffery_utils_components.min.js +3 -3
- package/build/lib/feffery_utils_components/metadata.json +52 -0
- package/build/lib/feffery_utils_components/package-info.json +2 -2
- package/feffery_utils_components/FefferyTopProgress.py +8 -4
- package/feffery_utils_components/feffery_utils_components.min.js +2 -2
- package/feffery_utils_components/metadata.json +22 -0
- package/feffery_utils_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/FefferyUtilsComponents.jl +3 -3
- package/src/jl/''_fefferytopprogress.jl +3 -1
- package/src/lib/components/FefferyTopProgress.react.js +240 -138
- package/usage.py +2 -0
|
@@ -5157,5 +5157,57 @@
|
|
|
5157
5157
|
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
5158
5158
|
}
|
|
5159
5159
|
}
|
|
5160
|
+
},
|
|
5161
|
+
"src/lib/components/store/FefferySessionStorage.js": {
|
|
5162
|
+
"description": "",
|
|
5163
|
+
"displayName": "FefferySessionStorage",
|
|
5164
|
+
"methods": [],
|
|
5165
|
+
"props": {
|
|
5166
|
+
"id": {
|
|
5167
|
+
"type": {
|
|
5168
|
+
"name": "string"
|
|
5169
|
+
},
|
|
5170
|
+
"required": true,
|
|
5171
|
+
"description": ""
|
|
5172
|
+
},
|
|
5173
|
+
"data": {
|
|
5174
|
+
"type": {
|
|
5175
|
+
"name": "any"
|
|
5176
|
+
},
|
|
5177
|
+
"required": false,
|
|
5178
|
+
"description": ""
|
|
5179
|
+
},
|
|
5180
|
+
"loading_state": {
|
|
5181
|
+
"type": {
|
|
5182
|
+
"name": "shape",
|
|
5183
|
+
"value": {
|
|
5184
|
+
"is_loading": {
|
|
5185
|
+
"name": "bool",
|
|
5186
|
+
"description": "Determines if the component is loading or not",
|
|
5187
|
+
"required": false
|
|
5188
|
+
},
|
|
5189
|
+
"prop_name": {
|
|
5190
|
+
"name": "string",
|
|
5191
|
+
"description": "Holds which property is loading",
|
|
5192
|
+
"required": false
|
|
5193
|
+
},
|
|
5194
|
+
"component_name": {
|
|
5195
|
+
"name": "string",
|
|
5196
|
+
"description": "Holds the name of the component that is loading",
|
|
5197
|
+
"required": false
|
|
5198
|
+
}
|
|
5199
|
+
}
|
|
5200
|
+
},
|
|
5201
|
+
"required": false,
|
|
5202
|
+
"description": ""
|
|
5203
|
+
},
|
|
5204
|
+
"setProps": {
|
|
5205
|
+
"type": {
|
|
5206
|
+
"name": "func"
|
|
5207
|
+
},
|
|
5208
|
+
"required": false,
|
|
5209
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
5210
|
+
}
|
|
5211
|
+
}
|
|
5160
5212
|
}
|
|
5161
5213
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "feffery_utils_components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Build more utility components for Plotly Dash.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -101,4 +101,4 @@
|
|
|
101
101
|
"node": ">=8.11.0",
|
|
102
102
|
"npm": ">=6.1.0"
|
|
103
103
|
}
|
|
104
|
-
}
|
|
104
|
+
}
|
|
@@ -17,6 +17,8 @@ Keyword arguments:
|
|
|
17
17
|
|
|
18
18
|
- className (string; optional)
|
|
19
19
|
|
|
20
|
+
- color (string; default '#29d')
|
|
21
|
+
|
|
20
22
|
- debug (boolean; default False)
|
|
21
23
|
|
|
22
24
|
- easing (string; optional)
|
|
@@ -48,16 +50,18 @@ Keyword arguments:
|
|
|
48
50
|
|
|
49
51
|
- spinning (boolean; default False)
|
|
50
52
|
|
|
51
|
-
- style (dict; optional)
|
|
53
|
+
- style (dict; optional)
|
|
54
|
+
|
|
55
|
+
- zIndex (number; default 99999)"""
|
|
52
56
|
_children_props = []
|
|
53
57
|
_base_nodes = ['children']
|
|
54
58
|
_namespace = 'feffery_utils_components'
|
|
55
59
|
_type = 'FefferyTopProgress'
|
|
56
60
|
@_explicitize_args
|
|
57
|
-
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, spinning=Component.UNDEFINED, minimum=Component.UNDEFINED, easing=Component.UNDEFINED, speed=Component.UNDEFINED, showSpinner=Component.UNDEFINED, debug=Component.UNDEFINED, listenPropsMode=Component.UNDEFINED, excludeProps=Component.UNDEFINED, includeProps=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
58
|
-
self._prop_names = ['children', 'id', 'className', 'debug', 'easing', 'excludeProps', 'includeProps', 'listenPropsMode', 'loading_state', 'minimum', 'showSpinner', 'speed', 'spinning', 'style']
|
|
61
|
+
def __init__(self, children=None, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, spinning=Component.UNDEFINED, minimum=Component.UNDEFINED, easing=Component.UNDEFINED, speed=Component.UNDEFINED, showSpinner=Component.UNDEFINED, debug=Component.UNDEFINED, listenPropsMode=Component.UNDEFINED, excludeProps=Component.UNDEFINED, includeProps=Component.UNDEFINED, color=Component.UNDEFINED, zIndex=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
62
|
+
self._prop_names = ['children', 'id', 'className', 'color', 'debug', 'easing', 'excludeProps', 'includeProps', 'listenPropsMode', 'loading_state', 'minimum', 'showSpinner', 'speed', 'spinning', 'style', 'zIndex']
|
|
59
63
|
self._valid_wildcard_attributes = []
|
|
60
|
-
self.available_properties = ['children', 'id', 'className', 'debug', 'easing', 'excludeProps', 'includeProps', 'listenPropsMode', 'loading_state', 'minimum', 'showSpinner', 'speed', 'spinning', 'style']
|
|
64
|
+
self.available_properties = ['children', 'id', 'className', 'color', 'debug', 'easing', 'excludeProps', 'includeProps', 'listenPropsMode', 'loading_state', 'minimum', 'showSpinner', 'speed', 'spinning', 'style', 'zIndex']
|
|
61
65
|
self.available_wildcard_properties = []
|
|
62
66
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
63
67
|
_locals = locals()
|