From cd496557e424972354bc751d7e4b5e3f34ba37b4 Mon Sep 17 00:00:00 2001 From: Neha Gokhale Date: Thu, 23 May 2024 15:51:33 -0700 Subject: [PATCH] Fix links Signed-off-by: Neha Gokhale --- canvas_modules/common-canvas/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/canvas_modules/common-canvas/README.md b/canvas_modules/common-canvas/README.md index d606b546d2..b86b969985 100644 --- a/canvas_modules/common-canvas/README.md +++ b/canvas_modules/common-canvas/README.md @@ -31,11 +31,11 @@ flows of linked nodes. The elyra-ai/canvas repo contains three main modules: -* [Common Canvas](03-common-canvas.md) - This contains canvas functionality which is packaged into the [elyra/canvas NPM module](https://www.npmjs.com/package/@elyra/canvas) and deployed to the NPM registry. It provides a way for an application to display a flow of data operations (shown as a set of nodes connected with links) to the user and to allows the user to interact with the display to modify the flow. +* [Common Canvas](https://elyra-ai.github.io/canvas/03-common-canvas/) - This contains canvas functionality which is packaged into the [elyra/canvas NPM module](https://www.npmjs.com/package/@elyra/canvas) and deployed to the NPM registry. It provides a way for an application to display a flow of data operations (shown as a set of nodes connected with links) to the user and to allows the user to interact with the display to modify the flow. Common Canvas is a React component and is assisted by a regular JavaScript class called `CanvasController` which provides an API and handles the internal data model of the flow. While Common Canvas will display a working flow editor with little initial development work, it is highly customizable, where node shape and appearance, colors, styles layout etc can all be customized by the application. Common Canvas handles flows parsed from, and serialized into, a pipeline flow JSON document. It's palette of available nodes is also customized by the application providing a JSON document that descibes groups of nodes. -* [Common Properties](04-common-properties.md) - This contains properties functionality which is packaged into the [elyra/canvas NPM module](https://www.npmjs.com/package/@elyra/canvas) and deployed to the NPM registry. It provides a way to translate a JSON document, which describes a set of properties with UI hints, into a working properties dialog panel. +* [Common Properties](https://elyra-ai.github.io/canvas/04-common-properties/) - This contains properties functionality which is packaged into the [elyra/canvas NPM module](https://www.npmjs.com/package/@elyra/canvas) and deployed to the NPM registry. It provides a way to translate a JSON document, which describes a set of properties with UI hints, into a working properties dialog panel. Common Properties is a React component and has an associated properties controller object.