raft-ui 0.0.8 → 0.0.10
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 +39 -7
- package/dist/button-jUlaK4eN.mjs +722 -0
- package/dist/index-lPUAF7fl.d.mts +267 -0
- package/dist/index.d.mts +694 -325
- package/dist/index.mjs +981 -732
- package/dist/styles.css +120 -4
- package/dist/wip.d.mts +100 -16
- package/dist/wip.mjs +255 -32
- package/package.json +3 -2
- package/dist/tv-UUMwNowu.d.mts +0 -16
- package/dist/use-theme-Y_h1DKll.mjs +0 -34
package/dist/styles.css
CHANGED
|
@@ -1,7 +1,113 @@
|
|
|
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
|
+
@utility toast-gradient-border {
|
|
52
|
+
position: relative;
|
|
53
|
+
|
|
54
|
+
&::before {
|
|
55
|
+
content: "";
|
|
56
|
+
position: absolute;
|
|
57
|
+
inset: 0;
|
|
58
|
+
border-radius: inherit;
|
|
59
|
+
padding: var(--toast-gradient-border-width, 1px);
|
|
60
|
+
background: var(
|
|
61
|
+
--toast-gradient-border,
|
|
62
|
+
linear-gradient(
|
|
63
|
+
var(--toast-gradient-border-angle, to bottom),
|
|
64
|
+
var(--toast-gradient-border-from, rgba(255, 255, 255, 0.24)),
|
|
65
|
+
var(--toast-gradient-border-via, rgba(255, 255, 255, 0.1)),
|
|
66
|
+
var(--toast-gradient-border-to, transparent)
|
|
67
|
+
)
|
|
68
|
+
);
|
|
69
|
+
-webkit-mask:
|
|
70
|
+
linear-gradient(#fff 0 0) content-box,
|
|
71
|
+
linear-gradient(#fff 0 0);
|
|
72
|
+
-webkit-mask-composite: xor;
|
|
73
|
+
mask:
|
|
74
|
+
linear-gradient(#fff 0 0) content-box,
|
|
75
|
+
linear-gradient(#fff 0 0);
|
|
76
|
+
mask-composite: exclude;
|
|
77
|
+
pointer-events: none;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
@keyframes fadeIn {
|
|
82
|
+
from {
|
|
83
|
+
opacity: 0;
|
|
84
|
+
}
|
|
85
|
+
to {
|
|
86
|
+
opacity: 1;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@keyframes fadeOut {
|
|
91
|
+
to {
|
|
92
|
+
opacity: 0;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@keyframes slideFromBottom {
|
|
97
|
+
from {
|
|
98
|
+
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
|
99
|
+
}
|
|
100
|
+
to {
|
|
101
|
+
transform: translate3d(0, 0, 0);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@keyframes slideToBottom {
|
|
106
|
+
to {
|
|
107
|
+
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
5
111
|
@theme {
|
|
6
112
|
--shadow-*: initial;
|
|
7
113
|
|
|
@@ -188,6 +294,7 @@
|
|
|
188
294
|
--color-info-base: var(--state-info-base);
|
|
189
295
|
--color-info-light: var(--state-info-light);
|
|
190
296
|
--color-info-lighter: var(--state-info-lighter);
|
|
297
|
+
--color-soft-signal: var(--soft-signal);
|
|
191
298
|
|
|
192
299
|
--color-success-dark: var(--state-success-dark);
|
|
193
300
|
--color-success-base: var(--state-success-base);
|
|
@@ -209,6 +316,9 @@
|
|
|
209
316
|
--shadow-md: var(--theme-shadow-md);
|
|
210
317
|
--shadow-lg: var(--theme-shadow-lg);
|
|
211
318
|
--shadow-xl: var(--theme-shadow-xl);
|
|
319
|
+
--shadow-brutal-sm: var(--theme-shadow-sm);
|
|
320
|
+
--shadow-brutal: var(--theme-shadow-md);
|
|
321
|
+
--shadow-brutal-lg: var(--theme-shadow-xl);
|
|
212
322
|
|
|
213
323
|
--font-heading: var(--heading-font);
|
|
214
324
|
--font-sans: var(--sans-font);
|
|
@@ -229,7 +339,7 @@
|
|
|
229
339
|
--layer-muted: oklch(0.18 0.006 25 / 0.05);
|
|
230
340
|
--layer-field: oklch(1 0 0);
|
|
231
341
|
--layer-popover: oklch(1 0 0);
|
|
232
|
-
--layer-backdrop: oklch(0 0 0 / 0.
|
|
342
|
+
--layer-backdrop: oklch(0 0 0 / 0.65);
|
|
233
343
|
|
|
234
344
|
--line-strong: oklch(0.18 0.006 25);
|
|
235
345
|
--line: oklch(0.18 0.006 25);
|
|
@@ -277,6 +387,7 @@
|
|
|
277
387
|
--state-info-base: var(--color-brutal-cyan);
|
|
278
388
|
--state-info-light: var(--color-brutal-cyan-200);
|
|
279
389
|
--state-info-lighter: var(--color-brutal-cyan-100);
|
|
390
|
+
--soft-signal: var(--color-brutal-yellow);
|
|
280
391
|
|
|
281
392
|
--state-success-dark: oklch(0.366 0.09 153.079);
|
|
282
393
|
--state-success-base: oklch(0.714 0.176 153.079);
|
|
@@ -299,6 +410,11 @@
|
|
|
299
410
|
--theme-shadow-md: 4px 4px 0px var(--line-strong);
|
|
300
411
|
--theme-shadow-lg: 4px 4px 0px var(--color-black);
|
|
301
412
|
--theme-shadow-xl: 6px 6px 0px var(--line-strong);
|
|
413
|
+
--shadow-brutal-active: 1px 1px 0px #141111;
|
|
414
|
+
--shadow-brutal-hover: 2px 2px 0px #141111;
|
|
415
|
+
--shadow-brutal-sm: 2px 2px 0px #141111;
|
|
416
|
+
--shadow-brutal: 4px 4px 0px #141111;
|
|
417
|
+
--shadow-brutal-lg: 6px 6px 0px #141111;
|
|
302
418
|
|
|
303
419
|
--heading-font: "Hanken Grotesk", system-ui, sans-serif;
|
|
304
420
|
--sans-font: "Hanken Grotesk", system-ui, sans-serif;
|
|
@@ -318,7 +434,7 @@
|
|
|
318
434
|
--layer-muted: oklch(0.967 0.001 286);
|
|
319
435
|
--layer-field: oklch(1 0 0);
|
|
320
436
|
--layer-popover: oklch(1 0 0);
|
|
321
|
-
--layer-backdrop: oklch(0 0 0 / 0.
|
|
437
|
+
--layer-backdrop: oklch(0 0 0 / 0.15);
|
|
322
438
|
|
|
323
439
|
--line-strong: oklch(0.21 0.006 285);
|
|
324
440
|
--line: oklch(0.84 0.006 285);
|
package/dist/wip.d.mts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { a as StyledProps, i as VariantProps, n as ButtonProps } from "./index-lPUAF7fl.mjs";
|
|
2
2
|
import { Dialog } from "@base-ui/react/dialog";
|
|
3
|
-
import { ComponentPropsWithRef, ReactNode } from "react";
|
|
3
|
+
import { ComponentProps, ComponentPropsWithRef, ReactElement, ReactNode } from "react";
|
|
4
4
|
import { useRender } from "@base-ui/react/use-render";
|
|
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
9
|
//#region src/components/toggle-group/toggle-group.d.ts
|
|
9
10
|
declare const toggleGroup: import("tailwind-variants/lite").TVReturnType<{
|
|
@@ -870,6 +871,36 @@ declare function LightboxMedia({
|
|
|
870
871
|
className,
|
|
871
872
|
...props
|
|
872
873
|
}: LightboxMediaProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
874
|
+
type LightboxNavigationButtonProps = Omit<ButtonProps, "disabled" | "loading" | "size" | "variant"> & {
|
|
875
|
+
direction: "next" | "previous";
|
|
876
|
+
disabled?: boolean;
|
|
877
|
+
};
|
|
878
|
+
declare function LightboxNavigationButton({
|
|
879
|
+
className,
|
|
880
|
+
direction,
|
|
881
|
+
disabled,
|
|
882
|
+
onClick,
|
|
883
|
+
type,
|
|
884
|
+
...props
|
|
885
|
+
}: LightboxNavigationButtonProps): import("react").JSX.Element;
|
|
886
|
+
type LightboxInfoBarProps = useRender.ComponentProps<"div">;
|
|
887
|
+
declare function LightboxInfoBar({
|
|
888
|
+
render,
|
|
889
|
+
className,
|
|
890
|
+
...props
|
|
891
|
+
}: LightboxInfoBarProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
892
|
+
type LightboxInfoTitleProps = useRender.ComponentProps<"div">;
|
|
893
|
+
declare function LightboxInfoTitle({
|
|
894
|
+
render,
|
|
895
|
+
className,
|
|
896
|
+
...props
|
|
897
|
+
}: LightboxInfoTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
898
|
+
type LightboxInfoActionsProps = useRender.ComponentProps<"div">;
|
|
899
|
+
declare function LightboxInfoActions({
|
|
900
|
+
render,
|
|
901
|
+
className,
|
|
902
|
+
...props
|
|
903
|
+
}: LightboxInfoActionsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
873
904
|
type LightboxCloseProps = StyledProps<Dialog.Close.Props>;
|
|
874
905
|
declare function LightboxClose({
|
|
875
906
|
className,
|
|
@@ -877,40 +908,93 @@ declare function LightboxClose({
|
|
|
877
908
|
}: LightboxCloseProps): import("react").JSX.Element;
|
|
878
909
|
//#endregion
|
|
879
910
|
//#region src/components/bottom-sheet/bottom-sheet.d.ts
|
|
880
|
-
type BottomSheetProps =
|
|
881
|
-
declare function BottomSheet(
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
911
|
+
type BottomSheetProps = ComponentProps<typeof Drawer.Root>;
|
|
912
|
+
declare function BottomSheet({
|
|
913
|
+
direction,
|
|
914
|
+
...props
|
|
915
|
+
}: BottomSheetProps): import("react").JSX.Element;
|
|
916
|
+
type BottomSheetTriggerProps = Omit<ComponentProps<typeof Drawer.Trigger>, "asChild"> & {
|
|
917
|
+
render?: ReactElement<{
|
|
918
|
+
children?: ReactNode;
|
|
919
|
+
}>;
|
|
920
|
+
};
|
|
921
|
+
declare function BottomSheetTrigger({
|
|
922
|
+
children,
|
|
923
|
+
render,
|
|
924
|
+
...props
|
|
925
|
+
}: BottomSheetTriggerProps): import("react").JSX.Element;
|
|
926
|
+
type BottomSheetPortalProps = ComponentProps<typeof Drawer.Portal> & {
|
|
927
|
+
className?: string;
|
|
928
|
+
};
|
|
929
|
+
declare function BottomSheetPortal({
|
|
930
|
+
className,
|
|
931
|
+
children,
|
|
932
|
+
...props
|
|
933
|
+
}: BottomSheetPortalProps): import("react").JSX.Element;
|
|
934
|
+
type BottomSheetPositionerProps = ComponentPropsWithRef<"div">;
|
|
935
|
+
declare function BottomSheetPositioner({
|
|
936
|
+
className,
|
|
937
|
+
...props
|
|
938
|
+
}: BottomSheetPositionerProps): import("react").JSX.Element;
|
|
939
|
+
type BottomSheetOverlayProps = StyledProps<ComponentProps<typeof Drawer.Overlay>>;
|
|
940
|
+
declare function BottomSheetOverlay({
|
|
941
|
+
className,
|
|
942
|
+
...props
|
|
943
|
+
}: BottomSheetOverlayProps): import("react").JSX.Element;
|
|
944
|
+
type BottomSheetContentProps = StyledProps<ComponentProps<typeof Drawer.Content>>;
|
|
887
945
|
declare function BottomSheetContent({
|
|
888
946
|
className,
|
|
889
947
|
...props
|
|
890
948
|
}: BottomSheetContentProps): import("react").JSX.Element;
|
|
891
|
-
type BottomSheetCloseProps =
|
|
892
|
-
|
|
949
|
+
type BottomSheetCloseProps = Omit<ComponentProps<typeof Drawer.Close>, "asChild"> & Pick<ButtonProps, "variant" | "size"> & {
|
|
950
|
+
className?: string;
|
|
951
|
+
children?: ReactNode;
|
|
952
|
+
render?: ReactElement<{
|
|
953
|
+
children?: ReactNode;
|
|
954
|
+
}>;
|
|
955
|
+
};
|
|
956
|
+
declare function BottomSheetClose({
|
|
957
|
+
className,
|
|
958
|
+
variant,
|
|
959
|
+
size,
|
|
960
|
+
children,
|
|
961
|
+
render,
|
|
962
|
+
...props
|
|
963
|
+
}: BottomSheetCloseProps): import("react").JSX.Element;
|
|
893
964
|
type BottomSheetHeaderProps = useRender.ComponentProps<"div">;
|
|
894
965
|
declare function BottomSheetHeader({
|
|
895
966
|
className,
|
|
896
967
|
render,
|
|
897
968
|
...props
|
|
898
|
-
}: BottomSheetHeaderProps):
|
|
969
|
+
}: BottomSheetHeaderProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
899
970
|
type BottomSheetFooterProps = useRender.ComponentProps<"div">;
|
|
900
971
|
declare function BottomSheetFooter({
|
|
901
972
|
className,
|
|
902
973
|
render,
|
|
903
974
|
...props
|
|
904
|
-
}: BottomSheetFooterProps):
|
|
905
|
-
type
|
|
975
|
+
}: BottomSheetFooterProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
976
|
+
type BottomSheetBodyProps = useRender.ComponentProps<"div">;
|
|
977
|
+
declare function BottomSheetBody({
|
|
978
|
+
className,
|
|
979
|
+
render,
|
|
980
|
+
...props
|
|
981
|
+
}: BottomSheetBodyProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
982
|
+
type BottomSheetActionsProps = useRender.ComponentProps<"div">;
|
|
983
|
+
declare function BottomSheetActions({
|
|
984
|
+
className,
|
|
985
|
+
render,
|
|
986
|
+
children,
|
|
987
|
+
...props
|
|
988
|
+
}: BottomSheetActionsProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
989
|
+
type BottomSheetTitleProps = StyledProps<ComponentProps<typeof Drawer.Title>>;
|
|
906
990
|
declare function BottomSheetTitle({
|
|
907
991
|
className,
|
|
908
992
|
...props
|
|
909
993
|
}: BottomSheetTitleProps): import("react").JSX.Element;
|
|
910
|
-
type BottomSheetDescriptionProps = StyledProps<
|
|
994
|
+
type BottomSheetDescriptionProps = StyledProps<ComponentProps<typeof Drawer.Description>>;
|
|
911
995
|
declare function BottomSheetDescription({
|
|
912
996
|
className,
|
|
913
997
|
...props
|
|
914
998
|
}: BottomSheetDescriptionProps): import("react").JSX.Element;
|
|
915
999
|
//#endregion
|
|
916
|
-
export { 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, 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 };
|
|
1000
|
+
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, LightboxInfoActions, type LightboxInfoActionsProps, LightboxInfoBar, type LightboxInfoBarProps, LightboxInfoTitle, type LightboxInfoTitleProps, LightboxMedia, type LightboxMediaProps, LightboxNavigationButton, type LightboxNavigationButtonProps, 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 };
|