UNPKG

lumarc-grid

Version:

lumArc Grid는 고성능, 유연하고 프레임워크에 구애받지 않는 데이터 그리드 라이브러리

20 lines 919 B
import { VariantProps } from 'class-variance-authority'; import * as React from "react"; import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; /** * Checkbox component variants */ declare const checkboxVariants: (props?: ({ variant?: "default" | "destructive" | "success" | null | undefined; size?: "default" | "sm" | "lg" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; /** * Checkbox component for row selection in data grid */ export interface CheckboxProps extends React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>, VariantProps<typeof checkboxVariants> { /** Indeterminate state for partial selection */ indeterminate?: boolean; } declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>>; export { Checkbox, checkboxVariants }; //# sourceMappingURL=checkbox.d.ts.map