@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
75 lines (74 loc) • 1.55 kB
JavaScript
export const manifest = {
name: "IFormGroup",
props: [
{
name: "color",
type: ["light", "dark"],
default: "",
description: "The color variant of the form group"
},
{
name: "disabled",
type: ["Boolean"],
default: "false",
description: "The disabled state of the form group"
},
{
name: "inline",
type: ["Boolean"],
default: "false",
description: "Display the form group as inline"
},
{
name: "name",
type: ["String"],
default: "",
description: "The identifier of the form group"
},
{
name: "readonly",
type: ["Boolean"],
default: "false",
description: "The readonly state of the form group"
},
{
name: "required",
type: ["Boolean"],
default: "false",
description: "The required state of the form group"
},
{
name: "size",
type: ["sm", "md", "lg"],
default: "",
description: "The size variant of the form group"
},
{
name: "validateSchema",
type: ["Boolean"],
default: "true",
description: "Enable form validation using schema"
}
],
events: [],
slots: [
{
name: "default",
description: "Slot for default form group content "
}
],
css: {
selector: ".form-group",
variables: [
{
name: "--form-group--margin-top",
value: [
{
name: "--margin-top"
}
]
}
]
}
};
export default manifest;