funcnodes-react-flow 0.3.16__tar.gz → 0.3.17__tar.gz
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.
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/PKG-INFO +1 -1
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/__init__.py +5 -1
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/pyproject.toml +1 -1
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/LICENSE +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/README.md +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/__main__.py +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/plugin_setup.py +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/run.py +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/android-chrome-192x192.png +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/android-chrome-512x512.png +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/apple-touch-icon.png +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/asset-manifest.json +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/css/style.css +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/favicon-16x16.png +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/favicon-32x32.png +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/favicon.ico +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/index.html +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/js/index.js +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/js/index.js.map +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/logo.png +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/logo192.png +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/logo512.png +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/manifest.json +0 -0
- {funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/robots.txt +0 -0
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/__init__.py
RENAMED
@@ -35,9 +35,13 @@ def get_react_plugin_content(key: str) -> ExpandedReactPlugin:
|
|
35
35
|
if key not in FUNCNODES_REACT_PLUGIN:
|
36
36
|
raise ValueError(f"React plugin {key} not found")
|
37
37
|
|
38
|
+
if FUNCNODES_REACT_PLUGIN[key]["module"]:
|
39
|
+
with open(FUNCNODES_REACT_PLUGIN[key]["module"], "rb") as f:
|
40
|
+
module = f.read()
|
41
|
+
|
38
42
|
resp: ExpandedReactPlugin = {
|
39
43
|
"js": [],
|
40
|
-
"module":
|
44
|
+
"module": module,
|
41
45
|
"css": [],
|
42
46
|
}
|
43
47
|
if "js" in FUNCNODES_REACT_PLUGIN[key]:
|
File without changes
|
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/__main__.py
RENAMED
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/plugin_setup.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/favicon.ico
RENAMED
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/index.html
RENAMED
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/js/index.js
RENAMED
File without changes
|
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/logo.png
RENAMED
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/logo192.png
RENAMED
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/logo512.png
RENAMED
File without changes
|
File without changes
|
{funcnodes_react_flow-0.3.16 → funcnodes_react_flow-0.3.17}/funcnodes_react_flow/static/robots.txt
RENAMED
File without changes
|