npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

wc-dox

v1.0.3

Published

A web component API documentation generator

Downloads

476

Readme

Web Component Documentation (wc-dox)

The wc-dox package and it's components are designed to be a way to quickly and consistently document your custom element APIs using the Custom Elements Manifest.

If you're not already generating a Custom Elements Manifest, here is a list of options you can use to generate one.

demo of documentation output

Open in StackBlitz

Installation

npm i wc-dox

Usage

After installing, you can load the documentation at the root of your project.

import { setWcDoxConfig } from 'wc-dox/index.js';
import manifest from './custom-elements.json' with { type: json };

setWcDoxConfig(manifest);

Now that it's loaded, you can load the appropriate documentation by passing the component's tag name or class name to the component.

<wc-dox tag="my-element"></wc-dox>

<!-- or -->

<wc-dox component-name="MyElement"></wc-dox>

Content is in the Light DOM

The content generated by these components is all render in the light DOM so that styles can be easily inherited from the rest of your application or so that customizations can easily be applied.

Flexible Implementation

The <wc-dox> element should be all that you need, but if you eed more flexibility, each of the sections can also be used independently as individual components.

<!-- CSS Parts docs -->
<wc-css-parts tag="my-element"></wc-css-parts>

<!-- CSS Custom Properties docs -->
<wc-css-props tag="my-element"></wc-css-props>

<!-- CSS Custom States docs -->
<wc-css-states tag="my-element"></wc-css-states>

<!-- Events docs -->
<wc-events tag="my-element"></wc-events>

<!-- Imports docs -->
<wc-imports tag="my-element"></wc-imports>

<!-- Methods docs -->
<wc-methods tag="my-element"></wc-methods>

<!-- Attributes and Properties docs -->
<wc-props tag="my-element"></wc-props>

<!-- Slots docs -->
<wc-slots tag="my-element"></wc-slots>

Configuration

The setWcDoxConfig function can take a second parameter to configure the documentation.

The <wc-dox> and <wc-imports> components have unique configurations, but the others follow a consistent API.

import { setWcDoxConfig, DoxConfig } from 'wc-dox/index.js';
import manifest from './custom-elements.json' with { type: json };

const options: DoxConfig = {};

setWcDoxConfig(manifest, options);
type DoxConfig = {
  /** Configures the heading level for the API sections - default is 3 */
  headingLevel?: 1 | 2 | 3 | 4 | 5 | 6;
  /** Configures the `wc-dox` component contents */
  dox?: DoxElementConfig;
  /** Configures the `wc-imports` component contents */
  imports?: ImportsElementConfig;
  /** Configures the `wc-css-parts` component contents */
  cssParts?: CssPartsElementConfig;
  /** Configures the `wc-css-props` component contents */
  cssProps?: CssPropsElementConfig;
  /** Configures the `wc-states` component contents */
  cssStates?: StatesElementConfig;
  /** Configures the `wc-events` component contents */
  events?: EventsElementConfig;
  /** Configures the `wc-methods` component contents */
  methods?: MethodsElementConfig;
  /** Configures the `wc-props` component contents */
  props?: PropsElementConfig;
  /** Configures the `wc-slots` component contents */
  slots?: SlotsElementConfig;
};

Heading Level

The headingLevel setting controls the heading level for each of the sections of the API sections.

Dox Element Config

The <wc-dox> element works as a wrapper for the API components. The apiOrder setting controls the order in which the API sections are rendered. If you do not want a section to render at all, you can exclude it from the array.

type DoxElementConfig = {
  /**
   * Controls the order in which the API documentation sections are displayed
   *
   * Default value is ['imports', 'props', 'slots', 'methods', 'events', 'css-props', 'css-parts', 'css-states']
   */
  apiOrder?: Array<
    | 'imports'
    | 'props'
    | 'slots'
    | 'methods'
    | 'events'
    | 'css-props'
    | 'css-parts'
    | 'css-states'
  >;
};

Imports Element Config

The imports element is a way for you to document the various ways to import your components. Each of the imports will be displayed in it's own tab.

type ImportsElementConfig = {
  /** The heading for the imports section */
  heading?: string;
  /** The ID used for the skip-link */
  headingId?: string;
  /** The description for the imports section */
  description?: string;
  /** The copy button icon */
  copyIcon?: string;
  /** The copy button label */
  copyLabel?: string;
  /** The icon displayed when the content is copied */
  copiedIcon?: string;
  /** The label used when the content is copied */
  copiedLabel?: string;
  /** The list of import options */
  imports?: ImportConfig[];
};

type ImportConfig = {
  /** The text displayed in the tab option */
  label?: string;
  /** The language the code - `html`, `js`, `ts`, etc. */
  lang?: string;
  /** An additional description that is specific to this import */
  description?: string;
  /**
   * Use this function to specify import information for a given language. The tag and class names can be used to create dynamic component-specific import paths.
   * @param tagName The tag name specified using the @tag or @tagName in the component's jsDoc
   * @param className The JS class name for the component
   * @returns string
   */
  importTemplate?: (tagName: string, className: string) => string;
};

Here's a sample configuration:

imports: {
  heading: 'Imports',
  headingId: 'imports',
  description: 'You can import the component in the following ways:',
  copyIcon:
    '<?xml version="1.0" ?><svg style="enable-background:new 0 0 24 24;" version="1.1" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g class="st0" id="grid_system"/><g id="_icons"><path d="M17,3h-6C8.8,3,7,4.8,7,7c-2.2,0-4,1.8-4,4v6c0,2.2,1.8,4,4,4h6c2.2,0,4-1.8,4-4c2.2,0,4-1.8,4-4V7C21,4.8,19.2,3,17,3z    M15,17c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2v-6c0-1.1,0.9-2,2-2h1h5c1.1,0,2,0.9,2,2v5V17z M19,13c0,1.1-0.9,2-2,2v-4   c0-2.2-1.8-4-4-4H9c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V13z"/></g></svg>',
  copyLabel: 'Copy import',
  copiedIcon:
    '<?xml version="1.0" ?><svg style="enable-background:new 0 0 36 36;" version="1.1" viewBox="0 0 36 36" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="Layer_1"/><g id="icons"><path class="st0" d="M12.8,28.7l-9.5-9.5c-0.4-0.4-0.4-1.1,0-1.6l1.5-1.5c0.4-0.4,1.1-0.4,1.6,0l7.2,7.2   l16-16c0.4-0.4,1.1-0.4,1.6,0l1.5,1.5c0.4,0.4,0.4,1.1,0,1.6L14.4,28.7C13.9,29.1,13.2,29.1,12.8,28.7z" id="check_x5F_mark_1_"/></g></svg>',
  copiedLabel: 'Import copied',
  imports: [
    {
      label: 'HTML',
      lang: 'html',
      importTemplate: (tagName, className) =>
        `<script type="module" src="https://cdn.jsdelivr.net/npm/my-library/dist/${tagName}/${className}.js"></script>`,
    },
    {
      label: 'NPM',
      lang: 'js',
      importTemplate: (tagName, className) =>
        `import 'my-library/dist/${tagName}/${className}.js';`,
    },
    {
      label: 'React',
      lang: 'js',
      importTemplate: tagName =>
        `import 'my-library/react/${tagName}/index.js';`,
    },
  ],
},

Base Config

The other API blocks use the generic BaseElementConfig<T> type and follow a consistent pattern for documenting the APIs from the custom element manifest.

type BaseElementConfig<T> = {
  /** The heading for the section */
  heading?: string;
  /** The ID used for the skip-link */
  headingId?: string;
  /** The label used for the skip-link */
  skipLinkLabel?: string;
  /** The description for the section */
  headings?: string[];
  /** The description for the section */
  description?: string;
  /** The table row template for the section */
  rowTemplate?: (x: T) => string;
};

Markdown Support

Many of the JSDoc comments support markdown. To parse markdown in these API blocks, you can use the markdownToHtml utility helper provided by this project or you can install and use your own.

CSS Parts Element Config

type CssPart = cem.CssPart & Record<string, any>;
type CssPartsElementConfig = BaseElementConfig<CssPart>;

The default value for this is:

cssParts: {
  heading: 'CSS Parts',
  headingId: 'css-parts',
  skipLinkLabel: 'Skip to CSS parts',
  description:
    'The following [CSS shadow parts](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_shadow_parts) are available to customize the component:',
  headings: ['Name', 'Description', 'Deprecated'],
  rowTemplate: cssPart =>
    `<tr>
      <td><p><code>${cssPart.name}</code></p></td>
      <td>${markdownToHtml(cssPart.description || '')}</td>
      <td style="text-align: center;">${cssPart.deprecated ? '✔️' : ''}</td>
    </tr>`,
},

CSS Props Element Config

type CssPropsElementConfig = BaseElementConfig<CssProp>;
type CssProp = cem.CssCustomProperty & Record<string, any>;

The default value for the CSS Custom Properties Element is:

cssProps: {
  heading: 'CSS Custom Properties',
  headingId: 'css-props',
  skipLinkLabel: 'Skip to CSS custom properties',
  description:
    'You can use [CSS custom properties](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) to customize the look and feel of the component using the following properties:',
  headings: ['Name', 'Default', 'Description', 'Deprecated'],
  rowTemplate: cssVar =>
    `<tr>
      <td><p><code>${cssVar.name}</code></p></td>
      <td><p><code>${cssVar.default}</code></p></td>
      <td>${markdownToHtml(cssVar.description || '')}</td>
      <td style="text-align: center;">${cssVar.deprecated ? '✔️' : ''}</td>
    </tr>`,
},

Events Element Config

type EventsElementConfig = BaseElementConfig<Event>;
type Event = cem.Event & Record<string, any>;

The default value for the Events Element is:

events: {
  heading: 'Events',
  headingId: 'events',
  skipLinkLabel: 'Skip to events',
  description:
    'The following [events](https://developer.mozilla.org/en-US/docs/Web/Events/Creating_and_triggering_events) are emitted by the component:',
  headings: ['Name', 'Type', 'Description', 'Deprecated'],
  rowTemplate: event =>
    `<tr>
      <td><p><code>${event.name}</code></p></td>
      <td><p><code>${event.type.text === 'CustomEvent' ? 'CustomEvent' : `CustomEvent&lt;${event.type.text}&gt;`}</code></p></td>
      <td>${markdownToHtml(event.description || '')}</td>
      <td style="text-align: center;">${event.deprecated ? '✔️' : ''}</td>
    </tr>`,
},

Methods Element Config

type MethodsElementConfig = BaseElementConfig<Method>;
type Method = cem.ClassMethod & Record<string, any>;

The default value for the Methods Element is:

methods: {
  heading: 'Methods',
  headingId: 'methods',
  skipLinkLabel: 'Skip to methods',
  description: 'The following CSS parts are available:',
  headings: ['Name', 'Description', 'Deprecated'],
  rowTemplate: method =>
    `<tr>
      <td><p><code>${method.name}(${method.parameters?.map(p => `${p.name + (p.type?.text ? `: ${p.type?.text}` : '')}`).join(', ') || ''}) => ${method.return?.type?.text || 'void'}</code></p></td>
      <td>${markdownToHtml(method.description || '')}</td>
      <td style="text-align: center;">${method.deprecated ? '✔️' : ''}</td>
    </tr>`,
},

Props Element Config

type PropsElementConfig = BaseElementConfig<Property>;
type Method = cem.ClassMethod & Record<string, any>;

The default value for the Props Element is:

props: {
  heading: 'Attributes and Properties',
  headingId: 'props',
  skipLinkLabel: 'Skip to attributes and properties',
  description: 'The following Properties and Attributes are available:',
  headings: [
    'Name',
    'Attribute',
    'Description',
    'Type',
    'Default',
    'Read-only',
    'Deprecated',
  ],
  rowTemplate: prop =>
    `<tr>
      <td><p><code>${prop.name}</code></p></td>
      <td><p><code>${prop.attribute || ''}</code></p></td>
      <td>${markdownToHtml(prop.description || '')}</td>
      <td><p><code>${prop.type?.text || ''}</code></p></td>
      <td><p><code>${prop.default}</code></p></td>
      <td style="text-align: center;">${prop.readonly ? '✔️' : ''}</td>
      <td style="text-align: center;">${prop.deprecated ? '✔️' : ''}</td>
    </tr>`,
},

Slots Element Config

type SlotsElementConfig = BaseElementConfig<Slot>;
type Slot = cem.Slot & Record<string, any>;

The default value for the Slots Element is:

slots: {
  heading: 'Slots',
  headingId: 'slots',
  skipLinkLabel: 'Skip to slots',
  description: 'The following slots are available:',
  headings: ['Name', 'Description', 'Deprecated'],
  rowTemplate: slot =>
    `<tr>
      <td><p><code>${slot.name || '<em>(default)</em>'}</code></p></td>
      <td>${markdownToHtml(slot.description || '')}</td>
      <td style="text-align: center;">${slot.deprecated ? '✔️' : ''}</td>
    </tr>`,
},

CssStatesElementConfig

type CssStatesElementConfig = BaseElementConfig<CssState>;
type CssState = cem.CssCustomState & Record<string, any>;

The default value for the CSS States Element is:

cssStates: {
  heading: 'CSS States',
  headingId: 'css-states',
  skipLinkLabel: 'Skip to CSS states',
  description:
    'The following [CSS states](https://developer.mozilla.org/en-US/docs/Web/CSS/:state) can be used to customize component styles:',
  headings: ['Name', 'Description', 'Deprecated'],
  rowTemplate: state =>
    `<tr>
      <td><p><code>${state.name}</code></p></td>
      <td>${markdownToHtml(state.description || '')}</td>
      <td style="text-align: center;">${state.deprecated ? '✔️' : ''}</td>
    </tr>`,
},