@nextsparkjs/core 0.1.0-beta.68 → 0.1.0-beta.69

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 (152) hide show
  1. package/dist/components/settings/layouts/SettingsSidebar.d.ts.map +1 -1
  2. package/dist/components/settings/layouts/SettingsSidebar.js +14 -0
  3. package/dist/components/ui/index.d.ts +7 -0
  4. package/dist/components/ui/index.d.ts.map +1 -1
  5. package/dist/components/ui/index.js +7 -0
  6. package/dist/components/ui/skeleton-dashboard.d.ts +32 -0
  7. package/dist/components/ui/skeleton-dashboard.d.ts.map +1 -0
  8. package/dist/components/ui/skeleton-dashboard.js +69 -0
  9. package/dist/components/ui/skeleton-detail.d.ts.map +1 -1
  10. package/dist/components/ui/skeleton-detail.js +0 -1
  11. package/dist/components/ui/skeleton-features.d.ts +27 -0
  12. package/dist/components/ui/skeleton-features.d.ts.map +1 -0
  13. package/dist/components/ui/skeleton-features.js +90 -0
  14. package/dist/components/ui/skeleton-form.d.ts.map +1 -1
  15. package/dist/components/ui/skeleton-form.js +0 -1
  16. package/dist/components/ui/skeleton-list.d.ts.map +1 -1
  17. package/dist/components/ui/skeleton-list.js +0 -1
  18. package/dist/components/ui/skeleton-public.d.ts +26 -0
  19. package/dist/components/ui/skeleton-public.d.ts.map +1 -0
  20. package/dist/components/ui/skeleton-public.js +61 -0
  21. package/dist/components/ui/skeleton-settings.d.ts +54 -0
  22. package/dist/components/ui/skeleton-settings.d.ts.map +1 -0
  23. package/dist/components/ui/skeleton-settings.js +332 -0
  24. package/dist/components/ui/skeleton.d.ts +23 -1
  25. package/dist/components/ui/skeleton.d.ts.map +1 -1
  26. package/dist/components/ui/skeleton.js +46 -2
  27. package/dist/contexts/TeamContext.d.ts +2 -0
  28. package/dist/contexts/TeamContext.d.ts.map +1 -1
  29. package/dist/contexts/TeamContext.js +78 -68
  30. package/dist/hooks/usePrefetch.d.ts +43 -0
  31. package/dist/hooks/usePrefetch.d.ts.map +1 -0
  32. package/dist/hooks/usePrefetch.js +56 -0
  33. package/dist/lib/actions/index.d.ts +27 -14
  34. package/dist/lib/actions/index.d.ts.map +1 -1
  35. package/dist/lib/actions/index.js +19 -1
  36. package/dist/lib/actions/team.actions.d.ts +107 -0
  37. package/dist/lib/actions/team.actions.d.ts.map +1 -0
  38. package/dist/lib/actions/team.actions.js +220 -0
  39. package/dist/lib/actions/user.actions.d.ts +99 -0
  40. package/dist/lib/actions/user.actions.d.ts.map +1 -0
  41. package/dist/lib/actions/user.actions.js +149 -0
  42. package/dist/messages/de/devtools.json +4 -0
  43. package/dist/messages/de/index.d.ts +4 -0
  44. package/dist/messages/de/index.d.ts.map +1 -1
  45. package/dist/messages/en/devtools.json +16 -0
  46. package/dist/messages/en/index.d.ts +16 -0
  47. package/dist/messages/en/index.d.ts.map +1 -1
  48. package/dist/messages/es/devtools.json +4 -0
  49. package/dist/messages/es/index.d.ts +4 -0
  50. package/dist/messages/es/index.d.ts.map +1 -1
  51. package/dist/messages/fr/devtools.json +4 -0
  52. package/dist/messages/fr/index.d.ts +4 -0
  53. package/dist/messages/fr/index.d.ts.map +1 -1
  54. package/dist/messages/it/devtools.json +4 -0
  55. package/dist/messages/it/index.d.ts +4 -0
  56. package/dist/messages/it/index.d.ts.map +1 -1
  57. package/dist/messages/pt/devtools.json +4 -0
  58. package/dist/messages/pt/index.d.ts +4 -0
  59. package/dist/messages/pt/index.d.ts.map +1 -1
  60. package/dist/nextspark-entities.d.ts +59 -0
  61. package/dist/styles/classes.json +15 -2
  62. package/dist/styles/ui.css +1 -1
  63. package/dist/templates/app/(public)/[...slug]/page.tsx +2 -1
  64. package/dist/templates/app/(public)/docs/[section]/[page]/page.tsx +1 -1
  65. package/dist/templates/app/api/devtools/config/entities/route.ts +2 -1
  66. package/dist/templates/app/api/user/plan-flags/route.ts +1 -1
  67. package/dist/templates/app/api/v1/[entity]/[id]/child/[childType]/[childId]/route.ts +4 -2
  68. package/dist/templates/app/dashboard/(main)/layout.tsx +2 -1
  69. package/dist/templates/app/dashboard/(main)/loading.tsx +5 -0
  70. package/dist/templates/app/dashboard/features/loading.tsx +5 -0
  71. package/dist/templates/app/dashboard/settings/api-keys/loading.tsx +5 -0
  72. package/dist/templates/app/dashboard/settings/billing/loading.tsx +5 -0
  73. package/dist/templates/app/dashboard/settings/invoices/loading.tsx +5 -0
  74. package/dist/templates/app/dashboard/settings/loading.tsx +5 -0
  75. package/dist/templates/app/dashboard/settings/notifications/loading.tsx +5 -0
  76. package/dist/templates/app/dashboard/settings/password/loading.tsx +5 -0
  77. package/dist/templates/app/dashboard/settings/plans/loading.tsx +5 -0
  78. package/dist/templates/app/dashboard/settings/profile/loading.tsx +5 -0
  79. package/dist/templates/app/dashboard/settings/security/loading.tsx +5 -0
  80. package/dist/templates/app/dashboard/settings/teams/loading.tsx +5 -0
  81. package/dist/templates/app/devtools/config/page.tsx +1 -1
  82. package/dist/templates/app/devtools/page.tsx +1 -1
  83. package/dist/templates/app/devtools/tests/[[...path]]/page.tsx +1 -1
  84. package/dist/templates/contents/themes/starter/messages/de/common.json +4 -1
  85. package/dist/templates/contents/themes/starter/messages/de/index.ts +15 -0
  86. package/dist/templates/contents/themes/starter/messages/en/common.json +4 -1
  87. package/dist/templates/contents/themes/starter/messages/en/index.ts +15 -0
  88. package/dist/templates/contents/themes/starter/messages/es/common.json +4 -1
  89. package/dist/templates/contents/themes/starter/messages/es/index.ts +15 -0
  90. package/dist/templates/contents/themes/starter/messages/fr/common.json +4 -1
  91. package/dist/templates/contents/themes/starter/messages/fr/index.ts +15 -0
  92. package/dist/templates/contents/themes/starter/messages/it/common.json +4 -1
  93. package/dist/templates/contents/themes/starter/messages/it/index.ts +13 -0
  94. package/dist/templates/contents/themes/starter/messages/pt/common.json +4 -1
  95. package/dist/templates/contents/themes/starter/messages/pt/index.ts +13 -0
  96. package/dist/templates/contents/themes/starter/styles/globals.css +3 -1
  97. package/dist/templates/contents/themes/starter/templates/(dashboard)/analytics/loading.tsx +5 -0
  98. package/dist/templates/contents/themes/starter/templates/(public)/loading.tsx +5 -0
  99. package/dist/templates/next.config.mjs +5 -0
  100. package/dist/templates/{middleware.ts → proxy.ts} +5 -6
  101. package/globals.css +54 -0
  102. package/nextspark-entities.d.ts +59 -0
  103. package/package.json +14 -13
  104. package/scripts/build/registry/discovery/api-presets.mjs +20 -12
  105. package/scripts/build/registry/generators/api-presets-registry.mjs +18 -5
  106. package/scripts/build/registry/generators/block-registry.mjs +14 -3
  107. package/scripts/build/registry/generators/docs-registry.mjs +21 -3
  108. package/scripts/build/registry/generators/translation-registry.mjs +16 -7
  109. package/scripts/build/theme.mjs +2 -1
  110. package/templates/app/(public)/[...slug]/page.tsx +2 -1
  111. package/templates/app/(public)/docs/[section]/[page]/page.tsx +1 -1
  112. package/templates/app/api/auth/[...all]/route.ts +13 -5
  113. package/templates/app/api/devtools/config/entities/route.ts +2 -1
  114. package/templates/app/api/user/plan-flags/route.ts +1 -1
  115. package/templates/app/api/v1/[entity]/[id]/child/[childType]/[childId]/route.ts +4 -2
  116. package/templates/app/dashboard/(main)/layout.tsx +2 -1
  117. package/templates/app/dashboard/(main)/loading.tsx +5 -0
  118. package/templates/app/dashboard/features/loading.tsx +5 -0
  119. package/templates/app/dashboard/settings/api-keys/loading.tsx +5 -0
  120. package/templates/app/dashboard/settings/billing/loading.tsx +5 -0
  121. package/templates/app/dashboard/settings/invoices/loading.tsx +5 -0
  122. package/templates/app/dashboard/settings/loading.tsx +5 -0
  123. package/templates/app/dashboard/settings/notifications/loading.tsx +5 -0
  124. package/templates/app/dashboard/settings/password/loading.tsx +5 -0
  125. package/templates/app/dashboard/settings/plans/loading.tsx +5 -0
  126. package/templates/app/dashboard/settings/profile/loading.tsx +5 -0
  127. package/templates/app/dashboard/settings/security/loading.tsx +5 -0
  128. package/templates/app/dashboard/settings/teams/loading.tsx +5 -0
  129. package/templates/app/devtools/config/page.tsx +1 -1
  130. package/templates/app/devtools/page.tsx +1 -1
  131. package/templates/app/devtools/tests/[[...path]]/page.tsx +1 -1
  132. package/templates/contents/themes/starter/config/app.config.ts +8 -7
  133. package/templates/contents/themes/starter/messages/de/common.json +4 -1
  134. package/templates/contents/themes/starter/messages/de/index.ts +15 -0
  135. package/templates/contents/themes/starter/messages/en/common.json +4 -1
  136. package/templates/contents/themes/starter/messages/en/index.ts +15 -0
  137. package/templates/contents/themes/starter/messages/es/common.json +4 -1
  138. package/templates/contents/themes/starter/messages/es/index.ts +15 -0
  139. package/templates/contents/themes/starter/messages/fr/common.json +4 -1
  140. package/templates/contents/themes/starter/messages/fr/index.ts +15 -0
  141. package/templates/contents/themes/starter/messages/it/common.json +4 -1
  142. package/templates/contents/themes/starter/messages/it/index.ts +13 -0
  143. package/templates/contents/themes/starter/messages/pt/common.json +4 -1
  144. package/templates/contents/themes/starter/messages/pt/index.ts +13 -0
  145. package/templates/contents/themes/starter/styles/globals.css +3 -1
  146. package/templates/contents/themes/starter/templates/(dashboard)/analytics/loading.tsx +5 -0
  147. package/templates/contents/themes/starter/templates/(public)/loading.tsx +5 -0
  148. package/templates/next.config.mjs +5 -0
  149. package/templates/pnpm-workspace.yaml +5 -0
  150. package/templates/{middleware.ts → proxy.ts} +5 -6
  151. package/tests/jest/setup.ts +5 -0
  152. package/dist/presets/plugin/.env.example.template +0 -19
@@ -0,0 +1,149 @@
1
+ "use server";
2
+ import { revalidatePath } from "next/cache";
3
+ import { headers } from "next/headers";
4
+ import { getTypedSession } from "../auth.js";
5
+ import { UserService } from "../services/user.service.js";
6
+ async function updateProfile(data) {
7
+ var _a;
8
+ try {
9
+ const headersList = await headers();
10
+ const session = await getTypedSession(headersList);
11
+ if (!((_a = session == null ? void 0 : session.user) == null ? void 0 : _a.id)) {
12
+ return { success: false, error: "Authentication required" };
13
+ }
14
+ const userId = session.user.id;
15
+ if (!data || Object.keys(data).length === 0) {
16
+ return { success: false, error: "No fields provided for update" };
17
+ }
18
+ const updatePayload = {};
19
+ if (data.firstName !== void 0) updatePayload.firstName = data.firstName;
20
+ if (data.lastName !== void 0) updatePayload.lastName = data.lastName;
21
+ if (data.name !== void 0) updatePayload.name = data.name;
22
+ if (data.country !== void 0) updatePayload.country = data.country;
23
+ if (data.timezone !== void 0) updatePayload.timezone = data.timezone;
24
+ if (data.language !== void 0) updatePayload.language = data.language;
25
+ if (Object.keys(updatePayload).length === 0) {
26
+ return { success: false, error: "No valid fields provided for update" };
27
+ }
28
+ const updatedUser = await UserService.updateUser(userId, updatePayload, userId);
29
+ revalidatePath("/dashboard/settings");
30
+ revalidatePath("/dashboard/settings/profile");
31
+ return {
32
+ success: true,
33
+ data: {
34
+ id: updatedUser.id,
35
+ email: updatedUser.email,
36
+ name: updatedUser.name ?? void 0,
37
+ firstName: updatedUser.firstName ?? void 0,
38
+ lastName: updatedUser.lastName ?? void 0,
39
+ image: updatedUser.image ?? void 0,
40
+ country: updatedUser.country ?? void 0,
41
+ timezone: updatedUser.timezone ?? void 0,
42
+ language: updatedUser.language ?? void 0
43
+ }
44
+ };
45
+ } catch (error) {
46
+ console.error("[updateProfile] Error:", error);
47
+ return {
48
+ success: false,
49
+ error: error instanceof Error ? error.message : "Failed to update profile"
50
+ };
51
+ }
52
+ }
53
+ async function updateAvatar(formData) {
54
+ var _a;
55
+ try {
56
+ const headersList = await headers();
57
+ const session = await getTypedSession(headersList);
58
+ if (!((_a = session == null ? void 0 : session.user) == null ? void 0 : _a.id)) {
59
+ return { success: false, error: "Authentication required" };
60
+ }
61
+ const userId = session.user.id;
62
+ const avatarValue = formData.get("avatar") ?? formData.get("image");
63
+ if (!avatarValue) {
64
+ return { success: false, error: "Avatar image is required" };
65
+ }
66
+ let imageUrl;
67
+ if (typeof avatarValue === "string") {
68
+ imageUrl = avatarValue;
69
+ } else {
70
+ return {
71
+ success: false,
72
+ error: "Please upload the image first and pass the URL"
73
+ };
74
+ }
75
+ if (!imageUrl.startsWith("http://") && !imageUrl.startsWith("https://") && !imageUrl.startsWith("/")) {
76
+ return { success: false, error: "Invalid image URL format" };
77
+ }
78
+ const updatedUser = await UserService.updateUser(
79
+ userId,
80
+ { image: imageUrl },
81
+ userId
82
+ );
83
+ revalidatePath("/dashboard/settings");
84
+ revalidatePath("/dashboard/settings/profile");
85
+ revalidatePath("/dashboard");
86
+ return {
87
+ success: true,
88
+ data: {
89
+ id: updatedUser.id,
90
+ email: updatedUser.email,
91
+ name: updatedUser.name ?? void 0,
92
+ firstName: updatedUser.firstName ?? void 0,
93
+ lastName: updatedUser.lastName ?? void 0,
94
+ image: updatedUser.image ?? void 0,
95
+ country: updatedUser.country ?? void 0,
96
+ timezone: updatedUser.timezone ?? void 0,
97
+ language: updatedUser.language ?? void 0
98
+ }
99
+ };
100
+ } catch (error) {
101
+ console.error("[updateAvatar] Error:", error);
102
+ return {
103
+ success: false,
104
+ error: error instanceof Error ? error.message : "Failed to update avatar"
105
+ };
106
+ }
107
+ }
108
+ async function deleteAccount() {
109
+ var _a;
110
+ try {
111
+ const headersList = await headers();
112
+ const session = await getTypedSession(headersList);
113
+ if (!((_a = session == null ? void 0 : session.user) == null ? void 0 : _a.id)) {
114
+ return { success: false, error: "Authentication required" };
115
+ }
116
+ const userId = session.user.id;
117
+ const { TeamService } = await import("../services/team.service.js");
118
+ const ownedTeams = await TeamService.getByOwnerId(userId);
119
+ if (ownedTeams.length > 0) {
120
+ return {
121
+ success: false,
122
+ error: "Cannot delete account while owning teams. Transfer ownership or delete teams first."
123
+ };
124
+ }
125
+ await UserService.deleteAllUserMetas(userId, userId);
126
+ const { mutateWithRLS } = await import("../db.js");
127
+ const result = await mutateWithRLS(
128
+ 'DELETE FROM "users" WHERE id = $1',
129
+ [userId],
130
+ userId
131
+ );
132
+ if (result.rowCount === 0) {
133
+ return { success: false, error: "User not found" };
134
+ }
135
+ revalidatePath("/");
136
+ return { success: true };
137
+ } catch (error) {
138
+ console.error("[deleteAccount] Error:", error);
139
+ return {
140
+ success: false,
141
+ error: error instanceof Error ? error.message : "Failed to delete account"
142
+ };
143
+ }
144
+ }
145
+ export {
146
+ deleteAccount,
147
+ updateAvatar,
148
+ updateProfile
149
+ };
@@ -32,6 +32,8 @@
32
32
  "restrictedArea": "Entwicklerbereich",
33
33
  "developerAccessOnly": "Nur Entwicklerzugang",
34
34
  "config": {
35
+ "title": "Konfigurationsanzeige",
36
+ "description": "Theme- und Entitaetskonfiguration erkunden",
35
37
  "error": "Fehler beim Laden der Konfiguration",
36
38
  "tabs": {
37
39
  "theme": "Theme-Konfiguration",
@@ -45,6 +47,8 @@
45
47
  "copy": "Kopieren"
46
48
  },
47
49
  "tests": {
50
+ "title": "Testfaelle",
51
+ "description": "Testdokumentation durchsuchen und anzeigen",
48
52
  "searchPlaceholder": "Tests suchen...",
49
53
  "collapseAll": "Alle einklappen",
50
54
  "expandAll": "Alle ausklappen",
@@ -745,6 +745,8 @@ declare const _default: {
745
745
  restrictedArea: string;
746
746
  developerAccessOnly: string;
747
747
  config: {
748
+ title: string;
749
+ description: string;
748
750
  error: string;
749
751
  tabs: {
750
752
  theme: string;
@@ -758,6 +760,8 @@ declare const _default: {
758
760
  copy: string;
759
761
  };
760
762
  tests: {
763
+ title: string;
764
+ description: string;
761
765
  searchPlaceholder: string;
762
766
  collapseAll: string;
763
767
  expandAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/de/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/de/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
@@ -33,7 +33,21 @@
33
33
  "superAdminArea": "Super admin area",
34
34
  "restrictedArea": "Developer Area",
35
35
  "developerAccessOnly": "Developer access only",
36
+ "home": {
37
+ "welcome": "Welcome to DevTools",
38
+ "welcomeDescription": "Your central hub for development and debugging tools",
39
+ "intro": "Use these tools to explore your theme configuration, view test documentation, inspect API endpoints, and more. Each section provides specialized functionality to help you build and debug your application.",
40
+ "systemInfo": "System Information",
41
+ "systemInfoDescription": "Current environment and access details",
42
+ "accessLevel": "Access Level",
43
+ "hierarchy": "Hierarchy Level"
44
+ },
45
+ "style": {
46
+ "description": "Browse component styles and design tokens"
47
+ },
36
48
  "config": {
49
+ "title": "Configuration Viewer",
50
+ "description": "Explore theme and entity configuration settings",
37
51
  "error": "Error loading configuration",
38
52
  "tabs": {
39
53
  "theme": "Theme Config",
@@ -47,6 +61,8 @@
47
61
  "copy": "Copy"
48
62
  },
49
63
  "tests": {
64
+ "title": "Test Cases",
65
+ "description": "Browse and view test documentation",
50
66
  "searchPlaceholder": "Search tests...",
51
67
  "collapseAll": "Collapse all",
52
68
  "expandAll": "Expand all",
@@ -835,7 +835,21 @@ declare const _default: {
835
835
  superAdminArea: string;
836
836
  restrictedArea: string;
837
837
  developerAccessOnly: string;
838
+ home: {
839
+ welcome: string;
840
+ welcomeDescription: string;
841
+ intro: string;
842
+ systemInfo: string;
843
+ systemInfoDescription: string;
844
+ accessLevel: string;
845
+ hierarchy: string;
846
+ };
847
+ style: {
848
+ description: string;
849
+ };
838
850
  config: {
851
+ title: string;
852
+ description: string;
839
853
  error: string;
840
854
  tabs: {
841
855
  theme: string;
@@ -849,6 +863,8 @@ declare const _default: {
849
863
  copy: string;
850
864
  };
851
865
  tests: {
866
+ title: string;
867
+ description: string;
852
868
  searchPlaceholder: string;
853
869
  collapseAll: string;
854
870
  expandAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/en/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/en/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
@@ -34,6 +34,8 @@
34
34
  "restrictedArea": "Área de Desarrollador",
35
35
  "developerAccessOnly": "Solo acceso de desarrollador",
36
36
  "config": {
37
+ "title": "Visor de Configuración",
38
+ "description": "Explora la configuración del tema y entidades",
37
39
  "error": "Error cargando configuración",
38
40
  "tabs": {
39
41
  "theme": "Config de Tema",
@@ -47,6 +49,8 @@
47
49
  "copy": "Copiar"
48
50
  },
49
51
  "tests": {
52
+ "title": "Casos de Prueba",
53
+ "description": "Navegar y ver documentación de tests",
50
54
  "searchPlaceholder": "Buscar tests...",
51
55
  "collapseAll": "Contraer todos",
52
56
  "expandAll": "Expandir todos",
@@ -836,6 +836,8 @@ declare const _default: {
836
836
  restrictedArea: string;
837
837
  developerAccessOnly: string;
838
838
  config: {
839
+ title: string;
840
+ description: string;
839
841
  error: string;
840
842
  tabs: {
841
843
  theme: string;
@@ -849,6 +851,8 @@ declare const _default: {
849
851
  copy: string;
850
852
  };
851
853
  tests: {
854
+ title: string;
855
+ description: string;
852
856
  searchPlaceholder: string;
853
857
  collapseAll: string;
854
858
  expandAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/es/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/es/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
@@ -32,6 +32,8 @@
32
32
  "restrictedArea": "Zone developpeur",
33
33
  "developerAccessOnly": "Acces developpeur uniquement",
34
34
  "config": {
35
+ "title": "Visualiseur de Configuration",
36
+ "description": "Explorer la configuration du thème et des entités",
35
37
  "error": "Erreur lors du chargement de la configuration",
36
38
  "tabs": {
37
39
  "theme": "Config du theme",
@@ -45,6 +47,8 @@
45
47
  "copy": "Copier"
46
48
  },
47
49
  "tests": {
50
+ "title": "Cas de Test",
51
+ "description": "Parcourir et visualiser la documentation des tests",
48
52
  "searchPlaceholder": "Rechercher des tests...",
49
53
  "collapseAll": "Tout reduire",
50
54
  "expandAll": "Tout etendre",
@@ -745,6 +745,8 @@ declare const _default: {
745
745
  restrictedArea: string;
746
746
  developerAccessOnly: string;
747
747
  config: {
748
+ title: string;
749
+ description: string;
748
750
  error: string;
749
751
  tabs: {
750
752
  theme: string;
@@ -758,6 +760,8 @@ declare const _default: {
758
760
  copy: string;
759
761
  };
760
762
  tests: {
763
+ title: string;
764
+ description: string;
761
765
  searchPlaceholder: string;
762
766
  collapseAll: string;
763
767
  expandAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/fr/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/fr/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
@@ -32,6 +32,8 @@
32
32
  "restrictedArea": "Area Sviluppatore",
33
33
  "developerAccessOnly": "Solo accesso sviluppatore",
34
34
  "config": {
35
+ "title": "Visualizzatore Configurazione",
36
+ "description": "Esplora la configurazione del tema e delle entità",
35
37
  "error": "Errore caricamento configurazione",
36
38
  "tabs": {
37
39
  "theme": "Config Tema",
@@ -45,6 +47,8 @@
45
47
  "copy": "Copia"
46
48
  },
47
49
  "tests": {
50
+ "title": "Casi di Test",
51
+ "description": "Naviga e visualizza la documentazione dei test",
48
52
  "searchPlaceholder": "Cerca test...",
49
53
  "collapseAll": "Comprimi tutti",
50
54
  "expandAll": "Espandi tutti",
@@ -745,6 +745,8 @@ declare const _default: {
745
745
  restrictedArea: string;
746
746
  developerAccessOnly: string;
747
747
  config: {
748
+ title: string;
749
+ description: string;
748
750
  error: string;
749
751
  tabs: {
750
752
  theme: string;
@@ -758,6 +760,8 @@ declare const _default: {
758
760
  copy: string;
759
761
  };
760
762
  tests: {
763
+ title: string;
764
+ description: string;
761
765
  searchPlaceholder: string;
762
766
  collapseAll: string;
763
767
  expandAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/it/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/it/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
@@ -32,6 +32,8 @@
32
32
  "restrictedArea": "Area de Desenvolvedor",
33
33
  "developerAccessOnly": "Apenas acesso de desenvolvedor",
34
34
  "config": {
35
+ "title": "Visualizador de Configuração",
36
+ "description": "Explorar configuração do tema e entidades",
35
37
  "error": "Erro carregando configuracao",
36
38
  "tabs": {
37
39
  "theme": "Config de Tema",
@@ -45,6 +47,8 @@
45
47
  "copy": "Copiar"
46
48
  },
47
49
  "tests": {
50
+ "title": "Casos de Teste",
51
+ "description": "Navegar e visualizar documentação de testes",
48
52
  "searchPlaceholder": "Buscar testes...",
49
53
  "collapseAll": "Recolher todos",
50
54
  "expandAll": "Expandir todos",
@@ -745,6 +745,8 @@ declare const _default: {
745
745
  restrictedArea: string;
746
746
  developerAccessOnly: string;
747
747
  config: {
748
+ title: string;
749
+ description: string;
748
750
  error: string;
749
751
  tabs: {
750
752
  theme: string;
@@ -758,6 +760,8 @@ declare const _default: {
758
760
  copy: string;
759
761
  };
760
762
  tests: {
763
+ title: string;
764
+ description: string;
761
765
  searchPlaceholder: string;
762
766
  collapseAll: string;
763
767
  expandAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/pt/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/pt/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
@@ -0,0 +1,59 @@
1
+ /**
2
+ * Ambient type declarations for @nextsparkjs/core entity configs
3
+ *
4
+ * These declarations provide TypeScript with type information for
5
+ * deep imports to entity config files when DTS generation is disabled.
6
+ *
7
+ * NOTE: This file must NOT have any imports to work as global declarations.
8
+ */
9
+
10
+ // EntityConfig type for reference (simplified version for ambient declarations)
11
+ interface AmbientEntityConfig {
12
+ slug: string
13
+ enabled: boolean
14
+ names: {
15
+ singular: string
16
+ plural: string
17
+ }
18
+ icon?: unknown
19
+ access?: {
20
+ public?: boolean
21
+ api?: boolean
22
+ metadata?: boolean
23
+ shared?: boolean
24
+ basePath?: string
25
+ }
26
+ ui?: {
27
+ dashboard?: {
28
+ showInMenu?: boolean
29
+ showInTopbar?: boolean
30
+ }
31
+ public?: {
32
+ hasArchivePage?: boolean
33
+ hasSinglePage?: boolean
34
+ }
35
+ features?: {
36
+ searchable?: boolean
37
+ sortable?: boolean
38
+ filterable?: boolean
39
+ bulkOperations?: boolean
40
+ }
41
+ }
42
+ table?: {
43
+ name?: string
44
+ columns?: unknown[]
45
+ relations?: unknown
46
+ }
47
+ schemas?: {
48
+ create?: unknown
49
+ update?: unknown
50
+ }
51
+ fields?: unknown[]
52
+ }
53
+
54
+ // Core entity: patterns
55
+ declare module '@nextsparkjs/core/entities/patterns/patterns.config' {
56
+ export const patternsEntityConfig: AmbientEntityConfig
57
+ }
58
+
59
+ // Add more core entities here as needed
@@ -1,6 +1,6 @@
1
1
  {
2
- "generated": "2026-01-24T00:12:50.267Z",
3
- "totalClasses": 1054,
2
+ "generated": "2026-01-25T21:32:53.384Z",
3
+ "totalClasses": 1067,
4
4
  "classes": [
5
5
  "!text-2xl",
6
6
  "''",
@@ -523,6 +523,7 @@
523
523
  "invisible",
524
524
  "isRecentlyModified",
525
525
  "italic",
526
+ "items-baseline",
526
527
  "items-center",
527
528
  "items-end",
528
529
  "items-start",
@@ -601,6 +602,7 @@
601
602
  "max-w-3xl",
602
603
  "max-w-4xl",
603
604
  "max-w-5xl",
605
+ "max-w-6xl",
604
606
  "max-w-7xl",
605
607
  "max-w-[100px]",
606
608
  "max-w-[120px]",
@@ -608,10 +610,12 @@
608
610
  "max-w-[200px]",
609
611
  "max-w-[80px]",
610
612
  "max-w-[calc(100%-2rem)]",
613
+ "max-w-full",
611
614
  "max-w-lg",
612
615
  "max-w-md",
613
616
  "max-w-none",
614
617
  "max-w-sm",
618
+ "max-w-xl",
615
619
  "max-w-xs",
616
620
  "mb-1",
617
621
  "mb-2",
@@ -620,9 +624,12 @@
620
624
  "mb-6",
621
625
  "mb-8",
622
626
  "md:col-span-2",
627
+ "md:col-span-3",
628
+ "md:col-span-5",
623
629
  "md:flex",
624
630
  "md:flex-none",
625
631
  "md:flex-row",
632
+ "md:grid-cols-10",
626
633
  "md:grid-cols-12",
627
634
  "md:grid-cols-2",
628
635
  "md:grid-cols-3",
@@ -668,6 +675,8 @@
668
675
  "mr-6",
669
676
  "mt-0.5",
670
677
  "mt-1",
678
+ "mt-10",
679
+ "mt-12",
671
680
  "mt-16",
672
681
  "mt-2",
673
682
  "mt-3",
@@ -777,6 +786,7 @@
777
786
  "py-12",
778
787
  "py-2",
779
788
  "py-20",
789
+ "py-24",
780
790
  "py-3",
781
791
  "py-4",
782
792
  "py-6",
@@ -835,6 +845,7 @@
835
845
  "size-8",
836
846
  "size-[--cell-size]",
837
847
  "size:",
848
+ "skeleton-container",
838
849
  "slide-in-from-bottom",
839
850
  "slide-in-from-bottom-2",
840
851
  "slide-in-from-left",
@@ -845,6 +856,7 @@
845
856
  "sm:flex-row",
846
857
  "sm:gap-2.5",
847
858
  "sm:grid-cols-2",
859
+ "sm:h-16",
848
860
  "sm:inline",
849
861
  "sm:inline-block",
850
862
  "sm:items-center",
@@ -1030,6 +1042,7 @@
1030
1042
  "w-[240px]",
1031
1043
  "w-[280px]",
1032
1044
  "w-[300px]",
1045
+ "w-[32rem]",
1033
1046
  "w-[400px]",
1034
1047
  "w-[40px]",
1035
1048
  "w-[50px]",