@ornikar/kitt-universal 25.58.1-canary.95e9af38cc4e878fc97c4391877d7b879da5b220.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.
- package/CHANGELOG.md +2 -10
- package/dist/definitions/NavigationBottomSheet/NavigationBottomSheet.d.ts +42 -0
- package/dist/definitions/NavigationBottomSheet/NavigationBottomSheet.d.ts.map +1 -0
- package/dist/definitions/NavigationBottomSheet/NavigationBottomSheet.web.d.ts +14 -0
- package/dist/definitions/NavigationBottomSheet/NavigationBottomSheet.web.d.ts.map +1 -0
- package/dist/definitions/index.d.ts +2 -0
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +61 -1
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +61 -1
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-20.10.cjs.js +61 -0
- package/dist/index-node-20.10.cjs.js.map +1 -1
- package/dist/index-node-20.10.cjs.web.js +45 -2
- package/dist/index-node-20.10.cjs.web.js.map +1 -1
- package/dist/index-node-20.10.es.mjs +61 -1
- package/dist/index-node-20.10.es.mjs.map +1 -1
- package/dist/index-node-20.10.es.web.mjs +45 -3
- package/dist/index-node-20.10.es.web.mjs.map +1 -1
- package/dist/index.es.js +76 -18
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +56 -19
- package/dist/index.es.web.js.map +1 -1
- package/dist/linaria-themes-metro.es.android.js.map +1 -1
- package/dist/linaria-themes-metro.es.ios.js.map +1 -1
- package/dist/linaria-themes-node-20.10.cjs.js.map +1 -1
- package/dist/linaria-themes-node-20.10.cjs.web.js.map +1 -1
- package/dist/linaria-themes-node-20.10.es.mjs.map +1 -1
- package/dist/linaria-themes-node-20.10.es.web.mjs.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -8
- package/scripts/run-all-transformers.js +0 -98
- package/scripts/run-transformer.js +0 -41
- package/scripts/transformers/modals.js +0 -102
|
@@ -10921,6 +10921,48 @@ NavigationModal.Body = Body;
|
|
|
10921
10921
|
NavigationModal.Footer = Footer;
|
|
10922
10922
|
NavigationModal.ModalBehaviour = NavigationModalBehaviour;
|
|
10923
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
|
+
|
|
10924
10966
|
function Notification({
|
|
10925
10967
|
type,
|
|
10926
10968
|
children,
|
|
@@ -11163,7 +11205,7 @@ function Picker({
|
|
|
11163
11205
|
disabled,
|
|
11164
11206
|
...restToggleProps
|
|
11165
11207
|
})
|
|
11166
|
-
}), /*#__PURE__*/createPortal(/*#__PURE__*/jsx(View, {
|
|
11208
|
+
}), /*#__PURE__*/createPortal( /*#__PURE__*/jsx(View, {
|
|
11167
11209
|
ref: refMemo,
|
|
11168
11210
|
testID: testID,
|
|
11169
11211
|
...menuProps,
|
|
@@ -12579,7 +12621,7 @@ function Tooltip({
|
|
|
12579
12621
|
onFocus: handleToggleTooltip,
|
|
12580
12622
|
onBlur: handleToggleTooltip,
|
|
12581
12623
|
width: '100%'
|
|
12582
|
-
}), /*#__PURE__*/createPortal(/*#__PURE__*/jsx(View, {
|
|
12624
|
+
}), /*#__PURE__*/createPortal( /*#__PURE__*/jsx(View, {
|
|
12583
12625
|
ref: refs.setFloating,
|
|
12584
12626
|
"aria-hidden": !isVisible,
|
|
12585
12627
|
paddingX: {
|
|
@@ -13138,5 +13180,5 @@ function VerticalSteps({
|
|
|
13138
13180
|
VerticalSteps.Step = Step;
|
|
13139
13181
|
VerticalSteps.BorderlessStep = BorderlessStep;
|
|
13140
13182
|
|
|
13141
|
-
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 };
|
|
13142
13184
|
//# sourceMappingURL=index-node-20.10.es.web.mjs.map
|