
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
ng-generic-radio
Advanced tools
Use of `NgGenericRadio` is to provide a way for frontend developers to simulate the behaviour of radio button.
Use of NgGenericRadio
is to provide a way for frontend developers to simulate the behaviour of radio button.
To use NgGenericRadio
we have to use generic-radio-group
component and inside it we need to provide ng-generic-radio-option
with both selected and unselected state HTML.
NgGenericRadio
is fully compatible with Angular Reactive and Template drivend forms.
npm install --save ng-generic-radio
For Angular 10 use version 2.0.x
NgGenericRadioModule
in the component module where we want to use generict radio. import { NgGenericRadioModule } from 'ng-generic-radio';
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
NgGenericRadioModule,
FormsModule,
ReactiveFormsModule,
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule { }
generic-radio-group
tag in html and provide ng-generic-radio-option
both unselected and selcted state html insdie the ng-generic-radio-option
tag. *selectedState
directive is use for selected state and *unSelectedState
directive is used for unselected state.<ng-generic-radio-group [(ngModel)]="selectedModel">
<ng-generic-radio-option value="option-1">
<p *selectedState>selected option 1</p>
<p *unSelectedState>not selected option 1</p>
</ng-generic-radio-option><br>
<ng-generic-radio-option value="option-2">
<p *selectedState>selected option 2</p>
<p *unSelectedState>not selected option 2</p>
</ng-generic-radio-option><br>
<ng-generic-radio-option value="option-3">
<p *selectedState>selected option 3</p>
<p *unSelectedState>not selected option 3</p>
</ng-generic-radio-option>
</ng-generic-radio-group>
With Reactive From :-
<ng-generic-radio-group [formControl]="demoFormControl">
<ng-generic-radio-option value="option-1">
<p *selectedState>selected option 1</p>
<p *unSelectedState>not selected option 1</p>
</ng-generic-radio-option><br>
<ng-generic-radio-option value="option-2">
<p *selectedState>selected option 2</p>
<p *unSelectedState>not selected option 2</p>
</ng-generic-radio-option><br>
<ng-generic-radio-option value="option-3">
<p *selectedState>selected option 3</p>
<p *unSelectedState>not selected option 3</p>
</ng-generic-radio-option>
</ng-generic-radio-group>
Here is the Demo
FAQs
Use of `NgGenericRadio` is to provide a way for frontend developers to simulate the behaviour of radio button.
The npm package ng-generic-radio receives a total of 0 weekly downloads. As such, ng-generic-radio popularity was classified as not popular.
We found that ng-generic-radio 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
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.