Skip to content

Releases: vaadin/vaadin-date-picker

v1.1.0

01 Jul 08:56
Compare
Choose a tag to compare

Changes since v1.1.0-beta3:

  • Let developers customize the input area
    • Adds a new element vaadin-date-picker-light to allow wrapping any custom input element
    • Exposes more public API from paper-input, to cover common use case requested by users
  • Match header height with app-toolbar
  • Bump iron-dropdown min version to a working one
  • Fix iron-dropdown padding covering the clear button

Issues closed in this milestone

v1.0.1 – Minor styling improvements

10 Jun 11:21
Compare
Choose a tag to compare

Changes:

  • Match header height with app-toolbar

    Sauli Tähkäpää - Wed, 8 Jun 2016 14:29:35 +0300

  • Bump iron-dropdown min version to a working one

    Teemu Pöntelin - Wed, 25 May 2016 10:53:45 +0300

  • Fix iron-dropdown padding covering the clear button

    Teemu Pöntelin - Tue, 24 May 2016 09:40:32 +0300

v1.0.0

17 May 09:52
Compare
Choose a tag to compare

No changes since 1.0.0-rc3 release

v1.1.0-beta3 – Support for noImplicitAny

10 May 10:12
Compare
Choose a tag to compare

Changes:

  • Directives can now be compiled with latest Angular 2 when noImplicitAny has been set in tsconfig.json

v1.0.0-rc3

09 May 13:36
Compare
Choose a tag to compare

Changes since v1.0.0-rc2:

  • Fixed an issue with wrapped date picker dropdown not closing on native shadow

Issues closed in this milestone

v1.1.0-beta2 – Support for Angular 2 Release Candidate

10 May 08:21
Compare
Choose a tag to compare

Changes:

  • Directive is now compatible with the @angular packages introduced in 2.0.0-rc.0.

v1.1.0-beta1 — Minor Release Beta

27 Apr 10:30
Compare
Choose a tag to compare

No changes since v1.1.0-alpha1.

v1.1.0-alpha1 – Angular 2 Directives

26 Apr 13:19
Compare
Choose a tag to compare

Features:

  • Angular 2 Directive for <vaadin-date-picker>
import {Component} from 'angular2/core';
import {VaadinDatePicker} from '../bower_components/vaadin-date-picker/directives/vaadin-date-picker';

@Component({
  selector: 'my-component',
  template: `
    <vaadin-date-picker label="Birthday" [(value)]="birthday"></vaadin-date-picker>
  `,
  directives: [VaadinDatePicker]
})
export class MyComponent {
  birthday = "2000-01-01";
}

v1.0.0-rc2 – Icon Touch Target Area Increased

26 Apr 13:06
Compare
Choose a tag to compare

Changes:

  • Increase icons touch target area up to 32px×32px

1.0.0-rc1

25 Apr 13:41
Compare
Choose a tag to compare
  • Bug fixes
  • Extended i18n API (introduced formatTitle function)
  • Reorganized documentation

Issues closed in this milestone