leo e76ce0e0c8 合并冲突 | пре 2 година | |
---|---|---|
.codesandbox | пре 2 година | |
.github | пре 3 година | |
.storybook | пре 3 година | |
.vscode | пре 4 година | |
cypress | пре 3 година | |
examples | пре 3 година | |
images | пре 4 година | |
packages | пре 2 година | |
stories | пре 2 година | |
.eslintrc.js | пре 3 година | |
.gitignore | пре 3 година | |
.prettierrc | пре 4 година | |
CONTRIBUTING.md | пре 2 година | |
LICENSE | пре 4 година | |
Makefile | пре 3 година | |
README.md | пре 2 година | |
create-release.py | пре 3 година | |
cypress.json | пре 3 година | |
jest.config.base.js | пре 3 година | |
jest.config.js | пре 3 година | |
lerna.json | пре 2 година | |
package.json | пре 2 година | |
tsconfig.base.json | пре 4 година | |
yarn.lock | пре 2 година |
A react component for editing pipeline files. Used across all Elyra applications and browser extensions.
@elyra/pipeline-editor
is available as an npm package:
// npm
npm install @elyra/pipeline-editor
// yarn
yarn add @elyra/pipeline-editor
Or can be built and linked locally:
git clone git@github.com:elyra-ai/pipeline-editor.git
cd pipeline-editor
make clean install dev-link
Then in the project you're using the local build run the following:
yarn link @elyra/pipeline-editor @elyra/pipeline-services
or if you're running with Elyra you can use make:
make clean dev-link install
import { PipelineEditor } from "@elyra/pipeline-editor";
function App() {
const [pipeline, setPipeline] = useState();
return (
<PipelineEditor pipeline={pipeline} palette={{}} onChange={setPipeline} />
);
}