@shwfed/nuxt 0.1.49 → 0.1.51

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 (135) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/app.d.vue.ts +35 -54
  3. package/dist/runtime/components/app.vue +528 -100
  4. package/dist/runtime/components/app.vue.d.ts +35 -54
  5. package/dist/runtime/components/logo.d.vue.ts +3 -0
  6. package/dist/runtime/components/logo.vue +58 -0
  7. package/dist/runtime/components/logo.vue.d.ts +3 -0
  8. package/dist/runtime/components/ui/collapsible/Collapsible.d.vue.ts +20 -0
  9. package/dist/runtime/components/ui/collapsible/Collapsible.vue +23 -0
  10. package/dist/runtime/components/ui/collapsible/Collapsible.vue.d.ts +20 -0
  11. package/dist/runtime/components/ui/collapsible/CollapsibleContent.d.vue.ts +14 -0
  12. package/dist/runtime/components/ui/collapsible/CollapsibleContent.vue +17 -0
  13. package/dist/runtime/components/ui/collapsible/CollapsibleContent.vue.d.ts +14 -0
  14. package/dist/runtime/components/ui/collapsible/CollapsibleTrigger.d.vue.ts +14 -0
  15. package/dist/runtime/components/ui/collapsible/CollapsibleTrigger.vue +16 -0
  16. package/dist/runtime/components/ui/collapsible/CollapsibleTrigger.vue.d.ts +14 -0
  17. package/dist/runtime/components/ui/collapsible/index.d.ts +3 -0
  18. package/dist/runtime/components/ui/collapsible/index.js +3 -0
  19. package/dist/runtime/components/ui/field/index.d.ts +1 -1
  20. package/dist/runtime/components/ui/navigation-menu/NavigationMenuContent.vue +1 -1
  21. package/dist/runtime/components/ui/navigation-menu/NavigationMenuIndicator.vue +1 -1
  22. package/dist/runtime/components/ui/navigation-menu/NavigationMenuLink.vue +1 -1
  23. package/dist/runtime/components/ui/sheet/Sheet.d.vue.ts +21 -0
  24. package/dist/runtime/components/ui/sheet/Sheet.vue +20 -0
  25. package/dist/runtime/components/ui/sheet/Sheet.vue.d.ts +21 -0
  26. package/dist/runtime/components/ui/sheet/SheetClose.d.vue.ts +14 -0
  27. package/dist/runtime/components/ui/sheet/SheetClose.vue +16 -0
  28. package/dist/runtime/components/ui/sheet/SheetClose.vue.d.ts +14 -0
  29. package/dist/runtime/components/ui/sheet/SheetContent.d.vue.ts +35 -0
  30. package/dist/runtime/components/ui/sheet/SheetContent.vue +53 -0
  31. package/dist/runtime/components/ui/sheet/SheetContent.vue.d.ts +35 -0
  32. package/dist/runtime/components/ui/sheet/SheetDescription.d.vue.ts +18 -0
  33. package/dist/runtime/components/ui/sheet/SheetDescription.vue +21 -0
  34. package/dist/runtime/components/ui/sheet/SheetDescription.vue.d.ts +18 -0
  35. package/dist/runtime/components/ui/sheet/SheetFooter.d.vue.ts +17 -0
  36. package/dist/runtime/components/ui/sheet/SheetFooter.vue +17 -0
  37. package/dist/runtime/components/ui/sheet/SheetFooter.vue.d.ts +17 -0
  38. package/dist/runtime/components/ui/sheet/SheetHeader.d.vue.ts +17 -0
  39. package/dist/runtime/components/ui/sheet/SheetHeader.vue +15 -0
  40. package/dist/runtime/components/ui/sheet/SheetHeader.vue.d.ts +17 -0
  41. package/dist/runtime/components/ui/sheet/SheetOverlay.d.vue.ts +18 -0
  42. package/dist/runtime/components/ui/sheet/SheetOverlay.vue +22 -0
  43. package/dist/runtime/components/ui/sheet/SheetOverlay.vue.d.ts +18 -0
  44. package/dist/runtime/components/ui/sheet/SheetTitle.d.vue.ts +18 -0
  45. package/dist/runtime/components/ui/sheet/SheetTitle.vue +21 -0
  46. package/dist/runtime/components/ui/sheet/SheetTitle.vue.d.ts +18 -0
  47. package/dist/runtime/components/ui/sheet/SheetTrigger.d.vue.ts +14 -0
  48. package/dist/runtime/components/ui/sheet/SheetTrigger.vue +16 -0
  49. package/dist/runtime/components/ui/sheet/SheetTrigger.vue.d.ts +14 -0
  50. package/dist/runtime/components/ui/sheet/index.d.ts +8 -0
  51. package/dist/runtime/components/ui/sheet/index.js +8 -0
  52. package/dist/runtime/components/ui/sidebar/Sidebar.d.vue.ts +22 -0
  53. package/dist/runtime/components/ui/sidebar/Sidebar.vue +92 -0
  54. package/dist/runtime/components/ui/sidebar/Sidebar.vue.d.ts +22 -0
  55. package/dist/runtime/components/ui/sidebar/SidebarContent.d.vue.ts +17 -0
  56. package/dist/runtime/components/ui/sidebar/SidebarContent.vue +16 -0
  57. package/dist/runtime/components/ui/sidebar/SidebarContent.vue.d.ts +17 -0
  58. package/dist/runtime/components/ui/sidebar/SidebarFooter.d.vue.ts +17 -0
  59. package/dist/runtime/components/ui/sidebar/SidebarFooter.vue +16 -0
  60. package/dist/runtime/components/ui/sidebar/SidebarFooter.vue.d.ts +17 -0
  61. package/dist/runtime/components/ui/sidebar/SidebarGroup.d.vue.ts +17 -0
  62. package/dist/runtime/components/ui/sidebar/SidebarGroup.vue +16 -0
  63. package/dist/runtime/components/ui/sidebar/SidebarGroup.vue.d.ts +17 -0
  64. package/dist/runtime/components/ui/sidebar/SidebarGroupAction.d.vue.ts +18 -0
  65. package/dist/runtime/components/ui/sidebar/SidebarGroupAction.vue +26 -0
  66. package/dist/runtime/components/ui/sidebar/SidebarGroupAction.vue.d.ts +18 -0
  67. package/dist/runtime/components/ui/sidebar/SidebarGroupContent.d.vue.ts +17 -0
  68. package/dist/runtime/components/ui/sidebar/SidebarGroupContent.vue +16 -0
  69. package/dist/runtime/components/ui/sidebar/SidebarGroupContent.vue.d.ts +17 -0
  70. package/dist/runtime/components/ui/sidebar/SidebarGroupLabel.d.vue.ts +18 -0
  71. package/dist/runtime/components/ui/sidebar/SidebarGroupLabel.vue +25 -0
  72. package/dist/runtime/components/ui/sidebar/SidebarGroupLabel.vue.d.ts +18 -0
  73. package/dist/runtime/components/ui/sidebar/SidebarHeader.d.vue.ts +17 -0
  74. package/dist/runtime/components/ui/sidebar/SidebarHeader.vue +16 -0
  75. package/dist/runtime/components/ui/sidebar/SidebarHeader.vue.d.ts +17 -0
  76. package/dist/runtime/components/ui/sidebar/SidebarInput.d.vue.ts +17 -0
  77. package/dist/runtime/components/ui/sidebar/SidebarInput.vue +20 -0
  78. package/dist/runtime/components/ui/sidebar/SidebarInput.vue.d.ts +17 -0
  79. package/dist/runtime/components/ui/sidebar/SidebarInset.d.vue.ts +17 -0
  80. package/dist/runtime/components/ui/sidebar/SidebarInset.vue +19 -0
  81. package/dist/runtime/components/ui/sidebar/SidebarInset.vue.d.ts +17 -0
  82. package/dist/runtime/components/ui/sidebar/SidebarMenu.d.vue.ts +17 -0
  83. package/dist/runtime/components/ui/sidebar/SidebarMenu.vue +16 -0
  84. package/dist/runtime/components/ui/sidebar/SidebarMenu.vue.d.ts +17 -0
  85. package/dist/runtime/components/ui/sidebar/SidebarMenuAction.d.vue.ts +21 -0
  86. package/dist/runtime/components/ui/sidebar/SidebarMenuAction.vue +31 -0
  87. package/dist/runtime/components/ui/sidebar/SidebarMenuAction.vue.d.ts +21 -0
  88. package/dist/runtime/components/ui/sidebar/SidebarMenuBadge.d.vue.ts +17 -0
  89. package/dist/runtime/components/ui/sidebar/SidebarMenuBadge.vue +24 -0
  90. package/dist/runtime/components/ui/sidebar/SidebarMenuBadge.vue.d.ts +17 -0
  91. package/dist/runtime/components/ui/sidebar/SidebarMenuButton.d.vue.ts +24 -0
  92. package/dist/runtime/components/ui/sidebar/SidebarMenuButton.vue +50 -0
  93. package/dist/runtime/components/ui/sidebar/SidebarMenuButton.vue.d.ts +24 -0
  94. package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.d.vue.ts +26 -0
  95. package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.vue +28 -0
  96. package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.vue.d.ts +26 -0
  97. package/dist/runtime/components/ui/sidebar/SidebarMenuItem.d.vue.ts +17 -0
  98. package/dist/runtime/components/ui/sidebar/SidebarMenuItem.vue +16 -0
  99. package/dist/runtime/components/ui/sidebar/SidebarMenuItem.vue.d.ts +17 -0
  100. package/dist/runtime/components/ui/sidebar/SidebarMenuSkeleton.d.vue.ts +8 -0
  101. package/dist/runtime/components/ui/sidebar/SidebarMenuSkeleton.vue +32 -0
  102. package/dist/runtime/components/ui/sidebar/SidebarMenuSkeleton.vue.d.ts +8 -0
  103. package/dist/runtime/components/ui/sidebar/SidebarMenuSub.d.vue.ts +17 -0
  104. package/dist/runtime/components/ui/sidebar/SidebarMenuSub.vue +20 -0
  105. package/dist/runtime/components/ui/sidebar/SidebarMenuSub.vue.d.ts +17 -0
  106. package/dist/runtime/components/ui/sidebar/SidebarMenuSubButton.d.vue.ts +23 -0
  107. package/dist/runtime/components/ui/sidebar/SidebarMenuSubButton.vue +32 -0
  108. package/dist/runtime/components/ui/sidebar/SidebarMenuSubButton.vue.d.ts +23 -0
  109. package/dist/runtime/components/ui/sidebar/SidebarMenuSubItem.d.vue.ts +17 -0
  110. package/dist/runtime/components/ui/sidebar/SidebarMenuSubItem.vue +16 -0
  111. package/dist/runtime/components/ui/sidebar/SidebarMenuSubItem.vue.d.ts +17 -0
  112. package/dist/runtime/components/ui/sidebar/SidebarProvider.d.vue.ts +26 -0
  113. package/dist/runtime/components/ui/sidebar/SidebarProvider.vue +61 -0
  114. package/dist/runtime/components/ui/sidebar/SidebarProvider.vue.d.ts +26 -0
  115. package/dist/runtime/components/ui/sidebar/SidebarRail.d.vue.ts +17 -0
  116. package/dist/runtime/components/ui/sidebar/SidebarRail.vue +30 -0
  117. package/dist/runtime/components/ui/sidebar/SidebarRail.vue.d.ts +17 -0
  118. package/dist/runtime/components/ui/sidebar/SidebarSeparator.d.vue.ts +17 -0
  119. package/dist/runtime/components/ui/sidebar/SidebarSeparator.vue +17 -0
  120. package/dist/runtime/components/ui/sidebar/SidebarSeparator.vue.d.ts +17 -0
  121. package/dist/runtime/components/ui/sidebar/SidebarTrigger.d.vue.ts +7 -0
  122. package/dist/runtime/components/ui/sidebar/SidebarTrigger.vue +23 -0
  123. package/dist/runtime/components/ui/sidebar/SidebarTrigger.vue.d.ts +7 -0
  124. package/dist/runtime/components/ui/sidebar/index.d.ts +37 -0
  125. package/dist/runtime/components/ui/sidebar/index.js +45 -0
  126. package/dist/runtime/components/ui/sidebar/utils.d.ts +56 -0
  127. package/dist/runtime/components/ui/sidebar/utils.js +8 -0
  128. package/dist/runtime/components/ui/skeleton/Skeleton.d.vue.ts +7 -0
  129. package/dist/runtime/components/ui/skeleton/Skeleton.vue +13 -0
  130. package/dist/runtime/components/ui/skeleton/Skeleton.vue.d.ts +7 -0
  131. package/dist/runtime/components/ui/skeleton/index.d.ts +1 -0
  132. package/dist/runtime/components/ui/skeleton/index.js +1 -0
  133. package/dist/runtime/plugins/cel/env.js +9 -1
  134. package/dist/runtime/plugins/cel/index.js +2 -1
  135. package/package.json +1 -1
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { cn } from "../../../utils/cn";
3
+ const props = defineProps({
4
+ class: { type: null, required: false }
5
+ });
6
+ </script>
7
+
8
+ <template>
9
+ <div
10
+ data-slot="sidebar-group"
11
+ data-sidebar="group"
12
+ :class="cn('relative flex w-full min-w-0 flex-col p-2', props.class)"
13
+ >
14
+ <slot />
15
+ </div>
16
+ </template>
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,18 @@
1
+ import type { PrimitiveProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = PrimitiveProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare var __VLS_8: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_8) => any;
9
+ };
10
+ declare const __VLS_base: 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>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,26 @@
1
+ <script setup>
2
+ import { Primitive } from "reka-ui";
3
+ import { cn } from "../../../utils/cn";
4
+ const props = defineProps({
5
+ asChild: { type: Boolean, required: false },
6
+ as: { type: null, required: false },
7
+ class: { type: null, required: false }
8
+ });
9
+ </script>
10
+
11
+ <template>
12
+ <Primitive
13
+ data-slot="sidebar-group-action"
14
+ data-sidebar="group-action"
15
+ :as="as"
16
+ :as-child="asChild"
17
+ :class="cn(
18
+ 'text-zinc-700 hover:bg-zinc-100 hover:text-zinc-900 absolute top-3.5 right-3 flex aspect-square w-5 items-center justify-center rounded-md p-0 outline-hidden transition-transform [&>svg]:size-4 [&>svg]:shrink-0',
19
+ 'after:absolute after:-inset-2 md:after:hidden',
20
+ 'group-data-[collapsible=icon]:hidden',
21
+ props.class
22
+ )"
23
+ >
24
+ <slot />
25
+ </Primitive>
26
+ </template>
@@ -0,0 +1,18 @@
1
+ import type { PrimitiveProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = PrimitiveProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare var __VLS_8: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_8) => any;
9
+ };
10
+ declare const __VLS_base: 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>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { cn } from "../../../utils/cn";
3
+ const props = defineProps({
4
+ class: { type: null, required: false }
5
+ });
6
+ </script>
7
+
8
+ <template>
9
+ <div
10
+ data-slot="sidebar-group-content"
11
+ data-sidebar="group-content"
12
+ :class="cn('w-full text-sm', props.class)"
13
+ >
14
+ <slot />
15
+ </div>
16
+ </template>
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,18 @@
1
+ import type { PrimitiveProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = PrimitiveProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare var __VLS_8: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_8) => any;
9
+ };
10
+ declare const __VLS_base: 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>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,25 @@
1
+ <script setup>
2
+ import { Primitive } from "reka-ui";
3
+ import { cn } from "../../../utils/cn";
4
+ const props = defineProps({
5
+ asChild: { type: Boolean, required: false },
6
+ as: { type: null, required: false },
7
+ class: { type: null, required: false }
8
+ });
9
+ </script>
10
+
11
+ <template>
12
+ <Primitive
13
+ data-slot="sidebar-group-label"
14
+ data-sidebar="group-label"
15
+ :as="as"
16
+ :as-child="asChild"
17
+ :class="cn(
18
+ 'text-zinc-700/70 flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium outline-hidden transition-[margin,opacity] duration-200 ease-linear [&>svg]:size-4 [&>svg]:shrink-0',
19
+ 'group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0',
20
+ props.class
21
+ )"
22
+ >
23
+ <slot />
24
+ </Primitive>
25
+ </template>
@@ -0,0 +1,18 @@
1
+ import type { PrimitiveProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = PrimitiveProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare var __VLS_8: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_8) => any;
9
+ };
10
+ declare const __VLS_base: 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>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { cn } from "../../../utils/cn";
3
+ const props = defineProps({
4
+ class: { type: null, required: false }
5
+ });
6
+ </script>
7
+
8
+ <template>
9
+ <div
10
+ data-slot="sidebar-header"
11
+ data-sidebar="header"
12
+ :class="cn('flex flex-col gap-2 p-2', props.class)"
13
+ >
14
+ <slot />
15
+ </div>
16
+ </template>
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_8: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_8) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,20 @@
1
+ <script setup>
2
+ import { cn } from "../../../utils/cn";
3
+ import { Input } from "../input";
4
+ const props = defineProps({
5
+ class: { type: null, required: false }
6
+ });
7
+ </script>
8
+
9
+ <template>
10
+ <Input
11
+ data-slot="sidebar-input"
12
+ data-sidebar="input"
13
+ :class="cn(
14
+ 'bg-transparent h-8 w-full shadow-none',
15
+ props.class
16
+ )"
17
+ >
18
+ <slot />
19
+ </Input>
20
+ </template>
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_8: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_8) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,19 @@
1
+ <script setup>
2
+ import { cn } from "../../../utils/cn";
3
+ const props = defineProps({
4
+ class: { type: null, required: false }
5
+ });
6
+ </script>
7
+
8
+ <template>
9
+ <main
10
+ data-slot="sidebar-inset"
11
+ :class="cn(
12
+ 'bg-white relative flex w-full flex-1 flex-col',
13
+ 'md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow-sm md:peer-data-[variant=inset]:peer-data-[state=collapsed]:ml-2',
14
+ props.class
15
+ )"
16
+ >
17
+ <slot />
18
+ </main>
19
+ </template>
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { cn } from "../../../utils/cn";
3
+ const props = defineProps({
4
+ class: { type: null, required: false }
5
+ });
6
+ </script>
7
+
8
+ <template>
9
+ <ul
10
+ data-slot="sidebar-menu"
11
+ data-sidebar="menu"
12
+ :class="cn('flex w-full min-w-0 flex-col gap-1', props.class)"
13
+ >
14
+ <slot />
15
+ </ul>
16
+ </template>
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,21 @@
1
+ import type { PrimitiveProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = PrimitiveProps & {
4
+ showOnHover?: boolean;
5
+ class?: HTMLAttributes['class'];
6
+ };
7
+ declare var __VLS_8: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_8) => any;
10
+ };
11
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
+ as: import("reka-ui").AsTag | import("vue").Component;
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,31 @@
1
+ <script setup>
2
+ import { Primitive } from "reka-ui";
3
+ import { cn } from "../../../utils/cn";
4
+ const props = defineProps({
5
+ asChild: { type: Boolean, required: false },
6
+ as: { type: null, required: false, default: "button" },
7
+ showOnHover: { type: Boolean, required: false },
8
+ class: { type: null, required: false }
9
+ });
10
+ </script>
11
+
12
+ <template>
13
+ <Primitive
14
+ data-slot="sidebar-menu-action"
15
+ data-sidebar="menu-action"
16
+ :class="cn(
17
+ 'text-zinc-500 absolute top-1/2 right-0.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 outline-hidden transition-transform [&>svg]:size-4 [&>svg]:shrink-0 cursor-pointer',
18
+ 'after:absolute after:-inset-2 md:after:hidden',
19
+ 'peer-data-[size=sm]/menu-button:top-1',
20
+ 'peer-data-[size=default]/menu-button:top-1.5',
21
+ 'peer-data-[size=lg]/menu-button:top-2.5',
22
+ 'group-data-[collapsible=icon]:hidden',
23
+ showOnHover && 'peer-data-[active=true]/menu-button:text-zinc-900 group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 md:opacity-0',
24
+ props.class
25
+ )"
26
+ :as="as"
27
+ :as-child="asChild"
28
+ >
29
+ <slot />
30
+ </Primitive>
31
+ </template>
@@ -0,0 +1,21 @@
1
+ import type { PrimitiveProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = PrimitiveProps & {
4
+ showOnHover?: boolean;
5
+ class?: HTMLAttributes['class'];
6
+ };
7
+ declare var __VLS_8: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_8) => any;
10
+ };
11
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
+ as: import("reka-ui").AsTag | import("vue").Component;
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,24 @@
1
+ <script setup>
2
+ import { cn } from "../../../utils/cn";
3
+ const props = defineProps({
4
+ class: { type: null, required: false }
5
+ });
6
+ </script>
7
+
8
+ <template>
9
+ <div
10
+ data-slot="sidebar-menu-badge"
11
+ data-sidebar="menu-badge"
12
+ :class="cn(
13
+ 'text-zinc-700 pointer-events-none absolute right-1 flex h-5 min-w-5 items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums select-none',
14
+ 'peer-hover/menu-button:text-zinc-900 peer-data-[active=true]/menu-button:text-zinc-900',
15
+ 'peer-data-[size=sm]/menu-button:top-1',
16
+ 'peer-data-[size=default]/menu-button:top-1.5',
17
+ 'peer-data-[size=lg]/menu-button:top-2.5',
18
+ 'group-data-[collapsible=icon]:hidden',
19
+ props.class
20
+ )"
21
+ >
22
+ <slot />
23
+ </div>
24
+ </template>
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes['class'];
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: 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>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,24 @@
1
+ import type { Component } from 'vue';
2
+ import type { SidebarMenuButtonProps } from './SidebarMenuButtonChild.vue.js';
3
+ type __VLS_Props = SidebarMenuButtonProps & {
4
+ tooltip?: string | Component;
5
+ };
6
+ declare var __VLS_8: {}, __VLS_29: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_8) => any;
9
+ } & {
10
+ default?: (props: typeof __VLS_29) => any;
11
+ };
12
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
+ as: import("reka-ui").AsTag | Component;
14
+ size: "default" | "sm" | "lg" | null;
15
+ variant: "default" | "outline" | null;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
20
+ type __VLS_WithSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };