@tb-dev/vue-components 2.0.2 → 2.1.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.
Files changed (44) hide show
  1. package/dist/components/accordion/index.d.ts +1 -0
  2. package/dist/components/alert/index.d.ts +1 -0
  3. package/dist/components/alert-dialog/index.d.ts +1 -0
  4. package/dist/components/avatar/index.d.ts +1 -0
  5. package/dist/components/badge/index.d.ts +1 -0
  6. package/dist/components/button/index.d.ts +1 -0
  7. package/dist/components/button-icon/index.d.ts +1 -0
  8. package/dist/components/button-link/index.d.ts +1 -0
  9. package/dist/components/card/index.d.ts +1 -0
  10. package/dist/components/checkbox/index.d.ts +2 -1
  11. package/dist/components/combobox/index.d.ts +1 -0
  12. package/dist/components/context-menu/index.d.ts +1 -0
  13. package/dist/components/dialog/index.d.ts +2 -0
  14. package/dist/components/dropdown-menu/index.d.ts +1 -0
  15. package/dist/components/hover-card/index.d.ts +1 -0
  16. package/dist/components/input/index.d.ts +1 -0
  17. package/dist/components/input-number/index.d.ts +1 -0
  18. package/dist/components/input-text/index.d.ts +1 -0
  19. package/dist/components/label/index.d.ts +1 -0
  20. package/dist/components/link/index.d.ts +3 -2
  21. package/dist/components/loading/index.d.ts +1 -0
  22. package/dist/components/menubar/index.d.ts +1 -0
  23. package/dist/components/pagination/index.d.ts +2 -0
  24. package/dist/components/popover/index.d.ts +1 -0
  25. package/dist/components/progress/index.d.ts +1 -0
  26. package/dist/components/radio-group/index.d.ts +1 -0
  27. package/dist/components/resizable/index.d.ts +1 -0
  28. package/dist/components/scroll-area/index.d.ts +1 -0
  29. package/dist/components/select/index.d.ts +2 -0
  30. package/dist/components/separator/index.d.ts +1 -0
  31. package/dist/components/sheet/index.d.ts +1 -0
  32. package/dist/components/sidebar/index.d.ts +2 -0
  33. package/dist/components/skeleton/index.d.ts +1 -0
  34. package/dist/components/slider/index.d.ts +1 -0
  35. package/dist/components/sonner/index.d.ts +1 -0
  36. package/dist/components/switch/index.d.ts +1 -0
  37. package/dist/components/table/index.d.ts +2 -1
  38. package/dist/components/tabs/index.d.ts +1 -0
  39. package/dist/components/tags-input/index.d.ts +1 -0
  40. package/dist/components/textarea/index.d.ts +1 -0
  41. package/dist/components/toggle/index.d.ts +1 -0
  42. package/dist/components/tooltip/index.d.ts +1 -0
  43. package/dist/index.js +2 -2
  44. package/package.json +3 -3
@@ -1 +1,2 @@
1
1
  export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from '../__base/accordion';
2
+ export { Accordion as TbAccordion, AccordionContent as TbAccordionContent, AccordionItem as TbAccordionItem, AccordionTrigger as TbAccordionTrigger, } from '../__base/accordion';
@@ -1 +1,2 @@
1
1
  export { Alert, AlertDescription, AlertTitle, type AlertVariants } from '../__base/alert';
2
+ export { Alert as TbAlert, AlertDescription as TbAlertDescription, AlertTitle as TbAlertTitle, } from '../__base/alert';
@@ -1,3 +1,4 @@
1
1
  import { default as AlertDialog } from './AlertDialog.vue';
2
2
  export type * from './types';
3
3
  export { AlertDialog };
4
+ export { AlertDialog as TbAlertDialog };
@@ -1 +1,2 @@
1
1
  export { Avatar, AvatarFallback, AvatarImage } from '../__base/avatar';
2
+ export { Avatar as TbAvatar, AvatarFallback as TbAvatarFallback, AvatarImage as TbAvatarImage, } from '../__base/avatar';
@@ -1,3 +1,4 @@
1
1
  import { BadgeVariants as Variants } from '../__base/badge';
2
2
  export type BadgeVariant = Variants['variant'];
3
3
  export { Badge } from '../__base/badge';
4
+ export { Badge as TbBadge } from '../__base/badge';
@@ -2,3 +2,4 @@ import { ButtonVariants as Variants } from '../__base/button';
2
2
  export type ButtonVariant = Variants['variant'];
3
3
  export type ButtonSize = Variants['size'];
4
4
  export { Button } from '../__base/button';
5
+ export { Button as TbButton } from '../__base/button';
@@ -1,3 +1,4 @@
1
1
  import { default as ButtonIcon } from './ButtonIcon.vue';
2
2
  export type * from './types';
3
3
  export { ButtonIcon };
4
+ export { ButtonIcon as TbButtonIcon };
@@ -1,3 +1,4 @@
1
1
  import { default as ButtonLink } from './ButtonLink.vue';
2
2
  export type * from './types';
3
3
  export { ButtonLink };
4
+ export { ButtonLink as TbButtonLink };
@@ -1,3 +1,4 @@
1
1
  import { default as Card } from './Card.vue';
2
2
  export type * from './types';
3
3
  export { Card };
4
+ export { Card as TbCard };
@@ -1,4 +1,5 @@
1
1
  import { default as Checkbox } from './Checkbox.vue';
2
2
  export type * from './types';
3
- export { Checkbox };
4
3
  export { toBooleanCheckboxValue } from './utils';
4
+ export { Checkbox };
5
+ export { Checkbox as TbCheckbox };
@@ -1 +1,2 @@
1
1
  export { Combobox, ComboboxAnchor, ComboboxCancel, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxItemIndicator, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxViewport, } from '../__base/combobox';
2
+ export { Combobox as TbCombobox, ComboboxAnchor as TbComboboxAnchor, ComboboxCancel as TbComboboxCancel, ComboboxEmpty as TbComboboxEmpty, ComboboxGroup as TbComboboxGroup, ComboboxInput as TbComboboxInput, ComboboxItem as TbComboboxItem, ComboboxItemIndicator as TbComboboxItemIndicator, ComboboxList as TbComboboxList, ComboboxSeparator as TbComboboxSeparator, ComboboxTrigger as TbComboboxTrigger, ComboboxViewport as TbComboboxViewport, } from '../__base/combobox';
@@ -1 +1,2 @@
1
1
  export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, } from '../__base/context-menu';
2
+ export { ContextMenu as TbContextMenu, ContextMenuCheckboxItem as TbContextMenuCheckboxItem, ContextMenuContent as TbContextMenuContent, ContextMenuGroup as TbContextMenuGroup, ContextMenuItem as TbContextMenuItem, ContextMenuLabel as TbContextMenuLabel, ContextMenuRadioGroup as TbContextMenuRadioGroup, ContextMenuRadioItem as TbContextMenuRadioItem, ContextMenuSeparator as TbContextMenuSeparator, ContextMenuShortcut as TbContextMenuShortcut, ContextMenuSub as TbContextMenuSub, ContextMenuSubContent as TbContextMenuSubContent, ContextMenuSubTrigger as TbContextMenuSubTrigger, ContextMenuTrigger as TbContextMenuTrigger, } from '../__base/context-menu';
@@ -1,4 +1,6 @@
1
1
  import { default as Dialog } from './Dialog.vue';
2
2
  export type * from './types';
3
3
  export { Dialog };
4
+ export { Dialog as TbDialog };
4
5
  export { DialogClose } from '../__base/dialog';
6
+ export { DialogClose as TbDialogClose } from '../__base/dialog';
@@ -1 +1,2 @@
1
1
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, } from '../__base/dropdown-menu';
2
+ export { DropdownMenu as TbDropdownMenu, DropdownMenuCheckboxItem as TbDropdownMenuCheckboxItem, DropdownMenuContent as TbDropdownMenuContent, DropdownMenuGroup as TbDropdownMenuGroup, DropdownMenuItem as TbDropdownMenuItem, DropdownMenuLabel as TbDropdownMenuLabel, DropdownMenuPortal as TbDropdownMenuPortal, DropdownMenuRadioGroup as TbDropdownMenuRadioGroup, DropdownMenuRadioItem as TbDropdownMenuRadioItem, DropdownMenuSeparator as TbDropdownMenuSeparator, DropdownMenuShortcut as TbDropdownMenuShortcut, DropdownMenuSub as TbDropdownMenuSub, DropdownMenuSubContent as TbDropdownMenuSubContent, DropdownMenuSubTrigger as TbDropdownMenuSubTrigger, DropdownMenuTrigger as TbDropdownMenuTrigger, } from '../__base/dropdown-menu';
@@ -1,2 +1,3 @@
1
1
  import { default as HoverCard } from './HoverCard.vue';
2
2
  export { HoverCard };
3
+ export { HoverCard as TbHoverCard };
@@ -1,3 +1,4 @@
1
1
  import { default as Input } from './Input.vue';
2
2
  export type * from './types';
3
3
  export { Input };
4
+ export { Input as TbInput };
@@ -1,3 +1,4 @@
1
1
  import { default as InputNumber } from './InputNumber.vue';
2
2
  export type * from './types';
3
3
  export { InputNumber };
4
+ export { InputNumber as TbInputNumber };
@@ -1,3 +1,4 @@
1
1
  import { default as InputText } from './InputText.vue';
2
2
  export type * from './types';
3
3
  export { InputText };
4
+ export { InputText as TbInputText };
@@ -1 +1,2 @@
1
1
  export { Label } from '../__base/label';
2
+ export { Label as TbLabel } from '../__base/label';
@@ -1,3 +1,4 @@
1
- import { LinkProps } from './types';
2
1
  import { default as Link } from './Link.vue';
3
- export { Link, type LinkProps };
2
+ export type * from './types';
3
+ export { Link };
4
+ export { Link as TbLink };
@@ -1,3 +1,4 @@
1
1
  import { default as Loading } from './Loading.vue';
2
2
  export type * from './types';
3
3
  export { Loading };
4
+ export { Loading as TbLoading };
@@ -1 +1,2 @@
1
1
  export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, } from '../__base/menubar';
2
+ export { Menubar as TbMenubar, MenubarCheckboxItem as TbMenubarCheckboxItem, MenubarContent as TbMenubarContent, MenubarGroup as TbMenubarGroup, MenubarItem as TbMenubarItem, MenubarLabel as TbMenubarLabel, MenubarMenu as TbMenubarMenu, MenubarRadioGroup as TbMenubarRadioGroup, MenubarRadioItem as TbMenubarRadioItem, MenubarSeparator as TbMenubarSeparator, MenubarShortcut as TbMenubarShortcut, MenubarSub as TbMenubarSub, MenubarSubContent as TbMenubarSubContent, MenubarSubTrigger as TbMenubarSubTrigger, MenubarTrigger as TbMenubarTrigger, } from '../__base/menubar';
@@ -1,2 +1,4 @@
1
1
  export { PaginationList, PaginationListItem } from 'reka-ui';
2
+ export { PaginationList as TbPaginationList, PaginationListItem as TbPaginationListItem, } from 'reka-ui';
2
3
  export { Pagination, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationNext, PaginationPrevious, } from '../__base/pagination';
4
+ export { Pagination as TbPagination, PaginationContent as TbPaginationContent, PaginationEllipsis as TbPaginationEllipsis, PaginationFirst as TbPaginationFirst, PaginationItem as TbPaginationItem, PaginationLast as TbPaginationLast, PaginationNext as TbPaginationNext, PaginationPrevious as TbPaginationPrevious, } from '../__base/pagination';
@@ -1,3 +1,4 @@
1
1
  import { PopoverContent } from '../__base/popover';
2
2
  import { default as Popover } from './Popover.vue';
3
3
  export { Popover, PopoverContent };
4
+ export { Popover as TbPopover, PopoverContent as TbPopoverContent };
@@ -1 +1,2 @@
1
1
  export { Progress } from '../__base/progress';
2
+ export { Progress as TbProgress } from '../__base/progress';
@@ -1 +1,2 @@
1
1
  export { RadioGroup, RadioGroupItem } from '../__base/radio-group';
2
+ export { RadioGroup as TbRadioGroup, RadioGroupItem as TbRadioGroupItem, } from '../__base/radio-group';
@@ -1 +1,2 @@
1
1
  export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../__base/resizable';
2
+ export { ResizableHandle as TbResizableHandle, ResizablePanel as TbResizablePanel, ResizablePanelGroup as TbResizablePanelGroup, } from '../__base/resizable';
@@ -1 +1,2 @@
1
1
  export { ScrollArea } from '../__base/scroll-area';
2
+ export { ScrollArea as TbScrollArea } from '../__base/scroll-area';
@@ -1,4 +1,6 @@
1
1
  import { default as Select } from './Select.vue';
2
2
  export type * from './types';
3
3
  export { Select };
4
+ export { Select as TbSelect };
4
5
  export { SelectGroup, SelectItem, SelectItemText, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, } from '../__base/select';
6
+ export { SelectGroup as TbSelectGroup, SelectItem as TbSelectItem, SelectItemText as TbSelectItemText, SelectLabel as TbSelectLabel, SelectScrollDownButton as TbSelectScrollDownButton, SelectScrollUpButton as TbSelectScrollUpButton, SelectSeparator as TbSelectSeparator, } from '../__base/select';
@@ -1 +1,2 @@
1
1
  export { Separator } from '../__base/separator';
2
+ export { Separator as TbSeparator } from '../__base/separator';
@@ -1 +1,2 @@
1
1
  export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, } from '../__base/sheet';
2
+ export { Sheet as TbSheet, SheetClose as TbSheetClose, SheetContent as TbSheetContent, SheetDescription as TbSheetDescription, SheetFooter as TbSheetFooter, SheetHeader as TbSheetHeader, SheetTitle as TbSheetTitle, SheetTrigger as TbSheetTrigger, } from '../__base/sheet';
@@ -1,4 +1,6 @@
1
1
  import { default as Sidebar } from './Sidebar.vue';
2
2
  export type * from './types';
3
3
  export { Sidebar };
4
+ export { Sidebar as TbSidebar };
4
5
  export { SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar, } from '../__base/sidebar';
6
+ export { SidebarGroup as TbSidebarGroup, SidebarGroupAction as TbSidebarGroupAction, SidebarGroupContent as TbSidebarGroupContent, SidebarGroupLabel as TbSidebarGroupLabel, SidebarMenu as TbSidebarMenu, SidebarMenuAction as TbSidebarMenuAction, SidebarMenuBadge as TbSidebarMenuBadge, SidebarMenuButton as TbSidebarMenuButton, SidebarMenuItem as TbSidebarMenuItem, SidebarMenuSkeleton as TbSidebarMenuSkeleton, SidebarMenuSub as TbSidebarMenuSub, SidebarMenuSubButton as TbSidebarMenuSubButton, SidebarMenuSubItem as TbSidebarMenuSubItem, SidebarRail as TbSidebarRail, SidebarSeparator as TbSidebarSeparator, SidebarTrigger as TbSidebarTrigger, } from '../__base/sidebar';
@@ -1 +1,2 @@
1
1
  export { Skeleton } from '../__base/skeleton';
2
+ export { Skeleton as TbSkeleton } from '../__base/skeleton';
@@ -1 +1,2 @@
1
1
  export { Slider } from '../__base/slider';
2
+ export { Slider as TbSlider } from '../__base/slider';
@@ -1,3 +1,4 @@
1
1
  import { toast } from 'vue-sonner';
2
2
  import { Toaster } from '../__base/sonner';
3
3
  export { Toaster as Sonner, toast as sonner };
4
+ export { Toaster as TbSonner };
@@ -1,3 +1,4 @@
1
1
  import { default as Switch } from './Switch.vue';
2
2
  export type * from './types';
3
3
  export { Switch };
4
+ export { Switch as TbSwitch };
@@ -2,4 +2,5 @@ import { default as Table } from './Table.vue';
2
2
  import { default as TableLink } from './TableLink.vue';
3
3
  export type * from './types';
4
4
  export { Table, TableLink };
5
- export { TableCell, TableEmpty, TableHead, TableRow } from '../__base/table';
5
+ export { Table as TbTable, TableLink as TbTableLink };
6
+ export { TableCell as TbTableCell, TableEmpty as TbTableEmpty, TableHead as TbTableHead, TableRow as TbTableRow, } from '../__base/table';
@@ -1 +1,2 @@
1
1
  export { Tabs, TabsContent, TabsList, TabsTrigger } from '../__base/tabs';
2
+ export { Tabs as TbTabs, TabsContent as TbTabsContent, TabsList as TbTabsList, TabsTrigger as TbTabsTrigger, } from '../__base/tabs';
@@ -1 +1,2 @@
1
1
  export { TagsInput, TagsInputInput, TagsInputItem, TagsInputItemDelete, TagsInputItemText, } from '../__base/tags-input';
2
+ export { TagsInput as TbTagsInput, TagsInputInput as TbTagsInputInput, TagsInputItem as TbTagsInputItem, TagsInputItemDelete as TbTagsInputItemDelete, TagsInputItemText as TbTagsInputItemText, } from '../__base/tags-input';
@@ -1,3 +1,4 @@
1
1
  import { default as Textarea } from './Textarea.vue';
2
2
  export type * from './types';
3
3
  export { Textarea };
4
+ export { Textarea as TbTextarea };
@@ -2,3 +2,4 @@ import { ToggleVariants as Variants } from '../__base/toggle';
2
2
  export type ToggleVariant = Variants['variant'];
3
3
  export type ToggleSize = Variants['size'];
4
4
  export { Toggle } from '../__base/toggle';
5
+ export { Toggle as TbToggle } from '../__base/toggle';
@@ -1,2 +1,3 @@
1
1
  import { default as Tooltip } from './Tooltip.vue';
2
2
  export { Tooltip };
3
+ export { Tooltip as TbTooltip };
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot, createElementVNode, normalizeClass, createVNode, createElementBlock, createCommentVNode, computed, normalizeStyle, toDisplayString, resolveDynamicComponent, mergeModels, useModel, createTextVNode, withDirectives, isRef, vModelText, useTemplateRef, normalizeProps, guardReactiveProps, Fragment, ref, renderList, createSlots } from 'vue';
2
2
  import { useForwardPropsEmits, AccordionRoot, AccordionContent, useForwardProps, AccordionItem, AccordionHeader, AccordionTrigger, AlertDialogRoot, Primitive, AlertDialogAction, AlertDialogCancel, AlertDialogPortal, AlertDialogOverlay, AlertDialogContent, AlertDialogDescription, AlertDialogTitle, AlertDialogTrigger, AvatarRoot, AvatarFallback, AvatarImage, ScrollAreaScrollbar, ScrollAreaThumb, ScrollAreaRoot, ScrollAreaViewport, ScrollAreaCorner, CheckboxRoot, CheckboxIndicator, ComboboxRoot, ComboboxAnchor, ComboboxEmpty, ComboboxGroup, ComboboxLabel, ComboboxInput, ComboboxItem, ComboboxItemIndicator, ComboboxPortal, ComboboxContent, ComboboxSeparator, ComboboxViewport, ContextMenuRoot, ContextMenuCheckboxItem, ContextMenuItemIndicator, ContextMenuPortal, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DialogRoot, DialogClose, DialogOverlay, DialogPortal, DialogContent, DialogDescription, DialogTitle, DialogTrigger, DropdownMenuRoot, DropdownMenuCheckboxItem, DropdownMenuItemIndicator, DropdownMenuPortal, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, HoverCardRoot, HoverCardPortal, HoverCardContent, HoverCardTrigger, NumberFieldRoot, NumberFieldDecrement, NumberFieldIncrement, NumberFieldInput, Label, MenubarRoot, MenubarCheckboxItem, MenubarItemIndicator, MenubarPortal, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, PaginationRoot, PaginationList, PaginationEllipsis, PaginationFirst, PaginationListItem, PaginationLast, PaginationNext, PaginationPrev, PopoverRoot, PopoverPortal, PopoverContent, PopoverTrigger, ProgressRoot, ProgressIndicator, RadioGroupRoot, RadioGroupItem, RadioGroupIndicator, SplitterResizeHandle, SplitterPanel, SplitterGroup, SelectRoot, SelectPortal, SelectContent, SelectViewport, SelectGroup, SelectItem, SelectItemIndicator, SelectItemText, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectIcon, SelectValue, Separator, createContext, TooltipRoot, TooltipPortal, TooltipContent, TooltipArrow, TooltipProvider, TooltipTrigger, SliderRoot, SliderTrack, SliderRange, SliderThumb, SwitchRoot, SwitchThumb, TabsRoot, TabsContent, TabsList, TabsTrigger, TagsInputRoot, TagsInputInput, TagsInputItem, TagsInputItemDelete, TagsInputItemText, Toggle } from 'reka-ui';
3
- export { ComboboxCancel, ComboboxTrigger, DropdownMenuPortal, PaginationList, PaginationListItem } from 'reka-ui';
3
+ export { ComboboxCancel, ComboboxTrigger, DropdownMenuPortal, PaginationList, PaginationListItem, ComboboxCancel as TbComboboxCancel, ComboboxTrigger as TbComboboxTrigger, DropdownMenuPortal as TbDropdownMenuPortal, PaginationList as TbPaginationList, PaginationListItem as TbPaginationListItem } from 'reka-ui';
4
4
  import { reactiveOmit, useVModel, useMediaQuery } from '@vueuse/core';
5
5
  import { twMerge } from 'tailwind-merge';
6
6
  import { clsx } from 'clsx';
@@ -6876,4 +6876,4 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
6876
6876
  }
6877
6877
  });
6878
6878
 
6879
- export { _sfc_main$3i as Accordion, _sfc_main$3h as AccordionContent, _sfc_main$3g as AccordionItem, _sfc_main$3f as AccordionTrigger, _sfc_main$3e as Alert, _sfc_main$3d as AlertDescription, _sfc_main$31 as AlertDialog, _sfc_main$3c as AlertTitle, _sfc_main$30 as Avatar, _sfc_main$2$ as AvatarFallback, _sfc_main$2_ as AvatarImage, _sfc_main$2Z as Badge, _sfc_main$3a as Button, _sfc_main$2W as ButtonIcon, _sfc_main$2X as ButtonLink, _sfc_main$2N as Card, _sfc_main$2L as Checkbox, _sfc_main$2K as Combobox, _sfc_main$2J as ComboboxAnchor, _sfc_main$2I as ComboboxEmpty, _sfc_main$2H as ComboboxGroup, _sfc_main$2G as ComboboxInput, _sfc_main$2F as ComboboxItem, _sfc_main$2E as ComboboxItemIndicator, _sfc_main$2D as ComboboxList, _sfc_main$2C as ComboboxSeparator, _sfc_main$2B as ComboboxViewport, _sfc_main$2A as ContextMenu, _sfc_main$2z as ContextMenuCheckboxItem, _sfc_main$2y as ContextMenuContent, _sfc_main$2x as ContextMenuGroup, _sfc_main$2w as ContextMenuItem, _sfc_main$2v as ContextMenuLabel, _sfc_main$2u as ContextMenuRadioGroup, _sfc_main$2t as ContextMenuRadioItem, _sfc_main$2s as ContextMenuSeparator, _sfc_main$2r as ContextMenuShortcut, _sfc_main$2q as ContextMenuSub, _sfc_main$2p as ContextMenuSubContent, _sfc_main$2o as ContextMenuSubTrigger, _sfc_main$2n as ContextMenuTrigger, _sfc_main$2d as Dialog, _sfc_main$2l as DialogClose, _sfc_main$2c as DropdownMenu, _sfc_main$2b as DropdownMenuCheckboxItem, _sfc_main$2a as DropdownMenuContent, _sfc_main$29 as DropdownMenuGroup, _sfc_main$28 as DropdownMenuItem, _sfc_main$27 as DropdownMenuLabel, _sfc_main$26 as DropdownMenuRadioGroup, _sfc_main$25 as DropdownMenuRadioItem, _sfc_main$24 as DropdownMenuSeparator, _sfc_main$23 as DropdownMenuShortcut, _sfc_main$22 as DropdownMenuSub, _sfc_main$21 as DropdownMenuSubContent, _sfc_main$20 as DropdownMenuSubTrigger, _sfc_main$1$ as DropdownMenuTrigger, _sfc_main$1X as HoverCard, _sfc_main$1V as Input, _sfc_main$1P as InputNumber, _sfc_main$1O as InputText, _sfc_main$1N as Label, _sfc_main$1M as Link, Loading, _sfc_main$1K as Menubar, _sfc_main$1J as MenubarCheckboxItem, _sfc_main$1I as MenubarContent, _sfc_main$1H as MenubarGroup, _sfc_main$1G as MenubarItem, _sfc_main$1F as MenubarLabel, _sfc_main$1E as MenubarMenu, _sfc_main$1D as MenubarRadioGroup, _sfc_main$1C as MenubarRadioItem, _sfc_main$1B as MenubarSeparator, _sfc_main$1A as MenubarShortcut, _sfc_main$1z as MenubarSub, _sfc_main$1y as MenubarSubContent, _sfc_main$1x as MenubarSubTrigger, _sfc_main$1w as MenubarTrigger, _sfc_main$1v as Pagination, _sfc_main$1u as PaginationContent, _sfc_main$1t as PaginationEllipsis, _sfc_main$1s as PaginationFirst, _sfc_main$1r as PaginationItem, _sfc_main$1q as PaginationLast, _sfc_main$1p as PaginationNext, _sfc_main$1o as PaginationPrevious, _sfc_main$1k as Popover, _sfc_main$1m as PopoverContent, _sfc_main$1j as Progress, _sfc_main$1i as RadioGroup, _sfc_main$1h as RadioGroupItem, _sfc_main$1g as ResizableHandle, _sfc_main$1f as ResizablePanel, _sfc_main$1e as ResizablePanelGroup, _sfc_main$2U as ScrollArea, _sfc_main$12 as Select, _sfc_main$1b as SelectGroup, _sfc_main$1a as SelectItem, _sfc_main$19 as SelectItemText, _sfc_main$18 as SelectLabel, _sfc_main$17 as SelectScrollDownButton, _sfc_main$16 as SelectScrollUpButton, _sfc_main$15 as SelectSeparator, _sfc_main$11 as Separator, _sfc_main$10 as Sheet, _sfc_main$$ as SheetClose, _sfc_main$Z as SheetContent, _sfc_main$Y as SheetDescription, _sfc_main$X as SheetFooter, _sfc_main$W as SheetHeader, _sfc_main$V as SheetTitle, _sfc_main$U as SheetTrigger, _sfc_main$r as Sidebar, _sfc_main$Q as SidebarGroup, _sfc_main$P as SidebarGroupAction, _sfc_main$O as SidebarGroupContent, _sfc_main$N as SidebarGroupLabel, _sfc_main$K as SidebarMenu, _sfc_main$J as SidebarMenuAction, _sfc_main$I as SidebarMenuBadge, _sfc_main$C as SidebarMenuButton, _sfc_main$B as SidebarMenuItem, _sfc_main$z as SidebarMenuSkeleton, _sfc_main$y as SidebarMenuSub, _sfc_main$x as SidebarMenuSubButton, _sfc_main$w as SidebarMenuSubItem, _sfc_main$u as SidebarRail, _sfc_main$t as SidebarSeparator, _sfc_main$s as SidebarTrigger, _sfc_main$A as Skeleton, _sfc_main$q as Slider, _sfc_main$p as Sonner, _sfc_main$n as Switch, _sfc_main$e as Table, _sfc_main$k as TableCell, _sfc_main$i as TableEmpty, _sfc_main$g as TableHead, _sfc_main$d as TableLink, _sfc_main$j as TableRow, _sfc_main$c as Tabs, _sfc_main$b as TabsContent, _sfc_main$a as TabsList, _sfc_main$9 as TabsTrigger, _sfc_main$8 as TagsInput, _sfc_main$7 as TagsInputInput, _sfc_main$6 as TagsInputItem, _sfc_main$5 as TagsInputItemDelete, _sfc_main$4 as TagsInputItemText, _sfc_main$2 as Textarea, _sfc_main$1 as Toggle, _sfc_main as Tooltip, cn, toBooleanCheckboxValue, useSidebar };
6879
+ export { _sfc_main$3i as Accordion, _sfc_main$3h as AccordionContent, _sfc_main$3g as AccordionItem, _sfc_main$3f as AccordionTrigger, _sfc_main$3e as Alert, _sfc_main$3d as AlertDescription, _sfc_main$31 as AlertDialog, _sfc_main$3c as AlertTitle, _sfc_main$30 as Avatar, _sfc_main$2$ as AvatarFallback, _sfc_main$2_ as AvatarImage, _sfc_main$2Z as Badge, _sfc_main$3a as Button, _sfc_main$2W as ButtonIcon, _sfc_main$2X as ButtonLink, _sfc_main$2N as Card, _sfc_main$2L as Checkbox, _sfc_main$2K as Combobox, _sfc_main$2J as ComboboxAnchor, _sfc_main$2I as ComboboxEmpty, _sfc_main$2H as ComboboxGroup, _sfc_main$2G as ComboboxInput, _sfc_main$2F as ComboboxItem, _sfc_main$2E as ComboboxItemIndicator, _sfc_main$2D as ComboboxList, _sfc_main$2C as ComboboxSeparator, _sfc_main$2B as ComboboxViewport, _sfc_main$2A as ContextMenu, _sfc_main$2z as ContextMenuCheckboxItem, _sfc_main$2y as ContextMenuContent, _sfc_main$2x as ContextMenuGroup, _sfc_main$2w as ContextMenuItem, _sfc_main$2v as ContextMenuLabel, _sfc_main$2u as ContextMenuRadioGroup, _sfc_main$2t as ContextMenuRadioItem, _sfc_main$2s as ContextMenuSeparator, _sfc_main$2r as ContextMenuShortcut, _sfc_main$2q as ContextMenuSub, _sfc_main$2p as ContextMenuSubContent, _sfc_main$2o as ContextMenuSubTrigger, _sfc_main$2n as ContextMenuTrigger, _sfc_main$2d as Dialog, _sfc_main$2l as DialogClose, _sfc_main$2c as DropdownMenu, _sfc_main$2b as DropdownMenuCheckboxItem, _sfc_main$2a as DropdownMenuContent, _sfc_main$29 as DropdownMenuGroup, _sfc_main$28 as DropdownMenuItem, _sfc_main$27 as DropdownMenuLabel, _sfc_main$26 as DropdownMenuRadioGroup, _sfc_main$25 as DropdownMenuRadioItem, _sfc_main$24 as DropdownMenuSeparator, _sfc_main$23 as DropdownMenuShortcut, _sfc_main$22 as DropdownMenuSub, _sfc_main$21 as DropdownMenuSubContent, _sfc_main$20 as DropdownMenuSubTrigger, _sfc_main$1$ as DropdownMenuTrigger, _sfc_main$1X as HoverCard, _sfc_main$1V as Input, _sfc_main$1P as InputNumber, _sfc_main$1O as InputText, _sfc_main$1N as Label, _sfc_main$1M as Link, Loading, _sfc_main$1K as Menubar, _sfc_main$1J as MenubarCheckboxItem, _sfc_main$1I as MenubarContent, _sfc_main$1H as MenubarGroup, _sfc_main$1G as MenubarItem, _sfc_main$1F as MenubarLabel, _sfc_main$1E as MenubarMenu, _sfc_main$1D as MenubarRadioGroup, _sfc_main$1C as MenubarRadioItem, _sfc_main$1B as MenubarSeparator, _sfc_main$1A as MenubarShortcut, _sfc_main$1z as MenubarSub, _sfc_main$1y as MenubarSubContent, _sfc_main$1x as MenubarSubTrigger, _sfc_main$1w as MenubarTrigger, _sfc_main$1v as Pagination, _sfc_main$1u as PaginationContent, _sfc_main$1t as PaginationEllipsis, _sfc_main$1s as PaginationFirst, _sfc_main$1r as PaginationItem, _sfc_main$1q as PaginationLast, _sfc_main$1p as PaginationNext, _sfc_main$1o as PaginationPrevious, _sfc_main$1k as Popover, _sfc_main$1m as PopoverContent, _sfc_main$1j as Progress, _sfc_main$1i as RadioGroup, _sfc_main$1h as RadioGroupItem, _sfc_main$1g as ResizableHandle, _sfc_main$1f as ResizablePanel, _sfc_main$1e as ResizablePanelGroup, _sfc_main$2U as ScrollArea, _sfc_main$12 as Select, _sfc_main$1b as SelectGroup, _sfc_main$1a as SelectItem, _sfc_main$19 as SelectItemText, _sfc_main$18 as SelectLabel, _sfc_main$17 as SelectScrollDownButton, _sfc_main$16 as SelectScrollUpButton, _sfc_main$15 as SelectSeparator, _sfc_main$11 as Separator, _sfc_main$10 as Sheet, _sfc_main$$ as SheetClose, _sfc_main$Z as SheetContent, _sfc_main$Y as SheetDescription, _sfc_main$X as SheetFooter, _sfc_main$W as SheetHeader, _sfc_main$V as SheetTitle, _sfc_main$U as SheetTrigger, _sfc_main$r as Sidebar, _sfc_main$Q as SidebarGroup, _sfc_main$P as SidebarGroupAction, _sfc_main$O as SidebarGroupContent, _sfc_main$N as SidebarGroupLabel, _sfc_main$K as SidebarMenu, _sfc_main$J as SidebarMenuAction, _sfc_main$I as SidebarMenuBadge, _sfc_main$C as SidebarMenuButton, _sfc_main$B as SidebarMenuItem, _sfc_main$z as SidebarMenuSkeleton, _sfc_main$y as SidebarMenuSub, _sfc_main$x as SidebarMenuSubButton, _sfc_main$w as SidebarMenuSubItem, _sfc_main$u as SidebarRail, _sfc_main$t as SidebarSeparator, _sfc_main$s as SidebarTrigger, _sfc_main$A as Skeleton, _sfc_main$q as Slider, _sfc_main$p as Sonner, _sfc_main$n as Switch, _sfc_main$e as Table, _sfc_main$d as TableLink, _sfc_main$c as Tabs, _sfc_main$b as TabsContent, _sfc_main$a as TabsList, _sfc_main$9 as TabsTrigger, _sfc_main$8 as TagsInput, _sfc_main$7 as TagsInputInput, _sfc_main$6 as TagsInputItem, _sfc_main$5 as TagsInputItemDelete, _sfc_main$4 as TagsInputItemText, _sfc_main$3i as TbAccordion, _sfc_main$3h as TbAccordionContent, _sfc_main$3g as TbAccordionItem, _sfc_main$3f as TbAccordionTrigger, _sfc_main$3e as TbAlert, _sfc_main$3d as TbAlertDescription, _sfc_main$31 as TbAlertDialog, _sfc_main$3c as TbAlertTitle, _sfc_main$30 as TbAvatar, _sfc_main$2$ as TbAvatarFallback, _sfc_main$2_ as TbAvatarImage, _sfc_main$2Z as TbBadge, _sfc_main$3a as TbButton, _sfc_main$2W as TbButtonIcon, _sfc_main$2X as TbButtonLink, _sfc_main$2N as TbCard, _sfc_main$2L as TbCheckbox, _sfc_main$2K as TbCombobox, _sfc_main$2J as TbComboboxAnchor, _sfc_main$2I as TbComboboxEmpty, _sfc_main$2H as TbComboboxGroup, _sfc_main$2G as TbComboboxInput, _sfc_main$2F as TbComboboxItem, _sfc_main$2E as TbComboboxItemIndicator, _sfc_main$2D as TbComboboxList, _sfc_main$2C as TbComboboxSeparator, _sfc_main$2B as TbComboboxViewport, _sfc_main$2A as TbContextMenu, _sfc_main$2z as TbContextMenuCheckboxItem, _sfc_main$2y as TbContextMenuContent, _sfc_main$2x as TbContextMenuGroup, _sfc_main$2w as TbContextMenuItem, _sfc_main$2v as TbContextMenuLabel, _sfc_main$2u as TbContextMenuRadioGroup, _sfc_main$2t as TbContextMenuRadioItem, _sfc_main$2s as TbContextMenuSeparator, _sfc_main$2r as TbContextMenuShortcut, _sfc_main$2q as TbContextMenuSub, _sfc_main$2p as TbContextMenuSubContent, _sfc_main$2o as TbContextMenuSubTrigger, _sfc_main$2n as TbContextMenuTrigger, _sfc_main$2d as TbDialog, _sfc_main$2l as TbDialogClose, _sfc_main$2c as TbDropdownMenu, _sfc_main$2b as TbDropdownMenuCheckboxItem, _sfc_main$2a as TbDropdownMenuContent, _sfc_main$29 as TbDropdownMenuGroup, _sfc_main$28 as TbDropdownMenuItem, _sfc_main$27 as TbDropdownMenuLabel, _sfc_main$26 as TbDropdownMenuRadioGroup, _sfc_main$25 as TbDropdownMenuRadioItem, _sfc_main$24 as TbDropdownMenuSeparator, _sfc_main$23 as TbDropdownMenuShortcut, _sfc_main$22 as TbDropdownMenuSub, _sfc_main$21 as TbDropdownMenuSubContent, _sfc_main$20 as TbDropdownMenuSubTrigger, _sfc_main$1$ as TbDropdownMenuTrigger, _sfc_main$1X as TbHoverCard, _sfc_main$1V as TbInput, _sfc_main$1P as TbInputNumber, _sfc_main$1O as TbInputText, _sfc_main$1N as TbLabel, _sfc_main$1M as TbLink, Loading as TbLoading, _sfc_main$1K as TbMenubar, _sfc_main$1J as TbMenubarCheckboxItem, _sfc_main$1I as TbMenubarContent, _sfc_main$1H as TbMenubarGroup, _sfc_main$1G as TbMenubarItem, _sfc_main$1F as TbMenubarLabel, _sfc_main$1E as TbMenubarMenu, _sfc_main$1D as TbMenubarRadioGroup, _sfc_main$1C as TbMenubarRadioItem, _sfc_main$1B as TbMenubarSeparator, _sfc_main$1A as TbMenubarShortcut, _sfc_main$1z as TbMenubarSub, _sfc_main$1y as TbMenubarSubContent, _sfc_main$1x as TbMenubarSubTrigger, _sfc_main$1w as TbMenubarTrigger, _sfc_main$1v as TbPagination, _sfc_main$1u as TbPaginationContent, _sfc_main$1t as TbPaginationEllipsis, _sfc_main$1s as TbPaginationFirst, _sfc_main$1r as TbPaginationItem, _sfc_main$1q as TbPaginationLast, _sfc_main$1p as TbPaginationNext, _sfc_main$1o as TbPaginationPrevious, _sfc_main$1k as TbPopover, _sfc_main$1m as TbPopoverContent, _sfc_main$1j as TbProgress, _sfc_main$1i as TbRadioGroup, _sfc_main$1h as TbRadioGroupItem, _sfc_main$1g as TbResizableHandle, _sfc_main$1f as TbResizablePanel, _sfc_main$1e as TbResizablePanelGroup, _sfc_main$2U as TbScrollArea, _sfc_main$12 as TbSelect, _sfc_main$1b as TbSelectGroup, _sfc_main$1a as TbSelectItem, _sfc_main$19 as TbSelectItemText, _sfc_main$18 as TbSelectLabel, _sfc_main$17 as TbSelectScrollDownButton, _sfc_main$16 as TbSelectScrollUpButton, _sfc_main$15 as TbSelectSeparator, _sfc_main$11 as TbSeparator, _sfc_main$10 as TbSheet, _sfc_main$$ as TbSheetClose, _sfc_main$Z as TbSheetContent, _sfc_main$Y as TbSheetDescription, _sfc_main$X as TbSheetFooter, _sfc_main$W as TbSheetHeader, _sfc_main$V as TbSheetTitle, _sfc_main$U as TbSheetTrigger, _sfc_main$r as TbSidebar, _sfc_main$Q as TbSidebarGroup, _sfc_main$P as TbSidebarGroupAction, _sfc_main$O as TbSidebarGroupContent, _sfc_main$N as TbSidebarGroupLabel, _sfc_main$K as TbSidebarMenu, _sfc_main$J as TbSidebarMenuAction, _sfc_main$I as TbSidebarMenuBadge, _sfc_main$C as TbSidebarMenuButton, _sfc_main$B as TbSidebarMenuItem, _sfc_main$z as TbSidebarMenuSkeleton, _sfc_main$y as TbSidebarMenuSub, _sfc_main$x as TbSidebarMenuSubButton, _sfc_main$w as TbSidebarMenuSubItem, _sfc_main$u as TbSidebarRail, _sfc_main$t as TbSidebarSeparator, _sfc_main$s as TbSidebarTrigger, _sfc_main$A as TbSkeleton, _sfc_main$q as TbSlider, _sfc_main$p as TbSonner, _sfc_main$n as TbSwitch, _sfc_main$e as TbTable, _sfc_main$k as TbTableCell, _sfc_main$i as TbTableEmpty, _sfc_main$g as TbTableHead, _sfc_main$d as TbTableLink, _sfc_main$j as TbTableRow, _sfc_main$c as TbTabs, _sfc_main$b as TbTabsContent, _sfc_main$a as TbTabsList, _sfc_main$9 as TbTabsTrigger, _sfc_main$8 as TbTagsInput, _sfc_main$7 as TbTagsInputInput, _sfc_main$6 as TbTagsInputItem, _sfc_main$5 as TbTagsInputItemDelete, _sfc_main$4 as TbTagsInputItemText, _sfc_main$2 as TbTextarea, _sfc_main$1 as TbToggle, _sfc_main as TbTooltip, _sfc_main$2 as Textarea, _sfc_main$1 as Toggle, _sfc_main as Tooltip, cn, toBooleanCheckboxValue, useSidebar };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tb-dev/vue-components",
3
- "version": "2.0.2",
3
+ "version": "2.1.0",
4
4
  "description": "Vue components",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -29,7 +29,7 @@
29
29
  "@vueuse/core": "^13.4.0",
30
30
  "class-variance-authority": "^0.7.1",
31
31
  "clsx": "^2.1.1",
32
- "lucide-vue-next": "^0.518.0",
32
+ "lucide-vue-next": "^0.522.0",
33
33
  "reka-ui": "^2.3.1",
34
34
  "tailwind-merge": "^3.3.1",
35
35
  "tw-animate-css": "^1.3.4",
@@ -45,7 +45,7 @@
45
45
  "eslint": "^9.29.0",
46
46
  "prettier": "^3.5.3",
47
47
  "prettier-plugin-css-order": "^2.1.2",
48
- "prettier-plugin-tailwindcss": "^0.6.12",
48
+ "prettier-plugin-tailwindcss": "^0.6.13",
49
49
  "tailwindcss": "^4.1.10",
50
50
  "tslib": "^2.8.1",
51
51
  "typescript": "~5.8.3",