Socket
Book a DemoInstallSign in
Socket

@advanced-rest-client/arc-data-settings-panel

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@advanced-rest-client/arc-data-settings-panel

A user data related settings panel

latest
Source
npmnpm
Version
3.0.0-preview.2
Version published
Weekly downloads
3
200%
Maintainers
1
Weekly downloads
 
Created
Source

Published on NPM

Build Status

Published on webcomponents.org

<arc-data-settings-panel>

A user data related settings panel for Advanced REST Client.

<arc-data-settings-panel></arc-data-settings-panel>

API components

This components is a part of API components ecosystem

Usage

Installation

npm install --save @advanced-rest-client/arc-data-settings-panel

In an html file

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

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@advanced-rest-client/arc-data-settings-panel/arc-data-settings-panel.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
    <arc-data-settings-panel rest-apis></arc-data-settings-panel>
    `;
  }

  _authChanged(e) {
    console.log(e.detail);
  }
}
customElements.define('sample-element', SampleElement);

Installation

git clone https://github.com/advanced-rest-client/arc-data-settings-panel
cd api-url-editor
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

Keywords

web-components

FAQs

Package last updated on 06 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts