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/app-bar-logo-prop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/decision-branches-panel-spacing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/decision-node-outer-source-handle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-language-selector-regional-locale.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slim-peer-dependencies.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/textarea-max-rows.md

This file was deleted.

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

## [2.3.0] - 2026-08-12

### Added

- `logo` and `logoHref` props on `<WorkflowBuilder.Root>`. `logo` accepts an image URL, `{ light, dark }` per-theme URLs, or a custom element and replaces the built-in app-bar logo; `logoHref` wraps it in a link.
- `maxRows` option on the `TextArea` uischema control, capping how far the field auto-grows.

### Changed

- Slim the base install to `@workflowbuilder/sdk @xyflow/react zustand`. `@jsonforms/core`, `@jsonforms/react`, `i18next`, `react-i18next`, `i18next-browser-languagedetector` and `immer` moved from peer to regular dependencies and install automatically. JsonForms authoring primitives (`withJsonFormsControlProps`, `rankWith`, `useJsonForms`, `RuleEffect`, `ControlProps`, …) are now re-exported from `@workflowbuilder/sdk`, so custom renderers need no extra installs.
- Drop the decision node's node-level output port; branches are its only outputs. Edges drawn from the old bare `source` handle lose their connection point.

### Fixed

- Add vertical spacing between branch cards in the decision properties panel. The accordion layout no longer lays out classless child divs, so custom controls should style their own root.
- Stop the language selector from showing "EN" while the UI renders Polish for regional locales (e.g. `pl-PL`).

## [2.2.0] - 2026-06-29

### Added
Expand Down Expand Up @@ -56,6 +73,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.3.0]: https://www.npmjs.com/package/@workflowbuilder/sdk/v/2.3.0
[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
Expand Down
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.2.0",
"version": "2.3.0",
"description": "React SDK for Workflow Builder — embed a visual, flow-based workflow editor in your app.",
"keywords": [
"workflow",
Expand Down
Loading