funcnodes-react-flow 1.0.3__tar.gz → 1.1.0__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-1.1.0/.github/workflows/npm_publish_main.yml +138 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.pre-commit-config.yaml +2 -2
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/PKG-INFO +1 -1
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/pyproject.toml +1 -1
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/funcnodes_react_flow.css +1 -1
- funcnodes_react_flow-1.1.0/src/funcnodes_react_flow/static/funcnodes_react_flow.es.js +74286 -0
- funcnodes_react_flow-1.1.0/src/funcnodes_react_flow/static/funcnodes_react_flow.iife.js +925 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/index.html +84 -19
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/package.json +1 -1
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/index.dev.js +6 -6
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/index.html +3 -0
- funcnodes_react_flow-1.1.0/src/react/packages/funcnodes-react-flow/index.prod.js +95 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/package.json +8 -3
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/funcnodes-worker.ts +5 -0
- funcnodes_react_flow-1.1.0/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/event-manager.repos-update.test.ts +31 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/event-manager.ts +8 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/library-manager.ts +52 -8
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/manager/worker-manager.ts +14 -6
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/AddLibraryOverlay/index.tsx +9 -3
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/ExternalWorkerInstanceSettings.tsx +21 -1
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/io.scss +12 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/io.tsx +1 -0
- funcnodes_react_flow-1.1.0/src/react/packages/funcnodes-react-flow/src/setupTests.ts +52 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ColorPicker/CustomColorPicker.test.tsx +32 -22
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/fullscreenelement.test.tsx +4 -4
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/smoothexpand.test.tsx +4 -4
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Select/CustomSelect.test.tsx +2 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/SortableTable.performance.test.tsx +9 -2
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/ExpandingContainer/index.test.tsx +9 -6
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/FloatContainer/index.test.tsx +3 -3
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/SizeContextContainer/index.test.tsx +5 -1
- funcnodes_react_flow-1.1.0/src/react/packages/funcnodes-react-flow/src/shared/components/jsonSchemaForm/index.tsx +93 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/logger.test.ts +2 -1
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/vitest.config.fast.ts +2 -2
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow-plugin/package.json +1 -1
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow-plugin/src/rf_types.ts +20 -2
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/yarn.lock +214 -56
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/uv.lock +2 -2
- funcnodes_react_flow-1.0.3/src/funcnodes_react_flow/static/funcnodes_react_flow.es.js +0 -52812
- funcnodes_react_flow-1.0.3/src/funcnodes_react_flow/static/funcnodes_react_flow.iife.js +0 -830
- funcnodes_react_flow-1.0.3/src/react/packages/funcnodes-react-flow/index.prod.js +0 -33
- funcnodes_react_flow-1.0.3/src/react/packages/funcnodes-react-flow/src/setupTests.ts +0 -18
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.editorconfig +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.flake8 +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.gitattributes +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.github/actions/install_package/action.yml +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.github/workflows/npm_build.yaml +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.github/workflows/py_test.yml +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.github/workflows/version_publish_main.yml +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/.gitignore +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/LICENSE +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/MANIFEST.in +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/NODE_THIRD_PARTY_NOTICE.txt +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/README.md +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/THIRD_PARTY_NOTICES.md +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/pytest.ini +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/__init__.py +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/__main__.py +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/plugin_setup.py +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/run.py +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/android-chrome-192x192.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/android-chrome-512x512.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/apple-touch-icon.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/asset-manifest.json +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/favicon-16x16.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/favicon-32x32.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/favicon.ico +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/funcnodes_react_flow-favicon.ico +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/funcnodes_react_flow-logo192.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/funcnodes_react_flow-manifest.json +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/funcnodes_react_flow-style.css +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/logo.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/logo192.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/logo512.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/manifest.json +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/funcnodes_react_flow/static/robots.txt +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/.gitignore +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/.yarnrc.yml +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/dev_full.cjs +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/android-chrome-192x192.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/android-chrome-512x512.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/apple-touch-icon.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/asset-manifest.json +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/favicon-16x16.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/favicon-32x32.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/favicon.ico +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/logo.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/logo192.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/logo512.png +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/manifest.json +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/assets/robots.txt +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/playwright.config.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/TODO.md +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/app-properties.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/app.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/app.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/funcnodescontext.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.accessibility.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.example.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.integration.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.performance.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.test-utils.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/providers/theme-provider.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/app/workspace.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/edges/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/edges/serialization/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/edges/utils.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/actions/edge.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/actions/groups.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/actions/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/actions/node.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/core.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/lib-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/nodespace-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/plugin-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/rf-handlers.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/rf-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/state-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/worker-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/serializations/full.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/serializations/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/serializations/view.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/states/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/states/progress.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/states/react-flow.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/cmd-messages.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/error-messages.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/event-messages.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/helper-messages.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/progress-message.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/result-messages.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/interfaces/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/interfaces/io.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/interfaces/node.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/interfaces/rendering.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/serializations/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/serializations/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/default.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/deserialization.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/full-io.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/full_node.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/iostore.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/nodestore.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/normalization.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/update.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/utils/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/utils/node-utils.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodespace/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodespace/interfaces.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/nodespace/store.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/index.d.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/types.d.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/upgrading.d.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/upgrading.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/communication-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/connection-health-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/edge-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/group-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/hook-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/node-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/sync-manager.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/worker-handlers.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/worker.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/hooks/worker_api_hooks.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/manager/worker-manager.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/websocket/websocket-worker.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/core/workers/websocket/websocket-worker.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-handle-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-handle-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-handle-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-overlay-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-overlay-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-overlay-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-preview-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-preview-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-preview-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/bytes.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/defaults.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/html.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/images.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/json.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/tables.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/text.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-renderer/bytes.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/boolean.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/color.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/numbers.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/selection.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/text.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/output-renderer/default.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/output-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/output-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/hooks/data_renderer_overlay.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings/render-mappings.provider.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings/render-mappings.reducer.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings/render-mappings.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/utils/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/utils/renderer-converter.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/edges/components/edge.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/edges/components/edges.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/edges/components/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/edges/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/groups/components/groups.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/groups/components/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/groups/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/groups/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/header/header-main.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/header/header.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/header/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/header/nodespacemenu.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/header/settingsmenu.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/header/settingsmenu_appearance.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/header/statusbar.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/header/workermenu.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/index.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/ExternalWorkerClassEntry.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/ExternalWorkerInstanceEntry.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/ExternalWorkerShelf.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/LibraryFilter/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/LibraryItem/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/LibraryNode/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/ActiveModule.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/AddableModule.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/InstallableModule.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/ModuleDescription.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/ModuleLinks.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/VersionSelector.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/library.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/states/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/library/states/libstate.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/NodeSettings.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/NodeSettingsOverlay.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/NodeSettingsWindow.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/io/NodeIOSettings.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/io/NodeSettingsInput.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/io/NodeSettingsOutput.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/io/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/tabs/GeneralTab.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/tabs/InputTab.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/tabs/OutputTab.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/tabs/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/node-settings.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/body_data_renderer.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/index.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/handle_renderer.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/iodataoverlay.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/nodeinput.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/nodeoutput.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/node.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/node.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/nodes.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/helper_hooks.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/useBodyDataRendererForIo.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/useDefaultNodeInjection.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/usePreviewHandleDataRendererForIo.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/provider.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/rf-node-types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ContextMenu/ContextMenu.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ContextMenu/ContextMenu.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ContextMenu/ContextMenu.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ContextMenu/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/KeyHandler/KeyHandler.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/KeyHandler/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowLayer/ReactFlowLayer.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowLayer/ReactFlowLayer.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowLayer/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowLayer/react_flow_layer.tsx.backup +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowManager/ReactFlowManager.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowManager/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/funcnodesreactflow.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/hooks/useClipboardOperations.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/hooks/useReactFlowSelection.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/store/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/store/rf-store.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/themes.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/clipboard-operations.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/node-types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/node.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/index.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ColorPicker/colorpicker.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ColorPicker/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ErrorComponents/error-components.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ErrorComponents/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/fullscreenelement.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/smoothexpand.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/JSONDisplay/JSONDisplay.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/JSONDisplay/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/JSONDisplay/jsonDisplay.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ProgressBar/ProgressBar.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ProgressBar/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ProgressBar/progressBar.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Select/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Select/select.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/README.md +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/SortableTable.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/SortableTable.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/SortableTable.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/types.test.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/utils.test.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/utils.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/ExpandingContainer/expanding-container.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/ExpandingContainer/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/FloatContainer/float-container.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/FloatContainer/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/SizeContextContainer/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/SizeContextContainer/size-context-container.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/dialog/CustomDialog.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/dialog/CustomDialog.test.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/dialog/CustomDialog.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/dialog/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/error-boundary/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/icons/fontawsome.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/icons/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/renderers/images.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/renderers/json.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/example.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/icons.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/index.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/toast.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/toast.tsx +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/toast.types.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/data-structures/data-structures.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/data-structures/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/styles/htmlelements.scss +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/data-helpers.test.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/data-helpers.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/debugger.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/layout/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/layout/txt.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/logger.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/object-helpers.test.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/object-helpers.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/zustand-helpers.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/tsconfig.json +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/vite.browser.config.js +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/vite.config.js +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/vite.test.config.js +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow/vitest.config.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow-plugin/rollup.config.js +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow-plugin/src/index.ts +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow-plugin/tsconfig.json +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/src/react/packages/funcnodes-react-flow-plugin/vite.config.js +0 -0
- {funcnodes_react_flow-1.0.3 → funcnodes_react_flow-1.1.0}/tests/test_import.py +0 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
# Publish React packages to npm when main/master is updated.
|
|
2
|
+
name: npm_publish
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
- master
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
npm_publish:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
permissions:
|
|
14
|
+
contents: write
|
|
15
|
+
id-token: write
|
|
16
|
+
env:
|
|
17
|
+
WORKSPACE_ROOT: src/react
|
|
18
|
+
NODE_VERSION: "22"
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- name: Checkout repository
|
|
22
|
+
uses: actions/checkout@v4
|
|
23
|
+
with:
|
|
24
|
+
fetch-depth: 0
|
|
25
|
+
|
|
26
|
+
- name: Enable corepack
|
|
27
|
+
run: corepack enable
|
|
28
|
+
|
|
29
|
+
- name: Set up Node.js
|
|
30
|
+
uses: actions/setup-node@v4
|
|
31
|
+
with:
|
|
32
|
+
node-version: ${{ env.NODE_VERSION }}
|
|
33
|
+
registry-url: https://registry.npmjs.org
|
|
34
|
+
cache: yarn
|
|
35
|
+
cache-dependency-path: src/react/yarn.lock
|
|
36
|
+
|
|
37
|
+
- name: Read package versions
|
|
38
|
+
id: read_versions
|
|
39
|
+
run: |
|
|
40
|
+
FLOW_VERSION=$(jq -r .version src/react/packages/funcnodes-react-flow/package.json)
|
|
41
|
+
PLUGIN_VERSION=$(jq -r .version src/react/packages/funcnodes-react-flow-plugin/package.json)
|
|
42
|
+
echo "flow_version=${FLOW_VERSION}" >> $GITHUB_OUTPUT
|
|
43
|
+
echo "plugin_version=${PLUGIN_VERSION}" >> $GITHUB_OUTPUT
|
|
44
|
+
|
|
45
|
+
- name: Get published versions from npm
|
|
46
|
+
id: registry_versions
|
|
47
|
+
run: |
|
|
48
|
+
FLOW_PUBLISHED=$(npm view @linkdlab/funcnodes_react_flow version 2>/dev/null || echo "0.0.0")
|
|
49
|
+
PLUGIN_PUBLISHED=$(npm view @linkdlab/funcnodes-react-flow-plugin version 2>/dev/null || echo "0.0.0")
|
|
50
|
+
echo "flow_published=${FLOW_PUBLISHED}" >> $GITHUB_OUTPUT
|
|
51
|
+
echo "plugin_published=${PLUGIN_PUBLISHED}" >> $GITHUB_OUTPUT
|
|
52
|
+
|
|
53
|
+
- name: Decide publish plan
|
|
54
|
+
id: publish_plan
|
|
55
|
+
run: |
|
|
56
|
+
FLOW_VERSION="${{ steps.read_versions.outputs.flow_version }}"
|
|
57
|
+
PLUGIN_VERSION="${{ steps.read_versions.outputs.plugin_version }}"
|
|
58
|
+
FLOW_PUBLISHED="${{ steps.registry_versions.outputs.flow_published }}"
|
|
59
|
+
PLUGIN_PUBLISHED="${{ steps.registry_versions.outputs.plugin_published }}"
|
|
60
|
+
|
|
61
|
+
PUBLISH_FLOW=$([ "$FLOW_VERSION" != "$FLOW_PUBLISHED" ] && echo true || echo false)
|
|
62
|
+
PUBLISH_PLUGIN=$([ "$PLUGIN_VERSION" != "$PLUGIN_PUBLISHED" ] && echo true || echo false)
|
|
63
|
+
|
|
64
|
+
echo "publish_flow=${PUBLISH_FLOW}" >> $GITHUB_OUTPUT
|
|
65
|
+
echo "publish_plugin=${PUBLISH_PLUGIN}" >> $GITHUB_OUTPUT
|
|
66
|
+
|
|
67
|
+
if [ "$PUBLISH_FLOW" = true ] || [ "$PUBLISH_PLUGIN" = true ]; then
|
|
68
|
+
echo "should_publish_any=true" >> $GITHUB_OUTPUT
|
|
69
|
+
else
|
|
70
|
+
echo "should_publish_any=false" >> $GITHUB_OUTPUT
|
|
71
|
+
echo "No package version changes detected; skipping publish." >> $GITHUB_STEP_SUMMARY
|
|
72
|
+
fi
|
|
73
|
+
|
|
74
|
+
if [ "$FLOW_VERSION" != "$PLUGIN_VERSION" ]; then
|
|
75
|
+
echo "Warning: package versions differ (flow=$FLOW_VERSION, plugin=$PLUGIN_VERSION)." >> $GITHUB_STEP_SUMMARY
|
|
76
|
+
fi
|
|
77
|
+
|
|
78
|
+
- name: Install dependencies
|
|
79
|
+
if: steps.publish_plan.outputs.should_publish_any == 'true'
|
|
80
|
+
working-directory: ${{ env.WORKSPACE_ROOT }}
|
|
81
|
+
run: yarn install --immutable
|
|
82
|
+
|
|
83
|
+
- name: Build packages (topological order)
|
|
84
|
+
if: steps.publish_plan.outputs.should_publish_any == 'true'
|
|
85
|
+
working-directory: ${{ env.WORKSPACE_ROOT }}
|
|
86
|
+
run: yarn workspaces foreach --topological-dev -A run build
|
|
87
|
+
|
|
88
|
+
- name: Test funcnodes-react-flow
|
|
89
|
+
if: steps.publish_plan.outputs.publish_flow == 'true'
|
|
90
|
+
working-directory: ${{ env.WORKSPACE_ROOT }}
|
|
91
|
+
run: yarn workspace @linkdlab/funcnodes_react_flow run test
|
|
92
|
+
|
|
93
|
+
- name: Typecheck funcnodes-react-flow-plugin
|
|
94
|
+
if: steps.publish_plan.outputs.publish_plugin == 'true'
|
|
95
|
+
working-directory: ${{ env.WORKSPACE_ROOT }}
|
|
96
|
+
run: yarn workspace @linkdlab/funcnodes-react-flow-plugin run typecheck
|
|
97
|
+
|
|
98
|
+
- name: Publish @linkdlab/funcnodes_react_flow
|
|
99
|
+
if: steps.publish_plan.outputs.publish_flow == 'true'
|
|
100
|
+
working-directory: ${{ env.WORKSPACE_ROOT }}/packages/funcnodes-react-flow
|
|
101
|
+
env:
|
|
102
|
+
NPM_CONFIG_REGISTRY: https://registry.npmjs.org
|
|
103
|
+
run: |
|
|
104
|
+
npm publish --access public --tag latest --provenance
|
|
105
|
+
|
|
106
|
+
- name: Publish @linkdlab/funcnodes-react-flow-plugin
|
|
107
|
+
if: steps.publish_plan.outputs.publish_plugin == 'true'
|
|
108
|
+
working-directory: ${{ env.WORKSPACE_ROOT }}/packages/funcnodes-react-flow-plugin
|
|
109
|
+
env:
|
|
110
|
+
NPM_CONFIG_REGISTRY: https://registry.npmjs.org
|
|
111
|
+
run: |
|
|
112
|
+
npm publish --access public --tag latest --provenance
|
|
113
|
+
|
|
114
|
+
- name: Create git tag for funcnodes-react-flow
|
|
115
|
+
if: steps.publish_plan.outputs.publish_flow == 'true'
|
|
116
|
+
run: |
|
|
117
|
+
TAG="react-flow-v${{ steps.read_versions.outputs.flow_version }}"
|
|
118
|
+
git config --local user.name "${GITHUB_ACTOR}"
|
|
119
|
+
git config --local user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
|
120
|
+
if git rev-parse "$TAG" >/dev/null 2>&1; then
|
|
121
|
+
echo "Tag $TAG already exists, skipping."
|
|
122
|
+
else
|
|
123
|
+
git tag -a "$TAG" -m "Release $TAG"
|
|
124
|
+
git push origin "$TAG"
|
|
125
|
+
fi
|
|
126
|
+
|
|
127
|
+
- name: Create git tag for funcnodes-react-flow-plugin
|
|
128
|
+
if: steps.publish_plan.outputs.publish_plugin == 'true'
|
|
129
|
+
run: |
|
|
130
|
+
TAG="react-flow-plugin-v${{ steps.read_versions.outputs.plugin_version }}"
|
|
131
|
+
git config --local user.name "${GITHUB_ACTOR}"
|
|
132
|
+
git config --local user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
|
133
|
+
if git rev-parse "$TAG" >/dev/null 2>&1; then
|
|
134
|
+
echo "Tag $TAG already exists, skipping."
|
|
135
|
+
else
|
|
136
|
+
git tag -a "$TAG" -m "Release $TAG"
|
|
137
|
+
git push origin "$TAG"
|
|
138
|
+
fi
|
|
@@ -10,14 +10,14 @@ repos:
|
|
|
10
10
|
|
|
11
11
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
12
12
|
# uv version.
|
|
13
|
-
rev: "0.
|
|
13
|
+
rev: "0.9.4"
|
|
14
14
|
hooks:
|
|
15
15
|
# Update the uv lockfile
|
|
16
16
|
- id: uv-lock
|
|
17
17
|
|
|
18
18
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
19
19
|
# Ruff version.
|
|
20
|
-
rev: v0.
|
|
20
|
+
rev: v0.14.1
|
|
21
21
|
hooks:
|
|
22
22
|
# Run the linter.
|
|
23
23
|
- id: ruff
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: funcnodes-react-flow
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: funcnodes frontend for react flow
|
|
5
5
|
Project-URL: homepage, https://github.com/Linkdlab/funcnodes_react_flow
|
|
6
6
|
Project-URL: source, https://github.com/Linkdlab/funcnodes_react_flow
|