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

@methodexists/me-schema-form

v0.3.1

Published

me-schema-form description

Downloads

2

Readme

me-schema-form

Pack of components to represent data provided by me-core.

Usage

Describe usage.

Examples

Provide examples.

API

<Field /> props

| Prop | Type | Default | Description | -------- | ------ | ----------- | ------------ | isEnum | bool | false | If field’s schema has enum property then Field will use Select component with enum values as options | getValue | func | undefined | Allows to use custom value getter. Accepts record, pathPrefix, path. | * | * | * | TODO: describe the rest of the props

Field components

RichEditor

<Field path="..." component="richEditor" />

Will use me-rich-editor to render the field.
You may provide me-rich-editor props into <Field />:

<Field path="bio" component="richEditor" onImageUpload={handleImageUpload} />

<SchemaForm /> props

| Prop | Type | Default | Description |------------------------|------|---------|------------ | showSpinnerWhenLoading | bool | true | Set this to false to turn off spinner on form. It’s usefult when you have a spinner on parent component | * | * | * | TODO: describe the rest of the props

<AddItemModal /> props

| Prop | Type | Default | Description | ------------------ | -------- | ----------- | ------------- | *namespace | string | | | *table | string | | | primaryKey | string | 'id' | | defaultValues | object | {} | To prefill the record | addItemTitle | string | undefined | Text to show in button and modal titles. If undefined then 'App.generic.new' message from locales is used. | addItemButtonProps | object | undefined | Override any prop in add button | onSubmit | func | undefined | Called after succesful result from the server. Provides server response as an argument

<FormFooter /> props

| Prop | Type | Default | Description |-----------------|--------|-----------|------------- | saveButtonProps | object | undefined | Override any prop in save button | onSubmit | func | undefined | Called after succesful result from the server. Provides server response as an argument | * | * | * | TODO: describe the rest of the props

<Multiple /> props

| Prop | Type | Default | Description | --------- | -------- | ----------- | ----------- | getNewItem | func | undefined | Recevies record and path and should return item to add into array. If undefined {} will be added | * | * | * | TODO: describe the rest of the props

<MultipleTable /> props

| Prop | Type | Default | Description | ---------- | -------- | ----------- | ----------- | tableTitle | string | undefined | Set to override table title which will be read from schema by default | getNewItem | func | undefined | Recevies record and path and should return item to add into array. If undefined {} will be added | tableProps | object | undefined | Props to pass into underlying Ant Table component | * | * | * | TODO: describe the rest of the props

<ReferenceSelect /> props

| Prop | Type | Default | Description | ------------- | ------ | -------- | ------------ | filterByField | string | 'name' | The value of that field of option will be used for filter | * | * | * | TODO: describe the rest of the props

Contributing

See CONTRIBUTING.md for how to develop a component.