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

208 lines
5.1 KiB
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const DialogProps = [
{
name: "header",
type: "any",
default: "null",
description: "Title content of the dialog."
},
{
name: "footer",
type: "any",
default: "null",
description: "Footer content of the dialog."
},
{
name: "visible",
type: "boolean",
default: "false",
description: "Specifies the visibility of the dialog."
},
{
name: "modal",
type: "boolean",
default: "null",
description: "Defines if background should be blocked when dialog is displayed."
},
{
name: "closeOnEscape",
type: "boolean",
default: "true",
description: "Specifies if pressing escape key should hide the dialog."
},
{
name: "dismissableMask",
type: "boolean",
default: "false",
description: "Specifies if clicking the modal background should hide the dialog."
},
{
name: "position",
type: "string",
default: "center",
description: 'Position of the dialog, options are "center", "top", "bottom", "left", "right", "topleft", "topright", "bottomleft" or "bottomright".'
},
{
name: "contentStyle",
type: "object",
default: "null",
description: "Style of the content section."
},
{
name: "contentClass",
type: "string",
default: "null",
description: "Style class of the content section."
},
{
name: "rtl",
type: "boolean",
default: "null",
description: "When enabled dialog is displayed in RTL direction."
},
{
name: "closable",
type: "boolean",
default: "true",
description: "Adds a close icon to the header to hide the dialog."
},
{
name: "showHeader",
type: "boolean",
default: "true",
description: "Whether to show the header or not."
},
{
name: "baseZIndex",
type: "number",
default: "0",
description: "Base zIndex value to use in layering."
},
{
name: "autoZIndex",
type: "boolean",
default: "true",
description: "Whether to automatically manage layering."
},
{
name: "ariaCloseLabel",
type: "string",
default: "close",
description: "Aria label of the close icon."
},
{
name: "maxiizable",
type: "boolean",
default: "false",
description: "Whether the dialog can be displayed full screen."
},
{
name: "breakpoints",
type: "object",
default: "null",
description: "Object literal to define widths per screen size."
2021-05-14 10:21:59 +00:00
},
{
name: "draggable",
type: "boolean",
default: "true",
description: "Whether the dialog can be displayed full screen."
},
{
name: "minX",
type: "number",
default: "0",
description: "Minimum value for the left coordinate of dialog in dragging."
},
{
name: "minY",
type: "number",
default: "0",
description: "Minimum value for the top coordinate of dialog in dragging."
},
{
name: "keepInViewport",
type: "boolean",
default: "true",
description: "Keeps dialog in the viewport when dragging."
},
2021-05-12 09:35:29 +00:00
];
const DialogEvents = [
{
name: "hide",
description: "Callback to invoke when dialog is hidden.",
arguments: [
{
name: "event",
type: "object",
description: "Event Object"
}
]
},
{
name: "show",
description: "Callback to invoke when dialog is showed.",
arguments: [
{
name: "event",
type: "object",
description: "Event Object"
}
]
},
{
name: "maximize",
description: "Fired when a dialog gets maximized.",
arguments: [
{
name: "event",
type: "object",
description: "Event Object"
}
]
},
{
name: "unmaximize",
2021-05-14 10:23:14 +00:00
description: "Fired when a dialog gets unmaximized.",
arguments: [
{
name: "event",
type: "object",
description: "Event Object"
}
]
},
{
name: "dragend",
description: "Fired when a dialog drag completes.",
2021-05-12 09:35:29 +00:00
arguments: [
{
name: "event",
type: "object",
description: "Event Object"
}
]
}
];
const DialogSlots = [
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "footer",
description: "Custom content for the component's footer"
}
];
module.exports = {
dialog: {
name: "Dialog",
description: "Dialog is a container to display content in an overlay window.",
props: DialogProps,
events: DialogEvents,
slots: DialogSlots
}
};