3.2.0 • Published 5 years ago

@advanced-rest-client/export-options v3.2.0

Weekly downloads
13
License
Apache-2.0
Repository
github
Last release
5 years ago

Published on NPM

Build Status

export-options

Export options dialog for ARC

Example

<export-options></export-options>

API components

This components is a part of API components ecosystem

Usage

Installation

npm install --save @advanced-rest-client/export-options

In a LitElement

import { LitElement, html } from 'lit-element';
import '@advanced-rest-client/export-options/export-options.js';

class SampleElement extends LitElement {
  render() {
    return html`
    <export-options @accept="${this._export}"></export-options>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Development

git clone https://github.com/advanced-rest-client/export-options
cd export-options
npm install

Running the demo locally

npm start

Running the tests

npm test