Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/raystack/components/alert-dialog/alert-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ export const AlertDialog = Object.assign(AlertDialogPrimitive.Root, {
Close: AlertDialogPrimitive.Close,
CloseButton: CloseButton,
Title: AlertDialogTitle,
Description: AlertDialogDescription
Description: AlertDialogDescription,
createHandle: AlertDialogPrimitive.createHandle
});
5 changes: 4 additions & 1 deletion packages/raystack/components/combobox/combobox.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { Combobox as ComboboxPrimitive } from '@base-ui/react';
import { ComboboxContent } from './combobox-content';
import { ComboboxInput } from './combobox-input';
import { ComboboxItem } from './combobox-item';
Expand All @@ -14,5 +15,7 @@ export const Combobox = Object.assign(ComboboxRoot, {
Item: ComboboxItem,
Group: ComboboxGroup,
Label: ComboboxLabel,
Separator: ComboboxSeparator
Separator: ComboboxSeparator,
useFilter: ComboboxPrimitive.useFilter,
useFilteredItems: ComboboxPrimitive.useFilteredItems
});
3 changes: 2 additions & 1 deletion packages/raystack/components/dialog/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ export const Dialog = Object.assign(DialogPrimitive.Root, {
Close: DialogPrimitive.Close,
CloseButton: CloseButton,
Title: DialogTitle,
Description: DialogDescription
Description: DialogDescription,
createHandle: DialogPrimitive.createHandle
});
3 changes: 2 additions & 1 deletion packages/raystack/components/drawer/drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ export const Drawer = Object.assign(DrawerRoot, {
Description: DrawerDescription,
Body: DrawerBody,
Footer: DrawerFooter,
Close: DrawerPrimitive.Close
Close: DrawerPrimitive.Close,
createHandle: DrawerPrimitive.createHandle
});
4 changes: 3 additions & 1 deletion packages/raystack/components/menu/menu.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { Menu as MenuPrimitive } from '@base-ui/react/menu';
import { MenuContent, MenuSubContent } from './menu-content';
import { MenuItem } from './menu-item';
import {
Expand All @@ -19,5 +20,6 @@ export const Menu = Object.assign(MenuRoot, {
EmptyState: MenuEmptyState,
Submenu: MenuSubMenu,
SubmenuTrigger: MenuSubTrigger,
SubmenuContent: MenuSubContent
SubmenuContent: MenuSubContent,
createHandle: MenuPrimitive.createHandle
});
3 changes: 2 additions & 1 deletion packages/raystack/components/popover/popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,6 @@ PopoverContent.displayName = 'Popover.Content';
export const Popover = Object.assign(PopoverPrimitive.Root, {
Trigger: PopoverPrimitive.Trigger,
Close: PopoverPrimitive.Close,
Content: PopoverContent
Content: PopoverContent,
createHandle: PopoverPrimitive.createHandle
});
3 changes: 2 additions & 1 deletion packages/raystack/components/tooltip/tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ import { TooltipProvider, TooltipTrigger } from './tooltip-misc';
export const Tooltip = Object.assign(TooltipPrimitive.Root, {
Provider: TooltipProvider,
Trigger: TooltipTrigger,
Content: TooltipContent
Content: TooltipContent,
createHandle: TooltipPrimitive.createHandle
});
Loading