import { defineComponent, nextTick, computed, provide, toRefs, watch, openBlock, createBlock, resolveDynamicComponent, unref, normalizeClass, withCtx, renderSlot } from 'vue';
|
import { pick } from 'lodash-unified';
|
import '../../../constants/index.mjs';
|
import '../../../utils/index.mjs';
|
import '../../../hooks/index.mjs';
|
import '../../form/index.mjs';
|
import { checkboxGroupProps, checkboxGroupEmits } from './checkbox-group.mjs';
|
import { checkboxGroupContextKey } from './constants.mjs';
|
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
|
import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
|
import { useFormItem, useFormItemInputId } from '../../form/src/hooks/use-form-item.mjs';
|
import { UPDATE_MODEL_EVENT } from '../../../constants/event.mjs';
|
import { debugWarn } from '../../../utils/error.mjs';
|
|
const __default__ = defineComponent({
|
name: "ElCheckboxGroup"
|
});
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
...__default__,
|
props: checkboxGroupProps,
|
emits: checkboxGroupEmits,
|
setup(__props, { emit }) {
|
const props = __props;
|
const ns = useNamespace("checkbox");
|
const { formItem } = useFormItem();
|
const { inputId: groupId, isLabeledByFormItem } = useFormItemInputId(props, {
|
formItemContext: formItem
|
});
|
const changeEvent = async (value) => {
|
emit(UPDATE_MODEL_EVENT, value);
|
await nextTick();
|
emit("change", value);
|
};
|
const modelValue = computed({
|
get() {
|
return props.modelValue;
|
},
|
set(val) {
|
changeEvent(val);
|
}
|
});
|
provide(checkboxGroupContextKey, {
|
...pick(toRefs(props), [
|
"size",
|
"min",
|
"max",
|
"disabled",
|
"validateEvent",
|
"fill",
|
"textColor"
|
]),
|
modelValue,
|
changeEvent
|
});
|
watch(() => props.modelValue, () => {
|
if (props.validateEvent) {
|
formItem == null ? void 0 : formItem.validate("change").catch((err) => debugWarn(err));
|
}
|
});
|
return (_ctx, _cache) => {
|
var _a;
|
return openBlock(), createBlock(resolveDynamicComponent(_ctx.tag), {
|
id: unref(groupId),
|
class: normalizeClass(unref(ns).b("group")),
|
role: "group",
|
"aria-label": !unref(isLabeledByFormItem) ? _ctx.label || "checkbox-group" : void 0,
|
"aria-labelledby": unref(isLabeledByFormItem) ? (_a = unref(formItem)) == null ? void 0 : _a.labelId : void 0
|
}, {
|
default: withCtx(() => [
|
renderSlot(_ctx.$slots, "default")
|
]),
|
_: 3
|
}, 8, ["id", "class", "aria-label", "aria-labelledby"]);
|
};
|
}
|
});
|
var CheckboxGroup = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/checkbox/src/checkbox-group.vue"]]);
|
|
export { CheckboxGroup as default };
|
//# sourceMappingURL=checkbox-group2.mjs.map
|