Releases: adopted-ember-addons/ember-paper
Releases · adopted-ember-addons/ember-paper
v1.0.0-alpha.3
1.0.0-alpha.3
v1.0.0-alpha.2
- This version uses an updated version of
ember-css-transitions
from github rather than npm. - #384 update sidenav
paper-nav-container
was renamed topaper-sidenav-container
locked-open
was renamed tolockedOpen
- sidenav opening now follows DDAU with the
open
attribute andonToggle
action - animations work
- there is a
paperSidenav
service that allows sidenav toggling across the application paper-sidenav-toggle
no longer sets a class to hide at certain breakpointspaper-sidenav-toggle
is now tagless. It is essentially a functional component that yields an action to its blockpaper-sidenav
now can use aposition
param that positions the sidenavleft
(default) orright
paper-backdrop
actiononTap
changed toonClick
- #408 added paper-form component.
paper-input
'sonInvalid
action renamed toonValidityChange
- #430 added fastboot support. Removed errors associated with
document
when runningember fastboot
v1.0.0-alpha.1
- #365 paper-button: Support for
fab
andmini
. - #362 paper-toolbar: Support for
tall
. - #364 Support installation via both npm versions 2 and 3.
- #367 You should now use
paper-toolbar-tools
component (or respective contextual component) instead of themd-toolbar-tools
class. - #370
paper-icon
now once again supports kebab cased icon names, and asize
in pixels. - #372
paper-button
can generatea
link elements, with an href and optional target attribute.
v1.0.0-alpha.0
- 1a9b641 paper-progress-circular now uses
diameter
instead ofmd-diameter
- cf2a8da paper-progress-linear now uses
bufferValue
instead ofbuffer-value
- #285 paper-checkbox now uses actions up, data down.
onChange
action is mandatory. - #286 paper-radio no longer has the class
paper-radio
- #286 paper-radio now uses
groupValue
instead ofselected
- #286 paper-radio now sends the action
onChange
instead ofchanged
and it is mandatory (see ddau) - #303 paper-menu template may now specify
dense=true
to display menu items compactly - #313 paper-backdrop
tap
action renamedonTap
and required action closure. - #326
- paper-input now uses a passThru hash rather than individual attr-xxx attributes to pass attribute binds through to the underlying input.
- The required attribute can now be used to mean native validation, required label styling with an asterisk, and/or native html5 required validation.
- paper-input now uses
customValidations
instead ofcustomValidation
. customValidations has a new format. - the error messages can now be overriden by specifiying
errorMessages=(hash required="new message")
- first validation message now has suffix
-0
in its id - paper-checkbox now uses actions up, data down.
onChange
action is mandatory.
- #324
- paper-button now uses
iconButton
instead oficon-button
- paper-button now uses the action
onClick
instead ofaction
- paper-button now uses
- #334
- paper-menu-item now uses action
onClick
instead ofaction
. - paper-item now uses action
onClick
instead ofaction
. - paper-menu now uses
value
instead ofmodel
. - paper-checkbox now uses
value
instead ofchecked
. - paper-switch now uses
value
instead ofchecked
. - paper-select now uses a required
onChange
action. - paper-select now uses attribute
itemLabelCallback
instead ofitem-label-callback
. - paper-select now uses attribute
getItems
instead ofon-open
. - paper-menu now uses attribute
isOpen
instead ofis-open
.
- paper-menu-item now uses action
- #338
- paper-card now uses contextual components. The old paper-card-content and paper-card-title components still work.
- paper-card now supports the same configurations as the Angular Material version.
- Updated the dependency on hammer from
hammerjs
tohammer.js
. (Also backported to 0.2.14.)- Update your project's
bower.json
to require"hammer.js": "^2.0.8"
. Removebower_components/hammerjs
. Runbower cache clean
, thenbower install
.
- Update your project's
- 5521f3b Validation status on
paper-input
is exposed viaonInvalid
action.