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

75 lines
1.8 KiB
JavaScript
Raw Normal View History

const ToastProps = [
{
2022-09-14 14:26:41 +00:00
name: 'group',
type: 'string',
default: 'null',
description: 'Unique identifier of a message group.'
},
{
2022-09-14 14:26:41 +00:00
name: 'position',
type: 'string',
default: 'top-right',
description: 'Position of the toast in viewport. Other valid values are "top-left", "top-center", "bottom-left", "bottom-center", "bottom-right" and "center".'
},
{
2022-09-14 14:26:41 +00:00
name: 'autoZIndex',
type: 'boolean',
default: 'true',
description: 'Whether to automatically manage layering.'
},
{
2022-09-14 14:26:41 +00:00
name: 'baseZIndex',
type: 'number',
default: '0',
description: 'Base zIndex value to use in layering.'
},
{
2022-09-14 14:26:41 +00:00
name: 'breakpoints',
type: 'object',
default: 'null',
description: 'Object literal to define widths per screen size.'
}
];
const ToastEvents = [
{
name: 'close',
description: 'Callback to invoke when the toast is closed.',
arguments: [
{
name: 'message',
type: 'any',
description: 'Message of toast.'
}
]
},
{
name: 'life-end',
description: 'Callback to invoke when the toast timeout is over.',
arguments: [
{
name: 'message',
type: 'any',
description: 'Message of toast.'
}
]
}
];
const ToastSlots = [
{
2022-09-14 14:26:41 +00:00
name: 'message',
description: 'Custom content for the toast message'
}
];
module.exports = {
toast: {
2022-09-14 14:26:41 +00:00
name: 'Toast',
description: 'Toast is used to display messages in an overlay.',
props: ToastProps,
events: ToastEvents,
slots: ToastSlots
}
};