Skip to content

v0.3.0

Choose a tag to compare

@phamvanquyit phamvanquyit released this 12 Sep 13:50
· 40 commits to main since this release

Added

  • Splitter / Splitter.Panel — resizable split panels (orientation, min/max size, onResize).
  • ColorPicker panel: saturation/brightness, hue/alpha, HEX / RGB / HSB, presets, showText, allowClear, sizes.
  • Color helper (toHexString, toRgbString, toHsbString, toCssString).

Changed

  • ColorPicker public API now matches Ant Design-style props (value / onChange(color, css), size as control size). SchemaForm color fields use the new picker.

Upgrade notes

  • Replace ColorPicker usage: onChange is (color: Color, css: string) => void; size is "small" | "default" | "large"; presets is optional { label, colors }[].
  • Store Color in controlled mode to avoid HEX round-trip drift.