Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/delete-empty-selection-no-modal.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/duplicate-to-drafts-conditional.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/keyboard-zoom.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nodes-palette-race-condition.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-months-thank.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/readonly-cut-paste-block.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/template-selector-title.md

This file was deleted.

19 changes: 19 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [2.2.0] - 2026-06-29

### Added

- Keyboard zoom in the editor: `Ctrl/Cmd` with `+`/`=` zooms in and `Ctrl/Cmd` with `-` zooms out while the canvas is focused.

### Changed

- Render the app bar's "Duplicate to Drafts" menu item only when an `onDuplicateClick` handler is provided, removing the default no-op button.

### Fixed

- Stop the delete confirmation modal from opening when Delete or Backspace is pressed with nothing selected.
- Surface validation errors when nodes load before the palette. A race between node and palette loading previously dropped newly applicable errors (for example, for fields not evaluated earlier), so the node showed only a "!" indicator until selected.
- Block edge creation in read-only mode.
- Block cut and paste in the diagram in read-only mode; copying is still allowed.
- Use the SDK's own `templateSelector.title` string for the template selector modal title instead of an unrelated plugin translation key.

## [2.1.0] - 2026-06-16

### Added
Expand Down Expand Up @@ -38,6 +56,7 @@ First public npm release. The major bump continues the Workflow Builder version

- Distribution model: editor is now consumed via `npm install @workflowbuilder/sdk` instead of cloning the monorepo. Consumers no longer need monorepo tooling, tsconfig paths, or workspace symlinks.

[2.2.0]: https://www.npmjs.com/package/@workflowbuilder/sdk/v/2.2.0
[2.1.0]: https://www.npmjs.com/package/@workflowbuilder/sdk/v/2.1.0
[2.0.1]: https://www.npmjs.com/package/@workflowbuilder/sdk/v/2.0.1
[2.0.0]: https://www.npmjs.com/package/@workflowbuilder/sdk/v/2.0.0
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@workflowbuilder/sdk",
"version": "2.1.0",
"version": "2.2.0",
"description": "React SDK for Workflow Builder — embed a visual, flow-based workflow editor in your app.",
"keywords": [
"workflow",
Expand Down
Loading