@umituz/web-design-system 2.1.0 → 2.2.0

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": "@umituz/web-design-system",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "private": false,
5
5
  "description": "Web Design System - Atomic Design components (Atoms, Molecules, Organisms, Templates) for React applications",
6
6
  "main": "./src/index.ts",
@@ -26,7 +26,6 @@ export const ImageLightbox = ({
26
26
  initialIndex = 0,
27
27
  isOpen,
28
28
  onClose,
29
- className,
30
29
  }: ImageLightboxProps) => {
31
30
  // Early return if closed
32
31
  if (!isOpen) return null;
@@ -1,24 +1,75 @@
1
1
  /**
2
2
  * Organisms Export
3
- * @description Complex UI components composed of molecules and atoms
3
+ * @description Organism components - complex UI combinations
4
4
  * Subpath: @umituz/web-design-system/organisms
5
5
  */
6
6
 
7
- // Layout & Structure
7
+ export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from './Card';
8
+ export type { CardProps } from './Card';
9
+
10
+ export { Alert, AlertTitle, AlertDescription } from './Alert';
11
+ export type { AlertProps } from './Alert';
12
+
13
+ export { Modal, ModalHeader, ModalTitle, ModalDescription, ModalContent, ModalFooter } from './Modal';
14
+ export type { ModalProps } from './Modal';
15
+
8
16
  export { Navbar, NavbarBrand, NavbarLinks, NavbarActions } from './Navbar';
9
17
  export type { NavbarProps } from './Navbar';
10
18
 
11
- export { Footer } from './Footer';
19
+ export {
20
+ Table,
21
+ TableHeader,
22
+ TableBody,
23
+ TableFooter,
24
+ TableRow,
25
+ TableHead,
26
+ TableCell,
27
+ TableCaption
28
+ } from './Table';
29
+ export type { TableProps } from './Table';
30
+
31
+ export { Tabs } from './Tabs';
32
+ export type { TabsProps, Tab } from './Tabs';
33
+
34
+ export { Accordion, AccordionItem, AccordionTrigger, AccordionContent } from './Accordion';
35
+
36
+ export {
37
+ Dialog,
38
+ DialogPortal,
39
+ DialogOverlay,
40
+ DialogClose,
41
+ DialogTrigger,
42
+ DialogContent,
43
+ DialogHeader,
44
+ DialogFooter,
45
+ DialogTitle,
46
+ DialogDescription,
47
+ } from './Dialog';
12
48
 
13
49
  export { Breadcrumbs } from './Breadcrumb';
14
- export type { BreadcrumbItem, BreadcrumbsProps } from './Breadcrumb';
50
+ export type { BreadcrumbsProps, BreadcrumbItem } from './Breadcrumb';
15
51
 
16
- // Data Display
17
- export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from './Card';
18
- export type { CardProps, CardHeaderProps, CardTitleProps, CardDescriptionProps, CardContentProps, CardFooterProps } from './Card';
52
+ export { HoverCard, HoverCardTrigger, HoverCardContent } from './HoverCard';
19
53
 
20
- export { StatCard } from './StatCard';
21
- export type { StatCardProps } from './StatCard';
54
+ export { Popover, PopoverTrigger, PopoverContent } from './Popover';
55
+
56
+ export { Collapsible, CollapsibleTrigger, CollapsibleContent } from './Collapsible';
57
+
58
+ export {
59
+ Sheet,
60
+ SheetClose,
61
+ SheetContent,
62
+ SheetDescription,
63
+ SheetFooter,
64
+ SheetHeader,
65
+ SheetOverlay,
66
+ SheetPortal,
67
+ SheetTitle,
68
+ SheetTrigger,
69
+ } from './Sheet';
70
+
71
+ export { Footer } from './Footer';
72
+ export type { FooterProps } from './Footer';
22
73
 
23
74
  export { MetricCard } from './MetricCard';
24
75
  export type { MetricCardProps } from './MetricCard';
@@ -26,79 +77,60 @@ export type { MetricCardProps } from './MetricCard';
26
77
  export { QuickActionCard } from './QuickActionCard';
27
78
  export type { QuickActionCardProps } from './QuickActionCard';
28
79
 
29
- // Lists & Tables
30
- export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell } from './Table';
31
- export type { TableProps, TableHeaderProps, TableBodyProps, TableFooterProps, TableHeadProps, TableRowProps, TableCellProps } from './Table';
32
-
33
- export { DataTable } from './DataTable';
34
- export type { DataTableProps, ColumnDef } from './DataTable';
35
-
36
- export { List, ListItem, ListHeader } from './List';
37
- export type { ListProps, ListItemProps, ListHeaderProps } from './List';
38
-
39
- // Feedback & Empty States
40
- export { Alert, AlertTitle, AlertDescription } from './Alert';
41
- export type { AlertProps, AlertTitleProps, AlertDescriptionProps } from './Alert';
42
-
43
80
  export { EmptyState } from './EmptyState';
44
81
  export type { EmptyStateProps } from './EmptyState';
45
82
 
46
83
  export { LoadingState } from './LoadingState';
47
84
  export type { LoadingStateProps } from './LoadingState';
48
85
 
49
- // Overlays & Modals
50
- export { Dialog, DialogHeader, DialogTitle, DialogDescription, DialogContent, DialogFooter } from './Dialog';
51
- export type { DialogProps } from './Dialog';
86
+ export { DataTable } from './DataTable';
87
+ export type { DataTableProps, Column } from './DataTable';
52
88
 
53
- export { Modal } from './Modal';
54
- export type { ModalProps } from './Modal';
89
+ export { StatCard } from './StatCard';
90
+ export type { StatCardProps } from './StatCard';
55
91
 
56
92
  export { FormModal } from './FormModal';
57
93
  export type { FormModalProps } from './FormModal';
58
94
 
59
- export { AlertDialog, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogTitle, AlertDialogDescription, AlertDialogFooter, AlertDialogCancel, AlertDialogAction } from './AlertDialog';
60
- export type { AlertDialogProps } from './AlertDialog';
61
-
62
- export { Popover, PopoverTrigger, PopoverContent } from './Popover';
63
- export type { PopoverProps } from './Popover';
64
-
65
- export { Sheet, SheetTrigger, SheetContent, SheetHeader, SheetTitle, SheetDescription, SheetFooter } from './Sheet';
66
- export type { SheetProps, SheetSide } from './Sheet';
67
-
68
- export { HoverCard, HoverCardTrigger, HoverCardContent } from './HoverCard';
69
- export type { HoverCardProps } from './HoverCard';
70
-
71
- export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuLabel } from './DropdownMenu';
72
- export type { DropdownMenuProps } from './DropdownMenu';
95
+ export { ConfirmDialog } from './ConfirmDialog';
96
+ export type { ConfirmDialogProps } from './ConfirmDialog';
73
97
 
74
- // Interactive Components
75
- export { Tabs, TabsList, TabsTrigger, TabsContent } from './Tabs';
76
- export type { TabsProps } from './Tabs';
77
-
78
- export { Accordion, AccordionItem, AccordionTrigger, AccordionContent } from './Accordion';
79
- export type { AccordionProps } from './Accordion';
98
+ export { Calendar } from './Calendar';
99
+ export type { CalendarProps } from './Calendar';
80
100
 
81
- export { Toggle } from './Toggle';
82
- export type { ToggleProps } from './Toggle';
101
+ export {
102
+ AlertDialog,
103
+ AlertDialogPortal,
104
+ AlertDialogOverlay,
105
+ AlertDialogTrigger,
106
+ AlertDialogContent,
107
+ AlertDialogHeader,
108
+ AlertDialogFooter,
109
+ AlertDialogTitle,
110
+ AlertDialogDescription,
111
+ AlertDialogAction,
112
+ AlertDialogCancel,
113
+ } from './AlertDialog';
114
+
115
+ export {
116
+ DropdownMenu,
117
+ DropdownMenuTrigger,
118
+ DropdownMenuContent,
119
+ DropdownMenuItem,
120
+ DropdownMenuCheckboxItem,
121
+ DropdownMenuRadioItem,
122
+ DropdownMenuLabel,
123
+ DropdownMenuSeparator,
124
+ DropdownMenuShortcut,
125
+ DropdownMenuGroup,
126
+ DropdownMenuPortal,
127
+ DropdownMenuSub,
128
+ DropdownMenuSubContent,
129
+ DropdownMenuSubTrigger,
130
+ DropdownMenuRadioGroup,
131
+ } from './DropdownMenu';
83
132
 
84
133
  export { ToggleGroup, ToggleGroupItem } from './ToggleGroup';
85
- export type { ToggleGroupProps, ToggleGroupItemProps } from './ToggleGroup';
86
-
87
- export { Collapsible, CollapsibleTrigger, CollapsibleContent } from './Collapsible';
88
- export type { CollapsibleProps } from './Collapsible';
89
-
90
- // Form Components
91
- export { CheckboxGroup } from './CheckboxGroup';
92
- export type { CheckboxGroupProps } from './CheckboxGroup';
93
-
94
- export { RadioGroup, RadioGroupItem } from './RadioGroup';
95
- export type { RadioGroupProps, RadioGroupItemProps } from './RadioGroup';
96
-
97
- export { Select, SelectTrigger, SelectValue, SelectContent, SelectItem, SelectGroup, SelectLabel, SelectSeparator } from './Select';
98
- export type { SelectProps } from './Select';
99
-
100
- export { Calendar } from './Calendar';
101
- export type { CalendarProps } from './Calendar';
102
134
 
103
135
  // NEW: Media & Content Components
104
136
  export { ImageLightbox } from './ImageLightbox';