@advanced-rest-client/client-certificates-paneldeprecated

A view to render list of installed client certificates.

Usage no npm install needed!

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

README

Published on NPM

Build Status

Published on webcomponents.org

client-certificates-panel

A view that render list of client certificates installed in the application, allows to import new certificate, and delete existing.

Usage

Installation

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

In a LitElement

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

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

Data access

The element does not provide a way to access a data store as on different platform certificates may be stored in a different way. Because of that the element support events API that is consistent with @advanced-rest-client/arc-models/client-certificate-model.js.

Development

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

Running the demo locally

npm start

Running the tests

npm test

API components

This components is a part of API components ecosystem