diff --git a/dist/src/components/Checkbox.d.ts b/dist/src/components/Checkbox.d.ts index 7062d2f..dd4607e 100644 --- a/dist/src/components/Checkbox.d.ts +++ b/dist/src/components/Checkbox.d.ts @@ -6,6 +6,7 @@ type CheckboxProps = AriaProps & { checked?: boolean; indeterminate?: boolean; id?: string; + defaultChecked?: boolean; disabled?: boolean; hidden?: boolean; ariaLabel?: string; diff --git a/dist/src/components/RadioButton.d.ts b/dist/src/components/RadioButton.d.ts index 0e29649..d8c2810 100644 --- a/dist/src/components/RadioButton.d.ts +++ b/dist/src/components/RadioButton.d.ts @@ -3,6 +3,7 @@ import { AriaProps } from '../types/aria'; type RadioProps = AriaProps & { checked?: boolean; + defaultChecked?: boolean; value?: string; required?: boolean; disabled?: boolean; diff --git a/dist/src/components/Switch.d.ts b/dist/src/components/Switch.d.ts index b934e8e..fc3da6a 100644 --- a/dist/src/components/Switch.d.ts +++ b/dist/src/components/Switch.d.ts @@ -4,6 +4,7 @@ import { AriaProps } from '../types/aria'; type SwitchProps = AriaProps & { checked?: boolean; + defaultChecked?: boolean; id?: string; disabled?: boolean; hidden?: boolean; diff --git a/dist/src/components/TextField.d.ts b/dist/src/components/TextField.d.ts index 191cc90..f572c36 100644 --- a/dist/src/components/TextField.d.ts +++ b/dist/src/components/TextField.d.ts @@ -11,6 +11,7 @@ export declare const TextField: React.ForwardRefExoticComponent