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,66 +0,0 @@
|
|||
const InplaceProps = [
|
||||
{
|
||||
name: "active",
|
||||
type: "boolean",
|
||||
default: "false",
|
||||
description: "Whether the content is displayed or not."
|
||||
},
|
||||
{
|
||||
name: "closable",
|
||||
type: "boolean",
|
||||
default: "false",
|
||||
description: "Displays a button to switch back to display mode."
|
||||
},
|
||||
{
|
||||
name: "diabled",
|
||||
type: "boolean",
|
||||
default: "false",
|
||||
description: "When present, it specifies that the element should be disabled."
|
||||
}
|
||||
];
|
||||
|
||||
const InplaceEvents = [
|
||||
{
|
||||
name: "open",
|
||||
description: "Callback to invoke when inplace is opened.",
|
||||
arguments: [
|
||||
{
|
||||
name: "event",
|
||||
type: "object",
|
||||
description: "Browser event"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "close",
|
||||
description: "Callback to invoke when inplace is closed.",
|
||||
arguments: [
|
||||
{
|
||||
name: "event",
|
||||
type: "object",
|
||||
description: "Browser event"
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
const InplaceSlots = [
|
||||
{
|
||||
name: "display",
|
||||
description: "Output content"
|
||||
},
|
||||
{
|
||||
name: "content",
|
||||
description: "Actual content"
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
inplace: {
|
||||
name: "Inplace",
|
||||
description: "Inplace provides an easy to do editing and display at the same time where clicking the output displays the actual content.",
|
||||
props: InplaceProps,
|
||||
events: InplaceEvents,
|
||||
slots: InplaceSlots
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue