Skip to content

Releases: lifeomic/chroma-react

v0.4.1

31 Mar 18:26
Compare
Choose a tag to compare

Bug Fixes 🐛

  • Align first and last column table headers (#107)
  • Soften gradient of highlight pill (#108)
  • Change green on dot loader (#109)

v0.4.0

19 Mar 17:53
Compare
Choose a tag to compare

This release is likely the final pre-1.0.0 version we will cut unless we find any breaking bugs.

New Features 🚀

  • AA color contrast ratio fixes for the theme provided by Chroma and other accessibility improvements (#104)

This change should be considered breaking.. If your app has theme overrides, you will need to adjust your color palette overrides, and potentially component-level overrides.

Bug Fixes 🐛

  • ButtonFilePicker had a dead cursor area due to the pseudo element (#105)

v0.3.0

12 Mar 19:11
Compare
Choose a tag to compare

New Features 🚀

  • New GroupHeading component for Select to create an options grouping (#76, #77)
<Select
  label="Choose an option…"
  placeholder="Placeholder Text…"
  value={selectValue}
  onChange={(v: string) => setSelectValue(v)}
>
  <GroupHeading data-select-role="heading">Group 1</GroupHeading>
  <SelectOption title="Option 1" value="option 1" />
  <SelectOption title="Option 2" subtitle="subtitle" value="option 2" />
  <GroupHeading data-select-role="heading">Group 2</GroupHeading>
  <SelectOption title="Option 3" value="option 3" />
  <SelectOption title="Option 4" value="option 4" />
</Select>

v0.2.7

10 Mar 12:41
Compare
Choose a tag to compare

Bug Fixes 🐛

  • ButtonUnstyled color is "inherit" by default (#74)

v0.2.6

08 Mar 21:16
Compare
Choose a tag to compare

New Features 🚀

  • ThemeOptions interface is now exported (#72)

v0.2.5

08 Mar 20:39
Compare
Choose a tag to compare

New Features 🚀

  • New ButtonUnstyled component for a11y (#69)

Bug Fixes 🐛

  • Popover color CSS prop fix (#68)

v0.2.4

25 Feb 15:54
Compare
Choose a tag to compare

New Features 🚀

  • Improved tooltip contrast (#65)
  • Text font sizes are mapped to the theme font sizes (#66)

v0.2.3

16 Feb 22:04
Compare
Choose a tag to compare

Bug Fixes 🐛

  • Menu Item props spread bug fix (#63)

v0.2.2

02 Feb 10:59
Compare
Choose a tag to compare

Bug Fixes 🐛

This release contains a ton of accessibility improvements from @HaleyWardo.

  • Primary Navigation color contrast fix (#56)
  • Select aria-attribute fixes (#57)
  • Table Module empty header fix (#58)
  • Combobox chip color to use primary, main color. No visual changes, helps with theme overrides (#59)
  • TextField components no longer render an empty label, but will add aria-label when one is not provided (#60)
  • ButtonLink hover style fixes. This isn't something you'll hit unless you pull in bootstrap or some other CSS that attempts to style over default elements. (#61)

v0.2.1

22 Jan 14:24
v0.2.1
9d5c6fa
Compare
Choose a tag to compare

Bug Fixes 🐛

  • RadioGroup allows the value to be controlled by the parent
  • Adds a stroke to checkboxes