Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
ngx-dynamic-form-creator
Advanced tools
This library was generated with Angular CLI version 8.0.3.
npm i ngx-dynamic-form-creator
// Make sure you have angular material and angular material animations
Here a simple DEMO. I recommend to import
BrowserAnimationsModule
All rights reserved to Tzach Bonfil. The use of this package is free of charge.
This library generate dynamic form from a simple json object. this form build with angular material components and support the angular materials APIs. The final component is a form which build with mat stepper and mat form fields. The form UI will change based on the values the end user enters.
the examples and the interfaces are shown below.
import {
NgModule
} from '@angular/core';
import {
BrowserModule
} from '@angular/platform-browser';
import {
FormsModule
} from '@angular/forms';
import {
NgxDynamicFormCreatorModule
} from 'ngx-dynamic-form-creator'
import {
AppComponent
} from './app.component';
import {
BrowserAnimationsModule
} from '@angular/platform-browser/animations';
@NgModule({
imports: [BrowserModule, FormsModule, NgxDynamicFormCreatorModule, BrowserAnimationsModule],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}
onSubmit(values: any) {
// do something
}
settings: ISettings = {
buttonText: {
back: 'back',
done: 'save',
next: 'next'
},
formFieldClassName: 'form-field',
formName: 'test',
position: 'horizontal',
stepperClassName: 'stepper-field',
dir: 'ltr'
};
"FullForm": [{
"step": {
"formStep": 0,
"stepName": "First Step"
},
"items": [{
"type": "dropdown",
"inputType": "text",
"key": "ITM_700",
"label": "Select",
"order": 0,
"required": true,
"floatField": 0,
"value": "",
"options": [{
"key": "OPN_500",
"value": "One",
"formStep": 0,
"source": "ITM_700",
"targets": "[\"ITM_701\"]"
},
{
"key": "OPN_501",
"value": "Two",
"formStep": 0,
"source": "ITM_700",
"targets": "[\"ITM_702\"]"
},
{
"key": "OPN_502",
"value": "Three",
"formStep": 0,
"source": "ITM_700",
"targets": "[]"
}
],
"tooltip": "",
"disabled": false
},
{
"type": "input",
"inputType": "text",
"key": "ITM_701",
"label": "One",
"order": 1,
"required": true,
"floatField": 0,
"value": "",
"options": [],
"min": "0",
"max": "50",
"tooltip": "",
"disabled": false,
},
{
"type": "input",
"inputType": "text",
"key": "ITM_702",
"label": "2",
"order": 2,
"required": true,
"floatField": 0,
"value": "",
"options": [],
"min": "0",
"max": "50",
"tooltip": "",
"disabled": false,
}
]
},
{
"step": {
"formStep": 1,
"stepName": "Step 2"
},
"items": [{
"type": "input",
"inputType": "text",
"key": "ITM_703",
"label": "New Field In Another Step",
"order": 0,
"required": true,
"floatField": 0,
"value": "",
"options": [],
"min": "0",
"max": "50",
"tooltip": "",
"disabled": false
}]
}
],
"Dependence": [{
"formStep": 0,
"source": "ITM_700",
"target": "ITM_701",
"termType": "=",
"term": "OPN_500",
"termValue": "One"
},
{
"formStep": 0,
"source": "ITM_700",
"target": "ITM_702",
"termType": "=",
"term": "OPN_501",
"termValue": "Two"
}
]
IMPORTANT: -- the uploadfile and signature are still at work.
Dependence: Dependence[];
FullForm: FullForm[];
}
interface Dependence {
formStep: number;
source: string;
target: string;
termType: string;
term: string;
}
interface FullForm {
step: FormSteps;
items: FormItem[];
}
interface FormSteps {
formStep: number;
stepName: string;
}
//> IMPORTANT: -- the uploadfile and signature are still at work.
interface FormItem {
type: 'checkbox' | 'datepicker' | 'input' | 'radio' | 'dropdown' | 'slider' | 'slidetoggle' | 'textarea' | 'label' | 'paragraph' | 'signature' | 'uploadfile' | 'iframe';
inputType: string;
key: string;
label: string;
order: number;
required: boolean;
floatField: number;
value: string;
options: ItemOption[];
tooltip: string;
disabled: string;
min: string;
max: string;
}
interface ItemOption {
key: string;
value: string;
formStep: number;
source: string;
}
interface ISettings {
formName: string;
position: 'horizontal' | 'vertical';
buttonText: {
next: string,
back: string,
done: string
};
formFieldClassName: string;
stepperClassName: string;
dir: 'rtl' | 'ltr';
}```
FAQs
<!-- # NgxDynamicFormCreator
The npm package ngx-dynamic-form-creator receives a total of 2 weekly downloads. As such, ngx-dynamic-form-creator popularity was classified as not popular.
We found that ngx-dynamic-form-creator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.