@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.
@@ -3606,7 +3606,6 @@ const ActionsItem = /*#__PURE__*/forwardRef(({
3606
3606
  const mountedRef = useRef(false);
3607
3607
  // securing the loading state with a ref to avoid user action between rerenders
3608
3608
  const loadingRef = useRef(false);
3609
- const isStretch = useBreakpointValue(stretch) || stretch === true;
3610
3609
 
3611
3610
  // effect just for tracking mounted state, as onPress can unmount the ActionButton
3612
3611
  useEffect(() => {
@@ -3616,7 +3615,6 @@ const ActionsItem = /*#__PURE__*/forwardRef(({
3616
3615
  };
3617
3616
  }, []);
3618
3617
  return /*#__PURE__*/jsx(View, {
3619
- flexGrow: isStretch ? 1 : undefined,
3620
3618
  children: /*#__PURE__*/jsx(as, {
3621
3619
  ref: ref,
3622
3620
  ...props,
@@ -10923,6 +10921,48 @@ NavigationModal.Body = Body;
10923
10921
  NavigationModal.Footer = Footer;
10924
10922
  NavigationModal.ModalBehaviour = NavigationModalBehaviour;
10925
10923
 
10924
+ function NavigationBottomSheet({
10925
+ children,
10926
+ isVisible,
10927
+ onClose
10928
+ }) {
10929
+ return /*#__PURE__*/jsx(NavigationModal.ModalBehaviour, {
10930
+ visible: isVisible,
10931
+ onClose: onClose || (() => {}),
10932
+ children: /*#__PURE__*/jsx(NavigationModal, {
10933
+ children: children
10934
+ })
10935
+ });
10936
+ }
10937
+ function NavigationBottomSheetHeader({
10938
+ children,
10939
+ left
10940
+ }) {
10941
+ return /*#__PURE__*/jsx(NavigationModal.Header, {
10942
+ title: children,
10943
+ left: left,
10944
+ right: /*#__PURE__*/jsx(ModalBehaviour.CloseButton, {
10945
+ children: /*#__PURE__*/jsx(IconButton, {
10946
+ icon: /*#__PURE__*/jsx(XRegularIcon, {})
10947
+ })
10948
+ })
10949
+ });
10950
+ }
10951
+ function NavigationBottomSheetBody(props) {
10952
+ return /*#__PURE__*/jsx(NavigationModal.Body, {
10953
+ zIndex: 1,
10954
+ ...props
10955
+ });
10956
+ }
10957
+ function NavigationBottomSheetFooter(props) {
10958
+ return /*#__PURE__*/jsx(NavigationModal.Footer, {
10959
+ ...props
10960
+ });
10961
+ }
10962
+ NavigationBottomSheet.Header = NavigationBottomSheetHeader;
10963
+ NavigationBottomSheet.Body = NavigationBottomSheetBody;
10964
+ NavigationBottomSheet.Footer = NavigationBottomSheetFooter;
10965
+
10926
10966
  function Notification({
10927
10967
  type,
10928
10968
  children,
@@ -13140,5 +13180,5 @@ function VerticalSteps({
13140
13180
  VerticalSteps.Step = Step;
13141
13181
  VerticalSteps.BorderlessStep = BorderlessStep;
13142
13182
 
13143
- export { ActionCard, Actions, Autocomplete, Avatar, BottomSheet, Button, ButtonBadge, CardModal, Center, Checkbox, ChoicesElements, CloseIconButton, DatePicker, DialogModal, DocumentPicker, Emoji, ExternalAppLink, ExternalLink, FilePicker, FlatList, Flex, FullscreenModal, GoogleMapsApiKeyProvider, GoogleMapsAutocompleteProvider, GroupTags, HStack, Highlight, Icon, IconButton, Image, ImagePicker, InfoCard, InputAddress, InputEmail, InputFeedback, InputField, InputIban, InputIcon, InputNumber, InputPassword, InputPhone, InputPressable, InputTag, InputText, KittBreakpointNameEnum, KittBreakpoints, KittBreakpointsMax, KittMapConfigProvider, KittNativeBaseProvider, KittThemeDecorator, KittThemeProvider, Label, ListItem, LoaderIcon, MapMarker, MapMarkerVariantEnum, MatchWindowSize, Message, ModalBehaviour, NativeOnlyFlatList, NavigationModal, Notification, Overlay, PageLoader, Picker, Pressable, RadioWithRef as Radio, RadioButtonGroup, ScrollView, DeprecatedSection as Section, SectionList, SegmentedProgressBar, Skeleton, SpinningIcon, Stack, StaticMap, Story, StoryBlock, StoryContainer, StoryDecorator, StoryGrid, StorySection, StoryTitle, StyleWebWrapper, SwitchBreakpoints, TabBar, Tag, TextArea, TimePicker, ToastComponent, Toggle, Tooltip, Typography, TypographyEmoji, TypographyIcon, TypographyLink, VStack, VerticalSteps, View, createChoicesComponent, createResponsiveStyleFromProp, getStaticMapImageUrl, getValueForBreakpoint, hex2rgba, matchWindowSize, storyPadding, theme, useBottomSheet, useBreakpointValue, useCurrentBreakpointName, useGetStaticMapImageUrl, useKittMapConfig, useKittTheme, useMatchWindowSize, useOpenExternalLink, useStaticBottomSheet, useStoryBlockColor, useTheme };
13183
+ export { ActionCard, Actions, Autocomplete, Avatar, BottomSheet, Button, ButtonBadge, CardModal, Center, Checkbox, ChoicesElements, CloseIconButton, DatePicker, DialogModal, DocumentPicker, Emoji, ExternalAppLink, ExternalLink, FilePicker, FlatList, Flex, FullscreenModal, GoogleMapsApiKeyProvider, GoogleMapsAutocompleteProvider, GroupTags, HStack, Highlight, Icon, IconButton, Image, ImagePicker, InfoCard, InputAddress, InputEmail, InputFeedback, InputField, InputIban, InputIcon, InputNumber, InputPassword, InputPhone, InputPressable, InputTag, InputText, KittBreakpointNameEnum, KittBreakpoints, KittBreakpointsMax, KittMapConfigProvider, KittNativeBaseProvider, KittThemeDecorator, KittThemeProvider, Label, ListItem, LoaderIcon, MapMarker, MapMarkerVariantEnum, MatchWindowSize, Message, ModalBehaviour, NativeOnlyFlatList, NavigationBottomSheet, NavigationModal, Notification, Overlay, PageLoader, Picker, Pressable, RadioWithRef as Radio, RadioButtonGroup, ScrollView, DeprecatedSection as Section, SectionList, SegmentedProgressBar, Skeleton, SpinningIcon, Stack, StaticMap, Story, StoryBlock, StoryContainer, StoryDecorator, StoryGrid, StorySection, StoryTitle, StyleWebWrapper, SwitchBreakpoints, TabBar, Tag, TextArea, TimePicker, ToastComponent, Toggle, Tooltip, Typography, TypographyEmoji, TypographyIcon, TypographyLink, VStack, VerticalSteps, View, createChoicesComponent, createResponsiveStyleFromProp, getStaticMapImageUrl, getValueForBreakpoint, hex2rgba, matchWindowSize, storyPadding, theme, useBottomSheet, useBreakpointValue, useCurrentBreakpointName, useGetStaticMapImageUrl, useKittMapConfig, useKittTheme, useMatchWindowSize, useOpenExternalLink, useStaticBottomSheet, useStoryBlockColor, useTheme };
13144
13184
  //# sourceMappingURL=index-node-20.10.es.web.mjs.map