iron-demo-helpers

WebJar for iron-demo-helpers

License

License

BSD 3-Clause
GroupId

GroupId

org.webjars.bowergithub.polymerelements
ArtifactId

ArtifactId

iron-demo-helpers
Last Version

Last Version

2.1.2
Release Date

Release Date

Type

Type

jar
Description

Description

iron-demo-helpers
WebJar for iron-demo-helpers
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/PolymerElements/iron-demo-helpers

Download iron-demo-helpers

How to add to project

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

Dependencies

compile (6)

Group / Artifact Type Version
org.webjars.bowergithub.polymerelements : font-roboto jar [1.0.0,2)
org.webjars.bowergithub.polymerelements : marked-element jar [1.0.0,3)
org.webjars.bowergithub.polymer : polymer jar [1.9.0,3)
org.webjars.bowergithub.polymerelements : iron-flex-layout jar [1.0.0,3)
org.webjars.bowergithub.polymerelements : prism-element jar [1.0.0,3)
org.webjars.bowergithub.polymerelements : iron-location jar [1.0.0,3)

Project Modules

There are no modules declared in this project.

Published on NPM Build status Published on webcomponents.org

<demo-snippet>

demo-snippet is a helper element that displays the source of a code snippet and its rendered demo. It can be used for both native elements and Polymer elements.

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/iron-demo-helpers

In an html file

<html>
  <head>
    <script type="module">
      import '@polymer/iron-demo-helpers/demo-snippet.js';
      import '@polymer/paper-checkbox/paper-checkbox.js';
    </script>
  </head>
  <body>
    <demo-snippet>
      <template>
        <input type="date">
        <paper-checkbox>Checkbox</paper-checkbox>
      </template>
    </demo-snippet>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-demo-helpers/demo-snippet.js';
import '@polymer/paper-checkbox/paper-checkbox.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <demo-snippet>
        <template>
          <input type="date">
          <paper-checkbox>Checkbox</paper-checkbox>
        </template>
      </demo-snippet>
    `;
  }
}
customElements.define('sample-element', SampleElement);

<url-bar>

url-bar is a helper element that displays a simple read-only URL bar if and only if the page is in an iframe. In this way we can demo elements that deal with the URL in our iframe-based demo environments.

If the page is not in an iframe, the url-bar element is not displayed.

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-demo-helpers
cd iron-demo-helpers
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

If you add a script type="module" inside a demo-snippet, the demo will not be functional on non-module browsers (like IE11). If you need to use a script type="module" and want to display its code in the demo-snippet, a possible workaround is to duplicate the contents of the script outside of the demo-snippet -- that way polymer serve (or whatever solution you're using to ES5-ify the code) will convert the main document module to UMD, but will leave the displayed code untouched. Here is an example:

<body>
  <demo-snippet>
    <template>
      ...
      <script type="module">
        import {SomeExport} from '../foo.js';
        SomeExport.aFunction();
      </script>
    </template>
  </demo-snippet>

  <!-- Hack: on non-module browsers the demo-snippet script doesn't
    do anything, so add the content here again to make sure the demo works -->
  <script type="module">
    import {SomeExport} from '../foo.js';
    SomeExport.aFunction();
  </script>
</body>
org.webjars.bowergithub.polymerelements

Versions

Version
2.1.2
2.1.1
2.0.0