cleek 2.6.37 → 2.6.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cleek.es.js +16 -21
- package/dist/cleek.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { watch as watch$1, effectScope, reactive as reactive$2, computed as computed$3, pushScopeId as pushScopeId$2, popScopeId as popScopeId$2, defineComponent as defineComponent$2, nextTick as nextTick$4, openBlock as openBlock$2, createBlock as createBlock$2, createElementBlock as createElementBlock$2, normalizeClass as normalizeClass$2, renderSlot as renderSlot$2, normalizeProps as normalizeProps$1, guardReactiveProps as guardReactiveProps$2, withScopeId as withScopeId$2, resolveComponent as resolveComponent$2, normalizeStyle as normalizeStyle$2, withKeys as withKeys$2, createElementVNode, Fragment as Fragment$2, createCommentVNode as createCommentVNode$2, withCtx as withCtx$2, createVNode as createVNode$2, ref as ref$1, createApp, h as h$2, mergeProps as mergeProps$2, toDisplayString as toDisplayString$1, resolveDirective, createTextVNode as createTextVNode$2, withDirectives as withDirectives$1, onMounted as onMounted$1, getCurrentInstance as getCurrentInstance$1, unref as unref$3, onBeforeUnmount as onBeforeUnmount$1, vModelText, vModelDynamic, renderList as renderList$1, withModifiers as withModifiers$1, Teleport as Teleport$1, watchEffect, resolveDynamicComponent as resolveDynamicComponent$1, vShow as vShow$1, vModelRadio, vModelSelect
|
|
1
|
+
import { watch as watch$1, effectScope, reactive as reactive$2, computed as computed$3, pushScopeId as pushScopeId$2, popScopeId as popScopeId$2, defineComponent as defineComponent$2, nextTick as nextTick$4, openBlock as openBlock$2, createBlock as createBlock$2, createElementBlock as createElementBlock$2, normalizeClass as normalizeClass$2, renderSlot as renderSlot$2, normalizeProps as normalizeProps$1, guardReactiveProps as guardReactiveProps$2, withScopeId as withScopeId$2, resolveComponent as resolveComponent$2, normalizeStyle as normalizeStyle$2, withKeys as withKeys$2, createElementVNode, Fragment as Fragment$2, createCommentVNode as createCommentVNode$2, withCtx as withCtx$2, createVNode as createVNode$2, ref as ref$1, createApp, h as h$2, mergeProps as mergeProps$2, toDisplayString as toDisplayString$1, resolveDirective, createTextVNode as createTextVNode$2, withDirectives as withDirectives$1, onMounted as onMounted$1, getCurrentInstance as getCurrentInstance$1, unref as unref$3, onBeforeUnmount as onBeforeUnmount$1, vModelText, vModelDynamic, renderList as renderList$1, withModifiers as withModifiers$1, Teleport as Teleport$1, watchEffect, resolveDynamicComponent as resolveDynamicComponent$1, vShow as vShow$1, vModelRadio, vModelSelect } from "vue";
|
|
2
2
|
function getDevtoolsGlobalHook$2() {
|
|
3
3
|
return getTarget$2().__VUE_DEVTOOLS_GLOBAL_HOOK__;
|
|
4
4
|
}
|
|
@@ -89886,8 +89886,8 @@ const _sfc_main$6 = defineComponent$2({
|
|
|
89886
89886
|
});
|
|
89887
89887
|
var ckSidebar = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-64161f5d"]]);
|
|
89888
89888
|
var ckSwitch_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
89889
|
-
const _withScopeId$1 = (n2) => (pushScopeId$2("data-v-
|
|
89890
|
-
const _hoisted_1$5 = ["disabled"];
|
|
89889
|
+
const _withScopeId$1 = (n2) => (pushScopeId$2("data-v-9cc93cea"), n2 = n2(), popScopeId$2(), n2);
|
|
89890
|
+
const _hoisted_1$5 = ["checked", "disabled"];
|
|
89891
89891
|
const _hoisted_2$4 = { class: "ck-switch__slider-container" };
|
|
89892
89892
|
const _hoisted_3$2 = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ createElementVNode("div", { class: "ck-switch__slider" }, null, -1));
|
|
89893
89893
|
const _hoisted_4$2 = {
|
|
@@ -89918,16 +89918,6 @@ const _sfc_main$5 = defineComponent$2({
|
|
|
89918
89918
|
emits("update:modelValue", val);
|
|
89919
89919
|
}
|
|
89920
89920
|
});
|
|
89921
|
-
const checkedValue = computed$3({
|
|
89922
|
-
get() {
|
|
89923
|
-
return value.value;
|
|
89924
|
-
},
|
|
89925
|
-
set(val) {
|
|
89926
|
-
if (props.preventAutoUpdate)
|
|
89927
|
-
return;
|
|
89928
|
-
value.value = val;
|
|
89929
|
-
}
|
|
89930
|
-
});
|
|
89931
89921
|
const computedClass = computed$3(() => {
|
|
89932
89922
|
const list = [];
|
|
89933
89923
|
if (props.squared)
|
|
@@ -89951,22 +89941,27 @@ const _sfc_main$5 = defineComponent$2({
|
|
|
89951
89941
|
}
|
|
89952
89942
|
return list;
|
|
89953
89943
|
});
|
|
89944
|
+
function handleCheckboxChange(event) {
|
|
89945
|
+
if (props.preventAutoUpdate) {
|
|
89946
|
+
event.preventDefault();
|
|
89947
|
+
} else {
|
|
89948
|
+
value.value = event.target.checked;
|
|
89949
|
+
}
|
|
89950
|
+
}
|
|
89954
89951
|
return (_ctx, _cache) => {
|
|
89955
89952
|
return openBlock$2(), createElementBlock$2("label", mergeProps$2({ class: "ck-switch" }, computedAttributes.value, {
|
|
89956
89953
|
class: computedClass.value,
|
|
89957
89954
|
onKeydown: _cache[1] || (_cache[1] = withKeys$2(withModifiers$1(() => {
|
|
89958
89955
|
}, ["prevent"]), ["space"]))
|
|
89959
89956
|
}), [
|
|
89960
|
-
|
|
89957
|
+
createElementVNode("input", {
|
|
89961
89958
|
class: "ck-switch__input",
|
|
89962
89959
|
type: "checkbox",
|
|
89963
|
-
|
|
89964
|
-
checked: false,
|
|
89960
|
+
checked: value.value,
|
|
89965
89961
|
"aria-hidden": "true",
|
|
89966
|
-
disabled: _ctx.disabled
|
|
89967
|
-
|
|
89968
|
-
|
|
89969
|
-
]),
|
|
89962
|
+
disabled: _ctx.disabled,
|
|
89963
|
+
onChange: _cache[0] || (_cache[0] = ($event) => handleCheckboxChange($event))
|
|
89964
|
+
}, null, 40, _hoisted_1$5),
|
|
89970
89965
|
createElementVNode("div", _hoisted_2$4, [
|
|
89971
89966
|
_hoisted_3$2,
|
|
89972
89967
|
_ctx.icon && value.value ? (openBlock$2(), createBlock$2(CkIcon, {
|
|
@@ -89989,7 +89984,7 @@ const _sfc_main$5 = defineComponent$2({
|
|
|
89989
89984
|
};
|
|
89990
89985
|
}
|
|
89991
89986
|
});
|
|
89992
|
-
var ckSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-
|
|
89987
|
+
var ckSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-9cc93cea"]]);
|
|
89993
89988
|
var ckSwitchOptions_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
89994
89989
|
const _hoisted_1$4 = { class: "ck-switch-options__container-exterior" };
|
|
89995
89990
|
const _hoisted_2$3 = ["onClick"];
|