@axa-fr/react-toolkit-form-input-select
TypeScript icon, indicating that this package has built-in type declarations

2.3.1 • Public • Published

@axa-fr/react-toolkit-form-input-select

  1. SelectBase
  2. Select
  3. Select keep placeholder
  4. SelectInput
  5. SelectInput Required

SelectBase

Installation

npm i @axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-core

Import

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';

Use

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;

Select

Installation

npm i @axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-core

Import

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';

Use

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;

Select keep placeholder

Installation

npm i @axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-core

Import

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';

Use

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;

SelectInput

Installation

npm i @axa-fr/react-toolkit-form-input-select
npm i @axa-fr/react-toolkit-form-core

Import

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';

Use

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;

SelectInput Required

To achieve SelectInput Required, you need to add this :

classModifier = 'required';

to the SelectInput component

Readme

Keywords

none

Package Sidebar

Install

npm i @axa-fr/react-toolkit-form-input-select

Weekly Downloads

147

Version

2.3.1

License

MIT

Unpacked Size

58.7 kB

Total Files

42

Last publish

Collaborators

  • martinweb
  • fcornaire
  • guillaume.chervet.axa
  • samuel-gomez
  • antoine.blancke
  • arnaudforaison