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

@nextmoe/edit-ui-vue

v0.2.0

Published

NextMoe edit-ui Vue 3 layer — the schema-driven edit form, the per-field controls, the diff/review/timeline views. Composes @kungal/ui-vue; ships zero CSS of its own.

Readme

@nextmoe/edit-ui-vue

The Vue 3 layer of the NextMoe edit-ui family — a schema-driven edit form, its per-field controls, and the diff / proposal / revision views.

Composes KunUI (@kungal/ui-vue) and ships no CSS of its own.

pnpm add @nextmoe/edit-ui-vue @nextmoe/edit-ui-core
# peers: vue ^3.5, @kungal/ui-vue ^2.26.2

In a Nuxt app, prefer @nextmoe/edit-ui-nuxt, which auto-imports all of these under a configurable prefix.

Components

| Export | What it renders | | ------------------ | ------------------------------------------------------------------------- | | SchemaForm | The whole form: groups → sections (stack or tabs), emits update:patch. | | SchemaField | One field; picks the control from the schema + config. | | ObjectListField | Repeating rows of typed columns. | | ImageField | Single or multi image upload, drag-sort, pin flag. | | EntityPicker | Search-and-pick entity references. | | EntityKindPicker | Entity references that also carry a kind. | | SourceContext | The read-only "this came from upstream" strip under a field. | | FieldDiff | One field's before/after, routed by diff_hint. | | TextDiff | Word-level text diff with elision of long unchanged runs. | | ImageDiff | Only the pictures that changed, never the whole gallery. | | ProposalCard | One edit proposal. | | ReviewQueue | Proposals by status, with an item slot. | | RevisionTimeline | Revisions, two-way selection, emits diff. | | Time | Minimal relative/absolute timestamp used by the two views above. |

EDIT_UI_COMPONENT_NAMES is the list the Nuxt module iterates; a new component must be added there too.

Injected functions

Nothing here talks to a backend. EditFieldConfig carries the site's functions: uploadImage, resolveImage, searchEntities, resolveEntities. Omit uploadImage and the image field renders read-only; omit searchEntities and the entity pickers do not render as pickers.

Unknown controls degrade

SchemaField renders an unrecognised control as read-only text/JSON rather than throwing or offering an input the site cannot save. See SchemaField.spec.ts.

Styling

Every class is a KunUI semantic token, so the host app's Tailwind build must scan this package:

@source '../../node_modules/@nextmoe/edit-ui-vue';

License

AGPL-3.0-only.