@iclips/ui 1.0.2 → 1.0.3

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/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
2
- import { MoreVertical, AlertCircle, Calendar, CheckSquare, MessageSquare, Paperclip, ChevronDownIcon, Home, Folder, Users, BarChart3, Settings, Pin, Plus, LayoutGrid, FileText, Star, Download, Sparkles, ChevronRight, Zap, PanelLeftClose, PanelLeft, Bell, MoreHorizontal, Printer, Eye, ChevronLeft, ArrowLeft, ArrowRight, Check, CheckIcon, CircleIcon, ChevronRightIcon, XIcon, SearchIcon, MinusIcon, ChevronLeftIcon, MoreHorizontalIcon, GripVerticalIcon, ChevronUpIcon, PanelLeftIcon } from 'lucide-react';
2
+ import { MoreVertical, AlertCircle, Calendar, CheckSquare, MessageSquare, Paperclip, ChevronDownIcon, Home, Folder, Users, BarChart3, Settings, Pin, Plus, LayoutGrid, FileText, Star, Download, Sparkles, ChevronRight, Zap, PanelLeftClose, PanelLeft, Bell, MoreHorizontal, Printer, Eye, ChevronLeft, ArrowLeft, ArrowRight, Check, CheckIcon, CircleIcon, ChevronRightIcon, XIcon, SearchIcon, MinusIcon, ChevronLeftIcon, MoreHorizontalIcon, GripVerticalIcon, ChevronUpIcon, PanelLeftIcon, ChevronsLeft, ChevronsRight } from 'lucide-react';
3
3
  import { clsx } from 'clsx';
4
4
  import { twMerge } from 'tailwind-merge';
5
5
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
@@ -5590,56 +5590,72 @@ function Switch({
5590
5590
  }
5591
5591
  );
5592
5592
  }
5593
- function Table({ className, ...props }) {
5594
- return /* @__PURE__ */ jsx(
5595
- "div",
5596
- {
5597
- "data-slot": "table-container",
5598
- className: "relative w-full overflow-x-auto",
5599
- children: /* @__PURE__ */ jsx(
5600
- "table",
5601
- {
5602
- "data-slot": "table",
5603
- className: cn("w-full caption-bottom text-sm", className),
5604
- ...props
5605
- }
5606
- )
5607
- }
5608
- );
5609
- }
5610
- function TableHeader({ className, ...props }) {
5611
- return /* @__PURE__ */ jsx(
5612
- "thead",
5613
- {
5614
- "data-slot": "table-header",
5615
- className: cn("[&_tr]:border-b", className),
5616
- ...props
5617
- }
5618
- );
5619
- }
5620
- function TableBody({ className, ...props }) {
5621
- return /* @__PURE__ */ jsx(
5622
- "tbody",
5623
- {
5624
- "data-slot": "table-body",
5625
- className: cn("[&_tr:last-child]:border-0", className),
5626
- ...props
5627
- }
5628
- );
5629
- }
5630
- function TableFooter({ className, ...props }) {
5631
- return /* @__PURE__ */ jsx(
5632
- "tfoot",
5633
- {
5634
- "data-slot": "table-footer",
5635
- className: cn(
5636
- "bg-muted/50 border-t font-medium [&>tr]:last:border-b-0",
5637
- className
5638
- ),
5639
- ...props
5640
- }
5641
- );
5642
- }
5593
+ var Table = React7.forwardRef(
5594
+ ({ className, ...props }, ref) => {
5595
+ return /* @__PURE__ */ jsx(
5596
+ "div",
5597
+ {
5598
+ "data-slot": "table-container",
5599
+ className: "relative w-full overflow-x-auto",
5600
+ children: /* @__PURE__ */ jsx(
5601
+ "table",
5602
+ {
5603
+ ref,
5604
+ "data-slot": "table",
5605
+ className: cn("w-full caption-bottom text-sm", className),
5606
+ ...props
5607
+ }
5608
+ )
5609
+ }
5610
+ );
5611
+ }
5612
+ );
5613
+ Table.displayName = "Table";
5614
+ var TableHeader = React7.forwardRef(
5615
+ ({ className, ...props }, ref) => {
5616
+ return /* @__PURE__ */ jsx(
5617
+ "thead",
5618
+ {
5619
+ ref,
5620
+ "data-slot": "table-header",
5621
+ className: cn("[&_tr]:border-b", className),
5622
+ ...props
5623
+ }
5624
+ );
5625
+ }
5626
+ );
5627
+ TableHeader.displayName = "TableHeader";
5628
+ var TableBody = React7.forwardRef(
5629
+ ({ className, ...props }, ref) => {
5630
+ return /* @__PURE__ */ jsx(
5631
+ "tbody",
5632
+ {
5633
+ ref,
5634
+ "data-slot": "table-body",
5635
+ className: cn("[&_tr:last-child]:border-0", className),
5636
+ ...props
5637
+ }
5638
+ );
5639
+ }
5640
+ );
5641
+ TableBody.displayName = "TableBody";
5642
+ var TableFooter = React7.forwardRef(
5643
+ ({ className, ...props }, ref) => {
5644
+ return /* @__PURE__ */ jsx(
5645
+ "tfoot",
5646
+ {
5647
+ ref,
5648
+ "data-slot": "table-footer",
5649
+ className: cn(
5650
+ "bg-muted/50 border-t font-medium [&>tr]:last:border-b-0",
5651
+ className
5652
+ ),
5653
+ ...props
5654
+ }
5655
+ );
5656
+ }
5657
+ );
5658
+ TableFooter.displayName = "TableFooter";
5643
5659
  var TableRow = React7.forwardRef(({ className, ...props }, ref) => {
5644
5660
  return /* @__PURE__ */ jsx(
5645
5661
  "tr",
@@ -5655,44 +5671,261 @@ var TableRow = React7.forwardRef(({ className, ...props }, ref) => {
5655
5671
  );
5656
5672
  });
5657
5673
  TableRow.displayName = "TableRow";
5658
- function TableHead({ className, ...props }) {
5659
- return /* @__PURE__ */ jsx(
5660
- "th",
5661
- {
5662
- "data-slot": "table-head",
5663
- className: cn(
5664
- "text-foreground h-10 px-2 text-left align-middle font-medium whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
5665
- className
5666
- ),
5667
- ...props
5668
- }
5669
- );
5674
+ var TableHead = React7.forwardRef(
5675
+ ({ className, ...props }, ref) => {
5676
+ return /* @__PURE__ */ jsx(
5677
+ "th",
5678
+ {
5679
+ ref,
5680
+ "data-slot": "table-head",
5681
+ className: cn(
5682
+ "text-foreground h-10 px-2 text-left align-middle font-medium",
5683
+ "[&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
5684
+ className
5685
+ ),
5686
+ ...props
5687
+ }
5688
+ );
5689
+ }
5690
+ );
5691
+ TableHead.displayName = "TableHead";
5692
+ var TableCell = React7.forwardRef(
5693
+ ({ className, ...props }, ref) => {
5694
+ return /* @__PURE__ */ jsx(
5695
+ "td",
5696
+ {
5697
+ ref,
5698
+ "data-slot": "table-cell",
5699
+ className: cn(
5700
+ "p-2 align-middle",
5701
+ "[&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
5702
+ className
5703
+ ),
5704
+ ...props
5705
+ }
5706
+ );
5707
+ }
5708
+ );
5709
+ TableCell.displayName = "TableCell";
5710
+ var TableCaption = React7.forwardRef(
5711
+ ({ className, ...props }, ref) => {
5712
+ return /* @__PURE__ */ jsx(
5713
+ "caption",
5714
+ {
5715
+ ref,
5716
+ "data-slot": "table-caption",
5717
+ className: cn("text-muted-foreground mt-4 text-sm", className),
5718
+ ...props
5719
+ }
5720
+ );
5721
+ }
5722
+ );
5723
+ TableCaption.displayName = "TableCaption";
5724
+ var defaultLabels = {
5725
+ previous: "Anterior",
5726
+ next: "Pr\xF3xima",
5727
+ first: "Primeira",
5728
+ last: "\xDAltima",
5729
+ showing: "Mostrando",
5730
+ of: "de",
5731
+ results: "resultados",
5732
+ itemsPerPage: "Itens por p\xE1gina",
5733
+ page: "P\xE1gina"
5734
+ };
5735
+ var defaultPageSizeOptions = [10, 20, 30, 50, 100];
5736
+ function getPageNumbers(currentPage, totalPages, maxVisible = 5) {
5737
+ if (totalPages <= maxVisible) {
5738
+ return Array.from({ length: totalPages }, (_, i) => i + 1);
5739
+ }
5740
+ const pages = [];
5741
+ const halfVisible = Math.floor(maxVisible / 2);
5742
+ pages.push(1);
5743
+ let start = Math.max(2, currentPage - halfVisible);
5744
+ let end = Math.min(totalPages - 1, currentPage + halfVisible);
5745
+ if (currentPage <= halfVisible + 1) {
5746
+ end = maxVisible - 1;
5747
+ } else if (currentPage >= totalPages - halfVisible) {
5748
+ start = totalPages - maxVisible + 2;
5749
+ }
5750
+ if (start > 2) {
5751
+ pages.push("ellipsis");
5752
+ }
5753
+ for (let i = start; i <= end; i++) {
5754
+ pages.push(i);
5755
+ }
5756
+ if (end < totalPages - 1) {
5757
+ pages.push("ellipsis");
5758
+ }
5759
+ if (totalPages > 1) {
5760
+ pages.push(totalPages);
5761
+ }
5762
+ return pages;
5670
5763
  }
5671
- function TableCell({ className, ...props }) {
5672
- return /* @__PURE__ */ jsx(
5673
- "td",
5764
+ function TablePagination({
5765
+ currentPage,
5766
+ totalPages,
5767
+ pageSize,
5768
+ totalItems,
5769
+ onPageChange,
5770
+ onPageSizeChange,
5771
+ pageSizeOptions = defaultPageSizeOptions,
5772
+ maxVisiblePages = 5,
5773
+ showInfo = true,
5774
+ showPageNumbers = true,
5775
+ showPageSizeSelector = true,
5776
+ showFirstLastButtons = true,
5777
+ labels: customLabels,
5778
+ className
5779
+ }) {
5780
+ const labels = { ...defaultLabels, ...customLabels };
5781
+ const pages = getPageNumbers(currentPage, totalPages, maxVisiblePages);
5782
+ const startItem = (currentPage - 1) * pageSize + 1;
5783
+ const endItem = Math.min(currentPage * pageSize, totalItems);
5784
+ const hasPreviousPage = currentPage > 1;
5785
+ const hasNextPage = currentPage < totalPages;
5786
+ if (totalPages === 0) {
5787
+ return null;
5788
+ }
5789
+ return /* @__PURE__ */ jsxs(
5790
+ "div",
5674
5791
  {
5675
- "data-slot": "table-cell",
5676
5792
  className: cn(
5677
- "p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
5793
+ "flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between",
5678
5794
  className
5679
5795
  ),
5680
- ...props
5796
+ role: "navigation",
5797
+ "aria-label": "Pagina\xE7\xE3o da tabela",
5798
+ children: [
5799
+ showInfo && /* @__PURE__ */ jsxs("p", { className: "text-sm text-muted-foreground order-2 sm:order-1", children: [
5800
+ labels.showing,
5801
+ " ",
5802
+ /* @__PURE__ */ jsx("span", { className: "font-medium text-foreground", children: startItem }),
5803
+ " - ",
5804
+ /* @__PURE__ */ jsx("span", { className: "font-medium text-foreground", children: endItem }),
5805
+ " ",
5806
+ labels.of,
5807
+ " ",
5808
+ /* @__PURE__ */ jsx("span", { className: "font-medium text-foreground", children: totalItems }),
5809
+ " ",
5810
+ labels.results
5811
+ ] }),
5812
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-3 sm:flex-row sm:items-center sm:gap-4 order-1 sm:order-2", children: [
5813
+ showPageSizeSelector && onPageSizeChange && /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
5814
+ /* @__PURE__ */ jsx("span", { className: "text-sm text-muted-foreground whitespace-nowrap", children: labels.itemsPerPage }),
5815
+ /* @__PURE__ */ jsxs(
5816
+ Select,
5817
+ {
5818
+ value: String(pageSize),
5819
+ onValueChange: (value) => onPageSizeChange(Number(value)),
5820
+ children: [
5821
+ /* @__PURE__ */ jsx(SelectTrigger, { className: "h-8 w-[70px]", children: /* @__PURE__ */ jsx(SelectValue, { placeholder: pageSize }) }),
5822
+ /* @__PURE__ */ jsx(SelectContent, { children: pageSizeOptions.map((option) => /* @__PURE__ */ jsx(SelectItem, { value: String(option), children: option }, option)) })
5823
+ ]
5824
+ }
5825
+ )
5826
+ ] }),
5827
+ /* @__PURE__ */ jsxs("span", { className: "text-sm text-muted-foreground sm:hidden", children: [
5828
+ labels.page,
5829
+ " ",
5830
+ currentPage,
5831
+ " ",
5832
+ labels.of,
5833
+ " ",
5834
+ totalPages
5835
+ ] }),
5836
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1", children: [
5837
+ showFirstLastButtons && /* @__PURE__ */ jsx(
5838
+ Button,
5839
+ {
5840
+ variant: "outline",
5841
+ size: "icon",
5842
+ className: "h-8 w-8",
5843
+ onClick: () => onPageChange(1),
5844
+ disabled: !hasPreviousPage,
5845
+ "aria-label": labels.first,
5846
+ children: /* @__PURE__ */ jsx(ChevronsLeft, { className: "h-4 w-4" })
5847
+ }
5848
+ ),
5849
+ /* @__PURE__ */ jsx(
5850
+ Button,
5851
+ {
5852
+ variant: "outline",
5853
+ size: "icon",
5854
+ className: "h-8 w-8",
5855
+ onClick: () => onPageChange(currentPage - 1),
5856
+ disabled: !hasPreviousPage,
5857
+ "aria-label": labels.previous,
5858
+ children: /* @__PURE__ */ jsx(ChevronLeft, { className: "h-4 w-4" })
5859
+ }
5860
+ ),
5861
+ showPageNumbers && /* @__PURE__ */ jsx("div", { className: "hidden sm:flex items-center gap-1", children: pages.map(
5862
+ (page, index) => page === "ellipsis" ? /* @__PURE__ */ jsx(
5863
+ "span",
5864
+ {
5865
+ className: "flex items-center justify-center w-8 h-8 text-muted-foreground",
5866
+ "aria-hidden": true,
5867
+ children: "..."
5868
+ },
5869
+ `ellipsis-${index}`
5870
+ ) : /* @__PURE__ */ jsx(
5871
+ Button,
5872
+ {
5873
+ variant: currentPage === page ? "default" : "outline",
5874
+ size: "icon",
5875
+ className: "h-8 w-8",
5876
+ onClick: () => onPageChange(page),
5877
+ "aria-label": `${labels.page} ${page}`,
5878
+ "aria-current": currentPage === page ? "page" : void 0,
5879
+ children: page
5880
+ },
5881
+ page
5882
+ )
5883
+ ) }),
5884
+ /* @__PURE__ */ jsx(
5885
+ Button,
5886
+ {
5887
+ variant: "outline",
5888
+ size: "icon",
5889
+ className: "h-8 w-8",
5890
+ onClick: () => onPageChange(currentPage + 1),
5891
+ disabled: !hasNextPage,
5892
+ "aria-label": labels.next,
5893
+ children: /* @__PURE__ */ jsx(ChevronRight, { className: "h-4 w-4" })
5894
+ }
5895
+ ),
5896
+ showFirstLastButtons && /* @__PURE__ */ jsx(
5897
+ Button,
5898
+ {
5899
+ variant: "outline",
5900
+ size: "icon",
5901
+ className: "h-8 w-8",
5902
+ onClick: () => onPageChange(totalPages),
5903
+ disabled: !hasNextPage,
5904
+ "aria-label": labels.last,
5905
+ children: /* @__PURE__ */ jsx(ChevronsRight, { className: "h-4 w-4" })
5906
+ }
5907
+ )
5908
+ ] })
5909
+ ] })
5910
+ ]
5681
5911
  }
5682
5912
  );
5683
5913
  }
5684
- function TableCaption({
5685
- className,
5686
- ...props
5687
- }) {
5688
- return /* @__PURE__ */ jsx(
5689
- "caption",
5690
- {
5691
- "data-slot": "table-caption",
5692
- className: cn("text-muted-foreground mt-4 text-sm", className),
5693
- ...props
5694
- }
5695
- );
5914
+ TablePagination.displayName = "TablePagination";
5915
+
5916
+ // components/ui/table-types.ts
5917
+ function calculatePaginationMetadata(config) {
5918
+ const { currentPage, pageSize, totalItems } = config;
5919
+ const totalPages = Math.ceil(totalItems / pageSize);
5920
+ const startIndex = (currentPage - 1) * pageSize;
5921
+ const endIndex = Math.min(startIndex + pageSize, totalItems);
5922
+ return {
5923
+ totalPages,
5924
+ startIndex,
5925
+ endIndex,
5926
+ hasNextPage: currentPage < totalPages,
5927
+ hasPreviousPage: currentPage > 1
5928
+ };
5696
5929
  }
5697
5930
  function Tabs({
5698
5931
  className,
@@ -6252,6 +6485,6 @@ function ProposalTemplate({
6252
6485
  );
6253
6486
  }
6254
6487
 
6255
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppLayout, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar2 as Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, ColorPicker, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContractPrint, ContractPrintPreview, ContractTemplate, DateRangePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyCalendarIllustration, EmptyInboxIllustration, EmptyProjectsIllustration, EmptySearchIllustration, ErrorStateIllustration, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Illustrations, ImageWithFallback, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KanbanCard, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, PrintFooter, PrintHeader, PrintInfoGrid, PrintSection, PrintSignature, PrintTable, Progress, ProposalTemplate, RadioGroup4 as RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Toaster as Sonner, SuccessStateIllustration, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimePicker, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UnderlineTabs, UnderlineTabsContent, UnderlineTabsList, UnderlineTabsTrigger, badgeVariants, buttonVariants, cn, dadosContratoExemplo, navigationMenuTriggerStyle, toggleVariants, useFormField, useIsMobile, usePrintContract, useSidebar };
6488
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppLayout, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar2 as Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, ColorPicker, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContractPrint, ContractPrintPreview, ContractTemplate, DateRangePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyCalendarIllustration, EmptyInboxIllustration, EmptyProjectsIllustration, EmptySearchIllustration, ErrorStateIllustration, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Illustrations, ImageWithFallback, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KanbanCard, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, PrintFooter, PrintHeader, PrintInfoGrid, PrintSection, PrintSignature, PrintTable, Progress, ProposalTemplate, RadioGroup4 as RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Toaster as Sonner, SuccessStateIllustration, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePagination, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimePicker, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UnderlineTabs, UnderlineTabsContent, UnderlineTabsList, UnderlineTabsTrigger, badgeVariants, buttonVariants, calculatePaginationMetadata, cn, dadosContratoExemplo, getPageNumbers, navigationMenuTriggerStyle, toggleVariants, useFormField, useIsMobile, usePrintContract, useSidebar };
6256
6489
  //# sourceMappingURL=index.js.map
6257
6490
  //# sourceMappingURL=index.js.map