@ornikar/kitt-universal 25.58.1-canary.a2bac16fb42ca488d0dd8ad398c7507d2e37d975.0 → 25.59.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.
@@ -3613,7 +3613,6 @@ const ActionsItem = /*#__PURE__*/react.forwardRef(({
3613
3613
  const mountedRef = react.useRef(false);
3614
3614
  // securing the loading state with a ref to avoid user action between rerenders
3615
3615
  const loadingRef = react.useRef(false);
3616
- const isStretch = useBreakpointValue(stretch) || stretch === true;
3617
3616
 
3618
3617
  // effect just for tracking mounted state, as onPress can unmount the ActionButton
3619
3618
  react.useEffect(() => {
@@ -3623,7 +3622,6 @@ const ActionsItem = /*#__PURE__*/react.forwardRef(({
3623
3622
  };
3624
3623
  }, []);
3625
3624
  return /*#__PURE__*/jsxRuntime.jsx(View, {
3626
- flexGrow: isStretch ? 1 : undefined,
3627
3625
  children: /*#__PURE__*/jsxRuntime.jsx(as, {
3628
3626
  ref: ref,
3629
3627
  ...props,
@@ -10930,6 +10928,48 @@ NavigationModal.Body = Body;
10930
10928
  NavigationModal.Footer = Footer;
10931
10929
  NavigationModal.ModalBehaviour = NavigationModalBehaviour;
10932
10930
 
10931
+ function NavigationBottomSheet({
10932
+ children,
10933
+ isVisible,
10934
+ onClose
10935
+ }) {
10936
+ return /*#__PURE__*/jsxRuntime.jsx(NavigationModal.ModalBehaviour, {
10937
+ visible: isVisible,
10938
+ onClose: onClose || (() => {}),
10939
+ children: /*#__PURE__*/jsxRuntime.jsx(NavigationModal, {
10940
+ children: children
10941
+ })
10942
+ });
10943
+ }
10944
+ function NavigationBottomSheetHeader({
10945
+ children,
10946
+ left
10947
+ }) {
10948
+ return /*#__PURE__*/jsxRuntime.jsx(NavigationModal.Header, {
10949
+ title: children,
10950
+ left: left,
10951
+ right: /*#__PURE__*/jsxRuntime.jsx(ModalBehaviour.CloseButton, {
10952
+ children: /*#__PURE__*/jsxRuntime.jsx(IconButton, {
10953
+ icon: /*#__PURE__*/jsxRuntime.jsx(phosphor.XRegularIcon, {})
10954
+ })
10955
+ })
10956
+ });
10957
+ }
10958
+ function NavigationBottomSheetBody(props) {
10959
+ return /*#__PURE__*/jsxRuntime.jsx(NavigationModal.Body, {
10960
+ zIndex: 1,
10961
+ ...props
10962
+ });
10963
+ }
10964
+ function NavigationBottomSheetFooter(props) {
10965
+ return /*#__PURE__*/jsxRuntime.jsx(NavigationModal.Footer, {
10966
+ ...props
10967
+ });
10968
+ }
10969
+ NavigationBottomSheet.Header = NavigationBottomSheetHeader;
10970
+ NavigationBottomSheet.Body = NavigationBottomSheetBody;
10971
+ NavigationBottomSheet.Footer = NavigationBottomSheetFooter;
10972
+
10933
10973
  function Notification({
10934
10974
  type,
10935
10975
  children,
@@ -13213,6 +13253,7 @@ exports.MatchWindowSize = MatchWindowSize;
13213
13253
  exports.Message = Message;
13214
13254
  exports.ModalBehaviour = ModalBehaviour;
13215
13255
  exports.NativeOnlyFlatList = NativeOnlyFlatList;
13256
+ exports.NavigationBottomSheet = NavigationBottomSheet;
13216
13257
  exports.NavigationModal = NavigationModal;
13217
13258
  exports.Notification = Notification;
13218
13259
  exports.Overlay = Overlay;