row.js 814 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  2. const require_runtime = require('../../../utils/vue/props/runtime.js');
  3. //#region ../../packages/components/row/src/row.ts
  4. const RowJustify = [
  5. "start",
  6. "center",
  7. "end",
  8. "space-around",
  9. "space-between",
  10. "space-evenly"
  11. ];
  12. const RowAlign = [
  13. "top",
  14. "middle",
  15. "bottom"
  16. ];
  17. /**
  18. * @deprecated Removed after 3.0.0, Use `RowProps` instead.
  19. */
  20. const rowProps = require_runtime.buildProps({
  21. tag: {
  22. type: String,
  23. default: "div"
  24. },
  25. gutter: {
  26. type: Number,
  27. default: 0
  28. },
  29. justify: {
  30. type: String,
  31. values: RowJustify,
  32. default: "start"
  33. },
  34. align: {
  35. type: String,
  36. values: RowAlign
  37. }
  38. });
  39. //#endregion
  40. exports.RowAlign = RowAlign;
  41. exports.RowJustify = RowJustify;
  42. exports.rowProps = rowProps;
  43. //# sourceMappingURL=row.js.map