@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
50 lines (45 loc) • 908 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
require('../../../utils/index.js');
var runtime = require('../../../utils/vue/props/runtime.js');
const RowJustify = [
"start",
"center",
"end",
"space-around",
"space-between",
"space-evenly"
];
const RowAlign = ["top", "middle", "bottom"];
const RowDerection = [
"row",
"row-reverse",
"column",
"column-reverse"
];
const rowProps = runtime.buildProps({
gutter: {
type: Number,
default: 0
},
justify: {
type: String,
values: RowJustify,
default: "start"
},
direction: {
type: String,
values: RowDerection,
default: "row"
},
align: {
type: String,
values: RowAlign,
default: "top"
}
});
exports.RowAlign = RowAlign;
exports.RowDerection = RowDerection;
exports.RowJustify = RowJustify;
exports.rowProps = rowProps;
//# sourceMappingURL=row.js.map