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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

All notable changes to this project will be documented in this file.

## [0.5.0] - 2026-04-06

### Added
- **Find / search toolbar** — a new toolbar with a search/find bar lets users locate nodes and edges by label or property value. Matching elements are highlighted and the viewport pans to the first result. ([#8](https://github.com/jpmccu/boxes/pull/8))

### Fixed
- **PDF export in web build** — fixed a `ReferenceError: exports is not defined` crash when exporting to PDF from the web app. The web build's minifier was removing `var exports = exports$1;` aliases that `cytoscape-pdf-export` relies on inside its eval'd webpack bundle. The aliases are now re-injected by a post-minification Vite plugin, and a defensive null guard was added to the replace callbacks in both vite configs. ([#7](https://github.com/jpmccu/boxes/pull/7))
- **Nudge re-render** — the nudge operation now causes an actual Cytoscape re-render without modifying stored element positions, so visual feedback is immediate. ([#8](https://github.com/jpmccu/boxes/pull/8))

## [0.4.0] - Initial release

- Initial public release of `boxes-core`, `boxes-vue`, and `boxes-react` packages.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boxes-monorepo",
"version": "0.4.0",
"version": "0.5.0",
"private": true,
"type": "module",
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@
"url": "https://github.com/jpmccu/boxes",
"directory": "packages/core"
},
"version": "0.4.0"
"version": "0.5.0"
}
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boxes-docs",
"version": "0.4.0",
"version": "0.5.0",
"description": "GitHub Pages documentation and demo site for Boxes",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
"url": "https://github.com/jpmccu/boxes",
"directory": "packages/react"
},
"version": "0.4.0"
"version": "0.5.0"
}
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
"url": "https://github.com/jpmccu/boxes",
"directory": "packages/vue"
},
"version": "0.4.0"
"version": "0.5.0"
}
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"devDependencies": {
"vite": "^5.1.4"
},
"version": "0.4.0"
"version": "0.5.0"
}