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 🙏

© 2024 – Pkg Stats / Ryan Hefner

json-form-custom-element

v1.12.0

Published

JSON Schema based form generator

Downloads

19

Readme

json-form-custom-element

https://www.webcomponents.org/element/json-form-custom-element

<json-form
    schema='{"type":"string","title":"Hello","description":"A brief but helpful description of value","maxLength":5}'
    value='"world"'
></json-form>

Install

You can either use unpkg.com CDN

<script src="//unpkg.com/json-form-custom-element"></script>

or as a dependency, in es6

import 'json-form-custom-element'

Installation process uses customElements.define browser API (which supported by current FireFox and Chrome, it may require polyfill in other browsers).

Usage

<json-form schema='{}' value='{}' config='{}'></json-form>

Attributes:

  • schema, strinigified json schema, which may contain some additional ui specifications, see https://json-tools.github.io/json-form/ for example of schema configurations
  • value, strinigified json value
  • config, stringified json object which may contain these properties
    • dense: true | false (boolean) - choose between dense and regular layout
    • textFieldStyle: "outlined" | "filled" (string) - style of text fields
    • name: (string) - name of a form, should be unique on the page, used to generate unique ids of form elements
    • collapseNestedObjects: (boolean) - make nested json forms expandable (collapsed by default)
    • customCss: (string) - custom stylesheet, replaces builtin styling
    • showErrorIcon: (boolean) - whether to show inline error icon when validation fails (default true)

Events:

  • change: CustomEvent with detail { isValid: boolean, value, errors: { [path]: [string] }}

Styles:

  • --nested-object-padding: padding of a nested object, default 0px
  • --expandable-section-padding: padding of an expandable object, default 0 10px
  • --form-background: background of a form, default #fafafa
  • --font-family: font family for form elements, default helvetica, sans-serif
  • --color-active: color of active element, default #27b9cc
  • --color-inactive: color of inactive element, default #8a8a8a
  • --color-invalid: color of invalid element, default #c72227

JSON Schema

A few notes on how json schema interpeted by form generator.

Types

For the sake of simpliticy form generator uses a "type" keyword of JSON Schema in order to identify type of the field. When "type" keyword is an array or types or missing then value edited as json string. Boolean renders toggle, but can be customized to render a checkbox.

Title

Title rendered as label for terminal input fields (leaf nodes of the value), and as h3 headers for objects.

Required

Keyword required of object type used to identify whether to display * near the label. Optional text fields also have button to erase value displayed.

Contribution

Main json-form repository is here: https://github.com/json-tools/json-form please report all bugs there. Issues are disabled in this project.