cleek 2.4.89 → 2.4.90
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 -1
- package/dist/cleek.umd.js +1 -1
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -49508,7 +49508,8 @@ var ckChip = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-038
|
|
|
49508
49508
|
var ckDiv_vue_vue_type_style_index_0_lang = "";
|
|
49509
49509
|
const _sfc_main$a = /* @__PURE__ */ defineComponent$1({
|
|
49510
49510
|
props: {
|
|
49511
|
-
widthBreaks: null
|
|
49511
|
+
widthBreaks: null,
|
|
49512
|
+
block: { type: Boolean }
|
|
49512
49513
|
},
|
|
49513
49514
|
emits: ["click"],
|
|
49514
49515
|
setup(__props, { emit: emits }) {
|
|
@@ -49521,6 +49522,8 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent$1({
|
|
|
49521
49522
|
if (width)
|
|
49522
49523
|
list.push({ width });
|
|
49523
49524
|
}
|
|
49525
|
+
if (props.block)
|
|
49526
|
+
list.push({ display: "block" });
|
|
49524
49527
|
return list;
|
|
49525
49528
|
});
|
|
49526
49529
|
return (_ctx, _cache) => {
|