primevue-mirror/api-generator/components/inlinemessage.js

44 lines
1.1 KiB
JavaScript
Raw Normal View History

const InlineMessageProps = [
{
2022-09-14 14:26:41 +00:00
name: 'severity',
type: 'string',
default: 'error',
description: 'Severity level of the message. Valid severities are "success", "info", "warn" and "error".'
},
{
name: 'icon',
type: 'string',
default: 'undefined',
description: 'Display a custom icon for the message.'
2023-04-28 11:55:27 +00:00
},
{
name: 'pt',
type: 'any',
default: 'null',
2023-08-01 14:01:12 +00:00
description: 'Used to pass attributes to DOM elements inside the component.'
2023-07-06 13:20:37 +00:00
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
}
];
const MessageSlots = [
{
2023-04-18 13:42:36 +00:00
name: 'icon',
description: 'Custom icon template.'
}
];
module.exports = {
inlinemessage: {
2022-09-14 14:26:41 +00:00
name: 'InlineMessage',
description: 'InlineMessage component is useful in cases where a single message needs to be displayed related to an element such as forms',
'doc-url': 'message',
props: InlineMessageProps,
slots: MessageSlots
}
};