Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
cf-component-checkbox
Advanced tools
Cloudflare Checkbox Component
Installation with yarn is recommended
$ yarn add cf-component-checkbox
import React from 'react';
import {
Checkbox,
CheckboxUnstyled,
CheckboxTheme,
CheckboxGroup
} from 'cf-component-checkbox';
import { applyTheme } from 'cf-style-container';
const CheckboxGroupItem = applyTheme(CheckboxUnstyled, CheckboxTheme, ({}) => ({
marginTop: '1em',
'&:first-child': {
marginTop: 0
}
}));
class CheckboxComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
checkbox1: true,
checkbox2: false,
checkboxValues: ['option1'],
checkbox5: false
};
this.onCheckboxGroupChange = this.onCheckboxGroupChange.bind(this);
}
onCheckboxGroupChange(values) {
this.setState({
checkboxValues: values
});
}
render() {
return (
<div>
<p>
You can create them individually with <code>Checkbox</code>
</p>
<Checkbox
label="Checkbox 1"
name="checkbox-1"
value="checkbox1"
checked={this.state.checkbox1}
onChange={event => this.setState({ checkbox1: event.target.checked })}
/>
<Checkbox
label="Checkbox 2"
name="checkbox-2"
value="checkbox2"
checked={this.state.checkbox2}
onChange={event => this.setState({ checkbox2: event.target.checked })}
/>
<p>
Or as a group with <code>CheckboxGroup</code>
</p>
<CheckboxGroup
values={this.state.checkboxValues}
onChange={this.onCheckboxGroupChange}
>
<CheckboxGroupItem
label="Checkbox 3"
name="checkbox-3"
value="checkbox3"
/>
<CheckboxGroupItem
label="Checkbox 4"
name="checkbox-4"
value="checkbox4"
/>
</CheckboxGroup>
<p>
You can also disable a label by passing <code>false</code> explicitly
</p>
<Checkbox
label={false}
name="checkbox-5-no-label"
value="checkbox5"
checked={this.state.checkbox5}
onChange={event => this.setState({ checkbox5: event.target.checked })}
/>
</div>
);
}
}
export default CheckboxComponent;
FAQs
Cloudflare Checkbox Component
We found that cf-component-checkbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 23 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.