| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 | var __create = Object.create;var __defProp = Object.defineProperty;var __getOwnPropDesc = Object.getOwnPropertyDescriptor;var __getOwnPropNames = Object.getOwnPropertyNames;var __getProtoOf = Object.getPrototypeOf;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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(  isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,  mod));var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);var stdin_exports = {};__export(stdin_exports, {  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_CheckboxGroup = require("../checkbox-group/CheckboxGroup");var import_use = require("@vant/use");var import_use_expose = require("../composables/use-expose");var import_Checker = __toESM(require("./Checker"));const [name, bem] = (0, import_utils.createNamespace)("checkbox");const checkboxProps = (0, import_utils.extend)({}, import_Checker.checkerProps, {  bindGroup: import_utils.truthProp});var stdin_default = (0, import_vue2.defineComponent)({  name,  props: checkboxProps,  emits: ["change", "update:modelValue"],  setup(props, {    emit,    slots  }) {    const {      parent    } = (0, import_use.useParent)(import_CheckboxGroup.CHECKBOX_GROUP_KEY);    const setParentValue = (checked2) => {      const {        name: name2      } = props;      const {        max,        modelValue      } = parent.props;      const value = modelValue.slice();      if (checked2) {        const overlimit = max && value.length >= max;        if (!overlimit && !value.includes(name2)) {          value.push(name2);          if (props.bindGroup) {            parent.updateValue(value);          }        }      } else {        const index = value.indexOf(name2);        if (index !== -1) {          value.splice(index, 1);          if (props.bindGroup) {            parent.updateValue(value);          }        }      }    };    const checked = (0, import_vue2.computed)(() => {      if (parent && props.bindGroup) {        return parent.props.modelValue.indexOf(props.name) !== -1;      }      return !!props.modelValue;    });    const toggle = (newValue = !checked.value) => {      if (parent && props.bindGroup) {        setParentValue(newValue);      } else {        emit("update:modelValue", newValue);      }    };    (0, import_vue2.watch)(() => props.modelValue, (value) => emit("change", value));    (0, import_use_expose.useExpose)({      toggle,      props,      checked    });    (0, import_use.useCustomFieldValue)(() => props.modelValue);    return () => (0, import_vue.createVNode)(import_Checker.default, (0, import_vue.mergeProps)({      "bem": bem,      "role": "checkbox",      "parent": parent,      "checked": checked.value,      "onToggle": toggle    }, props), (0, import_utils.pick)(slots, ["default", "icon"]));  }});
 |