fluekit 2.6.2 → 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
@@ -2671,7 +2671,9 @@ var Positioned_default = /* @__PURE__ */ defineComponent({
2671
2671
  }, d.value)), _ = {
2672
2672
  pointerEvents: "auto",
2673
2673
  display: "flex",
2674
- flexDirection: "column"
2674
+ flexDirection: "column",
2675
+ width: "100%",
2676
+ height: "100%"
2675
2677
  };
2676
2678
  return provideStackContext(), (t, a) => (openBlock(), createElementBlock("div", { style: normalizeStyle(l.value) }, [(openBlock(!0), createElementBlock(Fragment, null, renderList(s.value, (t, i) => (openBlock(), createElementBlock("div", {
2677
2679
  key: i,
@@ -4509,6 +4511,8 @@ var Radio_default = /* @__PURE__ */ defineComponent({
4509
4511
  actionsAlignment: { default: MainAxisAlignment.end },
4510
4512
  titleAlignment: {},
4511
4513
  padding: {},
4514
+ contentStyle: {},
4515
+ contentColor: {},
4512
4516
  titleStyle: {},
4513
4517
  titleColor: {},
4514
4518
  titleFontSize: {},
@@ -4567,14 +4571,14 @@ var Radio_default = /* @__PURE__ */ defineComponent({
4567
4571
  fontSize: a.titleFontSize || 20,
4568
4572
  fontWeight: FontWeight.bold,
4569
4573
  color: a.titleColor || "rgba(0,0,0,0.87)"
4570
- }, a.titleStyle))), S = computed(() => d.value ? TextStyle({
4574
+ }, a.titleStyle))), S = computed(() => d.value ? TextStyle(Object.assign({
4571
4575
  fontSize: 13,
4572
4576
  color: "#000000",
4573
4577
  fontFamily: "-apple-system, BlinkMacSystemFont, sans-serif"
4574
- }) : TextStyle({
4578
+ }, a.contentStyle)) : TextStyle(Object.assign({
4575
4579
  fontSize: 16,
4576
- color: "rgba(0,0,0,0.6)"
4577
- })), 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: {
4578
4582
  color: "rgba(60, 60, 67, 0.29)",
4579
4583
  width: .5,
4580
4584
  style: "solid"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluekit",
3
- "version": "2.6.2",
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": {