leo e76ce0e0c8 合并冲突 | před 2 roky | |
---|---|---|
.codesandbox | před 2 roky | |
.github | před 2 roky | |
.storybook | před 3 roky | |
.vscode | před 3 roky | |
cypress | před 2 roky | |
examples | před 2 roky | |
images | před 3 roky | |
packages | před 2 roky | |
stories | před 2 roky | |
.eslintrc.js | před 2 roky | |
.gitignore | před 3 roky | |
.prettierrc | před 3 roky | |
CONTRIBUTING.md | před 2 roky | |
LICENSE | před 3 roky | |
Makefile | před 2 roky | |
README.md | před 2 roky | |
create-release.py | před 2 roky | |
cypress.json | před 3 roky | |
jest.config.base.js | před 2 roky | |
jest.config.js | před 2 roky | |
lerna.json | před 2 roky | |
package.json | před 2 roky | |
tsconfig.base.json | před 3 roky | |
yarn.lock | před 2 roky |
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} />
);
}