jghfjgf
This commit is contained in:
parent
bb7dad8473
commit
d9b81277df
|
|
@ -6,6 +6,7 @@ type CheckboxProps = AriaProps & {
|
|||
checked?: boolean;
|
||||
indeterminate?: boolean;
|
||||
id?: string;
|
||||
defaultChecked?: boolean;
|
||||
disabled?: boolean;
|
||||
hidden?: boolean;
|
||||
ariaLabel?: string;
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ import { AriaProps } from '../types/aria';
|
|||
|
||||
type RadioProps = AriaProps & {
|
||||
checked?: boolean;
|
||||
defaultChecked?: boolean;
|
||||
value?: string;
|
||||
required?: boolean;
|
||||
disabled?: boolean;
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ import { AriaProps } from '../types/aria';
|
|||
|
||||
type SwitchProps = AriaProps & {
|
||||
checked?: boolean;
|
||||
defaultChecked?: boolean;
|
||||
id?: string;
|
||||
disabled?: boolean;
|
||||
hidden?: boolean;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ type CheckboxProps = AriaProps & {
|
|||
checked?: boolean;
|
||||
indeterminate?: boolean;
|
||||
id?: string;
|
||||
defaultChecked?: boolean;
|
||||
disabled?: boolean;
|
||||
hidden?: boolean;
|
||||
ariaLabel?: string;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ const MdRadio = createComponent({
|
|||
|
||||
type RadioProps = AriaProps & {
|
||||
checked?: boolean;
|
||||
defaultChecked?: boolean;
|
||||
value?: string;
|
||||
required?: boolean;
|
||||
disabled?: boolean;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ const MdSwitch = createComponent({
|
|||
|
||||
type SwitchProps = AriaProps & {
|
||||
checked?: boolean;
|
||||
defaultChecked?: boolean;
|
||||
id?: string;
|
||||
disabled?: boolean;
|
||||
hidden?: boolean;
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ type TextFieldProps = AriaProps & {
|
|||
noAsterisk?: boolean;
|
||||
required?: boolean;
|
||||
value?: string;
|
||||
defaultValue?: string;
|
||||
prefixText?: string;
|
||||
suffixText?: string;
|
||||
supportingText?: string;
|
||||
|
|
|
|||
Loading…
Reference in New Issue