@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,331 @@
1
+
2
+ import type { AppConfigInput, CustomAppConfig } from 'nuxt/schema'
3
+ import type { Defu } from 'defu'
4
+ import cfg0 from "../../app/app.config"
5
+
6
+ declare global {
7
+ const defineAppConfig: <C extends AppConfigInput> (config: C) => C
8
+ }
9
+
10
+ declare const inlineConfig = {
11
+ "nuxt": {},
12
+ "ui": {
13
+ "colors": {
14
+ "primary": "green",
15
+ "secondary": "blue",
16
+ "success": "green",
17
+ "info": "blue",
18
+ "warning": "yellow",
19
+ "error": "red",
20
+ "neutral": "slate"
21
+ },
22
+ "icons": {
23
+ "arrowDown": "i-lucide-arrow-down",
24
+ "arrowLeft": "i-lucide-arrow-left",
25
+ "arrowRight": "i-lucide-arrow-right",
26
+ "arrowUp": "i-lucide-arrow-up",
27
+ "caution": "i-lucide-circle-alert",
28
+ "check": "i-lucide-check",
29
+ "chevronDoubleLeft": "i-lucide-chevrons-left",
30
+ "chevronDoubleRight": "i-lucide-chevrons-right",
31
+ "chevronDown": "i-lucide-chevron-down",
32
+ "chevronLeft": "i-lucide-chevron-left",
33
+ "chevronRight": "i-lucide-chevron-right",
34
+ "chevronUp": "i-lucide-chevron-up",
35
+ "close": "i-lucide-x",
36
+ "copy": "i-lucide-copy",
37
+ "copyCheck": "i-lucide-copy-check",
38
+ "dark": "i-lucide-moon",
39
+ "drag": "i-lucide-grip-vertical",
40
+ "ellipsis": "i-lucide-ellipsis",
41
+ "error": "i-lucide-circle-x",
42
+ "external": "i-lucide-arrow-up-right",
43
+ "eye": "i-lucide-eye",
44
+ "eyeOff": "i-lucide-eye-off",
45
+ "file": "i-lucide-file",
46
+ "folder": "i-lucide-folder",
47
+ "folderOpen": "i-lucide-folder-open",
48
+ "hash": "i-lucide-hash",
49
+ "info": "i-lucide-info",
50
+ "light": "i-lucide-sun",
51
+ "loading": "i-lucide-loader-circle",
52
+ "menu": "i-lucide-menu",
53
+ "minus": "i-lucide-minus",
54
+ "panelClose": "i-lucide-panel-left-close",
55
+ "panelOpen": "i-lucide-panel-left-open",
56
+ "plus": "i-lucide-plus",
57
+ "reload": "i-lucide-rotate-ccw",
58
+ "search": "i-lucide-search",
59
+ "stop": "i-lucide-square",
60
+ "success": "i-lucide-circle-check",
61
+ "system": "i-lucide-monitor",
62
+ "tip": "i-lucide-lightbulb",
63
+ "upload": "i-lucide-upload",
64
+ "warning": "i-lucide-triangle-alert"
65
+ },
66
+ "tv": {
67
+ "twMergeConfig": {}
68
+ }
69
+ },
70
+ "icon": {
71
+ "provider": "server",
72
+ "class": "",
73
+ "aliases": {},
74
+ "iconifyApiEndpoint": "https://api.iconify.design",
75
+ "localApiEndpoint": "/_icons",
76
+ "fallbackToApi": true,
77
+ "cssSelectorPrefix": "i-",
78
+ "cssWherePseudo": true,
79
+ "cssLayer": "base",
80
+ "mode": "css",
81
+ "attrs": {
82
+ "aria-hidden": true
83
+ },
84
+ "collections": [
85
+ "academicons",
86
+ "akar-icons",
87
+ "ant-design",
88
+ "arcticons",
89
+ "basil",
90
+ "bi",
91
+ "bitcoin-icons",
92
+ "bpmn",
93
+ "brandico",
94
+ "bx",
95
+ "bxl",
96
+ "bxs",
97
+ "bytesize",
98
+ "carbon",
99
+ "catppuccin",
100
+ "cbi",
101
+ "charm",
102
+ "ci",
103
+ "cib",
104
+ "cif",
105
+ "cil",
106
+ "circle-flags",
107
+ "circum",
108
+ "clarity",
109
+ "codex",
110
+ "codicon",
111
+ "covid",
112
+ "cryptocurrency",
113
+ "cryptocurrency-color",
114
+ "cuida",
115
+ "dashicons",
116
+ "devicon",
117
+ "devicon-plain",
118
+ "dinkie-icons",
119
+ "duo-icons",
120
+ "ei",
121
+ "el",
122
+ "emojione",
123
+ "emojione-monotone",
124
+ "emojione-v1",
125
+ "entypo",
126
+ "entypo-social",
127
+ "eos-icons",
128
+ "ep",
129
+ "et",
130
+ "eva",
131
+ "f7",
132
+ "fa",
133
+ "fa-brands",
134
+ "fa-regular",
135
+ "fa-solid",
136
+ "fa6-brands",
137
+ "fa6-regular",
138
+ "fa6-solid",
139
+ "fa7-brands",
140
+ "fa7-regular",
141
+ "fa7-solid",
142
+ "fad",
143
+ "famicons",
144
+ "fe",
145
+ "feather",
146
+ "file-icons",
147
+ "flag",
148
+ "flagpack",
149
+ "flat-color-icons",
150
+ "flat-ui",
151
+ "flowbite",
152
+ "fluent",
153
+ "fluent-color",
154
+ "fluent-emoji",
155
+ "fluent-emoji-flat",
156
+ "fluent-emoji-high-contrast",
157
+ "fluent-mdl2",
158
+ "fontelico",
159
+ "fontisto",
160
+ "formkit",
161
+ "foundation",
162
+ "fxemoji",
163
+ "gala",
164
+ "game-icons",
165
+ "garden",
166
+ "geo",
167
+ "gg",
168
+ "gis",
169
+ "gravity-ui",
170
+ "gridicons",
171
+ "grommet-icons",
172
+ "guidance",
173
+ "healthicons",
174
+ "heroicons",
175
+ "heroicons-outline",
176
+ "heroicons-solid",
177
+ "hugeicons",
178
+ "humbleicons",
179
+ "ic",
180
+ "icomoon-free",
181
+ "icon-park",
182
+ "icon-park-outline",
183
+ "icon-park-solid",
184
+ "icon-park-twotone",
185
+ "iconamoon",
186
+ "iconoir",
187
+ "icons8",
188
+ "il",
189
+ "ion",
190
+ "iwwa",
191
+ "ix",
192
+ "jam",
193
+ "la",
194
+ "lets-icons",
195
+ "line-md",
196
+ "lineicons",
197
+ "logos",
198
+ "ls",
199
+ "lsicon",
200
+ "lucide",
201
+ "lucide-lab",
202
+ "mage",
203
+ "majesticons",
204
+ "maki",
205
+ "map",
206
+ "marketeq",
207
+ "material-icon-theme",
208
+ "material-symbols",
209
+ "material-symbols-light",
210
+ "mdi",
211
+ "mdi-light",
212
+ "medical-icon",
213
+ "memory",
214
+ "meteocons",
215
+ "meteor-icons",
216
+ "mi",
217
+ "mingcute",
218
+ "mono-icons",
219
+ "mynaui",
220
+ "nimbus",
221
+ "nonicons",
222
+ "noto",
223
+ "noto-v1",
224
+ "nrk",
225
+ "octicon",
226
+ "oi",
227
+ "ooui",
228
+ "openmoji",
229
+ "oui",
230
+ "pajamas",
231
+ "pepicons",
232
+ "pepicons-pencil",
233
+ "pepicons-pop",
234
+ "pepicons-print",
235
+ "ph",
236
+ "picon",
237
+ "pixel",
238
+ "pixelarticons",
239
+ "prime",
240
+ "proicons",
241
+ "ps",
242
+ "qlementine-icons",
243
+ "quill",
244
+ "radix-icons",
245
+ "raphael",
246
+ "ri",
247
+ "rivet-icons",
248
+ "roentgen",
249
+ "si",
250
+ "si-glyph",
251
+ "sidekickicons",
252
+ "simple-icons",
253
+ "simple-line-icons",
254
+ "skill-icons",
255
+ "solar",
256
+ "stash",
257
+ "streamline",
258
+ "streamline-block",
259
+ "streamline-color",
260
+ "streamline-cyber",
261
+ "streamline-cyber-color",
262
+ "streamline-emojis",
263
+ "streamline-flex",
264
+ "streamline-flex-color",
265
+ "streamline-freehand",
266
+ "streamline-freehand-color",
267
+ "streamline-kameleon-color",
268
+ "streamline-logos",
269
+ "streamline-pixel",
270
+ "streamline-plump",
271
+ "streamline-plump-color",
272
+ "streamline-sharp",
273
+ "streamline-sharp-color",
274
+ "streamline-stickies-color",
275
+ "streamline-ultimate",
276
+ "streamline-ultimate-color",
277
+ "subway",
278
+ "svg-spinners",
279
+ "system-uicons",
280
+ "tabler",
281
+ "tdesign",
282
+ "teenyicons",
283
+ "temaki",
284
+ "token",
285
+ "token-branded",
286
+ "topcoat",
287
+ "twemoji",
288
+ "typcn",
289
+ "uil",
290
+ "uim",
291
+ "uis",
292
+ "uit",
293
+ "uiw",
294
+ "unjs",
295
+ "vaadin",
296
+ "vs",
297
+ "vscode-icons",
298
+ "websymbol",
299
+ "weui",
300
+ "whh",
301
+ "wi",
302
+ "wpf",
303
+ "zmdi",
304
+ "zondicons"
305
+ ],
306
+ "fetchTimeout": 1500
307
+ }
308
+ }
309
+ type ResolvedAppConfig = Defu<typeof inlineConfig, [typeof cfg0]>
310
+ type IsAny<T> = 0 extends 1 & T ? true : false
311
+
312
+ type MergedAppConfig<Resolved extends Record<string, unknown>, Custom extends Record<string, unknown>> = {
313
+ [K in keyof (Resolved & Custom)]: K extends keyof Custom
314
+ ? unknown extends Custom[K]
315
+ ? Resolved[K]
316
+ : IsAny<Custom[K]> extends true
317
+ ? Resolved[K]
318
+ : Custom[K] extends Record<string, any>
319
+ ? Resolved[K] extends Record<string, any>
320
+ ? MergedAppConfig<Resolved[K], Custom[K]>
321
+ : Exclude<Custom[K], undefined>
322
+ : Exclude<Custom[K], undefined>
323
+ : Resolved[K]
324
+ }
325
+
326
+ declare module 'nuxt/schema' {
327
+ interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
328
+ }
329
+ declare module '@nuxt/schema' {
330
+ interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
331
+ }
@@ -0,0 +1,24 @@
1
+ declare module "#build/app-component.mjs";
2
+ declare module "#build/nitro.client.mjs";
3
+ declare module "#build/plugins.client.mjs";
4
+ declare module "#build/css.mjs";
5
+ declare module "#build/fetch.mjs";
6
+ declare module "#build/error-component.mjs";
7
+ declare module "#build/global-polyfills.mjs";
8
+ declare module "#build/layouts.mjs";
9
+ declare module "#build/middleware.mjs";
10
+ declare module "#build/nuxt.config.mjs";
11
+ declare module "#build/paths.mjs";
12
+ declare module "#build/root-component.mjs";
13
+ declare module "#build/plugins.server.mjs";
14
+ declare module "#build/test-component-wrapper.mjs";
15
+ declare module "#build/color-mode-options.mjs";
16
+ declare module "#build/routes.mjs";
17
+ declare module "#build/pages.mjs";
18
+ declare module "#build/router.options.mjs";
19
+ declare module "#build/unhead-options.mjs";
20
+ declare module "#build/unhead.config.mjs";
21
+ declare module "#build/components.plugin.mjs";
22
+ declare module "#build/component-names.mjs";
23
+ declare module "#build/components.islands.mjs";
24
+ declare module "#build/component-chunk.mjs";
@@ -0,0 +1 @@
1
+ import "vite/client";