-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
add Indeterminate state to current checkbox states (yes/no) or add a new checkbox type with states indeterminate/yes/no.
Currently checkbox's default values are either checked or not checked = yes/no = 1/0. Add an Indeterminate / -1 state for cases where it is necessary to know whether the value is really set to false or not touched at all. If a checkbox e.g. appendicitis is not checked, it is false by configuration and the interpretation would be appendicitis is definately not present. But it makes a difference whether it is not present or you just don't know it at the moment. This would imply this (apendicits) has to be looked for later.
https://shadcnstudio.com/docs/components/checkbox
'use client'
import { useId, useState, type ComponentProps } from 'react'
import { CheckIcon, MinusIcon } from 'lucide-react'
import { Checkbox as CheckboxPrimitive } from 'radix-ui'
import { Label } from '@/components/ui/label'
const Checkbox = (props: ComponentProps<typeof CheckboxPrimitive.Root>) => {
return (
<CheckboxPrimitive.Root
data-slot='checkbox'
className='peer border-input dark:bg-input/30 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground data-[state=indeterminate]:text-foreground dark:data-[state=checked]:bg-primary data-[state=checked]:border-primary focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive group size-4 shrink-0 rounded-[4px] border shadow-xs transition-shadow outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50'
{...props}
>
<CheckboxPrimitive.Indicator
data-slot='checkbox-indicator'
className='flex items-center justify-center text-current transition-none'
>
<MinusIcon className='hidden size-2.5 group-data-[state=indeterminate]:block' />
<CheckIcon className='hidden size-3.5 group-data-[state=checked]:block' />
</CheckboxPrimitive.Indicator>
</CheckboxPrimitive.Root>
)
}
const CheckboxIndeterminateDemo = () => {
const [checked, setChecked] = useState<CheckboxPrimitive.CheckedState>('indeterminate')
const id = useId()
return (
<div className='flex items-center gap-2'>
<Checkbox id={id} checked={checked} onCheckedChange={setChecked} />
<Label htmlFor={id}>Indeterminate checkbox</Label>
</div>
)
}
export default CheckboxIndeterminateDemoReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels