@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,13 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { CalendarRootProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarRootProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ "update:modelValue": (date: import('reka-ui').DateValue | undefined) => any;
8
+ "update:placeholder": (date: import('reka-ui').DateValue) => any;
9
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ "onUpdate:modelValue"?: ((date: import('reka-ui').DateValue | undefined) => any) | undefined;
11
+ "onUpdate:placeholder"?: ((date: import('reka-ui').DateValue) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
+ export default _default;
@@ -0,0 +1,22 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { CalendarCellProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarCellProps & {
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,24 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { CalendarCellTriggerProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarCellTriggerProps & {
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<{}>, {
16
+ as: import('reka-ui').AsTag | import('vue').Component;
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
19
+ export default _default;
20
+ type __VLS_WithTemplateSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
@@ -0,0 +1,22 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { CalendarGridProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarGridProps & {
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 { CalendarGridBodyProps } from 'reka-ui';
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<CalendarGridBodyProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CalendarGridBodyProps> & 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,22 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { CalendarGridHeadProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarGridHeadProps & {
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 { CalendarGridRowProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarGridRowProps & {
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 { CalendarHeadCellProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarHeadCellProps & {
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 { CalendarHeaderProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarHeaderProps & {
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,28 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { CalendarHeadingProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarHeadingProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: Readonly<{
9
+ default: (props: {
10
+ headingValue: string;
11
+ }) => any;
12
+ }> & {
13
+ default: (props: {
14
+ headingValue: string;
15
+ }) => any;
16
+ };
17
+ refs: {};
18
+ rootEl: any;
19
+ };
20
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
+ 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>;
22
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
23
+ export default _default;
24
+ type __VLS_WithTemplateSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -0,0 +1,22 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { CalendarNextProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarNextProps & {
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 { CalendarPrevProps } from 'reka-ui';
3
+ type __VLS_Props = CalendarPrevProps & {
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,12 @@
1
+ export { default as Calendar } from './Calendar.vue';
2
+ export { default as CalendarCell } from './CalendarCell.vue';
3
+ export { default as CalendarCellTrigger } from './CalendarCellTrigger.vue';
4
+ export { default as CalendarGrid } from './CalendarGrid.vue';
5
+ export { default as CalendarGridBody } from './CalendarGridBody.vue';
6
+ export { default as CalendarGridHead } from './CalendarGridHead.vue';
7
+ export { default as CalendarGridRow } from './CalendarGridRow.vue';
8
+ export { default as CalendarHeadCell } from './CalendarHeadCell.vue';
9
+ export { default as CalendarHeader } from './CalendarHeader.vue';
10
+ export { default as CalendarHeading } from './CalendarHeading.vue';
11
+ export { default as CalendarNextButton } from './CalendarNextButton.vue';
12
+ export { default as CalendarPrevButton } from './CalendarPrevButton.vue';
@@ -0,0 +1,40 @@
1
+ import { ListboxRootProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ListboxRootProps & {
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
+ "update:modelValue": (value: import('reka-ui').AcceptableValue) => any;
17
+ highlight: (payload: {
18
+ ref: HTMLElement;
19
+ value: import('reka-ui').AcceptableValue;
20
+ } | undefined) => any;
21
+ entryFocus: (event: CustomEvent<any>) => any;
22
+ leave: (event: Event) => any;
23
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
24
+ "onUpdate:modelValue"?: ((value: import('reka-ui').AcceptableValue) => any) | undefined;
25
+ onHighlight?: ((payload: {
26
+ ref: HTMLElement;
27
+ value: import('reka-ui').AcceptableValue;
28
+ } | undefined) => any) | undefined;
29
+ onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
30
+ onLeave?: ((event: Event) => any) | undefined;
31
+ }>, {
32
+ modelValue: import('reka-ui').AcceptableValue | import('reka-ui').AcceptableValue[];
33
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
34
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
+ export default _default;
36
+ type __VLS_WithTemplateSlots<T, S> = T & {
37
+ new (): {
38
+ $slots: S;
39
+ };
40
+ };
@@ -0,0 +1,29 @@
1
+ import { DialogRootProps } from 'reka-ui';
2
+ type __VLS_Props = DialogRootProps & {
3
+ title?: string;
4
+ description?: string;
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
+ "update:open": (value: boolean) => any;
17
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
18
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
19
+ }>, {
20
+ title: string;
21
+ description: string;
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,22 @@
1
+ import { PrimitiveProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = PrimitiveProps & {
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,23 @@
1
+ import { ListboxGroupProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ListboxGroupProps & {
4
+ class?: HTMLAttributes['class'];
5
+ heading?: string;
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, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
+ export default _default;
19
+ type __VLS_WithTemplateSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
@@ -0,0 +1,7 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { ListboxFilterProps } from 'reka-ui';
3
+ type __VLS_Props = ListboxFilterProps & {
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,30 @@
1
+ import { ListboxItemProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ListboxItemProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {
12
+ itemRef: import('vue').ShallowUnwrapRef<{}> | null;
13
+ };
14
+ rootEl: any;
15
+ };
16
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
+ select: (event: import('reka-ui').ListboxItemSelectEvent<import('reka-ui').AcceptableValue>) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ onSelect?: ((event: import('reka-ui').ListboxItemSelectEvent<import('reka-ui').AcceptableValue>) => any) | undefined;
21
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
22
+ itemRef: import('vue').ShallowUnwrapRef<{}> | null;
23
+ }, 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 { ListboxContentProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ListboxContentProps & {
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 { SeparatorProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SeparatorProps & {
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: HTMLSpanElement;
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, {}, HTMLSpanElement>;
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,90 @@
1
+ import { Ref } from 'vue';
2
+ export { default as Command } from './Command.vue';
3
+ export { default as CommandDialog } from './CommandDialog.vue';
4
+ export { default as CommandEmpty } from './CommandEmpty.vue';
5
+ export { default as CommandGroup } from './CommandGroup.vue';
6
+ export { default as CommandInput } from './CommandInput.vue';
7
+ export { default as CommandItem } from './CommandItem.vue';
8
+ export { default as CommandList } from './CommandList.vue';
9
+ export { default as CommandSeparator } from './CommandSeparator.vue';
10
+ export { default as CommandShortcut } from './CommandShortcut.vue';
11
+ export declare const useCommand: <T extends {
12
+ allItems: Ref<Map<string, string>>;
13
+ allGroups: Ref<Map<string, Set<string>>>;
14
+ filterState: {
15
+ search: string;
16
+ filtered: {
17
+ count: number;
18
+ items: Map<string, number>;
19
+ groups: Set<string>;
20
+ };
21
+ };
22
+ } | null | undefined = {
23
+ allItems: Ref<Map<string, string>>;
24
+ allGroups: Ref<Map<string, Set<string>>>;
25
+ filterState: {
26
+ search: string;
27
+ filtered: {
28
+ count: number;
29
+ items: Map<string, number>;
30
+ groups: Set<string>;
31
+ };
32
+ };
33
+ }>(fallback?: T | undefined) => T extends null ? {
34
+ allItems: Ref<Map<string, string>>;
35
+ allGroups: Ref<Map<string, Set<string>>>;
36
+ filterState: {
37
+ search: string;
38
+ filtered: {
39
+ count: number;
40
+ items: Map<string, number>;
41
+ groups: Set<string>;
42
+ };
43
+ };
44
+ } | null : {
45
+ allItems: Ref<Map<string, string>>;
46
+ allGroups: Ref<Map<string, Set<string>>>;
47
+ filterState: {
48
+ search: string;
49
+ filtered: {
50
+ count: number;
51
+ items: Map<string, number>;
52
+ groups: Set<string>;
53
+ };
54
+ };
55
+ }, provideCommandContext: (contextValue: {
56
+ allItems: Ref<Map<string, string>>;
57
+ allGroups: Ref<Map<string, Set<string>>>;
58
+ filterState: {
59
+ search: string;
60
+ filtered: {
61
+ count: number;
62
+ items: Map<string, number>;
63
+ groups: Set<string>;
64
+ };
65
+ };
66
+ }) => {
67
+ allItems: Ref<Map<string, string>>;
68
+ allGroups: Ref<Map<string, Set<string>>>;
69
+ filterState: {
70
+ search: string;
71
+ filtered: {
72
+ count: number;
73
+ items: Map<string, number>;
74
+ groups: Set<string>;
75
+ };
76
+ };
77
+ };
78
+ export declare const useCommandGroup: <T extends {
79
+ id?: string;
80
+ } | null | undefined = {
81
+ id?: string;
82
+ }>(fallback?: T | undefined) => T extends null ? {
83
+ id?: string;
84
+ } | null : {
85
+ id?: string;
86
+ }, provideCommandGroupContext: (contextValue: {
87
+ id?: string;
88
+ }) => {
89
+ id?: string;
90
+ };
@@ -0,0 +1,34 @@
1
+ import { DrawerRootProps } 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<DrawerRootProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
12
+ "update:open": (open: boolean) => any;
13
+ drag: (percentageDragged: number) => any;
14
+ release: (open: boolean) => any;
15
+ close: () => any;
16
+ "update:activeSnapPoint": (val: string | number) => any;
17
+ animationEnd: (open: boolean) => any;
18
+ }, string, import('vue').PublicProps, Readonly<DrawerRootProps> & Readonly<{
19
+ "onUpdate:open"?: ((open: boolean) => any) | undefined;
20
+ onDrag?: ((percentageDragged: number) => any) | undefined;
21
+ onRelease?: ((open: boolean) => any) | undefined;
22
+ onClose?: (() => any) | undefined;
23
+ "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined;
24
+ onAnimationEnd?: ((open: boolean) => any) | undefined;
25
+ }>, {
26
+ shouldScaleBackground: boolean;
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
+ export default _default;
30
+ type __VLS_WithTemplateSlots<T, S> = T & {
31
+ new (): {
32
+ $slots: S;
33
+ };
34
+ };