Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rapidui/quiver-forms

Package Overview
Dependencies
Maintainers
3
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rapidui/quiver-forms

Rapid UI Forms Module

  • 0.0.0-beta.24
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by100%
Maintainers
3
Weekly downloads
 
Created
Source

rui-dynamic-forms

API Summary

Properties:

NameTypeDescription
elements?IDynamicElementConfig[]JS Object that will render the elements depending on its config. [name] property is required.
formget(): FormGroupGetter property for dynamic [FormGroup].
validget(): booleanGetter property for [valid] of dynamic [FormGroup].
valueget(): anyGetter property for [value] of dynamic [FormGroup].
errorsget(): {[name: string]: any}Getter property for [errors] of dynamic [FormGroup].
controlsget(): {[key: string]: AbstractControl}Getter property for [controls] of dynamic [FormGroup].

Setup

Import the [QuiverDynamicFormsModule] in your NgModule:

import { QuiverDynamicFormsModule } from '@quiver/dynamic-forms';
@NgModule({
  imports: [
    QuiverDynamicFormsModule,
    ...
  ],
  ...
})
export class MyModule {}

Usage

rui-dynamic-forms element generates a form dynamically

Pass an array of javascript objects that implement [IDynamicElementConfig] with the information to be rendered to the [elements] attribute.

export interface IDynamicElementConfig {
  label?: string;
  name: string;
  type: DynamicType | DynamicElement;
  required?: boolean;
  min?: any;
  max?: any;
  selections?: any[];
  default?: any;
}

Example for HTML usage:

<rui-dynamic-forms [elements]="elements">
</rui-dynamic-forms>
import { IDynamicElementConfig, DynamicElement, DynamicType } from '@covalent/dynamic-forms';
...
})
export class Demo {
  elements: IDynamicElementConfig[] = [{
    name: 'input',
    type: DynamicElement.Input,
    required: true,
  }, {
    name: 'slider',
    label: 'Label',
    type: DynamicElement.Slider,
    required: true,
  }, {
    name: 'boolean',
    type: DynamicType.Boolean,
    default: false,
  }, {
    name: 'select',
    type: DynamicElement.Select,
    required: true,
    selections: ['A','B','C']
    default: 'A',
  }];
}

Keywords

FAQs

Package last updated on 11 Oct 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc