npm.io
4.1.1 • Published 6 months ago

@sikt/sds-form

Licence
UNLICENSED
Version
4.1.1
Deps
1
Size
49 kB
Vulns
0
Weekly
0

@sikt/sds-form

Consume

npm i -s @sikt/sds-form

React

Fieldset
import { Fieldset } from "@sikt/sds-form";
import "@sikt/sds-form/dist/index.css";

<Fieldset legend="Example Fieldset">
  <Radio />
</Fieldset>;

The Fieldset component is useful when grouping several checkboxes, but can also be used with other input elements. If the elements inside are Radio components, please use RadioFieldset instead. It contains additional support for radio buttons.

FormField
import { FormField } from "@sikt/sds-form";
import "@sikt/sds-form/dist/index.css";

<FormField
  label="Example input"
  helpText="This is an example"
  htmlFor="example-input"
>
  <input type="text" id="example-input" />
</FormField>;

The FormField component can be used to implement input elements needing a label and help/error text. It is used internally for components like Input and Select, and contains logic for handling help text and error text. This component is recommended to use when developing custom input components to be used together with the existing ones.

This package also exports the Label and HelpText components, which are used by FormField. You will most likely not need to use these, but they are available. Prefer to use FormField instead.

Stylesheets & custom markup

Import stylesheet:

@import url("@sikt/sds-form");