mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Initial commit for nuxt
This commit is contained in:
parent
271fd62d8d
commit
3cb3910561
1047 changed files with 15090 additions and 175754 deletions
|
@ -1,73 +0,0 @@
|
|||
const SplitButtonProps = [
|
||||
{
|
||||
name: "label",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Text of the button."
|
||||
},
|
||||
{
|
||||
name: "icon",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Name of the icon."
|
||||
},
|
||||
{
|
||||
name: "model",
|
||||
type: "object",
|
||||
default: "null",
|
||||
description: "MenuModel instance to define the overlay items."
|
||||
},
|
||||
{
|
||||
name: "autoZIndex",
|
||||
type: "boolean",
|
||||
default: "true",
|
||||
description: "Whether to automatically manage layering."
|
||||
},
|
||||
{
|
||||
name: "baseZIndex",
|
||||
type: "number",
|
||||
default: "0",
|
||||
description: "Base zIndex value to use in layering."
|
||||
},
|
||||
{
|
||||
name: "appendTo",
|
||||
type: "string",
|
||||
default: "body",
|
||||
description: "A valid query selector or an HTMLElement to specify where the overlay gets attached."
|
||||
},
|
||||
{
|
||||
name: "class",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Style class of the component."
|
||||
},
|
||||
{
|
||||
name: "style",
|
||||
type: "any",
|
||||
default: "null",
|
||||
description: "Inline of the component."
|
||||
}
|
||||
];
|
||||
|
||||
const SplitButtonEvents = [
|
||||
{
|
||||
name: "click",
|
||||
description: "Callback to invoke when main button is clicked.",
|
||||
arguments: [
|
||||
{
|
||||
name: "event",
|
||||
type: "object",
|
||||
description: "Browser event"
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
splitbutton: {
|
||||
name: "SplitButton",
|
||||
description: "SplitButton groups a set of commands in an overlay with a default command.",
|
||||
props: SplitButtonProps,
|
||||
events: SplitButtonEvents
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue