Skip to content

Releases: appfolio/react-gears

CreditCardInput

13 Apr 16:48
Compare
Choose a tag to compare

This is initial release of CreditCardInput

Add `disabled` prop to AddressInput

12 Apr 23:07
Compare
Choose a tag to compare

This release adds a disabled prop to AddressInput to allow read-only view for nested fields

Update SummaryBox docs

07 Apr 18:41
Compare
Choose a tag to compare
v1.2.2

1.2.2

Simplify SummaryBox

07 Apr 18:21
Compare
Choose a tag to compare

This release simplifies the internal SummaryBox markup to be easily themed.

Modal Improvements

31 Mar 01:32
Compare
Choose a tag to compare

This release updates the default props and documentation for Modals to hide backdrop and z-index for better APM integration.
Also adds a Close component to encapsulate the markup for http://v4-alpha.getbootstrap.com/utilities/close-icon/

Add Card documentation

23 Mar 00:20
Compare
Choose a tag to compare

Added documentation for Card components

screen shot 2017-03-22 at 5 16 42 pm

Fix for Select focus

17 Mar 19:00
Compare
Choose a tag to compare

Releases fix for Select focus issue in #175

1.0

10 Mar 18:19
Compare
Choose a tag to compare
1.0

Code cleanup and documentation improvements

  • Added MyCase theme
  • Persist theme choice across sessions
  • Update dependencies
  • Improve color theming for DateMonth and Steps

FormRow Style Improvements

07 Mar 23:26
Compare
Choose a tag to compare

This release adds two options to the FormRow component. The first is a boolean stacked prop. By flagging an input as stacked, the label always appears above the input as it usually does in small viewports.

<FormRow label="First Name" stacked />

Next, the FormRow component has a width property, that controls the width of the input element. It should take the form of an object with viewport names as keys, and column sizes (out of 12) as values. For example:

<FormRow label="Stuff" width={{ sm: 5, lg: 10, xs: 10 }} />

Check out the "Live Example" with customizable in the docs.

Updates to CurrencyField and BoundFormRow

06 Mar 18:18
Compare
Choose a tag to compare

This release updates the CurrencyField to behave better when typing decimals. In addition, this release fixes a BoundFormRow bug when passing an onChange hander directly as a prop.