Skip to content

Releases: jkusa/ember-cli-clipboard

v1.1.0

22 Aug 13:40
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0...v1.1.0

v1.0.0

22 Nov 19:42
Compare
Choose a tag to compare

What's Changed

  • feat: support target to be set dynamically (#379) (66bf3a7)
  • feat: support direct use of the clipboard modifier (7e3f448)
  • chore: update ember-auto-import to v2 & ember-cli v4 (#370) (8e1aa28)

BREAKING CHANGE

  • This commit contains many breaking changes:

    • Drops ember classic component support (glimmer only)
    • Drops support for sendAction
    • Requires ember-auto-import 2.x
    • <CopyButton> component arg name changes:
    Old Argument Name New Argument Name
    @clipboardText @text
    @clipboardTarget @target
    @clipboardAction @action
    @success @onSuccess
    @error @onError
    @title no longer supported, pass as attribute
    @disabled no longer supported, pass as attribute
    @aria-label no longer supported, pass as attribute

Full Changelog: v0.16.0...v1.0.0

v0.16.0

15 Nov 23:48
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.15.0...v0.16.0

v0.15.0

24 Jun 19:41
Compare
Choose a tag to compare

Via the README:

container - selector string or element object of containing element. "For use in Bootstrap Modals or with any other library that changes the focus you'll want to set the focused element as the container value".

v0.14.0

16 Jan 02:43
Compare
Choose a tag to compare
  • Any HTML button attribute passed to the copy-button component will be "splatted" on the button element. The one exception to this is the type attribute due to this issue. The following legacy arguments are still supported:

  • Upgrade to ember-cli 3.15

  • Convert to native classes

  • copy-button is now tagless and uses "outer-html semantics"

  • Makes use of @ember/render-modifiers

v0.13.0

03 Jul 02:12
Compare
Choose a tag to compare
  • clipboardText can now be lazily computed by providing a string returning ember action

v0.12.0

18 Jun 12:28
Compare
Choose a tag to compare
  • Upgrade to ember-cli 3.10
  • Add better support for Embroider (#56)

v0.11.1

08 Jan 04:33
Compare
Choose a tag to compare

v0.11.0

02 Jan 20:52
Compare
Choose a tag to compare
  • Upgrade to ember-cli 3.6
  • Remove jQuery dependency
  • Support new Ember Testing API (ember-cli-qunit >= 4.2 ember-cli-mocha >= 0.15.0)
    • New test helpers available via ember-cli-clipboard/test-support

v0.10.0

28 Oct 19:59
Compare
Choose a tag to compare
  • Adds support for the latest ember testing container API #38 @puwelous