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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0] - 2026-08-28

### Added
- **CSS split bundle** — `src/styles.css` is now an aggregator that re-exports the split partials (`tokens.css`, `base.css`, `components.css`) in declaration order, so the full bundle and the split imports share a single source of truth and the same `@layer` structure.
- **Kanban demo** — `demo/src/kanban.ts` (`x-kanban`): three-column board with native drag & drop (move + reorder via insertion index, `.is-dragging`/`.is-drop-target` classes), store-backed state with `store.subscribe` re-renders, add-card composer, per-column counts, and reset. Drag events touch DOM classes directly so `dragover` never re-renders the board.
Expand Down
2 changes: 1 addition & 1 deletion packages/micro-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentf/micro-ui",
"version": "0.3.0",
"version": "0.4.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
Loading