| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | var __defProp = Object.defineProperty;var __getOwnPropDesc = Object.getOwnPropertyDescriptor;var __getOwnPropNames = Object.getOwnPropertyNames;var __hasOwnProp = Object.prototype.hasOwnProperty;var __export = (target, all) => {  for (var name2 in all)    __defProp(target, name2, { get: all[name2], enumerable: true });};var __copyProps = (to, from, except, desc) => {  if (from && typeof from === "object" || typeof from === "function") {    for (let key of __getOwnPropNames(from))      if (!__hasOwnProp.call(to, key) && key !== except)        __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });  }  return to;};var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);var stdin_exports = {};__export(stdin_exports, {  ROW_KEY: () => ROW_KEY,  default: () => stdin_default});module.exports = __toCommonJS(stdin_exports);var import_vue = require("vue");var import_vue2 = require("vue");var import_utils = require("../utils");var import_use = require("@vant/use");const [name, bem] = (0, import_utils.createNamespace)("row");const ROW_KEY = Symbol(name);const rowProps = {  tag: (0, import_utils.makeStringProp)("div"),  wrap: import_utils.truthProp,  align: String,  gutter: (0, import_utils.makeNumericProp)(0),  justify: String};var stdin_default = (0, import_vue2.defineComponent)({  name,  props: rowProps,  setup(props, {    slots  }) {    const {      children,      linkChildren    } = (0, import_use.useChildren)(ROW_KEY);    const groups = (0, import_vue2.computed)(() => {      const groups2 = [[]];      let totalSpan = 0;      children.forEach((child, index) => {        totalSpan += Number(child.span);        if (totalSpan > 24) {          groups2.push([index]);          totalSpan -= 24;        } else {          groups2[groups2.length - 1].push(index);        }      });      return groups2;    });    const spaces = (0, import_vue2.computed)(() => {      const gutter = Number(props.gutter);      const spaces2 = [];      if (!gutter) {        return spaces2;      }      groups.value.forEach((group) => {        const averagePadding = gutter * (group.length - 1) / group.length;        group.forEach((item, index) => {          if (index === 0) {            spaces2.push({              right: averagePadding            });          } else {            const left = gutter - spaces2[item - 1].right;            const right = averagePadding - left;            spaces2.push({              left,              right            });          }        });      });      return spaces2;    });    linkChildren({      spaces    });    return () => {      const {        tag,        wrap,        align,        justify      } = props;      return (0, import_vue.createVNode)(tag, {        "class": bem({          [`align-${align}`]: align,          [`justify-${justify}`]: justify,          nowrap: !wrap        })      }, {        default: () => {          var _a;          return [(_a = slots.default) == null ? void 0 : _a.call(slots)];        }      });    };  }});
 |