@tb-dev/vue-components 3.0.0 → 4.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 (56) hide show
  1. package/dist/components/__base/calendar/Calendar.vue.d.ts +13 -0
  2. package/dist/components/__base/calendar/CalendarCell.vue.d.ts +22 -0
  3. package/dist/components/__base/calendar/CalendarCellTrigger.vue.d.ts +24 -0
  4. package/dist/components/__base/calendar/CalendarGrid.vue.d.ts +22 -0
  5. package/dist/components/__base/calendar/CalendarGridBody.vue.d.ts +18 -0
  6. package/dist/components/__base/calendar/CalendarGridHead.vue.d.ts +22 -0
  7. package/dist/components/__base/calendar/CalendarGridRow.vue.d.ts +22 -0
  8. package/dist/components/__base/calendar/CalendarHeadCell.vue.d.ts +22 -0
  9. package/dist/components/__base/calendar/CalendarHeader.vue.d.ts +22 -0
  10. package/dist/components/__base/calendar/CalendarHeading.vue.d.ts +28 -0
  11. package/dist/components/__base/calendar/CalendarNextButton.vue.d.ts +22 -0
  12. package/dist/components/__base/calendar/CalendarPrevButton.vue.d.ts +22 -0
  13. package/dist/components/__base/calendar/index.d.ts +12 -0
  14. package/dist/components/__base/command/Command.vue.d.ts +40 -0
  15. package/dist/components/__base/command/CommandDialog.vue.d.ts +29 -0
  16. package/dist/components/__base/command/CommandEmpty.vue.d.ts +22 -0
  17. package/dist/components/__base/command/CommandGroup.vue.d.ts +23 -0
  18. package/dist/components/__base/command/CommandInput.vue.d.ts +7 -0
  19. package/dist/components/__base/command/CommandItem.vue.d.ts +30 -0
  20. package/dist/components/__base/command/CommandList.vue.d.ts +22 -0
  21. package/dist/components/__base/command/CommandSeparator.vue.d.ts +22 -0
  22. package/dist/components/__base/command/CommandShortcut.vue.d.ts +21 -0
  23. package/dist/components/__base/command/index.d.ts +90 -0
  24. package/dist/components/__base/drawer/Drawer.vue.d.ts +34 -0
  25. package/dist/components/__base/drawer/DrawerClose.vue.d.ts +18 -0
  26. package/dist/components/__base/drawer/DrawerContent.vue.d.ts +36 -0
  27. package/dist/components/__base/drawer/DrawerDescription.vue.d.ts +22 -0
  28. package/dist/components/__base/drawer/DrawerFooter.vue.d.ts +21 -0
  29. package/dist/components/__base/drawer/DrawerHeader.vue.d.ts +21 -0
  30. package/dist/components/__base/drawer/DrawerOverlay.vue.d.ts +7 -0
  31. package/dist/components/__base/drawer/DrawerTitle.vue.d.ts +22 -0
  32. package/dist/components/__base/drawer/DrawerTrigger.vue.d.ts +18 -0
  33. package/dist/components/__base/drawer/index.d.ts +9 -0
  34. package/dist/components/__base/navigation-menu/NavigationMenu.vue.d.ts +29 -0
  35. package/dist/components/__base/navigation-menu/NavigationMenuContent.vue.d.ts +32 -0
  36. package/dist/components/__base/navigation-menu/NavigationMenuIndicator.vue.d.ts +7 -0
  37. package/dist/components/__base/navigation-menu/NavigationMenuItem.vue.d.ts +22 -0
  38. package/dist/components/__base/navigation-menu/NavigationMenuLink.vue.d.ts +30 -0
  39. package/dist/components/__base/navigation-menu/NavigationMenuList.vue.d.ts +22 -0
  40. package/dist/components/__base/navigation-menu/NavigationMenuTrigger.vue.d.ts +22 -0
  41. package/dist/components/__base/navigation-menu/NavigationMenuViewport.vue.d.ts +7 -0
  42. package/dist/components/__base/navigation-menu/index.d.ts +9 -0
  43. package/dist/components/calendar/index.d.ts +1 -0
  44. package/dist/components/command/index.d.ts +1 -0
  45. package/dist/components/drawer/index.d.ts +1 -0
  46. package/dist/components/index.d.ts +4 -0
  47. package/dist/components/navigation-menu/index.d.ts +1 -0
  48. package/dist/components/pagination/index.d.ts +0 -1
  49. package/dist/components/select/index.d.ts +0 -1
  50. package/dist/components/sidebar/index.d.ts +1 -5
  51. package/dist/components/table/index.d.ts +1 -2
  52. package/dist/index.css +3 -3
  53. package/dist/index.js +2052 -820
  54. package/package.json +8 -7
  55. package/dist/components/sidebar/Sidebar.vue.d.ts +0 -37
  56. package/dist/components/sidebar/types.d.ts +0 -9
@@ -0,0 +1,18 @@
1
+ import { DrawerCloseProps } from 'vaul-vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<DrawerCloseProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DrawerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,36 @@
1
+ import { DialogContentProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = DialogContentProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ escapeKeyDown: (event: KeyboardEvent) => any;
17
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
18
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
19
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
20
+ openAutoFocus: (event: Event) => any;
21
+ closeAutoFocus: (event: Event) => any;
22
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
23
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
24
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
25
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
26
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
27
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
28
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
29
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
31
+ export default _default;
32
+ type __VLS_WithTemplateSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
@@ -0,0 +1,22 @@
1
+ import { DrawerDescriptionProps } from 'vaul-vue';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = DrawerDescriptionProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,21 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
7
+ slots: {
8
+ default?(_: {}): any;
9
+ };
10
+ refs: {};
11
+ rootEl: HTMLDivElement;
12
+ };
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
+ export default _default;
17
+ type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,21 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
7
+ slots: {
8
+ default?(_: {}): any;
9
+ };
10
+ refs: {};
11
+ rootEl: HTMLDivElement;
12
+ };
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
+ export default _default;
17
+ type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,7 @@
1
+ import { DialogOverlayProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = DialogOverlayProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
+ export default _default;
@@ -0,0 +1,22 @@
1
+ import { DrawerTitleProps } from 'vaul-vue';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = DrawerTitleProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,18 @@
1
+ import { DrawerTriggerProps } from 'vaul-vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,9 @@
1
+ export { default as Drawer } from './Drawer.vue';
2
+ export { default as DrawerClose } from './DrawerClose.vue';
3
+ export { default as DrawerContent } from './DrawerContent.vue';
4
+ export { default as DrawerDescription } from './DrawerDescription.vue';
5
+ export { default as DrawerFooter } from './DrawerFooter.vue';
6
+ export { default as DrawerHeader } from './DrawerHeader.vue';
7
+ export { default as DrawerOverlay } from './DrawerOverlay.vue';
8
+ export { default as DrawerTitle } from './DrawerTitle.vue';
9
+ export { default as DrawerTrigger } from './DrawerTrigger.vue';
@@ -0,0 +1,29 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { NavigationMenuRootProps } from 'reka-ui';
3
+ type __VLS_Props = NavigationMenuRootProps & {
4
+ class?: HTMLAttributes['class'];
5
+ viewport?: boolean;
6
+ };
7
+ declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
9
+ slots: {
10
+ default?(_: {}): any;
11
+ };
12
+ refs: {};
13
+ rootEl: any;
14
+ };
15
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
+ "update:modelValue": (value: string) => any;
18
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
19
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
20
+ }>, {
21
+ viewport: boolean;
22
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
23
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
+ export default _default;
25
+ type __VLS_WithTemplateSlots<T, S> = T & {
26
+ new (): {
27
+ $slots: S;
28
+ };
29
+ };
@@ -0,0 +1,32 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { NavigationMenuContentProps } from 'reka-ui';
3
+ type __VLS_Props = NavigationMenuContentProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ escapeKeyDown: (event: KeyboardEvent) => any;
17
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
18
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
19
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
20
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
21
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
22
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
23
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
24
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -0,0 +1,7 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { NavigationMenuIndicatorProps } from 'reka-ui';
3
+ type __VLS_Props = NavigationMenuIndicatorProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
+ export default _default;
@@ -0,0 +1,22 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { NavigationMenuItemProps } from 'reka-ui';
3
+ type __VLS_Props = NavigationMenuItemProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,30 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { NavigationMenuLinkProps } from 'reka-ui';
3
+ type __VLS_Props = NavigationMenuLinkProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ select: (payload: CustomEvent<{
17
+ originalEvent: Event;
18
+ }>) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ onSelect?: ((payload: CustomEvent<{
21
+ originalEvent: Event;
22
+ }>) => any) | undefined;
23
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
25
+ export default _default;
26
+ type __VLS_WithTemplateSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,22 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { NavigationMenuListProps } from 'reka-ui';
3
+ type __VLS_Props = NavigationMenuListProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,22 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { NavigationMenuTriggerProps } from 'reka-ui';
3
+ type __VLS_Props = NavigationMenuTriggerProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,7 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { NavigationMenuViewportProps } from 'reka-ui';
3
+ type __VLS_Props = NavigationMenuViewportProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
7
+ export default _default;
@@ -0,0 +1,9 @@
1
+ export { default as NavigationMenu } from './NavigationMenu.vue';
2
+ export { default as NavigationMenuContent } from './NavigationMenuContent.vue';
3
+ export { default as NavigationMenuIndicator } from './NavigationMenuIndicator.vue';
4
+ export { default as NavigationMenuItem } from './NavigationMenuItem.vue';
5
+ export { default as NavigationMenuLink } from './NavigationMenuLink.vue';
6
+ export { default as NavigationMenuList } from './NavigationMenuList.vue';
7
+ export { default as NavigationMenuTrigger } from './NavigationMenuTrigger.vue';
8
+ export { default as NavigationMenuViewport } from './NavigationMenuViewport.vue';
9
+ export declare const navigationMenuTriggerStyle: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
@@ -0,0 +1 @@
1
+ export { Calendar, CalendarCell, CalendarCellTrigger, CalendarGrid, CalendarGridBody, CalendarGridHead, CalendarGridRow, CalendarHeadCell, CalendarHeader, CalendarHeading, CalendarNextButton, CalendarPrevButton, } from '../__base/calendar';
@@ -0,0 +1 @@
1
+ export { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, } from '../__base/command';
@@ -0,0 +1 @@
1
+ export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerTitle, DrawerTrigger, } from '../__base/drawer';
@@ -7,10 +7,13 @@ export * from './button';
7
7
  export * from './button-icon';
8
8
  export * from './button-link';
9
9
  export * from './card';
10
+ export * from './calendar';
10
11
  export * from './checkbox';
11
12
  export * from './combobox';
13
+ export * from './command';
12
14
  export * from './context-menu';
13
15
  export * from './dialog';
16
+ export * from './drawer';
14
17
  export * from './dropdown-menu';
15
18
  export * from './hover-card';
16
19
  export * from './input';
@@ -20,6 +23,7 @@ export * from './label';
20
23
  export * from './link';
21
24
  export * from './loading';
22
25
  export * from './menubar';
26
+ export * from './navigation-menu';
23
27
  export * from './pagination';
24
28
  export * from './popover';
25
29
  export * from './progress';
@@ -0,0 +1 @@
1
+ export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, navigationMenuTriggerStyle, NavigationMenuViewport, } from '../__base/navigation-menu';
@@ -1,3 +1,2 @@
1
1
  export { PaginationList, PaginationListItem } from 'reka-ui';
2
- export { PaginationList as TbPaginationList, PaginationListItem as TbPaginationListItem, } from 'reka-ui';
3
2
  export { Pagination, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationNext, PaginationPrevious, } from '../__base/pagination';
@@ -1,5 +1,4 @@
1
1
  import { default as Select } from './Select.vue';
2
2
  export type * from './types';
3
3
  export { Select };
4
- export { Select as TbSelect };
5
4
  export { SelectGroup, SelectItem, SelectItemText, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, } from '../__base/select';
@@ -1,5 +1 @@
1
- import { default as Sidebar } from './Sidebar.vue';
2
- export type * from './types';
3
- export { Sidebar };
4
- export { Sidebar as TbSidebar };
5
- export { SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar, } from '../__base/sidebar';
1
+ export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, type SidebarMenuButtonVariants, sidebarMenuButtonVariants, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, type SidebarProps, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar, } from '../__base/sidebar';
@@ -2,5 +2,4 @@ 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 { Table as TbTable, TableLink as TbTableLink };
6
- export { TableCell, TableEmpty, TableHead, TableRow } from '../__base/table';
5
+ export { TableBody, TableCaption, TableCell, TableEmpty, TableFooter, TableHead, TableHeader, TableRow, } from '../__base/table';
package/dist/index.css CHANGED
@@ -199,13 +199,13 @@
199
199
  }
200
200
  }
201
201
 
202
- .loading-icon[data-v-b457b93c] {
202
+ .loading-icon[data-v-bf69e6e9] {
203
203
  animation-duration: 1500ms;
204
204
  animation-timing-function: linear;
205
205
  animation-iteration-count: infinite;
206
- animation-name: spin-b457b93c;
206
+ animation-name: spin-bf69e6e9;
207
207
  }
208
- @keyframes spin-b457b93c {
208
+ @keyframes spin-bf69e6e9 {
209
209
  from {
210
210
  transform: rotate(0deg);
211
211
  }