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

@ruc-lib/metaform

v2.0.1

Published

The main aim of meta forms is to make forms based on JSON along with validation support, dependent fields, custom theming etc.

Downloads

121

Readme

ruclib-metaform

The main aim of meta forms is to make forms based on JSON along with validation support, dependent fields, custom theming etc.

RUC Library Installation Guide

Users can easily install the RUC (Ruxptest Library) from npm. Additionally, they can also choose to install individual components based on their requirements. Install RUC Library.

To install the entire RUC library:

npm install @uxpractice/ruc-lib

Install Individual Components

If users only need the metaform component, they can install it separately:

npm install @ruc-lib/metaform

Usage

To use the metaform component in your project, follow the integration guidelines provided in the documentation. Customize the metaform as per your requirements by adjusting the configuration options mentioned below.

Import from RUC Library

If you want to use metaform from RUC library then import into app.module.ts like -

import "@uxpractice/ruc-lib/metaform".

If you installed metaform as a individual component then import like -

import "@ruc-lib/metaform"

Then add RuclibMetaformModule into import array.

Then use the metaform selector in your HTML file.

<uxp-ruclib-metaform [rucInputData]="formData" [customTheme]="customTheme"
(rucEvent)="passEvent($event)"></uxp-ruclib-metaform>

Input and Output

Inputs: • rucInputData: Data to be passed to the metaform. • customTheme: Custom styling/theme for the metaform.

Outputs: • rucEvent: Event emitted from the metaform.

rucInputData configurations options-

{
    formType?: 'simple' | 'stepper' // less priority    
    inputType: 'text' | 'password' | 'button' | 'checkbox' | 'email' | 'color' | 'date' | 'file' | 'hidden' | 'image' | 'radio' | 'number' | 'range'    | 'reset' | 'search' | 'submit' | 'time' | 'tel' | 'url' | 'week' | 'month' | 'number' | 'custom' | 'select' | 'rucMultiFileUpload' | 'rucMultiSelect',
    fieldType: string,
    id?: string,
    errorMsg? : boolean,
    name?: string,
    label?: string,
    value?: any,
    className?: string, // to be check    value?: string, //Specifies the default value for an input field    src?: string,
    alt?: string,
    appearance?: string,
    min?: string, //Specifies the minimum value for an input field    
    max?: string, //Specifies the maximum value for an input field    
    width?: string, // like for image    
    height?: string, // like for image    
    checked?: boolean, //Specifies that an input field should be pre-selected when the page loads (for type="checkbox" or type="radio")    
    disabled?: boolean, //Specifies that an input field should be disabled    
    maxlength?: string, //Specifies the maximum number of character for an input field    
    readonly?: boolean, //Specifies that an input field is read only (cannot be changed)    
    required?: boolean, //Specifies that an input field is required (must be filled out)    
    size?: string, //Specifies the width (in characters) of an input field    
    step?: string, //Specifies the legal number intervals for an input field   
    sameRow? : boolean, 
    sameRowColumnWidth? : string, 
    tooltip? : string,
    tooltipPosition? : string, //'after', 'before', 'above', 'below', 'left', 'right'
    pattern? : any, // The input pattern attribute specifies a regular expression that the input field's value is checked against, when the form is submitted. The pattern attribute works with the following input types: text, date, search, url, tel, email, and password.    
    placeholder?: any,
    autofocus?: any, //The input autofocus attribute specifies that an input field should automatically get focus when the page loads.   
    autocomplete?: any,
    customComponentName?: 'multifileupload' | 'multiselect' | 'none',   
    rucMultiselectInput? : {
      rucInputData? : any,
      dataSource? : any
    }, // multiselect interface   
    rucMultiFileUpload? : {rucInputData? : any}
    hasDependentFields?: boolean,
    dependentFieldParentId?: any,
    dependentFields?: MetaFormConfig[];
    selectedParentId?: any;
    toolTipDescription?: string,
    customErrorMessage?: string,
    showErrorOnPopUp?: boolean, //need to be discuss more. as a enhancement    
    groupOptions?: groupOptions[] = [{
    id: string,
    name: string,
    value?: string, // compulsary if its select option part    selected?: boolean 
    disable? : boolean
 }],
    stepperForm?: boolean;
    stepper?: Stepper[] = [{
  stepControl?: string;
  stepperlabel?: string;
  stepperFormData?: MetaFormConfig[];  
 }],
    rucMultiFileUploadInput?:{
      rucInputData? : any,
    }
}

export interface groupOptions{
    id: string,
    name: string,
    value?: string,
    disable? : boolean
 }
 export interface Stepper{
  stepControl?: string;
  stepperlabel?: string;
  stepperFormData?: MetaFormConfig[];  
 }

Contribution

Contributions are welcome! Feel free to open issues or pull requests for any enhancements or fixes.

Acknowledgements

Thank you for choosing the Metaform Component Library. If you have any feedback or suggestions, please let us know!