Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/components/Checkbox/checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,17 @@ export interface CheckboxProperties {
label: ReactNode;
/** Additional CSS classes applied to the checkbox's wrapper element */
className?: string;
/** Is checkboxed checked? */
/** Is the checkbox checked? */
checked?: boolean;
/** Additional text to further clarify purpose of checkbox */
helperText?: ReactNode;
/** Additional CSS classes that will be applied to checkbox input element */
inputClassName?: string;
/** Additional CSS classes that will be applied to checkbox label element */
labelClassName?: string;
/** React Ref to be enable direct access and control of the input element */
/** React Ref to enable direct access and control of the input element */
inputRef?:
| RefObject<HTMLInputElement>
| string
| ((instance: HTMLInputElement | null) => void)
| null
| undefined;
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
Expand Down