@advanced-rest-client/export-paneldeprecated

Data export panel for Advanced REST Client.

Usage no npm install needed!

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

README

Published on NPM

Build Status

Published on webcomponents.org

export-panel

Data export panel for Advanced REST Client.

The panel works with @advanced-rest-client/arc-data-export element to prepare the data. See it's documentation for proper file events handling.

<export-panel></export-panel>

API components

This components is a part of API components ecosystem

Usage

Installation

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

In an html file

<html>
  <head>
    <script type="module">
      import '@advanced-rest-client/export-panel/export-panel.js';
    </script>
  </head>
  <body>
    <export-panel></export-panel>
  </body>
</html>

In a LitElement template

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

class SampleElement extends LitElement {
  render() {
    return html`<export-panel></export-panel>`;
  }
}
customElements.define('sample-element', SampleElement);

Development

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

Running the demo locally

npm start

Running the tests

npm test