@medway-ui/core 1.4.2 → 1.5.1
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/assets/css/tokens.css +11 -1
- package/dist/assets/js/tokens.ts +6 -1
- package/dist/index.d.mts +36 -13
- package/dist/index.d.ts +36 -13
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -11
|
@@ -305,6 +305,11 @@
|
|
|
305
305
|
--color-input: var(--color-gray-100);
|
|
306
306
|
--color-ring: var(--color-gray-150);
|
|
307
307
|
|
|
308
|
+
/* === Base content colors === */
|
|
309
|
+
--color-content-title: var(--color-primary);
|
|
310
|
+
--color-content-paragraph: var(--color-gray-600);
|
|
311
|
+
--color-content-link: var(--color-secondary-darken-2);
|
|
312
|
+
|
|
308
313
|
/* === Base surfacecolors === */
|
|
309
314
|
--color-surface-elevated: var(--color-white);
|
|
310
315
|
--color-surface-card: var(--color-white);
|
|
@@ -516,7 +521,7 @@
|
|
|
516
521
|
--text-xxs: 10px;
|
|
517
522
|
--text-xs: 12px;
|
|
518
523
|
--text-sm: 14px;
|
|
519
|
-
--text-
|
|
524
|
+
--text-md: 16px;
|
|
520
525
|
--text-lg: 18px;
|
|
521
526
|
--text-title-xs: 20px;
|
|
522
527
|
--text-title-sm: 24px;
|
|
@@ -579,6 +584,11 @@
|
|
|
579
584
|
--color-input: var(--color-gray-600);
|
|
580
585
|
--color-ring: var(--color-gray-500);
|
|
581
586
|
|
|
587
|
+
/* === Base content colors === */
|
|
588
|
+
--color-content-title: var(--color-white);
|
|
589
|
+
--color-content-paragraph: var(--color-gray-150);
|
|
590
|
+
--color-content-link: var(--color-secondary);
|
|
591
|
+
|
|
582
592
|
/* === Dark surface colors === */
|
|
583
593
|
--color-surface-elevated: var(--color-gray-800);
|
|
584
594
|
--color-surface-card: var(--color-gray-850);
|
package/dist/assets/js/tokens.ts
CHANGED
|
@@ -9,6 +9,11 @@ export const colors = {
|
|
|
9
9
|
ring: "var(--color-ring)",
|
|
10
10
|
input: "var(--color-input)",
|
|
11
11
|
border: "var(--color-border)",
|
|
12
|
+
content: {
|
|
13
|
+
title: "var(--color-content-title)",
|
|
14
|
+
paragraph: "var(--color-content-paragraph)",
|
|
15
|
+
link: "var(--color-content-link)",
|
|
16
|
+
},
|
|
12
17
|
surface: {
|
|
13
18
|
elevated: "var(--color-surface-elevated)",
|
|
14
19
|
card: "var(--color-surface-card)",
|
|
@@ -492,7 +497,7 @@ export const fontSize = {
|
|
|
492
497
|
xxs: "var(--text-xxs)",
|
|
493
498
|
xs: "var(--text-xs)",
|
|
494
499
|
sm: "var(--text-sm)",
|
|
495
|
-
|
|
500
|
+
md: "var(--text-md)",
|
|
496
501
|
lg: "var(--text-lg)",
|
|
497
502
|
xl: "var(--text-xl)",
|
|
498
503
|
"title-xs": "var(--text-title-xs)",
|
package/dist/index.d.mts
CHANGED
|
@@ -2,8 +2,7 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
|
-
import
|
|
6
|
-
import { Avatar as Avatar$1, Collapsible as Collapsible$1, DropdownMenu as DropdownMenu$1, ScrollArea as ScrollArea$1, Tabs, Separator as Separator$1, Dialog, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
5
|
+
import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Collapsible as Collapsible$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, ScrollArea as ScrollArea$1, Tabs, Separator as Separator$1, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
7
6
|
|
|
8
7
|
interface AlertProps extends React.ComponentProps<"div"> {
|
|
9
8
|
variant?: "regular" | "emphasis" | "success" | "warning" | "error";
|
|
@@ -26,17 +25,17 @@ interface AlertButtonProps extends React.ComponentProps<"button">, VariantProps<
|
|
|
26
25
|
}
|
|
27
26
|
declare function AlertButton({ className, variant, ...props }: AlertButtonProps): react_jsx_runtime.JSX.Element;
|
|
28
27
|
|
|
29
|
-
declare function AlertDialog({ ...props }: React.ComponentProps<typeof
|
|
30
|
-
declare function AlertDialogTrigger({ ...props }: React.ComponentProps<typeof
|
|
31
|
-
declare function AlertDialogPortal({ ...props }: React.ComponentProps<typeof
|
|
32
|
-
declare function AlertDialogOverlay({ className, ...props }: React.ComponentProps<typeof
|
|
33
|
-
declare function AlertDialogContent({ className, ...props }: React.ComponentProps<typeof
|
|
28
|
+
declare function AlertDialog({ ...props }: React.ComponentProps<typeof AlertDialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
29
|
+
declare function AlertDialogTrigger({ ...props }: React.ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
30
|
+
declare function AlertDialogPortal({ ...props }: React.ComponentProps<typeof AlertDialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
31
|
+
declare function AlertDialogOverlay({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
32
|
+
declare function AlertDialogContent({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Content>): react_jsx_runtime.JSX.Element;
|
|
34
33
|
declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
35
34
|
declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
36
|
-
declare function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof
|
|
37
|
-
declare function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof
|
|
38
|
-
declare function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof
|
|
39
|
-
declare function AlertDialogCancel({ className, ...props }: React.ComponentProps<typeof
|
|
35
|
+
declare function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
36
|
+
declare function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
37
|
+
declare function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Action>): react_jsx_runtime.JSX.Element;
|
|
38
|
+
declare function AlertDialogCancel({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Cancel>): react_jsx_runtime.JSX.Element;
|
|
40
39
|
|
|
41
40
|
declare const avatarVariants: (props?: ({
|
|
42
41
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
@@ -86,6 +85,28 @@ declare function Collapsible({ animation, ...props }: CollapsibleProps): react_j
|
|
|
86
85
|
declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Collapsible$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
87
86
|
declare function CollapsibleContent({ className, ...props }: CollapsibleContentProps): react_jsx_runtime.JSX.Element;
|
|
88
87
|
|
|
88
|
+
declare function Dialog({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
89
|
+
declare function DialogTrigger({ ...props }: React.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare function DialogPortal({ ...props }: React.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
91
|
+
declare function DialogClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
92
|
+
declare function DialogOverlay({ className, ...props }: React.ComponentProps<typeof Dialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare function DialogContainer({ className, overlayClassName, children, showCloseButton, ...props }: React.ComponentProps<typeof Dialog$1.Content> & {
|
|
94
|
+
showCloseButton?: boolean;
|
|
95
|
+
overlayClassName?: string;
|
|
96
|
+
}): react_jsx_runtime.JSX.Element;
|
|
97
|
+
declare function DialogContent({ className, children, }: {
|
|
98
|
+
className?: string;
|
|
99
|
+
children: React.ReactNode;
|
|
100
|
+
}): react_jsx_runtime.JSX.Element;
|
|
101
|
+
declare function DialogHeader({ className, separator, ...props }: React.ComponentProps<"div"> & {
|
|
102
|
+
separator?: boolean;
|
|
103
|
+
}): react_jsx_runtime.JSX.Element;
|
|
104
|
+
declare function DialogFooter({ className, separator, ...props }: React.ComponentProps<"div"> & {
|
|
105
|
+
separator?: boolean;
|
|
106
|
+
}): react_jsx_runtime.JSX.Element;
|
|
107
|
+
declare function DialogTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
108
|
+
declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
109
|
+
|
|
89
110
|
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
|
|
90
111
|
declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
91
112
|
declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -183,9 +204,11 @@ declare function SegmentControlContent({ className, ...props }: React.ComponentP
|
|
|
183
204
|
|
|
184
205
|
declare function Separator({ className, orientation, decorative, ...props }: React.ComponentProps<typeof Separator$1.Root>): react_jsx_runtime.JSX.Element;
|
|
185
206
|
|
|
186
|
-
declare function Sheet({ ...props }: React.ComponentProps<typeof Dialog.Root>): react_jsx_runtime.JSX.Element;
|
|
207
|
+
declare function Sheet({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
187
208
|
|
|
209
|
+
declare function TooltipProvider({ delayDuration, ...props }: React.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
|
|
188
210
|
declare function Tooltip({ ...props }: React.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
|
|
211
|
+
declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Tooltip$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
189
212
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof Tooltip$1.Content>): react_jsx_runtime.JSX.Element;
|
|
190
213
|
|
|
191
214
|
type SidebarContextProps = {
|
|
@@ -347,4 +370,4 @@ declare function TileDescription({ className, ...props }: React.ComponentProps<"
|
|
|
347
370
|
|
|
348
371
|
declare function useIsMobile(): boolean;
|
|
349
372
|
|
|
350
|
-
export { Alert, AlertActions, AlertButton, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, Collapsible, CollapsibleContent, CollapsibleTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Loading, Logo, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaginationRoot, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, SegmentControlTrigger, Separator, Sheet, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switcher, SwitcherContent, SwitcherFooter, SwitcherGroup, SwitcherItem, SwitcherSeparator, SwitcherTrigger, Tag, Tile, TileDescription, TileIcon, TileTitle, Tooltip, badgeVariants, buttonVariants, tagVariants, useIsMobile, useSidebar };
|
|
373
|
+
export { Alert, AlertActions, AlertButton, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, Collapsible, CollapsibleContent, CollapsibleTrigger, Dialog, DialogClose, DialogContainer, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Loading, Logo, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaginationRoot, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, SegmentControlTrigger, Separator, Sheet, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switcher, SwitcherContent, SwitcherFooter, SwitcherGroup, SwitcherItem, SwitcherSeparator, SwitcherTrigger, Tag, Tile, TileDescription, TileIcon, TileTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, tagVariants, useIsMobile, useSidebar };
|
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,7 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
|
-
import
|
|
6
|
-
import { Avatar as Avatar$1, Collapsible as Collapsible$1, DropdownMenu as DropdownMenu$1, ScrollArea as ScrollArea$1, Tabs, Separator as Separator$1, Dialog, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
5
|
+
import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Collapsible as Collapsible$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, ScrollArea as ScrollArea$1, Tabs, Separator as Separator$1, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
7
6
|
|
|
8
7
|
interface AlertProps extends React.ComponentProps<"div"> {
|
|
9
8
|
variant?: "regular" | "emphasis" | "success" | "warning" | "error";
|
|
@@ -26,17 +25,17 @@ interface AlertButtonProps extends React.ComponentProps<"button">, VariantProps<
|
|
|
26
25
|
}
|
|
27
26
|
declare function AlertButton({ className, variant, ...props }: AlertButtonProps): react_jsx_runtime.JSX.Element;
|
|
28
27
|
|
|
29
|
-
declare function AlertDialog({ ...props }: React.ComponentProps<typeof
|
|
30
|
-
declare function AlertDialogTrigger({ ...props }: React.ComponentProps<typeof
|
|
31
|
-
declare function AlertDialogPortal({ ...props }: React.ComponentProps<typeof
|
|
32
|
-
declare function AlertDialogOverlay({ className, ...props }: React.ComponentProps<typeof
|
|
33
|
-
declare function AlertDialogContent({ className, ...props }: React.ComponentProps<typeof
|
|
28
|
+
declare function AlertDialog({ ...props }: React.ComponentProps<typeof AlertDialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
29
|
+
declare function AlertDialogTrigger({ ...props }: React.ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
30
|
+
declare function AlertDialogPortal({ ...props }: React.ComponentProps<typeof AlertDialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
31
|
+
declare function AlertDialogOverlay({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
32
|
+
declare function AlertDialogContent({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Content>): react_jsx_runtime.JSX.Element;
|
|
34
33
|
declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
35
34
|
declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
36
|
-
declare function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof
|
|
37
|
-
declare function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof
|
|
38
|
-
declare function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof
|
|
39
|
-
declare function AlertDialogCancel({ className, ...props }: React.ComponentProps<typeof
|
|
35
|
+
declare function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
36
|
+
declare function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
37
|
+
declare function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Action>): react_jsx_runtime.JSX.Element;
|
|
38
|
+
declare function AlertDialogCancel({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Cancel>): react_jsx_runtime.JSX.Element;
|
|
40
39
|
|
|
41
40
|
declare const avatarVariants: (props?: ({
|
|
42
41
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
@@ -86,6 +85,28 @@ declare function Collapsible({ animation, ...props }: CollapsibleProps): react_j
|
|
|
86
85
|
declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Collapsible$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
87
86
|
declare function CollapsibleContent({ className, ...props }: CollapsibleContentProps): react_jsx_runtime.JSX.Element;
|
|
88
87
|
|
|
88
|
+
declare function Dialog({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
89
|
+
declare function DialogTrigger({ ...props }: React.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare function DialogPortal({ ...props }: React.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
91
|
+
declare function DialogClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
92
|
+
declare function DialogOverlay({ className, ...props }: React.ComponentProps<typeof Dialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare function DialogContainer({ className, overlayClassName, children, showCloseButton, ...props }: React.ComponentProps<typeof Dialog$1.Content> & {
|
|
94
|
+
showCloseButton?: boolean;
|
|
95
|
+
overlayClassName?: string;
|
|
96
|
+
}): react_jsx_runtime.JSX.Element;
|
|
97
|
+
declare function DialogContent({ className, children, }: {
|
|
98
|
+
className?: string;
|
|
99
|
+
children: React.ReactNode;
|
|
100
|
+
}): react_jsx_runtime.JSX.Element;
|
|
101
|
+
declare function DialogHeader({ className, separator, ...props }: React.ComponentProps<"div"> & {
|
|
102
|
+
separator?: boolean;
|
|
103
|
+
}): react_jsx_runtime.JSX.Element;
|
|
104
|
+
declare function DialogFooter({ className, separator, ...props }: React.ComponentProps<"div"> & {
|
|
105
|
+
separator?: boolean;
|
|
106
|
+
}): react_jsx_runtime.JSX.Element;
|
|
107
|
+
declare function DialogTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
108
|
+
declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
109
|
+
|
|
89
110
|
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
|
|
90
111
|
declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
91
112
|
declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -183,9 +204,11 @@ declare function SegmentControlContent({ className, ...props }: React.ComponentP
|
|
|
183
204
|
|
|
184
205
|
declare function Separator({ className, orientation, decorative, ...props }: React.ComponentProps<typeof Separator$1.Root>): react_jsx_runtime.JSX.Element;
|
|
185
206
|
|
|
186
|
-
declare function Sheet({ ...props }: React.ComponentProps<typeof Dialog.Root>): react_jsx_runtime.JSX.Element;
|
|
207
|
+
declare function Sheet({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
187
208
|
|
|
209
|
+
declare function TooltipProvider({ delayDuration, ...props }: React.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
|
|
188
210
|
declare function Tooltip({ ...props }: React.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
|
|
211
|
+
declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Tooltip$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
189
212
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof Tooltip$1.Content>): react_jsx_runtime.JSX.Element;
|
|
190
213
|
|
|
191
214
|
type SidebarContextProps = {
|
|
@@ -347,4 +370,4 @@ declare function TileDescription({ className, ...props }: React.ComponentProps<"
|
|
|
347
370
|
|
|
348
371
|
declare function useIsMobile(): boolean;
|
|
349
372
|
|
|
350
|
-
export { Alert, AlertActions, AlertButton, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, Collapsible, CollapsibleContent, CollapsibleTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Loading, Logo, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaginationRoot, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, SegmentControlTrigger, Separator, Sheet, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switcher, SwitcherContent, SwitcherFooter, SwitcherGroup, SwitcherItem, SwitcherSeparator, SwitcherTrigger, Tag, Tile, TileDescription, TileIcon, TileTitle, Tooltip, badgeVariants, buttonVariants, tagVariants, useIsMobile, useSidebar };
|
|
373
|
+
export { Alert, AlertActions, AlertButton, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, Collapsible, CollapsibleContent, CollapsibleTrigger, Dialog, DialogClose, DialogContainer, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Loading, Logo, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaginationRoot, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, SegmentControlTrigger, Separator, Sheet, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switcher, SwitcherContent, SwitcherFooter, SwitcherGroup, SwitcherItem, SwitcherSeparator, SwitcherTrigger, Tag, Tile, TileDescription, TileIcon, TileTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, tagVariants, useIsMobile, useSidebar };
|