Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@highlight-ui/checkbox
Advanced tools
A control that allows the user to toggle between checked and unchecked states. Used when there are multiple items available to select, where users can pick zero, one or many items. If you require a single-selection input, please use the RadioButton.
Using npm:
npm install @highlight-ui/checkbox
Using yarn:
yarn add @highlight-ui/checkbox
Using pnpm:
pnpm install @highlight-ui/checkbox
In your (S)CSS file:
@import url('@highlight-ui/checkbox');
Once the package is installed, you can import the library:
import { Checkbox, CheckboxGroup } from '@highlight-ui/checkbox';
import React, { useState } from 'react';
import { Checkbox } from '@highlight-ui/checkbox';
export default function CheckboxExample() {
const [checkedStatus, setCheckedStatus] = useState(false);
return (
<Checkbox
id="checkbox"
label="Click me to tick me"
subLabel="I am only a checkbox input"
checked={checkedStatus}
onClick={() => setCheckedStatus(!checkedStatus)}
/>
);
}
import React from 'react';
import { CheckboxGroup } from '@highlight-ui/checkbox';
export default function CheckboxGroupExample() {
const [value, setValue] = useState<string[]>([]);
const options = [
{ value: 'option-a', label: 'Option A', subLabel: 'Most important' },
{ value: 'option-b', label: 'Option B', subLabel: 'Average' },
{ value: 'option-c', label: 'Option C', subLabel: 'Lowest priority' },
];
return (
<CheckboxGroup
name="checkbox-group"
orientation="horizontal"
options={options}
value={value}
onChange={(selectedOptions) => {
const values = selectedOptions.map((v) => v.value) as string[];
setValue(values);
}}
/>
);
}
All
HTMLInputElement
and [PropsWithMetadata(https://gitlab.personio-internal.de/personio/platform/highlight-ui/-/blob/master/packages/utils/commons/src/types.ts#L24)] props are accepted with this component. In addition to these, this component has the following props
Prop | Type | Required | Default | Description |
---|---|---|---|---|
label | string | No | null | Text displayed next to the checkbox input |
subLabel | string | No | null | Text displayed below the main label |
tooltipContent | React.ReactNode | No | null | The content of the tooltip pop-out. When supplied, a tooltip will be placed next to the label. This maps to the TooltipProps['content'] prop types. |
tooltipMouseOutDelay | 'none' , 'medium' , 'long' , or number | No | null | Specifies how to to keep the tooltip opened after the mouse has left the tooltip icon. This maps to the TooltipProps['mouseOutDelay'] prop types. |
tone | default or error | No | default | Sets the tone of the checkbox |
indeterminate | boolean | No | null | Sets the partial state of the checkbox |
Note that the CheckboxGroupOption
type matches the Checkbox
listed properties above.
Prop | Type | Required | Default | Description |
---|---|---|---|---|
value | CheckboxGroupOption['value'][] | Yes | Currently checked values | |
onChange | function(option: CheckboxGroupOption[]): void | Yes | Function called when the checked status of an option changes | |
orientation | vertical or horizontal | No | vertical | Display of the checkboxes group |
options | CheckboxGroupOption[] | Yes | Options to render as a group |
Following base accesibility guidelines, the checkbox input currently:
for
prop referring to the id
Potential future improvements to make it more accessible:
aria
tags to indicate checked and disabled statesThere are a number of unit tests covering the Checkbox
and CheckboxGroup
components, the snippets below can serve as a base to expand future testing if new behaviours are added.
The relevant render methods provide the option to add or override prop values.
import React from 'react';
import { render } from '@testing-library/react';
import { Checkbox, CheckboxProps } from '@highlight-ui/checkbox';
type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;
type CheckboxWrapperProps = Optional<CheckboxProps, 'checked' | 'onClick'>;
function CheckboxWrapper(props: CheckboxWrapperProps) {
const [checkedStatus, setCheckedStatus] = useState(false);
return (
<Checkbox
checked={checkedStatus}
onClick={() => setCheckedStatus(!checkedStatus)}
{...props}
/>
);
}
describe('CheckboxTest', () => {
const renderCheckboxWrapper = (props: CheckboxWrapperProps) => {
return render(<CheckboxWrapper {...props} />);
};
it('test description', () => {
renderCheckboxWrapper({});
// write your expect here
});
});
import React from 'react';
import { render } from '@testing-library/react';
import { CheckboxGroup, CheckboxGroupProps, CheckboxGroupOption } from '@highlight-ui/checkbox';
type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;
type CheckboxGroupWrapperProps = Optional<
CheckboxGroupProps<CheckboxGroupOption>,
'options' | 'value' | 'onChange'
>;
function CheckboxGroupWrapper(props: CheckboxGroupWrapperProps) {
const [value, setValue] = useState<string[]>([]);
const options = [
{
value: 'earth-day',
label: 'Earth day',
subLabel: 'Demonstrate support for environmental protection',
},
{
value: 'water-day',
label: 'World Water Day',
subLabel: 'Highlights the importance of fresh water',
}
];
return (
<CheckboxGroup
options={options}
value={value}
onChange={(selectedOptions) => {
const values = selectedOptions.map((v) => v.value) as string[];
setValue(values);
}}
{...props}
/>
);
}
describe('CheckboxGroupTest', () => {
const renderCheckboxGroupWrapper = (props: CheckboxGroupWrapperProps) => {
return render(<CheckboxWrapper {...props} />);
};
it('test description', () => {
renderCheckboxGroupWrapper({});
// write your expect here
});
};
The checkbox is used across our library, when there is the existence of multiple choices or bulk selection is available.
Used as part of other components, such as:
When there are mutually exclusive choices or functionalities need to be toggled, please use alternative components:
Please visit personio.design for usage guidelines and visual examples.
If you're interested in contributing, please visit our contribution page.
FAQs
Checkbox for Highlight UI
The npm package @highlight-ui/checkbox receives a total of 345 weekly downloads. As such, @highlight-ui/checkbox popularity was classified as not popular.
We found that @highlight-ui/checkbox 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.