2.7.1 • Published 4 years ago

g-element v2.7.1

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Published on NPM

G-ELEMENT

A collection of elements used by Authentic System Solutions.

Elements

Usage

Installation

npm install --save g-element

In an html file

<html>
  <head>
    <script type="module">
      import 'g-element/elements/my-element.js';
    </script>
  </head>
  <body>
    <my-element></my-element>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import 'g-element/elements/my-element.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
     <my-element></my-element>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Viewing Your Element

polymer serve
2.7.1

4 years ago

2.7.0

5 years ago

2.6.1

5 years ago

2.6.0

5 years ago

2.5.2

5 years ago

2.5.1

5 years ago

2.5.0

5 years ago

2.4.0

5 years ago

2.3.0

5 years ago

2.2.0

5 years ago

2.1.0

5 years ago

2.0.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago