### 1.0.0-beta.10
- Upgrade ember-cli and dependencies

### 1.0.0-beta.9
- Upgrade ember-cli
- Upgrading dependencies fixes issue where ember-wormhole did not work in Ember 2.13

### 1.0.0-beta.8
- Additional variables for input styling
- Fix error message icon clipping on Chrome

### 1.0.0-beta.7
- Use ember-wormhole to render popup to a popup container. This fixes positioning in Safari

### 1.0.0-beta.6
- Upgrade ember-cli
- Remove rending of popup on body element.
- Upgrade position library

### 1.0.0-beta.5
- Upgrade ember-cli
- Move scss to use mixins to enable better styling
- Expose additional variables for styling buttons

To include the base css in your app you need to include the following in your primary app scss file.
```scss
@import "emberui";
@include emberui-theme();
```

### 1.0.0-beta.4
- Fix select-time not being closable in iOS.

### 1.0.0-beta.3
- Add select-time component.

### 1.0.0-beta.2
- Calendar fixes for IE
- Support boolean values in selects

### 1.0.0-beta.1
- Brand new API.
- More notes coming later.


### 0.7.2
- Only trigger selectionDidChange on popcal when it has a selection

### 0.7.1
- Add onChange event to select date component.

### 0.7.0

- [BREAKING] EmberUI now requires Ember 1.12
- Move to the new computed get/set syntax
- Add tmp/ folder to .npmignore

### 0.6.0

- [BREAKING] EmberUI is now a ember-cli addon. You need to uninstall the current version of EmberUI and re-install using `ember install emberui`. A global build is no longer supported. You can use [ember-giftwrap](https://github.com/ef4/ember-giftwrap) if you really need a global version.
- [ENHANCEMENT] Eliminate the use of an observer in the dropbutton component.
- [ENHANCEMENT] Poplist and Popcal are now a regular components. You can no longer use them by importing them and calling `show()`` on it. Use it via {{eui-poplist}} and {{eui-popcal}}.
- Add a new mixin called `render-on-body`. Mix it into components to have them render on the `body` element instead of where you include them. Useful for modals and popups that need to break out of their current HTML context.
- [ENHANCEMENT] Fix icon spacing on dropbutton.
