UNPKG

element-plus

Version:

A Component Library for Vue 3

139 lines (136 loc) 5.24 kB
import { defineComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, withDirectives, vModelCheckbox, renderSlot, Fragment, createTextVNode, toDisplayString, createCommentVNode } from 'vue'; import '../../../constants/index.mjs'; import '../../../utils/index.mjs'; import '../../../hooks/index.mjs'; import { useCheckbox } from './useCheckbox.mjs'; import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs'; import { isValidComponentSize } from '../../../utils/vue/validator.mjs'; import { UPDATE_MODEL_EVENT } from '../../../constants/event.mjs'; import { useNamespace } from '../../../hooks/use-namespace/index.mjs'; const _sfc_main = defineComponent({ name: "ElCheckbox", props: { modelValue: { type: [Number, String, Boolean], default: () => void 0 }, label: { type: [String, Boolean, Number, Object] }, indeterminate: Boolean, disabled: Boolean, checked: Boolean, name: { type: String, default: void 0 }, trueLabel: { type: [String, Number], default: void 0 }, falseLabel: { type: [String, Number], default: void 0 }, id: { type: String, default: void 0 }, controls: { type: String, default: void 0 }, border: Boolean, size: { type: String, validator: isValidComponentSize }, tabindex: [String, Number] }, emits: [UPDATE_MODEL_EVENT, "change"], setup(props) { const ns = useNamespace("checkbox"); return { ns, ...useCheckbox(props) }; } }); const _hoisted_1 = ["id", "aria-controls"]; const _hoisted_2 = ["tabindex", "role", "aria-checked"]; const _hoisted_3 = ["aria-hidden", "name", "tabindex", "disabled", "true-value", "false-value"]; const _hoisted_4 = ["aria-hidden", "disabled", "value", "name", "tabindex"]; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("label", { id: _ctx.id, class: normalizeClass([ _ctx.ns.b(), _ctx.ns.m(_ctx.checkboxSize), _ctx.ns.is("disabled", _ctx.isDisabled), _ctx.ns.is("bordered", _ctx.border), _ctx.ns.is("checked", _ctx.isChecked) ]), "aria-controls": _ctx.indeterminate ? _ctx.controls : null }, [ createElementVNode("span", { class: normalizeClass([ _ctx.ns.e("input"), _ctx.ns.is("disabled", _ctx.isDisabled), _ctx.ns.is("checked", _ctx.isChecked), _ctx.ns.is("indeterminate", _ctx.indeterminate), _ctx.ns.is("focus", _ctx.focus) ]), tabindex: _ctx.indeterminate ? 0 : void 0, role: _ctx.indeterminate ? "checkbox" : void 0, "aria-checked": _ctx.indeterminate ? "mixed" : false }, [ createElementVNode("span", { class: normalizeClass(_ctx.ns.e("inner")) }, null, 2), _ctx.trueLabel || _ctx.falseLabel ? withDirectives((openBlock(), createElementBlock("input", { key: 0, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.model = $event), class: normalizeClass(_ctx.ns.e("original")), type: "checkbox", "aria-hidden": _ctx.indeterminate ? "true" : "false", name: _ctx.name, tabindex: _ctx.tabindex, disabled: _ctx.isDisabled, "true-value": _ctx.trueLabel, "false-value": _ctx.falseLabel, onChange: _cache[1] || (_cache[1] = (...args) => _ctx.handleChange && _ctx.handleChange(...args)), onFocus: _cache[2] || (_cache[2] = ($event) => _ctx.focus = true), onBlur: _cache[3] || (_cache[3] = ($event) => _ctx.focus = false) }, null, 42, _hoisted_3)), [ [vModelCheckbox, _ctx.model] ]) : withDirectives((openBlock(), createElementBlock("input", { key: 1, "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => _ctx.model = $event), class: normalizeClass(_ctx.ns.e("original")), type: "checkbox", "aria-hidden": _ctx.indeterminate ? "true" : "false", disabled: _ctx.isDisabled, value: _ctx.label, name: _ctx.name, tabindex: _ctx.tabindex, onChange: _cache[5] || (_cache[5] = (...args) => _ctx.handleChange && _ctx.handleChange(...args)), onFocus: _cache[6] || (_cache[6] = ($event) => _ctx.focus = true), onBlur: _cache[7] || (_cache[7] = ($event) => _ctx.focus = false) }, null, 42, _hoisted_4)), [ [vModelCheckbox, _ctx.model] ]) ], 10, _hoisted_2), _ctx.$slots.default || _ctx.label ? (openBlock(), createElementBlock("span", { key: 0, class: normalizeClass(_ctx.ns.e("label")) }, [ renderSlot(_ctx.$slots, "default"), !_ctx.$slots.default ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [ createTextVNode(toDisplayString(_ctx.label), 1) ], 2112)) : createCommentVNode("v-if", true) ], 2)) : createCommentVNode("v-if", true) ], 10, _hoisted_1); } var Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/home/runner/work/element-plus/element-plus/packages/components/checkbox/src/checkbox.vue"]]); export { Checkbox as default }; //# sourceMappingURL=checkbox.mjs.map