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.
@@ -18,6 +18,8 @@ interface Props {
18
18
  actionsAlignment?: MainAxisAlignment;
19
19
  titleAlignment?: Alignment;
20
20
  padding?: EdgeInsets;
21
+ contentStyle?: TextStyle;
22
+ contentColor?: string;
21
23
  titleStyle?: TextStyle;
22
24
  titleColor?: string;
23
25
  titleFontSize?: number;
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"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluekit",
3
- "version": "2.6.3",
3
+ "version": "2.6.4",
4
4
  "description": "A Flutter-style Layout UI kit for Vue",
5
5
  "homepage": "https://fi2zz.github.io/fluekit/",
6
6
  "repository": {