From f19c08620d795907c433271c2e0ad637952a6adf Mon Sep 17 00:00:00 2001 From: jlukic Date: Fri, 26 Jun 2015 11:27:14 -0400 Subject: [PATCH] Update rlsnotes --- RELEASE-NOTES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 1102e6372..c7993af3f 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -9,6 +9,7 @@ - **Grid** - `page grid` has been deprecated. `page grids` used percentage gutters which made it unnecessarily difficult to style responsive page content. Moving forward we recommend using `ui container` a fixed width responsive container for holding page contents. - **Dropdown** - Dropdowns will now change opening directions automatically based on available screen space. If you need to force a dropdown direction use `dropdown({ direction: 'upward'})` - **Form Validation** - Form validation now passes settings through a `fields` object. This is to make form initialization match other components. The previous syntax will continue to work but will produce deprecation notices in console +- **Checkbox** - Checkbox `fireOnInit` now defaults to false - **Dropdown** - Dropdown item `description` now are floated in default theme and should be included before other `item` content - **Form** - `grouped inline field` no longer display horizontally. Use `inline field` instead for horizontal inline field groups. - **Input** - `pointer-events` have been removed from `icon` in `icon input` unless a `link icon` is used. This is to make sure the hitbox for focusing an input includes the icon. @@ -33,6 +34,7 @@ - **API** - API callbacks now have an `onResponse` callback that can adjust a servers response before it is parsed by other callbacks for success or failure conditions. **Thanks @mnquintana** - **API** - API now provides a local caching setting to avoid server roundtrips for identical urls by using `cache: 'local'`. This is not enabled by default. Local caching is useful for results that should return the same values across a single session, for example when querying an autocomplete. - **Card** - Cards now support multiple custom `content` blocks. Content blocks and images can now appear in any order. +- **Checkbox** - Checkboxes now support `indeterminate` states, and will now gracefully correct references internally if methods are invoked on the child input element instead of the checkbox. - **Dropdown** - Added remote API integration with dropdown, to allow `search selection` to query against a remote dataset. - **Dropdown** - Dropdowns now automatically observe changes in `menu` and will update selector cache with new additions - **Dropdowns** - Added ability to add custom choices to all search selection dropdowns (multi/single) using `allowAdditions: true` setting. Search now displays error messages on no results in all cases.