Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@ng-dynamic-forms/ui-primeng
Advanced tools
npm i @ng-dynamic-forms/ui-primeng -S
@NgModule({
imports: [DynamicFormsPrimeNGUIModule]
})
export class AppModule {}
with DynamicPrimeNGFormComponent
:
<form [formGroup]="myFormGroup">
<dynamic-primeng-form [group]="myFormGroup"
[model]="myFormModel"></dynamic-primeng-form>
</form>
with DynamicPrimeNGFormControlComponent
:
<form [formGroup]="myFormGroup">
<dynamic-primeng-form-control *ngFor="let controlModel of myFormModel"
[group]="myFormGroup"
[model]="controlModel"></dynamic-primeng-form-control>
</form>
Control | Model | Required Property |
---|---|---|
AutoComplete | DynamicInputModel | list |
Calendar | DynamicDatePickerModel , DynamicTimePickerModel | – |
Checkbox | DynamicCheckboxModel | – |
Chips | DynamicInputModel | multiple: true |
ColorPicker | DynamicColorPickerModel | – |
Dropdown | DynamicSelectModel | – |
Editor | DynamicEditorModel | – |
InputMask | DynamicInputModel | mask |
InputSwitch | DynamicSwitchModel | – |
InputText | DynamicInputModel | – |
InputTextArea | DynamicTextAreaModel | – |
MultiSelect | DynamicSelectModel | multiple: true |
Radio Group | DynamicRadioGroupModel | – |
Rating | DynamicRatingModel | – |
Slider | DynamicSliderModel | – |
Spinner | DynamicInputModel | inputType: "number" |
<form [formGroup]="myFormGroup">
<dynamic-primeng-form [group]="myFormGroup"
[model]="myFormModel"
(pEvent)="onPEvent($event)"></dynamic-primeng-form>
</form>
FAQs
PrimeNG UI package for NG Dynamic Forms
The npm package @ng-dynamic-forms/ui-primeng receives a total of 130 weekly downloads. As such, @ng-dynamic-forms/ui-primeng popularity was classified as not popular.
We found that @ng-dynamic-forms/ui-primeng 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.