@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.
264 lines (263 loc) • 7.57 kB
JavaScript
export const manifest = {
name: "IColumn",
props: [
{
name: "xs",
type: ["Boolean", "String", "Number"],
default: "",
description: "The number of columns to span for extra-small screen sizes. Setting the prop to true will set the width automatically"
},
{
name: "sm",
type: ["Boolean", "String", "Number"],
default: "",
description: "The number of columns to span for small screen sizes. Setting the prop to true will set the width automatically"
},
{
name: "md",
type: ["Boolean", "String", "Number"],
default: "",
description: "The number of columns to span for medium screen sizes. Setting the prop to true will set the width automatically"
},
{
name: "lg",
type: ["Boolean", "String", "Number"],
default: "",
description: "The number of columns to span for large screen sizes. Setting the prop to true will set the width automatically"
},
{
name: "xl",
type: ["Boolean", "String", "Number"],
default: "",
description: "The number of columns to span for extra-large screen sizes. Setting the prop to true will set the width automatically"
},
{
name: "xxl",
type: ["Boolean", "String", "Number"],
default: "",
description: "The number of columns to span for extra-extra-large screen sizes. Setting the prop to true will set the width automatically"
},
{
name: "first",
type: ["Boolean"],
default: "false",
description: "Display the column as the first column"
},
{
name: "first-xs",
type: ["Boolean"],
default: "false",
description: "Display the column as the first column on extra-small screens"
},
{
name: "first-sm",
type: ["Boolean"],
default: "false",
description: "Display the column as the first column on small screens"
},
{
name: "first-md",
type: ["Boolean"],
default: "false",
description: "Display the column as the first column on medium screens"
},
{
name: "first-lg",
type: ["Boolean"],
default: "false",
description: "Display the column as the first column on large screens"
},
{
name: "first-xl",
type: ["Boolean"],
default: "false",
description: "Display the column as the first column on extra-large screens"
},
{
name: "first-2xl",
type: ["Boolean"],
default: "false",
description: "Display the column as the first column on extra-extra-large screens"
},
{
name: "last",
type: ["Boolean"],
default: "false",
description: "Display the column as the last column"
},
{
name: "last-xs",
type: ["Boolean"],
default: "false",
description: "Display the column as the last column on extra-small screens"
},
{
name: "last-sm",
type: ["Boolean"],
default: "false",
description: "Display the column as the last column on small screens"
},
{
name: "last-md",
type: ["Boolean"],
default: "false",
description: "Display the column as the last column on medium screens"
},
{
name: "last-lg",
type: ["Boolean"],
default: "false",
description: "Display the column as the last column on large screens"
},
{
name: "last-xl",
type: ["Boolean"],
default: "false",
description: "Display the column as the last column on extra-large screens"
},
{
name: "last-2xl",
type: ["Boolean"],
default: "false",
description: "Display the column as the last column on extra-extra-large screens"
},
{
name: "offset",
type: ["String", "Number"],
default: "",
description: "The number of columns to offset the column by"
},
{
name: "offset-xs",
type: ["String", "Number"],
default: "",
description: "The number of columns to offset the column by on extra-small screens"
},
{
name: "offset-sm",
type: ["String", "Number"],
default: "",
description: "The number of columns to offset the column by on small screens"
},
{
name: "offset-md",
type: ["String", "Number"],
default: "",
description: "The number of columns to offset the column by on medium screens"
},
{
name: "offset-lg",
type: ["String", "Number"],
default: "",
description: "The number of columns to offset the column by on large screens"
},
{
name: "offset-xl",
type: ["String", "Number"],
default: "",
description: "The number of columns to offset the column by on extra-large screens"
},
{
name: "offset-2xl",
type: ["String", "Number"],
default: "",
description: "The number of columns to offset the column by on extra-extra-large screens"
},
{
name: "push",
type: ["String", "Number"],
default: "",
description: "The number of columns to push the column by"
},
{
name: "push-xs",
type: ["String", "Number"],
default: "",
description: "The number of columns to push the column by on extra-small screens"
},
{
name: "push-sm",
type: ["String", "Number"],
default: "",
description: "The number of columns to push the column by on small screens"
},
{
name: "push-md",
type: ["String", "Number"],
default: "",
description: "The number of columns to push the column by on medium screens"
},
{
name: "push-lg",
type: ["String", "Number"],
default: "",
description: "The number of columns to push the column by on large screens"
},
{
name: "push-xl",
type: ["String", "Number"],
default: "",
description: "The number of columns to push the column by on extra-large screens"
},
{
name: "push-2xl",
type: ["String", "Number"],
default: "",
description: "The number of columns to push the column by on extra-extra-large screens"
},
{
name: "pull",
type: ["String", "Number"],
default: "",
description: "The number of columns to pull the column by"
},
{
name: "pull-xs",
type: ["String", "Number"],
default: "",
description: "The number of columns to pull the column by on extra-small screens"
},
{
name: "pull-sm",
type: ["String", "Number"],
default: "",
description: "The number of columns to pull the column by on small screens"
},
{
name: "pull-md",
type: ["String", "Number"],
default: "",
description: "The number of columns to pull the column by on medium screens"
},
{
name: "pull-lg",
type: ["String", "Number"],
default: "",
description: "The number of columns to pull the column by on large screens"
},
{
name: "pull-xl",
type: ["String", "Number"],
default: "",
description: "The number of columns to pull the column by on extra-large screens"
},
{
name: "pull-2xl",
type: ["String", "Number"],
default: "",
description: "The number of columns to pull the column by on extra-extra-large screens"
}
],
events: [],
slots: [
{
name: "default",
description: "Slot for default column content "
}
],
css: {
selector: ".col",
variables: []
}
};
export default manifest;