Releases: appfolio/react-gears
CreditCardInput
This is initial release of CreditCardInput
Add `disabled` prop to AddressInput
This release adds a disabled
prop to AddressInput to allow read-only view for nested fields
Update SummaryBox docs
v1.2.2 1.2.2
Simplify SummaryBox
This release simplifies the internal SummaryBox markup to be easily themed.
Modal Improvements
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
Added documentation for Card components
Fix for Select focus
Releases fix for Select focus issue in #175
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
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
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.