cleek 2.7.6 → 2.7.7
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 +7 -1
- package/dist/cleek.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -82920,6 +82920,8 @@ const _sfc_main$n = defineComponent$2({
|
|
|
82920
82920
|
disabled: { type: Boolean },
|
|
82921
82921
|
placeholder: {},
|
|
82922
82922
|
plusMinusButtons: { type: Boolean },
|
|
82923
|
+
min: {},
|
|
82924
|
+
max: {},
|
|
82923
82925
|
label: {},
|
|
82924
82926
|
labelAlign: {},
|
|
82925
82927
|
icon: {},
|
|
@@ -82960,6 +82962,10 @@ const _sfc_main$n = defineComponent$2({
|
|
|
82960
82962
|
val = qmStr.capitalize(`${val}`);
|
|
82961
82963
|
if (props.justInteger)
|
|
82962
82964
|
val = parseInt(`${+val}`);
|
|
82965
|
+
if (props.min && +val < +props.min)
|
|
82966
|
+
val = +props.min;
|
|
82967
|
+
if (props.max && +val > +props.max)
|
|
82968
|
+
val = +props.max;
|
|
82963
82969
|
emits("update:modelValue", val);
|
|
82964
82970
|
checkSearchTime(val);
|
|
82965
82971
|
}
|
|
@@ -83176,7 +83182,7 @@ const _sfc_main$n = defineComponent$2({
|
|
|
83176
83182
|
};
|
|
83177
83183
|
}
|
|
83178
83184
|
});
|
|
83179
|
-
var CkInput = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-
|
|
83185
|
+
var CkInput = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-b58d67ca"]]);
|
|
83180
83186
|
var ckTable__headerItems_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
83181
83187
|
const _sfc_main$m = defineComponent$2({
|
|
83182
83188
|
__name: "ck-table__header-items",
|