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