@gitlab/ui
Version:
GitLab UI Components
21 lines (17 loc) • 524 B
JavaScript
import examples from './examples';
var description = "### Form Checkbox\n\nForm checkbox groups for general use inside forms.\n";
var form_checkbox_documentation = {
description: description,
examples: examples,
bootstrapComponent: 'b-form-checkbox',
followsDesignSystem: true,
events: [{
event: 'input',
description: 'Emitted when checked state changes',
args: [{
arg: 'checked',
description: 'Whether the checkbox is checked'
}]
}]
};
export default form_checkbox_documentation;