
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@highlight-ui/form-field
Advanced tools
Using npm:
npm install @highlight-ui/form-field
Using yarn:
yarn add @highlight-ui/form-field
Using pnpm:
pnpm install @highlight-ui/form-field
In your (S)CSS file:
@import url('@highlight-ui/form-field');
Once the package is installed, you can import the library:
import {
FormField,
FormFieldView,
InputFormField,
SelectFormField,
TextAreaFormField,
} from '@highlight-ui/form-field';
import React, { useState } from 'react';
import { FormField } from '@highlight-ui/form-field';
export default function FormFieldExample() {
return (
<FormField
label="Input Field"
htmlFor="input-123"
hintText="Optional Help Text"
>
<Input id="input-123" type="text" placeholder="Type something here" />
</FormField>
);
}
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
children | React.ReactNode | Yes | The content inside the form field | |
label | string | Yes | Label for the input field | |
horizontal | boolean | No | false | Whether to use the horizontal layout of the form field |
htmlFor | string | No | Specify which HTML element the Label is for | |
labelTooltipContent | TooltipProps['content'] | No | The content to be displayed in the tooltip pop-out | |
labelTooltipMouseOutDelay | TooltipProps['mouseOutDelay'] | No | How quickly to hide the tooltip | |
helperText | React.ReactNode | No | The text that will be displayed as a secondary label | |
hintText | string | No | The grayed out, additional to the helperText information. | |
validationsId | string | No | The id of the validation info wrapper | |
validations | Array<Omit<ValidationMessageProps, 'className'>> | No | An array of objects that represent different validation states |
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
children | React.ReactNode | Yes | The content inside the form field view | |
label | string | Yes | Label for the field view | |
horizontal | boolean | No | false | Whether to use the horizontal layout of the form field |
placeholder | string | No | - | The placeholder value |
The following props build on the FormField props listed above
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | No | The id applied to the input element | |
inputProps | Omit<InputProps, 'outline' 'ref'> | No | The InputProps to pass down to the underlying Input component |
The following props build on the FormField props listed above
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
selectProps | Omit<SelectProps<T>, 'outline' 'variant'> | Yes | The SelectProps to pass down to the underlying Select component | |
id | string | No | The id applied to the select element |
The following props build on the FormField props listed above
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | No | The id applied to the select element | |
textAreaProps | Omit<TextAreaProps, 'outline'> | No | The TextAreaProps to pass down to the underlying TextArea component |
Please visit personio.design for usage guidelines and visual examples.
If you're interested in contributing, please visit our contribution page.
FAQs
This is the FormField and FormFieldView component used in Personio
The npm package @highlight-ui/form-field receives a total of 407 weekly downloads. As such, @highlight-ui/form-field popularity was classified as not popular.
We found that @highlight-ui/form-field demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 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
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.