mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +00:00
Refactor #2801 - RadioButton
This commit is contained in:
parent
14accb512c
commit
0eddc7f2eb
3 changed files with 52 additions and 21 deletions
24
src/components/radiobutton/RadioButton.d.ts
vendored
24
src/components/radiobutton/RadioButton.d.ts
vendored
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue