cleek 2.3.44 → 2.3.45

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.
@@ -1,72 +1,72 @@
1
1
  .cursor-auto
2
- cursor auto
2
+ cursor: auto;
3
3
  .cursor-default
4
- cursor default
4
+ cursor: default;
5
5
  .cursor-pointer
6
- cursor pointer
6
+ cursor: pointer;
7
7
  .cursor-wait
8
- cursor wait
8
+ cursor: wait;
9
9
  .cursor-text
10
- cursor text
10
+ cursor: text;
11
11
  .cursor-move
12
- cursor move
12
+ cursor: move;
13
13
  .cursor-help
14
- cursor help
14
+ cursor: help;
15
15
  .cursor-not-allowed
16
- cursor not-allowed
16
+ cursor: not-allowed;
17
17
  .cursor-none
18
- cursor none;
18
+ cursor: none;
19
19
  .cursor-context-menu
20
- cursor context-menu
20
+ cursor: context-menu;
21
21
  .cursor-progress
22
- cursor progress
22
+ cursor: progress;
23
23
  .cursor-cell
24
- cursor cell
24
+ cursor: cell;
25
25
  .cursor-crosshair
26
- cursor crosshair
26
+ cursor: crosshair;
27
27
  .cursor-vertical-text
28
- cursor vertical-text
28
+ cursor: vertical-text;
29
29
  .cursor-alias
30
- cursor alias
30
+ cursor: alias;
31
31
  .cursor-copy
32
- cursor copy
32
+ cursor: copy;
33
33
  .cursor-no-drop
34
- cursor no-drop
34
+ cursor: no-drop;
35
35
  .cursor-grab
36
- cursor grab
36
+ cursor: grab;
37
37
  .cursor-grabbing
38
- cursor grabbing
38
+ cursor: grabbing;
39
39
  .cursor-all-scroll
40
- cursor all-scroll
40
+ cursor: all-scroll;
41
41
  .cursor-col-resize
42
- cursor col-resize
42
+ cursor: col-resize;
43
43
  .cursor-row-resize
44
- cursor row-resize
44
+ cursor: row-resize;
45
45
  .cursor-n-resize
46
- cursor n-resize
46
+ cursor: n-resize;
47
47
  .cursor-e-resize
48
- cursor e-resize
48
+ cursor: e-resize;
49
49
  .cursor-s-resize
50
- cursor s-resize
50
+ cursor: s-resize;
51
51
  .cursor-w-resize
52
- cursor w-resize
52
+ cursor: w-resize;
53
53
  .cursor-ne-resize
54
- cursor ne-resize
54
+ cursor: ne-resize;
55
55
  .cursor-nw-resize
56
- cursor nw-resize
56
+ cursor: nw-resize;
57
57
  .cursor-se-resize
58
- cursor se-resize
58
+ cursor: se-resize;
59
59
  .cursor-sw-resize
60
- cursor sw-resize
60
+ cursor: sw-resize;
61
61
  .cursor-ew-resize
62
- cursor ew-resize
62
+ cursor: ew-resize;
63
63
  .cursor-ns-resize
64
- cursor ns-resize
64
+ cursor: ns-resize;
65
65
  .cursor-nesw-resize
66
- cursor nesw-resize
66
+ cursor: nesw-resize;
67
67
  .cursor-nwse-resize
68
- cursor nwse-resize
68
+ cursor: nwse-resize;
69
69
  .cursor-zoom-in
70
- cursor zoom-in
70
+ cursor: zoom-in;
71
71
  .cursor-zoom-out
72
- cursor zoom-out
72
+ cursor: zoom-out;
package/dist/cleek.es.js CHANGED
@@ -16882,9 +16882,10 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
16882
16882
  width: { type: String, default: void 0 },
16883
16883
  align: { type: String, validator: validators.align, default: void 0 },
16884
16884
  rounded: { type: Boolean, default: false },
16885
- autoSelect: { type: Boolean, default: false }
16885
+ autoSelect: { type: Boolean, default: false },
16886
+ delayChangeTime: { type: [Number, String], default: 300 }
16886
16887
  },
16887
- emits: ["update:modelValue", "click", "input", "change"],
16888
+ emits: ["update:modelValue", "click", "input", "change", "delayChange"],
16888
16889
  setup(__props, { expose, emit: emits }) {
16889
16890
  const props = __props;
16890
16891
  const { windowWidth } = useWindowWidth();
@@ -16896,6 +16897,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
16896
16897
  },
16897
16898
  set(val) {
16898
16899
  emits("update:modelValue", val);
16900
+ checkSearchTime(val);
16899
16901
  }
16900
16902
  });
16901
16903
  const realLabelAlign = computed$2(() => {
@@ -16949,6 +16951,13 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
16949
16951
  function setSelect() {
16950
16952
  realInput.value.select();
16951
16953
  }
16954
+ function checkSearchTime(oldValue) {
16955
+ setTimeout(() => {
16956
+ if (value.value === oldValue) {
16957
+ emits("delayChange", oldValue);
16958
+ }
16959
+ }, +props.delayChangeTime);
16960
+ }
16952
16961
  return (_ctx, _cache) => {
16953
16962
  return openBlock(), createElementBlock("div", {
16954
16963
  class: "ck-input",
@@ -16998,7 +17007,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
16998
17007
  };
16999
17008
  }
17000
17009
  });
17001
- var ckInput = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-35324670"]]);
17010
+ var ckInput = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-bda15796"]]);
17002
17011
  var ckTable__headerItems_vue_vue_type_style_index_0_scoped_true_lang = "";
17003
17012
  const _hoisted_1$d = { class: "ck-table__header-items" };
17004
17013
  const _sfc_main$e = /* @__PURE__ */ defineComponent({
@@ -22022,7 +22031,6 @@ function getCleekOptions(userOptions) {
22022
22031
  }
22023
22032
  }
22024
22033
  setRootColors(options.colors);
22025
- console.log("finalOptions", options);
22026
22034
  return options;
22027
22035
  }
22028
22036
  const install = function installCleek(app, options) {