Skip to content

v1.0.0

Latest

Choose a tag to compare

@d12frosted d12frosted released this 28 Dec 18:49
· 36 commits to master since this release
v1.0.0
67c508c

First stable release of vui.el - a declarative, component-based UI library for Emacs.

Breaking Changes (since RC releases)

Symbol Prefix Rename: All public macros now use the vui- prefix to comply with MELPA naming conventions:

  • defcomponentvui-defcomponent
  • defcontextvui-defcontext
  • use-effectvui-use-effect
  • use-refvui-use-ref
  • use-callbackvui-use-callback
  • use-callback*vui-use-callback*
  • use-memovui-use-memo
  • use-memo*vui-use-memo*
  • use-asyncvui-use-async

See the README section "Using Shorter Names (Shorthands)" for how to use aliases or read-symbol-shorthands if you prefer the shorter names.

What's Included

  • Core rendering engine with virtual DOM diffing and reconciliation
  • Component system with vui-defcomponent macro
  • Hooks: vui-use-effect, vui-use-memo, vui-use-ref, vui-use-async
  • Layout primitives: vui-vstack, vui-hstack, vui-box, vui-table
  • Basic elements: vui-text, vui-button, vui-link, vui-input, vui-checkbox, vui-select
  • Utility components: vui-fragment, vui-newline, vui-space, vui-list, vui-error-boundary
  • vui-mode major mode for VUI buffers
  • Async utilities: vui-async-callback, vui-with-async-context
  • Debug mode with vui-debug-mode
  • Comprehensive documentation and examples

See CHANGELOG.org for complete release notes.