cleek 2.4.46 → 2.4.47
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 +7 -1
- package/dist/cleek.umd.js +1 -1
- package/dist/components/ck-textarea.vue.d.ts +4 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -23639,10 +23639,12 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
23639
23639
|
resize: { type: [Boolean, String] },
|
|
23640
23640
|
layout: null,
|
|
23641
23641
|
borderColor: null,
|
|
23642
|
+
align: null,
|
|
23642
23643
|
group: null,
|
|
23643
23644
|
groupVertical: null,
|
|
23644
23645
|
borderRadius: null,
|
|
23645
23646
|
fontSize: null,
|
|
23647
|
+
textColor: null,
|
|
23646
23648
|
width: null,
|
|
23647
23649
|
height: null,
|
|
23648
23650
|
capitalize: { type: Boolean },
|
|
@@ -23686,10 +23688,14 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
23686
23688
|
if (borderColor && !hooks8.isColorTemplateVariable(borderColor)) {
|
|
23687
23689
|
list.push({ "border-color": borderColor });
|
|
23688
23690
|
}
|
|
23691
|
+
if (props.align)
|
|
23692
|
+
list.push(`align--${props.align}`);
|
|
23689
23693
|
if (props.fontSize)
|
|
23690
23694
|
list.push({ "font-size": props.fontSize });
|
|
23691
23695
|
if (props.borderRadius)
|
|
23692
23696
|
list.push({ "border-radius": props.borderRadius });
|
|
23697
|
+
if (props.textColor)
|
|
23698
|
+
list.push({ "color": props.textColor });
|
|
23693
23699
|
if (props.width)
|
|
23694
23700
|
list.push({ "width": props.width });
|
|
23695
23701
|
if (props.height)
|
|
@@ -23743,7 +23749,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
23743
23749
|
};
|
|
23744
23750
|
}
|
|
23745
23751
|
});
|
|
23746
|
-
var ckTextarea = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-
|
|
23752
|
+
var ckTextarea = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-032f62d5"]]);
|
|
23747
23753
|
var CkConfirm_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
23748
23754
|
const _withScopeId = (n) => (pushScopeId("data-v-314de9fc"), n = n(), popScopeId(), n);
|
|
23749
23755
|
const _hoisted_1$1 = { class: "ck-confirm--background" };
|