iron-label

WebJar for iron-label

License

License

BSD 3-Clause
GroupId

GroupId

org.webjars.bowergithub.polymerelements
ArtifactId

ArtifactId

iron-label
Last Version

Last Version

2.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

iron-label
WebJar for iron-label
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/PolymerElements/iron-label

Download iron-label

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-label/ -->
<dependency>
    <groupId>org.webjars.bowergithub.polymerelements</groupId>
    <artifactId>iron-label</artifactId>
    <version>2.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-label/
implementation 'org.webjars.bowergithub.polymerelements:iron-label:2.1.0'
// https://jarcasting.com/artifacts/org.webjars.bowergithub.polymerelements/iron-label/
implementation ("org.webjars.bowergithub.polymerelements:iron-label:2.1.0")
'org.webjars.bowergithub.polymerelements:iron-label:jar:2.1.0'
<dependency org="org.webjars.bowergithub.polymerelements" name="iron-label" rev="2.1.0">
  <artifact name="iron-label" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bowergithub.polymerelements', module='iron-label', version='2.1.0')
)
libraryDependencies += "org.webjars.bowergithub.polymerelements" % "iron-label" % "2.1.0"
[org.webjars.bowergithub.polymerelements/iron-label "2.1.0"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.bowergithub.polymer : polymer jar [1.9.0,3)

Project Modules

There are no modules declared in this project.

Published on NPM Build status Published on webcomponents.org

<iron-label>

<iron-label> provides a version of the <label> element that works with Custom Elements as well as native elements. All text in the iron-label will be applied to the target element as a screen-reader accessible description.

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/iron-label

In an html file

<html>
  <head>
    <script type="module">
      import '@polymer/iron-label/iron-label.js';
      import '@polymer/paper-button/paper-button.js';
    </script>
  </head>
  <body>
    <iron-label>Label for a button
      <paper-button>button</paper-button>
    </iron-label>

    <iron-label for="foo">Label for the foo button</iron-label>
    <paper-button id="foo">Another button</paper-button>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-label/iron-label.js';
import '@polymer/paper-button/paper-button.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <iron-label>Label for a button
        <paper-button>button</paper-button>
      </iron-label>

      <iron-label for="foo">Label for the foo button</iron-label>
      <paper-button id="foo">Another button</paper-button>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Contributing

If you want to send a PR to this element, here are the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/iron-label
cd iron-label
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm
org.webjars.bowergithub.polymerelements

Versions

Version
2.1.0