UNPKG

@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.

65 lines (64 loc) 1.53 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.manifest = exports.default = void 0; const manifest = exports.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" }] }] } }; var _default = exports.default = manifest;