mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Lint changes
This commit is contained in:
parent
eb2de5460c
commit
4d3a071e66
291 changed files with 28450 additions and 26621 deletions
|
@ -1,44 +1,44 @@
|
|||
const InplaceProps = [
|
||||
{
|
||||
name: "active",
|
||||
type: "boolean",
|
||||
default: "false",
|
||||
description: "Whether the content is displayed or not."
|
||||
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: '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."
|
||||
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.",
|
||||
name: 'open',
|
||||
description: 'Callback to invoke when inplace is opened.',
|
||||
arguments: [
|
||||
{
|
||||
name: "event",
|
||||
type: "object",
|
||||
description: "Browser event"
|
||||
name: 'event',
|
||||
type: 'object',
|
||||
description: 'Browser event'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "close",
|
||||
description: "Callback to invoke when inplace is closed.",
|
||||
name: 'close',
|
||||
description: 'Callback to invoke when inplace is closed.',
|
||||
arguments: [
|
||||
{
|
||||
name: "event",
|
||||
type: "object",
|
||||
description: "Browser event"
|
||||
name: 'event',
|
||||
type: 'object',
|
||||
description: 'Browser event'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -46,19 +46,19 @@ const InplaceEvents = [
|
|||
|
||||
const InplaceSlots = [
|
||||
{
|
||||
name: "display",
|
||||
description: "Output content"
|
||||
name: 'display',
|
||||
description: 'Output content'
|
||||
},
|
||||
{
|
||||
name: "content",
|
||||
description: "Actual 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.",
|
||||
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