@advanced-rest-client/export-optionsdeprecated

Export options dialog for ARC

Usage no npm install needed!

<script type="module">
  import advancedRestClientExportOptions from 'https://cdn.skypack.dev/@advanced-rest-client/export-options';
</script>

README

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