
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
@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 1,160 weekly downloads. As such, @highlight-ui/form-field popularity was classified as popular.
We found that @highlight-ui/form-field demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.