feat: vben checkbox support indeterminate state and transition animation (#5662)
This commit is contained in:
parent
34789645f7
commit
31a6ab59fb
@ -7,7 +7,7 @@ import { useForwardPropsEmits } from 'radix-vue';
|
|||||||
|
|
||||||
import { Checkbox } from '../../ui/checkbox';
|
import { Checkbox } from '../../ui/checkbox';
|
||||||
|
|
||||||
const props = defineProps<CheckboxRootProps>();
|
const props = defineProps<CheckboxRootProps & { indeterminate?: boolean }>();
|
||||||
|
|
||||||
const emits = defineEmits<CheckboxRootEmits>();
|
const emits = defineEmits<CheckboxRootEmits>();
|
||||||
|
|
||||||
|
@ -5,14 +5,16 @@ import { computed } from 'vue';
|
|||||||
|
|
||||||
import { cn } from '@vben-core/shared/utils';
|
import { cn } from '@vben-core/shared/utils';
|
||||||
|
|
||||||
import { Check } from 'lucide-vue-next';
|
import { Check, Minus } from 'lucide-vue-next';
|
||||||
import {
|
import {
|
||||||
CheckboxIndicator,
|
CheckboxIndicator,
|
||||||
CheckboxRoot,
|
CheckboxRoot,
|
||||||
useForwardPropsEmits,
|
useForwardPropsEmits,
|
||||||
} from 'radix-vue';
|
} from 'radix-vue';
|
||||||
|
|
||||||
const props = defineProps<CheckboxRootProps & { class?: any }>();
|
const props = defineProps<
|
||||||
|
CheckboxRootProps & { class?: any; indeterminate?: boolean }
|
||||||
|
>();
|
||||||
const emits = defineEmits<CheckboxRootEmits>();
|
const emits = defineEmits<CheckboxRootEmits>();
|
||||||
|
|
||||||
const delegatedProps = computed(() => {
|
const delegatedProps = computed(() => {
|
||||||
@ -29,7 +31,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|||||||
v-bind="forwarded"
|
v-bind="forwarded"
|
||||||
:class="
|
:class="
|
||||||
cn(
|
cn(
|
||||||
'focus-visible:ring-ring data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground border-border peer h-4 w-4 shrink-0 rounded-sm border focus-visible:outline-none focus-visible:ring-1 disabled:cursor-not-allowed disabled:opacity-50',
|
'focus-visible:ring-ring data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground border-border peer h-4 w-4 shrink-0 rounded-sm border transition focus-visible:outline-none focus-visible:ring-1 disabled:cursor-not-allowed disabled:opacity-50',
|
||||||
props.class,
|
props.class,
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
@ -38,7 +40,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|||||||
class="flex h-full w-full items-center justify-center text-current"
|
class="flex h-full w-full items-center justify-center text-current"
|
||||||
>
|
>
|
||||||
<slot>
|
<slot>
|
||||||
<Check class="h-4 w-4" />
|
<component :is="indeterminate ? Minus : Check" class="h-4 w-4" />
|
||||||
</slot>
|
</slot>
|
||||||
</CheckboxIndicator>
|
</CheckboxIndicator>
|
||||||
</CheckboxRoot>
|
</CheckboxRoot>
|
||||||
|
Loading…
Reference in New Issue
Block a user