@tb-dev/vue 0.3.8 → 0.3.10

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 (54) hide show
  1. package/dist/components/__base/combobox/Combobox.vue.d.ts +33 -0
  2. package/dist/components/__base/combobox/ComboboxAnchor.vue.d.ts +22 -0
  3. package/dist/components/__base/combobox/ComboboxEmpty.vue.d.ts +22 -0
  4. package/dist/components/__base/combobox/ComboboxGroup.vue.d.ts +23 -0
  5. package/dist/components/__base/combobox/ComboboxInput.vue.d.ts +26 -0
  6. package/dist/components/__base/combobox/ComboboxItem.vue.d.ts +26 -0
  7. package/dist/components/__base/combobox/ComboboxItemIndicator.vue.d.ts +22 -0
  8. package/dist/components/__base/combobox/ComboboxList.vue.d.ts +53 -0
  9. package/dist/components/__base/combobox/ComboboxSeparator.vue.d.ts +22 -0
  10. package/dist/components/__base/combobox/ComboboxViewport.vue.d.ts +22 -0
  11. package/dist/components/__base/combobox/index.d.ts +11 -0
  12. package/dist/components/__base/context-menu/ContextMenuSubContent.vue.d.ts +4 -4
  13. package/dist/components/__base/dialog/DialogContent.vue.d.ts +2 -2
  14. package/dist/components/__base/dialog/DialogScrollContent.vue.d.ts +2 -2
  15. package/dist/components/__base/dropdown-menu/DropdownMenuSubContent.vue.d.ts +4 -4
  16. package/dist/components/__base/menubar/Menubar.vue.d.ts +26 -0
  17. package/dist/components/__base/menubar/MenubarCheckboxItem.vue.d.ts +28 -0
  18. package/dist/components/__base/menubar/MenubarContent.vue.d.ts +26 -0
  19. package/dist/components/__base/menubar/MenubarGroup.vue.d.ts +18 -0
  20. package/dist/components/__base/menubar/MenubarItem.vue.d.ts +28 -0
  21. package/dist/components/__base/menubar/MenubarLabel.vue.d.ts +23 -0
  22. package/dist/components/__base/menubar/MenubarMenu.vue.d.ts +18 -0
  23. package/dist/components/__base/menubar/MenubarRadioGroup.vue.d.ts +22 -0
  24. package/dist/components/__base/menubar/MenubarRadioItem.vue.d.ts +26 -0
  25. package/dist/components/__base/menubar/MenubarSeparator.vue.d.ts +7 -0
  26. package/dist/components/__base/menubar/MenubarShortcut.vue.d.ts +21 -0
  27. package/dist/components/__base/menubar/MenubarSub.vue.d.ts +25 -0
  28. package/dist/components/__base/menubar/MenubarSubContent.vue.d.ts +54 -0
  29. package/dist/components/__base/menubar/MenubarSubTrigger.vue.d.ts +23 -0
  30. package/dist/components/__base/menubar/MenubarTrigger.vue.d.ts +22 -0
  31. package/dist/components/__base/menubar/index.d.ts +15 -0
  32. package/dist/components/__base/pagination/Pagination.vue.d.ts +29 -0
  33. package/dist/components/__base/pagination/PaginationContent.vue.d.ts +29 -0
  34. package/dist/components/__base/pagination/PaginationEllipsis.vue.d.ts +22 -0
  35. package/dist/components/__base/pagination/PaginationFirst.vue.d.ts +26 -0
  36. package/dist/components/__base/pagination/PaginationItem.vue.d.ts +27 -0
  37. package/dist/components/__base/pagination/PaginationLast.vue.d.ts +26 -0
  38. package/dist/components/__base/pagination/PaginationNext.vue.d.ts +26 -0
  39. package/dist/components/__base/pagination/PaginationPrevious.vue.d.ts +26 -0
  40. package/dist/components/__base/pagination/index.d.ts +8 -0
  41. package/dist/components/__base/popover/PopoverContent.vue.d.ts +2 -2
  42. package/dist/components/__base/sheet/SheetContent.vue.d.ts +2 -2
  43. package/dist/components/__base/switch/Switch.vue.d.ts +26 -0
  44. package/dist/components/__base/switch/index.d.ts +1 -0
  45. package/dist/components/card/Card.vue.d.ts +6 -11
  46. package/dist/components/card/index.d.ts +1 -0
  47. package/dist/components/card/types.d.ts +9 -0
  48. package/dist/components/combobox/index.d.ts +1 -0
  49. package/dist/components/index.d.ts +4 -0
  50. package/dist/components/menubar/index.d.ts +1 -0
  51. package/dist/components/pagination/index.d.ts +1 -0
  52. package/dist/components/switch/index.d.ts +1 -0
  53. package/dist/index.js +1951 -818
  54. package/package.json +1 -1
@@ -0,0 +1,33 @@
1
+ import { ComboboxRootProps } from 'reka-ui';
2
+ type __VLS_Props = ComboboxRootProps;
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ default?(_: {}): any;
7
+ };
8
+ refs: {};
9
+ rootEl: any;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ "update:modelValue": (value: import('reka-ui').AcceptableValue) => any;
14
+ highlight: (payload: {
15
+ ref: HTMLElement;
16
+ value: import('reka-ui').AcceptableValue;
17
+ } | undefined) => any;
18
+ "update:open": (value: boolean) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ "onUpdate:modelValue"?: ((value: import('reka-ui').AcceptableValue) => any) | undefined;
21
+ onHighlight?: ((payload: {
22
+ ref: HTMLElement;
23
+ value: import('reka-ui').AcceptableValue;
24
+ } | undefined) => any) | undefined;
25
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
26
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
27
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
28
+ export default _default;
29
+ type __VLS_WithTemplateSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -0,0 +1,22 @@
1
+ import { ComboboxAnchorProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxAnchorProps & {
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 { ComboboxEmptyProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxEmptyProps & {
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 { ComboboxGroupProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxGroupProps & {
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,26 @@
1
+ import { ComboboxInputProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxInputProps & {
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": (args_0: string) => any;
17
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
18
+ "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
19
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
+ export default _default;
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1,26 @@
1
+ import { ComboboxItemProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxItemProps & {
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: (event: import('reka-ui').ListboxItemSelectEvent<import('reka-ui').AcceptableValue>) => any;
17
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
18
+ onSelect?: ((event: import('reka-ui').ListboxItemSelectEvent<import('reka-ui').AcceptableValue>) => any) | undefined;
19
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
+ export default _default;
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1,22 @@
1
+ import { ComboboxItemIndicatorProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxItemIndicatorProps & {
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,53 @@
1
+ import { ComboboxContentProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxContentProps & {
4
+ class?: HTMLAttributes['class'];
5
+ viewportClass?: HTMLAttributes['class'];
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
+ escapeKeyDown: (event: KeyboardEvent) => any;
18
+ pointerDownOutside: (event: CustomEvent<{
19
+ originalEvent: PointerEvent;
20
+ }>) => any;
21
+ focusOutside: (event: CustomEvent<{
22
+ originalEvent: FocusEvent;
23
+ }>) => any;
24
+ interactOutside: (event: CustomEvent<{
25
+ originalEvent: PointerEvent;
26
+ }> | CustomEvent<{
27
+ originalEvent: FocusEvent;
28
+ }>) => any;
29
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
30
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
31
+ onPointerDownOutside?: ((event: CustomEvent<{
32
+ originalEvent: PointerEvent;
33
+ }>) => any) | undefined;
34
+ onFocusOutside?: ((event: CustomEvent<{
35
+ originalEvent: FocusEvent;
36
+ }>) => any) | undefined;
37
+ onInteractOutside?: ((event: CustomEvent<{
38
+ originalEvent: PointerEvent;
39
+ }> | CustomEvent<{
40
+ originalEvent: FocusEvent;
41
+ }>) => any) | undefined;
42
+ }>, {
43
+ position: "inline" | "popper";
44
+ sideOffset: number;
45
+ align: "end" | "start" | "center";
46
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
47
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
48
+ export default _default;
49
+ type __VLS_WithTemplateSlots<T, S> = T & {
50
+ new (): {
51
+ $slots: S;
52
+ };
53
+ };
@@ -0,0 +1,22 @@
1
+ import { ComboboxSeparatorProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxSeparatorProps & {
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 { ComboboxViewportProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ComboboxViewportProps & {
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,11 @@
1
+ export { default as Combobox } from './Combobox.vue';
2
+ export { default as ComboboxAnchor } from './ComboboxAnchor.vue';
3
+ export { default as ComboboxEmpty } from './ComboboxEmpty.vue';
4
+ export { default as ComboboxGroup } from './ComboboxGroup.vue';
5
+ export { default as ComboboxInput } from './ComboboxInput.vue';
6
+ export { default as ComboboxItem } from './ComboboxItem.vue';
7
+ export { default as ComboboxItemIndicator } from './ComboboxItemIndicator.vue';
8
+ export { default as ComboboxList } from './ComboboxList.vue';
9
+ export { default as ComboboxSeparator } from './ComboboxSeparator.vue';
10
+ export { default as ComboboxViewport } from './ComboboxViewport.vue';
11
+ export { ComboboxCancel, ComboboxTrigger } from 'reka-ui';
@@ -13,8 +13,6 @@ declare function __VLS_template(): {
13
13
  };
14
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
15
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
- entryFocus: (event: Event) => any;
17
- openAutoFocus: (event: Event) => any;
18
16
  escapeKeyDown: (event: KeyboardEvent) => any;
19
17
  pointerDownOutside: (event: CustomEvent<{
20
18
  originalEvent: PointerEvent;
@@ -27,10 +25,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
27
25
  }> | CustomEvent<{
28
26
  originalEvent: FocusEvent;
29
27
  }>) => any;
28
+ entryFocus: (event: Event) => any;
29
+ openAutoFocus: (event: Event) => any;
30
30
  closeAutoFocus: (event: Event) => any;
31
31
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
32
- onEntryFocus?: ((event: Event) => any) | undefined;
33
- onOpenAutoFocus?: ((event: Event) => any) | undefined;
34
32
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
35
33
  onPointerDownOutside?: ((event: CustomEvent<{
36
34
  originalEvent: PointerEvent;
@@ -43,6 +41,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
43
41
  }> | CustomEvent<{
44
42
  originalEvent: FocusEvent;
45
43
  }>) => any) | undefined;
44
+ onEntryFocus?: ((event: Event) => any) | undefined;
45
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
46
46
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
47
47
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
48
48
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -13,7 +13,6 @@ declare function __VLS_template(): {
13
13
  };
14
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
15
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
- openAutoFocus: (event: Event) => any;
17
16
  escapeKeyDown: (event: KeyboardEvent) => any;
18
17
  pointerDownOutside: (event: CustomEvent<{
19
18
  originalEvent: PointerEvent;
@@ -26,9 +25,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
26
25
  }> | CustomEvent<{
27
26
  originalEvent: FocusEvent;
28
27
  }>) => any;
28
+ openAutoFocus: (event: Event) => any;
29
29
  closeAutoFocus: (event: Event) => any;
30
30
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
31
- onOpenAutoFocus?: ((event: Event) => any) | undefined;
32
31
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
33
32
  onPointerDownOutside?: ((event: CustomEvent<{
34
33
  originalEvent: PointerEvent;
@@ -41,6 +40,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
41
40
  }> | CustomEvent<{
42
41
  originalEvent: FocusEvent;
43
42
  }>) => any) | undefined;
43
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
44
44
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
45
45
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
46
46
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -13,7 +13,6 @@ declare function __VLS_template(): {
13
13
  };
14
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
15
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
- openAutoFocus: (event: Event) => any;
17
16
  escapeKeyDown: (event: KeyboardEvent) => any;
18
17
  pointerDownOutside: (event: CustomEvent<{
19
18
  originalEvent: PointerEvent;
@@ -26,9 +25,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
26
25
  }> | CustomEvent<{
27
26
  originalEvent: FocusEvent;
28
27
  }>) => any;
28
+ openAutoFocus: (event: Event) => any;
29
29
  closeAutoFocus: (event: Event) => any;
30
30
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
31
- onOpenAutoFocus?: ((event: Event) => any) | undefined;
32
31
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
33
32
  onPointerDownOutside?: ((event: CustomEvent<{
34
33
  originalEvent: PointerEvent;
@@ -41,6 +40,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
41
40
  }> | CustomEvent<{
42
41
  originalEvent: FocusEvent;
43
42
  }>) => any) | undefined;
43
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
44
44
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
45
45
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
46
46
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -13,8 +13,6 @@ declare function __VLS_template(): {
13
13
  };
14
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
15
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
- entryFocus: (event: Event) => any;
17
- openAutoFocus: (event: Event) => any;
18
16
  escapeKeyDown: (event: KeyboardEvent) => any;
19
17
  pointerDownOutside: (event: CustomEvent<{
20
18
  originalEvent: PointerEvent;
@@ -27,10 +25,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
27
25
  }> | CustomEvent<{
28
26
  originalEvent: FocusEvent;
29
27
  }>) => any;
28
+ entryFocus: (event: Event) => any;
29
+ openAutoFocus: (event: Event) => any;
30
30
  closeAutoFocus: (event: Event) => any;
31
31
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
32
- onEntryFocus?: ((event: Event) => any) | undefined;
33
- onOpenAutoFocus?: ((event: Event) => any) | undefined;
34
32
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
35
33
  onPointerDownOutside?: ((event: CustomEvent<{
36
34
  originalEvent: PointerEvent;
@@ -43,6 +41,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
43
41
  }> | CustomEvent<{
44
42
  originalEvent: FocusEvent;
45
43
  }>) => any) | undefined;
44
+ onEntryFocus?: ((event: Event) => any) | undefined;
45
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
46
46
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
47
47
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
48
48
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -0,0 +1,26 @@
1
+ import { MenubarRootProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = MenubarRootProps & {
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: boolean) => any;
17
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
18
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
19
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
+ export default _default;
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1,28 @@
1
+ import { MenubarCheckboxItemProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = MenubarCheckboxItemProps & {
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: (event: Event) => any;
17
+ "update:modelValue": (payload: boolean) => any;
18
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
19
+ onSelect?: ((event: Event) => any) | undefined;
20
+ "onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
21
+ }>, {}, {}, {}, {}, 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,26 @@
1
+ import { MenubarContentProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = MenubarContentProps & {
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
+ sideOffset: number;
17
+ align: "end" | "start" | "center";
18
+ alignOffset: number;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
+ export default _default;
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1,18 @@
1
+ import { MenubarGroupProps } 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<MenubarGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<MenubarGroupProps> & 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,28 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { MenubarItemProps } from 'reka-ui';
3
+ type __VLS_Props = MenubarItemProps & {
4
+ class?: HTMLAttributes['class'];
5
+ inset?: boolean;
6
+ variant?: 'default' | 'destructive';
7
+ };
8
+ declare function __VLS_template(): {
9
+ attrs: Partial<{}>;
10
+ slots: {
11
+ default?(_: {}): any;
12
+ };
13
+ refs: {};
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: Event) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ onSelect?: ((event: Event) => any) | undefined;
21
+ }>, {}, {}, {}, {}, 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,23 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { MenubarLabelProps } from 'reka-ui';
3
+ type __VLS_Props = MenubarLabelProps & {
4
+ class?: HTMLAttributes['class'];
5
+ inset?: 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, {}, 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,18 @@
1
+ import { MenubarMenuProps } 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<MenubarMenuProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<MenubarMenuProps> & 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 { MenubarRadioGroupProps } 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<MenubarRadioGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "update:modelValue": (payload: string) => any;
13
+ }, string, import('vue').PublicProps, Readonly<MenubarRadioGroupProps> & Readonly<{
14
+ "onUpdate:modelValue"?: ((payload: string) => any) | undefined;
15
+ }>, {}, {}, {}, {}, 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,26 @@
1
+ import { MenubarRadioItemProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = MenubarRadioItemProps & {
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: (event: Event) => any;
17
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
18
+ onSelect?: ((event: Event) => any) | undefined;
19
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
+ export default _default;
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1,7 @@
1
+ import { MenubarSeparatorProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = MenubarSeparatorProps & {
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;