cleek 2.4.68 → 2.4.69
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-styles/clear-app.styl +3 -1
- package/dist/cleek.es.js +13 -5
- package/dist/cleek.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -21953,7 +21953,8 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
21953
21953
|
autofocus: { type: Boolean },
|
|
21954
21954
|
capitalize: { type: Boolean },
|
|
21955
21955
|
autoSelect: { type: Boolean },
|
|
21956
|
-
delayChangeTime: null
|
|
21956
|
+
delayChangeTime: null,
|
|
21957
|
+
justInteger: { type: Boolean }
|
|
21957
21958
|
},
|
|
21958
21959
|
emits: ["update:modelValue", "click", "input", "change", "focus", "blur", "delayChange"],
|
|
21959
21960
|
setup(__props, { expose, emit: emits }) {
|
|
@@ -21972,6 +21973,8 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
21972
21973
|
set(val) {
|
|
21973
21974
|
if (props.capitalize)
|
|
21974
21975
|
val = qmStr.capitalize(`${val}`);
|
|
21976
|
+
if (props.justInteger)
|
|
21977
|
+
val = parseInt(+val);
|
|
21975
21978
|
emits("update:modelValue", val);
|
|
21976
21979
|
checkSearchTime(val);
|
|
21977
21980
|
}
|
|
@@ -22152,7 +22155,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
22152
22155
|
};
|
|
22153
22156
|
}
|
|
22154
22157
|
});
|
|
22155
|
-
var CkInput = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-
|
|
22158
|
+
var CkInput = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-6afd22ad"]]);
|
|
22156
22159
|
var ckTable__headerItems_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
22157
22160
|
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
22158
22161
|
props: {
|
|
@@ -23926,13 +23929,18 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
23926
23929
|
return classList2;
|
|
23927
23930
|
});
|
|
23928
23931
|
const computedStyle = computed$2(() => {
|
|
23932
|
+
var _a;
|
|
23929
23933
|
const styleList = [];
|
|
23930
23934
|
if (props.sizeAbsolute) {
|
|
23931
23935
|
styleList.push({ width: props.sizeAbsolute });
|
|
23932
23936
|
styleList.push({ height: props.sizeAbsolute });
|
|
23933
23937
|
}
|
|
23934
|
-
|
|
23935
|
-
|
|
23938
|
+
let radius = props.radius;
|
|
23939
|
+
if (typeof props.radius === "undefined" && ((_a = cleekOptions2.value) == null ? void 0 : _a.styles.layout) === "squared") {
|
|
23940
|
+
radius = "0px";
|
|
23941
|
+
}
|
|
23942
|
+
if (radius)
|
|
23943
|
+
styleList.push({ "border-radius": radius });
|
|
23936
23944
|
if (props.hasBorder) {
|
|
23937
23945
|
if (!hooks8.isColorTemplateVariable(realBorderColor.value)) {
|
|
23938
23946
|
styleList.push({ "border-color": realBorderColor.value });
|
|
@@ -23990,7 +23998,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
23990
23998
|
};
|
|
23991
23999
|
}
|
|
23992
24000
|
});
|
|
23993
|
-
var ckImg = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-
|
|
24001
|
+
var ckImg = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-eed7a2c0"]]);
|
|
23994
24002
|
var ckRadio_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
23995
24003
|
const _withScopeId$2 = (n) => (pushScopeId("data-v-2e09b238"), n = n(), popScopeId(), n);
|
|
23996
24004
|
const _hoisted_1$8 = ["onKeyup"];
|