@tb-dev/vue-components 2.1.1 → 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/dist/components/accordion/index.d.ts +0 -1
- package/dist/components/alert/index.d.ts +0 -1
- package/dist/components/alert-dialog/index.d.ts +0 -1
- package/dist/components/avatar/index.d.ts +0 -1
- package/dist/components/badge/index.d.ts +0 -1
- package/dist/components/button/index.d.ts +0 -1
- package/dist/components/button-icon/index.d.ts +0 -1
- package/dist/components/button-link/index.d.ts +0 -1
- package/dist/components/card/index.d.ts +0 -1
- package/dist/components/checkbox/index.d.ts +0 -1
- package/dist/components/combobox/index.d.ts +0 -1
- package/dist/components/context-menu/index.d.ts +0 -1
- package/dist/components/dialog/Dialog.vue.d.ts +9 -1
- package/dist/components/dialog/index.d.ts +0 -2
- package/dist/components/dropdown-menu/index.d.ts +0 -1
- package/dist/components/hover-card/index.d.ts +0 -1
- package/dist/components/input/index.d.ts +0 -1
- package/dist/components/input-number/index.d.ts +0 -1
- package/dist/components/input-text/index.d.ts +0 -1
- package/dist/components/label/index.d.ts +0 -1
- package/dist/components/link/index.d.ts +0 -1
- package/dist/components/loading/index.d.ts +0 -1
- package/dist/components/menubar/index.d.ts +0 -1
- package/dist/components/pagination/index.d.ts +0 -1
- package/dist/components/popover/index.d.ts +0 -1
- package/dist/components/progress/index.d.ts +0 -1
- package/dist/components/radio-group/index.d.ts +0 -1
- package/dist/components/resizable/index.d.ts +0 -1
- package/dist/components/scroll-area/index.d.ts +0 -1
- package/dist/components/select/index.d.ts +0 -1
- package/dist/components/separator/index.d.ts +0 -1
- package/dist/components/sheet/index.d.ts +0 -1
- package/dist/components/sidebar/index.d.ts +0 -1
- package/dist/components/skeleton/index.d.ts +0 -1
- package/dist/components/slider/index.d.ts +0 -1
- package/dist/components/sonner/index.d.ts +0 -1
- package/dist/components/switch/index.d.ts +0 -1
- package/dist/components/table/index.d.ts +0 -1
- package/dist/components/tabs/index.d.ts +0 -1
- package/dist/components/tags-input/index.d.ts +0 -1
- package/dist/components/textarea/index.d.ts +0 -1
- package/dist/components/toggle/index.d.ts +0 -1
- package/dist/components/tooltip/index.d.ts +0 -1
- package/dist/index.css +1 -1
- package/dist/index.js +14 -6
- package/package.json +10 -10
|
@@ -1,2 +1 @@
|
|
|
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,2 +1 @@
|
|
|
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,2 +1 @@
|
|
|
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,5 +1,9 @@
|
|
|
1
1
|
import { VNode } from 'vue';
|
|
2
2
|
import { DialogProps } from './types';
|
|
3
|
+
type __VLS_Props = DialogProps;
|
|
4
|
+
type __VLS_PublicProps = {
|
|
5
|
+
modelValue: boolean;
|
|
6
|
+
} & __VLS_Props;
|
|
3
7
|
declare function __VLS_template(): {
|
|
4
8
|
attrs: Partial<{}>;
|
|
5
9
|
slots: Readonly<{
|
|
@@ -19,7 +23,11 @@ declare function __VLS_template(): {
|
|
|
19
23
|
rootEl: any;
|
|
20
24
|
};
|
|
21
25
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
22
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
26
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
|
+
"update:modelValue": (value: boolean) => any;
|
|
28
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
29
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
30
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
31
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
32
|
export default _default;
|
|
25
33
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,2 +1 @@
|
|
|
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 @@
|
|
|
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,4 +1,3 @@
|
|
|
1
1
|
export { PaginationList, PaginationListItem } from 'reka-ui';
|
|
2
2
|
export { PaginationList as TbPaginationList, PaginationListItem as TbPaginationListItem, } from 'reka-ui';
|
|
3
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';
|
|
@@ -3,4 +3,3 @@ export type * from './types';
|
|
|
3
3
|
export { Select };
|
|
4
4
|
export { Select as TbSelect };
|
|
5
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,2 +1 @@
|
|
|
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';
|
|
@@ -3,4 +3,3 @@ export type * from './types';
|
|
|
3
3
|
export { Sidebar };
|
|
4
4
|
export { Sidebar as TbSidebar };
|
|
5
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';
|
|
@@ -4,4 +4,3 @@ export type * from './types';
|
|
|
4
4
|
export { Table, TableLink };
|
|
5
5
|
export { Table as TbTable, TableLink as TbTableLink };
|
|
6
6
|
export { TableCell, TableEmpty, TableHead, TableRow } from '../__base/table';
|
|
7
|
-
export { TableCell as TbTableCell, TableEmpty as TbTableEmpty, TableHead as TbTableHead, TableRow as TbTableRow, } from '../__base/table';
|
|
@@ -1,2 +1 @@
|
|
|
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';
|
package/dist/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties {
|
|
3
3
|
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
4
4
|
*, :before, :after, ::backdrop {
|
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,
|
|
3
|
+
export { ComboboxCancel, ComboboxTrigger, DropdownMenuPortal, PaginationList, PaginationListItem, 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';
|
|
@@ -2154,16 +2154,24 @@ const _sfc_main$2e = /* @__PURE__ */ defineComponent({
|
|
|
2154
2154
|
|
|
2155
2155
|
const _sfc_main$2d = /* @__PURE__ */ defineComponent({
|
|
2156
2156
|
__name: "Dialog",
|
|
2157
|
-
props: {
|
|
2157
|
+
props: /* @__PURE__ */ mergeModels({
|
|
2158
2158
|
contentClass: {},
|
|
2159
2159
|
descriptionClass: {},
|
|
2160
2160
|
footerClass: {},
|
|
2161
2161
|
headerClass: {},
|
|
2162
2162
|
titleClass: {}
|
|
2163
|
-
},
|
|
2163
|
+
}, {
|
|
2164
|
+
"modelValue": { type: Boolean, ...{ required: true } },
|
|
2165
|
+
"modelModifiers": {}
|
|
2166
|
+
}),
|
|
2167
|
+
emits: ["update:modelValue"],
|
|
2164
2168
|
setup(__props) {
|
|
2169
|
+
const isOpen = useModel(__props, "modelValue");
|
|
2165
2170
|
return (_ctx, _cache) => {
|
|
2166
|
-
return openBlock(), createBlock(unref(_sfc_main$2m),
|
|
2171
|
+
return openBlock(), createBlock(unref(_sfc_main$2m), {
|
|
2172
|
+
modelValue: isOpen.value,
|
|
2173
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isOpen.value = $event)
|
|
2174
|
+
}, {
|
|
2167
2175
|
default: withCtx(() => [
|
|
2168
2176
|
createVNode(unref(_sfc_main$2e), null, {
|
|
2169
2177
|
default: withCtx(() => [
|
|
@@ -2215,7 +2223,7 @@ const _sfc_main$2d = /* @__PURE__ */ defineComponent({
|
|
|
2215
2223
|
}, 8, ["class"])
|
|
2216
2224
|
]),
|
|
2217
2225
|
_: 3
|
|
2218
|
-
});
|
|
2226
|
+
}, 8, ["modelValue"]);
|
|
2219
2227
|
};
|
|
2220
2228
|
}
|
|
2221
2229
|
});
|
|
@@ -6876,4 +6884,4 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
6876
6884
|
}
|
|
6877
6885
|
});
|
|
6878
6886
|
|
|
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$
|
|
6887
|
+
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$12 as TbSelect, _sfc_main$r as TbSidebar, _sfc_main$e as TbTable, _sfc_main$d as TbTableLink, _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.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Vue components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -29,27 +29,27 @@
|
|
|
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.
|
|
32
|
+
"lucide-vue-next": "^0.525.0",
|
|
33
33
|
"reka-ui": "^2.3.1",
|
|
34
34
|
"tailwind-merge": "^3.3.1",
|
|
35
35
|
"tw-animate-css": "^1.3.4",
|
|
36
36
|
"vue": "^3.5.17",
|
|
37
37
|
"vue-router": "^4.5.1",
|
|
38
|
-
"vue-sonner": "^2.0.
|
|
38
|
+
"vue-sonner": "^2.0.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@tailwindcss/vite": "^4.1.
|
|
41
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
42
42
|
"@tb-dev/eslint-config": "^7.1.8",
|
|
43
|
-
"@types/node": "^24.0.
|
|
44
|
-
"@vitejs/plugin-vue": "^
|
|
45
|
-
"eslint": "^9.
|
|
46
|
-
"prettier": "^3.
|
|
43
|
+
"@types/node": "^24.0.6",
|
|
44
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
45
|
+
"eslint": "^9.30.0",
|
|
46
|
+
"prettier": "^3.6.2",
|
|
47
47
|
"prettier-plugin-css-order": "^2.1.2",
|
|
48
48
|
"prettier-plugin-tailwindcss": "^0.6.13",
|
|
49
|
-
"tailwindcss": "^4.1.
|
|
49
|
+
"tailwindcss": "^4.1.11",
|
|
50
50
|
"tslib": "^2.8.1",
|
|
51
51
|
"typescript": "~5.8.3",
|
|
52
|
-
"vite": "^
|
|
52
|
+
"vite": "^7.0.0",
|
|
53
53
|
"vite-plugin-dts": "^4.5.4",
|
|
54
54
|
"vue-tsc": "~2.2.10"
|
|
55
55
|
},
|