iron-a11y-announcer

WebJar for iron-a11y-announcer

License

License

BSD 3-Clause
GroupId

GroupId

org.webjars.bowergithub.polymerelements
ArtifactId

ArtifactId

iron-a11y-announcer
Last Version

Last Version

2.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

iron-a11y-announcer
WebJar for iron-a11y-announcer
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/PolymerElements/iron-a11y-announcer

Download iron-a11y-announcer

How to add to project

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

Dependencies

compile (1)

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

Project Modules

There are no modules declared in this project.

Published on NPM Build status Published on webcomponents.org

<iron-a11y-announcer>

iron-a11y-announcer is a singleton element that is intended to add a11y to features that require on-demand announcement from screen readers. In order to make use of the announcer, it is best to request its availability in the announcing element. Note: announcements are only audible if you have a screen reader enabled.

See: Documentation, Demo

Usage

Installation

npm install --save @polymer/iron-a11y-announcer

In an html file

<html>
  <head>
    <script type="module">
      import {IronA11yAnnouncer} from '@polymer/iron-a11y-announcer/iron-a11y-announcer.js';
      // Initialize the announcer.
      IronA11yAnnouncer.requestAvailability();

      // Note: announcements are only audible if you have a screen reader enabled.
      IronA11yAnnouncer.instance.fire('iron-announce',
          {text: 'Hello there!'}, {bubbles: true});
    </script>
  </head>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import {IronA11yAnnouncer} from '@polymer/iron-a11y-announcer/iron-a11y-announcer.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <button on-click="announce">Announce</button>
    `;
  }
  function attached() {
    IronA11yAnnouncer.requestAvailability();
  }

  // After the `iron-a11y-announcer` has been made available, elements can
  // make announces by firing bubbling `iron-announce` events.
  // Note: announcements are only audible if you have a screen reader enabled.
  function announce() {
    IronA11yAnnouncer.instance.fire('iron-announce',
        {text: 'Hello there!'}, {bubbles: true});
  }
}
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-a11y-announcer
cd iron-a11y-announcer
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

Known Issues

This element doesn't work on Firefox (it doesn't read anything in Voice Over), since aria-live has been broken since the Quantum redesign (see the MDN docs demo) -- we tested it on Firefox 60, but it doesn't look like a regression, so it's probably broken on older versions as well.

org.webjars.bowergithub.polymerelements

Versions

Version
2.1.0
2.0.0
1.0.6