Skip to content

Releases: vaadin/vaadin-upload

v2.0.0-alpha2 – Polymer 2.0 as default

10 May 07:24
Compare
Choose a tag to compare

Live Demos ↗

Changes

  • polymer now depends on ^2.0.0 by default
  • Other dependencies depend now on 2.0-preview by default

v2.0.0-alpha1 – Polymer 2.0 support

25 Apr 12:27
Compare
Choose a tag to compare

Live Demos ↗

Changes

  • Polymer 2.0 support
  • Manual upload triggering added (thanks to @stramel!)
    • no-auto can be set to disable the automatic uploading
    • uploadFiles() is then called to initiate uploading of the queued files
    • Live Demo ↗
  • Customizing upload button added (thanks to @stramel!)
    • slot add-button can be used to replace the default button
    • Live Demo ↗

Breaking Changes

  • To provide custom elements, slots are now used instead of classes
    • Available slots currently are: add-button, file-list, drop-label, drop-label-icon
  • Customizing the drop label icon needs to be placed outside the drop label with its own slot
<!-- 1.x -->
<vaadin-upload>
  <div class="drop-label">
    <iron-icon icon="cloud-upload"></iron-icon>
    Drop files
  </div>
</vaadin-upload>

<!-- 2.0 -->
<vaadin-upload>
  <iron-icon slot="drop-label-icon" icon="cloud-upload"></iron-icon>
  <span slot="drop-label">Drop files</span>
</vaadin-upload>

v1.1.4 – Maintenance Release

22 Mar 10:06
Compare
Choose a tag to compare

Changes

  • Fixed #157 (Long filenames make the "abort" button disappear on Firefox)

v1.1.3 – Maintenance Release

15 Mar 13:12
Compare
Choose a tag to compare

Changes

v1.1.2 – Maintenance Release

07 Mar 13:01
Compare
Choose a tag to compare

Changes:

  • Dragover doesn't disable the click anymore (#107) (Thanks @stramel!)
  • Refresh button gets hidden properly when upload finishes (#155) (Thanks @moritzmenzel!)

v1.1.1 – formDataName added

21 Dec 12:01
Compare
Choose a tag to compare

Changes:

  • formDataName property added
  • Unnecessary iron-icons.html import removed

v1.1.0

16 Sep 07:05
Compare
Choose a tag to compare

Changes:

  • Removed deprecated Angular 2 directive, which was only available briefly in the 1.1.0 beta versions. Please use angular2-polymer instead.
  • The accept property is now case-insensitive (#118).
  • Manual xhr.send(...) is now allowed when the upload-request event is prevented (#96).

Issues closed in this milestone

v1.0.3 – Custom Iconset

29 Jul 06:42
Compare
Choose a tag to compare

Changes:

  • <iron-icons> dependency replaced with a custom iconset (thanks to @robrez)

v1.0.2 – Cleaning up dependencies

28 Jul 07:46
Compare
Choose a tag to compare

v1.0.1 – MIME type improvements

26 Jul 14:30
Compare
Choose a tag to compare

Changes:

  • Use maxFiles instead of nomultiple in demos

    Manolo Carrasco - Thu, 2 Jun 2016 12:59:04 +0300

  • Fix reject files when specifying the complete mime type

    Manolo Carrasco - Thu, 2 Jun 2016 12:57:07 +0300