@djangocfg/ui-core 2.1.162 → 2.1.163

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djangocfg/ui-core",
3
- "version": "2.1.162",
3
+ "version": "2.1.163",
4
4
  "description": "Pure React UI component library without Next.js dependencies - for Electron, Vite, CRA apps",
5
5
  "keywords": [
6
6
  "ui-components",
@@ -76,7 +76,7 @@
76
76
  "playground": "playground dev"
77
77
  },
78
78
  "peerDependencies": {
79
- "@djangocfg/i18n": "^2.1.162",
79
+ "@djangocfg/i18n": "^2.1.163",
80
80
  "react-device-detect": "^2.2.3",
81
81
  "consola": "^3.4.2",
82
82
  "lucide-react": "^0.545.0",
@@ -138,9 +138,9 @@
138
138
  "vaul": "1.1.2"
139
139
  },
140
140
  "devDependencies": {
141
- "@djangocfg/i18n": "^2.1.162",
141
+ "@djangocfg/i18n": "^2.1.163",
142
142
  "@djangocfg/playground": "workspace:*",
143
- "@djangocfg/typescript-config": "^2.1.162",
143
+ "@djangocfg/typescript-config": "^2.1.163",
144
144
  "@types/node": "^24.7.2",
145
145
  "@types/react": "^19.1.0",
146
146
  "@types/react-dom": "^19.1.0",
@@ -48,7 +48,7 @@ export type { PortalProps } from './portal';
48
48
  // Overlay Components
49
49
  export { Dialog, DialogTrigger, DialogClose, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription } from './dialog';
50
50
  export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from './alert-dialog';
51
- export { Popover, PopoverContent, PopoverTrigger } from './popover';
51
+ export { Popover, PopoverContent, PopoverTrigger, PopoverAnchor, PopoverArrow } from './popover';
52
52
  export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription } from './sheet';
53
53
  export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription } from './drawer';
54
54
  export { ResponsiveSheet, ResponsiveSheetContent, ResponsiveSheetHeader, ResponsiveSheetTitle, ResponsiveSheetDescription, ResponsiveSheetFooter } from './responsive-sheet';
@@ -31,4 +31,16 @@ const PopoverContent = React.forwardRef<
31
31
  ))
32
32
  PopoverContent.displayName = PopoverPrimitive.Content.displayName
33
33
 
34
- export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor }
34
+ const PopoverArrow = React.forwardRef<
35
+ React.ElementRef<typeof PopoverPrimitive.Arrow>,
36
+ React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Arrow>
37
+ >(({ className, ...props }, ref) => (
38
+ <PopoverPrimitive.Arrow
39
+ ref={ref}
40
+ className={cn('fill-popover', className)}
41
+ {...props}
42
+ />
43
+ ))
44
+ PopoverArrow.displayName = PopoverPrimitive.Arrow.displayName
45
+
46
+ export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor, PopoverArrow }