Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [2.0.0](v1.0.0...v2.0.0) (2019-12-02) ### Features * **modal:** change to a composable component ([#307](#307)) ([ee42813](ee42813)) ### BREAKING CHANGES * **modal:** This removes the default stying of "uk-modal-body", to migrate to this patch and keep the stying it will have to be changed from: ```hbs {{#uk-modal}} Lorem ipsum {{/uk-modal}} ``` to: ```hbs {{#uk-modal as |modal|}} {{#modal.body}} Lorem ipsum {{/modal.body}} {{/uk-modal}} ``` The footer can be migrated as follows: ```hbs {{#uk-modal}} <p class="uk-text-right"> Footer content </p> {{/uk-modal}} ``` to: ```hbs {{#uk-modal as |modal|}} {{#modal.footer class="uk-text-right"}} Footer content {{/modal.footer}} {{/uk-modal}} ```
- Loading branch information