UNPKG

@als-tp/als-react-ts-ui

Version:

A comprehensive React TypeScript UI component library built with Base UI by ALSInnovation

18 lines 861 B
import React from "react"; import { CheckboxGroup } from "@base-ui-components/react/checkbox-group"; export interface ALSCheckboxGroupProps { defaultValue?: string[]; value?: string[]; onValueChange?: (value: string[], eventDetails: CheckboxGroup.ChangeEventDetails) => void; allValues?: string[]; disabled?: boolean; className?: string | ((state: CheckboxGroup.State) => string); style?: React.CSSProperties; children?: React.ReactNode; orientation?: "horizontal" | "vertical"; spacing?: "sm" | "md" | "lg"; } export type ALSCheckboxGroupOrientation = "horizontal" | "vertical"; export type ALSCheckboxGroupSpacing = "sm" | "md" | "lg"; export declare const ALSCheckboxGroupRoot: React.ForwardRefExoticComponent<ALSCheckboxGroupProps & React.RefAttributes<HTMLDivElement>>; //# sourceMappingURL=ALSCheckboxGroup.d.ts.map