Initial commit for nuxt

This commit is contained in:
Bahadir Sofuoglu 2022-09-06 14:52:18 +03:00
parent 271fd62d8d
commit 3cb3910561
1047 changed files with 15090 additions and 175754 deletions

View file

@ -1,55 +0,0 @@
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
}
};