raft-ui 0.0.7 → 0.0.9

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/dist/styles.css CHANGED
@@ -1,7 +1,83 @@
1
- @import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@300..700&family=Hanken+Grotesk:wght@300..700&display=swap");
2
-
3
1
  /* Pure token contract. No legacy action/surface/destructive/component aliases. */
4
2
 
3
+ [data-vaul-drawer] {
4
+ touch-action: none;
5
+ will-change: transform;
6
+ transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1);
7
+ animation-duration: 0.2s;
8
+ animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
9
+ }
10
+
11
+ [data-vaul-drawer][data-vaul-snap-points="false"][data-vaul-drawer-direction="bottom"][data-state="open"] {
12
+ animation-name: slideFromBottom;
13
+ }
14
+
15
+ [data-vaul-drawer][data-vaul-snap-points="false"][data-vaul-drawer-direction="bottom"][data-state="closed"] {
16
+ animation-name: slideToBottom;
17
+ }
18
+
19
+ [data-vaul-overlay][data-vaul-snap-points="false"] {
20
+ animation-duration: 0.2s;
21
+ animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
22
+ }
23
+
24
+ [data-vaul-overlay][data-vaul-snap-points="false"][data-state="open"] {
25
+ animation-name: fadeIn;
26
+ }
27
+
28
+ [data-vaul-overlay][data-state="closed"] {
29
+ animation-name: fadeOut;
30
+ }
31
+
32
+ [data-vaul-animate="false"] {
33
+ animation: none !important;
34
+ }
35
+
36
+ [data-vaul-drawer]:not([data-vaul-custom-container="true"])::after {
37
+ content: "";
38
+ position: absolute;
39
+ background: inherit;
40
+ background-color: inherit;
41
+ }
42
+
43
+ [data-vaul-drawer][data-vaul-drawer-direction="bottom"]::after {
44
+ top: 100%;
45
+ bottom: initial;
46
+ left: 0;
47
+ right: 0;
48
+ height: 200%;
49
+ }
50
+
51
+ @keyframes fadeIn {
52
+ from {
53
+ opacity: 0;
54
+ }
55
+ to {
56
+ opacity: 1;
57
+ }
58
+ }
59
+
60
+ @keyframes fadeOut {
61
+ to {
62
+ opacity: 0;
63
+ }
64
+ }
65
+
66
+ @keyframes slideFromBottom {
67
+ from {
68
+ transform: translate3d(0, var(--initial-transform, 100%), 0);
69
+ }
70
+ to {
71
+ transform: translate3d(0, 0, 0);
72
+ }
73
+ }
74
+
75
+ @keyframes slideToBottom {
76
+ to {
77
+ transform: translate3d(0, var(--initial-transform, 100%), 0);
78
+ }
79
+ }
80
+
5
81
  @theme {
6
82
  --shadow-*: initial;
7
83
 
@@ -229,7 +305,7 @@
229
305
  --layer-muted: oklch(0.18 0.006 25 / 0.05);
230
306
  --layer-field: oklch(1 0 0);
231
307
  --layer-popover: oklch(1 0 0);
232
- --layer-backdrop: oklch(0 0 0 / 0.75);
308
+ --layer-backdrop: oklch(0 0 0 / 0.65);
233
309
 
234
310
  --line-strong: oklch(0.18 0.006 25);
235
311
  --line: oklch(0.18 0.006 25);
@@ -318,7 +394,7 @@
318
394
  --layer-muted: oklch(0.967 0.001 286);
319
395
  --layer-field: oklch(1 0 0);
320
396
  --layer-popover: oklch(1 0 0);
321
- --layer-backdrop: oklch(0 0 0 / 0.75);
397
+ --layer-backdrop: oklch(0 0 0 / 0.15);
322
398
 
323
399
  --line-strong: oklch(0.21 0.006 285);
324
400
  --line: oklch(0.84 0.006 285);
package/dist/wip.d.mts CHANGED
@@ -1,128 +1,11 @@
1
- import { a as VariantProps, i as StyledProps, n as ButtonProps } from "./index-CpGciYPW.mjs";
2
- import { ComponentPropsWithRef, ReactNode } from "react";
1
+ import { a as StyledProps, i as VariantProps, n as ButtonProps } from "./index-lPUAF7fl.mjs";
2
+ import { Dialog } from "@base-ui/react/dialog";
3
+ import { ComponentProps, ComponentPropsWithRef, ReactElement, ReactNode } from "react";
3
4
  import { useRender } from "@base-ui/react/use-render";
4
- import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
5
5
  import { Toggle } from "@base-ui/react/toggle";
6
6
  import { ToggleGroup as ToggleGroup$1 } from "@base-ui/react/toggle-group";
7
+ import { Drawer } from "vaul";
7
8
 
8
- //#region src/components/dialog/dialog.d.ts
9
- type DialogProps = Dialog$1.Root.Props;
10
- declare function Dialog(props: DialogProps): import("react").JSX.Element;
11
- type DialogTriggerProps = Dialog$1.Trigger.Props;
12
- declare function DialogTrigger(props: DialogTriggerProps): import("react").JSX.Element;
13
- type DialogPortalProps = Dialog$1.Portal.Props;
14
- declare function DialogPortal(props: DialogPortalProps): import("react").JSX.Element;
15
- type DialogOverlayProps = StyledProps<Dialog$1.Backdrop.Props>;
16
- declare function DialogOverlay({
17
- className,
18
- ...props
19
- }: DialogOverlayProps): import("react").JSX.Element;
20
- type DialogContentProps = StyledProps<Dialog$1.Popup.Props> & {
21
- portalProps?: DialogPortalProps;
22
- overlay?: false | DialogOverlayProps;
23
- };
24
- declare function DialogContent({
25
- className,
26
- children,
27
- portalProps,
28
- overlay,
29
- ...props
30
- }: DialogContentProps): import("react").JSX.Element;
31
- type DialogCloseProps = Dialog$1.Close.Props;
32
- declare function DialogClose(props: DialogCloseProps): import("react").JSX.Element;
33
- type DialogHeaderProps = ComponentPropsWithRef<"div">;
34
- declare function DialogHeader({
35
- className,
36
- ...props
37
- }: DialogHeaderProps): import("react").JSX.Element;
38
- type DialogBodyProps = ComponentPropsWithRef<"div">;
39
- declare function DialogBody({
40
- className,
41
- ...props
42
- }: DialogBodyProps): import("react").JSX.Element;
43
- type DialogFooterProps = ComponentPropsWithRef<"div">;
44
- declare function DialogFooter({
45
- className,
46
- ...props
47
- }: DialogFooterProps): import("react").JSX.Element;
48
- type DialogTitleProps = StyledProps<Dialog$1.Title.Props>;
49
- declare function DialogTitle({
50
- className,
51
- ...props
52
- }: DialogTitleProps): import("react").JSX.Element;
53
- type DialogDescriptionProps = StyledProps<Dialog$1.Description.Props>;
54
- declare function DialogDescription({
55
- className,
56
- ...props
57
- }: DialogDescriptionProps): import("react").JSX.Element;
58
- //#endregion
59
- //#region src/components/alert-dialog/alert-dialog.d.ts
60
- type AlertDialogProps = Dialog$1.Root.Props;
61
- declare function AlertDialog(props: AlertDialogProps): import("react").JSX.Element;
62
- type AlertDialogTriggerProps = Dialog$1.Trigger.Props;
63
- declare function AlertDialogTrigger(props: AlertDialogTriggerProps): import("react").JSX.Element;
64
- type AlertDialogPortalProps = Dialog$1.Portal.Props;
65
- declare function AlertDialogPortal(props: AlertDialogPortalProps): import("react").JSX.Element;
66
- type AlertDialogOverlayProps = StyledProps<Dialog$1.Backdrop.Props>;
67
- declare function AlertDialogOverlay({
68
- className,
69
- ...props
70
- }: AlertDialogOverlayProps): import("react").JSX.Element;
71
- type AlertDialogContentProps = StyledProps<Dialog$1.Popup.Props> & {
72
- portalProps?: AlertDialogPortalProps;
73
- overlay?: false | AlertDialogOverlayProps;
74
- size?: "sm" | "md";
75
- };
76
- declare function AlertDialogContent({
77
- className,
78
- children,
79
- portalProps,
80
- overlay,
81
- size,
82
- ...props
83
- }: AlertDialogContentProps): import("react").JSX.Element;
84
- type AlertDialogHeaderProps = ComponentPropsWithRef<"div">;
85
- declare function AlertDialogHeader({
86
- className,
87
- ...props
88
- }: AlertDialogHeaderProps): import("react").JSX.Element;
89
- type AlertDialogMediaProps = ComponentPropsWithRef<"div">;
90
- declare function AlertDialogMedia({
91
- className,
92
- ...props
93
- }: AlertDialogMediaProps): import("react").JSX.Element;
94
- type AlertDialogBodyProps = ComponentPropsWithRef<"div">;
95
- declare function AlertDialogBody({
96
- className,
97
- ...props
98
- }: AlertDialogBodyProps): import("react").JSX.Element;
99
- type AlertDialogFooterProps = ComponentPropsWithRef<"div">;
100
- declare function AlertDialogFooter({
101
- className,
102
- ...props
103
- }: AlertDialogFooterProps): import("react").JSX.Element;
104
- type AlertDialogTitleProps = StyledProps<Dialog$1.Title.Props>;
105
- declare function AlertDialogTitle({
106
- className,
107
- ...props
108
- }: AlertDialogTitleProps): import("react").JSX.Element;
109
- type AlertDialogDescriptionProps = StyledProps<Dialog$1.Description.Props>;
110
- declare function AlertDialogDescription({
111
- className,
112
- ...props
113
- }: AlertDialogDescriptionProps): import("react").JSX.Element;
114
- type AlertDialogActionProps = ButtonProps;
115
- declare function AlertDialogAction(props: AlertDialogActionProps): import("react").JSX.Element;
116
- type AlertDialogCancelProps = Omit<Dialog$1.Close.Props, "render"> & Pick<ButtonProps, "variant" | "size"> & {
117
- className?: string;
118
- };
119
- declare function AlertDialogCancel({
120
- className,
121
- variant,
122
- size,
123
- ...props
124
- }: AlertDialogCancelProps): import("react").JSX.Element;
125
- //#endregion
126
9
  //#region src/components/toggle-group/toggle-group.d.ts
127
10
  declare const toggleGroup: import("tailwind-variants/lite").TVReturnType<{
128
11
  theme: {
@@ -934,7 +817,7 @@ declare function DescriptionAction({
934
817
  }: DescriptionActionProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
935
818
  //#endregion
936
819
  //#region src/components/lightbox/lightbox.d.ts
937
- type LightboxProps<Payload = unknown> = Omit<Dialog$1.Root.Props<Payload>, "actionsRef" | "children" | "handle"> & {
820
+ type LightboxProps<Payload = unknown> = Omit<Dialog.Root.Props<Payload>, "actionsRef" | "children" | "handle"> & {
938
821
  children?: ReactNode;
939
822
  closeOnModW?: boolean;
940
823
  };
@@ -947,11 +830,11 @@ declare function Lightbox<Payload = unknown>({
947
830
  children,
948
831
  ...props
949
832
  }: LightboxProps<Payload>): import("react").JSX.Element;
950
- type LightboxTriggerProps = Dialog$1.Trigger.Props;
833
+ type LightboxTriggerProps = Dialog.Trigger.Props;
951
834
  declare function LightboxTrigger(props: LightboxTriggerProps): import("react").JSX.Element;
952
- type LightboxPortalProps = Dialog$1.Portal.Props;
835
+ type LightboxPortalProps = Dialog.Portal.Props;
953
836
  declare function LightboxPortal(props: LightboxPortalProps): import("react").JSX.Element;
954
- type LightboxContentProps = StyledProps<Dialog$1.Popup.Props>;
837
+ type LightboxContentProps = StyledProps<Dialog.Popup.Props>;
955
838
  declare function LightboxContent({
956
839
  className,
957
840
  initialFocus,
@@ -988,47 +871,100 @@ declare function LightboxMedia({
988
871
  className,
989
872
  ...props
990
873
  }: LightboxMediaProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
991
- type LightboxCloseProps = StyledProps<Dialog$1.Close.Props>;
874
+ type LightboxCloseProps = StyledProps<Dialog.Close.Props>;
992
875
  declare function LightboxClose({
993
876
  className,
994
877
  ...props
995
878
  }: LightboxCloseProps): import("react").JSX.Element;
996
879
  //#endregion
997
880
  //#region src/components/bottom-sheet/bottom-sheet.d.ts
998
- type BottomSheetProps = Dialog$1.Root.Props;
999
- declare function BottomSheet(props: BottomSheetProps): import("react").JSX.Element;
1000
- type BottomSheetTriggerProps = Dialog$1.Trigger.Props;
1001
- declare function BottomSheetTrigger(props: BottomSheetTriggerProps): import("react").JSX.Element;
1002
- type BottomSheetPortalProps = Dialog$1.Portal.Props;
1003
- declare function BottomSheetPortal(props: BottomSheetPortalProps): import("react").JSX.Element;
1004
- type BottomSheetContentProps = StyledProps<Dialog$1.Popup.Props>;
881
+ type BottomSheetProps = ComponentProps<typeof Drawer.Root>;
882
+ declare function BottomSheet({
883
+ direction,
884
+ ...props
885
+ }: BottomSheetProps): import("react").JSX.Element;
886
+ type BottomSheetTriggerProps = Omit<ComponentProps<typeof Drawer.Trigger>, "asChild"> & {
887
+ render?: ReactElement<{
888
+ children?: ReactNode;
889
+ }>;
890
+ };
891
+ declare function BottomSheetTrigger({
892
+ children,
893
+ render,
894
+ ...props
895
+ }: BottomSheetTriggerProps): import("react").JSX.Element;
896
+ type BottomSheetPortalProps = ComponentProps<typeof Drawer.Portal> & {
897
+ className?: string;
898
+ };
899
+ declare function BottomSheetPortal({
900
+ className,
901
+ children,
902
+ ...props
903
+ }: BottomSheetPortalProps): import("react").JSX.Element;
904
+ type BottomSheetPositionerProps = ComponentPropsWithRef<"div">;
905
+ declare function BottomSheetPositioner({
906
+ className,
907
+ ...props
908
+ }: BottomSheetPositionerProps): import("react").JSX.Element;
909
+ type BottomSheetOverlayProps = StyledProps<ComponentProps<typeof Drawer.Overlay>>;
910
+ declare function BottomSheetOverlay({
911
+ className,
912
+ ...props
913
+ }: BottomSheetOverlayProps): import("react").JSX.Element;
914
+ type BottomSheetContentProps = StyledProps<ComponentProps<typeof Drawer.Content>>;
1005
915
  declare function BottomSheetContent({
1006
916
  className,
1007
917
  ...props
1008
918
  }: BottomSheetContentProps): import("react").JSX.Element;
1009
- type BottomSheetCloseProps = Dialog$1.Close.Props;
1010
- declare function BottomSheetClose(props: BottomSheetCloseProps): import("react").JSX.Element;
919
+ type BottomSheetCloseProps = Omit<ComponentProps<typeof Drawer.Close>, "asChild"> & Pick<ButtonProps, "variant" | "size"> & {
920
+ className?: string;
921
+ children?: ReactNode;
922
+ render?: ReactElement<{
923
+ children?: ReactNode;
924
+ }>;
925
+ };
926
+ declare function BottomSheetClose({
927
+ className,
928
+ variant,
929
+ size,
930
+ children,
931
+ render,
932
+ ...props
933
+ }: BottomSheetCloseProps): import("react").JSX.Element;
1011
934
  type BottomSheetHeaderProps = useRender.ComponentProps<"div">;
1012
935
  declare function BottomSheetHeader({
1013
936
  className,
1014
937
  render,
1015
938
  ...props
1016
- }: BottomSheetHeaderProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
939
+ }: BottomSheetHeaderProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
1017
940
  type BottomSheetFooterProps = useRender.ComponentProps<"div">;
1018
941
  declare function BottomSheetFooter({
1019
942
  className,
1020
943
  render,
1021
944
  ...props
1022
- }: BottomSheetFooterProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
1023
- type BottomSheetTitleProps = StyledProps<Dialog$1.Title.Props>;
945
+ }: BottomSheetFooterProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
946
+ type BottomSheetBodyProps = useRender.ComponentProps<"div">;
947
+ declare function BottomSheetBody({
948
+ className,
949
+ render,
950
+ ...props
951
+ }: BottomSheetBodyProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
952
+ type BottomSheetActionsProps = useRender.ComponentProps<"div">;
953
+ declare function BottomSheetActions({
954
+ className,
955
+ render,
956
+ children,
957
+ ...props
958
+ }: BottomSheetActionsProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
959
+ type BottomSheetTitleProps = StyledProps<ComponentProps<typeof Drawer.Title>>;
1024
960
  declare function BottomSheetTitle({
1025
961
  className,
1026
962
  ...props
1027
963
  }: BottomSheetTitleProps): import("react").JSX.Element;
1028
- type BottomSheetDescriptionProps = StyledProps<Dialog$1.Description.Props>;
964
+ type BottomSheetDescriptionProps = StyledProps<ComponentProps<typeof Drawer.Description>>;
1029
965
  declare function BottomSheetDescription({
1030
966
  className,
1031
967
  ...props
1032
968
  }: BottomSheetDescriptionProps): import("react").JSX.Element;
1033
969
  //#endregion
1034
- export { AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogBody, type AlertDialogBodyProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogMedia, type AlertDialogMediaProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, BottomSheet, BottomSheetClose, type BottomSheetCloseProps, BottomSheetContent, type BottomSheetContentProps, BottomSheetDescription, type BottomSheetDescriptionProps, BottomSheetFooter, type BottomSheetFooterProps, BottomSheetHeader, type BottomSheetHeaderProps, BottomSheetPortal, type BottomSheetPortalProps, type BottomSheetProps, BottomSheetTitle, type BottomSheetTitleProps, BottomSheetTrigger, type BottomSheetTriggerProps, ConversationPreviewCard, ConversationPreviewCardAction, type ConversationPreviewCardActionProps, ConversationPreviewCardAuthor, ConversationPreviewCardAuthorName, type ConversationPreviewCardAuthorNameProps, type ConversationPreviewCardAuthorProps, ConversationPreviewCardAuthorSubtitle, type ConversationPreviewCardAuthorSubtitleProps, ConversationPreviewCardChannel, type ConversationPreviewCardChannelProps, ConversationPreviewCardContent, type ConversationPreviewCardContentProps, ConversationPreviewCardFooter, type ConversationPreviewCardFooterProps, ConversationPreviewCardMeta, type ConversationPreviewCardMetaProps, ConversationPreviewCardPreview, ConversationPreviewCardPreviewAuthor, type ConversationPreviewCardPreviewAuthorProps, ConversationPreviewCardPreviewLeading, type ConversationPreviewCardPreviewLeadingProps, type ConversationPreviewCardPreviewProps, type ConversationPreviewCardProps, ConversationPreviewCardSecondaryPreview, type ConversationPreviewCardSecondaryPreviewProps, ConversationPreviewCardTimestamp, type ConversationPreviewCardTimestampProps, DescriptionAction, type DescriptionActionProps, DescriptionDetails, type DescriptionDetailsProps, DescriptionItem, type DescriptionItemProps, DescriptionList, type DescriptionListProps, DescriptionTerm, type DescriptionTermProps, Dialog, DialogBody, type DialogBodyProps, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, type DialogPortalProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Lightbox, LightboxActions, type LightboxActionsProps, LightboxClose, type LightboxCloseProps, LightboxContent, type LightboxContentProps, LightboxHeader, type LightboxHeaderProps, LightboxMedia, type LightboxMediaProps, LightboxPortal, type LightboxPortalProps, type LightboxProps, LightboxStage, type LightboxStageProps, LightboxTitle, type LightboxTitleProps, LightboxTrigger, type LightboxTriggerProps, ListItem, ListItemActionGroup, type ListItemActionGroupProps, ListItemBody, type ListItemBodyProps, ListItemDescription, type ListItemDescriptionProps, ListItemIcon, type ListItemIconProps, ListItemMeta, type ListItemMetaProps, type ListItemProps, ListItemRow, type ListItemRowProps, ListItemTitle, type ListItemTitleProps, MediaListItem, MediaListItemActionGroup, type MediaListItemActionGroupProps, MediaListItemAside, type MediaListItemAsideProps, MediaListItemBody, type MediaListItemBodyProps, type MediaListItemProps, MediaListItemSubtitle, type MediaListItemSubtitleProps, MediaListItemText, type MediaListItemTextProps, MediaListItemTitle, type MediaListItemTitleProps, MediaListItemVisual, type MediaListItemVisualProps, PanelHeader, PanelHeaderActions, type PanelHeaderActionsProps, PanelHeaderContent, type PanelHeaderContentProps, PanelHeaderIcon, type PanelHeaderIconProps, type PanelHeaderProps, PanelHeaderSubtitle, type PanelHeaderSubtitleProps, PanelHeaderSuffix, type PanelHeaderSuffixProps, PanelHeaderTitle, type PanelHeaderTitleProps, PanelHeaderTitleRow, type PanelHeaderTitleRowProps, PanelHeaderVisual, type PanelHeaderVisualProps, PreviewShell, type PreviewShellProps, QuotedMessageCard, QuotedMessageCardAttachments, type QuotedMessageCardAttachmentsProps, QuotedMessageCardAuthor, QuotedMessageCardAuthorName, type QuotedMessageCardAuthorNameProps, type QuotedMessageCardAuthorProps, QuotedMessageCardAuthorSubtitle, type QuotedMessageCardAuthorSubtitleProps, QuotedMessageCardBody, type QuotedMessageCardBodyProps, QuotedMessageCardChannel, type QuotedMessageCardChannelProps, QuotedMessageCardContent, type QuotedMessageCardContentProps, QuotedMessageCardContentWrap, type QuotedMessageCardContentWrapProps, QuotedMessageCardHeader, type QuotedMessageCardHeaderProps, QuotedMessageCardMeta, type QuotedMessageCardMetaProps, type QuotedMessageCardProps, QuotedMessageCardSeparator, type QuotedMessageCardSeparatorProps, QuotedMessageCardTag, type QuotedMessageCardTagProps, QuotedMessageCardThread, type QuotedMessageCardThreadProps, QuotedMessageCardTimestamp, type QuotedMessageCardTimestampProps, QuotedMessageCardUnavailable, type QuotedMessageCardUnavailableProps, SectionHeader, SectionHeaderActions, type SectionHeaderActionsProps, SectionHeaderContent, type SectionHeaderContentProps, SectionHeaderCount, type SectionHeaderCountProps, SectionHeaderIcon, type SectionHeaderIconProps, type SectionHeaderProps, SectionHeaderTitle, type SectionHeaderTitleProps, SectionLabel, type SectionLabelProps, ToggleGroup, ToggleGroupCount, type ToggleGroupCountProps, ToggleGroupItem, type ToggleGroupItemProps, ToggleGroupLabel, type ToggleGroupLabelProps, type ToggleGroupProps };
970
+ export { BottomSheet, BottomSheetActions, type BottomSheetActionsProps, BottomSheetBody, type BottomSheetBodyProps, BottomSheetClose, type BottomSheetCloseProps, BottomSheetContent, type BottomSheetContentProps, BottomSheetDescription, type BottomSheetDescriptionProps, BottomSheetFooter, type BottomSheetFooterProps, BottomSheetHeader, type BottomSheetHeaderProps, BottomSheetOverlay, type BottomSheetOverlayProps, BottomSheetPortal, type BottomSheetPortalProps, BottomSheetPositioner, type BottomSheetPositionerProps, type BottomSheetProps, BottomSheetTitle, type BottomSheetTitleProps, BottomSheetTrigger, type BottomSheetTriggerProps, ConversationPreviewCard, ConversationPreviewCardAction, type ConversationPreviewCardActionProps, ConversationPreviewCardAuthor, ConversationPreviewCardAuthorName, type ConversationPreviewCardAuthorNameProps, type ConversationPreviewCardAuthorProps, ConversationPreviewCardAuthorSubtitle, type ConversationPreviewCardAuthorSubtitleProps, ConversationPreviewCardChannel, type ConversationPreviewCardChannelProps, ConversationPreviewCardContent, type ConversationPreviewCardContentProps, ConversationPreviewCardFooter, type ConversationPreviewCardFooterProps, ConversationPreviewCardMeta, type ConversationPreviewCardMetaProps, ConversationPreviewCardPreview, ConversationPreviewCardPreviewAuthor, type ConversationPreviewCardPreviewAuthorProps, ConversationPreviewCardPreviewLeading, type ConversationPreviewCardPreviewLeadingProps, type ConversationPreviewCardPreviewProps, type ConversationPreviewCardProps, ConversationPreviewCardSecondaryPreview, type ConversationPreviewCardSecondaryPreviewProps, ConversationPreviewCardTimestamp, type ConversationPreviewCardTimestampProps, DescriptionAction, type DescriptionActionProps, DescriptionDetails, type DescriptionDetailsProps, DescriptionItem, type DescriptionItemProps, DescriptionList, type DescriptionListProps, DescriptionTerm, type DescriptionTermProps, Lightbox, LightboxActions, type LightboxActionsProps, LightboxClose, type LightboxCloseProps, LightboxContent, type LightboxContentProps, LightboxHeader, type LightboxHeaderProps, LightboxMedia, type LightboxMediaProps, LightboxPortal, type LightboxPortalProps, type LightboxProps, LightboxStage, type LightboxStageProps, LightboxTitle, type LightboxTitleProps, LightboxTrigger, type LightboxTriggerProps, ListItem, ListItemActionGroup, type ListItemActionGroupProps, ListItemBody, type ListItemBodyProps, ListItemDescription, type ListItemDescriptionProps, ListItemIcon, type ListItemIconProps, ListItemMeta, type ListItemMetaProps, type ListItemProps, ListItemRow, type ListItemRowProps, ListItemTitle, type ListItemTitleProps, MediaListItem, MediaListItemActionGroup, type MediaListItemActionGroupProps, MediaListItemAside, type MediaListItemAsideProps, MediaListItemBody, type MediaListItemBodyProps, type MediaListItemProps, MediaListItemSubtitle, type MediaListItemSubtitleProps, MediaListItemText, type MediaListItemTextProps, MediaListItemTitle, type MediaListItemTitleProps, MediaListItemVisual, type MediaListItemVisualProps, PanelHeader, PanelHeaderActions, type PanelHeaderActionsProps, PanelHeaderContent, type PanelHeaderContentProps, PanelHeaderIcon, type PanelHeaderIconProps, type PanelHeaderProps, PanelHeaderSubtitle, type PanelHeaderSubtitleProps, PanelHeaderSuffix, type PanelHeaderSuffixProps, PanelHeaderTitle, type PanelHeaderTitleProps, PanelHeaderTitleRow, type PanelHeaderTitleRowProps, PanelHeaderVisual, type PanelHeaderVisualProps, PreviewShell, type PreviewShellProps, QuotedMessageCard, QuotedMessageCardAttachments, type QuotedMessageCardAttachmentsProps, QuotedMessageCardAuthor, QuotedMessageCardAuthorName, type QuotedMessageCardAuthorNameProps, type QuotedMessageCardAuthorProps, QuotedMessageCardAuthorSubtitle, type QuotedMessageCardAuthorSubtitleProps, QuotedMessageCardBody, type QuotedMessageCardBodyProps, QuotedMessageCardChannel, type QuotedMessageCardChannelProps, QuotedMessageCardContent, type QuotedMessageCardContentProps, QuotedMessageCardContentWrap, type QuotedMessageCardContentWrapProps, QuotedMessageCardHeader, type QuotedMessageCardHeaderProps, QuotedMessageCardMeta, type QuotedMessageCardMetaProps, type QuotedMessageCardProps, QuotedMessageCardSeparator, type QuotedMessageCardSeparatorProps, QuotedMessageCardTag, type QuotedMessageCardTagProps, QuotedMessageCardThread, type QuotedMessageCardThreadProps, QuotedMessageCardTimestamp, type QuotedMessageCardTimestampProps, QuotedMessageCardUnavailable, type QuotedMessageCardUnavailableProps, SectionHeader, SectionHeaderActions, type SectionHeaderActionsProps, SectionHeaderContent, type SectionHeaderContentProps, SectionHeaderCount, type SectionHeaderCountProps, SectionHeaderIcon, type SectionHeaderIconProps, type SectionHeaderProps, SectionHeaderTitle, type SectionHeaderTitleProps, SectionLabel, type SectionLabelProps, ToggleGroup, ToggleGroupCount, type ToggleGroupCountProps, ToggleGroupItem, type ToggleGroupItemProps, ToggleGroupLabel, type ToggleGroupLabelProps, type ToggleGroupProps };