@una-ui/nuxt 0.16.3-beta.1 → 0.17.1-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt",
3
3
  "configKey": "una",
4
- "version": "0.16.3-beta.1",
4
+ "version": "0.17.1-beta.1",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.0.0"
7
7
  },
package/dist/module.mjs CHANGED
@@ -7,7 +7,7 @@ import '@una-ui/preset/prefixes';
7
7
  import '@una-ui/extractor-vue-script';
8
8
 
9
9
  const name = "@una-ui/nuxt";
10
- const version = "0.16.3-beta.1";
10
+ const version = "0.17.1-beta.1";
11
11
 
12
12
  const module = defineNuxtModule({
13
13
  meta: {
@@ -71,6 +71,13 @@ const module = defineNuxtModule({
71
71
  watch: nuxt.options.dev,
72
72
  priority: 10
73
73
  });
74
+ addComponentsDir({
75
+ path: resolve(runtimeDir, "components/elements", "tooltip"),
76
+ prefix: options.prefix,
77
+ global: options.global,
78
+ watch: nuxt.options.dev,
79
+ priority: 10
80
+ });
74
81
  addComponentsDir({
75
82
  path: resolve(runtimeDir, "components", "forms"),
76
83
  prefix: options.prefix,
@@ -0,0 +1,50 @@
1
+ <script setup lang="ts">
2
+ import { useForwardPropsEmits } from 'radix-vue'
3
+ import type { TooltipRootEmits } from 'radix-vue'
4
+ import type { NTooltipProps } from '../../../types'
5
+
6
+ import TooltipContent from './TooltipContent.vue'
7
+ import TooltipProvider from './TooltipProvider.vue'
8
+ import TooltipRoot from './TooltipRoot.vue'
9
+ import TooltipTrigger from './TooltipTrigger.vue'
10
+
11
+ defineOptions({
12
+ inheritAttrs: false,
13
+ })
14
+
15
+ const props = defineProps<NTooltipProps>()
16
+ const emits = defineEmits<TooltipRootEmits>()
17
+
18
+ const forwarded = useForwardPropsEmits(props, emits)
19
+ </script>
20
+
21
+ <template>
22
+ <TooltipProvider
23
+ v-bind="_tooltipProvider"
24
+ :disabled
25
+ >
26
+ <TooltipRoot
27
+ v-bind="_tooltipRoot"
28
+ >
29
+ <TooltipTrigger
30
+ as-child
31
+ v-bind="_tooltipTrigger"
32
+ >
33
+ <slot />
34
+ </TooltipTrigger>
35
+
36
+ <TooltipContent
37
+ v-if="$slots.content || content"
38
+ v-bind="forwarded._tooltipContent"
39
+ :size
40
+ :tooltip
41
+ :disabled
42
+ :una="forwarded.una?.tooltipContent"
43
+ >
44
+ <slot name="content">
45
+ {{ content }}
46
+ </slot>
47
+ </TooltipContent>
48
+ </TooltipRoot>
49
+ </TooltipProvider>
50
+ </template>
@@ -0,0 +1,42 @@
1
+ <script setup lang="ts">
2
+ import { computed } from 'vue'
3
+ import { TooltipContent, TooltipPortal, useForwardPropsEmits } from 'radix-vue'
4
+ import type { TooltipContentEmits } from 'radix-vue'
5
+ import { cn } from '../../../utils'
6
+ import type { NTooltipContentProps } from '../../../types'
7
+
8
+ defineOptions({
9
+ inheritAttrs: false,
10
+ })
11
+
12
+ const props = withDefaults(defineProps<NTooltipContentProps>(), {
13
+ sideOffset: 4,
14
+ tooltip: 'black',
15
+ })
16
+
17
+ const emits = defineEmits<TooltipContentEmits>()
18
+
19
+ const delegatedProps = computed(() => {
20
+ const { class: _, ...delegated } = props
21
+
22
+ return delegated
23
+ })
24
+
25
+ const forwarded = useForwardPropsEmits(delegatedProps, emits)
26
+ </script>
27
+
28
+ <template>
29
+ <TooltipPortal>
30
+ <TooltipContent
31
+ v-bind="{ ...forwarded, ...$attrs }"
32
+ :class="cn(
33
+ 'tooltip-content',
34
+ props.class,
35
+ props.una?.tooltipContent,
36
+ )"
37
+ :tooltip
38
+ >
39
+ <slot />
40
+ </TooltipContent>
41
+ </TooltipPortal>
42
+ </template>
@@ -0,0 +1,14 @@
1
+ <script setup lang="ts">
2
+ import { TooltipProvider } from 'radix-vue'
3
+ import type { NTooltipProviderProps } from '../../../types'
4
+
5
+ const props = withDefaults(defineProps<NTooltipProviderProps>(), {
6
+ delayDuration: 600,
7
+ })
8
+ </script>
9
+
10
+ <template>
11
+ <TooltipProvider v-bind="props">
12
+ <slot />
13
+ </TooltipProvider>
14
+ </template>
@@ -0,0 +1,16 @@
1
+ <script setup lang="ts">
2
+ import { TooltipRoot, useForwardPropsEmits } from 'radix-vue'
3
+ import type { TooltipRootEmits } from 'radix-vue'
4
+ import type { NTooltipRootProps } from '../../../types'
5
+
6
+ const props = defineProps<NTooltipRootProps>()
7
+ const emits = defineEmits<TooltipRootEmits>()
8
+
9
+ const forwarded = useForwardPropsEmits(props, emits)
10
+ </script>
11
+
12
+ <template>
13
+ <TooltipRoot v-bind="forwarded">
14
+ <slot />
15
+ </TooltipRoot>
16
+ </template>
@@ -0,0 +1,12 @@
1
+ <script setup lang="ts">
2
+ import { TooltipTrigger } from 'radix-vue'
3
+ import type { NTooltipTriggerProps } from '../../../types'
4
+
5
+ const props = defineProps<NTooltipTriggerProps>()
6
+ </script>
7
+
8
+ <template>
9
+ <TooltipTrigger v-bind="props">
10
+ <slot />
11
+ </TooltipTrigger>
12
+ </template>
@@ -15,8 +15,8 @@ export function useUnaSettings() {
15
15
  };
16
16
  const settings = useStorage("una-settings", defaultSettings);
17
17
  watchEffect(() => {
18
- settings.value.primaryColors = getPrimaryColors(settings.value.primary);
19
- settings.value.grayColors = getGrayColors(settings.value.gray);
18
+ settings.value.primaryColors = getPrimaryColors(settings.value.primary || una.primary);
19
+ settings.value.grayColors = getGrayColors(settings.value.gray || una.gray);
20
20
  });
21
21
  function reset() {
22
22
  settings.value.primary = defaultSettings.primary;
@@ -27,6 +27,7 @@ export * from './table.js';
27
27
  export * from './dropdown-menu.js';
28
28
  export * from './label.js';
29
29
  export * from './popover.js';
30
+ export * from './tooltip.js';
30
31
  export interface Colors {
31
32
  [key: string]: string;
32
33
  }
@@ -44,10 +45,10 @@ export interface ColorPalette {
44
45
  950: string;
45
46
  }
46
47
  export interface UnaSettings {
47
- primaryColors: Colors;
48
- grayColors: Colors;
49
- primary: string;
50
- gray: string;
51
- fontSize: number;
52
- radius: number;
48
+ primaryColors?: Colors;
49
+ grayColors?: Colors;
50
+ primary?: string;
51
+ gray?: string;
52
+ fontSize?: number;
53
+ radius?: number;
53
54
  }
@@ -27,3 +27,4 @@ export * from "./table.js";
27
27
  export * from "./dropdown-menu.js";
28
28
  export * from "./label.js";
29
29
  export * from "./popover.js";
30
+ export * from "./tooltip.js";
@@ -0,0 +1,62 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ import type { TooltipContentProps, TooltipProviderProps, TooltipRootProps, TooltipTriggerProps } from 'radix-vue';
3
+ import type { NButtonProps } from './button.js';
4
+ interface BaseExtensions {
5
+ class?: HTMLAttributes['class'];
6
+ size?: HTMLAttributes['class'];
7
+ }
8
+ type TriggerExtensions = NButtonProps & TooltipTriggerProps;
9
+ type ContentExtensions = BaseExtensions & TooltipContentProps;
10
+ export interface NTooltipProps extends BaseExtensions {
11
+ /**
12
+ * Disable the tooltip.
13
+ */
14
+ disabled?: boolean;
15
+ /**
16
+ * Add a content of the tooltip.
17
+ */
18
+ content?: string;
19
+ /**
20
+ * Allows you to add `UnaUI` tooltip preset properties,
21
+ * Think of it as a shortcut for adding options or variants to the preset if available.
22
+ *
23
+ * @see https://github.com/una-ui/una-ui/blob/main/packages/preset/src/_shortcuts/tooltip.ts
24
+ * @example
25
+ * tooltip="green"
26
+ */
27
+ tooltip?: HTMLAttributes['class'];
28
+ _tooltipProvider?: Partial<NTooltipProviderProps>;
29
+ _tooltipRoot?: Partial<NTooltipRootProps>;
30
+ _tooltipTrigger?: Partial<NTooltipTriggerProps>;
31
+ _tooltipContent?: Partial<NTooltipContentProps>;
32
+ una?: NTooltipUnaProps;
33
+ }
34
+ export interface NTooltipRootProps extends TooltipRootProps {
35
+ 'onUpdate:open'?: (value: boolean) => void;
36
+ }
37
+ export interface NTooltipProviderProps extends TooltipProviderProps {
38
+ }
39
+ export interface NTooltipTriggerProps extends TriggerExtensions {
40
+ }
41
+ export interface NTooltipContentProps extends ContentExtensions {
42
+ /**
43
+ * Allows you to add `UnaUI` tooltip preset properties,
44
+ * Think of it as a shortcut for adding options or variants to the preset if available.
45
+ *
46
+ * @see https://github.com/una-ui/una-ui/blob/main/packages/preset/src/_shortcuts/tooltip.ts
47
+ * @example
48
+ * tooltip="green"
49
+ */
50
+ tooltip?: HTMLAttributes['class'];
51
+ /**
52
+ * `UnaUI` preset configuration
53
+ *
54
+ * @see https://github.com/una-ui/una-ui/blob/main/packages/preset/src/_shortcuts/tooltip.ts
55
+ */
56
+ una?: NTooltipUnaProps['tooltipContent'];
57
+ }
58
+ interface NTooltipUnaProps {
59
+ /** CSS class for the tooltip content */
60
+ tooltipContent?: HTMLAttributes['class'];
61
+ }
62
+ export {};
File without changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@una-ui/nuxt",
3
3
  "type": "module",
4
- "version": "0.16.3-beta.1",
4
+ "version": "0.17.1-beta.1",
5
5
  "description": "Nuxt module for @una-ui",
6
6
  "author": "Phojie Rengel <phojrengel@gmail.com>",
7
7
  "license": "MIT",
@@ -49,8 +49,8 @@
49
49
  "typescript": "^5.5.4",
50
50
  "unocss": "^0.62.3",
51
51
  "unocss-preset-animations": "^1.1.0",
52
- "@una-ui/extractor-vue-script": "^0.16.3-beta.1",
53
- "@una-ui/preset": "^0.16.3-beta.1"
52
+ "@una-ui/extractor-vue-script": "^0.17.1-beta.1",
53
+ "@una-ui/preset": "^0.17.1-beta.1"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@nuxt/module-builder": "^0.8.1",
@@ -4,6 +4,7 @@ type IslandComponent<T extends DefineComponent> = T & DefineComponent<{}, {refre
4
4
  interface _GlobalComponents {
5
5
  'Accordion': typeof import("../components/Accordion.vue")['default']
6
6
  'Breadcrumb': typeof import("../components/Breadcrumb.vue")['default']
7
+ 'Calendar': typeof import("../components/Calendar.vue")['default']
7
8
  'Card': typeof import("../components/Card.vue")['default']
8
9
  'ColorMode': typeof import("../components/ColorMode.vue")['default']
9
10
  'DropdownMenu': typeof import("../components/DropdownMenu.vue")['default']
@@ -35,6 +36,18 @@ interface _GlobalComponents {
35
36
  'NProgress': typeof import("../../src/runtime/components/elements/Progress.vue")['default']
36
37
  'NSeparator': typeof import("../../src/runtime/components/elements/Separator.vue")['default']
37
38
  'NSkeleton': typeof import("../../src/runtime/components/elements/Skeleton.vue")['default']
39
+ 'NCalendar': typeof import("../../src/runtime/components/elements/calendar/Calendar.vue")['default']
40
+ 'NCalendarCell': typeof import("../../src/runtime/components/elements/calendar/CalendarCell.vue")['default']
41
+ 'NCalendarCellTrigger': typeof import("../../src/runtime/components/elements/calendar/CalendarCellTrigger.vue")['default']
42
+ 'NCalendarGrid': typeof import("../../src/runtime/components/elements/calendar/CalendarGrid.vue")['default']
43
+ 'NCalendarGridBody': typeof import("../../src/runtime/components/elements/calendar/CalendarGridBody.vue")['default']
44
+ 'NCalendarGridHead': typeof import("../../src/runtime/components/elements/calendar/CalendarGridHead.vue")['default']
45
+ 'NCalendarGridRow': typeof import("../../src/runtime/components/elements/calendar/CalendarGridRow.vue")['default']
46
+ 'NCalendarHeadCell': typeof import("../../src/runtime/components/elements/calendar/CalendarHeadCell.vue")['default']
47
+ 'NCalendarHeader': typeof import("../../src/runtime/components/elements/calendar/CalendarHeader.vue")['default']
48
+ 'NCalendarHeading': typeof import("../../src/runtime/components/elements/calendar/CalendarHeading.vue")['default']
49
+ 'NCalendarNextButton': typeof import("../../src/runtime/components/elements/calendar/CalendarNextButton.vue")['default']
50
+ 'NCalendarPrevButton': typeof import("../../src/runtime/components/elements/calendar/CalendarPrevButton.vue")['default']
38
51
  'NCard': typeof import("../../src/runtime/components/elements/card/Card.vue")['default']
39
52
  'NCardAbout': typeof import("../../src/runtime/components/elements/card/CardAbout.vue")['default']
40
53
  'NCardContent': typeof import("../../src/runtime/components/elements/card/CardContent.vue")['default']
@@ -138,17 +151,8 @@ interface _GlobalComponents {
138
151
  'NAvatarImage': typeof import("radix-vue")['AvatarImage']
139
152
  'NAvatarFallback': typeof import("radix-vue")['AvatarFallback']
140
153
  'NCalendarRoot': typeof import("radix-vue")['CalendarRoot']
141
- 'NCalendarHeader': typeof import("radix-vue")['CalendarHeader']
142
- 'NCalendarHeading': typeof import("radix-vue")['CalendarHeading']
143
- 'NCalendarGrid': typeof import("radix-vue")['CalendarGrid']
144
- 'NCalendarCell': typeof import("radix-vue")['CalendarCell']
145
- 'NCalendarHeadCell': typeof import("radix-vue")['CalendarHeadCell']
146
154
  'NCalendarNext': typeof import("radix-vue")['CalendarNext']
147
155
  'NCalendarPrev': typeof import("radix-vue")['CalendarPrev']
148
- 'NCalendarGridHead': typeof import("radix-vue")['CalendarGridHead']
149
- 'NCalendarGridBody': typeof import("radix-vue")['CalendarGridBody']
150
- 'NCalendarGridRow': typeof import("radix-vue")['CalendarGridRow']
151
- 'NCalendarCellTrigger': typeof import("radix-vue")['CalendarCellTrigger']
152
156
  'NCheckboxRoot': typeof import("radix-vue")['CheckboxRoot']
153
157
  'NCheckboxIndicator': typeof import("radix-vue")['CheckboxIndicator']
154
158
  'NCollapsibleRoot': typeof import("radix-vue")['CollapsibleRoot']
@@ -398,6 +402,7 @@ interface _GlobalComponents {
398
402
  'NuxtRouteAnnouncer': IslandComponent<typeof import("../../../../node_modules/.pnpm/nuxt@3.13.1_@parcel+watcher@2.4.1_@types+node@20.16.5_eslint@8.57.0_ioredis@5.4.1_magicast@0._woeqmf5gwh7dxfpxwjld7sf7pm/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
399
403
  'LazyAccordion': typeof import("../components/Accordion.vue")['default']
400
404
  'LazyBreadcrumb': typeof import("../components/Breadcrumb.vue")['default']
405
+ 'LazyCalendar': typeof import("../components/Calendar.vue")['default']
401
406
  'LazyCard': typeof import("../components/Card.vue")['default']
402
407
  'LazyColorMode': typeof import("../components/ColorMode.vue")['default']
403
408
  'LazyDropdownMenu': typeof import("../components/DropdownMenu.vue")['default']
@@ -429,6 +434,18 @@ interface _GlobalComponents {
429
434
  'LazyNProgress': typeof import("../../src/runtime/components/elements/Progress.vue")['default']
430
435
  'LazyNSeparator': typeof import("../../src/runtime/components/elements/Separator.vue")['default']
431
436
  'LazyNSkeleton': typeof import("../../src/runtime/components/elements/Skeleton.vue")['default']
437
+ 'LazyNCalendar': typeof import("../../src/runtime/components/elements/calendar/Calendar.vue")['default']
438
+ 'LazyNCalendarCell': typeof import("../../src/runtime/components/elements/calendar/CalendarCell.vue")['default']
439
+ 'LazyNCalendarCellTrigger': typeof import("../../src/runtime/components/elements/calendar/CalendarCellTrigger.vue")['default']
440
+ 'LazyNCalendarGrid': typeof import("../../src/runtime/components/elements/calendar/CalendarGrid.vue")['default']
441
+ 'LazyNCalendarGridBody': typeof import("../../src/runtime/components/elements/calendar/CalendarGridBody.vue")['default']
442
+ 'LazyNCalendarGridHead': typeof import("../../src/runtime/components/elements/calendar/CalendarGridHead.vue")['default']
443
+ 'LazyNCalendarGridRow': typeof import("../../src/runtime/components/elements/calendar/CalendarGridRow.vue")['default']
444
+ 'LazyNCalendarHeadCell': typeof import("../../src/runtime/components/elements/calendar/CalendarHeadCell.vue")['default']
445
+ 'LazyNCalendarHeader': typeof import("../../src/runtime/components/elements/calendar/CalendarHeader.vue")['default']
446
+ 'LazyNCalendarHeading': typeof import("../../src/runtime/components/elements/calendar/CalendarHeading.vue")['default']
447
+ 'LazyNCalendarNextButton': typeof import("../../src/runtime/components/elements/calendar/CalendarNextButton.vue")['default']
448
+ 'LazyNCalendarPrevButton': typeof import("../../src/runtime/components/elements/calendar/CalendarPrevButton.vue")['default']
432
449
  'LazyNCard': typeof import("../../src/runtime/components/elements/card/Card.vue")['default']
433
450
  'LazyNCardAbout': typeof import("../../src/runtime/components/elements/card/CardAbout.vue")['default']
434
451
  'LazyNCardContent': typeof import("../../src/runtime/components/elements/card/CardContent.vue")['default']
@@ -532,17 +549,8 @@ interface _GlobalComponents {
532
549
  'LazyNAvatarImage': typeof import("radix-vue")['AvatarImage']
533
550
  'LazyNAvatarFallback': typeof import("radix-vue")['AvatarFallback']
534
551
  'LazyNCalendarRoot': typeof import("radix-vue")['CalendarRoot']
535
- 'LazyNCalendarHeader': typeof import("radix-vue")['CalendarHeader']
536
- 'LazyNCalendarHeading': typeof import("radix-vue")['CalendarHeading']
537
- 'LazyNCalendarGrid': typeof import("radix-vue")['CalendarGrid']
538
- 'LazyNCalendarCell': typeof import("radix-vue")['CalendarCell']
539
- 'LazyNCalendarHeadCell': typeof import("radix-vue")['CalendarHeadCell']
540
552
  'LazyNCalendarNext': typeof import("radix-vue")['CalendarNext']
541
553
  'LazyNCalendarPrev': typeof import("radix-vue")['CalendarPrev']
542
- 'LazyNCalendarGridHead': typeof import("radix-vue")['CalendarGridHead']
543
- 'LazyNCalendarGridBody': typeof import("radix-vue")['CalendarGridBody']
544
- 'LazyNCalendarGridRow': typeof import("radix-vue")['CalendarGridRow']
545
- 'LazyNCalendarCellTrigger': typeof import("radix-vue")['CalendarCellTrigger']
546
554
  'LazyNCheckboxRoot': typeof import("radix-vue")['CheckboxRoot']
547
555
  'LazyNCheckboxIndicator': typeof import("radix-vue")['CheckboxIndicator']
548
556
  'LazyNCollapsibleRoot': typeof import("radix-vue")['CollapsibleRoot']
@@ -798,6 +806,7 @@ declare module 'vue' {
798
806
 
799
807
  export const Accordion: typeof import("../components/Accordion.vue")['default']
800
808
  export const Breadcrumb: typeof import("../components/Breadcrumb.vue")['default']
809
+ export const Calendar: typeof import("../components/Calendar.vue")['default']
801
810
  export const Card: typeof import("../components/Card.vue")['default']
802
811
  export const ColorMode: typeof import("../components/ColorMode.vue")['default']
803
812
  export const DropdownMenu: typeof import("../components/DropdownMenu.vue")['default']
@@ -829,6 +838,18 @@ export const NLink: typeof import("../../src/runtime/components/elements/Link.vu
829
838
  export const NProgress: typeof import("../../src/runtime/components/elements/Progress.vue")['default']
830
839
  export const NSeparator: typeof import("../../src/runtime/components/elements/Separator.vue")['default']
831
840
  export const NSkeleton: typeof import("../../src/runtime/components/elements/Skeleton.vue")['default']
841
+ export const NCalendar: typeof import("../../src/runtime/components/elements/calendar/Calendar.vue")['default']
842
+ export const NCalendarCell: typeof import("../../src/runtime/components/elements/calendar/CalendarCell.vue")['default']
843
+ export const NCalendarCellTrigger: typeof import("../../src/runtime/components/elements/calendar/CalendarCellTrigger.vue")['default']
844
+ export const NCalendarGrid: typeof import("../../src/runtime/components/elements/calendar/CalendarGrid.vue")['default']
845
+ export const NCalendarGridBody: typeof import("../../src/runtime/components/elements/calendar/CalendarGridBody.vue")['default']
846
+ export const NCalendarGridHead: typeof import("../../src/runtime/components/elements/calendar/CalendarGridHead.vue")['default']
847
+ export const NCalendarGridRow: typeof import("../../src/runtime/components/elements/calendar/CalendarGridRow.vue")['default']
848
+ export const NCalendarHeadCell: typeof import("../../src/runtime/components/elements/calendar/CalendarHeadCell.vue")['default']
849
+ export const NCalendarHeader: typeof import("../../src/runtime/components/elements/calendar/CalendarHeader.vue")['default']
850
+ export const NCalendarHeading: typeof import("../../src/runtime/components/elements/calendar/CalendarHeading.vue")['default']
851
+ export const NCalendarNextButton: typeof import("../../src/runtime/components/elements/calendar/CalendarNextButton.vue")['default']
852
+ export const NCalendarPrevButton: typeof import("../../src/runtime/components/elements/calendar/CalendarPrevButton.vue")['default']
832
853
  export const NCard: typeof import("../../src/runtime/components/elements/card/Card.vue")['default']
833
854
  export const NCardAbout: typeof import("../../src/runtime/components/elements/card/CardAbout.vue")['default']
834
855
  export const NCardContent: typeof import("../../src/runtime/components/elements/card/CardContent.vue")['default']
@@ -932,17 +953,8 @@ export const NAvatarRoot: typeof import("radix-vue")['AvatarRoot']
932
953
  export const NAvatarImage: typeof import("radix-vue")['AvatarImage']
933
954
  export const NAvatarFallback: typeof import("radix-vue")['AvatarFallback']
934
955
  export const NCalendarRoot: typeof import("radix-vue")['CalendarRoot']
935
- export const NCalendarHeader: typeof import("radix-vue")['CalendarHeader']
936
- export const NCalendarHeading: typeof import("radix-vue")['CalendarHeading']
937
- export const NCalendarGrid: typeof import("radix-vue")['CalendarGrid']
938
- export const NCalendarCell: typeof import("radix-vue")['CalendarCell']
939
- export const NCalendarHeadCell: typeof import("radix-vue")['CalendarHeadCell']
940
956
  export const NCalendarNext: typeof import("radix-vue")['CalendarNext']
941
957
  export const NCalendarPrev: typeof import("radix-vue")['CalendarPrev']
942
- export const NCalendarGridHead: typeof import("radix-vue")['CalendarGridHead']
943
- export const NCalendarGridBody: typeof import("radix-vue")['CalendarGridBody']
944
- export const NCalendarGridRow: typeof import("radix-vue")['CalendarGridRow']
945
- export const NCalendarCellTrigger: typeof import("radix-vue")['CalendarCellTrigger']
946
958
  export const NCheckboxRoot: typeof import("radix-vue")['CheckboxRoot']
947
959
  export const NCheckboxIndicator: typeof import("radix-vue")['CheckboxIndicator']
948
960
  export const NCollapsibleRoot: typeof import("radix-vue")['CollapsibleRoot']
@@ -1192,6 +1204,7 @@ export const NuxtIsland: typeof import("../../../../node_modules/.pnpm/nuxt@3.13
1192
1204
  export const NuxtRouteAnnouncer: IslandComponent<typeof import("../../../../node_modules/.pnpm/nuxt@3.13.1_@parcel+watcher@2.4.1_@types+node@20.16.5_eslint@8.57.0_ioredis@5.4.1_magicast@0._woeqmf5gwh7dxfpxwjld7sf7pm/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
1193
1205
  export const LazyAccordion: typeof import("../components/Accordion.vue")['default']
1194
1206
  export const LazyBreadcrumb: typeof import("../components/Breadcrumb.vue")['default']
1207
+ export const LazyCalendar: typeof import("../components/Calendar.vue")['default']
1195
1208
  export const LazyCard: typeof import("../components/Card.vue")['default']
1196
1209
  export const LazyColorMode: typeof import("../components/ColorMode.vue")['default']
1197
1210
  export const LazyDropdownMenu: typeof import("../components/DropdownMenu.vue")['default']
@@ -1223,6 +1236,18 @@ export const LazyNLink: typeof import("../../src/runtime/components/elements/Lin
1223
1236
  export const LazyNProgress: typeof import("../../src/runtime/components/elements/Progress.vue")['default']
1224
1237
  export const LazyNSeparator: typeof import("../../src/runtime/components/elements/Separator.vue")['default']
1225
1238
  export const LazyNSkeleton: typeof import("../../src/runtime/components/elements/Skeleton.vue")['default']
1239
+ export const LazyNCalendar: typeof import("../../src/runtime/components/elements/calendar/Calendar.vue")['default']
1240
+ export const LazyNCalendarCell: typeof import("../../src/runtime/components/elements/calendar/CalendarCell.vue")['default']
1241
+ export const LazyNCalendarCellTrigger: typeof import("../../src/runtime/components/elements/calendar/CalendarCellTrigger.vue")['default']
1242
+ export const LazyNCalendarGrid: typeof import("../../src/runtime/components/elements/calendar/CalendarGrid.vue")['default']
1243
+ export const LazyNCalendarGridBody: typeof import("../../src/runtime/components/elements/calendar/CalendarGridBody.vue")['default']
1244
+ export const LazyNCalendarGridHead: typeof import("../../src/runtime/components/elements/calendar/CalendarGridHead.vue")['default']
1245
+ export const LazyNCalendarGridRow: typeof import("../../src/runtime/components/elements/calendar/CalendarGridRow.vue")['default']
1246
+ export const LazyNCalendarHeadCell: typeof import("../../src/runtime/components/elements/calendar/CalendarHeadCell.vue")['default']
1247
+ export const LazyNCalendarHeader: typeof import("../../src/runtime/components/elements/calendar/CalendarHeader.vue")['default']
1248
+ export const LazyNCalendarHeading: typeof import("../../src/runtime/components/elements/calendar/CalendarHeading.vue")['default']
1249
+ export const LazyNCalendarNextButton: typeof import("../../src/runtime/components/elements/calendar/CalendarNextButton.vue")['default']
1250
+ export const LazyNCalendarPrevButton: typeof import("../../src/runtime/components/elements/calendar/CalendarPrevButton.vue")['default']
1226
1251
  export const LazyNCard: typeof import("../../src/runtime/components/elements/card/Card.vue")['default']
1227
1252
  export const LazyNCardAbout: typeof import("../../src/runtime/components/elements/card/CardAbout.vue")['default']
1228
1253
  export const LazyNCardContent: typeof import("../../src/runtime/components/elements/card/CardContent.vue")['default']
@@ -1326,17 +1351,8 @@ export const LazyNAvatarRoot: typeof import("radix-vue")['AvatarRoot']
1326
1351
  export const LazyNAvatarImage: typeof import("radix-vue")['AvatarImage']
1327
1352
  export const LazyNAvatarFallback: typeof import("radix-vue")['AvatarFallback']
1328
1353
  export const LazyNCalendarRoot: typeof import("radix-vue")['CalendarRoot']
1329
- export const LazyNCalendarHeader: typeof import("radix-vue")['CalendarHeader']
1330
- export const LazyNCalendarHeading: typeof import("radix-vue")['CalendarHeading']
1331
- export const LazyNCalendarGrid: typeof import("radix-vue")['CalendarGrid']
1332
- export const LazyNCalendarCell: typeof import("radix-vue")['CalendarCell']
1333
- export const LazyNCalendarHeadCell: typeof import("radix-vue")['CalendarHeadCell']
1334
1354
  export const LazyNCalendarNext: typeof import("radix-vue")['CalendarNext']
1335
1355
  export const LazyNCalendarPrev: typeof import("radix-vue")['CalendarPrev']
1336
- export const LazyNCalendarGridHead: typeof import("radix-vue")['CalendarGridHead']
1337
- export const LazyNCalendarGridBody: typeof import("radix-vue")['CalendarGridBody']
1338
- export const LazyNCalendarGridRow: typeof import("radix-vue")['CalendarGridRow']
1339
- export const LazyNCalendarCellTrigger: typeof import("radix-vue")['CalendarCellTrigger']
1340
1356
  export const LazyNCheckboxRoot: typeof import("radix-vue")['CheckboxRoot']
1341
1357
  export const LazyNCheckboxIndicator: typeof import("radix-vue")['CheckboxIndicator']
1342
1358
  export const LazyNCollapsibleRoot: typeof import("radix-vue")['CollapsibleRoot']
@@ -1,7 +1,7 @@
1
1
  // Generated by nuxi
2
2
  /// <reference types="../src/module" />
3
- /// <reference types="@nuxt/telemetry" />
4
3
  /// <reference types="@nuxt/devtools" />
4
+ /// <reference types="@nuxt/telemetry" />
5
5
  /// <reference types="nuxt" />
6
6
  /// <reference path="types/app-defaults.d.ts" />
7
7
  /// <reference path="types/plugins.d.ts" />