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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@uncharted.software/jsonforms-primevue

v1.3.4

Published

Vue 3 renderer set for JSON Forms (jsonforms.io) using PrimeVue 4

Readme

jsonforms-primevue

Motivation

The JSONForms.io packages include integrations for vanilla HTML and Vuetify, but we needed PrimeVue. In addition, we needed to support other new options such as:

  • Display-only mode: Rather than just 'disabling' the control, we want to display the control as a read-only text display
    • Allows JSONForms to be used not only to describe Input forms, but also to describe Output displays
  • Label controls as captioned images
  • Description display (always, tooltip)
  • Layout options (default, space-between)
  • Number control options (step, prefix, suffix)
  • Date/Time control options (hourFormat)

Installation

yarn add @uncharted.software/jsonforms-primevue @jsonforms/core @jsonforms/vue primevue primeflex

Usage

A runnable example playground application for live editing is available:

yarn dev

In your own app, import and add the ranked renderer configurations and supply them to the JSON Forms component. i.e.:

<script lang="ts">
import { JsonForms } from "@jsonforms/vue";
import primeVueRenderers from "@uncharted.software/jsonforms-primevue";
import "@uncharted.software/jsonforms-primevue/style.css";
import PrimeVue from 'primevue/config';
import Tooltip from 'primevue/tooltip';

// Important: Register the PrimeVue tooltip directive for description tooltips to work
app.use(PrimeVue);
app.directive('tooltip', Tooltip);

// defineComponent(...
</script>    
    
<template>
    <JsonForms
        :data="exampleData"
        :renderers="primeVueRenderers"
        :schema="dataSchema"
        :uischema="uiSchema"
        @change="onFormChanged" 
    /> 
</template>

For detailed documentation on all available components, options, and customization features, please refer to the Documentation.

Roadmap / TODO

  • [ ] Basic controls for all types
    • [x] String input
    • [x] Number & Integer Input
      • [x] Min/Max range support
      • [x] Step support
      • [x] Prefix/Suffix support
      • [ ] As-slider support
    • [ ] Enum
      • [x] as strings
      • [x] as dropdown
      • [ ] as oneOf (to support value vs label for each item)
      • [x] as 'radio' option
    • [x] Boolean (checkbox)
    • [ ] Date
    • [x] Date-Time
    • [x] Label placement options (float | left | right)
    • [x] Description display & options (always | tooltip)
  • [ ] Categories/Category layout renderer
  • [x] Group Layout renderer (with toggleable option to render as an accordion)
  • [x] HorizontalLayout / VerticalLayout styling
    • [ ] Wrap/no-wrap or grid type support
  • [x] Tables
  • [ ] Error / invalid state feedback
  • [x] Rules
    • [x] Disable
    • [x] Visibility
  • [x] Image display (option on Label)

2026-07-08