Skip to content

v13.44.0

Choose a tag to compare

@tomlyn tomlyn released this 17 Apr 18:40
6960142

Minor Release v13.44.0

Common Canvas

#3068 Support setLinkParameters similar to setNodeParameters

A new parameters field for links has been added to the pipeline-flow schema. A new method has been added to the Canvas Controller to set the parameters for a link:

    /**
     * Sets the link parameters
     * @param linkId - The ID of the link
     * @param parameters - An array of parameters
     * @param pipelineId - Optional. The ID of the pipeline of the link.
     *                     Defaults to the currently displayed pipeline.
     */
    setLinkParameters(
      linkId: CanvasLinkId,
      parameters: Record<string, unknown>[],
      pipelineId?: PipelineId
    ): void;

#3094 Add types for setRightFlyoutMinWidth in Canvas Controller

The setRightFlyoutWidth and setRightFlyoutMinWidth are bow included in the typescript declarations.


Issues Resolved

Full Changelog: v13.43.2...v13.44.0