cleek 2.1.18 → 2.1.19
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/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -11501,6 +11501,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
11501
11501
|
type: { type: String, default: "outlined", validator: validators.buttonType },
|
|
11502
11502
|
color: { type: String, default: "primary" },
|
|
11503
11503
|
align: { type: String, default: "left", validator: validators.align },
|
|
11504
|
+
size: { type: String, default: "m", validator: validators.size },
|
|
11504
11505
|
icon: { type: [String, Array], default: void 0 },
|
|
11505
11506
|
iconPack: { type: String, default: void 0 },
|
|
11506
11507
|
iconRight: { type: String, default: void 0 },
|
|
@@ -11533,6 +11534,8 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
11533
11534
|
if (!validators.buttonType(props.type))
|
|
11534
11535
|
type = "outlined";
|
|
11535
11536
|
classList2.push(`type-${type}`);
|
|
11537
|
+
if (props.size)
|
|
11538
|
+
classList2.push(`rs-component-size__${props.size}`);
|
|
11536
11539
|
return classList2;
|
|
11537
11540
|
});
|
|
11538
11541
|
function onClick(event) {
|
|
@@ -11568,7 +11571,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
11568
11571
|
};
|
|
11569
11572
|
}
|
|
11570
11573
|
});
|
|
11571
|
-
var ckButton = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-
|
|
11574
|
+
var ckButton = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-0641f9bc"]]);
|
|
11572
11575
|
var ckLabel_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
11573
11576
|
const _hoisted_1$f = ["for"];
|
|
11574
11577
|
const _sfc_main$g = /* @__PURE__ */ defineComponent({
|