@kakadu/components 6.7.0 → 6.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,7 +4,7 @@ export declare function CheckboxIcon({ value, className, }: {
|
|
|
4
4
|
readonly value?: boolean;
|
|
5
5
|
readonly className?: string;
|
|
6
6
|
}): React.JSX.Element;
|
|
7
|
-
export type TextCheckboxProperties<Type extends boolean = boolean> = Omit<HTMLProps<HTMLInputElement>, 'value' | 'checked' | 'children' | 'onChange'> & {
|
|
7
|
+
export type TextCheckboxProperties<Type extends boolean = boolean> = Omit<HTMLProps<HTMLInputElement>, 'label' | 'value' | 'checked' | 'children' | 'onChange'> & {
|
|
8
8
|
readonly label: ReactNode;
|
|
9
9
|
readonly value?: boolean;
|
|
10
10
|
readonly children?: ReactNode;
|