funcnodes-react-flow 1.1.0__tar.gz → 2.0.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 → funcnodes_react_flow-2.0.0}/.github/workflows/npm_publish_main.yml +1 -1
- funcnodes_react_flow-2.0.0/.github/workflows/npm_test.yml +43 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.gitignore +0 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.pre-commit-config.yaml +6 -0
- funcnodes_react_flow-2.0.0/CHANGELOG.md +632 -0
- funcnodes_react_flow-2.0.0/PKG-INFO +71 -0
- funcnodes_react_flow-2.0.0/README.md +52 -0
- funcnodes_react_flow-2.0.0/cz.toml +6 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/pyproject.toml +1 -1
- funcnodes_react_flow-2.0.0/src/funcnodes_react_flow/static/funcnodes_react_flow.css +1 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/funcnodes_react_flow.es.js +47089 -46531
- funcnodes_react_flow-2.0.0/src/funcnodes_react_flow/static/funcnodes_react_flow.iife.js +834 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/index.html +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/package.json +4 -2
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/index.dev.js +11 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/index.test.js +1 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/package.json +39 -40
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.accessibility.test.tsx +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.example.test.tsx +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.integration.test.tsx +9 -5
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.performance.test.tsx +1 -1
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.test-utils.test.ts +149 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.test.tsx +1 -1
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/core/edges/utils.test.ts +22 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/core.ts +3 -3
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/nodespace-manager.ts +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/rf-manager.ts +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/index.ts +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/interfaces/io.ts +3 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/index.ts +1 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/update.test.ts +209 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/core/nodes/utils/node-utils.test.ts +73 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/utils/node-utils.ts +1 -1
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/core/plugins/upgrading.test.ts +38 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer.test.tsx +136 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-output-renderer.test.tsx +45 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/boolean.tsx +2 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/color.tsx +2 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/default.ts +2 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/input-renderer.test.tsx +216 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/json_schema.test.tsx +145 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/json_schema.tsx +123 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/numbers.tsx +2 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/selection.tsx +2 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/text.tsx +2 -1
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/mappings.test.ts +61 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/hooks/data_renderer_overlay.test.tsx +180 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/import-cycle.test.ts +8 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings/render-mappings.provider.tsx +119 -100
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings.test.tsx +157 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/data-rendering/utils/renderer-converter.test.tsx +150 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/header/header-main.tsx +3 -3
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/header/workermenu.tsx +2 -2
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/library/Library.worker-stop-hooks.test.tsx +43 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/index.tsx +3 -8
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/NodeSettings.tsx +2 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/io/NodeIOSettings.tsx +2 -2
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/io/NodeSettingsInput.tsx +2 -2
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/io/NodeSettingsOutput.tsx +2 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/tabs/GeneralTab.tsx +2 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/io.tsx +4 -56
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/iodataoverlay.tsx +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/helper_hooks.ts +4 -2
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/useBodyDataRendererForIo.ts +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/usePreviewHandleDataRendererForIo.ts +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/index.ts +1 -3
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/nodes/io-hooks.ts +7 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/nodes/nodes-entrypoints.test.ts +50 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/nodes/pick_best_io_type.ts +58 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/themes.scss +22 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/node-types.ts +1 -1
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/node-utils.test.ts +106 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/node.ts +4 -4
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/index.tsx +3 -1
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/mui-palette-augment.d.ts +13 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/setupTests.ts +1 -1
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/components/ErrorComponents/__snapshots__/error-components.test.tsx.snap +25 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ErrorComponents/error-components.test.tsx +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/fullscreenelement.test.tsx +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/smoothexpand.test.tsx +1 -1
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/components/__snapshots__/error-components.test.tsx.snap +25 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/ExpandingContainer/index.test.tsx +6 -3
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/FloatContainer/index.test.tsx +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/SizeContextContainer/index.test.tsx +1 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/dialog/CustomDialog.scss +12 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/dialog/CustomDialog.test.tsx +36 -5
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/dialog/CustomDialog.tsx +6 -7
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/components/error-boundary/error-boundary.test.tsx +88 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/components/icons/fontawsome.test.tsx +72 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/jsonSchemaForm/index.tsx +10 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/components/jsonSchemaForm/jsonSchemaForm.test.tsx +32 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/components/renderers/images.test.tsx +128 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/components/toast/example.test.tsx +50 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/components/toast/toast.test.tsx +118 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/data-structures/data-structures.test.ts +205 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/data-structures/data-structures.ts +75 -67
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/data-helpers.test.ts +29 -24
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/data-helpers.ts +5 -5
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/utils/debugger.test.ts +64 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/debugger.ts +3 -2
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/utils/layout/index.test.ts +104 -0
- funcnodes_react_flow-2.0.0/src/react/packages/funcnodes-react-flow/src/shared/utils/zustand-helpers.test.ts +69 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/tsconfig.json +11 -1
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/vitest.config.fast.ts +16 -6
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/vitest.config.ts +1 -5
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow-plugin/package.json +3 -3
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow-plugin/src/rf_types.ts +25 -8
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/yarn.lock +1509 -651
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/uv.lock +1 -1
- funcnodes_react_flow-1.1.0/PKG-INFO +0 -20
- funcnodes_react_flow-1.1.0/README.md +0 -1
- funcnodes_react_flow-1.1.0/src/funcnodes_react_flow/static/funcnodes_react_flow.css +0 -1
- funcnodes_react_flow-1.1.0/src/funcnodes_react_flow/static/funcnodes_react_flow.iife.js +0 -925
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.editorconfig +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.flake8 +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.gitattributes +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.github/actions/install_package/action.yml +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.github/workflows/npm_build.yaml +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.github/workflows/py_test.yml +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/.github/workflows/version_publish_main.yml +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/LICENSE +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/MANIFEST.in +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/NODE_THIRD_PARTY_NOTICE.txt +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/THIRD_PARTY_NOTICES.md +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/pytest.ini +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/__init__.py +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/__main__.py +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/plugin_setup.py +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/run.py +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/android-chrome-192x192.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/android-chrome-512x512.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/apple-touch-icon.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/asset-manifest.json +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/favicon-16x16.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/favicon-32x32.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/favicon.ico +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/funcnodes_react_flow-favicon.ico +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/funcnodes_react_flow-logo192.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/funcnodes_react_flow-manifest.json +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/funcnodes_react_flow-style.css +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/logo.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/logo192.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/logo512.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/manifest.json +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/funcnodes_react_flow/static/robots.txt +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/.gitignore +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/.yarnrc.yml +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/dev_full.cjs +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/android-chrome-192x192.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/android-chrome-512x512.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/apple-touch-icon.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/asset-manifest.json +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/favicon-16x16.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/favicon-32x32.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/favicon.ico +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/logo.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/logo192.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/logo512.png +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/manifest.json +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/assets/robots.txt +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/index.html +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/index.prod.js +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/playwright.config.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/TODO.md +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/app-properties.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/app.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/app.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/funcnodescontext.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.test-utils.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/keypress-provider.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/providers/theme-provider.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/app/workspace.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/edges/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/edges/serialization/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/edges/utils.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/actions/edge.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/actions/groups.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/actions/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/actions/node.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/lib-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/plugin-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/rf-handlers.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/state-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/handler/worker-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/serializations/full.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/serializations/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/serializations/view.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/states/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/states/progress.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/funcnodes-context/states/react-flow.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/cmd-messages.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/error-messages.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/event-messages.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/helper-messages.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/progress-message.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/messaging/serializer/result-messages.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/interfaces/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/interfaces/node.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/interfaces/rendering.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/serializations/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/serializations/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/default.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/deserialization.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/full-io.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/full_node.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/iostore.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/nodestore.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/normalization.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/stores/update.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodes/utils/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodespace/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodespace/interfaces.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/nodespace/store.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/index.d.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/types.d.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/upgrading.d.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/plugins/upgrading.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/funcnodes-worker.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/communication-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/connection-health-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/edge-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/event-manager.repos-update.test.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/event-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/group-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/hook-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/library-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/node-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/sync-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/handlers/worker-handlers.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/base/worker.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/hooks/worker_api_hooks.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/manager/worker-manager.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/manager/worker-manager.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/websocket/websocket-worker.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/core/workers/websocket/websocket-worker.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-handle-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-handle-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-handle-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-overlay-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-overlay-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-overlay-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-preview-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-preview-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-preview-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/bytes.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/defaults.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/html.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/images.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/json.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/tables.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/text.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/data-view-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-renderer/bytes.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-renderer/default.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/inline-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/input-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/output-renderer/default.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/output-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/output-renderer/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/components/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/hooks/data_renderer_overlay.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings/render-mappings.reducer.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/render-mappings/render-mappings.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/providers/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/utils/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/data-rendering/utils/renderer-converter.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/edges/components/edge.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/edges/components/edges.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/edges/components/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/edges/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/groups/components/groups.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/groups/components/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/groups/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/groups/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/header/header.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/header/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/header/nodespacemenu.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/header/settingsmenu.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/header/settingsmenu_appearance.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/header/statusbar.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/index.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/AddLibraryOverlay/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/ExternalWorkerClassEntry.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/ExternalWorkerInstanceEntry.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/ExternalWorkerInstanceSettings.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/ExternalWorkerShelf.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ExternalWorker/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/LibraryFilter/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/LibraryItem/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/LibraryNode/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/ActiveModule.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/AddableModule.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/InstallableModule.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/ModuleDescription.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/ModuleLinks.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/VersionSelector.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/ModuleManagement/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/components/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/library.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/states/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/library/states/libstate.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/NodeSettingsOverlay.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/NodeSettingsWindow.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/io/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/tabs/InputTab.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/tabs/OutputTab.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/components/tabs/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/node-settings/node-settings.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/body_data_renderer.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/index.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/handle_renderer.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/io.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/nodeinput.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/io/nodeoutput.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/node.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/node-renderer/node.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/components/nodes.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/hooks/useDefaultNodeInjection.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/provider.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/nodes/rf-node-types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ContextMenu/ContextMenu.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ContextMenu/ContextMenu.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ContextMenu/ContextMenu.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ContextMenu/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/KeyHandler/KeyHandler.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/KeyHandler/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowLayer/ReactFlowLayer.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowLayer/ReactFlowLayer.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowLayer/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowLayer/react_flow_layer.tsx.backup +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowManager/ReactFlowManager.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/ReactFlowManager/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/components/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/funcnodesreactflow.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/hooks/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/hooks/useClipboardOperations.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/hooks/useReactFlowSelection.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/store/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/store/rf-store.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/clipboard-operations.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/features/react-flow/utils/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/index.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ColorPicker/CustomColorPicker.test.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ColorPicker/colorpicker.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ColorPicker/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ErrorComponents/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/fullscreenelement.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Expander/smoothexpand.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/JSONDisplay/JSONDisplay.test.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/JSONDisplay/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/JSONDisplay/jsonDisplay.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ProgressBar/ProgressBar.test.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ProgressBar/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/ProgressBar/progressBar.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Select/CustomSelect.test.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Select/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/Select/select.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/README.md +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/SortableTable.performance.test.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/SortableTable.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/SortableTable.test.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/SortableTable.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/types.test.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/utils.test.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/SortableTable/utils.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/ExpandingContainer/expanding-container.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/ExpandingContainer/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/FloatContainer/float-container.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/FloatContainer/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/SizeContextContainer/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/SizeContextContainer/size-context-container.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/auto-layouts/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/dialog/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/error-boundary/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/icons/fontawsome.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/icons/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/renderers/images.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/renderers/json.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/example.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/icons.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/index.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/toast.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/toast.tsx +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/components/toast/toast.types.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/data-structures/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/styles/htmlelements.scss +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/layout/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/layout/txt.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/logger.test.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/logger.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/object-helpers.test.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/object-helpers.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/src/shared/utils/zustand-helpers.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/vite.browser.config.js +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/vite.config.js +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow/vite.test.config.js +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow-plugin/rollup.config.js +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow-plugin/src/index.ts +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow-plugin/tsconfig.json +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/src/react/packages/funcnodes-react-flow-plugin/vite.config.js +0 -0
- {funcnodes_react_flow-1.1.0 → funcnodes_react_flow-2.0.0}/tests/test_import.py +0 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: react tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- dev
|
|
7
|
+
- test
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
yarn-test:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout repository
|
|
15
|
+
uses: actions/checkout@v3
|
|
16
|
+
with:
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
|
|
19
|
+
- name: Enable corepack
|
|
20
|
+
run: corepack enable
|
|
21
|
+
|
|
22
|
+
- name: Set up Node.js
|
|
23
|
+
uses: actions/setup-node@v3
|
|
24
|
+
with:
|
|
25
|
+
node-version: "22"
|
|
26
|
+
cache: yarn
|
|
27
|
+
cache-dependency-path: src/react/yarn.lock
|
|
28
|
+
|
|
29
|
+
- name: Install dependencies
|
|
30
|
+
working-directory: src/react
|
|
31
|
+
run: yarn install
|
|
32
|
+
|
|
33
|
+
- name: Build project
|
|
34
|
+
working-directory: src/react
|
|
35
|
+
run: yarn build
|
|
36
|
+
|
|
37
|
+
- name: Run typecheck
|
|
38
|
+
working-directory: src/react
|
|
39
|
+
run: yarn typecheck
|
|
40
|
+
|
|
41
|
+
- name: Run tests
|
|
42
|
+
working-directory: src/react
|
|
43
|
+
run: yarn test
|
|
@@ -0,0 +1,632 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented here.
|
|
4
|
+
|
|
5
|
+
## 2.0.0 (2026-01-05)
|
|
6
|
+
|
|
7
|
+
### BREAKING CHANGE
|
|
8
|
+
|
|
9
|
+
- @/nodes no longer re-exports hooks/components; use
|
|
10
|
+
@/nodes-hooks, @/nodes-io-hooks, or @/nodes-components.
|
|
11
|
+
|
|
12
|
+
### Feat
|
|
13
|
+
|
|
14
|
+
- add GitHub Actions workflow for running React tests
|
|
15
|
+
- **funcnodes-react-flow**: add JsonSchemaInput component and related tests
|
|
16
|
+
- **funcnodes-react-flow**: add worker stop test and improve context usage in Library component
|
|
17
|
+
- **funcnodes-react-flow**: enhance debugging capabilities and add parseBool function
|
|
18
|
+
|
|
19
|
+
### Fix
|
|
20
|
+
|
|
21
|
+
- **dialog**: satisfy Radix Dialog a11y requirements
|
|
22
|
+
- **funcnodes-react-flow**: handle TS 5.9 ArrayBuffer typing changes
|
|
23
|
+
- **theme**: provide CSS channel vars for MUI palette tokens
|
|
24
|
+
- **funcnodes-react-flow**: improve JsonSchemaInput tests and component logic
|
|
25
|
+
|
|
26
|
+
### Refactor
|
|
27
|
+
|
|
28
|
+
- **tests**: ♻️ improve type safety for command and action handlers
|
|
29
|
+
- **nodes**: split nodes entrypoints to avoid circular imports
|
|
30
|
+
- **io**: ♻️ move `pick_best_io_type` to its own module
|
|
31
|
+
|
|
32
|
+
## v1.1.0 - (2025-12-17)
|
|
33
|
+
### Feat
|
|
34
|
+
- funcnodes-react-flow: support worker URL params and fallback discovery
|
|
35
|
+
- implement active worker cleanup on stop
|
|
36
|
+
- implement repos_update event handling and add corresponding tests
|
|
37
|
+
- add GitHub Actions workflow for npm package publishing
|
|
38
|
+
### Fix
|
|
39
|
+
- update npm publish workflow to include all workspaces in build step
|
|
40
|
+
### Refactor
|
|
41
|
+
- update npm publish workflow for React packages
|
|
42
|
+
### Test
|
|
43
|
+
- update test configurations and styles for better compatibility
|
|
44
|
+
- improve tests for ColorPicker, CustomSelect, SortableTable, and SizeContextContainer
|
|
45
|
+
### Chore
|
|
46
|
+
- update build files [skip ci]
|
|
47
|
+
- bump version to 1.1.0
|
|
48
|
+
- update build files [skip ci]
|
|
49
|
+
- update build files [skip ci]
|
|
50
|
+
|
|
51
|
+
## v1.0.4 - (2025-12-09)
|
|
52
|
+
### Feat
|
|
53
|
+
- enhance IO tooltip styling and display node name
|
|
54
|
+
### Fix
|
|
55
|
+
- correct spacing in description for ExternalWorkerInstanceSettings component
|
|
56
|
+
### Refactor
|
|
57
|
+
- worker-manager: streamline active worker retrieval logic
|
|
58
|
+
### Chore
|
|
59
|
+
- update build files [skip ci]
|
|
60
|
+
- bump version to 1.0.4 and update package metadata
|
|
61
|
+
- build
|
|
62
|
+
- update dependencies and enhance JsonSchemaForm component
|
|
63
|
+
- update dependencies and improve external worker configuration
|
|
64
|
+
|
|
65
|
+
## v1.0.3 - (2025-10-17)
|
|
66
|
+
### Feat
|
|
67
|
+
- implement node synchronization between nodespace and react zustand
|
|
68
|
+
### Chore
|
|
69
|
+
- update build files [skip ci]
|
|
70
|
+
- bump version to 1.0.3 and update package metadata
|
|
71
|
+
|
|
72
|
+
## v1.0.2 - (2025-09-12)
|
|
73
|
+
### Fix
|
|
74
|
+
- correct transform property in node.scss for proper centering
|
|
75
|
+
### Chore
|
|
76
|
+
- update build files [skip ci]
|
|
77
|
+
- update package versions and pre-commit configuration
|
|
78
|
+
- update pre-commit hooks and remove debug logging
|
|
79
|
+
### Other
|
|
80
|
+
- refactor(funcnodes-react-flow)!: enhance logging and clean up code structure
|
|
81
|
+
|
|
82
|
+
## v1.0.1 - (2025-09-03)
|
|
83
|
+
### Chore
|
|
84
|
+
- update build files [skip ci]
|
|
85
|
+
- bump version to 1.0.1 and update index.html for consistency
|
|
86
|
+
- remove console.log statements for cleaner code
|
|
87
|
+
### Style
|
|
88
|
+
- improve node.scss and images.tsx for better layout and readability
|
|
89
|
+
|
|
90
|
+
## v1.0.0 - (2025-08-29)
|
|
91
|
+
### Chore
|
|
92
|
+
- update build files [skip ci]
|
|
93
|
+
- bump version to 1.0.1 and update exports in funcnodes-react-flow-plugin
|
|
94
|
+
- update build files [skip ci]
|
|
95
|
+
- update version and dependencies in pyproject.toml
|
|
96
|
+
- refactor funcnodes-react-flow and update index.html
|
|
97
|
+
- bump version to 1.0.0 for funcnodes-react-flow and funcnodes-react-flow-plugin
|
|
98
|
+
- add new renderer exports to funcnodes-react-flow and funcnodes-react-flow-plugin
|
|
99
|
+
- remove console log from update_edges function in rf-store.ts
|
|
100
|
+
- update sync timing and install command
|
|
101
|
+
|
|
102
|
+
## v1.0.0a0 - (2025-08-28)
|
|
103
|
+
### Feat
|
|
104
|
+
- add FA_VERSION environment variable to Vite configuration
|
|
105
|
+
- manage worker lifecycle and state updates in FuncNodes component
|
|
106
|
+
- update Vite configuration for environment variables and output paths
|
|
107
|
+
- expand funcnodes-react-flow-plugin with new types and hooks
|
|
108
|
+
- enhance funcnodes-react-flow with new hooks and plugin management
|
|
109
|
+
- initialize funcnodes-react-flow-monorepo with essential configurations
|
|
110
|
+
- add funcnodes-react-flow-plugin package with TypeScript support
|
|
111
|
+
- add toast dispatcher to state manager for enhanced notifications
|
|
112
|
+
- enhance FuncNodesReactPlugin with generic versioning
|
|
113
|
+
- integrate toast notifications and theme provider into FuncNodes app
|
|
114
|
+
- add new icons for checkmark and error states
|
|
115
|
+
- implement toast notification system
|
|
116
|
+
- add zustand helpers for optimized store updates
|
|
117
|
+
- add neon color theme and grouping styles
|
|
118
|
+
- introduce theming support and background pattern customization
|
|
119
|
+
- add zIndex to edge configuration for improved layering
|
|
120
|
+
- enhance edges and nodes integration with improved structure and styling
|
|
121
|
+
- introduce edges and nodes components with styling and hooks
|
|
122
|
+
- select: introduce CustomSelect component with tests and style updates
|
|
123
|
+
- color-picker: introduce CustomColorPicker component with HSL and RGB support
|
|
124
|
+
- tests: add fast test configuration and update dependencies
|
|
125
|
+
- sortable-table: enhance SortableTable with performance optimizations and new features
|
|
126
|
+
- keypress: enhance KeyPressProvider with new keyboard shortcuts and accessibility tests
|
|
127
|
+
- keypress: implement KeyPressProvider and related hooks for keyboard state management
|
|
128
|
+
- node-settings: introduce NodeSettings feature with comprehensive input/output management
|
|
129
|
+
- library: integrate new Library feature with path alias and component updates
|
|
130
|
+
- library: introduce Library component and related features for enhanced module management
|
|
131
|
+
- nodesettings: enhance NodeSettings with custom icons for expand/collapse functionality
|
|
132
|
+
- dialog: export CustomDialog and its props for improved accessibility
|
|
133
|
+
- debugger: add utility functions for debugging object sizes and logging
|
|
134
|
+
- dependencies: update package.json and tsconfig for improved development
|
|
135
|
+
- barrel_imports: add CustomDialog export and reorganize imports
|
|
136
|
+
- header: implement header components for enhanced UI
|
|
137
|
+
- auto-layouts: introduce responsive layout components with enhanced functionality
|
|
138
|
+
- expanding-container: enhance ExpandingContainer with custom icons and keyboard accessibility
|
|
139
|
+
- layout: introduce responsive layout components with optimized performance
|
|
140
|
+
- refactor: restructure React components
|
|
141
|
+
- smooth-expand: implement SmoothExpandComponent with expand/collapse functionality
|
|
142
|
+
- data-helper: add comprehensive tests for data-helper utility functions
|
|
143
|
+
- websocket-worker: implement WebSocketWorker class for managing WebSocket connections
|
|
144
|
+
- data-helper: add utility functions for base64 and Blob conversions with comprehensive tests
|
|
145
|
+
- tsconfig: add path aliases for app and providers
|
|
146
|
+
- logger: add logger module with comprehensive tests and path alias
|
|
147
|
+
- error-components: add ErrorDiv component with comprehensive tests
|
|
148
|
+
- tsconfig: add path alias for shared components
|
|
149
|
+
- object-helpers: add utility functions for deep object manipulation
|
|
150
|
+
- vite: enhance tsconfig loading by stripping comments and trailing commas
|
|
151
|
+
- logger: implement enhanced logging functionality with multiple loggers
|
|
152
|
+
- dev: enhance dev script with port options and debug logging
|
|
153
|
+
- Implement grouping functionality for nodes
|
|
154
|
+
- update edge styles to use new CSS variables for color management
|
|
155
|
+
- add in_venv parameter to WorkerManager for enhanced worker configuration
|
|
156
|
+
- enhance theming and UI components with new settings and menus
|
|
157
|
+
- update worker URL configuration to use dynamic port
|
|
158
|
+
- add testing and e2e configuration for Playwright
|
|
159
|
+
- enhance styling and theming across the application
|
|
160
|
+
- renderer: add HTML download functionality and update renderers
|
|
161
|
+
- update color variables and styles for improved theming consistency across components
|
|
162
|
+
- enhance node settings with keyboard shortcuts and implement KeyContextProvider
|
|
163
|
+
- add GearIcon to FontAwesome wrapper and update node header button class names
|
|
164
|
+
### Fix
|
|
165
|
+
- enhance error handling in FuncNodes and related components
|
|
166
|
+
- enhance error handling in sync-manager
|
|
167
|
+
- improve error handling in FuncNodes and NodeSpaceManager
|
|
168
|
+
- enhance error handling in PluginManager
|
|
169
|
+
- handle plugin upgrade errors with toast notifications
|
|
170
|
+
- update node border color variables for consistent styling
|
|
171
|
+
- adjust root div dimensions for full viewport coverage
|
|
172
|
+
- relocate react-json-view-lite CSS import to JSONDisplay component
|
|
173
|
+
- styles: correct SCSS formatting and update zIndex values for improved layout
|
|
174
|
+
- workspace: update NodeSettings import path for consistency
|
|
175
|
+
- tests: update test case variable for clarity in SizeContextContainer tests
|
|
176
|
+
- vite.config: enable polling for file watching in development server
|
|
177
|
+
- tests: update ErrorDiv test to use flexible matcher for error message
|
|
178
|
+
- tsconfig: rename path alias from "@/logger" to "@/logging" for consistency
|
|
179
|
+
- package: rename typecheck script and add typewatch for improved TypeScript monitoring
|
|
180
|
+
- update selected edge color to use HSL for consistency
|
|
181
|
+
- add inline styles to body for consistent layout and padding
|
|
182
|
+
### Refactor
|
|
183
|
+
- improve error logging interface and handling
|
|
184
|
+
- improve error logging interface and handling
|
|
185
|
+
- streamline IO handling and enhance type safety
|
|
186
|
+
- enhance node serialization and plugin structure
|
|
187
|
+
- simplify renderer props by removing IOStore dependency
|
|
188
|
+
- update appearance settings layout for better responsiveness
|
|
189
|
+
- remove unused force graph function from ReactFlowManager
|
|
190
|
+
- update node normalization and serialization handling
|
|
191
|
+
- enhance worker functionality with library management and node state retrieval
|
|
192
|
+
- integrate library management into worker API
|
|
193
|
+
- enhance worker architecture and streamline API access
|
|
194
|
+
- reorganize data rendering types and components
|
|
195
|
+
- migrate data structures to core architecture
|
|
196
|
+
- consolidate styling architecture and eliminate legacy frontend structure - Move htmlelements.scss from frontend/layout to shared/styles for better reusability - Remove deprecated frontend/index.scss and frontend/layout/index.scss barrel files - Update features/index.scss to directly import all feature styles - Replace centralized auto-layouts.scss with individual component imports - Update import paths in header.scss and root index.scss to reflect new structure - Add missing stylesheet imports to auto-layout and dialog components
|
|
197
|
+
- migrate groups and header components to features architecture
|
|
198
|
+
- optimize NodeSettingsOverlay component with React.memo for performance
|
|
199
|
+
- reorganize barrel imports and enhance component structure
|
|
200
|
+
- update test utilities and improve integration tests for KeyPressProvider
|
|
201
|
+
- organize expander components into dedicated directories with improved tests
|
|
202
|
+
- organize error-components test file into dedicated directory
|
|
203
|
+
- move ProgressBar to shared components with tests and styling
|
|
204
|
+
- move JSONDisplay to shared components and add comprehensive tests
|
|
205
|
+
- dialog: migrate CustomDialog to shared components and update imports
|
|
206
|
+
- table: migrate SortableTable to shared components and remove obsolete styles
|
|
207
|
+
- workspace: update imports for improved modularity and clarity
|
|
208
|
+
- keypress: replace KeyContext with KeyPressProvider for improved keyboard state management
|
|
209
|
+
- keypress: remove deprecated KeyContext and related exports for cleaner code
|
|
210
|
+
- barrel_imports: remove Library exports to streamline module imports
|
|
211
|
+
- reactflow: improve code readability and organization
|
|
212
|
+
- app-properties: export DEFAULT_FN_PROPS and define factory function
|
|
213
|
+
- funcnodescontext: simplify context initialization and error handling
|
|
214
|
+
- smooth-expand: simplify test imports and remove unused variables
|
|
215
|
+
- group: reorganize component structure for clarity
|
|
216
|
+
- react_flow_layer: optimize selection logic for nodes and edges
|
|
217
|
+
- remove unused theme import from SettingsMenu component
|
|
218
|
+
### Chore
|
|
219
|
+
- update build files [skip ci]
|
|
220
|
+
- update package manager version in package.json
|
|
221
|
+
- streamline npm build workflow by removing redundant corepack step
|
|
222
|
+
- specify package manager version in package.json
|
|
223
|
+
- enhance npm build workflow and update package dependency
|
|
224
|
+
- update npm build workflow and package dependency path
|
|
225
|
+
- update project configuration and dependencies for release
|
|
226
|
+
- update .gitignore to include .yarn and test-results directories
|
|
227
|
+
- add @radix-ui/react-toast dependency to package.json for toast notifications
|
|
228
|
+
- resturucture of datarenderers
|
|
229
|
+
- update tsconfig paths for shared styles and data structures
|
|
230
|
+
- remove deprecated configuration files and update package manager
|
|
231
|
+
- remove unused index.scss file from frontend/utils
|
|
232
|
+
- deps: update @radix-ui/react-tabs to version ^1.1.12
|
|
233
|
+
- gitignore: update entry for development workers
|
|
234
|
+
- styles: add group styles to main stylesheet
|
|
235
|
+
- update .gitignore to include development_workers directory
|
|
236
|
+
### Other
|
|
237
|
+
- towards monorepo
|
|
238
|
+
- towards monorepo
|
|
239
|
+
- deleted unused old definitions
|
|
240
|
+
- restructiure done, next debug
|
|
241
|
+
- chore(moved) renamed custom color picker tests
|
|
242
|
+
- add TODO
|
|
243
|
+
- Implement code changes to enhance functionality and improve performance
|
|
244
|
+
|
|
245
|
+
## v0.4.11 - (2025-05-16)
|
|
246
|
+
### Feat
|
|
247
|
+
- implement paste functionality in KeyHandler and enhance clipboard data handling
|
|
248
|
+
### Other
|
|
249
|
+
- vrsion bumbp
|
|
250
|
+
|
|
251
|
+
## v0.4.10 - (2025-05-16)
|
|
252
|
+
### Feat
|
|
253
|
+
- implement copy and paste functionality in KeyHandler for nodes and edges
|
|
254
|
+
- enhance node and edge serialization in state management
|
|
255
|
+
### Other
|
|
256
|
+
- version bump
|
|
257
|
+
- serialize dummy data befor using to prevent setting values (eg.g. position)
|
|
258
|
+
|
|
259
|
+
## v0.4.9 - (2025-04-19)
|
|
260
|
+
### Fix
|
|
261
|
+
- bump version to 0.4.9 in pyproject.toml
|
|
262
|
+
- update input handling and adjust styles for improved layout and responsiveness
|
|
263
|
+
### Chore
|
|
264
|
+
- update build files [skip ci]
|
|
265
|
+
|
|
266
|
+
## v0.4.8 - (2025-04-18)
|
|
267
|
+
### Feat
|
|
268
|
+
- update StringInput component to use textarea for better text handling and adjust styles for iovaluefield
|
|
269
|
+
- enhance layout of NodeInput and NodeOutput components with inner_nodeio wrapper
|
|
270
|
+
### Fix
|
|
271
|
+
- adjust min-height for styled elements and ensure textarea height is important for consistent layout
|
|
272
|
+
- adjust styles in node settings for better layout and responsiveness
|
|
273
|
+
- add 'nowheel' class to NodeBody component to prevent scrolling
|
|
274
|
+
- prevent unnecessary updates in NumberInput and StringInput components
|
|
275
|
+
### Chore
|
|
276
|
+
- update build files [skip ci]
|
|
277
|
+
### Other
|
|
278
|
+
- vb
|
|
279
|
+
|
|
280
|
+
## v0.4.7 - (2025-04-11)
|
|
281
|
+
### Fix
|
|
282
|
+
- add permissions for pull requests in npm_build workflow
|
|
283
|
+
- update create-pull-request action to version 7 in npm_build workflow
|
|
284
|
+
- update job name and add permissions for write access in npm_build workflow
|
|
285
|
+
- enhance build workflow to commit generated files and create pull requests
|
|
286
|
+
- correct image source handling in DefaultImageRenderer
|
|
287
|
+
- update Node.js version to 22 in build workflow
|
|
288
|
+
- streamline build process by removing redundant directory change command
|
|
289
|
+
- enhance image rendering logic to handle raw base64 strings
|
|
290
|
+
### Refactor
|
|
291
|
+
- simplify workflow by removing unnecessary directory change step
|
|
292
|
+
### Chore
|
|
293
|
+
- update build files [skip ci]
|
|
294
|
+
- update dependencies and version to 0.4.7
|
|
295
|
+
### Other
|
|
296
|
+
- Implement code changes to enhance functionality and improve performance
|
|
297
|
+
|
|
298
|
+
## v0.4.6 - (2025-04-11)
|
|
299
|
+
### Other
|
|
300
|
+
- added es browser build
|
|
301
|
+
- styling updates
|
|
302
|
+
|
|
303
|
+
## v0.4.5 - (2025-04-11)
|
|
304
|
+
### Fix
|
|
305
|
+
- increase max-height of node to improve layout flexibility
|
|
306
|
+
|
|
307
|
+
## v0.4.4 - (2025-04-10)
|
|
308
|
+
### Feat
|
|
309
|
+
- add worker management scripts and update HTML references for improved functionality
|
|
310
|
+
- enhance worker management and initialization in FuncNodesReactFlow
|
|
311
|
+
### Fix
|
|
312
|
+
- update timer reference type and improve logger configuration for development mode
|
|
313
|
+
### Refactor
|
|
314
|
+
- update imports and improve error handling in color converter
|
|
315
|
+
- migrate from reactflow to @xyflow/react
|
|
316
|
+
### Other
|
|
317
|
+
- bump version to 0.4.4
|
|
318
|
+
- Refactor code structure for improved readability and maintainability
|
|
319
|
+
- stop sider key prop
|
|
320
|
+
- style update
|
|
321
|
+
|
|
322
|
+
## v0.4.3 - (2025-04-08)
|
|
323
|
+
### Other
|
|
324
|
+
- bump version to 0.4.3 in pyproject.toml and package.json
|
|
325
|
+
- add rollup-plugin-copy to handle asset copying in production builds; configure targets for style and script files
|
|
326
|
+
- refactor FuncNodesWorker and WebSocketWorker to improve chunk handling and cleanup; adjust ping/pong intervals for better responsiveness
|
|
327
|
+
- refactor NumberInput component to improve value rounding and input handling; adjust styles for better layout
|
|
328
|
+
- refactor FuncNodesWorker and WebSocketWorker to change return type of upload_file method from Promise<string[]> to Promise<string>
|
|
329
|
+
|
|
330
|
+
## v0.4.2 - (2025-03-27)
|
|
331
|
+
### Other
|
|
332
|
+
- bump version to 0.4.2 and update funcnodes dependency to 0.5.36;
|
|
333
|
+
- update yarn.lock to add @rollup/plugin-replace and @types/react-dom dependencies
|
|
334
|
+
- update package.json and rollup.config.mjs to add new plugins and adjust output configuration
|
|
335
|
+
- refactor Library component to improve key handling and filter external worker shelves
|
|
336
|
+
- update value type in Base64ImageRenderer to use ArrayBufferDataStructure without generics
|
|
337
|
+
- remove debug log statement from WebSocketWorker
|
|
338
|
+
- refactor ArrayBufferDataStructure and ctypeunpacker to improve type handling and add support for little-endian parsing
|
|
339
|
+
|
|
340
|
+
## v0.4.1 - (2025-03-26)
|
|
341
|
+
### Other
|
|
342
|
+
- bump version to 0.4.1 in pyproject.toml
|
|
343
|
+
- remove unnecessary module and shelf entries from pyproject.toml
|
|
344
|
+
|
|
345
|
+
## v0.4.0 - (2025-03-26)
|
|
346
|
+
### Other
|
|
347
|
+
- update structure
|
|
348
|
+
- refactor datarenderer to use interfaces for renderer props and update exports
|
|
349
|
+
- add error handling for undefined nodestore in createIOStore and refactor createNodeStore
|
|
350
|
+
- better state handling
|
|
351
|
+
- add NodeHooks support to RenderMapping and update related contexts
|
|
352
|
+
- add NodeContext and RenderMappingContext imports to index.tsx
|
|
353
|
+
- remove commented-out code from NodeSettings, ColorPicker, and NodeSpace modules
|
|
354
|
+
- add node_id to NodeType and update related contexts and renderers
|
|
355
|
+
|
|
356
|
+
## v0.3.19 - (2025-03-03)
|
|
357
|
+
### Feat
|
|
358
|
+
- implement ping-pong mechanism for worker responsiveness and add unique command handling
|
|
359
|
+
### Refactor
|
|
360
|
+
- enhance version restriction handling in _VersionSelector component
|
|
361
|
+
### Chore
|
|
362
|
+
- bump version to 0.3.18
|
|
363
|
+
### Other
|
|
364
|
+
- bump version in pyproject.toml to 0.3.19
|
|
365
|
+
- bump version in package.json to 0.3.22
|
|
366
|
+
- proper hooks order
|
|
367
|
+
- improve update_from_export method to autofit
|
|
368
|
+
- bump npm version to 0.3.21
|
|
369
|
+
|
|
370
|
+
## v0.3.17 - (2025-02-28)
|
|
371
|
+
### Refactor
|
|
372
|
+
- read module content directly from file in get_react_plugin_content
|
|
373
|
+
|
|
374
|
+
## v0.3.16 - (2025-02-28)
|
|
375
|
+
### Other
|
|
376
|
+
- module is the code that is injected, not the module name
|
|
377
|
+
|
|
378
|
+
## v0.3.15 - (2025-02-28)
|
|
379
|
+
### Refactor
|
|
380
|
+
- update React plugin handling to store module file path directly
|
|
381
|
+
- enhance layout styling in SizeContextContainer for better responsiveness
|
|
382
|
+
### Chore
|
|
383
|
+
- bump version to 0.3.19 in package.json
|
|
384
|
+
|
|
385
|
+
## v0.3.14 - (2025-02-28)
|
|
386
|
+
### Feat
|
|
387
|
+
- add new SCSS files for layout and utility styles, refactor existing styles, and update component imports
|
|
388
|
+
- add utility functions to check for empty objects and update JSON data display logic
|
|
389
|
+
- enhance color picker functionality with improved input handling and debounced onChange
|
|
390
|
+
### Refactor
|
|
391
|
+
- comment out unused imports in mui.tsx
|
|
392
|
+
### Chore
|
|
393
|
+
- update package versions in package.json, pyproject.toml, and uv.lock
|
|
394
|
+
### Other
|
|
395
|
+
- removed old packages
|
|
396
|
+
- add .funcnodes to .gitignore
|
|
397
|
+
|
|
398
|
+
## v0.3.13 - (2025-02-27)
|
|
399
|
+
### Feat
|
|
400
|
+
- refactor React plugin management and add plugin setup functionality
|
|
401
|
+
### Test
|
|
402
|
+
- update import tests for funcnodes_react_flow and verify plugin setup functionality
|
|
403
|
+
|
|
404
|
+
## v0.3.12 - (2025-02-25)
|
|
405
|
+
### Feat
|
|
406
|
+
- add event interception and centering functionality in FuncNodesWorker and Zustand state management
|
|
407
|
+
- implement useDefaultNodeInjection hook for managing node visual state and lifecycle
|
|
408
|
+
- implement hook system for FuncNodesWorker to manage asynchronous callbacks
|
|
409
|
+
### Fix
|
|
410
|
+
- update step value handling in NumberInput to use value_options
|
|
411
|
+
### Refactor
|
|
412
|
+
- update layout styles to use min-height and adjust z-index for better responsiveness
|
|
413
|
+
### Chore
|
|
414
|
+
- update package version to 0.3.17 and modify build scripts for webpack and rollup
|
|
415
|
+
### Other
|
|
416
|
+
- updated js
|
|
417
|
+
|
|
418
|
+
## v0.3.11 - (2025-02-21)
|
|
419
|
+
### Feat
|
|
420
|
+
- add data-type attribute to node input/output components for improved type identification
|
|
421
|
+
- enable showNodeSettings in DEFAULT_FLOW_PROPS
|
|
422
|
+
- reduce default recursion depth in LimitedDeepPartial type from 99 to 10
|
|
423
|
+
- add showNodeSettings prop to ReactFlowLayerProps and conditionally render NodeSettings
|
|
424
|
+
- update FuncNodes component to use LimitedDeepPartial for improved type safety
|
|
425
|
+
- extend recursion depth in DeepPartial and LimitedDeepPartial types
|
|
426
|
+
### Fix
|
|
427
|
+
- update import statements for React and styles in node builder
|
|
428
|
+
### Refactor
|
|
429
|
+
- reorganize and clean up CSS styles for node settings and edge paths
|
|
430
|
+
### Chore
|
|
431
|
+
- bump version to 0.3.11 in pyproject.toml
|
|
432
|
+
- bump version to 0.3.16 in package.json
|
|
433
|
+
### Other
|
|
434
|
+
- ensure ioid is set for undefined ids
|
|
435
|
+
|
|
436
|
+
## v0.3.10 - (2025-02-20)
|
|
437
|
+
### Feat
|
|
438
|
+
- reorder dtsConfig in rollup config and enhance dialog styles in CSS
|
|
439
|
+
- add parentkey prop to LibraryShelf and ExternalWorkerInstanceEntry components for improved key management
|
|
440
|
+
- add margin to funcnodes component for improved layout
|
|
441
|
+
- refactor SmoothExpandComponent to support asChild prop and integrate FullScreenComponent
|
|
442
|
+
- add fullscreen and expand options to React Flow component
|
|
443
|
+
- add fullscreen toggle functionality and related icons to funcnodes component
|
|
444
|
+
- implement smooth expand/collapse component with context API
|
|
445
|
+
- add logging for node and edge operations in React Flow Zustand
|
|
446
|
+
- enhance styling for dialog components and add new node settings styles
|
|
447
|
+
- export FuncnodesReactFlow from index.tsx
|
|
448
|
+
### Fix
|
|
449
|
+
- update module file extensions and improve rollup configuration
|
|
450
|
+
- update React import statements to use namespace import syntax
|
|
451
|
+
- update class name for dropdown menu content in header component
|
|
452
|
+
- uncomment moduleConfig and dtsConfig in rollup configuration
|
|
453
|
+
### Refactor
|
|
454
|
+
- update imports and enhance dialog component; add LimitedDeepPartial type
|
|
455
|
+
### Chore
|
|
456
|
+
- bump version to 0.3.13 in package.json
|
|
457
|
+
### Other
|
|
458
|
+
- bump version to 0.3.15 in package json
|
|
459
|
+
- bump version to 0.3.10
|
|
460
|
+
- bump version to 0.3.9
|
|
461
|
+
- updated public js
|
|
462
|
+
- added public
|
|
463
|
+
|
|
464
|
+
## v0.3.8 - (2025-02-14)
|
|
465
|
+
### Feat
|
|
466
|
+
- refactor FuncNodesApp to support worker management options and enhance flexibility
|
|
467
|
+
- add title attribute to NodeHeader for improved accessibility
|
|
468
|
+
- add initial assets and configuration for Node Builder module
|
|
469
|
+
- enhance ReactFlowLayer with customizable props for improved flexibility
|
|
470
|
+
### Fix
|
|
471
|
+
- update funcnodes dependency to exclude emscripten platform and add funcnodes-worker requirement
|
|
472
|
+
- handle optional imports for run_server and BaseServer to improve compatibility
|
|
473
|
+
- extend timeout duration in FuncNodesWorker and improve error messages for unimplemented methods
|
|
474
|
+
- ensure value comparison in SelectionInput uses string conversion for consistency
|
|
475
|
+
- correct spelling errors in variable names and improve consistency
|
|
476
|
+
- add optional chaining for safer access to worker properties
|
|
477
|
+
### Refactor
|
|
478
|
+
- update NewWorkerDialog to simplify state management and improve description clarity
|
|
479
|
+
### Chore
|
|
480
|
+
- bump version to 0.3.9 in pyproject.toml
|
|
481
|
+
- bump version to 0.3.10 in package.json
|
|
482
|
+
### Other
|
|
483
|
+
- Revert "chore: bump version to 0.3.9 in pyproject.toml"
|
|
484
|
+
- packed via rollup
|
|
485
|
+
- package update
|
|
486
|
+
- bump: update version to 0.3.8
|
|
487
|
+
- updated main
|
|
488
|
+
|
|
489
|
+
## v0.3.7 - (2025-02-04)
|
|
490
|
+
### Refactor
|
|
491
|
+
- simplify URL construction for large message handling
|
|
492
|
+
|
|
493
|
+
## v0.3.6 - (2025-01-31)
|
|
494
|
+
### Other
|
|
495
|
+
- vb
|
|
496
|
+
- export dialog
|
|
497
|
+
|
|
498
|
+
## v0.3.5 - (2025-01-30)
|
|
499
|
+
### Other
|
|
500
|
+
- header update
|
|
501
|
+
|
|
502
|
+
## v0.3.4 - (2025-01-21)
|
|
503
|
+
### Other
|
|
504
|
+
- lib version select
|
|
505
|
+
|
|
506
|
+
## v0.3.3 - (2025-01-12)
|
|
507
|
+
### Other
|
|
508
|
+
- upload files args as object
|
|
509
|
+
- file upload contains root
|
|
510
|
+
- file upload contains root
|
|
511
|
+
|
|
512
|
+
## v0.3.1 - (2025-01-09)
|
|
513
|
+
### Other
|
|
514
|
+
- file upload
|
|
515
|
+
- large data send
|
|
516
|
+
|
|
517
|
+
## v0.3.0 - (2024-12-13)
|
|
518
|
+
### Other
|
|
519
|
+
- vb
|
|
520
|
+
- vb
|
|
521
|
+
- node progress
|
|
522
|
+
- vp
|
|
523
|
+
- on sync and large messages
|
|
524
|
+
- clean
|
|
525
|
+
- header and worker
|
|
526
|
+
|
|
527
|
+
## v0.2.2 - (2024-11-07)
|
|
528
|
+
### Other
|
|
529
|
+
- update and export worker
|
|
530
|
+
|
|
531
|
+
## v0.2.1 - (2024-11-04)
|
|
532
|
+
### Other
|
|
533
|
+
- static build
|
|
534
|
+
|
|
535
|
+
## v0.2.0 - (2024-10-28)
|
|
536
|
+
### Other
|
|
537
|
+
- removed cache
|
|
538
|
+
- start_worker_manager arg
|
|
539
|
+
|
|
540
|
+
## v0.1.15 - (2024-10-24)
|
|
541
|
+
### Other
|
|
542
|
+
- output renderer
|
|
543
|
+
|
|
544
|
+
## v0.1.14 - (2024-10-19)
|
|
545
|
+
### Other
|
|
546
|
+
- input forward
|
|
547
|
+
|
|
548
|
+
## v0.1.13 - (2024-10-09)
|
|
549
|
+
### Other
|
|
550
|
+
- vb
|
|
551
|
+
- ignore
|
|
552
|
+
- app id
|
|
553
|
+
- position
|
|
554
|
+
- events and lib
|
|
555
|
+
- parse float
|
|
556
|
+
- wndow instance mapper
|
|
557
|
+
|
|
558
|
+
## v0.1.12 - (2024-09-27)
|
|
559
|
+
### Other
|
|
560
|
+
- vb
|
|
561
|
+
- lib manager update
|
|
562
|
+
|
|
563
|
+
## v0.1.11 - (2024-09-26)
|
|
564
|
+
### Other
|
|
565
|
+
- vb
|
|
566
|
+
- pre commits
|
|
567
|
+
- urls
|
|
568
|
+
- app package
|
|
569
|
+
- gitignore
|
|
570
|
+
- rem app copy
|
|
571
|
+
- vb
|
|
572
|
+
- rem logs
|
|
573
|
+
- simple run
|
|
574
|
+
- licence plugin
|
|
575
|
+
- licence
|
|
576
|
+
- sort workers in dropdown
|
|
577
|
+
- hidden outputs
|
|
578
|
+
- nodesettings
|
|
579
|
+
|
|
580
|
+
## v0.1.9 - (2024-09-04)
|
|
581
|
+
### Other
|
|
582
|
+
- vb
|
|
583
|
+
- restruc
|
|
584
|
+
|
|
585
|
+
## v0.1.8 - (2024-08-30)
|
|
586
|
+
### Other
|
|
587
|
+
- vb
|
|
588
|
+
- missing s
|
|
589
|
+
|
|
590
|
+
## v0.1.7 - (2024-08-30)
|
|
591
|
+
### Other
|
|
592
|
+
- wm ssl
|
|
593
|
+
|
|
594
|
+
## v0.1.6 - (2024-08-30)
|
|
595
|
+
### Other
|
|
596
|
+
- vb
|
|
597
|
+
- vb
|
|
598
|
+
- new args
|
|
599
|
+
|
|
600
|
+
## v0.1.5 - (2024-08-28)
|
|
601
|
+
### Other
|
|
602
|
+
- version bump
|
|
603
|
+
- package
|
|
604
|
+
- v0.1.6
|
|
605
|
+
- all the stuff
|
|
606
|
+
- v0.1.5
|
|
607
|
+
- restructure
|
|
608
|
+
- split packages
|
|
609
|
+
- simplified inputs
|
|
610
|
+
- logging
|
|
611
|
+
- typing
|
|
612
|
+
- typing
|
|
613
|
+
- log rem
|
|
614
|
+
- styyling
|
|
615
|
+
- log rem
|
|
616
|
+
- undefined handling
|
|
617
|
+
- io rendering
|
|
618
|
+
- frontent update
|
|
619
|
+
- worker in frontend
|
|
620
|
+
- key controller
|
|
621
|
+
- removed too mucuh logging
|
|
622
|
+
- color debug
|
|
623
|
+
- no value color bug
|
|
624
|
+
- styling
|
|
625
|
+
- plotting nodes
|
|
626
|
+
- plotting nodes
|
|
627
|
+
- edgfes, save and load
|
|
628
|
+
- value representation
|
|
629
|
+
- working edges
|
|
630
|
+
- trigger and error
|
|
631
|
+
- basic nodes working
|
|
632
|
+
- Initialize project using Create React App
|