Skip to content

Releases: RtlZeroMemory/Rezi

v0.1.0-alpha.69

15 Apr 12:30
57e2499

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.68...v0.1.0-alpha.69

v0.1.0-alpha.68

15 Apr 11:21

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.63...v0.1.0-alpha.68

v0.1.0-alpha.63

14 Apr 07:44
25a6e1e

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.61...v0.1.0-alpha.63

v0.1.0-alpha.61

03 Apr 04:37

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.60...v0.1.0-alpha.61

v0.1.0-alpha.60

14 Mar 06:54

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.58...v0.1.0-alpha.60

v0.1.0-alpha.59

07 Mar 06:38

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.58...v0.1.0-alpha.59

v0.1.0-alpha.58

06 Mar 12:26

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.57...v0.1.0-alpha.58

v0.1.0-alpha.57

06 Mar 08:43

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.56...v0.1.0-alpha.57

v0.1.0-alpha.56

06 Mar 06:36

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0-alpha.55...v0.1.0-alpha.56

v0.1.0-alpha.55

05 Mar 14:27

Choose a tag to compare

Features

  • core/runtime: Added useReducer to composite widget hooks, including stale-dispatch generation guards and runtime/unit coverage.
  • core/testing: Added findAll("textarea") alias support in the test renderer for multiline input variants.

Bug Fixes

  • core/renderer: Unified shadow offset parsing across drawlist damage/overflow paths and centralized shared box-shadow config resolution to eliminate negative-offset divergence.
  • core/forms: useForm.handleSubmit now exposes submission failures via callback/state (onSubmitError, submitError) with safer thrown-value formatting.
  • core/layout: Added dev-mode warnings for unsupported child constraint props, including a spacer flex-only carveout.

Refactors

  • core/layout: Removed dead percent-sizing guard paths from stack layout planning.

Documentation

  • docs/guide: Added testing.md and error-handling.md entrypoint guides.
  • docs/widgets: Clarified textarea behavior as a multiline input variant in widget documentation/index mapping.

Tests

  • Added baseline test coverage for cursor, focus/styles, and perf frame/counter modules.
  • Added renderer regression coverage for negative shadow offsets and damage culling interaction.
  • Added runtime/unit coverage for useReducer behavior and test-renderer textarea alias lookup.

Merged Pull Requests

  • #246 fix(core): unify shadow offset parsing across renderer paths
  • #247 feat(core): expose useForm submit errors via callback and state
  • #248 refactor(core): remove dead percent guard paths from stack layout
  • #249 feat(core): warn in dev for unsupported child layout constraints
  • #250 docs(guide): add testing and error-handling entrypoint guides
  • #251 feat: add textarea kind alias support in test renderer
  • #252 test: add baseline coverage for focus cursor and perf modules
  • #253 feat: add useReducer hook for composite widgets