mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
update api-generator
This commit is contained in:
parent
2a2c97703c
commit
cb659b73ef
14 changed files with 233 additions and 31 deletions
|
@ -10,6 +10,43 @@ const RadioButtonProps = [
|
|||
type: "any",
|
||||
default: "null",
|
||||
description: "Value binding of the checkbox."
|
||||
},
|
||||
{
|
||||
name: "class",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Style class of the component."
|
||||
},
|
||||
{
|
||||
name: "style",
|
||||
type: "any",
|
||||
default: "null",
|
||||
description: "Inline of the component."
|
||||
}
|
||||
];
|
||||
|
||||
const RadioButtonEvents = [
|
||||
{
|
||||
name: "click",
|
||||
description: "Callback to invoke on radio button click.",
|
||||
arguments: [
|
||||
{
|
||||
name: "event",
|
||||
type: "object",
|
||||
description: "Browser event"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "change",
|
||||
description: "Callback to invoke on radio button value change.",
|
||||
arguments: [
|
||||
{
|
||||
name: "event",
|
||||
type: "object",
|
||||
description: "Browser event"
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -17,6 +54,7 @@ module.exports = {
|
|||
radiobutton: {
|
||||
name: "RadioButton",
|
||||
description: "RadioButton is an extension to standard radio button element with theming.",
|
||||
props: RadioButtonProps
|
||||
props: RadioButtonProps,
|
||||
events: RadioButtonEvents
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue