@djangocfg/ui-core 2.1.261 → 2.1.262
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.
|
|
3
|
+
"version": "2.1.262",
|
|
4
4
|
"description": "Pure React UI component library without Next.js dependencies - for Electron, Vite, CRA apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui-components",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"playground": "playground dev"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
|
-
"@djangocfg/i18n": "^2.1.
|
|
89
|
+
"@djangocfg/i18n": "^2.1.262",
|
|
90
90
|
"consola": "^3.4.2",
|
|
91
91
|
"lucide-react": "^0.545.0",
|
|
92
92
|
"moment": "^2.30.1",
|
|
@@ -148,9 +148,9 @@
|
|
|
148
148
|
"vaul": "1.1.2"
|
|
149
149
|
},
|
|
150
150
|
"devDependencies": {
|
|
151
|
-
"@djangocfg/i18n": "^2.1.
|
|
151
|
+
"@djangocfg/i18n": "^2.1.262",
|
|
152
152
|
"@djangocfg/playground": "workspace:*",
|
|
153
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
153
|
+
"@djangocfg/typescript-config": "^2.1.262",
|
|
154
154
|
"@types/node": "^24.7.2",
|
|
155
155
|
"@types/react": "^19.1.0",
|
|
156
156
|
"@types/react-dom": "^19.1.0",
|
package/src/components/index.ts
CHANGED
|
@@ -37,14 +37,15 @@ export * from './select';
|
|
|
37
37
|
// ─────────────────────────────────────────────────────────────────────────────
|
|
38
38
|
// Overlay
|
|
39
39
|
// ─────────────────────────────────────────────────────────────────────────────
|
|
40
|
-
export { Dialog, DialogTrigger, DialogClose, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription } from './overlay/dialog';
|
|
41
|
-
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from './overlay/alert-dialog';
|
|
40
|
+
export { Dialog, DialogTrigger, DialogClose, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, DialogPortal, DialogOverlay } from './overlay/dialog';
|
|
41
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertDialogPortal, AlertDialogOverlay } from './overlay/alert-dialog';
|
|
42
42
|
export { Popover, PopoverContent, PopoverTrigger, PopoverAnchor, PopoverArrow } from './overlay/popover';
|
|
43
|
-
export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription } from './overlay/sheet';
|
|
44
|
-
export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription } from './overlay/drawer';
|
|
43
|
+
export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, SheetPortal, SheetOverlay } from './overlay/sheet';
|
|
44
|
+
export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, DrawerPortal, DrawerOverlay } from './overlay/drawer';
|
|
45
45
|
export { ResponsiveSheet, ResponsiveSheetContent, ResponsiveSheetHeader, ResponsiveSheetTitle, ResponsiveSheetDescription, ResponsiveSheetFooter } from './overlay/responsive-sheet';
|
|
46
46
|
export { HoverCard, HoverCardContent, HoverCardTrigger } from './overlay/hover-card';
|
|
47
|
-
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from './overlay/tooltip';
|
|
47
|
+
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, SafeTooltipProvider } from './overlay/tooltip';
|
|
48
|
+
export type { SafeTooltipProviderProps } from './overlay/tooltip';
|
|
48
49
|
|
|
49
50
|
// ─────────────────────────────────────────────────────────────────────────────
|
|
50
51
|
// Navigation
|
|
@@ -75,8 +76,8 @@ export { Section, SectionHeader } from './layout/section';
|
|
|
75
76
|
// ─────────────────────────────────────────────────────────────────────────────
|
|
76
77
|
// Data Display
|
|
77
78
|
// ─────────────────────────────────────────────────────────────────────────────
|
|
78
|
-
export { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow } from './data/table';
|
|
79
|
-
export { Badge } from './data/badge';
|
|
79
|
+
export { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableFooter, TableRow } from './data/table';
|
|
80
|
+
export { Badge, badgeVariants } from './data/badge';
|
|
80
81
|
export { Avatar, AvatarFallback, AvatarImage } from './data/avatar';
|
|
81
82
|
export { Progress } from './data/progress';
|
|
82
83
|
export { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from './data/carousel';
|
|
@@ -84,7 +85,7 @@ export type { CarouselApi } from './data/carousel';
|
|
|
84
85
|
export { Calendar, CalendarDayButton } from './data/calendar';
|
|
85
86
|
export { DatePicker, DateRangePicker } from './data/calendar';
|
|
86
87
|
export type { DatePickerProps, DateRangePickerProps, DateRange } from './data/calendar';
|
|
87
|
-
export { Toggle } from './data/toggle';
|
|
88
|
+
export { Toggle, toggleVariants } from './data/toggle';
|
|
88
89
|
export { ToggleGroup, ToggleGroupItem } from './data/toggle-group';
|
|
89
90
|
|
|
90
91
|
// ─────────────────────────────────────────────────────────────────────────────
|
|
@@ -115,6 +116,7 @@ export { Item, ItemMedia, ItemContent, ItemActions, ItemGroup, ItemSeparator, It
|
|
|
115
116
|
export { Portal } from './specialized/portal';
|
|
116
117
|
export type { PortalProps } from './specialized/portal';
|
|
117
118
|
export { ImageWithFallback } from './specialized/image-with-fallback';
|
|
119
|
+
export type { ImageWithFallbackProps } from './specialized/image-with-fallback';
|
|
118
120
|
|
|
119
121
|
// ─────────────────────────────────────────────────────────────────────────────
|
|
120
122
|
// Effects
|
|
@@ -31,3 +31,5 @@ const TooltipContent = React.forwardRef<
|
|
|
31
31
|
TooltipContent.displayName = TooltipPrimitive.Content.displayName
|
|
32
32
|
|
|
33
33
|
export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }
|
|
34
|
+
export { SafeTooltipProvider } from './tooltip-provider-safe';
|
|
35
|
+
export type { SafeTooltipProviderProps } from './tooltip-provider-safe';
|
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
|
|
5
5
|
import { TooltipProvider as RadixTooltipProvider } from '@radix-ui/react-tooltip';
|
|
6
6
|
|
|
7
|
-
interface SafeTooltipProviderProps {
|
|
7
|
+
export interface SafeTooltipProviderProps {
|
|
8
8
|
children: React.ReactNode;
|
|
9
9
|
delayDuration?: number;
|
|
10
10
|
skipDelayDuration?: number;
|
|
@@ -26,6 +26,10 @@ export {
|
|
|
26
26
|
export { Combobox } from './combobox';
|
|
27
27
|
export type { ComboboxOption, ComboboxProps } from './combobox';
|
|
28
28
|
|
|
29
|
+
// MultiSelect
|
|
30
|
+
export { MultiSelect } from './multi-select';
|
|
31
|
+
export type { MultiSelectOption, MultiSelectProps } from './multi-select';
|
|
32
|
+
|
|
29
33
|
// MultiSelectPro
|
|
30
34
|
export { MultiSelectPro } from './multi-select-pro';
|
|
31
35
|
export type {
|
|
@@ -50,6 +54,16 @@ export type {
|
|
|
50
54
|
export { createOption, createOptions } from './helpers';
|
|
51
55
|
export type { OptionBuilderConfig } from './helpers';
|
|
52
56
|
|
|
57
|
+
// CountrySelect
|
|
58
|
+
export { CountrySelect } from './country-select';
|
|
59
|
+
export type { CountrySelectProps, CountryOption } from './country-select';
|
|
60
|
+
export type { TCountryCode } from 'countries-list';
|
|
61
|
+
export { getEmojiFlag } from 'countries-list';
|
|
62
|
+
|
|
63
|
+
// LanguageSelect
|
|
64
|
+
export { LanguageSelect, getLanguageFlag } from './language-select';
|
|
65
|
+
export type { LanguageSelectProps, LanguageOption, TLanguageCode } from './language-select';
|
|
66
|
+
|
|
53
67
|
// Shared types
|
|
54
68
|
export type {
|
|
55
69
|
BaseSelectOption,
|