This commit is contained in:
OfficialDakari 2025-04-03 09:39:07 +05:00
parent bb7dad8473
commit d9b81277df
8 changed files with 8 additions and 0 deletions

View File

@ -6,6 +6,7 @@ type CheckboxProps = AriaProps & {
checked?: boolean;
indeterminate?: boolean;
id?: string;
defaultChecked?: boolean;
disabled?: boolean;
hidden?: boolean;
ariaLabel?: string;

View File

@ -3,6 +3,7 @@ import { AriaProps } from '../types/aria';
type RadioProps = AriaProps & {
checked?: boolean;
defaultChecked?: boolean;
value?: string;
required?: boolean;
disabled?: boolean;

View File

@ -4,6 +4,7 @@ import { AriaProps } from '../types/aria';
type SwitchProps = AriaProps & {
checked?: boolean;
defaultChecked?: boolean;
id?: string;
disabled?: boolean;
hidden?: boolean;

View File

@ -11,6 +11,7 @@ export declare const TextField: React.ForwardRefExoticComponent<AriaProps & {
noAsterisk?: boolean;
required?: boolean;
value?: string;
defaultValue?: string;
prefixText?: string;
suffixText?: string;
supportingText?: string;

View File

@ -13,6 +13,7 @@ type CheckboxProps = AriaProps & {
checked?: boolean;
indeterminate?: boolean;
id?: string;
defaultChecked?: boolean;
disabled?: boolean;
hidden?: boolean;
ariaLabel?: string;

View File

@ -11,6 +11,7 @@ const MdRadio = createComponent({
type RadioProps = AriaProps & {
checked?: boolean;
defaultChecked?: boolean;
value?: string;
required?: boolean;
disabled?: boolean;

View File

@ -11,6 +11,7 @@ const MdSwitch = createComponent({
type SwitchProps = AriaProps & {
checked?: boolean;
defaultChecked?: boolean;
id?: string;
disabled?: boolean;
hidden?: boolean;

View File

@ -24,6 +24,7 @@ type TextFieldProps = AriaProps & {
noAsterisk?: boolean;
required?: boolean;
value?: string;
defaultValue?: string;
prefixText?: string;
suffixText?: string;
supportingText?: string;