cleek 2.6.65 → 2.6.67

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/README.md CHANGED
@@ -60,6 +60,7 @@ yarn lint
60
60
  ```
61
61
 
62
62
  **Format all files**
63
+
63
64
  ```bash
64
65
  yarn format
65
66
  ```
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,14 +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
- console.log("columnsCheckable.value", columnsCheckable.value);
49018
- console.log("lista", columnsCheckable.value.filter((col) => !col.neverDisplay));
49019
- columnsCheckable.value.forEach((col) => {
49020
- console.log("col", col);
49021
- });
49022
- return columnsCheckable.value.filter((col) => !col.neverDisplay);
49023
- });
49024
49018
  watch$1(() => isActive.value, (val) => {
49025
49019
  if (!val)
49026
49020
  return;
@@ -49050,7 +49044,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent$1({
49050
49044
  }, {
49051
49045
  default: withCtx$1(() => [
49052
49046
  createElementVNode("div", _hoisted_1$d, [
49053
- (openBlock$1(true), createElementBlock$1(Fragment$1, null, renderList(unref$2(filteredColumnsCheckable), (col, colIndex) => {
49047
+ (openBlock$1(true), createElementBlock$1(Fragment$1, null, renderList(unref$2(columnsCheckable), (col, colIndex) => {
49054
49048
  return openBlock$1(), createElementBlock$1("div", {
49055
49049
  class: "columns-manger__item",
49056
49050
  key: colIndex
@@ -49074,7 +49068,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent$1({
49074
49068
  };
49075
49069
  }
49076
49070
  });
49077
- var TableColumnsManager = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-3c02fded"]]);
49071
+ var TableColumnsManager = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-1e76a35c"]]);
49078
49072
  var ckTable_vue_vue_type_style_index_0_lang = "";
49079
49073
  var ckTable_vue_vue_type_style_index_1_scoped_true_lang = "";
49080
49074
  const _hoisted_1$c = { class: "ck-table" };
@@ -59226,6 +59220,7 @@ var components = /* @__PURE__ */ Object.freeze({
59226
59220
  CkSwitch: ckSwitch,
59227
59221
  CkSwitchOptions: ckSwitchOptions,
59228
59222
  CkTextarea: ckTextarea,
59223
+ useWindowWidth,
59229
59224
  ckNotify
59230
59225
  });
59231
59226
  library$1$1.add(_iconsCache$5);
@@ -59263,4 +59258,4 @@ const install3 = function installCleek(app, options) {
59263
59258
  app.component(componentName, component);
59264
59259
  });
59265
59260
  };
59266
- export { CkButton, ckCard as CkCard, CkCheckbox, ckChip as CkChip, ckDatetimeShower as CkDatetimeShower, _sfc_main$a as CkDiv, ckDropdown as CkDropdown, CkIcon, ckImg as CkImg, CkInput, ckInputDate as CkInputDate, _sfc_main$d as CkInputTime, CkLabel, ckNavbar as CkNavbar, _sfc_main$f as CkPagination, _sfc_main$i as CkPopup, ckRadio as CkRadio, ckSelect as CkSelect, ckSidebar as CkSidebar, ckSwitch as CkSwitch, ckSwitchOptions as CkSwitchOptions, ckTable as CkTable, CkTd, ckTextarea as CkTextarea, CkTh, CkTr, ckNotify, install3 as default };
59261
+ export { CkButton, ckCard as CkCard, CkCheckbox, ckChip as CkChip, ckDatetimeShower as CkDatetimeShower, _sfc_main$a as CkDiv, ckDropdown as CkDropdown, CkIcon, ckImg as CkImg, CkInput, ckInputDate as CkInputDate, _sfc_main$d as CkInputTime, CkLabel, ckNavbar as CkNavbar, _sfc_main$f as CkPagination, _sfc_main$i as CkPopup, ckRadio as CkRadio, ckSelect as CkSelect, ckSidebar as CkSidebar, ckSwitch as CkSwitch, ckSwitchOptions as CkSwitchOptions, ckTable as CkTable, CkTd, ckTextarea as CkTextarea, CkTh, CkTr, ckNotify, install3 as default, useWindowWidth };