@rocketui/vue 0.0.34 → 0.0.35
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/rocket-ui-vue.js +5 -3
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.js
CHANGED
|
@@ -7501,7 +7501,8 @@ const L2 = ["onClick"], M2 = { class: "accordion__title" }, A2 = { class: "accor
|
|
|
7501
7501
|
size: { default: "medium" },
|
|
7502
7502
|
height: { default: "" },
|
|
7503
7503
|
block: { type: Boolean, default: !1 },
|
|
7504
|
-
backgroundColor: { default: "" }
|
|
7504
|
+
backgroundColor: { default: "" },
|
|
7505
|
+
color: null
|
|
7505
7506
|
},
|
|
7506
7507
|
emits: ["click"],
|
|
7507
7508
|
setup(H) {
|
|
@@ -7517,10 +7518,11 @@ const L2 = ["onClick"], M2 = { class: "accordion__title" }, A2 = { class: "accor
|
|
|
7517
7518
|
medium: 24,
|
|
7518
7519
|
large: 32
|
|
7519
7520
|
})[V.size || "medium"]), M = k(() => {
|
|
7520
|
-
const { backgroundColor: A, height: i } = V;
|
|
7521
|
+
const { backgroundColor: A, height: i, color: e } = V;
|
|
7521
7522
|
return {
|
|
7522
7523
|
backgroundColor: A,
|
|
7523
|
-
height: i ? `${i}px` : ""
|
|
7524
|
+
height: i ? `${i}px` : "",
|
|
7525
|
+
color: e
|
|
7524
7526
|
};
|
|
7525
7527
|
});
|
|
7526
7528
|
return (A, i) => (t(), r("button", U1(A.$attrs, {
|