@falcondev-oss/nuxt-layers-base 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.nuxt/app.config.mjs +317 -0
- package/.nuxt/components.d.ts +332 -0
- package/.nuxt/imports.d.ts +61 -0
- package/.nuxt/manifest/meta/24fb5e89-93fb-44cb-bbff-2a13f165c1e8.json +1 -0
- package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
- package/.nuxt/nuxt-icon-server-bundle.mjs +14 -0
- package/.nuxt/nuxt.d.ts +24 -0
- package/.nuxt/nuxt.node.d.ts +14 -0
- package/.nuxt/nuxt.shared.d.ts +5 -0
- package/.nuxt/schema/nuxt.schema.d.ts +210 -0
- package/.nuxt/schema/nuxt.schema.json +263 -0
- package/.nuxt/tsconfig.app.json +217 -0
- package/.nuxt/tsconfig.json +219 -0
- package/.nuxt/tsconfig.node.json +114 -0
- package/.nuxt/tsconfig.server.json +140 -0
- package/.nuxt/tsconfig.shared.json +139 -0
- package/.nuxt/types/app.config.d.ts +331 -0
- package/.nuxt/types/build.d.ts +24 -0
- package/.nuxt/types/builder-env.d.ts +1 -0
- package/.nuxt/types/components.d.ts +337 -0
- package/.nuxt/types/imports.d.ts +906 -0
- package/.nuxt/types/layouts.d.ts +7 -0
- package/.nuxt/types/middleware.d.ts +7 -0
- package/.nuxt/types/modules.d.ts +159 -0
- package/.nuxt/types/nitro-config.d.ts +14 -0
- package/.nuxt/types/nitro-imports.d.ts +141 -0
- package/.nuxt/types/nitro-middleware.d.ts +11 -0
- package/.nuxt/types/nitro-nuxt.d.ts +61 -0
- package/.nuxt/types/nitro-routes.d.ts +17 -0
- package/.nuxt/types/nitro.d.ts +3 -0
- package/.nuxt/types/plugins.d.ts +35 -0
- package/.nuxt/types/runtime-config.d.ts +36 -0
- package/.nuxt/types/ui.d.ts +36 -0
- package/.nuxt/types/vue-shim.d.ts +0 -0
- package/.nuxt/ui/accordion.ts +20 -0
- package/.nuxt/ui/alert.ts +264 -0
- package/.nuxt/ui/auth-form.ts +20 -0
- package/.nuxt/ui/avatar-group.ts +52 -0
- package/.nuxt/ui/avatar.ts +54 -0
- package/.nuxt/ui/badge.ts +263 -0
- package/.nuxt/ui/banner.ts +108 -0
- package/.nuxt/ui/blog-post.ts +143 -0
- package/.nuxt/ui/blog-posts.ts +9 -0
- package/.nuxt/ui/breadcrumb.ts +45 -0
- package/.nuxt/ui/button.ts +378 -0
- package/.nuxt/ui/calendar.ts +315 -0
- package/.nuxt/ui/card.ts +34 -0
- package/.nuxt/ui/carousel.ts +38 -0
- package/.nuxt/ui/changelog-version.ts +45 -0
- package/.nuxt/ui/changelog-versions.ts +8 -0
- package/.nuxt/ui/chat-message.ts +136 -0
- package/.nuxt/ui/chat-messages.ts +14 -0
- package/.nuxt/ui/chat-palette.ts +8 -0
- package/.nuxt/ui/chat-prompt-submit.ts +5 -0
- package/.nuxt/ui/chat-prompt.ts +35 -0
- package/.nuxt/ui/checkbox-group.ts +207 -0
- package/.nuxt/ui/checkbox.ts +237 -0
- package/.nuxt/ui/chip.ts +96 -0
- package/.nuxt/ui/collapsible.ts +6 -0
- package/.nuxt/ui/color-picker.ts +47 -0
- package/.nuxt/ui/command-palette.ts +62 -0
- package/.nuxt/ui/container.ts +3 -0
- package/.nuxt/ui/context-menu.ts +219 -0
- package/.nuxt/ui/dashboard-group.ts +3 -0
- package/.nuxt/ui/dashboard-navbar.ts +21 -0
- package/.nuxt/ui/dashboard-panel.ts +17 -0
- package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
- package/.nuxt/ui/dashboard-search-button.ts +15 -0
- package/.nuxt/ui/dashboard-search.ts +13 -0
- package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
- package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
- package/.nuxt/ui/dashboard-sidebar.ts +37 -0
- package/.nuxt/ui/dashboard-toolbar.ts +7 -0
- package/.nuxt/ui/drawer.ts +149 -0
- package/.nuxt/ui/dropdown-menu.ts +220 -0
- package/.nuxt/ui/editor-drag-handle.ts +6 -0
- package/.nuxt/ui/editor-emoji-menu.ts +35 -0
- package/.nuxt/ui/editor-mention-menu.ts +35 -0
- package/.nuxt/ui/editor-suggestion-menu.ts +35 -0
- package/.nuxt/ui/editor-toolbar.ts +21 -0
- package/.nuxt/ui/editor.ts +35 -0
- package/.nuxt/ui/empty.ts +83 -0
- package/.nuxt/ui/error.ts +9 -0
- package/.nuxt/ui/field-group.ts +16 -0
- package/.nuxt/ui/file-upload.ts +290 -0
- package/.nuxt/ui/footer-columns.ts +28 -0
- package/.nuxt/ui/footer.ts +11 -0
- package/.nuxt/ui/form-field.ts +62 -0
- package/.nuxt/ui/form.ts +3 -0
- package/.nuxt/ui/header.ts +25 -0
- package/.nuxt/ui/index.ts +109 -0
- package/.nuxt/ui/input-date.ts +337 -0
- package/.nuxt/ui/input-menu.ts +460 -0
- package/.nuxt/ui/input-number.ts +256 -0
- package/.nuxt/ui/input-tags.ts +310 -0
- package/.nuxt/ui/input-time.ts +336 -0
- package/.nuxt/ui/input.ts +289 -0
- package/.nuxt/ui/kbd.ts +195 -0
- package/.nuxt/ui/link.ts +22 -0
- package/.nuxt/ui/main.ts +3 -0
- package/.nuxt/ui/marquee.ts +66 -0
- package/.nuxt/ui/modal.ts +60 -0
- package/.nuxt/ui/navigation-menu.ts +512 -0
- package/.nuxt/ui/page-anchors.ts +30 -0
- package/.nuxt/ui/page-aside.ts +10 -0
- package/.nuxt/ui/page-body.ts +3 -0
- package/.nuxt/ui/page-card.ts +274 -0
- package/.nuxt/ui/page-columns.ts +3 -0
- package/.nuxt/ui/page-cta.ts +70 -0
- package/.nuxt/ui/page-feature.ts +34 -0
- package/.nuxt/ui/page-grid.ts +3 -0
- package/.nuxt/ui/page-header.ts +18 -0
- package/.nuxt/ui/page-hero.ts +44 -0
- package/.nuxt/ui/page-links.ts +25 -0
- package/.nuxt/ui/page-list.ts +8 -0
- package/.nuxt/ui/page-logos.ts +15 -0
- package/.nuxt/ui/page-section.ts +84 -0
- package/.nuxt/ui/page.ts +32 -0
- package/.nuxt/ui/pagination.ts +13 -0
- package/.nuxt/ui/pin-input.ts +171 -0
- package/.nuxt/ui/popover.ts +6 -0
- package/.nuxt/ui/pricing-plan.ts +101 -0
- package/.nuxt/ui/pricing-plans.ts +22 -0
- package/.nuxt/ui/pricing-table.ts +51 -0
- package/.nuxt/ui/progress.ts +297 -0
- package/.nuxt/ui/radio-group.ts +352 -0
- package/.nuxt/ui/scroll-area.ts +21 -0
- package/.nuxt/ui/select-menu.ts +361 -0
- package/.nuxt/ui/select.ts +348 -0
- package/.nuxt/ui/separator.ts +172 -0
- package/.nuxt/ui/skeleton.ts +3 -0
- package/.nuxt/ui/slideover.ts +132 -0
- package/.nuxt/ui/slider.ts +171 -0
- package/.nuxt/ui/stepper.ts +202 -0
- package/.nuxt/ui/switch.ts +132 -0
- package/.nuxt/ui/table.ts +162 -0
- package/.nuxt/ui/tabs.ts +258 -0
- package/.nuxt/ui/textarea.ts +294 -0
- package/.nuxt/ui/timeline.ts +321 -0
- package/.nuxt/ui/toast.ts +74 -0
- package/.nuxt/ui/toaster.ts +91 -0
- package/.nuxt/ui/tooltip.ts +9 -0
- package/.nuxt/ui/tree.ts +168 -0
- package/.nuxt/ui/user.ts +101 -0
- package/.nuxt/ui-image-component.ts +1 -0
- package/.nuxt/ui.css +154 -0
- package/app/app.config.ts +7 -0
- package/app/app.vue +3 -0
- package/app/assets/css/base.css +28 -0
- package/app/components/Var.vue +13 -0
- package/app/components/layout/LayoutDashboard.vue +102 -0
- package/app/components/overlay/modal/ModalActions.vue +25 -0
- package/app/components/overlay/modal/ModalConfirm.vue +25 -0
- package/app/components/overlay/modal/ModalRadioGroup.vue +37 -0
- package/app/components/u/UActions.vue +23 -0
- package/app/components/u/UCustomApp.vue +20 -0
- package/app/components/u/UField.vue +55 -0
- package/app/components/u/UImageWithFallback.vue +35 -0
- package/app/components/u/UInputDatePicker.vue +40 -0
- package/app/components/u/UInputDurationMinutes.vue +88 -0
- package/app/components/u/UTableCard.vue +16 -0
- package/app/composables/useConfirm.ts +16 -0
- package/app/composables/usePreventPageLeave.ts +31 -0
- package/app/composables/useRouteParamString.ts +22 -0
- package/app/composables/useTableColumns.tsx +68 -0
- package/app/composables/useToast.ts +40 -0
- package/app/composables/useTrpc.ts +3 -0
- package/app/error.vue +15 -0
- package/app/pages/index.vue +3 -0
- package/app/utils/form-field-translators.ts +41 -0
- package/app/utils/plugins.ts +95 -0
- package/app/utils/reactivity.ts +17 -0
- package/nuxt.config.ts +85 -0
- package/package.json +46 -0
- package/pnpm-workspace.yaml +5 -0
- package/tsconfig.json +17 -0
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
|
|
2
|
+
import type { DefineComponent, SlotsType } from 'vue'
|
|
3
|
+
type IslandComponent<T> = DefineComponent<{}, {refresh: () => Promise<void>}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, SlotsType<{ fallback: { error: unknown } }>> & T
|
|
4
|
+
|
|
5
|
+
type HydrationStrategies = {
|
|
6
|
+
hydrateOnVisible?: IntersectionObserverInit | true
|
|
7
|
+
hydrateOnIdle?: number | true
|
|
8
|
+
hydrateOnInteraction?: keyof HTMLElementEventMap | Array<keyof HTMLElementEventMap> | true
|
|
9
|
+
hydrateOnMediaQuery?: string
|
|
10
|
+
hydrateAfter?: number
|
|
11
|
+
hydrateWhen?: boolean
|
|
12
|
+
hydrateNever?: true
|
|
13
|
+
}
|
|
14
|
+
type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {}, {}, { hydrated: () => void }> & T
|
|
15
|
+
|
|
16
|
+
interface _GlobalComponents {
|
|
17
|
+
'Var': typeof import("../../app/components/Var.vue").default
|
|
18
|
+
'OverlayModalActions': typeof import("../../app/components/overlay/modal/ModalActions.vue").default
|
|
19
|
+
'OverlayModalConfirm': typeof import("../../app/components/overlay/modal/ModalConfirm.vue").default
|
|
20
|
+
'OverlayModalRadioGroup': typeof import("../../app/components/overlay/modal/ModalRadioGroup.vue").default
|
|
21
|
+
'UActions': typeof import("../../app/components/u/UActions.vue").default
|
|
22
|
+
'UCustomApp': typeof import("../../app/components/u/UCustomApp.vue").default
|
|
23
|
+
'UField': typeof import("../../app/components/u/UField.vue").default
|
|
24
|
+
'UImageWithFallback': typeof import("../../app/components/u/UImageWithFallback.vue").default
|
|
25
|
+
'UInputDatePicker': typeof import("../../app/components/u/UInputDatePicker.vue").default
|
|
26
|
+
'UInputDurationMinutes': typeof import("../../app/components/u/UInputDurationMinutes.vue").default
|
|
27
|
+
'UTableCard': typeof import("../../app/components/u/UTableCard.vue").default
|
|
28
|
+
'UColorModeAvatar': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeAvatar.vue").default
|
|
29
|
+
'UColorModeButton': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeButton.vue").default
|
|
30
|
+
'UColorModeImage': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeImage.vue").default
|
|
31
|
+
'UColorModeSelect': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeSelect.vue").default
|
|
32
|
+
'UColorModeSwitch': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeSwitch.vue").default
|
|
33
|
+
'UAccordion': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Accordion.vue").default
|
|
34
|
+
'UAlert': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Alert.vue").default
|
|
35
|
+
'UApp': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/App.vue").default
|
|
36
|
+
'UAuthForm': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/AuthForm.vue").default
|
|
37
|
+
'UAvatar': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Avatar.vue").default
|
|
38
|
+
'UAvatarGroup': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/AvatarGroup.vue").default
|
|
39
|
+
'UBadge': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Badge.vue").default
|
|
40
|
+
'UBanner': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Banner.vue").default
|
|
41
|
+
'UBlogPost': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/BlogPost.vue").default
|
|
42
|
+
'UBlogPosts': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/BlogPosts.vue").default
|
|
43
|
+
'UBreadcrumb': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Breadcrumb.vue").default
|
|
44
|
+
'UButton': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Button.vue").default
|
|
45
|
+
'UCalendar': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Calendar.vue").default
|
|
46
|
+
'UCard': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Card.vue").default
|
|
47
|
+
'UCarousel': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Carousel.vue").default
|
|
48
|
+
'UChangelogVersion': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChangelogVersion.vue").default
|
|
49
|
+
'UChangelogVersions': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChangelogVersions.vue").default
|
|
50
|
+
'UChatMessage': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatMessage.vue").default
|
|
51
|
+
'UChatMessages': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatMessages.vue").default
|
|
52
|
+
'UChatPalette': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatPalette.vue").default
|
|
53
|
+
'UChatPrompt': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatPrompt.vue").default
|
|
54
|
+
'UChatPromptSubmit': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatPromptSubmit.vue").default
|
|
55
|
+
'UCheckbox': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Checkbox.vue").default
|
|
56
|
+
'UCheckboxGroup': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/CheckboxGroup.vue").default
|
|
57
|
+
'UChip': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Chip.vue").default
|
|
58
|
+
'UCollapsible': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Collapsible.vue").default
|
|
59
|
+
'UColorPicker': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ColorPicker.vue").default
|
|
60
|
+
'UCommandPalette': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/CommandPalette.vue").default
|
|
61
|
+
'UContainer': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Container.vue").default
|
|
62
|
+
'UContextMenu': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ContextMenu.vue").default
|
|
63
|
+
'UContextMenuContent': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ContextMenuContent.vue").default
|
|
64
|
+
'UDashboardGroup': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardGroup.vue").default
|
|
65
|
+
'UDashboardNavbar': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardNavbar.vue").default
|
|
66
|
+
'UDashboardPanel': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardPanel.vue").default
|
|
67
|
+
'UDashboardResizeHandle': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardResizeHandle.vue").default
|
|
68
|
+
'UDashboardSearch': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSearch.vue").default
|
|
69
|
+
'UDashboardSearchButton': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSearchButton.vue").default
|
|
70
|
+
'UDashboardSidebar': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSidebar.vue").default
|
|
71
|
+
'UDashboardSidebarCollapse': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSidebarCollapse.vue").default
|
|
72
|
+
'UDashboardSidebarToggle': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSidebarToggle.vue").default
|
|
73
|
+
'UDashboardToolbar': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardToolbar.vue").default
|
|
74
|
+
'UDrawer': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Drawer.vue").default
|
|
75
|
+
'UDropdownMenu': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DropdownMenu.vue").default
|
|
76
|
+
'UDropdownMenuContent': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DropdownMenuContent.vue").default
|
|
77
|
+
'UEditor': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Editor.vue").default
|
|
78
|
+
'UEditorDragHandle': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorDragHandle.vue").default
|
|
79
|
+
'UEditorEmojiMenu': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorEmojiMenu.vue").default
|
|
80
|
+
'UEditorMentionMenu': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorMentionMenu.vue").default
|
|
81
|
+
'UEditorSuggestionMenu': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorSuggestionMenu.vue").default
|
|
82
|
+
'UEditorToolbar': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorToolbar.vue").default
|
|
83
|
+
'UEmpty': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Empty.vue").default
|
|
84
|
+
'UError': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Error.vue").default
|
|
85
|
+
'UFieldGroup': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/FieldGroup.vue").default
|
|
86
|
+
'UFileUpload': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/FileUpload.vue").default
|
|
87
|
+
'UFooter': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Footer.vue").default
|
|
88
|
+
'UFooterColumns': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/FooterColumns.vue").default
|
|
89
|
+
'UForm': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Form.vue").default
|
|
90
|
+
'UFormField': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/FormField.vue").default
|
|
91
|
+
'UHeader': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Header.vue").default
|
|
92
|
+
'UIcon': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Icon.vue").default
|
|
93
|
+
'UInput': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Input.vue").default
|
|
94
|
+
'UInputDate': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputDate.vue").default
|
|
95
|
+
'UInputMenu': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputMenu.vue").default
|
|
96
|
+
'UInputNumber': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputNumber.vue").default
|
|
97
|
+
'UInputTags': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputTags.vue").default
|
|
98
|
+
'UInputTime': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputTime.vue").default
|
|
99
|
+
'UKbd': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Kbd.vue").default
|
|
100
|
+
'ULink': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Link.vue").default
|
|
101
|
+
'ULinkBase': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/LinkBase.vue").default
|
|
102
|
+
'UMain': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Main.vue").default
|
|
103
|
+
'UMarquee': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Marquee.vue").default
|
|
104
|
+
'UModal': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Modal.vue").default
|
|
105
|
+
'UNavigationMenu': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/NavigationMenu.vue").default
|
|
106
|
+
'UOverlayProvider': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/OverlayProvider.vue").default
|
|
107
|
+
'UPage': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Page.vue").default
|
|
108
|
+
'UPageAnchors': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageAnchors.vue").default
|
|
109
|
+
'UPageAside': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageAside.vue").default
|
|
110
|
+
'UPageBody': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageBody.vue").default
|
|
111
|
+
'UPageCTA': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageCTA.vue").default
|
|
112
|
+
'UPageCard': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageCard.vue").default
|
|
113
|
+
'UPageColumns': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageColumns.vue").default
|
|
114
|
+
'UPageFeature': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageFeature.vue").default
|
|
115
|
+
'UPageGrid': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageGrid.vue").default
|
|
116
|
+
'UPageHeader': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageHeader.vue").default
|
|
117
|
+
'UPageHero': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageHero.vue").default
|
|
118
|
+
'UPageLinks': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageLinks.vue").default
|
|
119
|
+
'UPageList': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageList.vue").default
|
|
120
|
+
'UPageLogos': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageLogos.vue").default
|
|
121
|
+
'UPageSection': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageSection.vue").default
|
|
122
|
+
'UPagination': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Pagination.vue").default
|
|
123
|
+
'UPinInput': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PinInput.vue").default
|
|
124
|
+
'UPopover': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Popover.vue").default
|
|
125
|
+
'UPricingPlan': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PricingPlan.vue").default
|
|
126
|
+
'UPricingPlans': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PricingPlans.vue").default
|
|
127
|
+
'UPricingTable': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PricingTable.vue").default
|
|
128
|
+
'UProgress': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Progress.vue").default
|
|
129
|
+
'URadioGroup': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/RadioGroup.vue").default
|
|
130
|
+
'UScrollArea': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ScrollArea.vue").default
|
|
131
|
+
'USelect': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Select.vue").default
|
|
132
|
+
'USelectMenu': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/SelectMenu.vue").default
|
|
133
|
+
'USeparator': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Separator.vue").default
|
|
134
|
+
'USkeleton': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Skeleton.vue").default
|
|
135
|
+
'USlideover': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Slideover.vue").default
|
|
136
|
+
'USlider': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Slider.vue").default
|
|
137
|
+
'UStepper': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Stepper.vue").default
|
|
138
|
+
'USwitch': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Switch.vue").default
|
|
139
|
+
'UTable': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Table.vue").default
|
|
140
|
+
'UTabs': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Tabs.vue").default
|
|
141
|
+
'UTextarea': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Textarea.vue").default
|
|
142
|
+
'UTimeline': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Timeline.vue").default
|
|
143
|
+
'UToast': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Toast.vue").default
|
|
144
|
+
'UToaster': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Toaster.vue").default
|
|
145
|
+
'UTooltip': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Tooltip.vue").default
|
|
146
|
+
'UTree': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Tree.vue").default
|
|
147
|
+
'UUser': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/User.vue").default
|
|
148
|
+
'ULocaleSelect': typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/locale/LocaleSelect.vue").default
|
|
149
|
+
'NuxtWelcome': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/welcome.vue").default
|
|
150
|
+
'NuxtLayout': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-layout").default
|
|
151
|
+
'NuxtErrorBoundary': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue").default
|
|
152
|
+
'ClientOnly': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/client-only").default
|
|
153
|
+
'DevOnly': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/dev-only").default
|
|
154
|
+
'ServerPlaceholder': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/server-placeholder").default
|
|
155
|
+
'NuxtLink': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-link").default
|
|
156
|
+
'NuxtLoadingIndicator': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-loading-indicator").default
|
|
157
|
+
'NuxtTime': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-time.vue").default
|
|
158
|
+
'NuxtRouteAnnouncer': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-route-announcer").default
|
|
159
|
+
'NuxtImg': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-stubs").NuxtImg
|
|
160
|
+
'NuxtPicture': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-stubs").NuxtPicture
|
|
161
|
+
'Icon': typeof import("../../node_modules/.pnpm/@nuxt+icon@2.2.0_magicast@0.5.1_vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1_47fc2af9eef360739133102824d878f7/node_modules/@nuxt/icon/dist/runtime/components/index").default
|
|
162
|
+
'ColorScheme': typeof import("../../node_modules/.pnpm/@nuxtjs+color-mode@4.0.0_magicast@0.5.1/node_modules/@nuxtjs/color-mode/dist/runtime/component.vue").default
|
|
163
|
+
'NuxtPage': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/pages/runtime/page").default
|
|
164
|
+
'NoScript': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").NoScript
|
|
165
|
+
'Link': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Link
|
|
166
|
+
'Base': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Base
|
|
167
|
+
'Title': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Title
|
|
168
|
+
'Meta': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Meta
|
|
169
|
+
'Style': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Style
|
|
170
|
+
'Head': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Head
|
|
171
|
+
'Html': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Html
|
|
172
|
+
'Body': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Body
|
|
173
|
+
'NuxtIsland': typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-island").default
|
|
174
|
+
'LazyVar': LazyComponent<typeof import("../../app/components/Var.vue").default>
|
|
175
|
+
'LazyOverlayModalActions': LazyComponent<typeof import("../../app/components/overlay/modal/ModalActions.vue").default>
|
|
176
|
+
'LazyOverlayModalConfirm': LazyComponent<typeof import("../../app/components/overlay/modal/ModalConfirm.vue").default>
|
|
177
|
+
'LazyOverlayModalRadioGroup': LazyComponent<typeof import("../../app/components/overlay/modal/ModalRadioGroup.vue").default>
|
|
178
|
+
'LazyUActions': LazyComponent<typeof import("../../app/components/u/UActions.vue").default>
|
|
179
|
+
'LazyUCustomApp': LazyComponent<typeof import("../../app/components/u/UCustomApp.vue").default>
|
|
180
|
+
'LazyUField': LazyComponent<typeof import("../../app/components/u/UField.vue").default>
|
|
181
|
+
'LazyUImageWithFallback': LazyComponent<typeof import("../../app/components/u/UImageWithFallback.vue").default>
|
|
182
|
+
'LazyUInputDatePicker': LazyComponent<typeof import("../../app/components/u/UInputDatePicker.vue").default>
|
|
183
|
+
'LazyUInputDurationMinutes': LazyComponent<typeof import("../../app/components/u/UInputDurationMinutes.vue").default>
|
|
184
|
+
'LazyUTableCard': LazyComponent<typeof import("../../app/components/u/UTableCard.vue").default>
|
|
185
|
+
'LazyUColorModeAvatar': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeAvatar.vue").default>
|
|
186
|
+
'LazyUColorModeButton': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeButton.vue").default>
|
|
187
|
+
'LazyUColorModeImage': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeImage.vue").default>
|
|
188
|
+
'LazyUColorModeSelect': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeSelect.vue").default>
|
|
189
|
+
'LazyUColorModeSwitch': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/color-mode/ColorModeSwitch.vue").default>
|
|
190
|
+
'LazyUAccordion': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Accordion.vue").default>
|
|
191
|
+
'LazyUAlert': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Alert.vue").default>
|
|
192
|
+
'LazyUApp': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/App.vue").default>
|
|
193
|
+
'LazyUAuthForm': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/AuthForm.vue").default>
|
|
194
|
+
'LazyUAvatar': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Avatar.vue").default>
|
|
195
|
+
'LazyUAvatarGroup': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/AvatarGroup.vue").default>
|
|
196
|
+
'LazyUBadge': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Badge.vue").default>
|
|
197
|
+
'LazyUBanner': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Banner.vue").default>
|
|
198
|
+
'LazyUBlogPost': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/BlogPost.vue").default>
|
|
199
|
+
'LazyUBlogPosts': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/BlogPosts.vue").default>
|
|
200
|
+
'LazyUBreadcrumb': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Breadcrumb.vue").default>
|
|
201
|
+
'LazyUButton': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Button.vue").default>
|
|
202
|
+
'LazyUCalendar': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Calendar.vue").default>
|
|
203
|
+
'LazyUCard': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Card.vue").default>
|
|
204
|
+
'LazyUCarousel': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Carousel.vue").default>
|
|
205
|
+
'LazyUChangelogVersion': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChangelogVersion.vue").default>
|
|
206
|
+
'LazyUChangelogVersions': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChangelogVersions.vue").default>
|
|
207
|
+
'LazyUChatMessage': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatMessage.vue").default>
|
|
208
|
+
'LazyUChatMessages': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatMessages.vue").default>
|
|
209
|
+
'LazyUChatPalette': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatPalette.vue").default>
|
|
210
|
+
'LazyUChatPrompt': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatPrompt.vue").default>
|
|
211
|
+
'LazyUChatPromptSubmit': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ChatPromptSubmit.vue").default>
|
|
212
|
+
'LazyUCheckbox': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Checkbox.vue").default>
|
|
213
|
+
'LazyUCheckboxGroup': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/CheckboxGroup.vue").default>
|
|
214
|
+
'LazyUChip': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Chip.vue").default>
|
|
215
|
+
'LazyUCollapsible': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Collapsible.vue").default>
|
|
216
|
+
'LazyUColorPicker': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ColorPicker.vue").default>
|
|
217
|
+
'LazyUCommandPalette': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/CommandPalette.vue").default>
|
|
218
|
+
'LazyUContainer': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Container.vue").default>
|
|
219
|
+
'LazyUContextMenu': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ContextMenu.vue").default>
|
|
220
|
+
'LazyUContextMenuContent': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ContextMenuContent.vue").default>
|
|
221
|
+
'LazyUDashboardGroup': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardGroup.vue").default>
|
|
222
|
+
'LazyUDashboardNavbar': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardNavbar.vue").default>
|
|
223
|
+
'LazyUDashboardPanel': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardPanel.vue").default>
|
|
224
|
+
'LazyUDashboardResizeHandle': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardResizeHandle.vue").default>
|
|
225
|
+
'LazyUDashboardSearch': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSearch.vue").default>
|
|
226
|
+
'LazyUDashboardSearchButton': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSearchButton.vue").default>
|
|
227
|
+
'LazyUDashboardSidebar': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSidebar.vue").default>
|
|
228
|
+
'LazyUDashboardSidebarCollapse': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSidebarCollapse.vue").default>
|
|
229
|
+
'LazyUDashboardSidebarToggle': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardSidebarToggle.vue").default>
|
|
230
|
+
'LazyUDashboardToolbar': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DashboardToolbar.vue").default>
|
|
231
|
+
'LazyUDrawer': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Drawer.vue").default>
|
|
232
|
+
'LazyUDropdownMenu': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DropdownMenu.vue").default>
|
|
233
|
+
'LazyUDropdownMenuContent': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/DropdownMenuContent.vue").default>
|
|
234
|
+
'LazyUEditor': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Editor.vue").default>
|
|
235
|
+
'LazyUEditorDragHandle': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorDragHandle.vue").default>
|
|
236
|
+
'LazyUEditorEmojiMenu': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorEmojiMenu.vue").default>
|
|
237
|
+
'LazyUEditorMentionMenu': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorMentionMenu.vue").default>
|
|
238
|
+
'LazyUEditorSuggestionMenu': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorSuggestionMenu.vue").default>
|
|
239
|
+
'LazyUEditorToolbar': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/EditorToolbar.vue").default>
|
|
240
|
+
'LazyUEmpty': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Empty.vue").default>
|
|
241
|
+
'LazyUError': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Error.vue").default>
|
|
242
|
+
'LazyUFieldGroup': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/FieldGroup.vue").default>
|
|
243
|
+
'LazyUFileUpload': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/FileUpload.vue").default>
|
|
244
|
+
'LazyUFooter': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Footer.vue").default>
|
|
245
|
+
'LazyUFooterColumns': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/FooterColumns.vue").default>
|
|
246
|
+
'LazyUForm': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Form.vue").default>
|
|
247
|
+
'LazyUFormField': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/FormField.vue").default>
|
|
248
|
+
'LazyUHeader': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Header.vue").default>
|
|
249
|
+
'LazyUIcon': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Icon.vue").default>
|
|
250
|
+
'LazyUInput': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Input.vue").default>
|
|
251
|
+
'LazyUInputDate': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputDate.vue").default>
|
|
252
|
+
'LazyUInputMenu': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputMenu.vue").default>
|
|
253
|
+
'LazyUInputNumber': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputNumber.vue").default>
|
|
254
|
+
'LazyUInputTags': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputTags.vue").default>
|
|
255
|
+
'LazyUInputTime': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/InputTime.vue").default>
|
|
256
|
+
'LazyUKbd': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Kbd.vue").default>
|
|
257
|
+
'LazyULink': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Link.vue").default>
|
|
258
|
+
'LazyULinkBase': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/LinkBase.vue").default>
|
|
259
|
+
'LazyUMain': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Main.vue").default>
|
|
260
|
+
'LazyUMarquee': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Marquee.vue").default>
|
|
261
|
+
'LazyUModal': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Modal.vue").default>
|
|
262
|
+
'LazyUNavigationMenu': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/NavigationMenu.vue").default>
|
|
263
|
+
'LazyUOverlayProvider': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/OverlayProvider.vue").default>
|
|
264
|
+
'LazyUPage': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Page.vue").default>
|
|
265
|
+
'LazyUPageAnchors': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageAnchors.vue").default>
|
|
266
|
+
'LazyUPageAside': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageAside.vue").default>
|
|
267
|
+
'LazyUPageBody': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageBody.vue").default>
|
|
268
|
+
'LazyUPageCTA': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageCTA.vue").default>
|
|
269
|
+
'LazyUPageCard': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageCard.vue").default>
|
|
270
|
+
'LazyUPageColumns': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageColumns.vue").default>
|
|
271
|
+
'LazyUPageFeature': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageFeature.vue").default>
|
|
272
|
+
'LazyUPageGrid': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageGrid.vue").default>
|
|
273
|
+
'LazyUPageHeader': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageHeader.vue").default>
|
|
274
|
+
'LazyUPageHero': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageHero.vue").default>
|
|
275
|
+
'LazyUPageLinks': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageLinks.vue").default>
|
|
276
|
+
'LazyUPageList': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageList.vue").default>
|
|
277
|
+
'LazyUPageLogos': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageLogos.vue").default>
|
|
278
|
+
'LazyUPageSection': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PageSection.vue").default>
|
|
279
|
+
'LazyUPagination': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Pagination.vue").default>
|
|
280
|
+
'LazyUPinInput': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PinInput.vue").default>
|
|
281
|
+
'LazyUPopover': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Popover.vue").default>
|
|
282
|
+
'LazyUPricingPlan': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PricingPlan.vue").default>
|
|
283
|
+
'LazyUPricingPlans': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PricingPlans.vue").default>
|
|
284
|
+
'LazyUPricingTable': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/PricingTable.vue").default>
|
|
285
|
+
'LazyUProgress': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Progress.vue").default>
|
|
286
|
+
'LazyURadioGroup': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/RadioGroup.vue").default>
|
|
287
|
+
'LazyUScrollArea': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/ScrollArea.vue").default>
|
|
288
|
+
'LazyUSelect': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Select.vue").default>
|
|
289
|
+
'LazyUSelectMenu': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/SelectMenu.vue").default>
|
|
290
|
+
'LazyUSeparator': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Separator.vue").default>
|
|
291
|
+
'LazyUSkeleton': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Skeleton.vue").default>
|
|
292
|
+
'LazyUSlideover': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Slideover.vue").default>
|
|
293
|
+
'LazyUSlider': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Slider.vue").default>
|
|
294
|
+
'LazyUStepper': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Stepper.vue").default>
|
|
295
|
+
'LazyUSwitch': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Switch.vue").default>
|
|
296
|
+
'LazyUTable': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Table.vue").default>
|
|
297
|
+
'LazyUTabs': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Tabs.vue").default>
|
|
298
|
+
'LazyUTextarea': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Textarea.vue").default>
|
|
299
|
+
'LazyUTimeline': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Timeline.vue").default>
|
|
300
|
+
'LazyUToast': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Toast.vue").default>
|
|
301
|
+
'LazyUToaster': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Toaster.vue").default>
|
|
302
|
+
'LazyUTooltip': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Tooltip.vue").default>
|
|
303
|
+
'LazyUTree': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/Tree.vue").default>
|
|
304
|
+
'LazyUUser': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/User.vue").default>
|
|
305
|
+
'LazyULocaleSelect': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/components/locale/LocaleSelect.vue").default>
|
|
306
|
+
'LazyNuxtWelcome': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/welcome.vue").default>
|
|
307
|
+
'LazyNuxtLayout': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-layout").default>
|
|
308
|
+
'LazyNuxtErrorBoundary': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue").default>
|
|
309
|
+
'LazyClientOnly': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/client-only").default>
|
|
310
|
+
'LazyDevOnly': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/dev-only").default>
|
|
311
|
+
'LazyServerPlaceholder': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/server-placeholder").default>
|
|
312
|
+
'LazyNuxtLink': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-link").default>
|
|
313
|
+
'LazyNuxtLoadingIndicator': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-loading-indicator").default>
|
|
314
|
+
'LazyNuxtTime': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-time.vue").default>
|
|
315
|
+
'LazyNuxtRouteAnnouncer': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-route-announcer").default>
|
|
316
|
+
'LazyNuxtImg': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-stubs").NuxtImg>
|
|
317
|
+
'LazyNuxtPicture': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-stubs").NuxtPicture>
|
|
318
|
+
'LazyIcon': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+icon@2.2.0_magicast@0.5.1_vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1_47fc2af9eef360739133102824d878f7/node_modules/@nuxt/icon/dist/runtime/components/index").default>
|
|
319
|
+
'LazyColorScheme': LazyComponent<typeof import("../../node_modules/.pnpm/@nuxtjs+color-mode@4.0.0_magicast@0.5.1/node_modules/@nuxtjs/color-mode/dist/runtime/component.vue").default>
|
|
320
|
+
'LazyNuxtPage': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/pages/runtime/page").default>
|
|
321
|
+
'LazyNoScript': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").NoScript>
|
|
322
|
+
'LazyLink': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Link>
|
|
323
|
+
'LazyBase': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Base>
|
|
324
|
+
'LazyTitle': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Title>
|
|
325
|
+
'LazyMeta': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Meta>
|
|
326
|
+
'LazyStyle': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Style>
|
|
327
|
+
'LazyHead': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Head>
|
|
328
|
+
'LazyHtml': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Html>
|
|
329
|
+
'LazyBody': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/head/runtime/components").Body>
|
|
330
|
+
'LazyNuxtIsland': LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.2.2_@parcel+watcher@2.5.1_@types+node@25.0.3_@vue+compiler-sfc@3.5.26_cac@6.7.14_796f8e1fb75d1abd575506ed75b3e79b/node_modules/nuxt/dist/app/components/nuxt-island").default>
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
declare module 'vue' {
|
|
334
|
+
export interface GlobalComponents extends _GlobalComponents { }
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
export {}
|