Skip to content

v1.0.0 — First Stable Release

Compare
Choose a tag to compare
@manolo manolo released this 14 Jul 13:06
· 274 commits to master since this release

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>