@ornikar/kitt-universal 25.58.1-canary.54fbe4c4608384a272d662dc1049beef0b811388.0 → 25.58.1-canary.a2bac16fb42ca488d0dd8ad398c7507d2e37d975.0

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.
@@ -3657,6 +3657,7 @@ const ActionsItem = /*#__PURE__*/React.forwardRef(({
3657
3657
  const mountedRef = React.useRef(false);
3658
3658
  // securing the loading state with a ref to avoid user action between rerenders
3659
3659
  const loadingRef = React.useRef(false);
3660
+ const isStretch = useBreakpointValue(stretch) || stretch === true;
3660
3661
 
3661
3662
  // effect just for tracking mounted state, as onPress can unmount the ActionButton
3662
3663
  React.useEffect(() => {
@@ -3666,6 +3667,7 @@ const ActionsItem = /*#__PURE__*/React.forwardRef(({
3666
3667
  };
3667
3668
  }, []);
3668
3669
  return /*#__PURE__*/jsxRuntime.jsx(View, {
3670
+ flexGrow: isStretch ? 1 : undefined,
3669
3671
  children: /*#__PURE__*/jsxRuntime.jsx(as, {
3670
3672
  ref: ref,
3671
3673
  ...props,