
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
@axa-fr/react-toolkit-form-input-select
Advanced tools
1. [SelectBase](#selectbase) 2. [Select](#select) 3. [Select keep placeholder](#select-keep-placeholder) 4. [SelectInput](#selectinput) 5. [SelectInput Required](#selectinput-required)
@axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-core
import { SelectBase } from '@axa-fr/react-toolkit-form-input-select';
import '@axa-fr/react-toolkit-form-input-select/dist/af-select.css';
import '@axa-fr/react-toolkit-form-core/dist/af-form.css';
const options = [
{ value: 'fun', label: 'For fun' },
{ value: 'work', label: 'For work' },
{ value: 'drink', label: 'For drink' },
];
const SelectBaseInput = () => (
<form className="af-form" name="myform">
<div className="af-form__select">
<SelectBase options={options} />
</div>
</form>
);
export default SelectBaseInput;
npm i @axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-core
import { Select } from '@axa-fr/react-toolkit-form-input-select';
import '@axa-fr/react-toolkit-form-input-select/dist/af-select.css';
import { FieldInput, HelpMessage } from '@axa-fr/react-toolkit-form-core';
import '@axa-fr/react-toolkit-form-core/dist/af-form.css';
const options = [
{ value: 'fun', label: 'For fun' },
{ value: 'work', label: 'For work' },
{ value: 'drink', label: 'For drink' },
];
const SelectInput = () => (
<form className="af-form" name="myform">
<FieldInput>
<div className="col-md-4">
<div className="af-form__select">
<Select
options={options}
onChange={(e) => {
console.log(e);
}}
/>
<HelpMessage message="Enter the place name, ex : Webcenter" />
</div>
</div>
</FieldInput>
</form>
);
export default SelectInput;
npm i @axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-core
import { Select } from '@axa-fr/react-toolkit-form-input-select';
import '@axa-fr/react-toolkit-form-input-select/dist/af-select.css';
import { FieldInput, HelpMessage } from '@axa-fr/react-toolkit-form-core';
import '@axa-fr/react-toolkit-form-core/dist/af-form.css';
const options = [
{ value: 'fun', label: 'For fun' },
{ value: 'work', label: 'For work' },
{ value: 'drink', label: 'For drink' },
];
const SelectKeepPlaceholder = () => (
<form className="af-form" name="myform">
<FieldInput>
<div className="col-md-4">
<div className="af-form__select">
<Select
options={options}
onChange={(e) => {
console.log(e);
}}
/>
<HelpMessage message="Enter the place name, ex : Webcenter" />
</div>
</div>
</FieldInput>
</form>
);
export default SelectKeepPlaceholder;
npm i @axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-core
import { SelectInput } from '@axa-fr/react-toolkit-form-input-select';
import '@axa-fr/react-toolkit-form-input-select/dist/af-select.css';
import '@axa-fr/react-toolkit-form-core/dist/af-form.css';
const options = [
{ value: 'fun', label: 'For fun' },
{ value: 'work', label: 'For work' },
{ value: 'drink', label: 'For drink' },
];
const SelectInputReturn = () => (
<form className="af-form" name="myform">
<SelectInput
id="idSelectInputReturn"
name="placeName"
label="Place type"
options={options}
placeholder="- Select -"
value=""
helpMessage="Enter the place type"
/>
</form>
);
export default SelectInputReturn;
To achieve SelectInput Required, you need to add this :
classModifier = 'required';
to the SelectInput component
FAQs
1. [SelectBase](#selectbase) 2. [Select](#select) 3. [Select keep placeholder](#select-keep-placeholder) 4. [SelectInput](#selectinput) 5. [SelectInput Required](#selectinput-required)
We found that @axa-fr/react-toolkit-form-input-select demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.