- #119 [BREAKING] Update dependencies, including ember-auto-import and add CI (@lukemelia)
- Gabriel Cousin (@GabrielCousin)
- Luke Melia (@lukemelia)
- Ray Cohen (@raycohen)
- Will Bagby (@bagby)
- fix to use valid
aria-checked
attribute values
- fixes
sendAction
deprecation warnings, using closure actions internally - removes support for Ember versions below 2.8
- removes
labeled-radio-button
which was replaced by the block usage ofradio-button
- adds support for passing a closure action to the
changed
property
- adds
aria-checked
attribute binding
- adds
checkedClass
to override the default "checked" classname on the label when it is checked
- adds
ariaDescribedby
- adds
ariaLabelledby
- README overhaul
- adds
tabindex
andautofocus
- use
Ember.isEqual
for comparison - updated examples in the test application to be implemented with components
- fix for ember engine support
- adds support for engines
- Potential Breaking Change: The addon now uses templates from the addon folder.
If you were supplying your own templates at the previous location
(
app/templates/components/radio-button.hbs
for example) You will need to instead extend the provided component and explicitly supply your own template.
- adds a
radioClass
property to put any classes you want on the input element - adds a
radioId
property to specify an id for the input element, allows associating non-wrapping label elements
- Use
hasBlock
internally and remove deprecation warnings from accessing the component'stemplate
property
- Improve IE8 Support
- Fix putting additional classNames on the label
- Put additional classNames on the label
- Add
ember-radio-button
class to the label when used as a block
- Put a
checked
classname on the label element when a block form radio-button is checked
- Update to htmlbars
- Rely on the
change
event, notclick
- Only
label
andinput
elements emitted, no morespan
- Add
required
andname
bound attributes
- Add
disabled
bound attribute