Socket
Socket
Sign inDemoInstall

ember-uikit

Package Overview
Dependencies
575
Maintainers
7
Versions
63
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
Previous123567Next

3.0.1

Diff

Changelog

Source

3.0.1 (2021-03-24)

Bug Fixes

  • use prepare instead of postinstall lifecycle (fbf1102)
anehx
published 3.0.0 •

Changelog

Source

3.0.0 (2021-03-23)

  • chore(ember)!: remove support for ember LTS 3.16 (0f652ac)

BREAKING CHANGES

  • This removes guaranteed support for ember LTS version 3.16 since it's not active anymore and adds testing with the active LTS 3.24.
anehx
published 2.2.2 •

Changelog

Source

2.2.2 (2020-11-20)

Bug Fixes

  • modal: fix scrolling to top when modal exists (5291beb)
anehx
published 2.2.1 •

Changelog

Source

2.2.1 (2020-11-20)

Bug Fixes

  • remove deprecated usage of private helper and use ember-cli-uglify (#562) (bba51c6)
anehx
published 2.2.0 •

Changelog

Source

2.2.0 (2020-10-12)

Features

anehx
published 2.1.2 •

Changelog

Source

2.1.2 (2020-03-25)

Bug Fixes

  • modal: fix initial focus of modal focus trap (f57381d)
anehx
published 2.1.1 •

Changelog

Source

2.1.1 (2020-03-24)

Bug Fixes

  • deps: move focus-trap to dependencies (636a681)
  • deps: update ember to 3.16.5 (02b5d65)
czosel
published 2.1.0 •

Changelog

Source

2.1.0 (2020-03-19)

Bug Fixes

  • modal: ignore bubbling events (fe6b593)

Features

  • modal: trap focus in opened modal (0393967)
czosel
published 2.0.1 •

Changelog

Source

2.0.1 (2019-12-04)

Bug Fixes

  • modal: fix modal event handling and tests (#311) (c7f8156)
czosel
published 2.0.0 •

Changelog

Source

2.0.0 (2019-12-02)

Features

  • modal: change to a composable component (#307) (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:
{{#uk-modal}}
  Lorem ipsum
{{/uk-modal}}

to:

{{#uk-modal as |modal|}}
  {{#modal.body}}
    Lorem ipsum
  {{/modal.body}}
{{/uk-modal}}

The footer can be migrated as follows:

{{#uk-modal}}
  <p class="uk-text-right">
    Footer content
  </p>
{{/uk-modal}}

to:

{{#uk-modal as |modal|}}
  {{#modal.footer class="uk-text-right"}}
    Footer content
  {{/modal.footer}}
{{/uk-modal}}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc