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.

129 lines (128 loc) 2.79 kB
export const manifest = { name: "IButtonGroup", props: [ { name: "vertical", type: ["Boolean"], default: "false", description: "Display the button group with vertical orientation" }, { name: "block", type: ["Boolean"], default: "false", description: "Display the button group as a block, spanning the full container width" }, { name: "disabled", type: ["Boolean"], default: "false", description: "The disabled state of the button group" }, { name: "size", type: ["String"], default: "", description: "The size of the button group" }, { name: "color", type: ["String"], default: "", description: "The color of the button group" } ], events: [], slots: [ { name: "default", description: "Slot for default button group content " } ], css: { selector: ".button-group", variables: [ { name: "--button-group--font-size", value: [ { name: "--button--font-size" } ] }, { name: "--button-group--padding", value: [ { name: "--button-group--padding-top", value: [ { name: "--button--padding-top" } ] }, { name: "--button-group--padding-right", value: [ { name: "--button--padding-right" } ] }, { name: "--button-group--padding-bottom", value: [ { name: "--button--padding-bottom" } ] }, { name: "--button-group--padding-left", value: [ { name: "--button--padding-left" } ] } ] }, { name: "--button--circle--size" }, { name: "--button-group--border-top-right-radius", value: [ { name: "--button--border-top-right-radius" } ] }, { name: "--button-group--border-bottom-right-radius", value: [ { name: "--button--border-bottom-right-radius" } ] }, { name: "--button-group--border-top-left-radius", value: [ { name: "--button--border-top-left-radius" } ] }, { name: "--button-group--border-bottom-left-radius", value: [ { name: "--button--border-bottom-left-radius" } ] } ] } }; export default manifest;