gitcoach-cli 1.0.5 → 1.0.8

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 (42) hide show
  1. package/README.md +55 -143
  2. package/dist/i18n/locales/en.json +53 -1
  3. package/dist/i18n/locales/es.json +53 -1
  4. package/dist/i18n/locales/fr.json +53 -1
  5. package/dist/ui/menus/add-menu.d.ts.map +1 -1
  6. package/dist/ui/menus/add-menu.js +102 -15
  7. package/dist/ui/menus/add-menu.js.map +1 -1
  8. package/dist/ui/menus/branch-menu.d.ts.map +1 -1
  9. package/dist/ui/menus/branch-menu.js +24 -10
  10. package/dist/ui/menus/branch-menu.js.map +1 -1
  11. package/dist/ui/menus/commit-menu.d.ts.map +1 -1
  12. package/dist/ui/menus/commit-menu.js +110 -51
  13. package/dist/ui/menus/commit-menu.js.map +1 -1
  14. package/dist/ui/menus/history-menu.d.ts.map +1 -1
  15. package/dist/ui/menus/history-menu.js +7 -0
  16. package/dist/ui/menus/history-menu.js.map +1 -1
  17. package/dist/ui/menus/main-menu.d.ts.map +1 -1
  18. package/dist/ui/menus/main-menu.js +25 -13
  19. package/dist/ui/menus/main-menu.js.map +1 -1
  20. package/dist/ui/menus/pull-menu.d.ts.map +1 -1
  21. package/dist/ui/menus/pull-menu.js +47 -13
  22. package/dist/ui/menus/pull-menu.js.map +1 -1
  23. package/dist/ui/menus/push-menu.d.ts.map +1 -1
  24. package/dist/ui/menus/push-menu.js +15 -5
  25. package/dist/ui/menus/push-menu.js.map +1 -1
  26. package/dist/ui/menus/stash-menu.d.ts.map +1 -1
  27. package/dist/ui/menus/stash-menu.js +13 -6
  28. package/dist/ui/menus/stash-menu.js.map +1 -1
  29. package/dist/ui/menus/undo-menu.d.ts.map +1 -1
  30. package/dist/ui/menus/undo-menu.js +16 -8
  31. package/dist/ui/menus/undo-menu.js.map +1 -1
  32. package/dist/utils/index.d.ts +1 -0
  33. package/dist/utils/index.d.ts.map +1 -1
  34. package/dist/utils/index.js +1 -0
  35. package/dist/utils/index.js.map +1 -1
  36. package/dist/utils/level-helper.d.ts +42 -0
  37. package/dist/utils/level-helper.d.ts.map +1 -0
  38. package/dist/utils/level-helper.js +58 -0
  39. package/dist/utils/level-helper.js.map +1 -0
  40. package/dist/utils/version.d.ts +1 -1
  41. package/dist/utils/version.js +1 -1
  42. package/package.json +1 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
10
10
  ```
11
11
 
12
- **The AI-powered Git coach that prevents mistakes before they happen.**
12
+ **Interactive Git assistant that prevents mistakes before they happen.**
13
13
 
14
14
  [![npm version](https://img.shields.io/npm/v/gitcoach-cli)](https://www.npmjs.com/package/gitcoach-cli)
15
15
  [![GitHub](https://img.shields.io/github/stars/DNSZLSK/gitcoach-cli?style=social)](https://github.com/DNSZLSK/gitcoach-cli)
@@ -25,9 +25,9 @@ Git is powerful but brutal to beginners. Cryptic error messages, lost work from
25
25
 
26
26
  - **Prevents mistakes BEFORE they happen** - Warns about uncommitted changes, detached HEAD, force push risks
27
27
  - **Educational** - Shows every Git command being executed so you learn while you use it
28
- - **AI-powered** - Uses GitHub Copilot CLI to generate smart commit messages and answer Git questions
28
+ - **Adapts to your level** - Beginner (verbose), Intermediate (balanced), Expert (minimal)
29
29
  - **Multilingual** - Works in English, French, and Spanish
30
- - **Beginner-friendly** - No more cryptic error messages
30
+ - **Optional AI features** - Can use GitHub Copilot CLI for commit messages and Git Q&A (works without it too)
31
31
 
32
32
  Built for the **GitHub Copilot CLI Challenge 2026**.
33
33
 
@@ -36,10 +36,7 @@ Built for the **GitHub Copilot CLI Challenge 2026**.
36
36
  ## Quick Start
37
37
 
38
38
  ```bash
39
- # Install globally
40
39
  npm install -g gitcoach-cli
41
-
42
- # Run in any Git repository
43
40
  gitcoach
44
41
  ```
45
42
 
@@ -49,14 +46,10 @@ That's it. GitCoach guides you from there.
49
46
 
50
47
  ## Prerequisites
51
48
 
52
- Before installing GitCoach, you need Node.js and Git installed on your system.
53
-
54
49
  ### 1. Node.js (version 18 or higher)
55
50
 
56
51
  **Windows:**
57
- 1. Download the LTS version from [nodejs.org](https://nodejs.org/)
58
- 2. Run the installer
59
- 3. Restart your terminal
52
+ Download from [nodejs.org](https://nodejs.org/) (LTS version)
60
53
 
61
54
  **Mac:**
62
55
  ```bash
@@ -69,18 +62,10 @@ curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
69
62
  sudo apt-get install -y nodejs
70
63
  ```
71
64
 
72
- **Verify installation:**
73
- ```bash
74
- node --version # Should show v18.x.x or higher
75
- npm --version # Should show 9.x.x or higher
76
- ```
77
-
78
65
  ### 2. Git
79
66
 
80
67
  **Windows:**
81
- 1. Download from [git-scm.com](https://git-scm.com/download/win)
82
- 2. Run the installer with default options
83
- 3. Restart your terminal
68
+ Download from [git-scm.com](https://git-scm.com/download/win)
84
69
 
85
70
  **Mac:**
86
71
  ```bash
@@ -92,31 +77,24 @@ brew install git
92
77
  sudo apt-get install git
93
78
  ```
94
79
 
95
- **Verify installation:**
96
- ```bash
97
- git --version # Should show git version 2.x.x
98
- ```
80
+ ### 3. GitHub Copilot CLI (Optional)
99
81
 
100
- ### 3. GitHub Copilot CLI (Optional - for AI features)
101
-
102
- GitCoach works without Copilot CLI, but AI-powered commit messages and Git Q&A require it.
82
+ For AI-powered commit messages and Git Q&A:
103
83
 
104
84
  ```bash
105
85
  npm install -g @githubnext/github-copilot-cli
106
- ```
107
-
108
- Then authenticate:
109
- ```bash
110
86
  github-copilot-cli auth
111
87
  ```
112
88
 
89
+ GitCoach works perfectly fine without Copilot CLI - all core features are available.
90
+
113
91
  ---
114
92
 
115
93
  ## Features
116
94
 
117
95
  ### Interactive Menus
118
96
 
119
- No more memorizing commands. Navigate Git with simple menus.
97
+ Navigate Git with simple menus instead of memorizing commands.
120
98
 
121
99
  ```
122
100
  ? Main Menu
@@ -130,51 +108,49 @@ No more memorizing commands. Navigate Git with simple menus.
130
108
  [H] History - View commit history
131
109
  [W] Stash - Save work temporarily
132
110
  [G] Config - Configure GitCoach
133
- [T] Stats - View your statistics
134
- [?] Help - Ask Git questions (AI)
111
+ [?] Help - Ask Git questions
135
112
  [Q] Quit - Exit GitCoach
136
113
  ```
137
114
 
138
- ### AI-Powered Commits
139
-
140
- GitCoach uses GitHub Copilot CLI to analyze your changes and generate meaningful commit messages following conventional commits format.
115
+ ### Experience Levels
141
116
 
142
- ```
143
- ? Generate message with AI? Yes
144
- Generating...
117
+ GitCoach adapts to your skill level:
145
118
 
146
- +--------------- Suggested message ---------------+
147
- | |
148
- | feat(auth): add OAuth2 user authentication |
149
- | |
150
- +-------------------------------------------------+
119
+ | Level | Menu Labels | Confirmations | Warnings | Explanations |
120
+ |-------|-------------|---------------|----------|--------------|
121
+ | **Beginner** | Full descriptions | All | All | Shown |
122
+ | **Intermediate** | Short descriptions | All | Most | Hidden |
123
+ | **Expert** | Git commands | Destructive only | Critical only | Hidden |
151
124
 
152
- ? Use this message? (Y/n)
125
+ Example in Expert mode:
126
+ ```
127
+ ? Main Menu
128
+ > [S] git status
129
+ [A] git add
130
+ [C] git commit
131
+ [P] git push
132
+ [L] git pull
153
133
  ```
154
134
 
155
135
  ### Error Prevention
156
136
 
157
137
  GitCoach warns you BEFORE you make mistakes:
158
138
 
159
- **Uncommitted changes protection:**
139
+ **Uncommitted changes:**
160
140
  ```
161
141
  +------------------- Warning --------------------+
162
142
  | |
163
143
  | You have uncommitted changes! |
164
144
  | Switching branches will lose your work. |
165
145
  | |
166
- | Recommended: Commit or stash first. |
167
- | |
168
146
  +------------------------------------------------+
169
147
  ```
170
148
 
171
- **Detached HEAD detection:**
149
+ **Detached HEAD:**
172
150
  ```
173
151
  +--------------- Detached HEAD ------------------+
174
152
  | |
175
153
  | You are in detached HEAD state. |
176
- | This means you are not on any branch. |
177
- | |
178
154
  | Your commits may be lost if you switch |
179
155
  | branches without creating a new branch. |
180
156
  | |
@@ -187,7 +163,7 @@ GitCoach warns you BEFORE you make mistakes:
187
163
  [I] Ignore (advanced users)
188
164
  ```
189
165
 
190
- **Force push confirmation:**
166
+ **Force push:**
191
167
  ```
192
168
  ? You are about to FORCE PUSH. This rewrites remote history.
193
169
  ? Are you absolutely sure? (yes/no)
@@ -203,31 +179,33 @@ Every action shows the Git command being executed:
203
179
  5 file(s) staged successfully.
204
180
  ```
205
181
 
206
- You learn Git while using GitCoach. Eventually, you won't need it anymore. That's the goal.
182
+ You learn Git while using GitCoach.
183
+
184
+ ### Smart Commits (Optional AI)
185
+
186
+ If you have GitHub Copilot CLI installed, GitCoach can generate commit messages:
187
+
188
+ ```
189
+ ? Generate message with AI? Yes
190
+ Generating...
191
+
192
+ Suggested: feat(auth): add OAuth2 authentication
193
+
194
+ ? Use this message? (Y/n)
195
+ ```
196
+
197
+ Without Copilot CLI, you write commit messages manually (conventional commits format suggested).
207
198
 
208
- ### Ask Git Questions
199
+ ### Git Q&A (Optional AI)
209
200
 
210
- Don't know what a rebase is? Just ask.
201
+ Ask Git questions if Copilot CLI is installed:
211
202
 
212
203
  ```
213
204
  ? Your question: What's the difference between merge and rebase?
214
- Thinking...
215
205
 
216
- +------------------- Answer ---------------------+
217
- | |
218
- | Both integrate changes from one branch |
219
- | into another, but differently: |
220
- | |
221
- | MERGE creates a merge commit, preserving |
222
- | history as it happened. |
223
- | |
224
- | REBASE rewrites history by moving your |
225
- | commits on top of the target branch. |
226
- | |
227
- | Use merge for shared branches. |
228
- | Use rebase for local cleanup. |
229
- | |
230
- +------------------------------------------------+
206
+ MERGE creates a merge commit, preserving history.
207
+ REBASE rewrites history by moving commits.
208
+ Use merge for shared branches, rebase for local cleanup.
231
209
  ```
232
210
 
233
211
  ### Branch Management
@@ -243,41 +221,9 @@ Create, switch, merge, and delete branches with guidance:
243
221
  Back
244
222
  ```
245
223
 
246
- **Merge with explanation:**
247
- ```
248
- +--------------- What is Merge? -----------------+
249
- | |
250
- | Merging combines the changes from one branch |
251
- | into another. All commits from the source |
252
- | branch will be integrated into your current |
253
- | branch. |
254
- | |
255
- +------------------------------------------------+
256
-
257
- You are on 'main'. Which branch do you want to merge here?
258
- > feature/login
259
- feature/dashboard
260
- bugfix/header
261
-
262
- This will execute: git merge feature/login
263
- ? Continue? (Y/n)
264
- ```
265
-
266
224
  ### Multilingual Support
267
225
 
268
- Switch between English, French, and Spanish anytime.
269
-
270
- ```
271
- ? Select language:
272
- > English
273
- Francais
274
- Espanol
275
-
276
- Configuration updated.
277
- Bienvenue dans GitCoach !
278
- ```
279
-
280
- Localized confirmations:
226
+ English, French, and Spanish. Localized confirmations:
281
227
  - English: `(Y/n)`
282
228
  - French: `(O/n)`
283
229
  - Spanish: `(S/n)`
@@ -295,55 +241,25 @@ Localized confirmations:
295
241
 
296
242
  ---
297
243
 
298
- ## Configuration
299
-
300
- GitCoach adapts to your experience level:
301
-
302
- | Level | Description |
303
- |-------|-------------|
304
- | **Beginner** | Verbose explanations, step-by-step guidance, all warnings |
305
- | **Intermediate** | Helpful tips, conventional commit suggestions |
306
- | **Expert** | Minimal output, critical warnings only |
307
-
308
- Change your level anytime:
309
- ```bash
310
- gitcoach config
311
- ```
312
-
313
- ---
314
-
315
244
  ## Tech Stack
316
245
 
317
246
  - **TypeScript** - Type-safe code
318
247
  - **Inquirer.js** - Interactive prompts
319
248
  - **simple-git** - Git operations
320
- - **GitHub Copilot CLI** - AI features
321
249
  - **i18next** - Internationalization
322
250
  - **Chalk** - Terminal styling
323
- - **Jest** - Testing
251
+ - **Jest** - 383 tests
324
252
 
325
253
  ---
326
254
 
327
255
  ## Development
328
256
 
329
257
  ```bash
330
- # Clone the repository
331
258
  git clone https://github.com/DNSZLSK/gitcoach-cli.git
332
259
  cd gitcoach-cli
333
-
334
- # Install dependencies
335
260
  npm install
336
-
337
- # Build
338
261
  npm run build
339
-
340
- # Run tests
341
262
  npm test
342
-
343
- # Run locally
344
- ./bin/run.js
345
-
346
- # Link globally for testing
347
263
  npm link
348
264
  gitcoach
349
265
  ```
@@ -365,7 +281,7 @@ gitcoach-cli/
365
281
  │ │ ├── menus/ # Interactive menus
366
282
  │ │ └── themes/ # Color themes
367
283
  │ └── utils/ # Helpers, validators
368
- ├── test/ # Test files
284
+ ├── test/ # 383 tests
369
285
  └── docs/ # Documentation
370
286
  ```
371
287
 
@@ -373,8 +289,6 @@ gitcoach-cli/
373
289
 
374
290
  ## Contributing
375
291
 
376
- Contributions welcome! Please:
377
-
378
292
  1. Fork the repository
379
293
  2. Create a feature branch (`git checkout -b feature/amazing-feature`)
380
294
  3. Commit your changes (`git commit -m 'feat: add amazing feature'`)
@@ -393,9 +307,7 @@ Contributions welcome! Please:
393
307
 
394
308
  ## Author
395
309
 
396
- **DNSZLSK**
397
-
398
- CDA Student at AFPA, France.
310
+ **DNSZLSK** - CDA Student at AFPA, France
399
311
 
400
312
  Built for the [GitHub Copilot CLI Challenge 2026](https://dev.to/challenges/github).
401
313
 
@@ -403,4 +315,4 @@ Built for the [GitHub Copilot CLI Challenge 2026](https://dev.to/challenges/gith
403
315
 
404
316
  ## License
405
317
 
406
- MIT - See [LICENSE](LICENSE) for details.
318
+ MIT
@@ -35,7 +35,59 @@
35
35
  "quit": "Quit",
36
36
  "quitDesc": "Exit GitCoach",
37
37
  "back": "Back",
38
- "backDesc": "Return to previous menu"
38
+ "backDesc": "Return to previous menu",
39
+
40
+ "statusBeginner": "Status - See current state of your files",
41
+ "statusIntermediate": "Status - View changes",
42
+ "statusExpert": "git status",
43
+
44
+ "addBeginner": "Add - Prepare files for saving",
45
+ "addIntermediate": "Add - Stage files",
46
+ "addExpert": "git add",
47
+
48
+ "commitBeginner": "Commit - Save your changes with a message",
49
+ "commitIntermediate": "Commit - Save changes",
50
+ "commitExpert": "git commit",
51
+
52
+ "pushBeginner": "Push - Send changes to remote server",
53
+ "pushIntermediate": "Push - Send to remote",
54
+ "pushExpert": "git push",
55
+
56
+ "pullBeginner": "Pull - Download changes from server",
57
+ "pullIntermediate": "Pull - Download changes",
58
+ "pullExpert": "git pull",
59
+
60
+ "branchBeginner": "Branch - Work on separate versions",
61
+ "branchIntermediate": "Branch - Manage branches",
62
+ "branchExpert": "git branch",
63
+
64
+ "undoBeginner": "Undo - Reverse actions safely",
65
+ "undoIntermediate": "Undo - Reverse actions",
66
+ "undoExpert": "git reset/restore",
67
+
68
+ "historyBeginner": "History - See past commits",
69
+ "historyIntermediate": "History - View commits",
70
+ "historyExpert": "git log",
71
+
72
+ "stashBeginner": "Stash - Temporarily save work",
73
+ "stashIntermediate": "Stash - Save temporarily",
74
+ "stashExpert": "git stash",
75
+
76
+ "configBeginner": "Settings - Configure GitCoach",
77
+ "configIntermediate": "Settings - Configure",
78
+ "configExpert": "config",
79
+
80
+ "statsBeginner": "Statistics - View your progress",
81
+ "statsIntermediate": "Statistics - View stats",
82
+ "statsExpert": "stats",
83
+
84
+ "helpBeginner": "Help - Get assistance",
85
+ "helpIntermediate": "Help - Get help",
86
+ "helpExpert": "help",
87
+
88
+ "quitBeginner": "Quit - Exit GitCoach",
89
+ "quitIntermediate": "Quit - Exit",
90
+ "quitExpert": "quit"
39
91
  },
40
92
  "commands": {
41
93
  "status": {
@@ -35,7 +35,59 @@
35
35
  "quit": "Salir",
36
36
  "quitDesc": "Cerrar GitCoach",
37
37
  "back": "Volver",
38
- "backDesc": "Regresar al menu anterior"
38
+ "backDesc": "Regresar al menu anterior",
39
+
40
+ "statusBeginner": "Estado - Ver el estado actual de tus archivos",
41
+ "statusIntermediate": "Estado - Ver cambios",
42
+ "statusExpert": "git status",
43
+
44
+ "addBeginner": "Agregar - Preparar archivos para guardar",
45
+ "addIntermediate": "Agregar - Preparar archivos",
46
+ "addExpert": "git add",
47
+
48
+ "commitBeginner": "Commit - Guardar tus cambios con un mensaje",
49
+ "commitIntermediate": "Commit - Guardar cambios",
50
+ "commitExpert": "git commit",
51
+
52
+ "pushBeginner": "Push - Enviar cambios al servidor remoto",
53
+ "pushIntermediate": "Push - Enviar al remoto",
54
+ "pushExpert": "git push",
55
+
56
+ "pullBeginner": "Pull - Descargar cambios del servidor",
57
+ "pullIntermediate": "Pull - Descargar cambios",
58
+ "pullExpert": "git pull",
59
+
60
+ "branchBeginner": "Rama - Trabajar en versiones separadas",
61
+ "branchIntermediate": "Rama - Gestionar ramas",
62
+ "branchExpert": "git branch",
63
+
64
+ "undoBeginner": "Deshacer - Revertir acciones de forma segura",
65
+ "undoIntermediate": "Deshacer - Revertir acciones",
66
+ "undoExpert": "git reset/restore",
67
+
68
+ "historyBeginner": "Historial - Ver commits anteriores",
69
+ "historyIntermediate": "Historial - Ver commits",
70
+ "historyExpert": "git log",
71
+
72
+ "stashBeginner": "Stash - Guardar trabajo temporalmente",
73
+ "stashIntermediate": "Stash - Guardar temporalmente",
74
+ "stashExpert": "git stash",
75
+
76
+ "configBeginner": "Configuracion - Configurar GitCoach",
77
+ "configIntermediate": "Configuracion - Configurar",
78
+ "configExpert": "config",
79
+
80
+ "statsBeginner": "Estadisticas - Ver tu progreso",
81
+ "statsIntermediate": "Estadisticas - Ver stats",
82
+ "statsExpert": "stats",
83
+
84
+ "helpBeginner": "Ayuda - Obtener asistencia",
85
+ "helpIntermediate": "Ayuda - Obtener ayuda",
86
+ "helpExpert": "help",
87
+
88
+ "quitBeginner": "Salir - Cerrar GitCoach",
89
+ "quitIntermediate": "Salir - Cerrar",
90
+ "quitExpert": "quit"
39
91
  },
40
92
  "commands": {
41
93
  "status": {
@@ -35,7 +35,59 @@
35
35
  "quit": "Quitter",
36
36
  "quitDesc": "Fermer GitCoach",
37
37
  "back": "Retour",
38
- "backDesc": "Revenir au menu precedent"
38
+ "backDesc": "Revenir au menu precedent",
39
+
40
+ "statusBeginner": "Statut - Voir l'etat actuel de vos fichiers",
41
+ "statusIntermediate": "Statut - Voir les modifications",
42
+ "statusExpert": "git status",
43
+
44
+ "addBeginner": "Ajouter - Preparer vos fichiers pour l'enregistrement",
45
+ "addIntermediate": "Ajouter - Indexer les fichiers",
46
+ "addExpert": "git add",
47
+
48
+ "commitBeginner": "Commit - Enregistrer vos modifications avec un message",
49
+ "commitIntermediate": "Commit - Enregistrer",
50
+ "commitExpert": "git commit",
51
+
52
+ "pushBeginner": "Push - Envoyer vos modifications au serveur distant",
53
+ "pushIntermediate": "Push - Envoyer",
54
+ "pushExpert": "git push",
55
+
56
+ "pullBeginner": "Pull - Telecharger les modifications du serveur",
57
+ "pullIntermediate": "Pull - Telecharger",
58
+ "pullExpert": "git pull",
59
+
60
+ "branchBeginner": "Branche - Travailler sur des versions separees",
61
+ "branchIntermediate": "Branche - Gerer les branches",
62
+ "branchExpert": "git branch",
63
+
64
+ "undoBeginner": "Annuler - Revenir en arriere en securite",
65
+ "undoIntermediate": "Annuler - Revenir en arriere",
66
+ "undoExpert": "git reset/restore",
67
+
68
+ "historyBeginner": "Historique - Voir les commits passes",
69
+ "historyIntermediate": "Historique - Voir les commits",
70
+ "historyExpert": "git log",
71
+
72
+ "stashBeginner": "Stash - Sauvegarder temporairement votre travail",
73
+ "stashIntermediate": "Stash - Sauvegarder temporairement",
74
+ "stashExpert": "git stash",
75
+
76
+ "configBeginner": "Parametres - Configurer GitCoach",
77
+ "configIntermediate": "Parametres - Configurer",
78
+ "configExpert": "config",
79
+
80
+ "statsBeginner": "Statistiques - Voir votre progression",
81
+ "statsIntermediate": "Statistiques - Voir les stats",
82
+ "statsExpert": "stats",
83
+
84
+ "helpBeginner": "Aide - Obtenir de l'assistance",
85
+ "helpIntermediate": "Aide - Obtenir de l'aide",
86
+ "helpExpert": "help",
87
+
88
+ "quitBeginner": "Quitter - Fermer GitCoach",
89
+ "quitIntermediate": "Quitter - Fermer",
90
+ "quitExpert": "quit"
39
91
  },
40
92
  "commands": {
41
93
  "status": {
@@ -1 +1 @@
1
- {"version":3,"file":"add-menu.d.ts","sourceRoot":"","sources":["../../../src/ui/menus/add-menu.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,SAAS;IACxB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,wBAAsB,WAAW,IAAI,OAAO,CAAC,SAAS,CAAC,CAoEtD"}
1
+ {"version":3,"file":"add-menu.d.ts","sourceRoot":"","sources":["../../../src/ui/menus/add-menu.ts"],"names":[],"mappings":"AAUA,MAAM,WAAW,SAAS;IACxB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;CACpB;AAID,wBAAsB,WAAW,IAAI,OAAO,CAAC,SAAS,CAAC,CA6ItD"}