@quvel-kit/core 1.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 (285) hide show
  1. package/README.md +670 -0
  2. package/dist/auth/boot/defineAuthGuard.d.ts +54 -0
  3. package/dist/auth/boot/defineAuthGuard.d.ts.map +1 -0
  4. package/dist/auth/boot/defineAuthGuard.js +72 -0
  5. package/dist/auth/enums/AuthStatusEnum.d.ts +13 -0
  6. package/dist/auth/enums/AuthStatusEnum.d.ts.map +1 -0
  7. package/dist/auth/enums/AuthStatusEnum.js +13 -0
  8. package/dist/auth/index.d.ts +13 -0
  9. package/dist/auth/index.d.ts.map +1 -0
  10. package/dist/auth/index.js +13 -0
  11. package/dist/auth/services/AuthGuard.d.ts +58 -0
  12. package/dist/auth/services/AuthGuard.d.ts.map +1 -0
  13. package/dist/auth/services/AuthGuard.js +51 -0
  14. package/dist/auth/services/AuthService.d.ts +52 -0
  15. package/dist/auth/services/AuthService.d.ts.map +1 -0
  16. package/dist/auth/services/AuthService.js +67 -0
  17. package/dist/auth/services/PasswordResetService.d.ts +34 -0
  18. package/dist/auth/services/PasswordResetService.d.ts.map +1 -0
  19. package/dist/auth/services/PasswordResetService.js +45 -0
  20. package/dist/auth/services/TwoFactorChallengeService.d.ts +22 -0
  21. package/dist/auth/services/TwoFactorChallengeService.d.ts.map +1 -0
  22. package/dist/auth/services/TwoFactorChallengeService.js +29 -0
  23. package/dist/auth/services/TwoFactorService.d.ts +64 -0
  24. package/dist/auth/services/TwoFactorService.d.ts.map +1 -0
  25. package/dist/auth/services/TwoFactorService.js +68 -0
  26. package/dist/auth/services/index.d.ts +8 -0
  27. package/dist/auth/services/index.d.ts.map +1 -0
  28. package/dist/auth/services/index.js +5 -0
  29. package/dist/auth/types/auth-meta.d.ts +54 -0
  30. package/dist/auth/types/auth-meta.d.ts.map +1 -0
  31. package/dist/auth/types/auth-meta.js +6 -0
  32. package/dist/auth/types/index.d.ts +5 -0
  33. package/dist/auth/types/index.d.ts.map +1 -0
  34. package/dist/auth/types/index.js +4 -0
  35. package/dist/auth/utils/auth-meta.d.ts +75 -0
  36. package/dist/auth/utils/auth-meta.d.ts.map +1 -0
  37. package/dist/auth/utils/auth-meta.js +93 -0
  38. package/dist/boot/quvel.d.ts +26 -0
  39. package/dist/boot/quvel.d.ts.map +1 -0
  40. package/dist/boot/quvel.js +38 -0
  41. package/dist/build/index.d.ts +9 -0
  42. package/dist/build/index.d.ts.map +1 -0
  43. package/dist/build/index.js +8 -0
  44. package/dist/build/loadEnv.d.ts +14 -0
  45. package/dist/build/loadEnv.d.ts.map +1 -0
  46. package/dist/build/loadEnv.js +33 -0
  47. package/dist/build/quasarConfig.d.ts +67 -0
  48. package/dist/build/quasarConfig.d.ts.map +1 -0
  49. package/dist/build/quasarConfig.js +126 -0
  50. package/dist/components/Common/TaskErrors.vue +47 -0
  51. package/dist/components/Inputs/BaseInput.vue +88 -0
  52. package/dist/components/Misc/ClientOnly.vue +22 -0
  53. package/dist/components/Transitions/FadeInOut.vue +9 -0
  54. package/dist/components/Transitions/SlowExpand.vue +13 -0
  55. package/dist/components/WebSocketChannelManager.vue +634 -0
  56. package/dist/components/index.d.ts +12 -0
  57. package/dist/components/index.d.ts.map +1 -0
  58. package/dist/components/index.js +16 -0
  59. package/dist/composables/index.d.ts +19 -0
  60. package/dist/composables/index.d.ts.map +1 -0
  61. package/dist/composables/index.js +16 -0
  62. package/dist/composables/useClient.d.ts +16 -0
  63. package/dist/composables/useClient.d.ts.map +1 -0
  64. package/dist/composables/useClient.js +28 -0
  65. package/dist/composables/useMetaConfig.d.ts +14 -0
  66. package/dist/composables/useMetaConfig.d.ts.map +1 -0
  67. package/dist/composables/useMetaConfig.js +77 -0
  68. package/dist/composables/useQueryMessageHandler.d.ts +44 -0
  69. package/dist/composables/useQueryMessageHandler.d.ts.map +1 -0
  70. package/dist/composables/useQueryMessageHandler.js +74 -0
  71. package/dist/composables/useQuvel.d.ts +15 -0
  72. package/dist/composables/useQuvel.d.ts.map +1 -0
  73. package/dist/composables/useQuvel.js +38 -0
  74. package/dist/composables/useRecaptcha.d.ts +35 -0
  75. package/dist/composables/useRecaptcha.d.ts.map +1 -0
  76. package/dist/composables/useRecaptcha.js +87 -0
  77. package/dist/composables/useScopedService.d.ts +18 -0
  78. package/dist/composables/useScopedService.d.ts.map +1 -0
  79. package/dist/composables/useScopedService.js +25 -0
  80. package/dist/composables/useScript.d.ts +25 -0
  81. package/dist/composables/useScript.d.ts.map +1 -0
  82. package/dist/composables/useScript.js +106 -0
  83. package/dist/composables/useUrlQueryHandler.d.ts +38 -0
  84. package/dist/composables/useUrlQueryHandler.d.ts.map +1 -0
  85. package/dist/composables/useUrlQueryHandler.js +76 -0
  86. package/dist/composables/useWebSockets.d.ts +18 -0
  87. package/dist/composables/useWebSockets.d.ts.map +1 -0
  88. package/dist/composables/useWebSockets.js +55 -0
  89. package/dist/composables/useWindowEvent.d.ts +16 -0
  90. package/dist/composables/useWindowEvent.d.ts.map +1 -0
  91. package/dist/composables/useWindowEvent.js +27 -0
  92. package/dist/composables/useXsrf.d.ts +29 -0
  93. package/dist/composables/useXsrf.d.ts.map +1 -0
  94. package/dist/composables/useXsrf.js +59 -0
  95. package/dist/config/QuasarConfigBuilder.d.ts +100 -0
  96. package/dist/config/QuasarConfigBuilder.d.ts.map +1 -0
  97. package/dist/config/QuasarConfigBuilder.js +98 -0
  98. package/dist/config/i18n.d.ts +23 -0
  99. package/dist/config/i18n.d.ts.map +1 -0
  100. package/dist/config/i18n.js +43 -0
  101. package/dist/config/index.d.ts +8 -0
  102. package/dist/config/index.d.ts.map +1 -0
  103. package/dist/config/index.js +7 -0
  104. package/dist/config/moduleTransformer.d.ts +18 -0
  105. package/dist/config/moduleTransformer.d.ts.map +1 -0
  106. package/dist/config/moduleTransformer.js +76 -0
  107. package/dist/config/quvel.d.ts +40 -0
  108. package/dist/config/quvel.d.ts.map +1 -0
  109. package/dist/config/quvel.js +59 -0
  110. package/dist/config/quvel.types.d.ts +59 -0
  111. package/dist/config/quvel.types.d.ts.map +1 -0
  112. package/dist/config/quvel.types.js +6 -0
  113. package/dist/container/ServiceContainer.d.ts +107 -0
  114. package/dist/container/ServiceContainer.d.ts.map +1 -0
  115. package/dist/container/ServiceContainer.js +201 -0
  116. package/dist/container/types/vue.d.ts +9 -0
  117. package/dist/container/types.d.ts +81 -0
  118. package/dist/container/types.d.ts.map +1 -0
  119. package/dist/container/types.js +1 -0
  120. package/dist/i18n/en-US/common.d.ts +19 -0
  121. package/dist/i18n/en-US/common.d.ts.map +1 -0
  122. package/dist/i18n/en-US/common.js +17 -0
  123. package/dist/i18n/en-US/index.d.ts +21 -0
  124. package/dist/i18n/en-US/index.d.ts.map +1 -0
  125. package/dist/i18n/en-US/index.js +4 -0
  126. package/dist/i18n/es-MX/common.d.ts +19 -0
  127. package/dist/i18n/es-MX/common.d.ts.map +1 -0
  128. package/dist/i18n/es-MX/common.js +17 -0
  129. package/dist/i18n/es-MX/index.d.ts +21 -0
  130. package/dist/i18n/es-MX/index.d.ts.map +1 -0
  131. package/dist/i18n/es-MX/index.js +4 -0
  132. package/dist/index.d.ts +54 -0
  133. package/dist/index.d.ts.map +1 -0
  134. package/dist/index.js +67 -0
  135. package/dist/models/User.d.ts +32 -0
  136. package/dist/models/User.d.ts.map +1 -0
  137. package/dist/models/User.js +48 -0
  138. package/dist/module.d.ts +21 -0
  139. package/dist/module.d.ts.map +1 -0
  140. package/dist/module.js +45 -0
  141. package/dist/modules/helpers.d.ts +30 -0
  142. package/dist/modules/helpers.d.ts.map +1 -0
  143. package/dist/modules/helpers.js +45 -0
  144. package/dist/modules/index.d.ts +8 -0
  145. package/dist/modules/index.d.ts.map +1 -0
  146. package/dist/modules/index.js +6 -0
  147. package/dist/modules/types.d.ts +141 -0
  148. package/dist/modules/types.d.ts.map +1 -0
  149. package/dist/modules/types.js +7 -0
  150. package/dist/pages/ErrorNotFound.vue +300 -0
  151. package/dist/pages/index.d.ts +7 -0
  152. package/dist/pages/index.d.ts.map +1 -0
  153. package/dist/pages/index.js +6 -0
  154. package/dist/services/ApiService.d.ts +90 -0
  155. package/dist/services/ApiService.d.ts.map +1 -0
  156. package/dist/services/ApiService.js +159 -0
  157. package/dist/services/I18nService.d.ts +67 -0
  158. package/dist/services/I18nService.d.ts.map +1 -0
  159. package/dist/services/I18nService.js +92 -0
  160. package/dist/services/LogService.d.ts +31 -0
  161. package/dist/services/LogService.d.ts.map +1 -0
  162. package/dist/services/LogService.js +49 -0
  163. package/dist/services/Service.d.ts +10 -0
  164. package/dist/services/Service.d.ts.map +1 -0
  165. package/dist/services/Service.js +8 -0
  166. package/dist/services/TaskService.d.ts +64 -0
  167. package/dist/services/TaskService.d.ts.map +1 -0
  168. package/dist/services/TaskService.js +188 -0
  169. package/dist/services/ThemeService.d.ts +28 -0
  170. package/dist/services/ThemeService.d.ts.map +1 -0
  171. package/dist/services/ThemeService.js +77 -0
  172. package/dist/services/ValidationService.d.ts +55 -0
  173. package/dist/services/ValidationService.d.ts.map +1 -0
  174. package/dist/services/ValidationService.js +81 -0
  175. package/dist/services/WebSocketService.d.ts +59 -0
  176. package/dist/services/WebSocketService.d.ts.map +1 -0
  177. package/dist/services/WebSocketService.js +148 -0
  178. package/dist/services/logger/BaseLogger.d.ts +35 -0
  179. package/dist/services/logger/BaseLogger.d.ts.map +1 -0
  180. package/dist/services/logger/BaseLogger.js +66 -0
  181. package/dist/services/logger/ConsoleLogger.d.ts +21 -0
  182. package/dist/services/logger/ConsoleLogger.d.ts.map +1 -0
  183. package/dist/services/logger/ConsoleLogger.js +60 -0
  184. package/dist/services/logger/NullLogger.d.ts +10 -0
  185. package/dist/services/logger/NullLogger.d.ts.map +1 -0
  186. package/dist/services/logger/NullLogger.js +10 -0
  187. package/dist/stores/plugins/serviceContainer.d.ts +10 -0
  188. package/dist/stores/plugins/serviceContainer.d.ts.map +1 -0
  189. package/dist/stores/plugins/serviceContainer.js +14 -0
  190. package/dist/stores/sessionStore.d.ts +71 -0
  191. package/dist/stores/sessionStore.d.ts.map +1 -0
  192. package/dist/stores/sessionStore.js +125 -0
  193. package/dist/types/app.types.d.ts +202 -0
  194. package/dist/types/app.types.d.ts.map +1 -0
  195. package/dist/types/app.types.js +6 -0
  196. package/dist/types/config.types.d.ts +2 -0
  197. package/dist/types/config.types.d.ts.map +1 -0
  198. package/dist/types/config.types.js +1 -0
  199. package/dist/types/global.d.ts +33 -0
  200. package/dist/types/i18n.types.d.ts +21 -0
  201. package/dist/types/i18n.types.d.ts.map +1 -0
  202. package/dist/types/i18n.types.js +6 -0
  203. package/dist/types/laravel.types.d.ts +167 -0
  204. package/dist/types/laravel.types.d.ts.map +1 -0
  205. package/dist/types/laravel.types.js +6 -0
  206. package/dist/types/logging.types.d.ts +81 -0
  207. package/dist/types/logging.types.d.ts.map +1 -0
  208. package/dist/types/logging.types.js +22 -0
  209. package/dist/types/pinia.d.ts +24 -0
  210. package/dist/types/scripts.types.d.ts +31 -0
  211. package/dist/types/scripts.types.d.ts.map +1 -0
  212. package/dist/types/scripts.types.js +6 -0
  213. package/dist/types/ssr.d.ts +11 -0
  214. package/dist/types/task.types.d.ts +121 -0
  215. package/dist/types/task.types.d.ts.map +1 -0
  216. package/dist/types/task.types.js +7 -0
  217. package/dist/types/theme.types.d.ts +13 -0
  218. package/dist/types/theme.types.d.ts.map +1 -0
  219. package/dist/types/theme.types.js +17 -0
  220. package/dist/types/user.types.d.ts +24 -0
  221. package/dist/types/user.types.d.ts.map +1 -0
  222. package/dist/types/user.types.js +1 -0
  223. package/dist/types/vue-shim.d.ts +11 -0
  224. package/dist/types/websocket.types.d.ts +62 -0
  225. package/dist/types/websocket.types.d.ts.map +1 -0
  226. package/dist/types/websocket.types.js +6 -0
  227. package/dist/utils/apiInterceptors.d.ts +76 -0
  228. package/dist/utils/apiInterceptors.d.ts.map +1 -0
  229. package/dist/utils/apiInterceptors.js +149 -0
  230. package/dist/utils/assets.d.ts +40 -0
  231. package/dist/utils/assets.d.ts.map +1 -0
  232. package/dist/utils/assets.js +340 -0
  233. package/dist/utils/axios.d.ts +19 -0
  234. package/dist/utils/axios.d.ts.map +1 -0
  235. package/dist/utils/axios.js +113 -0
  236. package/dist/utils/config.d.ts +16 -0
  237. package/dist/utils/config.d.ts.map +1 -0
  238. package/dist/utils/config.js +48 -0
  239. package/dist/utils/container.d.ts +12 -0
  240. package/dist/utils/container.d.ts.map +1 -0
  241. package/dist/utils/container.js +11 -0
  242. package/dist/utils/deepMerge.d.ts +28 -0
  243. package/dist/utils/deepMerge.d.ts.map +1 -0
  244. package/dist/utils/deepMerge.js +59 -0
  245. package/dist/utils/envConfig.d.ts +73 -0
  246. package/dist/utils/envConfig.d.ts.map +1 -0
  247. package/dist/utils/envConfig.js +161 -0
  248. package/dist/utils/error.d.ts +44 -0
  249. package/dist/utils/error.d.ts.map +1 -0
  250. package/dist/utils/error.js +67 -0
  251. package/dist/utils/headers.d.ts +36 -0
  252. package/dist/utils/headers.d.ts.map +1 -0
  253. package/dist/utils/headers.js +54 -0
  254. package/dist/utils/i18n.d.ts +26 -0
  255. package/dist/utils/i18n.d.ts.map +1 -0
  256. package/dist/utils/i18n.js +56 -0
  257. package/dist/utils/index.d.ts +14 -0
  258. package/dist/utils/index.d.ts.map +1 -0
  259. package/dist/utils/index.js +13 -0
  260. package/dist/utils/loading.d.ts +29 -0
  261. package/dist/utils/loading.d.ts.map +1 -0
  262. package/dist/utils/loading.js +46 -0
  263. package/dist/utils/logging.d.ts +20 -0
  264. package/dist/utils/logging.d.ts.map +1 -0
  265. package/dist/utils/logging.js +54 -0
  266. package/dist/utils/notify.d.ts +15 -0
  267. package/dist/utils/notify.d.ts.map +1 -0
  268. package/dist/utils/notify.js +30 -0
  269. package/dist/utils/object.d.ts +28 -0
  270. package/dist/utils/object.d.ts.map +1 -0
  271. package/dist/utils/object.js +48 -0
  272. package/dist/utils/pagination.d.ts +60 -0
  273. package/dist/utils/pagination.d.ts.map +1 -0
  274. package/dist/utils/pagination.js +252 -0
  275. package/dist/utils/paths.d.ts +54 -0
  276. package/dist/utils/paths.d.ts.map +1 -0
  277. package/dist/utils/paths.js +48 -0
  278. package/dist/utils/platform.d.ts +25 -0
  279. package/dist/utils/platform.d.ts.map +1 -0
  280. package/dist/utils/platform.js +64 -0
  281. package/dist/utils/scripts.d.ts +20 -0
  282. package/dist/utils/scripts.d.ts.map +1 -0
  283. package/dist/utils/scripts.js +39 -0
  284. package/global.d.ts +29 -0
  285. package/package.json +119 -0
@@ -0,0 +1,17 @@
1
+ export default {
2
+ task: {
3
+ success: 'Action was successful!',
4
+ error: 'Action failed. Please try again.',
5
+ },
6
+ errors: {
7
+ notFound: {
8
+ title: 'Page Not Found',
9
+ description: 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.',
10
+ help: 'If you believe this is an error, please contact support.',
11
+ actions: {
12
+ home: 'Go Home',
13
+ back: 'Go Back',
14
+ },
15
+ },
16
+ },
17
+ };
@@ -0,0 +1,21 @@
1
+ declare const _default: {
2
+ common: {
3
+ task: {
4
+ success: string;
5
+ error: string;
6
+ };
7
+ errors: {
8
+ notFound: {
9
+ title: string;
10
+ description: string;
11
+ help: string;
12
+ actions: {
13
+ home: string;
14
+ back: string;
15
+ };
16
+ };
17
+ };
18
+ };
19
+ };
20
+ export default _default;
21
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/i18n/en-US/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAEA,wBAEE"}
@@ -0,0 +1,4 @@
1
+ import common from './common.js';
2
+ export default {
3
+ common,
4
+ };
@@ -0,0 +1,19 @@
1
+ declare const _default: {
2
+ task: {
3
+ success: string;
4
+ error: string;
5
+ };
6
+ errors: {
7
+ notFound: {
8
+ title: string;
9
+ description: string;
10
+ help: string;
11
+ actions: {
12
+ home: string;
13
+ back: string;
14
+ };
15
+ };
16
+ };
17
+ };
18
+ export default _default;
19
+ //# sourceMappingURL=common.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../src/i18n/es-MX/common.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,wBAgBE"}
@@ -0,0 +1,17 @@
1
+ export default {
2
+ task: {
3
+ success: '¡Acción completada con éxito!',
4
+ error: 'Error en la acción. Inténtalo de nuevo.',
5
+ },
6
+ errors: {
7
+ notFound: {
8
+ title: 'Página No Encontrada',
9
+ description: 'La página que buscas pudo haber sido removida, cambiado su nombre, o está temporalmente no disponible.',
10
+ help: 'Si crees que esto es un error, por favor contacta al soporte.',
11
+ actions: {
12
+ home: 'Ir al Inicio',
13
+ back: 'Regresar',
14
+ },
15
+ },
16
+ },
17
+ };
@@ -0,0 +1,21 @@
1
+ declare const _default: {
2
+ common: {
3
+ task: {
4
+ success: string;
5
+ error: string;
6
+ };
7
+ errors: {
8
+ notFound: {
9
+ title: string;
10
+ description: string;
11
+ help: string;
12
+ actions: {
13
+ home: string;
14
+ back: string;
15
+ };
16
+ };
17
+ };
18
+ };
19
+ };
20
+ export default _default;
21
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/i18n/es-MX/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAEA,wBAEE"}
@@ -0,0 +1,4 @@
1
+ import common from './common.js';
2
+ export default {
3
+ common,
4
+ };
@@ -0,0 +1,54 @@
1
+ /**
2
+ * @quvel-kit/core
3
+ *
4
+ * Core utilities for Quasar applications
5
+ *
6
+ * @packageDocumentation
7
+ */
8
+ export * from './config/index.js';
9
+ export * from './modules/index.js';
10
+ export * from './utils/index.js';
11
+ export type { Service as IService, SsrAwareService, RegisterService, ShutdownService, ServiceInstance, } from './container/types.js';
12
+ export { ServiceContainer } from './container/ServiceContainer.js';
13
+ export { createContainer } from './utils/container.js';
14
+ export { Service } from './services/Service.js';
15
+ export { LogService } from './services/LogService.js';
16
+ export { ApiService } from './services/ApiService.js';
17
+ export { I18nService } from './services/I18nService.js';
18
+ export { ValidationService } from './services/ValidationService.js';
19
+ export { WebSocketService } from './services/WebSocketService.js';
20
+ export { TaskService } from './services/TaskService.js';
21
+ export { ThemeService } from './services/ThemeService.js';
22
+ export { createConfigFromEnv, createConfig } from './utils/config.js';
23
+ export { BaseLogger } from './services/logger/BaseLogger.js';
24
+ export { ConsoleLogger } from './services/logger/ConsoleLogger.js';
25
+ export { NullLogger } from './services/logger/NullLogger.js';
26
+ export { User, defaultUserFactory } from './models/User.js';
27
+ export * from './types/config.types.js';
28
+ export * from './types/logging.types.js';
29
+ export * from './types/app.types.js';
30
+ export * from './types/i18n.types.js';
31
+ export * from './types/websocket.types.js';
32
+ export * from './types/laravel.types.js';
33
+ export * from './types/task.types.js';
34
+ export * from './types/scripts.types.js';
35
+ export * from './types/user.types.js';
36
+ export * from './types/theme.types.js';
37
+ export * from './utils/logging.js';
38
+ export * from './utils/axios.js';
39
+ export * from './utils/i18n.js';
40
+ export * from './utils/notify.js';
41
+ export * from './utils/loading.js';
42
+ export * from './utils/object.js';
43
+ export * from './utils/error.js';
44
+ export * from './utils/scripts.js';
45
+ export * from './utils/assets.js';
46
+ export * from './utils/pagination.js';
47
+ export { defineQuvelBoot } from './boot/quvel.js';
48
+ export { serviceContainerPlugin } from './stores/plugins/serviceContainer.js';
49
+ export { useSessionStore } from './stores/sessionStore.js';
50
+ export { defineQuvelModule } from './module.js';
51
+ export type { QuvelModuleOptions } from './module.js';
52
+ export { defineQuvelConfig, DEFAULT_LOCALE_MAPPING } from './config/quvel.js';
53
+ export type { QuvelConfig, QuvelConfigInput, LocaleMapping } from './config/quvel.types.js';
54
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAUH,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AAGjC,YAAY,EACV,OAAO,IAAI,QAAQ,EACnB,eAAe,EACf,eAAe,EACf,eAAe,EACf,eAAe,GAChB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAGvD,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAG1D,OAAO,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAGtE,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAG7D,OAAO,EAAE,IAAI,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAG5D,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AAGvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AAGtC,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAGlD,OAAO,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAC9E,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAG3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAChD,YAAY,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAGtD,OAAO,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AAC9E,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,67 @@
1
+ /**
2
+ * @quvel-kit/core
3
+ *
4
+ * Core utilities for Quasar applications
5
+ *
6
+ * @packageDocumentation
7
+ */
8
+ // Global type declarations (ambient .d.ts files picked up automatically)
9
+ /// <reference path="./types/global.d.ts" />
10
+ /// <reference path="./types/ssr.d.ts" />
11
+ /// <reference path="./types/vue-shim.d.ts" />
12
+ /// <reference path="./types/pinia.d.ts" />
13
+ /// <reference path="./container/types/vue.d.ts" />
14
+ // Config and modules
15
+ export * from './config/index.js';
16
+ export * from './modules/index.js';
17
+ export * from './utils/index.js';
18
+ export { ServiceContainer } from './container/ServiceContainer.js';
19
+ export { createContainer } from './utils/container.js';
20
+ // Services
21
+ export { Service } from './services/Service.js';
22
+ export { LogService } from './services/LogService.js';
23
+ export { ApiService } from './services/ApiService.js';
24
+ export { I18nService } from './services/I18nService.js';
25
+ export { ValidationService } from './services/ValidationService.js';
26
+ export { WebSocketService } from './services/WebSocketService.js';
27
+ export { TaskService } from './services/TaskService.js';
28
+ export { ThemeService } from './services/ThemeService.js';
29
+ // Config utilities
30
+ export { createConfigFromEnv, createConfig } from './utils/config.js';
31
+ // Loggers
32
+ export { BaseLogger } from './services/logger/BaseLogger.js';
33
+ export { ConsoleLogger } from './services/logger/ConsoleLogger.js';
34
+ export { NullLogger } from './services/logger/NullLogger.js';
35
+ // Models
36
+ export { User, defaultUserFactory } from './models/User.js';
37
+ // Types
38
+ export * from './types/config.types.js';
39
+ export * from './types/logging.types.js';
40
+ export * from './types/app.types.js';
41
+ export * from './types/i18n.types.js';
42
+ export * from './types/websocket.types.js';
43
+ export * from './types/laravel.types.js';
44
+ export * from './types/task.types.js';
45
+ export * from './types/scripts.types.js';
46
+ export * from './types/user.types.js';
47
+ export * from './types/theme.types.js';
48
+ // Utilities
49
+ export * from './utils/logging.js';
50
+ export * from './utils/axios.js';
51
+ export * from './utils/i18n.js';
52
+ export * from './utils/notify.js';
53
+ export * from './utils/loading.js';
54
+ export * from './utils/object.js';
55
+ export * from './utils/error.js';
56
+ export * from './utils/scripts.js';
57
+ export * from './utils/assets.js';
58
+ export * from './utils/pagination.js';
59
+ // Boot
60
+ export { defineQuvelBoot } from './boot/quvel.js';
61
+ // Stores
62
+ export { serviceContainerPlugin } from './stores/plugins/serviceContainer.js';
63
+ export { useSessionStore } from './stores/sessionStore.js';
64
+ // Module
65
+ export { defineQuvelModule } from './module.js';
66
+ // Config
67
+ export { defineQuvelConfig, DEFAULT_LOCALE_MAPPING } from './config/quvel.js';
@@ -0,0 +1,32 @@
1
+ import type { IUser } from '../types/user.types';
2
+ /**
3
+ * Base User Model
4
+ *
5
+ * Default implementation of the IUser interface.
6
+ * Applications can extend this class or provide their own implementation.
7
+ */
8
+ export declare class User implements IUser {
9
+ id: number;
10
+ name: string;
11
+ email: string;
12
+ email_verified_at: string | null;
13
+ two_factor_enabled?: boolean;
14
+ createdAt: string;
15
+ updatedAt: string;
16
+ constructor(data?: Partial<IUser>);
17
+ /**
18
+ * Create a User instance from API data
19
+ *
20
+ * @param data - API response data
21
+ * @returns User instance
22
+ */
23
+ static fromApi(data: IUser): User;
24
+ }
25
+ /**
26
+ * Default User Factory
27
+ *
28
+ * Default factory function for creating user instances.
29
+ * Can be overridden in AppConfig.
30
+ */
31
+ export declare const defaultUserFactory: (data: IUser) => User;
32
+ //# sourceMappingURL=User.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"User.d.ts","sourceRoot":"","sources":["../../src/models/User.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAEjD;;;;;GAKG;AACH,qBAAa,IAAK,YAAW,KAAK;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,iBAAiB,EAAE,MAAM,GAAC,IAAI,CAAC;IAC/B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;gBAEN,IAAI,GAAE,OAAO,CAAC,KAAK,CAAM;IAUrC;;;;;OAKG;IACH,MAAM,CAAC,OAAO,CAAC,IAAI,EAAE,KAAK,GAAG,IAAI;CAWlC;AAED;;;;;GAKG;AACH,eAAO,MAAM,kBAAkB,GAAI,MAAM,KAAK,KAAG,IAA0B,CAAC"}
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Base User Model
3
+ *
4
+ * Default implementation of the IUser interface.
5
+ * Applications can extend this class or provide their own implementation.
6
+ */
7
+ export class User {
8
+ id;
9
+ name;
10
+ email;
11
+ email_verified_at;
12
+ two_factor_enabled;
13
+ createdAt;
14
+ updatedAt;
15
+ constructor(data = {}) {
16
+ this.id = data.id ?? 0;
17
+ this.name = data.name ?? '';
18
+ this.email = data.email ?? '';
19
+ this.email_verified_at = data.email_verified_at ?? null;
20
+ this.two_factor_enabled = data.two_factor_enabled;
21
+ this.createdAt = data.createdAt ?? '';
22
+ this.updatedAt = data.updatedAt ?? '';
23
+ }
24
+ /**
25
+ * Create a User instance from API data
26
+ *
27
+ * @param data - API response data
28
+ * @returns User instance
29
+ */
30
+ static fromApi(data) {
31
+ return new User({
32
+ id: data.id,
33
+ name: data.name,
34
+ email: data.email,
35
+ email_verified_at: data.email_verified_at,
36
+ two_factor_enabled: data.two_factor_enabled,
37
+ createdAt: data.createdAt,
38
+ updatedAt: data.updatedAt,
39
+ });
40
+ }
41
+ }
42
+ /**
43
+ * Default User Factory
44
+ *
45
+ * Default factory function for creating user instances.
46
+ * Can be overridden in AppConfig.
47
+ */
48
+ export const defaultUserFactory = (data) => User.fromApi(data);
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Quvel Module Definition
3
+ *
4
+ * Factory function for creating the core Quvel module with configurable options
5
+ */
6
+ import type { Module } from './modules/types.js';
7
+ export interface QuvelModuleOptions {
8
+ /**
9
+ * Whether to include core i18n translations
10
+ * @default true
11
+ */
12
+ includeI18n?: boolean;
13
+ }
14
+ /**
15
+ * Define the core Quvel module with optional configuration
16
+ *
17
+ * @param options - Configuration options for the Quvel module
18
+ * @returns Quvel module definition
19
+ */
20
+ export declare function defineQuvelModule(options?: QuvelModuleOptions): Module;
21
+ //# sourceMappingURL=module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAUjD,MAAM,WAAW,kBAAkB;IACjC;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAC/B,OAAO,GAAE,kBAAuB,GAC/B,MAAM,CA6BR"}
package/dist/module.js ADDED
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Quvel Module Definition
3
+ *
4
+ * Factory function for creating the core Quvel module with configurable options
5
+ */
6
+ import { ApiService } from './services/ApiService.js';
7
+ import { I18nService } from './services/I18nService.js';
8
+ import { LogService } from './services/LogService.js';
9
+ import { ValidationService } from './services/ValidationService.js';
10
+ import { WebSocketService } from './services/WebSocketService.js';
11
+ import { ThemeService } from './services/ThemeService.js';
12
+ import enUS from './i18n/en-US/index.js';
13
+ import esMX from './i18n/es-MX/index.js';
14
+ /**
15
+ * Define the core Quvel module with optional configuration
16
+ *
17
+ * @param options - Configuration options for the Quvel module
18
+ * @returns Quvel module definition
19
+ */
20
+ export function defineQuvelModule(options = {}) {
21
+ const { includeI18n = true } = options;
22
+ return {
23
+ routes: [],
24
+ services: {
25
+ LogService,
26
+ ApiService,
27
+ I18nService,
28
+ ValidationService,
29
+ WebSocketService,
30
+ ThemeService,
31
+ },
32
+ i18n: includeI18n
33
+ ? {
34
+ 'en-US': enUS,
35
+ 'es-MX': esMX,
36
+ }
37
+ : undefined,
38
+ build: {
39
+ boot: ['quvel'],
40
+ css: [],
41
+ animations: [],
42
+ plugins: ['Cookies', 'Notify', 'LocalStorage', 'Meta', 'Loading'],
43
+ },
44
+ };
45
+ }
@@ -0,0 +1,30 @@
1
+ import type { RouteRecordRaw } from 'vue-router';
2
+ import type { Module, ServiceRegistry } from './types.js';
3
+ /**
4
+ * Get all routes from modules
5
+ *
6
+ * @example
7
+ * ```ts
8
+ * const routes = getRoutes(modules);
9
+ * ```
10
+ */
11
+ export declare function getRoutes(modules: Module[]): RouteRecordRaw[];
12
+ /**
13
+ * Get all services from modules
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * const services = getServices(modules);
18
+ * ```
19
+ */
20
+ export declare function getServices(modules: Module[]): ServiceRegistry;
21
+ /**
22
+ * Get translations for a specific locale from all modules
23
+ *
24
+ * @example
25
+ * ```ts
26
+ * const translations = getTranslations(modules, 'en-US');
27
+ * ```
28
+ */
29
+ export declare function getTranslations(modules: Module[], locale: string): Record<string, unknown>;
30
+ //# sourceMappingURL=helpers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../src/modules/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,KAAK,EACV,MAAM,EACN,eAAe,EAChB,MAAM,YAAY,CAAC;AAEpB;;;;;;;GAOG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,cAAc,EAAE,CAE7D;AAED;;;;;;;GAOG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,eAAe,CAU9D;AAED;;;;;;;GAOG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,EAAE,EACjB,MAAM,EAAE,MAAM,GACb,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAUzB"}
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Get all routes from modules
3
+ *
4
+ * @example
5
+ * ```ts
6
+ * const routes = getRoutes(modules);
7
+ * ```
8
+ */
9
+ export function getRoutes(modules) {
10
+ return modules.flatMap((module) => module.routes || []);
11
+ }
12
+ /**
13
+ * Get all services from modules
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * const services = getServices(modules);
18
+ * ```
19
+ */
20
+ export function getServices(modules) {
21
+ const merged = {};
22
+ for (const module of modules) {
23
+ if (module.services) {
24
+ Object.assign(merged, module.services);
25
+ }
26
+ }
27
+ return merged;
28
+ }
29
+ /**
30
+ * Get translations for a specific locale from all modules
31
+ *
32
+ * @example
33
+ * ```ts
34
+ * const translations = getTranslations(modules, 'en-US');
35
+ * ```
36
+ */
37
+ export function getTranslations(modules, locale) {
38
+ const merged = {};
39
+ for (const module of modules) {
40
+ if (module.i18n && module.i18n[locale]) {
41
+ Object.assign(merged, module.i18n[locale]);
42
+ }
43
+ }
44
+ return merged;
45
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Module System
3
+ *
4
+ * Helpers for defining and aggregating module resources.
5
+ */
6
+ export { getRoutes, getServices, getTranslations, } from './helpers.js';
7
+ export type { Module, ModuleLoader, ServiceRegistry, TranslationRegistry, ModuleBuildConfig, BootFileConfig, ServiceClass, QuasarContext, } from './types.js';
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/modules/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,SAAS,EACT,WAAW,EACX,eAAe,GAChB,MAAM,cAAc,CAAC;AAEtB,YAAY,EACV,MAAM,EACN,YAAY,EACZ,eAAe,EACf,mBAAmB,EACnB,iBAAiB,EACjB,cAAc,EACd,YAAY,EACZ,aAAa,GACd,MAAM,YAAY,CAAC"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Module System
3
+ *
4
+ * Helpers for defining and aggregating module resources.
5
+ */
6
+ export { getRoutes, getServices, getTranslations, } from './helpers.js';
@@ -0,0 +1,141 @@
1
+ /**
2
+ * Module System Types
3
+ *
4
+ * Type definitions for the modular architecture system,
5
+ * enabling plugins to contribute routes, i18n, services, and build config.
6
+ */
7
+ import type { RouteRecordRaw } from 'vue-router';
8
+ import type { QuasarAnimations, QuasarPlugins } from 'quasar';
9
+ import type { ConfigureCallback } from '@quasar/app-vite';
10
+ import type { ServiceClass as ContainerServiceClass, Service } from '../container/types.js';
11
+ /**
12
+ * Quasar context extracted from ConfigureCallback
13
+ */
14
+ export type QuasarContext = Parameters<ConfigureCallback>[0];
15
+ /**
16
+ * Service class constructor
17
+ * Must match the container's service constructor signature
18
+ */
19
+ export type ServiceClass<T extends Service = Service> = ContainerServiceClass<T>;
20
+ /**
21
+ * Service registry - maps service names to their constructors
22
+ */
23
+ export type ServiceRegistry = Record<string, ServiceClass>;
24
+ /**
25
+ * Translation registry - maps locale codes to translation objects
26
+ */
27
+ export type TranslationRegistry = Record<string, Record<string, unknown>>;
28
+ /**
29
+ * Module build configuration
30
+ *
31
+ * Defines resources that should be included in the Quasar build
32
+ * when this module is registered.
33
+ */
34
+ export interface ModuleBuildConfig {
35
+ /** Boot files to include in the build */
36
+ boot?: Array<string | BootFileConfig>;
37
+ /** CSS files to include */
38
+ css?: string[];
39
+ /** Quasar animations to register */
40
+ animations?: QuasarAnimations[];
41
+ /** Quasar framework plugins to include */
42
+ plugins?: (keyof QuasarPlugins)[];
43
+ }
44
+ /**
45
+ * Boot file configuration with client/server targeting
46
+ */
47
+ export interface BootFileConfig {
48
+ /** Path to the boot file */
49
+ path: string;
50
+ /** Whether to run on server (default: true) */
51
+ server?: boolean;
52
+ /** Whether to run on a client (default: true) */
53
+ client?: boolean;
54
+ }
55
+ /**
56
+ * Module Loader Interface
57
+ *
58
+ * Defines the contract for modules to expose their resources.
59
+ * All methods are optional - modules only implement what they provide.
60
+ *
61
+ * @example
62
+ * ```ts
63
+ * export const AuthModule: ModuleLoader = {
64
+ * routes: () => [
65
+ * { path: '/login', component: LoginPage }
66
+ * ],
67
+ * services: () => ({
68
+ * AuthService: AuthService
69
+ * }),
70
+ * i18n: () => ({
71
+ * 'en-US': { auth: { login: 'Login' } }
72
+ * }),
73
+ * build: (ctx) => ({
74
+ * boot: ['auth'],
75
+ * plugins: ['Notify']
76
+ * })
77
+ * };
78
+ * ```
79
+ */
80
+ export interface ModuleLoader {
81
+ /**
82
+ * Provide services for dependency injection
83
+ */
84
+ services?: () => ServiceRegistry;
85
+ /**
86
+ * Provide Vue Router routes
87
+ */
88
+ routes?: () => RouteRecordRaw[];
89
+ /**
90
+ * Provide i18n translations
91
+ */
92
+ i18n?: () => TranslationRegistry;
93
+ /**
94
+ * Provide build-time configuration
95
+ */
96
+ build?: (ctx?: QuasarContext) => ModuleBuildConfig;
97
+ }
98
+ /**
99
+ * Module (Static)
100
+ *
101
+ * Static module definition with direct data (no functions).
102
+ * Recommended for most use cases - simpler, faster, better type inference.
103
+ *
104
+ * @example
105
+ * ```ts
106
+ * export const AuthModule: Module = {
107
+ * routes: [
108
+ * { path: '/login', component: () => import('./pages/Login.vue') }
109
+ * ],
110
+ * services: {
111
+ * AuthService: AuthService
112
+ * },
113
+ * i18n: {
114
+ * 'en-US': { auth: { login: 'Login' } }
115
+ * },
116
+ * build: {
117
+ * boot: ['auth'],
118
+ * plugins: ['Notify']
119
+ * }
120
+ * };
121
+ * ```
122
+ */
123
+ export interface Module {
124
+ /**
125
+ * Vue Router routes
126
+ */
127
+ routes?: RouteRecordRaw[];
128
+ /**
129
+ * Services for dependency injection
130
+ */
131
+ services?: ServiceRegistry;
132
+ /**
133
+ * i18n translations
134
+ */
135
+ i18n?: TranslationRegistry;
136
+ /**
137
+ * Build-time configuration
138
+ */
139
+ build?: ModuleBuildConfig;
140
+ }
141
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/modules/types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,KAAK,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AAC9D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAC1D,OAAO,KAAK,EAAE,YAAY,IAAI,qBAAqB,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAE5F;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC;AAE7D;;;GAGG;AACH,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,OAAO,GAAG,OAAO,IAAI,qBAAqB,CAAC,CAAC,CAAC,CAAC;AAEjF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;AAE3D;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;AAE1E;;;;;GAKG;AACH,MAAM,WAAW,iBAAiB;IAChC,yCAAyC;IACzC,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,cAAc,CAAC,CAAC;IAEtC,2BAA2B;IAC3B,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;IAEf,oCAAoC;IACpC,UAAU,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAEhC,0CAA0C;IAC1C,OAAO,CAAC,EAAE,CAAC,MAAM,aAAa,CAAC,EAAE,CAAC;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,4BAA4B;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,+CAA+C;IAC/C,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,iDAAiD;IACjD,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,eAAe,CAAC;IAEjC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,cAAc,EAAE,CAAC;IAEhC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,mBAAmB,CAAC;IAEjC;;OAEG;IACH,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,aAAa,KAAK,iBAAiB,CAAC;CACpD;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAE1B;;OAEG;IACH,QAAQ,CAAC,EAAE,eAAe,CAAC;IAE3B;;OAEG;IACH,IAAI,CAAC,EAAE,mBAAmB,CAAC;IAE3B;;OAEG;IACH,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Module System Types
3
+ *
4
+ * Type definitions for the modular architecture system,
5
+ * enabling plugins to contribute routes, i18n, services, and build config.
6
+ */
7
+ export {};