Skip to content

Releases: vaadin/vaadin-button

v1.0.4

26 Sep 12:09
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v1.0.3:

  • 6ca3b2b Update README.md

  • 94f2d96 Bump vaadin-demo-helpers to ^1.0.0

  • b643f02 Remove focus-tabindex visual tests

v1.0.3 — Add Polymer.GestureEventListeners

21 Sep 16:06
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v1.0.2:

  • bace622 Get rid of old API

  • 3da5b43 Add back the import of Polymer.GestureEventListeners

v1.0.2 — Adapt demos to new vaadin.com

21 Sep 16:04
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes Since v1.0.1:

v1.0.1 - Fix webcomponents.org example, add vaadin-button-default-theme

12 Sep 10:05
Compare
Choose a tag to compare
  • add vaadin-button-default-theme (#37) special thanks to @abdonrd
  • remove Polymer.GestureEventListeners (#44)
  • fix webcomponents.org example for Firefox

v1.0.0 — First Stable Release

14 Jul 13:06
Compare
Choose a tag to compare

Live Demo →
API Documentation →

Changes since v1.0.0-beta3:

  • Documentation fixes

Features

  • Polymer 2.0 support

  • Native <button> attributes: autofocus, disabled

  • Has focused attribute when button is focused

  • Has focus-ring attribute when button is focused using keyboard

  • Has active attribute when button is being pressed

  • Themable using style modules:

    <dom-module id="button-styles" theme-for="vaadin-button">
      <template>
        <style>
          [part~="button"] {
            padding: 6px 12px;
            font-size: 14px;
            line-height: 1.4;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 4px;
            color: #333;
          }
        </style>
      </template>
    </dom-module>

v1.0.0-beta3

07 Jun 10:01
Compare
Choose a tag to compare

Live Demo →

API Documentation →

Changes:

  • Throw error when used with wrong Polymer version (#25)
  • Prevent native form submitting (#21)
  • Normalize CSS for the native button (#28)

v1.0.0-beta2 — Align active behavior

24 May 12:03
Compare
Choose a tag to compare

Live Demo →

API Documentation →

Changes

  • Fix #24 disabled button gets active state in Safari

v1.0.0-beta1 — Stable Polymer dependencies

18 May 06:31
Compare
Choose a tag to compare

Live Demo →

API Documentation →

Changes since v1.0.0-alpha1

  • Depends on Stable Polymer and Polymer Elements ^2.0.0

v1.0.0-alpha1 — First Alpha Release 🔘

21 Apr 09:48
Compare
Choose a tag to compare

Live Demo →

API Documentation →

Features

  • Polymer 2.0 support

  • Native <button> attributes: autofocus, disabled

  • Has focused attribute when button is focused

  • Has focus-ring attribute when button is focused using keyboard

  • Has active attribute when button is being pressed

  • Themable using style modules:

    <dom-module id="button-styles" theme-for="vaadin-button">
      <template>
        <style>
          [part~="button"] {
            padding: 6px 12px;
            font-size: 14px;
            line-height: 1.4;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 4px;
            color: #333;
          }
        </style>
      </template>
    </dom-module>