row.mjs 626 B

1234567891011121314151617181920212223242526272829303132333435
  1. import '../../../utils/index.mjs';
  2. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  3. const RowJustify = [
  4. "start",
  5. "center",
  6. "end",
  7. "space-around",
  8. "space-between",
  9. "space-evenly"
  10. ];
  11. const RowAlign = ["top", "middle", "bottom"];
  12. const rowProps = buildProps({
  13. tag: {
  14. type: String,
  15. default: "div"
  16. },
  17. gutter: {
  18. type: Number,
  19. default: 0
  20. },
  21. justify: {
  22. type: String,
  23. values: RowJustify,
  24. default: "start"
  25. },
  26. align: {
  27. type: String,
  28. values: RowAlign,
  29. default: "top"
  30. }
  31. });
  32. export { RowAlign, RowJustify, rowProps };
  33. //# sourceMappingURL=row.mjs.map