Socket
Socket
Sign inDemoInstall

@api-components/api-type-document

Package Overview
Dependencies
40
Maintainers
4
Versions
61
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @api-components/api-type-document

A documentation table for type (resource) properties. Works with AMF data model


Version published
Weekly downloads
140
decreased by-7.89%
Maintainers
4
Install size
6.23 MB
Created
Weekly downloads
 

Readme

Source

DEPRECATED

This component is being deprecated. The code base has been moved to api-documentation module. This module will be archived when PR 37 is merged.


A documentation table for RAML type / OAS schema properties. Works with AMF data model.

Version compatibility

This version only works with AMF model version 2 (AMF parser >= 4.0.0). For compatibility with previous model version use 3.x.x version of the component.

Styling

<api-type-document> provides the following custom properties and mixins for styling:

Custom propertyDescriptionDefault
--api-type-documentMixin applied to this element{}
--api-type-document-union-button-background-colorBackground color of union selector button#fff
--api-type-document-union-button-colorColor of union selector button#000
--api-type-document-union-button-active-background-colorBackground color of active union selector button#CDDC39
--api-type-document-union-button-active-colorColor of active union selector button#000

From property-shape-document

Custom propertyDescriptionDefault
--property-shape-documentMixin applied each property element{}
--property-shape-document-array-colorProperty border color when type is an array#8BC34A
--property-shape-document-object-colorProperty border color when type is an object#FF9800
--property-shape-document-union-colorProperty border color when type is an union#FFEB3B
--arc-font-subheadTheme mixin, applied to the property title{}
--property-shape-document-titleMixin applied to the property title{}
--api-type-document-property-parent-colorColor of the parent property label#757575
--api-type-document-property-colorColor of the property name label when display name is used#757575
--api-type-document-child-docs-margin-leftMargin left of the item's properties description relative to the title when the item is a child property of another property24px
--api-type-document-type-colorColor of the "type" traitwhite
--api-type-document-type-background-colorBackground color of the "type" trait#2196F3
--api-type-document-trait-background-colorBackground color to main range trait (type, required, enum)#EEEEEE,
--api-type-document-trait-border-radiusBorder radius of a main property traits like type, required, enum3px

From property-range-document

Custom propertyDescriptionDefault
--property-range-documentMixin applied to this element{}
--api-type-document-type-attribute-colorColor of each attribute that describes a property#616161
--api-type-document-examples-title-colorColor of examples section title``
--api-type-document-examples-border-colorExample section border colortransparent
--code-background-colorBackground color of the examples section``
--arc-font-body1Mixin applied to an example name label{}
--arc-font-body2Mixin applied to the examples section title{}

Usage

Installation

npm install --save @api-components/api-type-document

In an html file

<html>
  <head>
    <script type="module">
      import '@api-components/api-type-document/api-type-document.js';
    </script>
  </head>
  <body>
    <api-type-document></api-type-document>
  </body>
</html>

In a LitElement

import { LitElement, html } from 'lit-element';
import '@api-components/api-type-document/api-type-document.js';

class SampleElement extends PolymerElement {
  render() {
    return html`
    <api-type-document .amf="${this.amf}"></api-type-document>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Development

git clone https://github.com/advanced-rest-client/api-type-document
cd api-type-document
npm install

Running the demo locally

npm start

Running the tests

npm test

Keywords

FAQs

Last updated on 07 Feb 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc