cleek 2.3.41 → 2.3.44

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.
@@ -0,0 +1,72 @@
1
+ .cursor-auto
2
+ cursor auto
3
+ .cursor-default
4
+ cursor default
5
+ .cursor-pointer
6
+ cursor pointer
7
+ .cursor-wait
8
+ cursor wait
9
+ .cursor-text
10
+ cursor text
11
+ .cursor-move
12
+ cursor move
13
+ .cursor-help
14
+ cursor help
15
+ .cursor-not-allowed
16
+ cursor not-allowed
17
+ .cursor-none
18
+ cursor none;
19
+ .cursor-context-menu
20
+ cursor context-menu
21
+ .cursor-progress
22
+ cursor progress
23
+ .cursor-cell
24
+ cursor cell
25
+ .cursor-crosshair
26
+ cursor crosshair
27
+ .cursor-vertical-text
28
+ cursor vertical-text
29
+ .cursor-alias
30
+ cursor alias
31
+ .cursor-copy
32
+ cursor copy
33
+ .cursor-no-drop
34
+ cursor no-drop
35
+ .cursor-grab
36
+ cursor grab
37
+ .cursor-grabbing
38
+ cursor grabbing
39
+ .cursor-all-scroll
40
+ cursor all-scroll
41
+ .cursor-col-resize
42
+ cursor col-resize
43
+ .cursor-row-resize
44
+ cursor row-resize
45
+ .cursor-n-resize
46
+ cursor n-resize
47
+ .cursor-e-resize
48
+ cursor e-resize
49
+ .cursor-s-resize
50
+ cursor s-resize
51
+ .cursor-w-resize
52
+ cursor w-resize
53
+ .cursor-ne-resize
54
+ cursor ne-resize
55
+ .cursor-nw-resize
56
+ cursor nw-resize
57
+ .cursor-se-resize
58
+ cursor se-resize
59
+ .cursor-sw-resize
60
+ cursor sw-resize
61
+ .cursor-ew-resize
62
+ cursor ew-resize
63
+ .cursor-ns-resize
64
+ cursor ns-resize
65
+ .cursor-nesw-resize
66
+ cursor nesw-resize
67
+ .cursor-nwse-resize
68
+ cursor nwse-resize
69
+ .cursor-zoom-in
70
+ cursor zoom-in
71
+ .cursor-zoom-out
72
+ cursor zoom-out
@@ -1,5 +1,6 @@
1
1
  @import './.custom';
2
2
  @import './align-items';
3
+ @import './cursor';
3
4
  @import './display';
4
5
  @import './flex-shrink';
5
6
  @import './flex-wrap';
package/dist/cleek.es.js CHANGED
@@ -18541,9 +18541,12 @@ const _hoisted_3$2 = {
18541
18541
  key: 0,
18542
18542
  class: "ck-table__header--slot"
18543
18543
  };
18544
- const _hoisted_4$2 = { class: "ck-table__table-container" };
18545
- const _hoisted_5 = { key: 0 };
18546
- const _hoisted_6 = { key: 1 };
18544
+ const _hoisted_4$2 = { key: 0 };
18545
+ const _hoisted_5 = { key: 1 };
18546
+ const _hoisted_6 = {
18547
+ key: 2,
18548
+ class: "ck-table--mobile-container"
18549
+ };
18547
18550
  const _sfc_main$9 = /* @__PURE__ */ defineComponent({
18548
18551
  props: {
18549
18552
  columns: { type: [Array, Object], required: true, default: () => [] },
@@ -18560,6 +18563,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
18560
18563
  cellPadding: { type: String, default: void 0 },
18561
18564
  cellPaddingY: { type: String, default: void 0 },
18562
18565
  noResultsText: { type: String, default: "No se encontraron resultados" },
18566
+ notOverflow: { type: Boolean, default: false },
18563
18567
  mobileMaxWidth: { type: [Number, String], default: 800 }
18564
18568
  },
18565
18569
  emits: ["refreshList", "update:search", "update:currentPage"],
@@ -18661,11 +18665,14 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
18661
18665
  renderSlot(_ctx.$slots, "header", {}, void 0, true)
18662
18666
  ])) : createCommentVNode("", true)
18663
18667
  ])) : createCommentVNode("", true),
18664
- createElementVNode("div", _hoisted_4$2, [
18668
+ !unref$1(isMobileVisible) ? (openBlock(), createElementBlock("div", {
18669
+ key: 1,
18670
+ class: normalizeClass(["ck-table__table-container", { "not-overflow": __props.notOverflow }])
18671
+ }, [
18665
18672
  createElementVNode("table", {
18666
18673
  class: normalizeClass(["ck-table__table", unref$1(computedClassTable)])
18667
18674
  }, [
18668
- unref$1(filteredColumnsList).length && !(_ctx.$slots.mobile && unref$1(isMobileVisible)) ? (openBlock(), createElementBlock("thead", _hoisted_5, [
18675
+ unref$1(filteredColumnsList).length && !(_ctx.$slots.mobile && unref$1(isMobileVisible)) ? (openBlock(), createElementBlock("thead", _hoisted_4$2, [
18669
18676
  createVNode(ckTr, null, {
18670
18677
  default: withCtx(() => [
18671
18678
  (openBlock(true), createElementBlock(Fragment, null, renderList(unref$1(filteredColumnsList), (col) => {
@@ -18680,9 +18687,8 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
18680
18687
  ])) : createCommentVNode("", true),
18681
18688
  createElementVNode("tbody", null, [
18682
18689
  renderSlot(_ctx.$slots, "default", {}, void 0, true),
18683
- !unref$1(isMobileVisible) ? renderSlot(_ctx.$slots, "desktop", { key: 0 }, void 0, true) : createCommentVNode("", true),
18684
- unref$1(isMobileVisible) ? renderSlot(_ctx.$slots, "mobile", { key: 1 }, void 0, true) : createCommentVNode("", true),
18685
- __props.listLength === 0 ? (openBlock(), createBlock(ckTr, { key: 2 }, {
18690
+ renderSlot(_ctx.$slots, "desktop", {}, void 0, true),
18691
+ __props.listLength === 0 ? (openBlock(), createBlock(ckTr, { key: 0 }, {
18686
18692
  default: withCtx(() => [
18687
18693
  createVNode(ckTd, {
18688
18694
  class: "no-result-text",
@@ -18698,11 +18704,14 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
18698
18704
  _: 1
18699
18705
  })) : createCommentVNode("", true)
18700
18706
  ]),
18701
- _ctx.$slots.footer ? (openBlock(), createElementBlock("tfoot", _hoisted_6, [
18707
+ _ctx.$slots.footer ? (openBlock(), createElementBlock("tfoot", _hoisted_5, [
18702
18708
  renderSlot(_ctx.$slots, "footer", {}, void 0, true)
18703
18709
  ])) : createCommentVNode("", true)
18704
18710
  ], 2)
18705
- ]),
18711
+ ], 2)) : createCommentVNode("", true),
18712
+ unref$1(isMobileVisible) ? (openBlock(), createElementBlock("div", _hoisted_6, [
18713
+ renderSlot(_ctx.$slots, "mobile", {}, void 0, true)
18714
+ ])) : createCommentVNode("", true),
18706
18715
  createVNode(TablePagination, {
18707
18716
  class: "ck-table__pagination",
18708
18717
  currentPage: unref$1(currentPageLocal),
@@ -18717,7 +18726,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
18717
18726
  };
18718
18727
  }
18719
18728
  });
18720
- var ckTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-6545e800"]]);
18729
+ var ckTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-13907a88"]]);
18721
18730
  var ckChip_vue_vue_type_style_index_0_scoped_true_lang = "";
18722
18731
  const _hoisted_1$7 = ["color"];
18723
18732
  const _sfc_main$8 = /* @__PURE__ */ defineComponent({