@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.
Files changed (176) hide show
  1. package/.nuxt/app.config.mjs +317 -0
  2. package/.nuxt/components.d.ts +332 -0
  3. package/.nuxt/imports.d.ts +61 -0
  4. package/.nuxt/manifest/meta/24fb5e89-93fb-44cb-bbff-2a13f165c1e8.json +1 -0
  5. package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
  6. package/.nuxt/nuxt-icon-server-bundle.mjs +14 -0
  7. package/.nuxt/nuxt.d.ts +24 -0
  8. package/.nuxt/nuxt.node.d.ts +14 -0
  9. package/.nuxt/nuxt.shared.d.ts +5 -0
  10. package/.nuxt/schema/nuxt.schema.d.ts +210 -0
  11. package/.nuxt/schema/nuxt.schema.json +263 -0
  12. package/.nuxt/tsconfig.app.json +217 -0
  13. package/.nuxt/tsconfig.json +219 -0
  14. package/.nuxt/tsconfig.node.json +114 -0
  15. package/.nuxt/tsconfig.server.json +140 -0
  16. package/.nuxt/tsconfig.shared.json +139 -0
  17. package/.nuxt/types/app.config.d.ts +331 -0
  18. package/.nuxt/types/build.d.ts +24 -0
  19. package/.nuxt/types/builder-env.d.ts +1 -0
  20. package/.nuxt/types/components.d.ts +337 -0
  21. package/.nuxt/types/imports.d.ts +906 -0
  22. package/.nuxt/types/layouts.d.ts +7 -0
  23. package/.nuxt/types/middleware.d.ts +7 -0
  24. package/.nuxt/types/modules.d.ts +159 -0
  25. package/.nuxt/types/nitro-config.d.ts +14 -0
  26. package/.nuxt/types/nitro-imports.d.ts +141 -0
  27. package/.nuxt/types/nitro-middleware.d.ts +11 -0
  28. package/.nuxt/types/nitro-nuxt.d.ts +61 -0
  29. package/.nuxt/types/nitro-routes.d.ts +17 -0
  30. package/.nuxt/types/nitro.d.ts +3 -0
  31. package/.nuxt/types/plugins.d.ts +35 -0
  32. package/.nuxt/types/runtime-config.d.ts +36 -0
  33. package/.nuxt/types/ui.d.ts +36 -0
  34. package/.nuxt/types/vue-shim.d.ts +0 -0
  35. package/.nuxt/ui/accordion.ts +20 -0
  36. package/.nuxt/ui/alert.ts +264 -0
  37. package/.nuxt/ui/auth-form.ts +20 -0
  38. package/.nuxt/ui/avatar-group.ts +52 -0
  39. package/.nuxt/ui/avatar.ts +54 -0
  40. package/.nuxt/ui/badge.ts +263 -0
  41. package/.nuxt/ui/banner.ts +108 -0
  42. package/.nuxt/ui/blog-post.ts +143 -0
  43. package/.nuxt/ui/blog-posts.ts +9 -0
  44. package/.nuxt/ui/breadcrumb.ts +45 -0
  45. package/.nuxt/ui/button.ts +378 -0
  46. package/.nuxt/ui/calendar.ts +315 -0
  47. package/.nuxt/ui/card.ts +34 -0
  48. package/.nuxt/ui/carousel.ts +38 -0
  49. package/.nuxt/ui/changelog-version.ts +45 -0
  50. package/.nuxt/ui/changelog-versions.ts +8 -0
  51. package/.nuxt/ui/chat-message.ts +136 -0
  52. package/.nuxt/ui/chat-messages.ts +14 -0
  53. package/.nuxt/ui/chat-palette.ts +8 -0
  54. package/.nuxt/ui/chat-prompt-submit.ts +5 -0
  55. package/.nuxt/ui/chat-prompt.ts +35 -0
  56. package/.nuxt/ui/checkbox-group.ts +207 -0
  57. package/.nuxt/ui/checkbox.ts +237 -0
  58. package/.nuxt/ui/chip.ts +96 -0
  59. package/.nuxt/ui/collapsible.ts +6 -0
  60. package/.nuxt/ui/color-picker.ts +47 -0
  61. package/.nuxt/ui/command-palette.ts +62 -0
  62. package/.nuxt/ui/container.ts +3 -0
  63. package/.nuxt/ui/context-menu.ts +219 -0
  64. package/.nuxt/ui/dashboard-group.ts +3 -0
  65. package/.nuxt/ui/dashboard-navbar.ts +21 -0
  66. package/.nuxt/ui/dashboard-panel.ts +17 -0
  67. package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
  68. package/.nuxt/ui/dashboard-search-button.ts +15 -0
  69. package/.nuxt/ui/dashboard-search.ts +13 -0
  70. package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
  71. package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
  72. package/.nuxt/ui/dashboard-sidebar.ts +37 -0
  73. package/.nuxt/ui/dashboard-toolbar.ts +7 -0
  74. package/.nuxt/ui/drawer.ts +149 -0
  75. package/.nuxt/ui/dropdown-menu.ts +220 -0
  76. package/.nuxt/ui/editor-drag-handle.ts +6 -0
  77. package/.nuxt/ui/editor-emoji-menu.ts +35 -0
  78. package/.nuxt/ui/editor-mention-menu.ts +35 -0
  79. package/.nuxt/ui/editor-suggestion-menu.ts +35 -0
  80. package/.nuxt/ui/editor-toolbar.ts +21 -0
  81. package/.nuxt/ui/editor.ts +35 -0
  82. package/.nuxt/ui/empty.ts +83 -0
  83. package/.nuxt/ui/error.ts +9 -0
  84. package/.nuxt/ui/field-group.ts +16 -0
  85. package/.nuxt/ui/file-upload.ts +290 -0
  86. package/.nuxt/ui/footer-columns.ts +28 -0
  87. package/.nuxt/ui/footer.ts +11 -0
  88. package/.nuxt/ui/form-field.ts +62 -0
  89. package/.nuxt/ui/form.ts +3 -0
  90. package/.nuxt/ui/header.ts +25 -0
  91. package/.nuxt/ui/index.ts +109 -0
  92. package/.nuxt/ui/input-date.ts +337 -0
  93. package/.nuxt/ui/input-menu.ts +460 -0
  94. package/.nuxt/ui/input-number.ts +256 -0
  95. package/.nuxt/ui/input-tags.ts +310 -0
  96. package/.nuxt/ui/input-time.ts +336 -0
  97. package/.nuxt/ui/input.ts +289 -0
  98. package/.nuxt/ui/kbd.ts +195 -0
  99. package/.nuxt/ui/link.ts +22 -0
  100. package/.nuxt/ui/main.ts +3 -0
  101. package/.nuxt/ui/marquee.ts +66 -0
  102. package/.nuxt/ui/modal.ts +60 -0
  103. package/.nuxt/ui/navigation-menu.ts +512 -0
  104. package/.nuxt/ui/page-anchors.ts +30 -0
  105. package/.nuxt/ui/page-aside.ts +10 -0
  106. package/.nuxt/ui/page-body.ts +3 -0
  107. package/.nuxt/ui/page-card.ts +274 -0
  108. package/.nuxt/ui/page-columns.ts +3 -0
  109. package/.nuxt/ui/page-cta.ts +70 -0
  110. package/.nuxt/ui/page-feature.ts +34 -0
  111. package/.nuxt/ui/page-grid.ts +3 -0
  112. package/.nuxt/ui/page-header.ts +18 -0
  113. package/.nuxt/ui/page-hero.ts +44 -0
  114. package/.nuxt/ui/page-links.ts +25 -0
  115. package/.nuxt/ui/page-list.ts +8 -0
  116. package/.nuxt/ui/page-logos.ts +15 -0
  117. package/.nuxt/ui/page-section.ts +84 -0
  118. package/.nuxt/ui/page.ts +32 -0
  119. package/.nuxt/ui/pagination.ts +13 -0
  120. package/.nuxt/ui/pin-input.ts +171 -0
  121. package/.nuxt/ui/popover.ts +6 -0
  122. package/.nuxt/ui/pricing-plan.ts +101 -0
  123. package/.nuxt/ui/pricing-plans.ts +22 -0
  124. package/.nuxt/ui/pricing-table.ts +51 -0
  125. package/.nuxt/ui/progress.ts +297 -0
  126. package/.nuxt/ui/radio-group.ts +352 -0
  127. package/.nuxt/ui/scroll-area.ts +21 -0
  128. package/.nuxt/ui/select-menu.ts +361 -0
  129. package/.nuxt/ui/select.ts +348 -0
  130. package/.nuxt/ui/separator.ts +172 -0
  131. package/.nuxt/ui/skeleton.ts +3 -0
  132. package/.nuxt/ui/slideover.ts +132 -0
  133. package/.nuxt/ui/slider.ts +171 -0
  134. package/.nuxt/ui/stepper.ts +202 -0
  135. package/.nuxt/ui/switch.ts +132 -0
  136. package/.nuxt/ui/table.ts +162 -0
  137. package/.nuxt/ui/tabs.ts +258 -0
  138. package/.nuxt/ui/textarea.ts +294 -0
  139. package/.nuxt/ui/timeline.ts +321 -0
  140. package/.nuxt/ui/toast.ts +74 -0
  141. package/.nuxt/ui/toaster.ts +91 -0
  142. package/.nuxt/ui/tooltip.ts +9 -0
  143. package/.nuxt/ui/tree.ts +168 -0
  144. package/.nuxt/ui/user.ts +101 -0
  145. package/.nuxt/ui-image-component.ts +1 -0
  146. package/.nuxt/ui.css +154 -0
  147. package/app/app.config.ts +7 -0
  148. package/app/app.vue +3 -0
  149. package/app/assets/css/base.css +28 -0
  150. package/app/components/Var.vue +13 -0
  151. package/app/components/layout/LayoutDashboard.vue +102 -0
  152. package/app/components/overlay/modal/ModalActions.vue +25 -0
  153. package/app/components/overlay/modal/ModalConfirm.vue +25 -0
  154. package/app/components/overlay/modal/ModalRadioGroup.vue +37 -0
  155. package/app/components/u/UActions.vue +23 -0
  156. package/app/components/u/UCustomApp.vue +20 -0
  157. package/app/components/u/UField.vue +55 -0
  158. package/app/components/u/UImageWithFallback.vue +35 -0
  159. package/app/components/u/UInputDatePicker.vue +40 -0
  160. package/app/components/u/UInputDurationMinutes.vue +88 -0
  161. package/app/components/u/UTableCard.vue +16 -0
  162. package/app/composables/useConfirm.ts +16 -0
  163. package/app/composables/usePreventPageLeave.ts +31 -0
  164. package/app/composables/useRouteParamString.ts +22 -0
  165. package/app/composables/useTableColumns.tsx +68 -0
  166. package/app/composables/useToast.ts +40 -0
  167. package/app/composables/useTrpc.ts +3 -0
  168. package/app/error.vue +15 -0
  169. package/app/pages/index.vue +3 -0
  170. package/app/utils/form-field-translators.ts +41 -0
  171. package/app/utils/plugins.ts +95 -0
  172. package/app/utils/reactivity.ts +17 -0
  173. package/nuxt.config.ts +85 -0
  174. package/package.json +46 -0
  175. package/pnpm-workspace.yaml +5 -0
  176. package/tsconfig.json +17 -0
@@ -0,0 +1,7 @@
1
+ import type { ComputedRef, MaybeRef } from 'vue'
2
+ export type LayoutKey = "dashboard"
3
+ declare module 'nuxt/app' {
4
+ interface PageMeta {
5
+ layout?: MaybeRef<LayoutKey | false> | ComputedRef<LayoutKey | false>
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ import type { NavigationGuard } from 'vue-router'
2
+ export type MiddlewareKey = never
3
+ declare module 'nuxt/app' {
4
+ interface PageMeta {
5
+ middleware?: MiddlewareKey | NavigationGuard | Array<MiddlewareKey | NavigationGuard>
6
+ }
7
+ }
@@ -0,0 +1,159 @@
1
+ import { NuxtModule, ModuleDependencyMeta } from '@nuxt/schema'
2
+ declare module '@nuxt/schema' {
3
+ interface ModuleDependencies {
4
+ ["@nuxt/icon"]?: ModuleDependencyMeta<typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
5
+ ["@nuxt/fonts"]?: ModuleDependencyMeta<typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
6
+ ["@nuxtjs/color-mode"]?: ModuleDependencyMeta<typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
7
+ ["@nuxt/ui"]?: ModuleDependencyMeta<typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
8
+ ["vueuse"]?: ModuleDependencyMeta<typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
9
+ ["@nuxt/devtools"]?: ModuleDependencyMeta<typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
10
+ ["@nuxt/telemetry"]?: ModuleDependencyMeta<typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
11
+ }
12
+ interface NuxtOptions {
13
+ /**
14
+ * Configuration for `@nuxt/icon`
15
+ */
16
+ ["icon"]: typeof import("@nuxt/icon").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
17
+ /**
18
+ * Configuration for `@nuxt/fonts`
19
+ */
20
+ ["fonts"]: typeof import("@nuxt/fonts").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
21
+ /**
22
+ * Configuration for `@nuxtjs/color-mode`
23
+ */
24
+ ["colorMode"]: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
25
+ /**
26
+ * Configuration for `@nuxt/ui`
27
+ */
28
+ ["ui"]: typeof import("@nuxt/ui").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
29
+ /**
30
+ * Configuration for `@vueuse/nuxt`
31
+ */
32
+ ["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
33
+ /**
34
+ * Configuration for `@nuxt/devtools`
35
+ */
36
+ ["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
37
+ /**
38
+ * Configuration for `@nuxt/telemetry`
39
+ */
40
+ ["telemetry"]: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
41
+ }
42
+ interface NuxtConfig {
43
+ /**
44
+ * Configuration for `@nuxt/icon`
45
+ */
46
+ ["icon"]?: typeof import("@nuxt/icon").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
47
+ /**
48
+ * Configuration for `@nuxt/fonts`
49
+ */
50
+ ["fonts"]?: typeof import("@nuxt/fonts").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
51
+ /**
52
+ * Configuration for `@nuxtjs/color-mode`
53
+ */
54
+ ["colorMode"]?: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
55
+ /**
56
+ * Configuration for `@nuxt/ui`
57
+ */
58
+ ["ui"]?: typeof import("@nuxt/ui").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
59
+ /**
60
+ * Configuration for `@vueuse/nuxt`
61
+ */
62
+ ["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
63
+ /**
64
+ * Configuration for `@nuxt/devtools`
65
+ */
66
+ ["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
67
+ /**
68
+ * Configuration for `@nuxt/telemetry`
69
+ */
70
+ ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
71
+ modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxtjs/color-mode", Exclude<NuxtConfig["colorMode"], boolean>] | ["@nuxt/ui", Exclude<NuxtConfig["ui"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
72
+ }
73
+ }
74
+ declare module 'nuxt/schema' {
75
+ interface ModuleDependencies {
76
+ ["@nuxt/icon"]?: ModuleDependencyMeta<typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
77
+ ["@nuxt/fonts"]?: ModuleDependencyMeta<typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
78
+ ["@nuxtjs/color-mode"]?: ModuleDependencyMeta<typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
79
+ ["@nuxt/ui"]?: ModuleDependencyMeta<typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
80
+ ["vueuse"]?: ModuleDependencyMeta<typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
81
+ ["@nuxt/devtools"]?: ModuleDependencyMeta<typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
82
+ ["@nuxt/telemetry"]?: ModuleDependencyMeta<typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
83
+ }
84
+ interface NuxtOptions {
85
+ /**
86
+ * Configuration for `@nuxt/icon`
87
+ * @see https://www.npmjs.com/package/@nuxt/icon
88
+ */
89
+ ["icon"]: typeof import("@nuxt/icon").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
90
+ /**
91
+ * Configuration for `@nuxt/fonts`
92
+ * @see https://www.npmjs.com/package/@nuxt/fonts
93
+ */
94
+ ["fonts"]: typeof import("@nuxt/fonts").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
95
+ /**
96
+ * Configuration for `@nuxtjs/color-mode`
97
+ * @see https://www.npmjs.com/package/@nuxtjs/color-mode
98
+ */
99
+ ["colorMode"]: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
100
+ /**
101
+ * Configuration for `@nuxt/ui`
102
+ * @see https://ui.nuxt.com/docs/getting-started/installation/nuxt
103
+ */
104
+ ["ui"]: typeof import("@nuxt/ui").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
105
+ /**
106
+ * Configuration for `@vueuse/nuxt`
107
+ * @see https://www.npmjs.com/package/@vueuse/nuxt
108
+ */
109
+ ["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
110
+ /**
111
+ * Configuration for `@nuxt/devtools`
112
+ * @see https://www.npmjs.com/package/@nuxt/devtools
113
+ */
114
+ ["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
115
+ /**
116
+ * Configuration for `@nuxt/telemetry`
117
+ * @see https://www.npmjs.com/package/@nuxt/telemetry
118
+ */
119
+ ["telemetry"]: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
120
+ }
121
+ interface NuxtConfig {
122
+ /**
123
+ * Configuration for `@nuxt/icon`
124
+ * @see https://www.npmjs.com/package/@nuxt/icon
125
+ */
126
+ ["icon"]?: typeof import("@nuxt/icon").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
127
+ /**
128
+ * Configuration for `@nuxt/fonts`
129
+ * @see https://www.npmjs.com/package/@nuxt/fonts
130
+ */
131
+ ["fonts"]?: typeof import("@nuxt/fonts").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
132
+ /**
133
+ * Configuration for `@nuxtjs/color-mode`
134
+ * @see https://www.npmjs.com/package/@nuxtjs/color-mode
135
+ */
136
+ ["colorMode"]?: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
137
+ /**
138
+ * Configuration for `@nuxt/ui`
139
+ * @see https://ui.nuxt.com/docs/getting-started/installation/nuxt
140
+ */
141
+ ["ui"]?: typeof import("@nuxt/ui").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
142
+ /**
143
+ * Configuration for `@vueuse/nuxt`
144
+ * @see https://www.npmjs.com/package/@vueuse/nuxt
145
+ */
146
+ ["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
147
+ /**
148
+ * Configuration for `@nuxt/devtools`
149
+ * @see https://www.npmjs.com/package/@nuxt/devtools
150
+ */
151
+ ["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
152
+ /**
153
+ * Configuration for `@nuxt/telemetry`
154
+ * @see https://www.npmjs.com/package/@nuxt/telemetry
155
+ */
156
+ ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
157
+ modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxtjs/color-mode", Exclude<NuxtConfig["colorMode"], boolean>] | ["@nuxt/ui", Exclude<NuxtConfig["ui"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
158
+ }
159
+ }
@@ -0,0 +1,14 @@
1
+ // Generated by nitro
2
+
3
+ // App Config
4
+ import type { Defu } from 'defu'
5
+
6
+ import type { default as appConfig0 } from "../../app/app.config";
7
+
8
+ type UserAppConfig = Defu<{}, [typeof appConfig0]>
9
+
10
+ declare module "nitropack/types" {
11
+ interface AppConfig extends UserAppConfig {}
12
+
13
+ }
14
+ export {}
@@ -0,0 +1,141 @@
1
+ declare global {
2
+ const __buildAssetsURL: typeof import('../../node_modules/.pnpm/@nuxt+nitro-server@4.2.2_db0@0.3.4_ioredis@5.9.1_magicast@0.5.1_nuxt@4.2.2_@parcel+watc_ee8d7c56ce54cfbfd60e67a79701f0ee/node_modules/@nuxt/nitro-server/dist/runtime/utils/paths').buildAssetsURL
3
+ const __publicAssetsURL: typeof import('../../node_modules/.pnpm/@nuxt+nitro-server@4.2.2_db0@0.3.4_ioredis@5.9.1_magicast@0.5.1_nuxt@4.2.2_@parcel+watc_ee8d7c56ce54cfbfd60e67a79701f0ee/node_modules/@nuxt/nitro-server/dist/runtime/utils/paths').publicAssetsURL
4
+ const appendCorsHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').appendCorsHeaders
5
+ const appendCorsPreflightHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').appendCorsPreflightHeaders
6
+ const appendHeader: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').appendHeader
7
+ const appendHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').appendHeaders
8
+ const appendResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').appendResponseHeader
9
+ const appendResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').appendResponseHeaders
10
+ const assertMethod: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').assertMethod
11
+ const cachedEventHandler: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/cache').cachedEventHandler
12
+ const cachedFunction: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/cache').cachedFunction
13
+ const callNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').callNodeListener
14
+ const clearResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').clearResponseHeaders
15
+ const clearSession: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').clearSession
16
+ const createApp: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').createApp
17
+ const createAppEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').createAppEventHandler
18
+ const createError: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').createError
19
+ const createEvent: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').createEvent
20
+ const createEventStream: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').createEventStream
21
+ const createRouter: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').createRouter
22
+ const defaultContentType: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defaultContentType
23
+ const defineAppConfig: typeof import('../../node_modules/.pnpm/@nuxt+nitro-server@4.2.2_db0@0.3.4_ioredis@5.9.1_magicast@0.5.1_nuxt@4.2.2_@parcel+watc_ee8d7c56ce54cfbfd60e67a79701f0ee/node_modules/@nuxt/nitro-server/dist/runtime/utils/config').defineAppConfig
24
+ const defineCachedEventHandler: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/cache').defineCachedEventHandler
25
+ const defineCachedFunction: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/cache').defineCachedFunction
26
+ const defineEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defineEventHandler
27
+ const defineLazyEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defineLazyEventHandler
28
+ const defineNitroErrorHandler: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/error/utils').defineNitroErrorHandler
29
+ const defineNitroPlugin: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/plugin').defineNitroPlugin
30
+ const defineNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defineNodeListener
31
+ const defineNodeMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defineNodeMiddleware
32
+ const defineRenderHandler: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/renderer').defineRenderHandler
33
+ const defineRequestMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defineRequestMiddleware
34
+ const defineResponseMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defineResponseMiddleware
35
+ const defineRouteMeta: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/meta').defineRouteMeta
36
+ const defineTask: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/task').defineTask
37
+ const defineWebSocket: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defineWebSocket
38
+ const defineWebSocketHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').defineWebSocketHandler
39
+ const deleteCookie: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').deleteCookie
40
+ const dynamicEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').dynamicEventHandler
41
+ const eventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').eventHandler
42
+ const fetchWithEvent: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').fetchWithEvent
43
+ const fromNodeMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').fromNodeMiddleware
44
+ const fromPlainHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').fromPlainHandler
45
+ const fromWebHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').fromWebHandler
46
+ const getCookie: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getCookie
47
+ const getHeader: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getHeader
48
+ const getHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getHeaders
49
+ const getMethod: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getMethod
50
+ const getProxyRequestHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getProxyRequestHeaders
51
+ const getQuery: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getQuery
52
+ const getRequestFingerprint: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestFingerprint
53
+ const getRequestHeader: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestHeader
54
+ const getRequestHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestHeaders
55
+ const getRequestHost: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestHost
56
+ const getRequestIP: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestIP
57
+ const getRequestPath: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestPath
58
+ const getRequestProtocol: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestProtocol
59
+ const getRequestURL: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestURL
60
+ const getRequestWebStream: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRequestWebStream
61
+ const getResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getResponseHeader
62
+ const getResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getResponseHeaders
63
+ const getResponseStatus: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getResponseStatus
64
+ const getResponseStatusText: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getResponseStatusText
65
+ const getRouteRules: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/route-rules').getRouteRules
66
+ const getRouterParam: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRouterParam
67
+ const getRouterParams: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getRouterParams
68
+ const getSession: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getSession
69
+ const getValidatedQuery: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getValidatedQuery
70
+ const getValidatedRouterParams: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').getValidatedRouterParams
71
+ const handleCacheHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').handleCacheHeaders
72
+ const handleCors: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').handleCors
73
+ const isCorsOriginAllowed: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').isCorsOriginAllowed
74
+ const isError: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').isError
75
+ const isEvent: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').isEvent
76
+ const isEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').isEventHandler
77
+ const isMethod: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').isMethod
78
+ const isPreflightRequest: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').isPreflightRequest
79
+ const isStream: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').isStream
80
+ const isWebResponse: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').isWebResponse
81
+ const lazyEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').lazyEventHandler
82
+ const nitroPlugin: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/plugin').nitroPlugin
83
+ const parseCookies: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').parseCookies
84
+ const promisifyNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').promisifyNodeListener
85
+ const proxyRequest: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').proxyRequest
86
+ const readBody: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').readBody
87
+ const readFormData: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').readFormData
88
+ const readMultipartFormData: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').readMultipartFormData
89
+ const readRawBody: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').readRawBody
90
+ const readValidatedBody: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').readValidatedBody
91
+ const removeResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').removeResponseHeader
92
+ const runTask: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/task').runTask
93
+ const sanitizeStatusCode: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sanitizeStatusCode
94
+ const sanitizeStatusMessage: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sanitizeStatusMessage
95
+ const sealSession: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sealSession
96
+ const send: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').send
97
+ const sendError: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sendError
98
+ const sendIterable: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sendIterable
99
+ const sendNoContent: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sendNoContent
100
+ const sendProxy: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sendProxy
101
+ const sendRedirect: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sendRedirect
102
+ const sendStream: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sendStream
103
+ const sendWebResponse: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').sendWebResponse
104
+ const serveStatic: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').serveStatic
105
+ const setCookie: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').setCookie
106
+ const setHeader: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').setHeader
107
+ const setHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').setHeaders
108
+ const setResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').setResponseHeader
109
+ const setResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').setResponseHeaders
110
+ const setResponseStatus: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').setResponseStatus
111
+ const splitCookiesString: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').splitCookiesString
112
+ const toEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').toEventHandler
113
+ const toNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').toNodeListener
114
+ const toPlainHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').toPlainHandler
115
+ const toWebHandler: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').toWebHandler
116
+ const toWebRequest: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').toWebRequest
117
+ const unsealSession: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').unsealSession
118
+ const updateSession: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').updateSession
119
+ const useAppConfig: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/config').useAppConfig
120
+ const useBase: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').useBase
121
+ const useEvent: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/context').useEvent
122
+ const useNitroApp: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/app').useNitroApp
123
+ const useRuntimeConfig: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/config').useRuntimeConfig
124
+ const useSession: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').useSession
125
+ const useStorage: typeof import('../../node_modules/.pnpm/nitropack@2.13.0/node_modules/nitropack/dist/runtime/internal/storage').useStorage
126
+ const writeEarlyHints: typeof import('../../node_modules/.pnpm/h3@1.15.4/node_modules/h3').writeEarlyHints
127
+ }
128
+ export { useNitroApp } from 'nitropack/runtime/internal/app';
129
+ export { useRuntimeConfig, useAppConfig } from 'nitropack/runtime/internal/config';
130
+ export { defineNitroPlugin, nitroPlugin } from 'nitropack/runtime/internal/plugin';
131
+ export { defineCachedFunction, defineCachedEventHandler, cachedFunction, cachedEventHandler } from 'nitropack/runtime/internal/cache';
132
+ export { useStorage } from 'nitropack/runtime/internal/storage';
133
+ export { defineRenderHandler } from 'nitropack/runtime/internal/renderer';
134
+ export { defineRouteMeta } from 'nitropack/runtime/internal/meta';
135
+ export { getRouteRules } from 'nitropack/runtime/internal/route-rules';
136
+ export { useEvent } from 'nitropack/runtime/internal/context';
137
+ export { defineTask, runTask } from 'nitropack/runtime/internal/task';
138
+ export { defineNitroErrorHandler } from 'nitropack/runtime/internal/error/utils';
139
+ export { appendCorsHeaders, appendCorsPreflightHeaders, appendHeader, appendHeaders, appendResponseHeader, appendResponseHeaders, assertMethod, callNodeListener, clearResponseHeaders, clearSession, createApp, createAppEventHandler, createError, createEvent, createEventStream, createRouter, defaultContentType, defineEventHandler, defineLazyEventHandler, defineNodeListener, defineNodeMiddleware, defineRequestMiddleware, defineResponseMiddleware, defineWebSocket, defineWebSocketHandler, deleteCookie, dynamicEventHandler, eventHandler, fetchWithEvent, fromNodeMiddleware, fromPlainHandler, fromWebHandler, getCookie, getHeader, getHeaders, getMethod, getProxyRequestHeaders, getQuery, getRequestFingerprint, getRequestHeader, getRequestHeaders, getRequestHost, getRequestIP, getRequestPath, getRequestProtocol, getRequestURL, getRequestWebStream, getResponseHeader, getResponseHeaders, getResponseStatus, getResponseStatusText, getRouterParam, getRouterParams, getSession, getValidatedQuery, getValidatedRouterParams, handleCacheHeaders, handleCors, isCorsOriginAllowed, isError, isEvent, isEventHandler, isMethod, isPreflightRequest, isStream, isWebResponse, lazyEventHandler, parseCookies, promisifyNodeListener, proxyRequest, readBody, readFormData, readMultipartFormData, readRawBody, readValidatedBody, removeResponseHeader, sanitizeStatusCode, sanitizeStatusMessage, sealSession, send, sendError, sendIterable, sendNoContent, sendProxy, sendRedirect, sendStream, sendWebResponse, serveStatic, setCookie, setHeader, setHeaders, setResponseHeader, setResponseHeaders, setResponseStatus, splitCookiesString, toEventHandler, toNodeListener, toPlainHandler, toWebHandler, toWebRequest, unsealSession, updateSession, useBase, useSession, writeEarlyHints } from 'h3';
140
+ export { buildAssetsURL as __buildAssetsURL, publicAssetsURL as __publicAssetsURL } from '/Users/louis/CodingProjects/falcondev-oss/nuxt-layers/base/node_modules/.pnpm/@nuxt+nitro-server@4.2.2_db0@0.3.4_ioredis@5.9.1_magicast@0.5.1_nuxt@4.2.2_@parcel+watc_ee8d7c56ce54cfbfd60e67a79701f0ee/node_modules/@nuxt/nitro-server/dist/runtime/utils/paths';
141
+ export { defineAppConfig } from '/Users/louis/CodingProjects/falcondev-oss/nuxt-layers/base/node_modules/.pnpm/@nuxt+nitro-server@4.2.2_db0@0.3.4_ioredis@5.9.1_magicast@0.5.1_nuxt@4.2.2_@parcel+watc_ee8d7c56ce54cfbfd60e67a79701f0ee/node_modules/@nuxt/nitro-server/dist/runtime/utils/config';
@@ -0,0 +1,11 @@
1
+ export type MiddlewareKey = never
2
+ declare module 'nitropack/types' {
3
+ interface NitroRouteConfig {
4
+ appMiddleware?: MiddlewareKey | MiddlewareKey[] | Record<MiddlewareKey, boolean>
5
+ }
6
+ }
7
+ declare module 'nitropack' {
8
+ interface NitroRouteConfig {
9
+ appMiddleware?: MiddlewareKey | MiddlewareKey[] | Record<MiddlewareKey, boolean>
10
+ }
11
+ }
@@ -0,0 +1,61 @@
1
+
2
+ /// <reference path="app.config.d.ts" />
3
+ /// <reference path="runtime-config.d.ts" />
4
+ /// <reference types="/Users/louis/CodingProjects/falcondev-oss/nuxt-layers/base/node_modules/.pnpm/@nuxt+nitro-server@4.2.2_db0@0.3.4_ioredis@5.9.1_magicast@0.5.1_nuxt@4.2.2_@parcel+watc_ee8d7c56ce54cfbfd60e67a79701f0ee/node_modules/@nuxt/nitro-server/dist/index.mjs" />
5
+ /// <reference path="nitro-middleware.d.ts" />
6
+
7
+ import type { RuntimeConfig } from 'nuxt/schema'
8
+ import type { H3Event } from 'h3'
9
+ import type { LogObject } from 'consola'
10
+ import type { NuxtIslandContext, NuxtIslandResponse, NuxtRenderHTMLContext } from 'nuxt/app'
11
+
12
+ declare module 'nitropack' {
13
+ interface NitroRuntimeConfigApp {
14
+ buildAssetsDir: string
15
+ cdnURL: string
16
+ }
17
+ interface NitroRuntimeConfig extends RuntimeConfig {}
18
+ interface NitroRouteConfig {
19
+ ssr?: boolean
20
+ noScripts?: boolean
21
+ /** @deprecated Use `noScripts` instead */
22
+ experimentalNoScripts?: boolean
23
+ }
24
+ interface NitroRouteRules {
25
+ ssr?: boolean
26
+ noScripts?: boolean
27
+ /** @deprecated Use `noScripts` instead */
28
+ experimentalNoScripts?: boolean
29
+ appMiddleware?: Record<string, boolean>
30
+ }
31
+ interface NitroRuntimeHooks {
32
+ 'dev:ssr-logs': (ctx: { logs: LogObject[], path: string }) => void | Promise<void>
33
+ 'render:html': (htmlContext: NuxtRenderHTMLContext, context: { event: H3Event }) => void | Promise<void>
34
+ 'render:island': (islandResponse: NuxtIslandResponse, context: { event: H3Event, islandContext: NuxtIslandContext }) => void | Promise<void>
35
+ }
36
+ }
37
+ declare module 'nitropack/types' {
38
+ interface NitroRuntimeConfigApp {
39
+ buildAssetsDir: string
40
+ cdnURL: string
41
+ }
42
+ interface NitroRuntimeConfig extends RuntimeConfig {}
43
+ interface NitroRouteConfig {
44
+ ssr?: boolean
45
+ noScripts?: boolean
46
+ /** @deprecated Use `noScripts` instead */
47
+ experimentalNoScripts?: boolean
48
+ }
49
+ interface NitroRouteRules {
50
+ ssr?: boolean
51
+ noScripts?: boolean
52
+ /** @deprecated Use `noScripts` instead */
53
+ experimentalNoScripts?: boolean
54
+ appMiddleware?: Record<string, boolean>
55
+ }
56
+ interface NitroRuntimeHooks {
57
+ 'dev:ssr-logs': (ctx: { logs: LogObject[], path: string }) => void | Promise<void>
58
+ 'render:html': (htmlContext: NuxtRenderHTMLContext, context: { event: H3Event }) => void | Promise<void>
59
+ 'render:island': (islandResponse: NuxtIslandResponse, context: { event: H3Event, islandContext: NuxtIslandContext }) => void | Promise<void>
60
+ }
61
+ }
@@ -0,0 +1,17 @@
1
+ // Generated by nitro
2
+ import type { Serialize, Simplify } from "nitropack/types";
3
+ declare module "nitropack/types" {
4
+ type Awaited<T> = T extends PromiseLike<infer U> ? Awaited<U> : T
5
+ interface InternalApi {
6
+ '/__nuxt_error': {
7
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxt+nitro-server@4.2.2_db0@0.3.4_ioredis@5.9.1_magicast@0.5.1_nuxt@4.2.2_@parcel+watc_ee8d7c56ce54cfbfd60e67a79701f0ee/node_modules/@nuxt/nitro-server/dist/runtime/handlers/renderer').default>>>>
8
+ }
9
+ '/__nuxt_island/**': {
10
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../server/#internal/nuxt/island-renderer').default>>>>
11
+ }
12
+ '/_icons/:collection': {
13
+ 'default': Simplify<Serialize<Awaited<ReturnType<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/server/api').default>>>>
14
+ }
15
+ }
16
+ }
17
+ export {}
@@ -0,0 +1,3 @@
1
+ /// <reference path="./nitro-routes.d.ts" />
2
+ /// <reference path="./nitro-config.d.ts" />
3
+ /// <reference path="./nitro-imports.d.ts" />
@@ -0,0 +1,35 @@
1
+ // Generated by Nuxt'
2
+ import type { Plugin } from '#app'
3
+
4
+ type Decorate<T extends Record<string, any>> = { [K in keyof T as K extends string ? `$${K}` : never]: T[K] }
5
+
6
+ type InjectionType<A extends Plugin> = A extends {default: Plugin<infer T>} ? Decorate<T> : unknown
7
+
8
+ type NuxtAppInjections =
9
+ InjectionType<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/plugins/revive-payload.client.js")> &
10
+ InjectionType<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/plugins/unhead.js")> &
11
+ InjectionType<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/plugins/router.js")> &
12
+ InjectionType<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/plugins/payload.client.js")> &
13
+ InjectionType<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/plugins/navigation-repaint.client.js")> &
14
+ InjectionType<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/plugins/check-outdated-build.client.js")> &
15
+ InjectionType<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/plugins/revive-payload.server.js")> &
16
+ InjectionType<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/plugins/chunk-reload.client.js")> &
17
+ InjectionType<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/plugins/prefetch.client.js")> &
18
+ InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+ui@4.3.0_acd7e9902344ed04281e7d85198cbb74/node_modules/@nuxt/ui/dist/runtime/plugins/colors.js")> &
19
+ InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+color-mode@4.0.0_magicast@0.5.1/node_modules/@nuxtjs/color-mode/dist/runtime/plugin.server.js")> &
20
+ InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+color-mode@4.0.0_magicast@0.5.1/node_modules/@nuxtjs/color-mode/dist/runtime/plugin.client.js")> &
21
+ InjectionType<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/plugin.js")>
22
+
23
+ declare module '#app' {
24
+ interface NuxtApp extends NuxtAppInjections { }
25
+
26
+ interface NuxtAppLiterals {
27
+ pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:payload' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'nuxt:global-components' | 'nuxt:prefetch' | '@nuxt/icon'
28
+ }
29
+ }
30
+
31
+ declare module 'vue' {
32
+ interface ComponentCustomProperties extends NuxtAppInjections { }
33
+ }
34
+
35
+ export { }
@@ -0,0 +1,36 @@
1
+ import { RuntimeConfig as UserRuntimeConfig, PublicRuntimeConfig as UserPublicRuntimeConfig } from 'nuxt/schema'
2
+ interface SharedRuntimeConfig {
3
+ app: {
4
+ buildId: string,
5
+
6
+ baseURL: string,
7
+
8
+ buildAssetsDir: string,
9
+
10
+ cdnURL: string,
11
+ },
12
+
13
+ nitro: {
14
+ envPrefix: string,
15
+ },
16
+
17
+ icon: {
18
+ serverKnownCssClasses: Array<any>,
19
+ },
20
+ }
21
+ interface SharedPublicRuntimeConfig {
22
+ projectId: string,
23
+ }
24
+ declare module '@nuxt/schema' {
25
+ interface RuntimeConfig extends UserRuntimeConfig {}
26
+ interface PublicRuntimeConfig extends UserPublicRuntimeConfig {}
27
+ }
28
+ declare module 'nuxt/schema' {
29
+ interface RuntimeConfig extends SharedRuntimeConfig {}
30
+ interface PublicRuntimeConfig extends SharedPublicRuntimeConfig {}
31
+ }
32
+ declare module 'vue' {
33
+ interface ComponentCustomProperties {
34
+ $config: UserRuntimeConfig
35
+ }
36
+ }
@@ -0,0 +1,36 @@
1
+ import * as ui from '#build/ui'
2
+ import type { TVConfig } from '@nuxt/ui'
3
+ import type { defaultConfig } from 'tailwind-variants'
4
+ import colors from 'tailwindcss/colors'
5
+
6
+ type IconsConfig = Record<"arrowDown" | "arrowLeft" | "arrowRight" | "arrowUp" | "caution" | "check" | "chevronDoubleLeft" | "chevronDoubleRight" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "close" | "copy" | "copyCheck" | "dark" | "drag" | "ellipsis" | "error" | "external" | "eye" | "eyeOff" | "file" | "folder" | "folderOpen" | "hash" | "info" | "light" | "loading" | "menu" | "minus" | "panelClose" | "panelOpen" | "plus" | "reload" | "search" | "stop" | "success" | "system" | "tip" | "upload" | "warning" | (string & {}), string>
7
+
8
+ type NeutralColor = 'slate' | 'gray' | 'zinc' | 'neutral' | 'stone'
9
+ type Color = Exclude<keyof typeof colors, 'inherit' | 'current' | 'transparent' | 'black' | 'white' | NeutralColor> | (string & {})
10
+
11
+ type AppConfigUI = {
12
+ colors?: {
13
+ 'primary'?: Color
14
+ 'secondary'?: Color
15
+ 'success'?: Color
16
+ 'info'?: Color
17
+ 'warning'?: Color
18
+ 'error'?: Color
19
+ neutral?: NeutralColor | (string & {})
20
+ }
21
+ icons?: Partial<IconsConfig>
22
+ prefix?: string
23
+ tv?: typeof defaultConfig
24
+ } & TVConfig<typeof ui>
25
+
26
+ declare module '@nuxt/schema' {
27
+ interface AppConfigInput {
28
+ /**
29
+ * Nuxt UI theme configuration
30
+ * @see https://ui.nuxt.com/docs/getting-started/theme/components
31
+ */
32
+ ui?: AppConfigUI
33
+ }
34
+ }
35
+
36
+ export {}
File without changes
@@ -0,0 +1,20 @@
1
+ export default {
2
+ "slots": {
3
+ "root": "w-full",
4
+ "item": "border-b border-default last:border-b-0",
5
+ "header": "flex",
6
+ "trigger": "group flex-1 flex items-center gap-1.5 font-medium text-sm py-3.5 focus-visible:outline-primary min-w-0",
7
+ "content": "data-[state=open]:animate-[accordion-down_200ms_ease-out] data-[state=closed]:animate-[accordion-up_200ms_ease-out] overflow-hidden focus:outline-none",
8
+ "body": "text-sm pb-3.5",
9
+ "leadingIcon": "shrink-0 size-5",
10
+ "trailingIcon": "shrink-0 size-5 ms-auto group-data-[state=open]:rotate-180 transition-transform duration-200",
11
+ "label": "text-start break-words"
12
+ },
13
+ "variants": {
14
+ "disabled": {
15
+ "true": {
16
+ "trigger": "cursor-not-allowed opacity-75"
17
+ }
18
+ }
19
+ }
20
+ }