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