cleek 2.6.64 → 2.6.66
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 +4 -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
|
@@ -46480,6 +46480,8 @@ var hooks9 = {
|
|
|
46480
46480
|
return false;
|
|
46481
46481
|
},
|
|
46482
46482
|
isColumnDisplayed(column) {
|
|
46483
|
+
if (column.neverDisplay)
|
|
46484
|
+
return false;
|
|
46483
46485
|
if (column.isDisplayed === false)
|
|
46484
46486
|
return false;
|
|
46485
46487
|
if (column.unchangeable) {
|
|
@@ -49013,9 +49015,6 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent$1({
|
|
|
49013
49015
|
emits("update:modelValue", val);
|
|
49014
49016
|
}
|
|
49015
49017
|
});
|
|
49016
|
-
const filteredColumnsCheckable = computed$3(() => {
|
|
49017
|
-
return columnsCheckable.value.filter((col) => !col.neverDisplay);
|
|
49018
|
-
});
|
|
49019
49018
|
watch$1(() => isActive.value, (val) => {
|
|
49020
49019
|
if (!val)
|
|
49021
49020
|
return;
|
|
@@ -49045,7 +49044,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent$1({
|
|
|
49045
49044
|
}, {
|
|
49046
49045
|
default: withCtx$1(() => [
|
|
49047
49046
|
createElementVNode("div", _hoisted_1$d, [
|
|
49048
|
-
(openBlock$1(true), createElementBlock$1(Fragment$1, null, renderList(unref$2(
|
|
49047
|
+
(openBlock$1(true), createElementBlock$1(Fragment$1, null, renderList(unref$2(columnsCheckable), (col, colIndex) => {
|
|
49049
49048
|
return openBlock$1(), createElementBlock$1("div", {
|
|
49050
49049
|
class: "columns-manger__item",
|
|
49051
49050
|
key: colIndex
|
|
@@ -49069,7 +49068,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent$1({
|
|
|
49069
49068
|
};
|
|
49070
49069
|
}
|
|
49071
49070
|
});
|
|
49072
|
-
var TableColumnsManager = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-
|
|
49071
|
+
var TableColumnsManager = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-1e76a35c"]]);
|
|
49073
49072
|
var ckTable_vue_vue_type_style_index_0_lang = "";
|
|
49074
49073
|
var ckTable_vue_vue_type_style_index_1_scoped_true_lang = "";
|
|
49075
49074
|
const _hoisted_1$c = { class: "ck-table" };
|