fluekit 2.6.3 → 2.6.4
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/AlertDialog.d.ts +2 -0
- package/dist/index.js +6 -4
- package/package.json +1 -1
package/dist/AlertDialog.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -4511,6 +4511,8 @@ var Radio_default = /* @__PURE__ */ defineComponent({
|
|
|
4511
4511
|
actionsAlignment: { default: MainAxisAlignment.end },
|
|
4512
4512
|
titleAlignment: {},
|
|
4513
4513
|
padding: {},
|
|
4514
|
+
contentStyle: {},
|
|
4515
|
+
contentColor: {},
|
|
4514
4516
|
titleStyle: {},
|
|
4515
4517
|
titleColor: {},
|
|
4516
4518
|
titleFontSize: {},
|
|
@@ -4569,14 +4571,14 @@ var Radio_default = /* @__PURE__ */ defineComponent({
|
|
|
4569
4571
|
fontSize: a.titleFontSize || 20,
|
|
4570
4572
|
fontWeight: FontWeight.bold,
|
|
4571
4573
|
color: a.titleColor || "rgba(0,0,0,0.87)"
|
|
4572
|
-
}, a.titleStyle))), S = computed(() => d.value ? TextStyle({
|
|
4574
|
+
}, a.titleStyle))), S = computed(() => d.value ? TextStyle(Object.assign({
|
|
4573
4575
|
fontSize: 13,
|
|
4574
4576
|
color: "#000000",
|
|
4575
4577
|
fontFamily: "-apple-system, BlinkMacSystemFont, sans-serif"
|
|
4576
|
-
}) : TextStyle({
|
|
4578
|
+
}, a.contentStyle)) : TextStyle(Object.assign({
|
|
4577
4579
|
fontSize: 16,
|
|
4578
|
-
color: "rgba(0,0,0,0.6)"
|
|
4579
|
-
})), C = computed(() => BoxDecoration({ border: Border.only({ top: {
|
|
4580
|
+
color: a.contentColor || "rgba(0,0,0,0.6)"
|
|
4581
|
+
}, a.contentStyle))), C = computed(() => BoxDecoration({ border: Border.only({ top: {
|
|
4580
4582
|
color: "rgba(60, 60, 67, 0.29)",
|
|
4581
4583
|
width: .5,
|
|
4582
4584
|
style: "solid"
|