pull/1196/head^2
Tuğçe Küçükoğlu 2021-05-12 12:35:29 +03:00
parent 367d4a5f14
commit 8681911998
92 changed files with 7793 additions and 2 deletions

164
api-generator/build-api.js Normal file
View File

@ -0,0 +1,164 @@
const fs = require("fs");
const path = require("path");
const rootDir = path.resolve(__dirname, "../");
const distDir = path.resolve(rootDir, "dist");
const componentPath = path.join(__dirname, "./components");
// Import project `package.json`
const pkg = require(path.resolve(rootDir, "package.json"));
const libraryName = "PrimeVue";
const libraryVersion = pkg.version;
const showcaseURL = "https://primefaces.org/primevue/showcase/#/";
const fileModules = {},
veturTags = {},
veturAttributes = {};
const files = fs.readdirSync(componentPath);
files.forEach(file => {
const { name } = path.parse(file);
fileModules[name] = require(`./components//${name}`);
});
const webTypes = {
$schema: "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
framework: "vue",
name: libraryName,
version: libraryVersion,
contributions: {
html: {
"types-syntax": "typescript",
"description-markup": "markdown",
tags: [],
attributes: []
}
}
};
const addURL = (attr, url, value) => {
const newArray = [];
attr.forEach(att => {
const newObj = {};
Object.keys(att).forEach(key => {
newObj[key] = att[key];
if (key === value) newObj["doc-url"] = url;
});
newArray.push(newObj);
});
return newArray;
};
const createWebTypes = component => {
const url = showcaseURL + `${component["doc-url"] ? component["doc-url"] : component.name.toLowerCase()}`;
// components
const tag = {
name: component.name,
source: {
module: libraryName,
symbol: component.name
},
"doc-url": url,
description: component.description
};
// directives
const attribute = {
name: component.name,
source: {
module: libraryName,
symbol: component.name
},
description: component.description,
"doc-url": url,
value: {
kind: "expression",
type: "function"
}
};
if (component.props) {
tag.attributes = addURL(component.props, url, "default");
tag.attributes.forEach(k => {
k["value"] = {
kind: "expression",
type: k["type"]
};
delete k["type"];
});
}
if (component.events) {
tag.events = addURL(component.events, url, "name");
tag.events.forEach(k => {
if (k.arguments) {
k.arguments = addURL(k.arguments, url, "name");
}
});
}
if (component.slots) {
tag.slots = addURL(component.slots, url, "name");
}
if (component["vue-modifiers"]) {
attribute.required = false;
attribute["vue-modifiers"] = addURL(component["vue-modifiers"], url, "name");
if (attribute["vue-modifiers"].length < 1)
delete attribute["vue-modifiers"];
webTypes.contributions.html.attributes.push(attribute);
}
webTypes.contributions.html.tags.push(tag);
};
const createVeturTags = component => {
const attributes = [];
if (component.props) {
component.props.forEach(comp => {
attributes.push(comp.name);
});
}
if (attributes.length > 0) {
veturTags[component.name] = {
description: component.description,
attributes
};
}
};
const createVeturAttributes = component => {
if (component.props) {
component.props.forEach(comp => {
veturAttributes[component.name.toLowerCase() + `/${comp.name}`] = {
description: comp.description,
type: comp.type
};
});
}
};
Object.keys(fileModules).forEach(p => {
createWebTypes(fileModules[p][p]);
createVeturTags(fileModules[p][p]);
createVeturAttributes(fileModules[p][p]);
});
const webTypesJson = JSON.stringify(webTypes, null, 2);
fs.writeFileSync(path.resolve(distDir, "web-types.json"), webTypesJson);
const veturTagsJson = JSON.stringify(veturTags, null, 2);
fs.writeFileSync(path.resolve(distDir, "vetur-tags.json"), veturTagsJson);
const veturAttributesJson = JSON.stringify(veturAttributes, null, 2);
fs.writeFileSync(path.resolve(distDir, "vetur-attributes.json"), veturAttributesJson);

View File

@ -0,0 +1,58 @@
const AccordionProps = [
{
name: "multiple",
type: "boolean",
default: "false",
description: "When enabled, multiple tabs can be activated at the same time."
},
{
name: "activeIndex",
type: "number|array",
default: "null",
description: "Index of the active tab or an array of indexes in multiple mode."
}
];
const AccordionEvents = [
{
name: "tab-open",
description: "Callback to invoke when a tab gets expanded.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Original event"
},
{
name: "index",
type: "number",
description: "Opened tab index"
}
]
},
{
name: "tab-close",
description: "Callback to invoke when an active tab is collapsed by clicking on the header.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Original event"
},
{
name: "index",
type: "number",
description: "Closed tab index"
}
]
}
];
module.exports = {
accordion: {
name: "Accordion",
description: "Accordion groups a collection of contents in tabs.",
props: AccordionProps,
events: AccordionEvents
}
};

View File

@ -0,0 +1,28 @@
const AccordionTabProps = [
{
name: "header",
type: "string",
default: "null",
description: "Orientation of tab headers."
},
{
name: "active",
type: "boolean",
default: "null",
description: "Visibility of the content."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "Whether the tab is disabled."
}
];
module.exports = {
accordiontab: {
name: "AccordionTab",
description: "Accordion element consists of one or more AccordionTab elements.",
props: AccordionTabProps
}
};

View File

@ -0,0 +1,198 @@
const AutoCompleteProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "suggestions",
type: "array",
default: "null",
description: "An array of suggestions to display."
},
{
name: "field",
type: "any",
default: "null",
description: "Property name or getter function of a suggested object to resolve and display."
},
{
name: "optionGroupLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option group."
},
{
name: "optionGroupChildren",
type: "string",
default: "null",
description: "Property name or getter function that refers to the children options of option group."
},
{
name: "scrollHeight",
type: "string",
default: "200px",
description: "Maximum height of the suggestions panel."
},
{
name: "dropdown",
type: "boolean",
default: "false",
description: "Displays a button next to the input field when enabled."
},
{
name: "dropdownMode",
type: "string",
default: "blank",
description: 'Specifies the behavior dropdown button. Default "blank" mode sends an empty string and "current" mode sends the input value.'
},
{
name: "multiple",
type: "boolean",
default: "false",
description: "Specifies if multiple values can be selected."
},
{
name: "minLength",
type: "number",
default: "1",
description: "Minimum number of characters to initiate a search."
},
{
name: "delay",
type: "number",
default: "300",
description: "Delay between keystrokes to wait before sending a query."
},
{
name: "appendTo",
type: "string",
default: "body",
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name: "inputStyle",
type: "any",
default: "null",
description: "Inline style of the input field."
},
{
name: "inputClass",
type: "string",
default: "null",
description: "Style class of the input field."
},
{
name: "forceSelection",
type: "boolean",
default: "false",
description: "When present, autocomplete clears the manual input if it does not match of the suggestions to force only accepting values from the suggestions."
},
{
name: "panelClass",
type: "string",
default: "null",
description: "Style class of the overlay panel."
}
];
const AutoCompleteEvents = [
{
name: "complete",
description: "Callback to invoke to search for suggestions.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Original event"
},
{
name: "query",
type: "string",
description: "Value to search with"
}
]
},
{
name: "item-select",
description: "Callback to invoke when a suggestion is selected.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Original event"
},
{
name: "value",
type: "object",
description: "Selected item"
}
]
},
{
name: "item-unselect",
description: "Callback to invoke when a selected value is removed.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Original event"
},
{
name: "value",
type: "object",
description: "Unselected item"
}
]
},
{
name: "dropdown-click",
description: "Callback to invoke to when dropdown button is clicked.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Original event"
},
{
name: "query",
type: "string",
description: "Current value of the input field"
}
]
},
{
name: "clear",
description: "Callback to invoke when input is cleared by the user."
}
];
const AutoCompleteSlots = [
{
name: "item",
description: "Custom content for the item."
},
{
name: "optiongroup",
description: "Custom content for the optiongroup item."
},
{
name: "header",
description: "Custom content for the component header."
},
{
name: "footer",
description: "Custom content for the component footer."
}
];
module.exports = {
autocomplete: {
name: "AutoComplete",
description: "AutoComplete is an input component that provides real-time suggestions when being typed.",
props: AutoCompleteProps,
events: AutoCompleteEvents,
slots: AutoCompleteSlots
}
};

View File

@ -0,0 +1,40 @@
const AvatarProps = [
{
name: "label",
type: "string",
default: "null",
description: "Defines the text to display."
},
{
name: "icon",
type: "string",
default: "null",
description: "Defines the icon to display."
},
{
name: "image",
type: "string",
default: "null",
description: "Defines the image to display."
},
{
name: "size",
type: "string",
default: "null",
description: 'Size of the element, valid options are "large" and "xlarge".'
},
{
name: "shape",
type: "string",
default: "square",
description: 'Shape of the element, valid options are "square" and "circle".'
}
];
module.exports = {
avatar: {
name: "Avatar",
description: "Avatar represents people using icons, labels and images.",
props: AvatarProps
}
};

View File

@ -0,0 +1,7 @@
module.exports = {
avatargroup: {
name: "AvatarGroup",
"doc-url": "avatar",
description: "A set of Avatars can be displayed together using the AvatarGroup component."
}
};

View File

@ -0,0 +1,28 @@
const BadgeProps = [
{
name: "value",
type: "any",
default: "null",
description: "Value to display inside the badge."
},
{
name: "severity",
type: "string",
default: "null",
description: "Severity type of the badge."
},
{
name: "size",
type: "string",
default: "null",
description: 'Size of the badge, valid options are "large" and "xlarge".'
}
];
module.exports = {
badge: {
name: "Badge",
description: "Badge is a small status indicator for another element.",
props: BadgeProps
}
};

View File

@ -0,0 +1,26 @@
const BadgeDirectiveModifiers = [
{
name: "success",
description: "Overrides default severity color"
},
{
name: "info",
description: "Default color for severity levels"
},
{
name: "warning",
description: "Overrides default severity color"
},
{
name: "danger",
description: "Overrides default severity color"
}
];
module.exports = {
badgedirective: {
name: "BadgeDirective",
description: "When Badge used as a directive, badge needs to be configured at the application with a name of your choice.",
"vue-modifiers": BadgeDirectiveModifiers
}
};

View File

@ -0,0 +1,46 @@
const BlockUIProps = [
{
name: "blocked",
type: "array",
default: "null",
description: "Controls the blocked state."
},
{
name: "fullscreen",
type: "menuitem",
default: "null",
description: "When enabled, the whole document gets blocked."
},
{
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."
}
];
const BlockUIEvents = [
{
name: "block",
description: "Fired when the element gets blocked."
},
{
name: "unblock",
description: "Fired when the element gets unblocked."
}
];
module.exports = {
blockui: {
name: "BlockUI",
description: "BlockUI can either block other components or the whole page.",
props: BlockUIProps,
events: BlockUIEvents
}
};

View File

@ -0,0 +1,22 @@
const BreadcrumbProps = [
{
name: "model",
type: "array",
default: "null",
description: "An array of menuitems."
},
{
name: "home",
type: "menuitem",
default: "null",
description: "Configuration for the home icon."
}
];
module.exports = {
breadcrumb: {
name: "Breadcrumb",
description: "Breadcrumb provides contextual information about page hierarchy.",
props: BreadcrumbProps
}
};

View File

@ -0,0 +1,52 @@
const ButtonProps = [
{
name: "label",
type: "string",
default: "null",
description: "Text of the button."
},
{
name: "icon",
type: "string",
default: "null",
description: "Name of the icon."
},
{
name: "iconPos",
type: "string",
default: "left",
description: 'Position of the icon, valid values are "left", "right", "bottom" and "top".'
},
{
name: "badge",
type: "string",
default: "null",
description: "Value of the badge."
},
{
name: "badgeClass",
type: "string",
default: "null",
description: "Style class of the badge."
},
{
name: "loading",
type: "boolean",
default: "false",
description: "Whether the button is in loading state."
},
{
name: "loadingIcon",
type: "string",
default: "pi pi-spinner pi-spin",
description: "Icon to display in loading state."
}
];
module.exports = {
button: {
name: "Button",
description: "Button is an extension to standard button element with icons and theming.",
props: ButtonProps
}
};

View File

@ -0,0 +1,338 @@
const CalendarProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "selectionMode",
type: "string",
default: "single",
description: 'Defines the quantity of the selection, valid values are "single", "multiple" and "range".'
},
{
name: "dateFormat",
type: "string",
default: "null",
description: "Format of the date. Defaults to PrimeVue Locale configuration."
},
{
name: "inline",
type: "boolean",
default: "false",
description: "When enabled, displays the calendar as inline instead of an overlay."
},
{
name: "showOtherMonths",
type: "boolean",
default: "true",
description: "Whether to display dates in other months (non-selectable) at the start or end of the current month. To make these days selectable use the selectOtherMonths option."
},
{
name: "selectOtherMonths",
type: "boolean",
default: "false",
description: "Whether days in other months shown before or after the current month are selectable. This only applies if the showOtherMonths option is set to true."
},
{
name: "showIcon",
type: "boolean",
default: "false",
description: "When enabled, displays a button with icon next to input."
},
{
name: "icon",
type: "string",
default: "pi pi-calendar",
description: "Icon of the calendar button."
},
{
name: "numberOfMonths",
type: "number",
default: "1",
description: "Number of months to display."
},
{
name: "view",
type: "string",
default: "date",
description: 'Type of view to display, valid valids are "date" for datepicker and "month" for month picker.'
},
{
name: "touchUI",
type: "boolean",
default: "false",
description: "When enabled, calendar overlay is displayed as optimized for touch devices."
},
{
name: "monthNavigator",
type: "boolean",
default: "false",
description: "Whether the month should be rendered as a dropdown instead of text."
},
{
name: "yearNavigator",
type: "boolean",
default: "false",
description: "Whether the year should be rendered as a dropdown instead of text."
},
{
name: "yearRange",
type: "string",
default: "null",
description: "The range of years displayed in the year drop-down in (nnnn:nnnn) format such as (2000:2020)."
},
{
name: "panelClass",
type: "string",
default: "null",
description: "Style class of the datetimepicker panel."
},
{
name: "minDate",
type: "Date",
default: "null",
description: "The minimum selectable date."
},
{
name: "maxDate",
type: "Date",
default: "null",
description: "The maximum selectable date."
},
{
name: "disabledDates",
type: "array",
default: "null",
description: "Array with dates to disable."
},
{
name: "disabledDays",
type: "array",
default: "null",
description: "Array with disabled weekday numbers."
},
{
name: "maxDateCount",
type: "number",
default: "null",
description: "Maximum number of selectable dates in multiple mode."
},
{
name: "showOnFocus",
type: "boolean",
default: "true",
description: "When disabled, datepicker will not be visible with input focus."
},
{
name: "autoZIndex",
type: "boolean",
default: "true",
description: "Whether to automatically manage layering."
},
{
name: "baseZIndex",
type: "number",
default: "0",
description: "Base zIndex value to use in layering."
},
{
name: "showButtonBar",
type: "boolean",
default: "false",
description: "Whether to display today and clear buttons at the footer"
},
{
name: "shortYearCutoff",
type: "string",
default: "+10",
description: "The cutoff year for determining the century for a date."
},
{
name: "showTime",
type: "boolean",
default: "false",
description: "Whether to display timepicker."
},
{
name: "timeOnly",
type: "boolean",
default: "false",
description: "Whether to display timepicker only."
},
{
name: "hourFormat",
type: "string",
default: "24",
description: "Specifies 12 or 24 hour format."
},
{
name: "stepHour",
type: "number",
default: "1",
description: "Hours to change per step."
},
{
name: "stepMinute",
type: "number",
default: "1",
description: "Minutes to change per step."
},
{
name: "stepSeconds",
type: "number",
default: "1",
description: "Seconds to change per step."
},
{
name: "showSeconds",
type: "boolean",
default: "false",
description: "Whether to show the seconds in time picker."
},
{
name: "hideOnDateTimeSelect",
type: "boolean",
default: "false",
description: "Whether to hide the overlay on date selection when showTime is enabled."
},
{
name: "timeSeparator",
type: "string",
default: ":",
description: "Separator of time selector."
},
{
name: "showWeek",
type: "boolean",
default: "false",
description: "When enabled, calendar will show week numbers."
},
{
name: "manualInput",
type: "boolean",
default: "true",
description: "Wheter to allow prevents entering the date manually via typing."
},
{
name: "appendTo",
type: "string",
default: "body",
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name: "inputStyle",
type: "any",
default: "null",
description: "Inline style of the input field."
},
{
name: "inputClass",
type: "string",
default: "null",
description: "Style class of the input field."
}
];
const CalendarEvents = [
{
name: "date-select",
description: "Callback to invoke when a date is selected.",
arguments: [
{
name: "value",
type: "Date",
description: "Selected value"
}
]
},
{
name: "show",
description: "Callback to invoke when datepicker panel is shown."
},
{
name: "hide",
description: "Callback to invoke when datepicker panel is hidden."
},
{
name: "today-click",
description: "Callback to invoke when today button is clicked.",
arguments: [
{
name: "date",
type: "Date",
description: "Today as a date instance"
}
]
},
{
name: "clear-click",
description: "Callback to invoke when clear button is clicked.",
arguments: [
{
name: "event",
type: "object",
description: "Click event"
}
]
},
{
name: "month-change",
description: "Callback to invoke when a month is changed using the navigators.",
arguments: [
{
name: "event.month",
type: "number",
description: "New month"
},
{
name: "event.year",
type: "number",
description: "New year"
}
]
},
{
name: "year-change",
description: "Callback to invoke when a year is changed using the navigators.",
arguments: [
{
name: "event.month",
type: "number",
description: "New month"
},
{
name: "event.year",
type: "number",
description: "New year"
}
]
}
];
const CalendarSlots = [
{
name: "header",
description: "Custom content for the component header."
},
{
name: "footer",
description: "Custom content for the component footer."
},
{
name: "date",
description: "Custom content for the calendar cell."
}
];
module.exports = {
calendar: {
name: "Calendar",
description: "Calendar is an input component to select a date.",
props: CalendarProps,
events: CalendarEvents,
slots: CalendarSlots
}
};

View File

@ -0,0 +1,30 @@
const CardSlots = [
{
name: "header",
description: "Custom content for the component header."
},
{
name: "title",
description: "Custom content for the component title."
},
{
name: "subtitle",
description: "Custom content for the component subtitle."
},
{
name: "content",
description: "Custom content for the component content."
},
{
name: "footer",
description: "Custom content for the component footer."
}
];
module.exports = {
card: {
name: "Card",
description: "Card is a flexible container component.",
slots: CardSlots
}
};

View File

@ -0,0 +1,98 @@
const CarouselProps = [
{
name: "value",
type: "array",
default: "null",
description: "An array of objects to display."
},
{
name: "page",
type: "number",
default: "null",
description: "Index of the first item."
},
{
name: "circular",
type: "boolean",
default: "false",
description: "Defines if scrolling would be infinite."
},
{
name: "autoplayInterval",
type: "number",
default: "null",
description: "Time in milliseconds to scroll items automatically."
},
{
name: "numVisible",
type: "number",
default: "1",
description: "Number of items per page."
},
{
name: "numScroll",
type: "number",
default: "1",
description: "Number of items to scroll."
},
{
name: "responsiveOptions",
type: "any",
default: "null",
description: "An array of options for responsive design."
},
{
name: "orientation",
type: "string",
default: "horizontal",
description: 'Specifies the layout of the component, valid values are "horizontal" and "vertical".'
},
{
name: "verticalViewPortHeight",
type: "string",
default: "300px",
description: "Height of the viewport in vertical layout."
},
{
name: "contentClass",
type: "string",
default: "null",
description: "Style class of main content."
},
{
name: "containerClass",
type: "string",
default: "null",
description: "Style class of the viewport container."
},
{
name: "indicatorsContentClass",
type: "string",
default: "null",
description: "Style class of the indicator items."
}
];
const CarouselSlots = [
{
name: "header",
description: "Custom content for the component header."
},
{
name: "footer",
description: "Custom content for the component footer."
},
{
name: "item",
description: "Custom content for the component item."
}
];
module.exports = {
carousel: {
name: "Carousel",
description: "Carousel is a content slider featuring various customization options.",
props: CarouselProps,
slots: CarouselSlots
}
};

View File

@ -0,0 +1,158 @@
const CascadeSelectProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "options",
type: "array",
default: "null",
description: "An array of selectitems to display as the available options."
},
{
name: "optionLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option."
},
{
name: "optionValue",
type: "string",
default: "null",
description: "Property name or getter function to use as the value of an option, defaults to the option itself when not defined."
},
{
name: "optionGroupLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option group."
},
{
name: "optionGroupChildren",
type: "string",
default: "null",
description: "Property name or getter function to retrieve the items of a group."
},
{
name: "placeholder",
type: "string",
default: "null",
description: "Default text to display when no option is selected."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the component should be disabled."
},
{
name: "dataKey",
type: "string",
default: "null",
description: "A property to uniquely identify an option."
},
{
name: "tabindex",
type: "number",
default: "null",
description: "Index of the element in tabbing order."
},
{
name: "inputId",
type: "string",
default: "null",
description: "Identifier of the underlying input element."
},
{
name: "ariaLabelledBy",
type: "string",
default: "null",
description: "Establishes relationships between the component and label(s) where its value should be one or more element IDs."
},
{
name: "appendTo",
type: "string",
default: "body",
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name: "panelClass",
type: "string",
default: "null",
description: "Style class of the overlay panel."
}
];
const CascadeSelectEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Browser event"
},
{
name: "value",
type: "object",
description: "Selected option value"
}
]
},
{
name: "group-change",
description: "Callback to invoke when a group changes.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Browser event"
},
{
name: "value",
type: "object",
description: "Selected option value"
}
]
},
{
name: "before-show",
description: "Callback to invoke before the overlay is shown."
},
{
name: "before-hide",
description: "Callback to invoke before the overlay is hidden."
},
{
name: "show",
description: "Callback to invoke when the overlay is shown."
},
{
name: "hide",
description: "Callback to invoke when the overlay is hidden."
}
];
const CascadeSelectSlots = [
{
name: "value",
description: "Custom content for the item's value"
},
{
name: "option",
description: "Custom content for the item's option"
}
];
module.exports = {
cascadeselect: {
name: "CascadeSelect",
description: "CascadeSelect displays a nested structure of options.",
props: CascadeSelectProps,
events: CascadeSelectEvents,
slots: CascadeSelectSlots
}
};

View File

@ -0,0 +1,75 @@
const ChartProps = [
{
name: "type",
type: "string",
default: "null",
description: "Type of the chart."
},
{
name: "data",
type: "any",
default: "null",
description: "Data to display."
},
{
name: "options",
type: "any",
default: "null",
description: "Options to customize the chart."
},
{
name: "width",
type: "number",
default: "300",
description: "Width of the chart in non-responsive mode."
},
{
name: "height",
type: "number",
default: "150",
description: "Height of the chart in non-responsive mode."
}
];
const ChartEvents = [
{
name: "select",
description: "Callback to invoke when a tab gets expanded.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Browser event"
},
{
name: "dataset",
type: "object",
description: "Selected dataset"
},
{
name: "element",
type: "object",
description: "Selected element"
},
{
name: "element._datasetIndex",
type: "number",
description: "Index of the dataset in data"
},
{
name: "element._index",
type: "number",
description: "Index of the data in dataset"
}
]
}
];
module.exports = {
chart: {
name: "Chart",
description: "Chart components are based on Charts.js, an open source HTML5 based charting library.",
props: ChartProps,
events: ChartEvents
}
};

View File

@ -0,0 +1,28 @@
const CheckboxProps = [
{
name: "value",
type: "any",
default: "null",
description: "Value of the checkbox."
},
{
name: "modelValue",
type: "any",
default: "null",
description: "Value binding of the checkbox."
},
{
name: "binary",
type: "boolean",
default: "false",
description: "Allows to select a boolean value instead of multiple values."
}
];
module.exports = {
checkbox: {
name: "Checkbox",
description: "Checkbox is an extension to standard checkbox element with theming.",
props: CheckboxProps
}
};

View File

@ -0,0 +1,55 @@
const ChipProps = [
{
name: "label",
type: "string",
default: "null",
description: "Defines the text to display."
},
{
name: "icon",
type: "string",
default: "null",
description: "Defines the icon to display."
},
{
name: "image",
type: "string",
default: "null",
description: "Defines the image to display."
},
{
name: "removable",
type: "boolean",
default: "false",
description: "Whether to display a remove icon."
},
{
name: "removeIconClass",
type: "string",
default: "pi pi-times-circle",
description: "Icon of the remove element."
}
];
const ChipEvents = [
{
name: "remove",
description: "Callback to invoke when a chip is removed.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
}
];
module.exports = {
chip: {
name: "Chip",
description: "Chip represents entities using icons, labels and images",
props: ChipProps,
events: ChipEvents
}
};

View File

@ -0,0 +1,84 @@
const ChipsProps = [
{
name: "modelValue",
type: "array",
default: "null",
description: "Value of the component."
},
{
name: "max",
type: "number",
default: "null",
description: "Maximum number of entries allowed."
},
{
name: "separator",
type: "string",
default: "null",
description: 'Separator char to add an item when pressed in addition to the enter key. Currently only possible value is ","'
},
{
name: "addOnBlur",
type: "boolean",
default: "false",
description: "Whether to add an item when the input loses focus."
},
{
name: "allowDuplicate",
type: "boolean",
default: "false",
description: "Whether to allow duplicate values or not."
}
];
const ChipsEvents = [
{
name: "add",
description: "Callback to invoke when a chip is added.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Browser event"
},
{
name: "value",
type: "array",
description: "Added item value"
}
]
},
{
name: "remove",
description: "Callback to invoke when a chip is removed.",
arguments: [
{
name: "originalEvent",
type: "object",
description: "Browser event"
},
{
name: "value",
type: "array",
description: "Removed item value"
}
]
}
];
const ChipsSlots = [
{
name: "chips",
description: "Custom content for the chips"
}
];
module.exports = {
chips: {
name: "chips",
description: "Chips is used to enter multiple values on an input field.",
props: ChipsProps,
events: ChipsEvents,
slots: ChipsSlots
}
};

View File

@ -0,0 +1,76 @@
const ColorPickerProps = [
{
name: "modelValue",
type: "string",
default: "null",
description: "Value of the component."
},
{
name: "defaultColor",
type: "string",
default: "ff0000",
description: "Initial color to display when value is not defined."
},
{
name: "inline",
type: "boolean",
default: "false",
description: "Whether to display as an overlay or not."
},
{
name: "format",
type: "string",
default: "hex",
description: 'Format to use in value binding, supported formats are "hex", "rgb" and "hsb".'
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the component should be disabled."
},
{
name: "tabIndex",
type: "string",
default: "null",
description: "Index of the element in tabbing order."
},
{
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: "ariaLabelledBy",
type: "string",
default: "null",
description: "Establishes relationships between the component and label(s) where its value should be one or more element IDs."
},
{
name: "panelClass",
type: "string",
default: "null",
description: "Style class of the overlay panel."
},
{
name: "appendTo",
type: "string",
default: "body",
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
}
];
module.exports = {
colorpicker: {
name: "ColorPicker",
description: "ColorPicker is an input component to select a color.",
props: ColorPickerProps
}
};

View File

@ -0,0 +1,285 @@
const ColumnProps = [
{
name: "columnKey",
type: "any",
default: "null",
description: "Identifier of a column if field property is not defined."
},
{
name: "field",
type: "string",
default: "null",
description: "Property represented by the column."
},
{
name: "sortField",
type: "string",
default: "null",
description: "Property name to use in sorting, defaults to field."
},
{
name: "filterField",
type: "string",
default: "null",
description: "Property name to use in filtering, defaults to field."
},
{
name: "sortable",
type: "any",
default: "false",
description: "Defines if a column is sortable."
},
{
name: "header",
type: "any",
default: "null",
description: "Header content of the column."
},
{
name: "footer",
type: "any",
default: "null",
description: "Footer content of the column."
},
{
name: "style",
type: "object",
default: "null",
description: "Inline style of header, body and footer cells."
},
{
name: "class",
type: "string",
default: "null",
description: "Style class of header, body and footer cells."
},
{
name: "headerStyle",
type: "object",
default: "null",
description: "Inline style of the column header."
},
{
name: "headerClass",
type: "string",
default: "null",
description: "Style class of the column header."
},
{
name: "bodyStyle",
type: "object",
default: "null",
description: "Inline style of the column body."
},
{
name: "bodyClass",
type: "string",
default: "null",
description: "Style class of the column body."
},
{
name: "footerStyle",
type: "object",
default: "null",
description: "Inline style of the column footer."
},
{
name: "footerClass",
type: "string",
default: "null",
description: "Style class of the footer body."
},
{
name: "showFilterMenu",
type: "boolean",
default: "true",
description: "Whether to display the filter overlay."
},
{
name: "showFilterOperator",
type: "boolean",
default: "true",
description: "When enabled, match all and match any operator selector is displayed."
},
{
name: "showClearButton",
type: "boolean",
default: "true",
description: "Displays a button to clear the column filtering."
},
{
name: "showApplyButton",
type: "boolean",
default: "true",
description: "Displays a button to apply the column filtering."
},
{
name: "showFilterMatchModes",
type: "boolean",
default: "true",
description: "Whether to show the match modes selector."
},
{
name: "showAddButton",
type: "boolean",
default: "true",
description: "When enabled, a button is displayed to add more rules."
},
{
name: "filterMatchModeOptions",
type: "array",
default: "null",
description: "An array of label-value pairs to override the global match mode options."
},
{
name: "maxConstraints",
type: "number",
default: "2",
description: "Maximum number of constraints for a column filter."
},
{
name: "excludeGlobalFilter",
type: "boolean",
default: "false",
description: "Whether to exclude from global filtering or not."
},
{
name: "filterHeaderStyle",
type: "object",
default: "null",
description: "Inline style of the column filter header in row filter display."
},
{
name: "filterHeaderClass",
type: "string",
default: "null",
description: "Style class of the column filter header in row filter display."
},
{
name: "filterMenuStyle",
type: "object",
default: "null",
description: "Inline style of the column filter overlay."
},
{
name: "filterMenuClass",
type: "string",
default: "null",
description: "Style class of the column filter overlay."
},
{
name: "selectionMode",
type: "string",
default: "null",
description: 'Defines column based selection mode, options are "single" and "multiple".'
},
{
name: "expander",
type: "boolean",
default: "false",
description: "Displays an icon to toggle row expansion."
},
{
name: "colspan",
type: "number",
default: "null",
description: "Number of columns to span for grouping."
},
{
name: "rowspan",
type: "number",
default: "null",
description: "Number of rows to span for grouping."
},
{
name: "rowReorder",
type: "boolean",
default: "false",
description: "Whether this column displays an icon to reorder the rows."
},
{
name: "rowReorderIcon",
type: "string",
default: "pi pi-bars",
description: "Icon of the drag handle to reorder rows."
},
{
name: "reorderableColumn",
type: "boolean",
default: "true",
description: "Defines if the column itself can be reordered with dragging."
},
{
name: "rowEditor",
type: "boolean",
default: "false",
description: "When enabled, column displays row editor controls."
},
{
name: "frozen",
type: "boolean",
default: "false",
description: "Whether the column is fixed in horizontal scrolling."
},
{
name: "alignFrozen",
type: "string",
default: "left",
description: "Position of a frozen column, valid values are left and right."
},
{
name: "exportable",
type: "boolean",
default: "true",
description: "Whether the column is included in data export."
}
];
const ColumnSlots = [
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "body",
description: "Custom content for the component's body"
},
{
name: "footer",
description: "Custom content for the component's footer"
},
{
name: "editor",
description: "Custom content for the editing cell"
},
{
name: "filter",
description: "Custom content for the filtering items"
},
{
name: "filterheader",
description: "Custom content for the filter menu's header"
},
{
name: "filterfooter",
description: "Custom content for the filter menu's footer"
},
{
name: "filterclear",
description: "Custom content for the filter menu's clear section"
},
{
name: "filterapply",
description: "Custom content for the filter menu's apply section"
}
];
module.exports = {
column: {
name: "Column",
description: "DataTable requires a value as an array of objects and columns defined with Column component.",
"doc-url": "datatable",
props: ColumnProps,
slots: ColumnSlots
}
};

View File

@ -0,0 +1,7 @@
module.exports = {
columngroup: {
name: "ColumnGroup",
description: "Columns can be grouped at header and footer sections by defining a ColumnGroup with nested rows and columns",
"doc-url": "datatable"
}
};

View File

@ -0,0 +1,22 @@
const ConfirmDialogProps = [
{
name: "group",
type: "string",
default: "null",
description: "Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance."
},
{
name: "breakpoints",
type: "object",
default: "null",
description: "Object literal to define widths per screen size."
}
];
module.exports = {
confirmdialog: {
name: "ConfirmDialog",
description: "ConfirmDialog uses a Dialog UI that is integrated with the Confirmation API.",
props: ConfirmDialogProps
}
};

View File

@ -0,0 +1,16 @@
const ConfirmPopupProps = [
{
name: "group",
type: "string",
default: "null",
description: "Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance."
}
];
module.exports = {
confirmpopup: {
name: "ConfirmPopup",
description: "ConfirmPopup displays a confirmation overlay displayed relatively to its target.",
props: ConfirmPopupProps
}
};

View File

@ -0,0 +1,40 @@
const ContextMenuProps = [
{
name: "model",
type: "array",
default: "null",
description: "An array of menuitems."
},
{
name: "appendTo",
type: "string",
default: "body",
description: "A valid query selector or an HTMLElement to specify where the overlay gets attached."
},
{
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: "global",
type: "boolean",
default: "false",
description: "Attaches the menu to document instead of a particular item."
}
];
module.exports = {
contextmenu: {
name: "ContextMenu",
description: "ContextMenu displays an overlay menu on right click of its target.",
props: ContextMenuProps
}
};

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,162 @@
const DataViewProps = [
{
name: "value",
type: "array",
default: "null",
description: "An array of objects to display."
},
{
name: "layout",
type: "string",
default: "list",
description: 'Layout of the items, valid values are "list" and "grid".'
},
{
name: "rows",
type: "number",
default: "0",
description: "Number of rows to display per page."
},
{
name: "first",
type: "number",
default: "0",
description: "ndex of the first record to render."
},
{
name: "totalRecords",
type: "number",
default: "null",
description: "Number of total records, defaults to length of value when not defined."
},
{
name: "paginator",
type: "boolean",
default: "false",
description: "When specified as true, enables the pagination."
},
{
name: "paginatorPosition",
type: "string",
default: "bottom",
description: 'Position of the paginator, options are "top","bottom" or "both".'
},
{
name: "alwaysShowPaginator",
type: "boolean",
default: "true",
description: "Whether to show it even there is only one page."
},
{
name: "paginatorTemplate",
type: "string",
default: "FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown",
description: "Template of the paginator."
},
{
name: "pageLinkSize",
type: "number",
default: "5",
description: "Number of page links to display."
},
{
name: "rowsPerPageOptions",
type: "array",
default: "null",
description: "Array of integer values to display inside rows per page dropdown."
},
{
name: "currentPageReportTemplate",
type: "string",
default: "({currentPage} of {totalPages})",
description: "Template of the current page report element."
},
{
name: "sortField",
type: "string",
default: "null",
description: "Property name or a getter function of data to use in sorting by default."
},
{
name: "sortOrder",
type: "number",
default: "null",
description: "Order to sort the data by default."
},
{
name: "lazy",
type: "boolean",
default: "false",
description: "Defines if data is loaded and interacted with in lazy manner."
}
];
const DataViewEvents = [
{
name: "page",
description: "Callback to invoke when page changes, the event object contains information about the new state.",
arguments: [
{
name: "event.page",
type: "number",
description: "New page number"
},
{
name: "event.first",
type: "number",
description: "Index of first record"
},
{
name: "event.rows",
type: "number",
description: "Number of rows to display in new page"
},
{
name: "event.pageCount",
type: "number",
description: "Total number of pages"
}
]
}
];
const DataViewSlots = [
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "paginatorLeft",
description: "Custom content for the component paginator's left side"
},
{
name: "paginatorRight",
description: "Custom content for the component paginator's right side"
},
{
name: "list",
description: "Content for the list layout"
},
{
name: "grid",
description: "Content for the grid layout"
},
{
name: "empty",
description: "Custom content when there is no data to display"
},
{
name: "footer",
description: "Custom content for the component's footer"
}
];
module.exports = {
dataview: {
name: "DataView",
description: "DataView displays data in grid or list layout with pagination and sorting features.",
props: DataViewProps,
events: DataViewEvents,
slots: DataViewSlots
}
};

View File

@ -0,0 +1,7 @@
module.exports = {
dataviewlayoutoptions: {
name: "DataViewLayoutOptions",
description: "When both layout modes are enabled in DataView, a UI element would be necessary to let the user toggle between the view. DataViewLayoutOptions is a helper component to display a buttonset to choose the layout mode in DataView.",
"doc-url": "dataview"
}
};

View File

@ -0,0 +1,21 @@
const DeferredContentEvents = [
{
name: "load",
description: "Callback to invoke when deferred content is loaded..",
arguments: [
{
name: "event",
type: "object",
description: "Event object"
}
]
}
];
module.exports = {
deferredcontent: {
name: "DeferredContent",
description: "DeferredContent postpones the loading the content that is initially not in the viewport until it becomes visible on scroll.",
events: DeferredContentEvents
}
};

View File

@ -0,0 +1,172 @@
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."
}
];
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",
description: "Fire when a dialog gets unmaximized.",
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
}
};

View File

@ -0,0 +1,28 @@
const DividerProps = [
{
name: "align",
type: "string",
default: "null",
description: 'Alignment of the content, options are "left", "center", "right" for horizontal layout and "top", "center", "bottom" for vertical.'
},
{
name: "layout",
type: "string",
default: "horizontal",
description: 'Specifies the orientation, valid values are "horizontal" and "vertical".'
},
{
name: "type",
type: "string",
default: "solid",
description: 'Border style type, default is "solid" and other options are "dashed" and "dotted".'
}
];
module.exports = {
divider: {
name: "Divider",
description: "Divider is used to separate contents.",
props: DividerProps
}
};

View File

@ -0,0 +1,249 @@
const DividerProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "options",
type: "array",
default: "null",
description: "An array of selectitems to display as the available options."
},
{
name: "optionLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option."
},
{
name: "optionValue",
type: "string",
default: "null",
description: "Property name or getter function to use as the value of an option, defaults to the option itself when not defined."
},
{
name: "optionDisabled",
type: "boolean",
default: "null",
description: "Property name or getter function to use as the disabled flag of an option, defaults to false when not defined."
},
{
name: "optionGroupLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option group."
},
{
name: "optionGroupChildren",
type: "string",
default: "null",
description: "Property name or getter function that refers to the children options of option group."
},
{
name: "scrollHeight",
type: "string",
default: "200px",
description: "Height of the viewport in pixels, a scrollbar is defined if height of list exceeds this value."
},
{
name: "filter",
type: "boolean",
default: "false",
description: "When specified, displays a filter input at header."
},
{
name: "filterPlaceholder",
type: "string",
default: "null",
description: "Placeholder text to show when filter input is empty."
},
{
name: "filterLocale",
type: "string",
default: "undefined",
description: "Locale to use in filtering. The default locale is the host environment's current locale."
},
{
name: "filterMatchMode",
type: "string",
default: "contains",
description: 'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"'
},
{
name: "filterFields",
type: "array",
default: "null",
description: "Fields used when filtering the options, defaults to optionLabel."
},
{
name: "editable",
type: "boolean",
default: "false",
description: "When present, custom value instead of predefined options can be entered using the editable input field."
},
{
name: "placeholder",
type: "string",
default: "null",
description: "Default text to display when no option is selected."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the component should be disabled."
},
{
name: "dataKey",
type: "string",
default: "null",
description: "A property to uniquely identify an option."
},
{
name: "showClear",
type: "boolean",
default: "false",
description: "When enabled, a clear icon is displayed to clear the value."
},
{
name: "tabindex",
type: "number",
default: "null",
description: "Index of the element in tabbing order."
},
{
name: "inputId",
type: "string",
default: "null",
description: "Identifier of the underlying input element."
},
{
name: "ariaLabelledBy",
type: "string",
default: "null",
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name: "emptyFilterMessage",
type: "string",
default: "No results found",
description: "Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration."
},
{
name: "emptyMessage",
type: "string",
default: "No results found",
description: "Text to display when there are no options available. Defaults to value from PrimeVue locale configuration."
},
{
name: "panelClass",
type: "string",
default: "null",
description: "Style class of the overlay panel."
}
];
const DividerEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "string",
description: "Selected option value"
}
]
},
{
name: "input",
description: "Callback to invoke on value change.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
},
{
name: "before-show",
description: "Callback to invoke before the overlay is shown."
},
{
name: "before-hide",
description: "Callback to invoke before the overlay is hidden."
},
{
name: "show",
description: "Callback to invoke when the overlay is shown."
},
{
name: "hide",
description: "Callback to invoke when the overlay is hidden."
},
{
name: "filter",
description: "Callback to invoke when the overlay is shown.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "string",
description: "Filter value"
}
]
}
];
const DividerSlots = [
{
name: "option",
description: "Custom content for the item's option"
},
{
name: "optiongroup",
description: "Custom content for the item's optiongroup"
},
{
name: "value",
description: "Custom content for the item's value"
},
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "footer",
description: "Custom content for the component's footer"
},
{
name: "emptyfilter",
description: "Custom content when there is no filtered data to display"
},
{
name: "empty",
description: "Custom content when there is no data to display"
}
];
module.exports = {
dropdown: {
name: "Dropdown",
description: "Dropdown is used to select an item from a list of options.",
props: DividerProps,
events: DividerEvents,
slots: DividerSlots
}
};

View File

@ -0,0 +1,94 @@
const EditorProps = [
{
name: "modelValue",
type: "string",
default: "null",
description: "Value of the content."
},
{
name: "placeholder",
type: "string",
default: "null",
description: "Placeholder text to show when editor is empty."
},
{
name: "readonly",
type: "boolean",
default: "false",
description: "Whether to instantiate the editor to readonly mode."
},
{
name: "formats",
type: "string[]",
default: "null",
description: "Whitelist of formats to display."
},
{
name: "editorStyle",
type: "any",
default: "null",
description: "Inline style of the container."
}
];
const EditorEvents = [
{
name: "text-change",
description: "Callback to invoke when text of editor changes.",
arguments: [
{
name: "event.delta",
type: "object",
description: "Representation of the change."
},
{
name: "event.source",
type: "string",
description: 'Source of change. Will be either "user" or "api".'
},
{
name: "event.htmlValue",
type: "string",
description: "Current value as html."
},
{
name: "event.textValue",
type: "string",
description: "Current value as text."
},
{
name: "event.instance",
type: "object",
description: "Text editor instance."
}
]
},
{
name: "input",
description: "Callback to invoke when text of editor changes.",
arguments: [
{
name: "event",
type: "object",
description: "Current value as html."
}
]
}
];
const EditorSlots = [
{
name: "toolbar",
description: "Custom content for the component's toolbar"
}
];
module.exports = {
editor: {
name: "Editor",
description: "Editor is rich text editor component based on Quill.",
props: EditorProps,
events: EditorEvents,
slots: EditorSlots
}
};

View File

@ -0,0 +1,57 @@
const FieldsetProps = [
{
name: "legend",
type: "string",
default: "null",
description: "Header text of the fieldset."
},
{
name: "toggleable",
type: "boolean",
default: "null",
description:
"When specified, content can toggled by clicking the legend."
},
{
name: "collapsed",
type: "boolean",
default: "true",
description: "Defines the default visibility state of the content."
}
];
const FieldsetEvents = [
{
name: "toggle",
description: "Callback to invoke when a tab gets expanded or collapsed.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "boolean",
description: "collapsed state as a boolean"
}
]
}
];
const FieldsetSlots = [
{
name: "legend",
description: "Custom content for the component's header"
}
];
module.exports = {
fieldset: {
name: "Fieldset",
description: "Fieldset is a grouping component with the optional content toggle feature.",
props: FieldsetProps,
events: FieldsetEvents,
slots: FieldsetSlots
}
};

View File

@ -0,0 +1,247 @@
const FileUploadProps = [
{
name: "name",
type: "string",
default: "null",
description: "Name of the request parameter to identify the files at backend."
},
{
name: "url",
type: "string",
default: "null",
description: "Remote url to upload the files."
},
{
name: "mode",
type: "string",
default: "advanced",
description: 'Defines the UI of the component, possible values are "advanced" and "basic".'
},
{
name: "multiple",
type: "boolean",
default: "false",
description: "Used to select multiple files at once from file dialog."
},
{
name: "accept",
type: "string",
default: "null",
description: 'Pattern to restrict the allowed file types such as "image/*".'
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "Disables the upload functionality."
},
{
name: "auto",
type: "boolean",
default: "false",
description: "When enabled, upload begins automatically after selection is completed."
},
{
name: "maxFileSize",
type: "number",
default: "null",
description: "Maximum file size allowed in bytes."
},
{
name: "invalidFileSizeMessage",
type: "string",
default: '"{0}: Invalid file size, file size should be smaller than {1}."',
description: "Message of the invalid fize size."
},
{
name: "invalidFileLimitMessage",
type: "string",
default: "Maximum number of files exceeded, limit is {0} at most.",
description: "Message to display when number of files to be uploaded exceeeds the limit."
},
{
name: "fileLimit",
type: "number",
default: "null",
description: "Maximum number of files that can be uploaded."
},
{
name: "withCredentials",
type: "boolean",
default: "false",
description: "Cross-site Access-Control requests should be made using credentials such as cookies, authorization headers or TLS client certificates."
},
{
name: "previewWidth",
type: "number",
default: "50",
description: "Width of the image thumbnail in pixels."
},
{
name: "chooseLabel",
type: "string",
default: "null",
description: "Label of the choose button. Defaults to PrimeVue Locale configuration."
},
{
name: "uploadLabel",
type: "string",
default: "Upoad",
description: "Label of the upload button. Defaults to PrimeVue Locale configuration."
},
{
name: "cancelLabel",
type: "string",
default: "Cancel",
description: "Label of the cancel button. Defaults to PrimeVue Locale configuration."
},
{
name: "customUpload",
type: "boolean",
default: "false",
description: "Whether to use the default upload or a manual implementation defined in uploadHandler callback. Defaults to PrimeVue Locale configuration."
},
{
name: "showUploadButton",
type: "boolean",
default: "true",
description: "Whether to show the upload button."
},
{
name: "showCancelButton",
type: "boolean",
default: "true",
description: "Whether to cancel the upload button."
}
];
const FileUploadEvents = [
{
name: "before-upload",
description: "Callback to invoke before file upload begins to customize the request such as post parameters before the files.",
arguments: [
{
name: "event.xhr",
type: "object",
description: "XmlHttpRequest instance."
},
{
name: "event.formData",
type: "object",
description: "FormData object."
}
]
},
{
name: "before-send",
description: "Callback to invoke before file send begins to customize the request such as adding headers.",
arguments: [
{
name: "event.xhr",
type: "object",
description: "XmlHttpRequest instance."
},
{
name: "event.formData",
type: "object",
description: "FormData object."
}
]
},
{
name: "upload",
description: "Callback to invoke when file upload is complete.",
arguments: [
{
name: "event.xhr",
type: "object",
description: "XmlHttpRequest instance."
},
{
name: "event.files",
type: "object",
description: "Uploaded files."
}
]
},
{
name: "error",
description: "Callback to invoke if file upload fails.",
arguments: [
{
name: "event.xhr",
type: "object",
description: "XmlHttpRequest instance."
},
{
name: "event.files",
type: "object",
description: "Files that are not uploaded."
}
]
},
{
name: "clear",
description: "Callback to invoke when files in queue are removed without uploading."
},
{
name: "select",
description: "Callback to invoke when file upload is complete.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Original browser event."
},
{
name: "event.files",
type: "object",
description: "List of selected files."
}
]
},
{
name: "progress",
description: "Callback to invoke when files are selected.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Original browser event."
},
{
name: "event.progress",
type: "number",
description: "Calculated progress value."
}
]
},
{
name: "uploader",
description: "Callback to invoke to implement a custom upload.",
arguments: [
{
name: "event.files",
type: "object",
description: "List of selected files."
}
]
}
];
const FileUploadSlots = [
{
name: "empty",
description: "Custom content when there is no selected file"
}
];
module.exports = {
fileupload: {
name: "FileUpload",
description: "FileUpload is an advanced uploader with dragdrop support, multi file uploads, auto uploading, progress tracking and validations.",
props: FileUploadProps,
events: FileUploadEvents,
slots: FileUploadSlots
}
};

View File

@ -0,0 +1,22 @@
const FullCalendarProps = [
{
name: "events",
type: "array",
default: "null",
description: "An array of events to display."
},
{
name: "options",
type: "object",
default: "null",
description: "A configuration object to define properties of FullCalendar."
}
];
module.exports = {
fullcalendar: {
name: "FullCalendar",
description: "An event calendar based on the FullCalendar library.",
props: FullCalendarProps
}
};

View File

@ -0,0 +1,182 @@
const GalleriaProps = [
{
name: "id",
type: "string",
default: "null",
description: "Unique identifier of the element."
},
{
name: "value",
type: "array",
default: "null",
description: "An array of objects to display."
},
{
name: "activeIndex",
type: "number",
default: "0",
description: "Index of the first item."
},
{
name: "fullscreen",
type: "boolean",
default: "false",
description: "Whether to display the component on fullscreen."
},
{
name: "visible",
type: "boolean",
default: "false",
description: "Specifies the visibility of the mask on fullscreen mode."
},
{
name: "numVisible",
type: "number",
default: "3",
description: "Number of items per page."
},
{
name: "responsiveOptions",
type: "any",
default: "null",
description: "An array of options for responsive design."
},
{
name: "showItemNavigators",
type: "boolean",
default: "false",
description: "Whether to display navigation buttons in item section."
},
{
name: "showThumbnailNavigators",
type: "boolean",
default: "true",
description: "Whether to display navigation buttons in thumbnail container."
},
{
name: "showItemNavigatorsOnHover",
type: "boolean",
default: "false",
description: "Whether to display navigation buttons on item hover."
},
{
name: "changeItemOnIndicatorHover",
type: "boolean",
default: "false",
description: "When enabled, item is changed on indicator hover."
},
{
name: "circular",
type: "boolean",
default: "false",
description: "Defines if scrolling would be infinite."
},
{
name: "autoPlay",
type: "boolean",
default: "false",
description: "Items are displayed with a slideshow in autoPlay mode."
},
{
name: "transitionInterval",
type: "number",
default: "4000",
description: "Time in milliseconds to scroll items."
},
{
name: "showThumbnails",
type: "boolean",
default: "true",
description: "Whether to display thumbnail container."
},
{
name: "thumbnailsPosition",
type: "string",
default: "bottom",
description: 'Position of thumbnails. Valid values are "bottom", "top", "left" and "right".'
},
{
name: "verticalThumbnailViewPortHeight",
type: "string",
default: "300px",
description: "Height of the viewport in vertical thumbnail."
},
{
name: "showIndicators",
type: "boolean",
default: "false",
description: "Whether to display indicator container."
},
{
name: "showIndicatorsOnItem",
type: "boolean",
default: "false",
description: "When enabled, indicator container is displayed on item container."
},
{
name: "indicatorsPosition",
type: "string",
default: "bottom",
description: 'Position of indicators. Valid values are "bottom", "top", "left" and "right".'
},
{
name: "baseZIndex",
type: "number",
default: "0",
description: "ase zIndex value to use in layering."
},
{
name: "maskClass",
type: "string",
default: "null",
description: "Style class of the mask on fullscreen mode."
},
{
name: "containerStyle",
type: "string",
default: "null",
description: "Inline style of the component on fullscreen mode. Otherwise, the 'style' property can be used."
},
{
name: "galleriaClass",
type: "string",
default: "null",
description: "Style class of the component on fullscreen mode. Otherwise, the 'class' property can be used."
}
];
const GalleriaSlots = [
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "footer",
description: "Custom content for the component's header"
},
{
name: "item",
description: "Custom content for the item"
},
{
name: "caption",
description: "Custom caption content"
},
{
name: "thumbnail",
description: "Custom thumbnail content"
},
{
name: "indicator",
description: "Custom indicator content"
}
];
module.exports = {
galleria: {
name: "Galleria",
description: "Galleria is an advanced content gallery component.",
props: GalleriaProps,
slots: GalleriaSlots
}
};

View File

@ -0,0 +1,17 @@
const InlineMessageProps = [
{
name: "severity",
type: "string",
default: "info",
description: 'Severity level of the message. Valid severities are "success", "info", "warn" and "error".'
}
];
module.exports = {
inlinemessage: {
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
}
};

View File

@ -0,0 +1,60 @@
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."
}
];
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
}
};

View File

@ -0,0 +1,40 @@
const InputMaskProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "mask",
type: "string",
default: "null",
description: "Mask pattern."
},
{
name: "slotChar",
type: "string",
default: "-",
description: "Placeholder character in mask, default is underscore."
},
{
name: "autoClear",
type: "boolean",
default: "true",
description: "Clears the incomplete value on blur."
},
{
name: "unmask",
type: "boolean",
default: "false",
description: "Defines if model sets the raw unmasked value to bound value or the formatted mask value."
}
];
module.exports = {
inputmask: {
name: "InputMask",
description: "InputMask component is used to enter input in a certain format such as numeric, date, currency, email and phone.",
props: InputMaskProps
}
};

View File

@ -0,0 +1,168 @@
const InputNumberProps = [
{
name: "modelValue",
type: "number",
default: "null",
description: "Value of the component."
},
{
name: "format",
type: "boolean",
default: "true",
description: "Whether to format the value."
},
{
name: "showButtons",
type: "boolean",
default: "false",
description: "Displays spinner buttons."
},
{
name: "buttonLayout",
type: "string",
default: "stacked",
description: 'Layout of the buttons, valid values are "stacked" (default), "horizontal" and "vertical".'
},
{
name: "incrementButtonClass",
type: "string",
default: "null",
description: "Style class of the increment button."
},
{
name: "decrementButtonClass",
type: "string",
default: "null",
description: "Style class of the decrement button."
},
{
name: "incrementButtonIcon",
type: "string",
default: "pi pi-angle-up",
description: "Style class of the increment button."
},
{
name: "decrementButtonIcon",
type: "string",
default: "pi pi-angle-down",
description: "Style class of the decrement button."
},
{
name: "locale",
type: "string",
default: "null",
description: "Locale to be used in formatting."
},
{
name: "localeMatcher",
type: "string",
default: "best fit",
description: 'The locale matching algorithm to use. Possible values are "lookup" and "best fit".'
},
{
name: "mode",
type: "string",
default: "decimal",
description: 'Defines the behavior of the component, valid values are "decimal" and "currency".'
},
{
name: "prefix",
type: "string",
default: "null",
description: "Text to display before the value."
},
{
name: "suffix",
type: "string",
default: "decimal",
description: "Text to display after the value."
},
{
name: "currency",
type: "string",
default: "null",
description: 'The currency to use in currency formatting. Possible values are the ISO 4217 currency codes, such as "USD" for the US dollar, "EUR" for the euro, or "CNY" for the Chinese RMB. There is no default value; if the style is "currency", the currency property must be provided.'
},
{
name: "currencyDisplay",
type: "string",
default: "symbol",
description: 'How to display the currency in currency formatting. Possible values are "symbol" to use a localized currency symbol such as €, "code" to use the ISO currency code, "name" to use a localized currency name such as "dollar"; the default is "symbol".'
},
{
name: "useGrouping",
type: "boolean",
default: "true",
description: "Whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators."
},
{
name: "minFractionDigits",
type: "number",
default: "null",
description: "The minimum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number and percent formatting is 0; the default for currency formatting is the number of minor unit digits provided by the ISO 4217 currency code list (2 if the list doesn't provide that information)."
},
{
name: "maxFractionDigits",
type: "number",
default: "null",
description: "The maximum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number formatting is the larger of minimumFractionDigits and 3; the default for currency formatting is the larger of minimumFractionDigits and the number of minor unit digits provided by the ISO 4217 currency code list (2 if the list doesn't provide that information)."
},
{
name: "min",
type: "number",
default: "null",
description: "Mininum boundary value."
},
{
name: "max",
type: "number",
default: "null",
description: "Maximum boundary value."
},
{
name: "step",
type: "number",
default: "1",
description: "Step factor to increment/decrement the value."
},
{
name: "inputStyle",
type: "any",
default: "null",
description: "Inline style of the input field."
},
{
name: "inputClass",
type: "string",
default: "null",
description: "Style class of the input field."
}
];
const InputNumberEvents = [
{
name: "input",
description: "Callback to invoke when the value is entered.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "number",
description: "New value"
}
]
}
];
module.exports = {
inputnumber: {
name: "InputNumber",
description: "InputNumber is an input component to provide numerical input.",
props: InputNumberProps,
events: InputNumberEvents
}
};

View File

@ -0,0 +1,16 @@
const InputSwitchProps = [
{
name: "modelValue",
type: "boolean",
default: "null",
description: "Specifies whether a inputswitch should be checked or not."
}
];
module.exports = {
inputswitch: {
name: "InputSwitch",
description: "InputSwitch is used to select a boolean value.",
props: InputSwitchProps
}
};

View File

@ -0,0 +1,16 @@
const InputTextProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
}
];
module.exports = {
inputtext: {
name: "InputText",
description: "InputText renders a text field to enter data.",
props: InputTextProps
}
};

View File

@ -0,0 +1,103 @@
const KnobProps = [
{
name: "modelValue",
type: "number",
default: "null",
description: "Value of the component."
},
{
name: "size",
type: "number",
default: "100",
description: "Size of the component in pixels."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the component should be disabled."
},
{
name: "readonly",
type: "boolean",
default: "false",
description: "When present, it specifies that the component value cannot be edited."
},
{
name: "step",
type: "number",
default: "null",
description: "Step factor to increment/decrement the value."
},
{
name: "min",
type: "number",
default: "0",
description: "Mininum boundary value."
},
{
name: "max",
type: "number",
default: "100",
description: "Maximum boundary value."
},
{
name: "valueColor",
type: "string",
default: "null",
description: "Background of the value."
},
{
name: "rangeColor",
type: "string",
default: "null",
description: "Background color of the range."
},
{
name: "textColor",
type: "string",
default: "null",
description: "Color of the value text."
},
{
name: "strokeWidth",
type: "number",
default: "14",
description: "Width of the knob stroke."
},
{
name: "showValue",
type: "boolean",
default: "true",
description: "Whether the show the value inside the knob."
},
{
name: "valueTemplate",
type: "string",
default: "{value}",
description: "Template string of the value."
}
];
const KnobEvents = [
{
name: "change",
description: "Callback to invoke when the value changes.",
arguments: [
{
name: "value",
type: "number",
description: "New value"
}
]
}
];
module.exports = {
knob: {
name: "Knob",
description: "Knob is a form component to define number inputs with a dial.",
props: KnobProps,
events: KnobEvents
}
};

View File

@ -0,0 +1,188 @@
const ListboxProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "options",
type: "array",
default: "null",
description: "An array of selectitems to display as the available options."
},
{
name: "optionLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option."
},
{
name: "optionValue",
type: "string",
default: "null",
description: "Property name or getter function to use as the value of an option, defaults to the option itself when not defined."
},
{
name: "optionDisabled",
type: "boolean",
default: "null",
description: "Property name or getter function to use as the disabled flag of an option, defaults to false when not defined."
},
{
name: "optionGroupLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option group."
},
{
name: "optionGroupChildren",
type: "string",
default: "null",
description: "Property name or getter function that refers to the children options of option group."
},
{
name: "listStyle",
type: "string",
default: "null",
description: "Inline style of inner list element."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When specified, disables the component."
},
{
name: "dataKey",
type: "string",
default: "null",
description: "A property to uniquely identify an option."
},
{
name: "multiple",
type: "boolean",
default: "false",
description: "When specified, allows selecting multiple values."
},
{
name: "metaKeySelection",
type: "boolean",
default: "true",
description: "Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically."
},
{
name: "filter",
type: "boolean",
default: "false",
description: "When specified, displays a filter input at header."
},
{
name: "filterPlaceholder",
type: "string",
default: "null",
description: "Placeholder text to show when filter input is empty."
},
{
name: "filterLocale",
type: "string",
default: "undefined",
description: "Locale to use in filtering. The default locale is the host environment's current locale."
},
{
name: "filterMatchMode",
type: "string",
default: "contains",
description: 'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"'
},
{
name: "filterFields",
type: "array",
default: "null",
description: "Fields used when filtering the options, defaults to optionLabel."
},
{
name: "emptyFilterMessage",
type: "string",
default: "No results found",
description: "Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration."
},
{
name: "emptyMessage",
type: "string",
default: "No results found",
description: "Text to display when there are no options available. Defaults to value from PrimeVue locale configuration."
}
];
const ListboxEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "object",
description: "Selected option value"
}
]
},
{
name: "filter",
description: "Callback to invoke on filter input.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "string",
description: "Filter value"
}
]
}
];
const ListboxSlots = [
{
name: "option",
description: "Custom content for the item's option"
},
{
name: "optiongroup",
description: "Custom content for the item's optiongroup"
},
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "footer",
description: "Custom content for the component's footer"
},
{
name: "emptyfilter",
description: "Custom content when there is no filtered data to display"
},
{
name: "empty",
description: "Custom content when there is no data to display"
}
];
module.exports = {
listbox: {
name: "Listbox",
description: "Listbox is used to select one or more values from a list of items.",
props: ListboxProps,
events: ListboxEvents,
slots: ListboxSlots
}
};

View File

@ -0,0 +1,22 @@
const MegaMenuProps = [
{
name: "modelValue",
type: "array",
default: "null",
description: "An array of menuitems."
},
{
name: "orientation",
type: "string",
default: "horizontal",
description: "Defines the orientation, valid values are horizontal and vertical."
}
];
module.exports = {
megamenu: {
name: "MegaMenu",
description: "MegaMenu is navigation component that displays submenus together.",
props: MegaMenuProps
}
};

View File

@ -0,0 +1,40 @@
const MenuProps = [
{
name: "modelValue",
type: "array",
default: "null",
description: "An array of menuitems."
},
{
name: "popup",
type: "boolean",
default: "false",
description: "Defines if menu would displayed as a popup."
},
{
name: "appendTo",
type: "string",
default: "body",
description: "A valid query selector or an HTMLElement to specify where the overlay gets attached."
},
{
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."
}
];
module.exports = {
menu: {
name: "Menu",
description: "Menu is a navigation / command component that supports dynamic and static positioning.",
props: MenuProps
}
};

View File

@ -0,0 +1,28 @@
const MenubarProps = [
{
name: "modelValue",
type: "array",
default: "null",
description: "An array of menuitems."
}
];
const MenubarSlots = [
{
name: "start",
description: "Custom content before the content"
},
{
name: "end",
description: "Custom content after the content"
}
];
module.exports = {
menubar: {
name: "Menubar",
description: "Menubar is a horizontal menu component.",
props: MenubarProps,
slots: MenubarSlots
}
};

View File

@ -0,0 +1,49 @@
const MessageProps = [
{
name: "severity",
type: "string",
default: "info",
description: 'Severity level of the message. Valid severities are "success", "info", "warn" and "error".'
},
{
name: "closable",
type: "boolean",
default: "true",
description: "Whether the message can be closed manually using the close icon."
},
{
name: "sticky",
type: "boolean",
default: "null",
description: "When enabled, message is not removed automatically."
},
{
name: "life",
type: "number",
default: "300",
description: "Delay in milliseconds to close the message automatically."
}
];
const MessageEvents = [
{
name: "close",
description: "Callback to invoke when a message is closed.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
}
];
module.exports = {
message: {
name: "Message",
description: "Messages is used to display inline messages with various severities.",
props: MessageProps,
events: MessageEvents
}
};

View File

@ -0,0 +1,232 @@
const MultiSelectProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "options",
type: "array",
default: "null",
description: "An array of selectitems to display as the available options."
},
{
name: "optionLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option."
},
{
name: "optionValue",
type: "string",
default: "null",
description: "Property name or getter function to use as the value of an option, defaults to the option itself when not defined."
},
{
name: "optionDisabled",
type: "boolean",
default: "null",
description: "Property name or getter function to use as the disabled flag of an option, defaults to false when not defined."
},
{
name: "optionGroupLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option group."
},
{
name: "optionGroupChildren",
type: "string",
default: "null",
description: "Property name or getter function that refers to the children options of option group."
},
{
name: "scrollHeight",
type: "string",
default: "200px",
description: "Height of the viewport in pixels, a scrollbar is defined if height of list exceeds this value."
},
{
name: "filter",
type: "boolean",
default: "false",
description: "When specified, displays a filter input at header."
},
{
name: "filterPlaceholder",
type: "string",
default: "null",
description: "Placeholder text to show when filter input is empty."
},
{
name: "filterLocale",
type: "string",
default: "undefined",
description: "Locale to use in filtering. The default locale is the host environment's current locale."
},
{
name: "filterMatchMode",
type: "string",
default: "contains",
description: 'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"'
},
{
name: "filterFields",
type: "array",
default: "null",
description: "Fields used when filtering the options, defaults to optionLabel."
},
{
name: "placeholder",
type: "string",
default: "null",
description: "Label to display when there are no selections."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the component should be disabled."
},
{
name: "tabindex",
type: "string",
default: "null",
description: "Index of the element in tabbing order."
},
{
name: "inputId",
type: "string",
default: "null",
description: "Identifier of the underlying input element."
},
{
name: "dataKey",
type: "string",
default: "null",
description: "A property to uniquely identify an option."
},
{
name: "ariaLabelledBy",
type: "string",
default: "null",
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name: "emptyFilterMessage",
type: "string",
default: "No results found",
description: "Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration."
},
{
name: "emptyMessage",
type: "string",
default: "No results found",
description: "Text to display when there are no options available. Defaults to value from PrimeVue locale configuration."
},
{
name: "display",
type: "string",
default: "comma",
description: 'Defines how the selected items are displayed, valid values are "comma" and "chip".'
},
{
name: "panelClass",
type: "string",
default: "null",
description: "Style class of the overlay panel."
}
];
const MultiSelectEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "array",
description: "Selected option value"
}
]
},
{
name: "before-show",
description: "Callback to invoke before the overlay is shown."
},
{
name: "before-hide",
description: "Callback to invoke before the overlay is hidden."
},
{
name: "show",
description: "Callback to invoke when the overlay is shown."
},
{
name: "hide",
description: "Callback to invoke when the overlay is hidden."
},
{
name: "filter",
description: "Callback to invoke on filter input.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "string",
description: "Filter value"
}
]
}
];
const MultiSelectSlots = [
{
name: "option",
description: "Custom content for the item's option"
},
{
name: "optiongroup",
description: "Custom content for the item's optiongroup"
},
{
name: "value",
description: "Custom content for the item value"
},
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "footer",
description: "Custom content for the component's footer"
},
{
name: "emptyfilter",
description: "Custom content when there is no filtered data to display"
},
{
name: "empty",
description: "Custom content when there is no data to display"
}
];
module.exports = {
multiselect: {
name: "MultiSelect",
description: "MultiSelect is used to multiple values from a list of options.",
props: MultiSelectProps,
events: MultiSelectEvents,
slots: MultiSelectSlots
}
};

View File

@ -0,0 +1,90 @@
const OrderListProps = [
{
name: "modelValue",
type: "array",
default: "null",
description: "Value of the component."
},
{
name: "selection",
type: "any",
default: "null",
description: "Selected items in the list."
},
{
name: "metaKeySelection",
type: "boolean",
default: "true",
description: "Defines whether metaKey is requred or not for the selection. When true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically."
},
{
name: "dataKey",
type: "string",
default: "null",
description: "Name of the field that uniquely identifies the a record in the data."
},
{
name: "listStyle",
type: "object",
default: "null",
description: "Inline style of the the list element."
},
{
name: "responsive",
type: "boolean",
default: "true",
description: "Whether the list optimizes layout based on screen size."
},
{
name: "breakpoint",
type: "string",
default: "960px",
description: "The breakpoint to define the maximum width boundary when responsiveness is enabled."
}
];
const OrderListEvents = [
{
name: "reorder",
description: "Callback to invoke when the list is reordered.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "array",
description: "Ordered list"
},
{
name: "event.direction",
type: "string",
description:
'Direction of the change; "up", "down", "bottom", "top"'
}
]
}
];
const OrderListSlots = [
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "item",
description: "Custom content for the item"
}
];
module.exports = {
orderlist: {
name: "OrderList",
description: "OrderList is used to managed the order of a collection.",
props: OrderListProps,
events: OrderListEvents,
slots: OrderListSlots
}
};

View File

@ -0,0 +1,88 @@
const OrganizationChartProps = [
{
name: "value",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "selectionKeys",
type: "object",
default: "null",
description: "A map instance of key-value pairs to represented the selected nodes."
},
{
name: "selectionMode",
type: "string",
default: "null",
description: 'Type of the selection, valid values are "single" and "multiple".'
},
{
name: "collapsible",
type: "boolean",
default: "false",
description: "Whether the nodes can be expanded or toggled."
},
{
name: "collapsedKeys",
type: "object",
default: "null",
description: "A map instance of key-value pairs to represented the collapsed nodes."
}
];
const OrganizationChartEvents = [
{
name: "node-select",
description: "Callback to invoke when a node is selected.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-unselect",
description: "Callback to invoke when a node is unselected.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-expand",
description: "Callback to invoke when a node is expanded.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-collapse",
description: "Callback to invoke when a node is collapsed.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
}
];
module.exports = {
organizationchart: {
name: "OrganizationChart",
description: "OrganizationChart visualizes hierarchical organization data.",
props: OrganizationChartProps,
events: OrganizationChartEvents
}
};

View File

@ -0,0 +1,52 @@
const OverlayPanelProps = [
{
name: "dismissable",
type: "boolean",
default: "true",
description: "Enables to hide the overlay when outside is clicked."
},
{
name: "showCloseIcon",
type: "boolean",
default: "false",
description: "When enabled, displays a close icon at top right corner."
},
{
name: "appendTo",
type: "string",
default: "body",
description: "A valid query selector or an HTMLElement to specify where the overlay gets attached."
},
{
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: "breakpoints",
type: "object",
default: "null",
description: "Object literal to define widths per screen size."
}
];
module.exports = {
overlaypanel: {
name: "OverlayPanel",
description: "OverlayPanel is a container component positioned as connected to its target.",
props: OverlayPanelProps
}
};

View File

@ -0,0 +1,100 @@
const PaginatorProps = [
{
name: "totalRecords",
type: "number",
default: "0",
description: "Number of total records."
},
{
name: "rows",
type: "number",
default: "0",
description: "Data count to display per page."
},
{
name: "first",
type: "number",
default: "0",
description: "Zero-relative number of the first row to be displayed."
},
{
name: "pageLinkSize",
type: "number",
default: "5",
description: "Number of page links to display."
},
{
name: "rowsPerPageOptions",
type: "array",
default: "null",
description: "Array of integer values to display inside rows per page dropdown."
},
{
name: "template",
type: "string",
default: "FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown",
description: "Template of the paginator."
},
{
name: "currentPageReportTemplate",
type: "string",
default: "({currentPage} of {totalPages})",
description: "Template of the current page report element. Available placeholders are {currentPage},{totalPages},{rows},{first},{last} and {totalRecords}"
},
{
name: "alwaysShow",
type: "boolean",
default: "true",
description: "Whether to show the paginator even there is only one page."
}
];
const PaginatorEvents = [
{
name: "page",
description: "Callback to invoke when page changes, the event object contains information about the new state.",
arguments: [
{
name: "event.page",
type: "number",
description: "New page number"
},
{
name: "event.first",
type: "number",
description: "Index of first record"
},
{
name: "event.rows",
type: "number",
description: "Number of rows to display in new page"
},
{
name: "event.pageCount",
type: "number",
description: "Total number of pages"
}
]
}
];
const PaginatorSlots = [
{
name: "left",
description: "Custom content for the component's left side"
},
{
name: "right",
description: "Custom content for the component's right side"
}
];
module.exports = {
paginator: {
name: "Paginator",
description: "Paginator is a generic component to display content in paged format.",
props: PaginatorProps,
events: PaginatorEvents,
slots: PaginatorSlots
}
};

View File

@ -0,0 +1,60 @@
const PanelProps = [
{
name: "header",
type: "string",
default: "null",
description: "Header text of the panel."
},
{
name: "toggleable",
type: "boolean",
default: "null",
description: "Defines if content of panel can be expanded and collapsed."
},
{
name: "collapsed",
type: "boolean",
default: "null",
description: "Defines the initial state of panel content."
}
];
const PanelEvents = [
{
name: "toggle",
description: "Callback to invoke when a tab toggle.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "boolean",
description: "collapsed state as a boolean"
}
]
}
];
const PanelSlots = [
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "icons",
description: "Custom content for the header's icon"
}
];
module.exports = {
panel: {
name: "Panel",
description: "Panel is a container with the optional content toggle feature.",
props: PanelProps,
events: PanelEvents,
slots: PanelSlots
}
};

View File

@ -0,0 +1,16 @@
const PanelMenuProps = [
{
name: "model",
type: "array",
default: "null",
description: "An array of menuitems."
}
];
module.exports = {
panelmenu: {
name: "PanelMenu",
description: "PanelMenu is a hybrid of Accordion and Tree components",
props: PanelMenuProps
}
};

View File

@ -0,0 +1,98 @@
const PasswordProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "promptLabel",
type: "string",
default: "null",
description: "Text to prompt password entry. Defaults to PrimeVue Locale configuration."
},
{
name: "mediumRegex",
type: "string",
default: "^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,})",
description: "Regex for a medium level password."
},
{
name: "strongRegex",
type: "string",
default: "^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{8,})",
description: "Regex for a strong level password."
},
{
name: "weakLabel",
type: "string",
default: "null",
description: "Text for a weak password. Defaults to PrimeVue Locale configuration."
},
{
name: "mediumLabel",
type: "string",
default: "null",
description: "Text for a medium password. Defaults to PrimeVue Locale configuration."
},
{
name: "strongLabel",
type: "string",
default: "null",
description: "Text for a strong password. Defaults to PrimeVue Locale configuration."
},
{
name: "feedback",
type: "boolean",
default: "true",
description: "Whether to show the strength indicator or not."
},
{
name: "toogleMask",
type: "boolean",
default: "false",
description: "Whether to show an icon to display the password as plain text."
},
{
name: "appendTo",
type: "string",
default: "body",
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name: "inputStyle",
type: "any",
default: "null",
description: "Inline style of the input field."
},
{
name: "inputClass",
type: "string",
default: "null",
description: "Style class of the input field."
}
];
const PasswordSlots = [
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "content",
description: "Custom content for the component"
},
{
name: "footer",
description: "Custom content for the component's footer"
}
];
module.exports = {
password: {
name: "Password",
description: "Password displays strength indicator for password fields.",
props: PasswordProps,
slots: PasswordSlots
}
};

View File

@ -0,0 +1,162 @@
const PickListProps = [
{
name: "modelValue",
type: "array",
default: "null",
description: "Value of the component as a multidimensional array."
},
{
name: "selection",
type: "array",
default: "null",
description: "Selected items in the list as a multidimensional array."
},
{
name: "metaKeySelection",
type: "boolean",
default: "true",
description: "Defines whether metaKey is requred or not for the selection. When true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically."
},
{
name: "dataKey",
type: "string",
default: "null",
description: "Name of the field that uniquely identifies the a record in the data."
},
{
name: "listStyle",
type: "object",
default: "null",
description: "Inline style of the the list element."
},
{
name: "responsive",
type: "boolean",
default: "true",
description: "Whether the list optimizes layout based on screen size."
},
{
name: "breakpoint",
type: "string",
default: "960px",
description: "The breakpoint to define the maximum width boundary when responsiveness is enabled."
}
];
const PickListEvents = [
{
name: "reorder",
description: "Callback to invoke when the list is reordered.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "array",
description: "Ordered list"
},
{
name: "event.direction",
type: "string",
description: 'Direction of the change; "up", "down", "bottom", "top"'
},
{
name: "event.listIndex",
type: "number",
description: "Index of the list that is ordered, 0 represents the source and 1 represents the target list."
}
]
},
{
name: "move-to-target",
description: "Callback to invoke when one or more items are moved to the target list.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.items",
type: "object",
description: "Moved items"
}
]
},
{
name: "move-all-to-target",
description: "Callback to invoke when all items are moved to the target list.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.items",
type: "object",
description: "Moved items"
}
]
},
{
name: "move-to-source",
description: "Callback to invoke when one or more items are moved to the source list.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.items",
type: "object",
description: "Moved items"
}
]
},
{
name: "move-all-to-source",
description: "Callback to invoke when all items are moved to the source list.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.items",
type: "object",
description: "Moved items"
}
]
}
];
const PickListSlots = [
{
name: "sourceHeader",
description: "Custom content for the component's source header"
},
{
name: "item",
description: "Custom content for the item"
},
{
name: "targetHeader",
description: "Custom content for the component's target header"
}
];
module.exports = {
picklist: {
name: "PickList",
description: "PickList is used to reorder items between different lists.",
props: PickListProps,
events: PickListEvents,
slots: PickListSlots
}
};

View File

@ -0,0 +1,28 @@
const ProgressbarProps = [
{
name: "value",
type: "number",
default: "null",
description: "Current value of the progress."
},
{
name: "mode",
type: "string",
default: "determinate",
description: 'Defines the mode of the progress, valid values are "determinate" and "indeterminate".'
},
{
name: "showValue",
type: "boolean",
default: "true",
description: "Whether to display the progress bar value."
}
];
module.exports = {
progressbar: {
name: "ProgressBar",
description: "ProgressBar is a process status indicator.",
props: ProgressbarProps
}
};

View File

@ -0,0 +1,28 @@
const ProgressSpinnerProps = [
{
name: "strokeWidth",
type: "string",
default: "2",
description: "Width of the circle stroke."
},
{
name: "fill",
type: "string",
default: "null",
description: "Color for the background of the circle."
},
{
name: "animationDuration",
type: "string",
default: "2s",
description: "Duration of the rotate animation."
}
];
module.exports = {
progressspinner: {
name: "ProgressSpinner",
description: "ProgressSpinner is a process status indicator",
props: ProgressSpinnerProps
}
};

View File

@ -0,0 +1,22 @@
const RadioButtonProps = [
{
name: "value",
type: "any",
default: "null",
description: "Value of the checkbox."
},
{
name: "modelValue",
type: "any",
default: "null",
description: "Value binding of the checkbox."
}
];
module.exports = {
radiobutton: {
name: "RadioButton",
description: "RadioButton is an extension to standard radio button element with theming.",
props: RadioButtonProps
}
};

View File

@ -0,0 +1,60 @@
const RatingProps = [
{
name: "modelValue",
type: "number",
default: "null",
description: "Value of the rating."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the element should be disabled."
},
{
name: "readonly",
type: "boolean",
default: "false",
description: "When present, it specifies that component is read-only."
},
{
name: "stars",
type: "number",
default: "5",
description: "Number of stars."
},
{
name: "cancel",
type: "boolean",
default: "true",
description: "When specified a cancel icon is displayed to allow clearing the value."
}
];
const RatingEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "number",
description: "Selected option value"
}
]
}
];
module.exports = {
rating: {
name: "rating",
description: "Rating component is a star based selection input.",
props: RatingProps,
events: RatingEvents
}
};

View File

@ -0,0 +1,7 @@
module.exports = {
ripple: {
name: "Ripple",
description: "Ripple directive adds ripple effect to the host element.",
"vue-modifiers": []
}
};

View File

@ -0,0 +1,7 @@
module.exports = {
row: {
name: "Row",
description: "DataTable can be grouped by defining a Row component with nested columns",
"doc-url": "datatable"
}
};

View File

@ -0,0 +1,6 @@
module.exports = {
scrollpanel: {
name: "ScrollPanel",
description: "ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar."
}
};

View File

@ -0,0 +1,34 @@
const ScrollTopProps = [
{
name: "target",
type: "string",
default: "window",
description: 'Target of the ScrollTop, valid values are "window" and "parent".'
},
{
name: "threshold",
type: "number",
default: "400",
description: "Defines the threshold value of the vertical scroll position of the target to toggle the visibility."
},
{
name: "icon",
type: "string",
default: "pi pi-chevron-up",
description: "Icon to display."
},
{
name: "behavior",
type: "string",
default: "smooth",
description: 'Defines the scrolling behavi, "smooth" adds an animation and "auto" scrolls with a jump.'
}
];
module.exports = {
scrolltop: {
name: "ScrollTop",
description: "ScrollTop gets displayed after a certain scroll position and used to navigates to the top of the page quickly.",
props: ScrollTopProps
}
};

View File

@ -0,0 +1,98 @@
const SelectButtonProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "options",
type: "array",
default: "null",
description: "An array of selectitems to display as the available options."
},
{
name: "optionLabel",
type: "string",
default: "null",
description: "Property name or getter function to use as the label of an option."
},
{
name: "optionValue",
type: "string",
default: "null",
description: "Property name or getter function to use as the value of an option, defaults to the option itself when not defined."
},
{
name: "optionDisabled",
type: "boolean",
default: "null",
description: "Property name or getter function to use as the disabled flag of an option, defaults to false when not defined."
},
{
name: "multiple",
type: "boolean",
default: "false",
description: "When specified, allows selecting multiple values."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the element should be disabled."
},
{
name: "dataKey",
type: "string",
default: "null",
description: "A property to uniquely identify an option."
},
{
name: "ariaLabelledBy",
type: "string",
default: "null",
description: "Establishes relationships between the component and label(s) where its value should be one or more element IDs."
}
];
const SelectButtonEvents = [
{
name: "focus",
description: "Callback to invoke on focus.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
},
{
name: "blur",
description: "Callback to invoke on blur.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
}
];
const SelectButtonSlots = [
{
name: "option",
description: "Custom content for the item's option"
}
];
module.exports = {
selectbutton: {
name: "SelectButton",
description: "SelectButton is a form component to choose a value from a list of options using button elements.",
props: SelectButtonProps,
events: SelectButtonEvents,
slots: SelectButtonSlots
}
};

View File

@ -0,0 +1,70 @@
const SidebarProps = [
{
name: "visible",
type: "boolean",
default: "false",
description: "Specifies the visibility of the dialog."
},
{
name: "position",
type: "string",
default: "left",
description: 'Specifies the position of the sidebar, valid values are "left", "right", "top", "bottom" and "full".'
},
{
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: "dismissable",
type: "boolean",
default: "true",
description: "Whether clicking outside closes the panel."
},
{
name: "showCloseIcon",
type: "boolean",
default: "true",
description: "Whether to display a close icon inside the panel."
},
{
name: "modal",
type: "boolean",
default: "true",
description: "Whether to a modal layer behind the sidebar."
},
{
name: "ariaCloseLabel",
type: "string",
default: "close",
description: "Aria label of the close icon."
}
];
const SidebarEvents = [
{
name: "hide",
description: "Callback to invoke when sidebar gets hidden."
},
{
name: "show",
description: "Callback to invoke when sidebar gets shown."
}
];
module.exports = {
sidebar: {
name: "Sidebar",
description: "Sidebar is a panel component displayed as an overlay at the edges of the screen.",
props: SidebarProps,
events: SidebarEvents
}
};

View File

@ -0,0 +1,46 @@
const SkeletonProps = [
{
name: "shape",
type: "string",
default: "rectangle",
description: 'Shape of the element, options are "rectangle" and "circle".'
},
{
name: "size",
type: "string",
default: "null",
description: "Size of the Circle or Square."
},
{
name: "width",
type: "string",
default: "100%",
description: "Width of the element."
},
{
name: "height",
type: "string",
default: "1rem",
description: "Height of the element."
},
{
name: "borderRadius",
type: "string",
default: "null",
description: "Border radius of the element, defaults to value from theme."
},
{
name: "animation",
type: "string",
default: "wave",
description: 'Type of the animation, valid options are "wave" and "none".'
}
];
module.exports = {
skeleton: {
name: "Skeleton",
description: "Skeleton is a placeholder to display instead of the actual content.",
props: SkeletonProps
}
};

View File

@ -0,0 +1,89 @@
const SliderProps = [
{
name: "modelValue",
type: "number",
default: "0",
description: "Value of the component."
},
{
name: "min",
type: "number",
default: "0",
description: "Mininum boundary value."
},
{
name: "max",
type: "number",
default: "100",
description: "Maximum boundary value."
},
{
name: "orientation",
type: "string",
default: "horizontal",
description: "Orientation of the slider, valid values are horizontal and vertical."
},
{
name: "step",
type: "number",
default: "1",
description: "Step factor to increment/decrement the value."
},
{
name: "range",
type: "boolean",
default: "false",
description: "When speficed, allows two boundary values to be picked."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the component should be disabled."
},
{
name: "ariaLabelledBy",
type: "string",
default: "null",
description: "Establishes relationships between the component and label(s) where its value should be one or more element IDs."
}
];
const SliderEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "value",
type: "number",
description: "Selected option value"
}
]
},
{
name: "slideend",
description: "Callback to invoke when slide ends.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "number",
description: "New value."
}
]
}
];
module.exports = {
slider: {
name: "Slider",
description: "Slider is an input component to provide a numerical input",
props: SliderProps,
events: SliderEvents
}
};

View File

@ -0,0 +1,61 @@
const SplitButtonProps = [
{
name: "label",
type: "string",
default: "null",
description: "Text of the button."
},
{
name: "icon",
type: "string",
default: "null",
description: "Name of the icon."
},
{
name: "model",
type: "object",
default: "null",
description: "MenuModel instance to define the overlay items."
},
{
name: "autoZIndex",
type: "boolean",
default: "true",
description: "Whether to automatically manage layering."
},
{
name: "baseZIndex",
type: "number",
default: "0",
description: "Base zIndex value to use in layering."
},
{
name: "appendTo",
type: "string",
default: "body",
description: "A valid query selector or an HTMLElement to specify where the overlay gets attached."
}
];
const SplitButtonEvents = [
{
name: "click",
description: "Callback to invoke when main button is clicked.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
}
];
module.exports = {
splitbutton: {
name: "SplitButton",
description: "SplitButton groups a set of commands in an overlay with a default command.",
props: SplitButtonProps,
events: SplitButtonEvents
}
};

View File

@ -0,0 +1,54 @@
const SplitterProps = [
{
name: "layout",
type: "string",
default: "horizontal",
description: 'Orientation of the panels, valid values are "horizontal" and "vertical".'
},
{
name: "gutterSize",
type: "number",
default: "4",
description: "Size of the divider in pixels."
},
{
name: "stateKey",
type: "string",
default: "null",
description: "Storage identifier of a stateful Splitter."
},
{
name: "stateStorage",
type: "string",
default: "storage",
description: 'Defines where a stateful splitter keeps its state, valid values are "session" for sessionStorage and "local" for localStorage.'
}
];
const SplitterEvents = [
{
name: "resizened",
description: "Callback to invoke when resize ends.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.sizes",
type: "array",
description: "Sizes of the panels as an array"
}
]
}
];
module.exports = {
splitter: {
name: "Splitter",
description: "Splitter is utilized to separate and resize panels",
props: SplitterProps,
events: SplitterEvents
}
};

View File

@ -0,0 +1,23 @@
const SplitterPanelProps = [
{
name: "size",
type: "number",
default: "null",
description: "Size of the element relative to 100%."
},
{
name: "minSize",
type: "number",
default: "null",
description: "Minimum size of the element relative to 100%."
}
];
module.exports = {
splitterpanel: {
name: "SplitterPanel",
description: "Splitter requires two SplitterPanel components to wrap.",
"doc-url": "splitter",
props: SplitterPanelProps
}
};

View File

@ -0,0 +1,28 @@
const StepsProps = [
{
name: "id",
type: "string",
default: "null",
description: "Unique identifier of the element."
},
{
name: "model",
type: "array",
default: "null",
description: "An array of menuitems."
},
{
name: "readonly",
type: "boolean",
default: "true",
description: "Whether the items are clickable or not."
}
];
module.exports = {
steps: {
name: "steps",
description: "Steps components is an indicator for the steps in a wizard workflow.",
props: StepsProps
}
};

View File

@ -0,0 +1,16 @@
const TabMenuProps = [
{
name: "model",
type: "array",
default: "null",
description: "An array of menuitems."
}
];
module.exports = {
tabmenu: {
name: "TabMenu",
description: "TabMenu is a navigation component that displays items as tab headers.",
props: TabMenuProps
}
};

View File

@ -0,0 +1,59 @@
const TabPanelProps = [
{
name: "header",
type: "string",
default: "null",
description: "Orientation of tab headers."
},
{
name: "disabled",
type: "boolean",
default: "null",
description: "Whether the tab is disabled."
}
];
const TabPanelEvents = [
{
name: "tab-change",
description: "Callback to invoke when an active tab is changed.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Original event"
},
{
name: "event.index",
type: "number",
description: "Index of the selected tab"
}
]
},
{
name: "tab-click",
description: "Callback to invoke when an active tab is clicked.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Original event"
},
{
name: "event.index",
type: "number",
description: "Index of the selected tab"
}
]
}
];
module.exports = {
tabpanel: {
name: "TabPanel",
description: "TabView element consists of one or more TabPanel elements.",
"doc-url": "tabview",
props: TabPanelProps,
events: TabPanelEvents
}
};

View File

@ -0,0 +1,16 @@
const TabViewProps = [
{
name: "activeIndex",
type: "number",
default: "0",
description: "Index of the active tab."
}
];
module.exports = {
tabview: {
name: "TabView",
description: "TabView is a container component to group content with tabs.",
props: TabViewProps
}
};

View File

@ -0,0 +1,34 @@
const TagProps = [
{
name: "value",
type: "any",
default: "null",
description: "Value to display inside the tag."
},
{
name: "severity",
type: "string",
default: "null",
description: 'Severity type of the tag. Valid severities are "success", "info", "warning" and "danger".'
},
{
name: "rounded",
type: "boolean",
default: "false",
description: "Whether the corners of the tag are rounded."
},
{
name: "icon",
type: "string",
default: "null",
description: "Icon of the tag to display next to the value."
}
];
module.exports = {
tag: {
name: "Tag",
description: "Tag component is used to categorize content.",
props: TagProps
}
};

View File

@ -0,0 +1,22 @@
const TerminalProps = [
{
name: "welcomeMessage",
type: "string",
default: "null",
description: "Initial text to display on terminal."
},
{
name: "prompt",
type: "string",
default: "null",
description: "Prompt text for each command."
}
];
module.exports = {
terminal: {
name: "Terminal",
description: "Terminal is a text based user interface.",
props: TerminalProps
}
};

View File

@ -0,0 +1,22 @@
const TextareaProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "autoResize",
type: "boolean",
default: "false",
description: "When present, height of textarea changes as being typed."
}
];
module.exports = {
textarea: {
name: "Textarea",
description: "Textarea is a multi-line text input element.",
props: TextareaProps
}
};

View File

@ -0,0 +1,40 @@
const TieredMenuProps = [
{
name: "model",
type: "array",
default: "null",
description: "An array of menuitems."
},
{
name: "popup",
type: "boolean",
default: "false",
description: "Defines if menu would displayed as a popup."
},
{
name: "appendTo",
type: "string",
default: "body",
description: "A valid query selector or an HTMLElement to specify where the overlay gets attached."
},
{
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."
}
];
module.exports = {
tieredmenu: {
name: "TieredMenu",
description: "TieredMenu displays submenus in nested overlays.",
props: TieredMenuProps
}
};

View File

@ -0,0 +1,50 @@
const TimelineProps = [
{
name: "value",
type: "array",
default: "null",
description: "An array of events to display."
},
{
name: "align",
type: "string",
default: "left",
description: 'Position of the timeline bar relative to the content. Valid values are "left", "right" for vertical layout and "top", "bottom" for horizontal layout.'
},
{
name: "layout",
type: "string",
default: "vertical",
description: 'Orientation of the timeline, valid values are "vertical" and "horizontal".'
},
{
name: "dataKey",
type: "string",
default: "null",
description: "Name of the field that uniquely identifies the a record in the data."
}
];
const TimelineSlots = [
{
name: "opposite",
description: "Custom content for the content to be placed at the other side of the bar"
},
{
name: "marker",
description: "Custom content for the marker"
},
{
name: "content",
description: "Custom content"
}
];
module.exports = {
timeline: {
name: "Timeline",
description: "Timeline visualizes a series of chained events.",
props: TimelineProps,
slots: TimelineSlots
}
};

View File

@ -0,0 +1,34 @@
const ToastProps = [
{
name: "group",
type: "string",
default: "null",
description: "Unique identifier of a message group."
},
{
name: "position",
type: "string",
default: "top-right",
description: 'Position of the toast in viewport. Other valid values are "top-left", "top-center", "bottom-left", "botton-center", "bottom-right" and "center".'
},
{
name: "autoZIndex",
type: "boolean",
default: "true",
description: "Whether to automatically manage layering."
},
{
name: "baseZIndex",
type: "number",
default: "0",
description: "Base zIndex value to use in layering."
}
];
module.exports = {
toast: {
name: "Toast",
description: "Toast is used to display messages in an overlay.",
props: ToastProps
}
};

View File

@ -0,0 +1,61 @@
const ToggleButtonProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "onIcon",
type: "string",
default: "null",
description: "Icon for the on state."
},
{
name: "offIcon",
type: "string",
default: "null",
description: "Icon for the off state."
},
{
name: "onLabel",
type: "string",
default: "yes",
description: "Label for the on state."
},
{
name: "offLabel",
type: "string",
default: "no",
description: "Label for the off state."
},
{
name: "iconPos",
type: "string",
default: "left",
description: 'Position of the icon, valid values are "left" and "right".'
}
];
const ToggleButtonEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
}
];
module.exports = {
togglebutton: {
name: "ToggleButton",
description: "ToggleButton is used to select a boolean value using a button.",
props: ToggleButtonProps,
events: ToggleButtonEvents
}
};

View File

@ -0,0 +1,18 @@
const ToolbarSlots = [
{
name: "left",
description: "Custom content for the component's left side"
},
{
name: "right",
description: "Custom content for the component's right side"
}
];
module.exports = {
toolbar: {
name: "Toolbar",
description: "Toolbar is a grouping component for buttons and other content.",
slots: ToolbarSlots
}
};

View File

@ -0,0 +1,34 @@
const TooltipModifiers = [
{
name: "right",
description: "Positions the tooltip on the right of the trigger element (default)"
},
{
name: "top",
description: "Positions the tooltip on the top of the trigger element"
},
{
name: "bottom",
description: "Positions the tooltip on the bottom of the trigger element"
},
{
name: "left",
description: "Positions the tooltip on the left of the trigger element"
},
{
name: "focus",
description: "Focus on the trigger element"
},
{
name: "blur",
description: "Blur the trigger element"
}
];
module.exports = {
tooltip: {
name: "Tooltip",
description: "Tooltip directive provides advisory information for a component.",
"vue-modifiers": TooltipModifiers
}
};

View File

@ -0,0 +1,130 @@
const TreeProps = [
{
name: "value",
type: "any",
default: "null",
description: "An array of treenodes."
},
{
name: "expandedKeys",
type: "array",
default: "null",
description: "A map of keys to represent the state of the tree expansion state in controlled mode."
},
{
name: "selectionMode",
type: "string",
default: "null",
description: 'Defines the selection mode, valid values "single", "multiple", and "checkbox".'
},
{
name: "selectionKeys",
type: "any",
default: "null",
description: "A map of keys to control the selection state."
},
{
name: "metaKeySelection",
type: "boolean",
default: "true",
description: "Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically."
},
{
name: "loading",
type: "boolean",
default: "false",
description: "Whether to display loading indicator."
},
{
name: "loadingIcon",
type: "string",
default: "pi pi-spin",
description: "Icon to display when tree is loading."
},
{
name: "filter",
type: "boolean",
default: "false",
description: "When specified, displays an input field to filter the items."
},
{
name: "filterBy",
type: "string",
default: "label",
description: "When filtering is enabled, filterBy decides which field or fields (comma separated) to search against."
},
{
name: "filterMode",
type: "string",
default: "lenient",
description: 'Mode for filtering valid values are "lenient" and "strict". Default is lenient.'
},
{
name: "filterPlaceholder",
type: "string",
default: "null",
description: "Placeholder text to show when filter input is empty."
},
{
name: "filterLocale",
type: "string",
default: "undefined",
description: "Locale to use in filtering. The default locale is the host environment's current locale."
}
];
const TreeEvents = [
{
name: "node-select",
description: "Callback to invoke when a node is selected.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-unselect",
description: "Callback to invoke when a node is unselected.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-expand",
description: "Callback to invoke when a node is expanded.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-collapse",
description: "Callback to invoke when a node is collapsed.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
}
];
module.exports = {
tree: {
name: "Tree",
description: "Tree is used to display hierarchical data.",
props: TreeProps,
events: TreeEvents
}
};

View File

@ -0,0 +1,189 @@
const TreeSelectProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
},
{
name: "options",
type: "array",
default: "null",
description: "An array of treenodes."
},
{
name: "scrollHeight",
type: "string",
default: "200px",
description: "Height of the viewport in pixels, a scrollbar is defined if height of list exceeds this value."
},
{
name: "placeholder",
type: "string",
default: "null",
description: "Label to display when there are no selections."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the component should be disabled."
},
{
name: "tabindex",
type: "string",
default: "null",
description: "Index of the element in tabbing order."
},
{
name: "inputId",
type: "string",
default: "null",
description: "Identifier of the underlying input element."
},
{
name: "ariaLabelledBy",
type: "string",
default: "null",
description: "Establishes relationships between the component and label(s) where its value should be one or more element IDs."
},
{
name: "selectionMode",
type: "string",
default: "null",
description: 'Defines the selection mode, valid values "single", "multiple", and "checkbox".'
},
{
name: "panelClass",
type: "string",
default: "null",
description: "Style class of the overlay panel."
},
{
name: "appendTo",
type: "string",
default: "body",
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name: "emptyMessage",
type: "string",
default: "No results found",
description: "Text to display when there are no options available. Defaults to value from PrimeVue locale configuration."
},
{
name: "display",
type: "string",
default: "comma",
description: 'Defines how the selected items are displayed, valid values are "comma" and "chip".'
},
{
name: "metaKeySelection",
type: "boolean",
default: "true",
description: "Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically."
}
];
const TreeSelectEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "event",
type: "object",
description: "Selected node keys"
}
]
},
{
name: "before-show",
description: "Callback to invoke before the overlay is shown."
},
{
name: "before-hide",
description: "Callback to invoke before the overlay is hidden."
},
{
name: "show",
description: "Callback to invoke when the overlay is shown."
},
{
name: "hide",
description: "Callback to invoke when the overlay is hidden."
},
{
name: "node-select",
description: "Callback to invoke when a node is selected.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-unselect",
description: "Callback to invoke when a node is unselected.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-expand",
description: "Callback to invoke when a node is expanded.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-collapse",
description: "Callback to invoke when a node is collapsed.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
}
];
const TreeSelectSlots = [
{
name: "value",
description: "Custom content for the item's value"
},
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "footer",
description: "Custom content for the component's footer"
},
{
name: "empty",
description: "Custom content when there is no data to display"
}
];
module.exports = {
treeselect: {
name: "TreeSelect",
description: "TreeSelect is a form component to choose from hierarchical data.",
props: TreeSelectProps,
events: TreeSelectEvents,
slots: TreeSelectSlots
}
};

View File

@ -0,0 +1,449 @@
const TreeTableProps = [
{
name: "value",
type: "array",
default: "null",
description: "An array of treenodes."
},
{
name: "expandedKeys",
type: "array",
default: "null",
description: "A map of keys to represent the state of the tree expansion state in controlled mode."
},
{
name: "selectionKeys",
type: "any",
default: "null",
description: "A map of keys to control the selection state."
},
{
name: "selectionMode",
type: "string",
default: "null",
description: 'Defines the selection mode, valid values "single", "multiple", and "checkbox".'
},
{
name: "metaKeySelection",
type: "boolean",
default: "true",
description: "Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically."
},
{
name: "rows",
type: "number",
default: "null",
description: "Number of rows to display per page."
},
{
name: "first",
type: "number",
default: "0",
description: "Index of the first row to be displayed."
},
{
name: "totalRecords",
type: "number",
default: "null",
description: "Number of total records, defaults to length of value when not defined."
},
{
name: "paginator",
type: "boolean",
default: "false",
description: "When specified as true, enables the pagination."
},
{
name: "paginatorPosition",
type: "string",
default: "bottom",
description: 'Position of the paginator, options are "top", "bottom" or "both".'
},
{
name: "alwaysShowPaginator",
type: "boolean",
default: "true",
description: "Whether to show it even there is only one page."
},
{
name: "paginatorTemplate",
type: "string",
default: "FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown",
description: "Template of the paginator."
},
{
name: "pageLinkSize",
type: "number",
default: "5",
description: "Number of page links to display."
},
{
name: "rowsPerPageOptions",
type: "array",
default: "null",
description: "Array of integer values to display inside rows per page dropdown."
},
{
name: "currentPageReportTemplate",
type: "string",
default: "({currentPage} of {totalPages})",
description: "Template of the current page report element."
},
{
name: "lazy",
type: "boolean",
default: "false",
description: "Defines if data is loaded and interacted with in lazy manner."
},
{
name: "loading",
type: "boolean",
default: "false",
description: "Displays a loader to indicate data load is in progress."
},
{
name: "loadingIcon",
type: "string",
default: "pi pi-spinner",
description: "The icon to show while indicating data load is in progress."
},
{
name: "rowHover",
type: "boolean",
default: "false",
description: "When enabled, background of the rows change on hover."
},
{
name: "autoLayout",
type: "boolean",
default: "false",
description: "Whether the cell widths scale according to their content or not."
},
{
name: "sortField",
type: "string",
default: "null",
description: "Property name or a getter function of a row data used for sorting by default."
},
{
name: "sortOrder",
type: "number",
default: "null",
description: "Order to sort the data by default."
},
{
name: "defaultSortOrder",
type: "number",
default: "1",
description: "Default sort order of an unsorted column."
},
{
name: "multiSortMeta",
type: "array",
default: "null",
description: "An array of SortMeta objects to sort the data by default in multiple sort mode."
},
{
name: "sortMode",
type: "string",
default: "single",
description: "Defines whether sorting works on single column or on multiple columns."
},
{
name: "removableSort",
type: "boolean",
default: "false",
description: "When enabled, columns can have an un-sorted state."
},
{
name: "filters",
type: "object",
default: "null",
description: "Filters object with key-value pairs to define the filters."
},
{
name: "filterMode",
type: "string",
default: "lenient",
description: 'Mode for filtering valid values are "lenient" and "strict". Default is lenient.'
},
{
name: "filterLocale",
type: "string",
default: "undefined",
description: "Locale to use in filtering. The default locale is the host environment's current locale."
},
{
name: "resizableColumns",
type: "boolean",
default: "false",
description: "When enabled, columns can be resized using drag and drop."
},
{
name: "columnResizeMode",
type: "string",
default: "fit",
description: 'Defines whether the overall table width should change on column resize, valid values are "fit" and "expand".'
},
{
name: "indentation",
type: "number",
default: "1",
description: "Indentation factor as rem value for children nodes. Defaults to 1rem."
},
{
name: "showGridlines",
type: "boolean",
default: "false",
description: "Whether to show grid lines between cells."
}
];
const TreeTableEvents = [
{
name: "page",
description: "Callback to invoke on pagination. Sort and Filter information is also available for lazy loading implementation.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Original event"
},
{
name: "event.page",
type: "number",
description: "New page number"
},
{
name: "event.pageCount",
type: "number",
description: "Total page count"
},
{
name: "event.first",
type: "number",
description: "Index of first record"
},
{
name: "event.rows",
type: "number",
description: "Number of rows to display in new page"
},
{
name: "event.sortField",
type: "object",
description: "Field to sort against"
},
{
name: "event.sortOrder",
type: "number",
description: "Sort order as integer"
},
{
name: "event.multiSortMeta",
type: "object",
description: "MultiSort metadata"
},
{
name: "event.filters",
type: "object",
description: "Collection of active filters"
},
{
name: "event.filterMatchModes",
type: "object",
description: "Match modes per field"
}
]
},
{
name: "sort",
description: "Callback to invoke on sort. Page and Filter information is also available for lazy loading implementation.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Original event"
},
{
name: "event.first",
type: "number",
description: "Index of first record"
},
{
name: "event.rows",
type: "number",
description: "Number of rows to display in new page"
},
{
name: "event.sortField",
type: "object",
description: "Field to sort against"
},
{
name: "event.sortOrder",
type: "number",
description: "Sort order as integer"
},
{
name: "event.multiSortMeta",
type: "object",
description: "MultiSort metadata"
},
{
name: "event.filters",
type: "object",
description: "Collection of active filters"
},
{
name: "event.filterMatchModes",
type: "object",
description: "Match modes per field"
}
]
},
{
name: "filter",
description: "Event to emit after filtering, not triggered in lazy mode.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Original event"
},
{
name: "event.first",
type: "number",
description: "Index of first record"
},
{
name: "event.rows",
type: "number",
description: "Number of rows to display in new page"
},
{
name: "event.sortField",
type: "object",
description: "Field to sort against"
},
{
name: "event.sortOrder",
type: "number",
description: "Sort order as integer"
},
{
name: "event.multiSortMeta",
type: "object",
description: "MultiSort metadata"
},
{
name: "event.filters",
type: "object",
description: "Collection of active filters"
},
{
name: "event.filteredValue",
type: "string",
description: "Filtered collection"
},
{
name: "event.filterMatchModes",
type: "object",
description: "Match modes per field"
}
]
},
{
name: "node-select",
description: "Callback to invoke when a node is selected.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-unselect",
description: "Callback to invoke when a node is unselected.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-expand",
description: "Callback to invoke when a node is expanded.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "node-collapse",
description: "Callback to invoke when a node is collapsed.",
arguments: [
{
name: "node",
type: "object",
description: "Node instance"
}
]
},
{
name: "column-resize-end",
description: "Callback to invoke when a column is resized.",
arguments: [
{
name: "event.element",
type: "object",
description: "DOM element of the resized column."
},
{
name: "event.delta",
type: "number",
description: "Change in column width"
}
]
}
];
const TreeTableSlots = [
{
name: "header",
description: "Custom content for the component's header"
},
{
name: "paginatorLeft",
description: "Custom content for the component paginator's left side"
},
{
name: "paginatorRight",
description: "Custom content for the component paginator's right side"
},
{
name: "empty",
description: "Custom content when there is no data to display"
},
{
name: "footer",
description: "Custom content for the component's footer"
}
];
module.exports = {
treetable: {
name: "TreeTable",
description: "TreeTable is used to display hierarchical data in tabular format.",
props: TreeTableProps,
events: TreeTableEvents,
slots: TreeTableSlots
}
};

View File

@ -0,0 +1,16 @@
const TriStateCheckboxProps = [
{
name: "modelValue",
type: "boolean",
default: "null",
description: "Value of the component."
}
];
module.exports = {
tristatecheckbox: {
name: "TriStateCheckbox",
description: 'TriStateCheckbox is used to select either "true", "false" or "null" as the value.',
props: TriStateCheckboxProps
}
};

View File

@ -19,5 +19,10 @@
"component library",
"material",
"bootstrap"
]
],
"web-types": "./web-types.json",
"vetur": {
"tags": "./vetur-tags.json",
"attributes": "./vetur-attributes.json"
}
}

View File

@ -10,7 +10,7 @@
"scripts": {
"serve": "vue-cli-service serve",
"build-app": "vue-cli-service build",
"build-lib": "NODE_ENV=production rollup -c && node build-meta && gulp build-styles",
"build-lib": "NODE_ENV=production rollup -c && node build-meta && node api-generator/build-api && gulp build-styles",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},