JSPM

  • Created
  • Published
  • Downloads 11080
  • Score
    100M100P100Q144324F
  • License BSD-3-Clause

Organizes a set of pages and shows one at a time

Package Exports

  • @polymer/iron-pages
  • @polymer/iron-pages/iron-pages
  • @polymer/iron-pages/iron-pages.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@polymer/iron-pages) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Published on NPM Build status Published on webcomponents.org

<iron-pages>

iron-pages is used to select one of its children to show. One use is to cycle through a list of children "pages".

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/iron-pages

In an HTML file

<html>
  <head>
    <script type="module">
      import '@polymer/iron-pages/iron-pages.js';
    </script>
  </head>
  <body>
    <iron-pages selected="0">
      <div>Page 0</div>
      <div>Page 1</div>
      <div>Page 2</div>
      <div>Page 3</div>
    </iron-pages>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';

import '@polymer/iron-pages/iron-pages.js';

class ExampleElement extends PolymerElement {
  static get template() {
    return html`
      <iron-pages selected="0">
        <div>Page 0</div>
        <div>Page 1</div>
        <div>Page 2</div>
        <div>Page 3</div>
      </iron-pages>
    `;
  }
}

customElements.define('example-element', ExampleElement);

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-pages
cd iron-pages
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