@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.
@@ -4658,7 +4658,10 @@ function AnimatedChoiceItemView({
4658
4658
  padding: size === 'small' ? 'kitt.2' : 'kitt.4'
4659
4659
  });
4660
4660
  return /*#__PURE__*/jsxRuntime.jsx(Animated__default.View, {
4661
- style: [style, animatedStyles],
4661
+ style: [{
4662
+ flexGrow: 1,
4663
+ justifyContent: 'center'
4664
+ }, style, animatedStyles],
4662
4665
  children: children
4663
4666
  });
4664
4667
  }
@@ -4758,6 +4761,7 @@ function ChoiceItem({
4758
4761
  checked: selected
4759
4762
  },
4760
4763
  style: style,
4764
+ flexGrow: 1,
4761
4765
  onBlur: onBlur,
4762
4766
  onFocus: onFocus,
4763
4767
  onPress: e => {
@@ -4777,6 +4781,7 @@ function ChoiceItem({
4777
4781
  });
4778
4782
  return /*#__PURE__*/jsxRuntime.jsxs(VStack, {
4779
4783
  space: "kitt.2",
4784
+ flexGrow: 1,
4780
4785
  children: [/*#__PURE__*/jsxRuntime.jsxs(AnimatedChoiceItemView, {
4781
4786
  animatedStyles: backgroundStyles,
4782
4787
  isHovered: isHovered || isHoveredInternal,