Refactor #2801 - RadioButton

This commit is contained in:
Tuğçe Küçükoğlu 2022-07-27 13:15:38 +03:00
parent 14accb512c
commit 0eddc7f2eb
3 changed files with 52 additions and 21 deletions

View file

@ -10,13 +10,29 @@ export interface RadioButtonProps {
*/
modelValue?: any;
/**
* Style class of the component input field.
* Name of the input element.
*/
class?: any;
name?: string | undefined;
/**
* Inline style of the component.
* When present, it specifies that the component should be disabled.
*/
style?: any;
disabled?: boolean | undefined;
/**
* Identifier of the underlying input element.
*/
inputId?: string | undefined;
/**
* Inline style of the input field.
*/
inputStyle?: any;
/**
* Style class of the input field.
*/
inputClass?: any;
/**
*
*/
inputProps?: object | undefined;
/**
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
*/