@ornikar/kitt-universal 29.5.0 → 29.5.1

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.
@@ -4635,7 +4635,10 @@ function AnimatedChoiceItemView({
4635
4635
  padding: size === 'small' ? 'kitt.2' : 'kitt.4'
4636
4636
  });
4637
4637
  return /*#__PURE__*/jsx(Animated.View, {
4638
- style: [style, animatedStyles],
4638
+ style: [{
4639
+ flexGrow: 1,
4640
+ justifyContent: 'center'
4641
+ }, style, animatedStyles],
4639
4642
  children: children
4640
4643
  });
4641
4644
  }
@@ -4735,6 +4738,7 @@ function ChoiceItem({
4735
4738
  checked: selected
4736
4739
  },
4737
4740
  style: style,
4741
+ flexGrow: 1,
4738
4742
  onBlur: onBlur,
4739
4743
  onFocus: onFocus,
4740
4744
  onPress: e => {
@@ -4754,6 +4758,7 @@ function ChoiceItem({
4754
4758
  });
4755
4759
  return /*#__PURE__*/jsxs(VStack, {
4756
4760
  space: "kitt.2",
4761
+ flexGrow: 1,
4757
4762
  children: [/*#__PURE__*/jsxs(AnimatedChoiceItemView, {
4758
4763
  animatedStyles: backgroundStyles,
4759
4764
  isHovered: isHovered || isHoveredInternal,