Skip to content

Releases: appfolio/react-gears

Correct ExpandableSection to allow controlled `open` component

16 May 00:46
Compare
Choose a tag to compare

This release corrects ExpandableSection to allow controlled open prop

Add reverse option for SummaryBox and SummaryBoxItem

15 May 18:27
Compare
Choose a tag to compare

The release adds reverse option for SummaryBox and SummaryBoxItem to allow for 'natural' label/value ordering. Defaults to true to match current behavior.

Screen Shot 2019-05-15 at 11 15 40 AM

MonthInput accessibility, correct Alert content

14 May 22:49
Compare
Choose a tag to compare

This release updates the MonthInput component accessibility.
This also corrects the Alert component content width to allow for filled/right aligned content.

Update StateInput

15 Apr 15:25
Compare
Choose a tag to compare

Order US states by displayed code, not (unseen) name

Correct AddressInput

05 Apr 00:06
Compare
Choose a tag to compare

This release corrects an issue with AddressInput where inputs could not be reset to '' values

Correct Select issue

18 Mar 22:02
Compare
Choose a tag to compare

Corrects click issue described in #530

Update Notes

23 Feb 00:00
Compare
Choose a tag to compare

This release updates Notes by adding support for custom save/saving labels, and also updates the visual look to conform with Cards across all themes:

screen shot 2019-02-22 at 2 56 58 pm

SortableTable, TypeScript updates

13 Feb 17:18
Compare
Choose a tag to compare

This release adds SortableTable support for row selection and expansion columns, previously only available in UncontrolledTable:

screen shot 2019-02-13 at 9 15 29 am

New props:

  allSelected?: boolean;
  expandableColumn?: Partial<SortableColumn<T>>;
  onExpand?: (row: T) => void;
  onSelect?: (row: T, selected: boolean) => void;
  onSelectAll?: (selected: boolean) => void;
  rowSelected?: (row: T) => boolean;

Also TypeScript definitions have been updated to support TypeScript 3.x and added missing SortableTable d.ts

SortableTable update, DateInput clear button fix, remove console warnings

01 Feb 00:16
Compare
Choose a tag to compare

SortableTable:

  • rowOnClick prop now gets passed the click event in addition to the row

DateInput:

  • DateInput should return false in second argument when the date is invalid

Console warnings:

  • ClickableContainer no longer pukes up propTypes warnings

Correct Reorderable HasManyFIelds

21 Jan 16:32
Compare
Choose a tag to compare

Release corrects issue with HasManyField inputs losing focus on change, details in #520