living-documentation 7.0.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 (173) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +329 -0
  3. package/dist/bin/cli.d.ts +3 -0
  4. package/dist/bin/cli.d.ts.map +1 -0
  5. package/dist/bin/cli.js +62 -0
  6. package/dist/bin/cli.js.map +1 -0
  7. package/dist/src/frontend/admin.html +1073 -0
  8. package/dist/src/frontend/annotations.js +546 -0
  9. package/dist/src/frontend/boot.js +90 -0
  10. package/dist/src/frontend/config.js +19 -0
  11. package/dist/src/frontend/dark-mode.js +20 -0
  12. package/dist/src/frontend/diagram/alignment.js +161 -0
  13. package/dist/src/frontend/diagram/clipboard.js +172 -0
  14. package/dist/src/frontend/diagram/constants.js +109 -0
  15. package/dist/src/frontend/diagram/debug.js +43 -0
  16. package/dist/src/frontend/diagram/edge-panel.js +260 -0
  17. package/dist/src/frontend/diagram/edge-rendering.js +12 -0
  18. package/dist/src/frontend/diagram/grid.js +78 -0
  19. package/dist/src/frontend/diagram/groups.js +102 -0
  20. package/dist/src/frontend/diagram/history.js +153 -0
  21. package/dist/src/frontend/diagram/image-name-modal.js +48 -0
  22. package/dist/src/frontend/diagram/image-upload.js +36 -0
  23. package/dist/src/frontend/diagram/label-editor.js +115 -0
  24. package/dist/src/frontend/diagram/link-panel.js +144 -0
  25. package/dist/src/frontend/diagram/main.js +299 -0
  26. package/dist/src/frontend/diagram/network.js +1473 -0
  27. package/dist/src/frontend/diagram/node-panel.js +267 -0
  28. package/dist/src/frontend/diagram/node-rendering.js +773 -0
  29. package/dist/src/frontend/diagram/persistence.js +161 -0
  30. package/dist/src/frontend/diagram/ports.js +386 -0
  31. package/dist/src/frontend/diagram/selection-overlay.js +336 -0
  32. package/dist/src/frontend/diagram/state.js +39 -0
  33. package/dist/src/frontend/diagram/t.js +3 -0
  34. package/dist/src/frontend/diagram/toast.js +21 -0
  35. package/dist/src/frontend/diagram/unlock-hold.js +182 -0
  36. package/dist/src/frontend/diagram/zoom.js +20 -0
  37. package/dist/src/frontend/diagram-link-modal.js +137 -0
  38. package/dist/src/frontend/diagram.html +1279 -0
  39. package/dist/src/frontend/documents.js +373 -0
  40. package/dist/src/frontend/export.js +338 -0
  41. package/dist/src/frontend/i18n/en.json +406 -0
  42. package/dist/src/frontend/i18n/fr.json +406 -0
  43. package/dist/src/frontend/i18n.js +32 -0
  44. package/dist/src/frontend/image-paste.js +101 -0
  45. package/dist/src/frontend/index.html +2314 -0
  46. package/dist/src/frontend/misc.js +25 -0
  47. package/dist/src/frontend/new-doc-modal.js +260 -0
  48. package/dist/src/frontend/new-folder-modal.js +174 -0
  49. package/dist/src/frontend/search.js +157 -0
  50. package/dist/src/frontend/sidebar-helpers.js +58 -0
  51. package/dist/src/frontend/sidebar.js +182 -0
  52. package/dist/src/frontend/snippet-detect.js +25 -0
  53. package/dist/src/frontend/snippet-table.js +85 -0
  54. package/dist/src/frontend/snippet-tree.js +94 -0
  55. package/dist/src/frontend/snippets.js +534 -0
  56. package/dist/src/frontend/state.js +28 -0
  57. package/dist/src/frontend/utils.js +21 -0
  58. package/dist/src/frontend/vendor/wordcloud2.js +1187 -0
  59. package/dist/src/frontend/wordcloud.js +693 -0
  60. package/dist/src/lib/config.d.ts +17 -0
  61. package/dist/src/lib/config.d.ts.map +1 -0
  62. package/dist/src/lib/config.js +79 -0
  63. package/dist/src/lib/config.js.map +1 -0
  64. package/dist/src/lib/parser.d.ts +11 -0
  65. package/dist/src/lib/parser.d.ts.map +1 -0
  66. package/dist/src/lib/parser.js +111 -0
  67. package/dist/src/lib/parser.js.map +1 -0
  68. package/dist/src/mcp/server.d.ts +3 -0
  69. package/dist/src/mcp/server.d.ts.map +1 -0
  70. package/dist/src/mcp/server.js +986 -0
  71. package/dist/src/mcp/server.js.map +1 -0
  72. package/dist/src/mcp/tools/diagrams.d.ts +44 -0
  73. package/dist/src/mcp/tools/diagrams.d.ts.map +1 -0
  74. package/dist/src/mcp/tools/diagrams.js +245 -0
  75. package/dist/src/mcp/tools/diagrams.js.map +1 -0
  76. package/dist/src/mcp/tools/documents.d.ts +26 -0
  77. package/dist/src/mcp/tools/documents.d.ts.map +1 -0
  78. package/dist/src/mcp/tools/documents.js +127 -0
  79. package/dist/src/mcp/tools/documents.js.map +1 -0
  80. package/dist/src/mcp/tools/source.d.ts +29 -0
  81. package/dist/src/mcp/tools/source.d.ts.map +1 -0
  82. package/dist/src/mcp/tools/source.js +200 -0
  83. package/dist/src/mcp/tools/source.js.map +1 -0
  84. package/dist/src/routes/annotations.d.ts +3 -0
  85. package/dist/src/routes/annotations.d.ts.map +1 -0
  86. package/dist/src/routes/annotations.js +83 -0
  87. package/dist/src/routes/annotations.js.map +1 -0
  88. package/dist/src/routes/browse.d.ts +3 -0
  89. package/dist/src/routes/browse.d.ts.map +1 -0
  90. package/dist/src/routes/browse.js +75 -0
  91. package/dist/src/routes/browse.js.map +1 -0
  92. package/dist/src/routes/config.d.ts +3 -0
  93. package/dist/src/routes/config.d.ts.map +1 -0
  94. package/dist/src/routes/config.js +97 -0
  95. package/dist/src/routes/config.js.map +1 -0
  96. package/dist/src/routes/diagrams.d.ts +3 -0
  97. package/dist/src/routes/diagrams.d.ts.map +1 -0
  98. package/dist/src/routes/diagrams.js +69 -0
  99. package/dist/src/routes/diagrams.js.map +1 -0
  100. package/dist/src/routes/documents.d.ts +8 -0
  101. package/dist/src/routes/documents.d.ts.map +1 -0
  102. package/dist/src/routes/documents.js +332 -0
  103. package/dist/src/routes/documents.js.map +1 -0
  104. package/dist/src/routes/export.d.ts +3 -0
  105. package/dist/src/routes/export.d.ts.map +1 -0
  106. package/dist/src/routes/export.js +277 -0
  107. package/dist/src/routes/export.js.map +1 -0
  108. package/dist/src/routes/images.d.ts +3 -0
  109. package/dist/src/routes/images.d.ts.map +1 -0
  110. package/dist/src/routes/images.js +49 -0
  111. package/dist/src/routes/images.js.map +1 -0
  112. package/dist/src/routes/wordcloud.d.ts +3 -0
  113. package/dist/src/routes/wordcloud.d.ts.map +1 -0
  114. package/dist/src/routes/wordcloud.js +95 -0
  115. package/dist/src/routes/wordcloud.js.map +1 -0
  116. package/dist/src/server.d.ts +7 -0
  117. package/dist/src/server.d.ts.map +1 -0
  118. package/dist/src/server.js +76 -0
  119. package/dist/src/server.js.map +1 -0
  120. package/dist/starting-doc/.annotations.json +3 -0
  121. package/dist/starting-doc/.diagrams.json +1884 -0
  122. package/dist/starting-doc/.living-doc.json +39 -0
  123. package/dist/starting-doc/1_tutorial/2026_04_11_13_25_[General]_crer_vos_dossiers.md +16 -0
  124. package/dist/starting-doc/1_tutorial/2026_04_11_18_58_[General]_creer_un_document_dans_un_dossier.md +9 -0
  125. package/dist/starting-doc/1_tutorial/2026_04_12_09_00_[General]_editer_et_sauvegarder.md +39 -0
  126. package/dist/starting-doc/1_tutorial/2026_04_12_10_00_[General]_utiliser_les_snippets.md +71 -0
  127. package/dist/starting-doc/2026_04_08_20_52_[General]_welcome.md +17 -0
  128. package/dist/starting-doc/2026_04_11_12_55_[General]_premiers_pas.md +271 -0
  129. package/dist/starting-doc/2_guide/2026_04_08_00_04_[DOCUMENT]_utilisation_des_images_plein_ecran_lien_clickable.md +40 -0
  130. package/dist/starting-doc/2_guide/2026_04_08_23_38_[Configuration]_demarrage_de_living_documentation.md +32 -0
  131. package/dist/starting-doc/2_guide/2026_04_09_09_00_[NAVIGATION]_recherche_plein_texte.md +65 -0
  132. package/dist/starting-doc/2_guide/2026_04_09_10_00_[EXPORT]_exporter_en_pdf.md +43 -0
  133. package/dist/starting-doc/2_guide/2026_04_09_11_00_[Configuration]_configurer_le_panneau_admin.md +55 -0
  134. package/dist/starting-doc/2_guide/2026_04_09_12_00_[Configuration]_extra_files.md +68 -0
  135. package/dist/starting-doc/2_guide/2026_04_09_13_00_[WORDCLOUD]_word_cloud.md +54 -0
  136. package/dist/starting-doc/2_guide/2026_04_09_14_00_[DIAGRAM]_creer_et_lier_un_diagramme.md +77 -0
  137. package/dist/starting-doc/3_concept/2026_04_08_20_58_[DOCUMENTING]_ADRS.md +20 -0
  138. package/dist/starting-doc/3_concept/2026_04_08_22_15_[DOCUMENTING]_living_documentation.md +17 -0
  139. package/dist/starting-doc/3_concept/2026_04_08_22_46_[METHODOLOGY]_diataxis_architecture_du_contenu.md +16 -0
  140. package/dist/starting-doc/4_reference/2026_04_08_23_14_[FUNDAMENTALS]_the_living_documentation_tool.md +41 -0
  141. package/dist/starting-doc/4_reference/2026_04_09_01_00_[REFERENCE]_raccourcis_clavier.md +61 -0
  142. package/dist/starting-doc/4_reference/2026_04_09_02_00_[REFERENCE]_tokens_pattern_nommage.md +75 -0
  143. package/dist/starting-doc/4_reference/2026_04_09_03_00_[REFERENCE]_types_de_snippets.md +68 -0
  144. package/dist/starting-doc/4_reference/2026_04_11_17_31_[FUNDAMENTALS]_architecturer_une_documentation.md +12 -0
  145. package/dist/starting-doc/4_reference/2026_04_12_14_07_[FUNDAMENTALS]_dossiers_et_catgories.md +89 -0
  146. package/dist/starting-doc/images/admin_screenshot.png +0 -0
  147. package/dist/starting-doc/images/ajout-document.png +0 -0
  148. package/dist/starting-doc/images/ajouter-document-categorie.png +0 -0
  149. package/dist/starting-doc/images/ajouter_un_document_dans_un_dossier.png +0 -0
  150. package/dist/starting-doc/images/architecturer_une_documentation_reference.png +0 -0
  151. package/dist/starting-doc/images/cr_er_un_document.png +0 -0
  152. package/dist/starting-doc/images/creation-nouveau-dossier.png +0 -0
  153. package/dist/starting-doc/images/creer-document-context-engineering.png +0 -0
  154. package/dist/starting-doc/images/creer-dossier-only-tutoriel.png +0 -0
  155. package/dist/starting-doc/images/creer-dossier-tutoriel.png +0 -0
  156. package/dist/starting-doc/images/creer-dossiers-done.png +0 -0
  157. package/dist/starting-doc/images/creer-un-document.png +0 -0
  158. package/dist/starting-doc/images/creer-vos-dossiers-tutoriel.png +0 -0
  159. package/dist/starting-doc/images/creer-vos-dossiers.png +0 -0
  160. package/dist/starting-doc/images/decouverte_adrs.png +0 -0
  161. package/dist/starting-doc/images/diataxis.png +0 -0
  162. package/dist/starting-doc/images/diataxis_callout.png +0 -0
  163. package/dist/starting-doc/images/document-cree.png +0 -0
  164. package/dist/starting-doc/images/liens_snippets.png +0 -0
  165. package/dist/starting-doc/images/living_documentation.png +0 -0
  166. package/dist/starting-doc/images/npm_logo.png +0 -0
  167. package/dist/starting-doc/images/popup-creer-document.png +0 -0
  168. package/dist/starting-doc/images/popup-creer-dossier.png +0 -0
  169. package/dist/starting-doc/images/popup-dossier-cree.png +0 -0
  170. package/dist/starting-doc/images/quatre-dossiers-crees.png +0 -0
  171. package/dist/starting-doc/images/screenshot-living-doc.png +0 -0
  172. package/dist/starting-doc/images/the_living_documentation_tool.png +0 -0
  173. package/package.json +49 -0
@@ -0,0 +1,1884 @@
1
+ [
2
+ {
3
+ "id": "d1775684671412",
4
+ "title": "The Living Documentation Tool",
5
+ "nodes": [
6
+ {
7
+ "id": "n1775913574432",
8
+ "label": "",
9
+ "shapeType": "image",
10
+ "colorKey": "c-gray",
11
+ "nodeWidth": 982,
12
+ "nodeHeight": 615,
13
+ "fontSize": null,
14
+ "textAlign": null,
15
+ "textValign": null,
16
+ "bgOpacity": null,
17
+ "rotation": 0,
18
+ "labelRotation": 0,
19
+ "imageSrc": "/images/screenshot-living-doc.png",
20
+ "groupId": null,
21
+ "nodeLink": null,
22
+ "locked": true,
23
+ "x": 1,
24
+ "y": -299
25
+ },
26
+ {
27
+ "id": "n1775684943156",
28
+ "label": "Collapsible Drawer",
29
+ "shapeType": "post-it",
30
+ "colorKey": "c-red",
31
+ "nodeWidth": 118,
32
+ "nodeHeight": 79,
33
+ "fontSize": null,
34
+ "textAlign": null,
35
+ "textValign": null,
36
+ "bgOpacity": null,
37
+ "rotation": 0,
38
+ "labelRotation": 0,
39
+ "imageSrc": null,
40
+ "groupId": null,
41
+ "nodeLink": null,
42
+ "locked": true,
43
+ "x": -397,
44
+ "y": -55
45
+ },
46
+ {
47
+ "id": "n17756850034188hc0sfyf8xe",
48
+ "label": "Text Search in all documents",
49
+ "shapeType": "post-it",
50
+ "colorKey": "c-orange",
51
+ "nodeWidth": 118,
52
+ "nodeHeight": 79,
53
+ "fontSize": null,
54
+ "textAlign": null,
55
+ "textValign": null,
56
+ "bgOpacity": null,
57
+ "rotation": 0,
58
+ "labelRotation": 0,
59
+ "imageSrc": null,
60
+ "groupId": null,
61
+ "nodeLink": null,
62
+ "locked": false,
63
+ "x": 36,
64
+ "y": -696
65
+ },
66
+ {
67
+ "id": "n1775685036806",
68
+ "label": "Customizable HomePage Title",
69
+ "shapeType": "post-it",
70
+ "colorKey": "c-orange",
71
+ "nodeWidth": 118,
72
+ "nodeHeight": 79,
73
+ "fontSize": null,
74
+ "textAlign": null,
75
+ "textValign": null,
76
+ "bgOpacity": null,
77
+ "rotation": 0,
78
+ "labelRotation": 0,
79
+ "imageSrc": null,
80
+ "groupId": null,
81
+ "nodeLink": null,
82
+ "locked": false,
83
+ "x": -316,
84
+ "y": -696
85
+ },
86
+ {
87
+ "id": "n1775685115388ojj2ddk0v3c",
88
+ "label": "Dark / Light Mode",
89
+ "shapeType": "post-it",
90
+ "colorKey": "c-orange",
91
+ "nodeWidth": 118,
92
+ "nodeHeight": 79,
93
+ "fontSize": null,
94
+ "textAlign": null,
95
+ "textValign": null,
96
+ "bgOpacity": null,
97
+ "rotation": 0,
98
+ "labelRotation": 0,
99
+ "imageSrc": null,
100
+ "groupId": null,
101
+ "nodeLink": null,
102
+ "locked": false,
103
+ "x": 202,
104
+ "y": -696
105
+ },
106
+ {
107
+ "id": "n1775685153801a6odc8c3nnb",
108
+ "label": "Professionnal\nDiagram Editor",
109
+ "shapeType": "post-it",
110
+ "colorKey": "c-purple",
111
+ "nodeWidth": 118,
112
+ "nodeHeight": 79,
113
+ "fontSize": null,
114
+ "textAlign": null,
115
+ "textValign": null,
116
+ "bgOpacity": null,
117
+ "rotation": 0,
118
+ "labelRotation": 0,
119
+ "imageSrc": null,
120
+ "groupId": null,
121
+ "nodeLink": null,
122
+ "locked": false,
123
+ "x": 485,
124
+ "y": -696
125
+ },
126
+ {
127
+ "id": "n1775685208099jm1vyxxsw2",
128
+ "label": "Custom\nConfigurations",
129
+ "shapeType": "post-it",
130
+ "colorKey": "c-orange",
131
+ "nodeWidth": 118,
132
+ "nodeHeight": 79,
133
+ "fontSize": null,
134
+ "textAlign": null,
135
+ "textValign": null,
136
+ "bgOpacity": null,
137
+ "rotation": 0,
138
+ "labelRotation": 0,
139
+ "imageSrc": null,
140
+ "groupId": null,
141
+ "nodeLink": null,
142
+ "locked": false,
143
+ "x": 621,
144
+ "y": -590
145
+ },
146
+ {
147
+ "id": "n1775685374749",
148
+ "label": "an experiment\n??",
149
+ "shapeType": "post-it",
150
+ "colorKey": "c-orange",
151
+ "nodeWidth": 118,
152
+ "nodeHeight": 79,
153
+ "fontSize": null,
154
+ "textAlign": null,
155
+ "textValign": null,
156
+ "bgOpacity": null,
157
+ "rotation": 0,
158
+ "labelRotation": 0,
159
+ "imageSrc": null,
160
+ "groupId": null,
161
+ "nodeLink": null,
162
+ "locked": false,
163
+ "x": 342,
164
+ "y": -696
165
+ },
166
+ {
167
+ "id": "n1776718342913",
168
+ "label": "",
169
+ "shapeType": "box",
170
+ "colorKey": "c-red",
171
+ "nodeWidth": 185,
172
+ "nodeHeight": 581,
173
+ "fontSize": 19,
174
+ "textAlign": null,
175
+ "textValign": "bottom",
176
+ "bgOpacity": 0.2,
177
+ "rotation": 0,
178
+ "labelRotation": 0,
179
+ "imageSrc": null,
180
+ "groupId": null,
181
+ "nodeLink": null,
182
+ "locked": true,
183
+ "x": -397,
184
+ "y": -282
185
+ },
186
+ {
187
+ "id": "n1776718478711c3c7vea1fjo",
188
+ "label": "",
189
+ "shapeType": "box",
190
+ "colorKey": "c-amber",
191
+ "nodeWidth": 981,
192
+ "nodeHeight": 32,
193
+ "fontSize": 19,
194
+ "textAlign": "center",
195
+ "textValign": "middle",
196
+ "bgOpacity": 0.15,
197
+ "rotation": 0,
198
+ "labelRotation": 0,
199
+ "imageSrc": null,
200
+ "groupId": null,
201
+ "nodeLink": null,
202
+ "locked": true,
203
+ "x": 1,
204
+ "y": -589
205
+ },
206
+ {
207
+ "id": "n17767186744746efbbv4wpta",
208
+ "label": "",
209
+ "shapeType": "box",
210
+ "colorKey": "c-cyan",
211
+ "nodeWidth": 794,
212
+ "nodeHeight": 581,
213
+ "fontSize": 19,
214
+ "textAlign": "right",
215
+ "textValign": "bottom",
216
+ "bgOpacity": 0.2,
217
+ "rotation": 0,
218
+ "labelRotation": 0,
219
+ "imageSrc": null,
220
+ "groupId": null,
221
+ "nodeLink": null,
222
+ "locked": true,
223
+ "x": 95,
224
+ "y": -282
225
+ },
226
+ {
227
+ "id": "n1776719002696h1purm2o60r",
228
+ "label": "Main Page\n(Guides, Tutorials, Adrs, ...)",
229
+ "shapeType": "post-it",
230
+ "colorKey": "c-sky",
231
+ "nodeWidth": 130,
232
+ "nodeHeight": 79,
233
+ "fontSize": null,
234
+ "textAlign": null,
235
+ "textValign": null,
236
+ "bgOpacity": null,
237
+ "rotation": 0,
238
+ "labelRotation": 0,
239
+ "imageSrc": null,
240
+ "groupId": null,
241
+ "nodeLink": null,
242
+ "locked": true,
243
+ "x": 414,
244
+ "y": -48
245
+ },
246
+ {
247
+ "id": "n1776719087371gagjbnxqdq5",
248
+ "label": "Top Bar",
249
+ "shapeType": "post-it",
250
+ "colorKey": "c-amber",
251
+ "nodeWidth": 120,
252
+ "nodeHeight": 44,
253
+ "fontSize": null,
254
+ "textAlign": null,
255
+ "textValign": null,
256
+ "bgOpacity": null,
257
+ "rotation": 0,
258
+ "labelRotation": 0,
259
+ "imageSrc": null,
260
+ "groupId": null,
261
+ "nodeLink": null,
262
+ "locked": true,
263
+ "x": -104,
264
+ "y": -601
265
+ },
266
+ {
267
+ "id": "a1776719197023",
268
+ "label": "",
269
+ "shapeType": "anchor",
270
+ "colorKey": "c-gray",
271
+ "nodeWidth": 8,
272
+ "nodeHeight": 8,
273
+ "fontSize": null,
274
+ "textAlign": null,
275
+ "textValign": null,
276
+ "bgOpacity": null,
277
+ "rotation": 0,
278
+ "labelRotation": 0,
279
+ "imageSrc": null,
280
+ "groupId": null,
281
+ "nodeLink": null,
282
+ "locked": false,
283
+ "x": -419,
284
+ "y": -600
285
+ },
286
+ {
287
+ "id": "n1776719217093rqxnzo3lnho",
288
+ "label": "Close / Open\nDrawer",
289
+ "shapeType": "post-it",
290
+ "colorKey": "c-orange",
291
+ "nodeWidth": 118,
292
+ "nodeHeight": 79,
293
+ "fontSize": null,
294
+ "textAlign": null,
295
+ "textValign": null,
296
+ "bgOpacity": null,
297
+ "rotation": 0,
298
+ "labelRotation": 0,
299
+ "imageSrc": null,
300
+ "groupId": null,
301
+ "nodeLink": null,
302
+ "locked": false,
303
+ "x": -477,
304
+ "y": -696
305
+ },
306
+ {
307
+ "id": "a1776719250113",
308
+ "label": "",
309
+ "shapeType": "anchor",
310
+ "colorKey": "c-gray",
311
+ "nodeWidth": 8,
312
+ "nodeHeight": 8,
313
+ "fontSize": null,
314
+ "textAlign": null,
315
+ "textValign": null,
316
+ "bgOpacity": null,
317
+ "rotation": 0,
318
+ "labelRotation": 0,
319
+ "imageSrc": null,
320
+ "groupId": null,
321
+ "nodeLink": null,
322
+ "locked": false,
323
+ "x": -477,
324
+ "y": -599
325
+ },
326
+ {
327
+ "id": "a1776719277106",
328
+ "label": "",
329
+ "shapeType": "anchor",
330
+ "colorKey": "c-gray",
331
+ "nodeWidth": 8,
332
+ "nodeHeight": 8,
333
+ "fontSize": null,
334
+ "textAlign": null,
335
+ "textValign": null,
336
+ "bgOpacity": null,
337
+ "rotation": 0,
338
+ "labelRotation": 0,
339
+ "imageSrc": null,
340
+ "groupId": null,
341
+ "nodeLink": null,
342
+ "locked": false,
343
+ "x": 132,
344
+ "y": -598
345
+ },
346
+ {
347
+ "id": "a1776719334448",
348
+ "label": "",
349
+ "shapeType": "anchor",
350
+ "colorKey": "c-gray",
351
+ "nodeWidth": 8,
352
+ "nodeHeight": 8,
353
+ "fontSize": null,
354
+ "textAlign": null,
355
+ "textValign": null,
356
+ "bgOpacity": null,
357
+ "rotation": 0,
358
+ "labelRotation": 0,
359
+ "imageSrc": null,
360
+ "groupId": null,
361
+ "nodeLink": null,
362
+ "locked": false,
363
+ "x": 326,
364
+ "y": -601
365
+ },
366
+ {
367
+ "id": "a1776719339398",
368
+ "label": "",
369
+ "shapeType": "anchor",
370
+ "colorKey": "c-gray",
371
+ "nodeWidth": 8,
372
+ "nodeHeight": 8,
373
+ "fontSize": null,
374
+ "textAlign": null,
375
+ "textValign": null,
376
+ "bgOpacity": null,
377
+ "rotation": 0,
378
+ "labelRotation": 0,
379
+ "imageSrc": null,
380
+ "groupId": null,
381
+ "nodeLink": null,
382
+ "locked": false,
383
+ "x": 408,
384
+ "y": -599
385
+ },
386
+ {
387
+ "id": "a1776719344190",
388
+ "label": "",
389
+ "shapeType": "anchor",
390
+ "colorKey": "c-gray",
391
+ "nodeWidth": 8,
392
+ "nodeHeight": 8,
393
+ "fontSize": null,
394
+ "textAlign": null,
395
+ "textValign": null,
396
+ "bgOpacity": null,
397
+ "rotation": 0,
398
+ "labelRotation": 0,
399
+ "imageSrc": null,
400
+ "groupId": null,
401
+ "nodeLink": null,
402
+ "locked": false,
403
+ "x": 487,
404
+ "y": -590
405
+ }
406
+ ],
407
+ "edges": [
408
+ {
409
+ "id": "e177671900269657yods3vsua",
410
+ "from": "n1776719002696h1purm2o60r",
411
+ "label": "",
412
+ "arrowDir": "to",
413
+ "dashes": false,
414
+ "fontSize": null,
415
+ "labelRotation": 0,
416
+ "edgeLabelOffsetX": 0,
417
+ "edgeLabelOffsetY": 0,
418
+ "fromPort": null,
419
+ "toPort": null,
420
+ "edgeColor": null,
421
+ "edgeWidth": null,
422
+ "edgeLocked": false,
423
+ "edgeLabelWidth": null
424
+ },
425
+ {
426
+ "id": "e1776719087371oed63d2g1dn",
427
+ "from": "n1776719087371gagjbnxqdq5",
428
+ "label": "",
429
+ "arrowDir": "to",
430
+ "dashes": false,
431
+ "fontSize": null,
432
+ "labelRotation": 0,
433
+ "edgeLabelOffsetX": 0,
434
+ "edgeLabelOffsetY": 0,
435
+ "fromPort": null,
436
+ "toPort": null,
437
+ "edgeColor": null,
438
+ "edgeWidth": null,
439
+ "edgeLocked": false,
440
+ "edgeLabelWidth": null
441
+ },
442
+ {
443
+ "id": "e1776719197024",
444
+ "from": "n1775685036806",
445
+ "to": "a1776719197023",
446
+ "label": "",
447
+ "arrowDir": "to",
448
+ "dashes": false,
449
+ "fontSize": null,
450
+ "labelRotation": 0,
451
+ "edgeLabelOffsetX": 0,
452
+ "edgeLabelOffsetY": 0,
453
+ "fromPort": null,
454
+ "toPort": null,
455
+ "edgeColor": null,
456
+ "edgeWidth": null,
457
+ "edgeLocked": false,
458
+ "edgeLabelWidth": null
459
+ },
460
+ {
461
+ "id": "e17767192170937qf75cuk7x3",
462
+ "from": "n1776719217093rqxnzo3lnho",
463
+ "label": "",
464
+ "arrowDir": "to",
465
+ "dashes": false,
466
+ "fontSize": null,
467
+ "labelRotation": 0,
468
+ "edgeLabelOffsetX": 0,
469
+ "edgeLabelOffsetY": 0,
470
+ "fromPort": null,
471
+ "toPort": null,
472
+ "edgeColor": null,
473
+ "edgeWidth": null,
474
+ "edgeLocked": false,
475
+ "edgeLabelWidth": null
476
+ },
477
+ {
478
+ "id": "e1776719250113",
479
+ "from": "n1776719217093rqxnzo3lnho",
480
+ "to": "a1776719250113",
481
+ "label": "",
482
+ "arrowDir": "to",
483
+ "dashes": false,
484
+ "fontSize": null,
485
+ "labelRotation": 0,
486
+ "edgeLabelOffsetX": 0,
487
+ "edgeLabelOffsetY": 0,
488
+ "fromPort": null,
489
+ "toPort": null,
490
+ "edgeColor": null,
491
+ "edgeWidth": null,
492
+ "edgeLocked": false,
493
+ "edgeLabelWidth": null
494
+ },
495
+ {
496
+ "id": "e1776719277108",
497
+ "from": "n17756850034188hc0sfyf8xe",
498
+ "to": "a1776719277106",
499
+ "label": "",
500
+ "arrowDir": "to",
501
+ "dashes": false,
502
+ "fontSize": null,
503
+ "labelRotation": 0,
504
+ "edgeLabelOffsetX": 0,
505
+ "edgeLabelOffsetY": 0,
506
+ "fromPort": null,
507
+ "toPort": null,
508
+ "edgeColor": null,
509
+ "edgeWidth": null,
510
+ "edgeLocked": false,
511
+ "edgeLabelWidth": null
512
+ },
513
+ {
514
+ "id": "e1776719334450",
515
+ "from": "n1775685374749",
516
+ "to": "a1776719334448",
517
+ "label": "",
518
+ "arrowDir": "to",
519
+ "dashes": false,
520
+ "fontSize": null,
521
+ "labelRotation": 0,
522
+ "edgeLabelOffsetX": 0,
523
+ "edgeLabelOffsetY": 0,
524
+ "fromPort": null,
525
+ "toPort": null,
526
+ "edgeColor": null,
527
+ "edgeWidth": null,
528
+ "edgeLocked": false,
529
+ "edgeLabelWidth": null
530
+ },
531
+ {
532
+ "id": "e1776719339399",
533
+ "from": "n1775685153801a6odc8c3nnb",
534
+ "to": "a1776719339398",
535
+ "label": "",
536
+ "arrowDir": "to",
537
+ "dashes": false,
538
+ "fontSize": null,
539
+ "labelRotation": 0,
540
+ "edgeLabelOffsetX": 0,
541
+ "edgeLabelOffsetY": 0,
542
+ "fromPort": null,
543
+ "toPort": null,
544
+ "edgeColor": null,
545
+ "edgeWidth": null,
546
+ "edgeLocked": false,
547
+ "edgeLabelWidth": null
548
+ },
549
+ {
550
+ "id": "e1776719344191",
551
+ "from": "n1775685208099jm1vyxxsw2",
552
+ "to": "a1776719344190",
553
+ "label": "",
554
+ "arrowDir": "to",
555
+ "dashes": false,
556
+ "fontSize": null,
557
+ "labelRotation": 0,
558
+ "edgeLabelOffsetX": 0,
559
+ "edgeLabelOffsetY": 0,
560
+ "fromPort": null,
561
+ "toPort": null,
562
+ "edgeColor": null,
563
+ "edgeWidth": null,
564
+ "edgeLocked": false,
565
+ "edgeLabelWidth": null
566
+ }
567
+ ],
568
+ "edgesStraight": true,
569
+ "gridEnabled": false,
570
+ "alignGuides": true
571
+ },
572
+ {
573
+ "id": "d1775917727566",
574
+ "title": "Créer Vos Dossiers (Tutoriel)",
575
+ "nodes": [
576
+ {
577
+ "id": "n1776025245471",
578
+ "label": "",
579
+ "shapeType": "image",
580
+ "colorKey": "c-gray",
581
+ "nodeWidth": 1274,
582
+ "nodeHeight": 573,
583
+ "fontSize": null,
584
+ "textAlign": null,
585
+ "textValign": null,
586
+ "rotation": 0,
587
+ "labelRotation": 0,
588
+ "imageSrc": "/images/creer-dossier-tutoriel.png",
589
+ "groupId": null,
590
+ "nodeLink": null,
591
+ "x": -185,
592
+ "y": -287
593
+ },
594
+ {
595
+ "id": "n1776025032495",
596
+ "label": "Créer un dossier",
597
+ "shapeType": "post-it",
598
+ "colorKey": "c-amber",
599
+ "nodeWidth": 120,
600
+ "nodeHeight": 100,
601
+ "fontSize": null,
602
+ "textAlign": null,
603
+ "textValign": null,
604
+ "rotation": 0,
605
+ "labelRotation": 0,
606
+ "imageSrc": null,
607
+ "groupId": null,
608
+ "nodeLink": null,
609
+ "x": -399,
610
+ "y": -357
611
+ },
612
+ {
613
+ "id": "a1776025047975",
614
+ "label": "",
615
+ "shapeType": "anchor",
616
+ "colorKey": "c-gray",
617
+ "nodeWidth": 8,
618
+ "nodeHeight": 8,
619
+ "fontSize": null,
620
+ "textAlign": null,
621
+ "textValign": null,
622
+ "rotation": 0,
623
+ "labelRotation": 0,
624
+ "imageSrc": null,
625
+ "groupId": null,
626
+ "nodeLink": null,
627
+ "x": -527,
628
+ "y": -472
629
+ },
630
+ {
631
+ "id": "a1776025047976",
632
+ "label": "",
633
+ "shapeType": "anchor",
634
+ "colorKey": "c-gray",
635
+ "nodeWidth": 8,
636
+ "nodeHeight": 8,
637
+ "fontSize": null,
638
+ "textAlign": null,
639
+ "textValign": null,
640
+ "rotation": 0,
641
+ "labelRotation": 0,
642
+ "imageSrc": null,
643
+ "groupId": null,
644
+ "nodeLink": null,
645
+ "x": -527,
646
+ "y": -472
647
+ },
648
+ {
649
+ "id": "a1776025047977",
650
+ "label": "",
651
+ "shapeType": "anchor",
652
+ "colorKey": "c-gray",
653
+ "nodeWidth": 8,
654
+ "nodeHeight": 8,
655
+ "fontSize": null,
656
+ "textAlign": null,
657
+ "textValign": null,
658
+ "rotation": 0,
659
+ "labelRotation": 0,
660
+ "imageSrc": null,
661
+ "groupId": null,
662
+ "nodeLink": null,
663
+ "x": -527,
664
+ "y": -472
665
+ },
666
+ {
667
+ "id": "n1776025169333",
668
+ "label": "",
669
+ "shapeType": "image",
670
+ "colorKey": "c-gray",
671
+ "nodeWidth": 300,
672
+ "nodeHeight": 224,
673
+ "fontSize": null,
674
+ "textAlign": null,
675
+ "textValign": null,
676
+ "rotation": 0,
677
+ "labelRotation": 0,
678
+ "imageSrc": "/images/popup-creer-dossier.png",
679
+ "groupId": null,
680
+ "nodeLink": null,
681
+ "x": -458,
682
+ "y": -96
683
+ },
684
+ {
685
+ "id": "a1776025311193",
686
+ "label": "",
687
+ "shapeType": "anchor",
688
+ "colorKey": "c-gray",
689
+ "nodeWidth": 8,
690
+ "nodeHeight": 8,
691
+ "fontSize": null,
692
+ "textAlign": null,
693
+ "textValign": null,
694
+ "rotation": 0,
695
+ "labelRotation": 0,
696
+ "imageSrc": null,
697
+ "groupId": null,
698
+ "nodeLink": null,
699
+ "x": -780,
700
+ "y": -385
701
+ },
702
+ {
703
+ "id": "a1776025311194",
704
+ "label": "",
705
+ "shapeType": "anchor",
706
+ "colorKey": "c-gray",
707
+ "nodeWidth": 8,
708
+ "nodeHeight": 8,
709
+ "fontSize": null,
710
+ "textAlign": null,
711
+ "textValign": null,
712
+ "rotation": 0,
713
+ "labelRotation": 0,
714
+ "imageSrc": null,
715
+ "groupId": null,
716
+ "nodeLink": null,
717
+ "x": -780,
718
+ "y": -385
719
+ },
720
+ {
721
+ "id": "n1776025384216",
722
+ "label": "Le prefix 2_ n'est pas affiché mais est utilisé pour ordonner les dossiers",
723
+ "shapeType": "post-it",
724
+ "colorKey": "c-lime",
725
+ "nodeWidth": 170,
726
+ "nodeHeight": 121,
727
+ "fontSize": null,
728
+ "textAlign": null,
729
+ "textValign": null,
730
+ "rotation": 0,
731
+ "labelRotation": 0,
732
+ "imageSrc": null,
733
+ "groupId": null,
734
+ "nodeLink": null,
735
+ "x": -698,
736
+ "y": -101
737
+ },
738
+ {
739
+ "id": "a1776025454055",
740
+ "label": "",
741
+ "shapeType": "anchor",
742
+ "colorKey": "c-gray",
743
+ "nodeWidth": 8,
744
+ "nodeHeight": 8,
745
+ "fontSize": null,
746
+ "textAlign": null,
747
+ "textValign": null,
748
+ "rotation": 0,
749
+ "labelRotation": 0,
750
+ "imageSrc": null,
751
+ "groupId": null,
752
+ "nodeLink": null,
753
+ "x": -793,
754
+ "y": -375
755
+ },
756
+ {
757
+ "id": "a1776025454057",
758
+ "label": "",
759
+ "shapeType": "anchor",
760
+ "colorKey": "c-gray",
761
+ "nodeWidth": 8,
762
+ "nodeHeight": 8,
763
+ "fontSize": null,
764
+ "textAlign": null,
765
+ "textValign": null,
766
+ "rotation": 0,
767
+ "labelRotation": 0,
768
+ "imageSrc": null,
769
+ "groupId": null,
770
+ "nodeLink": null,
771
+ "x": -793,
772
+ "y": -375
773
+ },
774
+ {
775
+ "id": "a1776025454058",
776
+ "label": "",
777
+ "shapeType": "anchor",
778
+ "colorKey": "c-gray",
779
+ "nodeWidth": 8,
780
+ "nodeHeight": 8,
781
+ "fontSize": null,
782
+ "textAlign": null,
783
+ "textValign": null,
784
+ "rotation": 0,
785
+ "labelRotation": 0,
786
+ "imageSrc": null,
787
+ "groupId": null,
788
+ "nodeLink": null,
789
+ "x": -793,
790
+ "y": -375
791
+ }
792
+ ],
793
+ "edges": [
794
+ {
795
+ "id": "e1776025047976",
796
+ "from": "n1776025032495",
797
+ "to": "a1776025047975",
798
+ "label": "",
799
+ "arrowDir": "to",
800
+ "dashes": false,
801
+ "fontSize": null,
802
+ "labelRotation": 0
803
+ },
804
+ {
805
+ "id": "e1776025047977",
806
+ "from": "n1776025032495",
807
+ "to": "a1776025047977",
808
+ "label": "",
809
+ "arrowDir": "to",
810
+ "dashes": false,
811
+ "fontSize": null,
812
+ "labelRotation": 0
813
+ },
814
+ {
815
+ "id": "e1776025186432",
816
+ "from": "n1776025032495",
817
+ "to": "n1776025169333",
818
+ "label": "",
819
+ "arrowDir": "to",
820
+ "dashes": false,
821
+ "fontSize": null,
822
+ "labelRotation": 0
823
+ },
824
+ {
825
+ "id": "e1776025311193",
826
+ "from": "n1776025169333",
827
+ "to": "a1776025311193",
828
+ "label": "",
829
+ "arrowDir": "to",
830
+ "dashes": false,
831
+ "fontSize": null,
832
+ "labelRotation": 0
833
+ },
834
+ {
835
+ "id": "e1776025311194",
836
+ "from": "n1776025169333",
837
+ "to": "a1776025311194",
838
+ "label": "",
839
+ "arrowDir": "to",
840
+ "dashes": false,
841
+ "fontSize": null,
842
+ "labelRotation": 0
843
+ },
844
+ {
845
+ "id": "e1776025454056",
846
+ "from": "n1776025384216",
847
+ "to": "a1776025454055",
848
+ "label": "",
849
+ "arrowDir": "to",
850
+ "dashes": false,
851
+ "fontSize": null,
852
+ "labelRotation": 0
853
+ },
854
+ {
855
+ "id": "e1776025454057",
856
+ "from": "n1776025384216",
857
+ "to": "a1776025454057",
858
+ "label": "",
859
+ "arrowDir": "to",
860
+ "dashes": false,
861
+ "fontSize": null,
862
+ "labelRotation": 0
863
+ },
864
+ {
865
+ "id": "e1776025454058",
866
+ "from": "n1776025384216",
867
+ "to": "a1776025454058",
868
+ "label": "",
869
+ "arrowDir": "to",
870
+ "dashes": false,
871
+ "fontSize": null,
872
+ "labelRotation": 0
873
+ }
874
+ ],
875
+ "edgesStraight": true
876
+ },
877
+ {
878
+ "id": "d1775924007206",
879
+ "title": "Architecturer Une Documentation (Reference)",
880
+ "nodes": [
881
+ {
882
+ "id": "n1775924035067oq12gwkv0b",
883
+ "label": "\n\nOrganisation par \nEQUIPE ou PRODUIT",
884
+ "shapeType": "box",
885
+ "colorKey": "c-orange",
886
+ "nodeWidth": 201,
887
+ "nodeHeight": 325,
888
+ "fontSize": 17,
889
+ "textAlign": null,
890
+ "textValign": "top",
891
+ "rotation": 0,
892
+ "labelRotation": 0,
893
+ "imageSrc": null,
894
+ "groupId": null,
895
+ "nodeLink": null,
896
+ "x": -312,
897
+ "y": -111
898
+ },
899
+ {
900
+ "id": "n1775924035067lqnu07cdnv",
901
+ "label": "\n\nOrganisation CHRONOLOGIQUE",
902
+ "shapeType": "box",
903
+ "colorKey": "c-orange",
904
+ "nodeWidth": 195,
905
+ "nodeHeight": 325,
906
+ "fontSize": 17,
907
+ "textAlign": null,
908
+ "textValign": "top",
909
+ "rotation": 0,
910
+ "labelRotation": 0,
911
+ "imageSrc": null,
912
+ "groupId": null,
913
+ "nodeLink": null,
914
+ "x": -103,
915
+ "y": -111
916
+ },
917
+ {
918
+ "id": "n1775924035067n7aapo56g9a",
919
+ "label": "\n\nOrganisation par \nTYPE DE CONTENU",
920
+ "shapeType": "box",
921
+ "colorKey": "c-sky",
922
+ "nodeWidth": 195,
923
+ "nodeHeight": 325,
924
+ "fontSize": 17,
925
+ "textAlign": null,
926
+ "textValign": "top",
927
+ "rotation": 0,
928
+ "labelRotation": 0,
929
+ "imageSrc": null,
930
+ "groupId": null,
931
+ "nodeLink": null,
932
+ "x": 102,
933
+ "y": -110
934
+ },
935
+ {
936
+ "id": "n17759240350674feznvl4qk7",
937
+ "label": "Intuitive mais tend à fragmenter les connaissances transversales",
938
+ "shapeType": "post-it",
939
+ "colorKey": "c-amber",
940
+ "nodeWidth": 143,
941
+ "nodeHeight": 134,
942
+ "fontSize": null,
943
+ "textAlign": null,
944
+ "textValign": null,
945
+ "rotation": 0,
946
+ "labelRotation": 0,
947
+ "imageSrc": null,
948
+ "groupId": null,
949
+ "nodeLink": null,
950
+ "x": -312,
951
+ "y": -94
952
+ },
953
+ {
954
+ "id": "n17759240350678q09xwrqhmw",
955
+ "label": "Convient aux journaux de bord mais rend la navigation difficile (même si sur ce point vous verrez que living-documentation aide beaucoup)",
956
+ "shapeType": "post-it",
957
+ "colorKey": "c-amber",
958
+ "nodeWidth": 140,
959
+ "nodeHeight": 212,
960
+ "fontSize": null,
961
+ "textAlign": null,
962
+ "textValign": null,
963
+ "rotation": 0,
964
+ "labelRotation": 0,
965
+ "imageSrc": null,
966
+ "groupId": null,
967
+ "nodeLink": null,
968
+ "x": -101,
969
+ "y": -81
970
+ },
971
+ {
972
+ "id": "n1775924035067end9pap0w5t",
973
+ "label": "Celle qui vieillit le mieux : elle sépare ce qu'on apprend de ce qu'on consulte.",
974
+ "shapeType": "post-it",
975
+ "colorKey": "c-blue",
976
+ "nodeWidth": 134,
977
+ "nodeHeight": 159,
978
+ "fontSize": null,
979
+ "textAlign": null,
980
+ "textValign": null,
981
+ "rotation": 0,
982
+ "labelRotation": 0,
983
+ "imageSrc": null,
984
+ "groupId": null,
985
+ "nodeLink": null,
986
+ "x": 103,
987
+ "y": -90
988
+ }
989
+ ],
990
+ "edges": [],
991
+ "edgesStraight": false
992
+ },
993
+ {
994
+ "id": "d1775937972731",
995
+ "title": "Ajouter un Document dans un dossier",
996
+ "nodes": [
997
+ {
998
+ "id": "n1775937993556",
999
+ "label": "",
1000
+ "shapeType": "image",
1001
+ "colorKey": "c-gray",
1002
+ "nodeWidth": 476,
1003
+ "nodeHeight": 389,
1004
+ "fontSize": null,
1005
+ "textAlign": null,
1006
+ "textValign": null,
1007
+ "rotation": 0,
1008
+ "labelRotation": 0,
1009
+ "imageSrc": "/images/ajout-document.png",
1010
+ "groupId": null,
1011
+ "nodeLink": null,
1012
+ "locked": false,
1013
+ "x": -335,
1014
+ "y": -197
1015
+ },
1016
+ {
1017
+ "id": "n1775938180337",
1018
+ "label": "",
1019
+ "shapeType": "circle",
1020
+ "colorKey": "c-slate",
1021
+ "nodeWidth": 20,
1022
+ "nodeHeight": 20,
1023
+ "fontSize": null,
1024
+ "textAlign": null,
1025
+ "textValign": null,
1026
+ "rotation": 0,
1027
+ "labelRotation": 0,
1028
+ "imageSrc": null,
1029
+ "groupId": null,
1030
+ "nodeLink": null,
1031
+ "locked": false,
1032
+ "x": -493,
1033
+ "y": -258
1034
+ },
1035
+ {
1036
+ "id": "a1775938203920",
1037
+ "label": "",
1038
+ "shapeType": "anchor",
1039
+ "colorKey": "c-gray",
1040
+ "nodeWidth": 8,
1041
+ "nodeHeight": 8,
1042
+ "fontSize": null,
1043
+ "textAlign": null,
1044
+ "textValign": null,
1045
+ "rotation": 0,
1046
+ "labelRotation": 0,
1047
+ "imageSrc": null,
1048
+ "groupId": null,
1049
+ "nodeLink": null,
1050
+ "locked": false,
1051
+ "x": 188,
1052
+ "y": -158
1053
+ },
1054
+ {
1055
+ "id": "n1775938430372",
1056
+ "label": "Le format des fichiers est configuré dans la partie ADMIN\n\nYYYY_MM_DD_hh_mm_[CATEGORY]_name.md",
1057
+ "shapeType": "post-it",
1058
+ "colorKey": "c-amber",
1059
+ "nodeWidth": 427,
1060
+ "nodeHeight": 105,
1061
+ "fontSize": 16,
1062
+ "textAlign": null,
1063
+ "textValign": null,
1064
+ "rotation": 0,
1065
+ "labelRotation": 0,
1066
+ "imageSrc": null,
1067
+ "groupId": null,
1068
+ "nodeLink": null,
1069
+ "locked": false,
1070
+ "x": -311,
1071
+ "y": 79
1072
+ },
1073
+ {
1074
+ "id": "a1775938581051",
1075
+ "label": "",
1076
+ "shapeType": "anchor",
1077
+ "colorKey": "c-gray",
1078
+ "nodeWidth": 8,
1079
+ "nodeHeight": 8,
1080
+ "fontSize": null,
1081
+ "textAlign": null,
1082
+ "textValign": null,
1083
+ "rotation": 0,
1084
+ "labelRotation": 0,
1085
+ "imageSrc": null,
1086
+ "groupId": null,
1087
+ "nodeLink": null,
1088
+ "locked": false,
1089
+ "x": -420,
1090
+ "y": -72
1091
+ },
1092
+ {
1093
+ "id": "n1775938625221fswi0twq12r",
1094
+ "label": "Les documents sont triés par date de création inférée à partir du format de nommage",
1095
+ "shapeType": "post-it",
1096
+ "colorKey": "c-sky",
1097
+ "nodeWidth": 195,
1098
+ "nodeHeight": 138,
1099
+ "fontSize": 16,
1100
+ "textAlign": null,
1101
+ "textValign": null,
1102
+ "rotation": 0,
1103
+ "labelRotation": 0,
1104
+ "imageSrc": null,
1105
+ "groupId": null,
1106
+ "nodeLink": null,
1107
+ "locked": false,
1108
+ "x": 67,
1109
+ "y": -74
1110
+ },
1111
+ {
1112
+ "id": "n1775990145929",
1113
+ "label": "",
1114
+ "shapeType": "image",
1115
+ "colorKey": "c-gray",
1116
+ "nodeWidth": 287,
1117
+ "nodeHeight": 419,
1118
+ "fontSize": null,
1119
+ "textAlign": null,
1120
+ "textValign": null,
1121
+ "rotation": 0,
1122
+ "labelRotation": 0,
1123
+ "imageSrc": "/images/ajouter-document-categorie.png",
1124
+ "groupId": null,
1125
+ "nodeLink": null,
1126
+ "locked": false,
1127
+ "x": 313,
1128
+ "y": -210
1129
+ },
1130
+ {
1131
+ "id": "n17759902394050zvnqi762sd",
1132
+ "label": "💡\nTIP\n\nLorsque vous sélectionnez un document dans le drawer, et que vous créez un nouveau document ses champs Category et Location sont définis par défaut aux mêmes valeurs que celles du document seléctionné !",
1133
+ "shapeType": "post-it",
1134
+ "colorKey": "c-lime",
1135
+ "nodeWidth": 439,
1136
+ "nodeHeight": 182,
1137
+ "fontSize": 16,
1138
+ "textAlign": null,
1139
+ "textValign": null,
1140
+ "rotation": 0,
1141
+ "labelRotation": 0,
1142
+ "imageSrc": null,
1143
+ "groupId": null,
1144
+ "nodeLink": null,
1145
+ "locked": false,
1146
+ "x": 231,
1147
+ "y": 106
1148
+ }
1149
+ ],
1150
+ "edges": [
1151
+ {
1152
+ "id": "e1775938203921",
1153
+ "from": "n1775938180337",
1154
+ "to": "a1775938203920",
1155
+ "label": "",
1156
+ "arrowDir": "to",
1157
+ "dashes": true,
1158
+ "fontSize": null,
1159
+ "labelRotation": 0,
1160
+ "fromPort": null,
1161
+ "toPort": null,
1162
+ "edgeColor": null,
1163
+ "edgeWidth": null,
1164
+ "edgeLocked": false
1165
+ },
1166
+ {
1167
+ "id": "e1775938581052",
1168
+ "from": "n1775938430372",
1169
+ "to": "a1775938581051",
1170
+ "label": "",
1171
+ "arrowDir": "to",
1172
+ "dashes": false,
1173
+ "fontSize": null,
1174
+ "labelRotation": 0,
1175
+ "fromPort": null,
1176
+ "toPort": null,
1177
+ "edgeColor": null,
1178
+ "edgeWidth": null,
1179
+ "edgeLocked": false
1180
+ }
1181
+ ],
1182
+ "edgesStraight": true,
1183
+ "gridEnabled": false,
1184
+ "alignGuides": true
1185
+ },
1186
+ {
1187
+ "id": "d1776024969304",
1188
+ "title": "Créer un document",
1189
+ "nodes": [
1190
+ {
1191
+ "id": "n1776026234371",
1192
+ "label": "",
1193
+ "shapeType": "image",
1194
+ "colorKey": "c-gray",
1195
+ "nodeWidth": 1166,
1196
+ "nodeHeight": 346,
1197
+ "fontSize": null,
1198
+ "textAlign": null,
1199
+ "textValign": null,
1200
+ "rotation": 0,
1201
+ "labelRotation": 0,
1202
+ "imageSrc": "/images/creer-un-document.png",
1203
+ "groupId": null,
1204
+ "nodeLink": null,
1205
+ "locked": false,
1206
+ "x": 20,
1207
+ "y": -115
1208
+ },
1209
+ {
1210
+ "id": "n1776026006203",
1211
+ "label": "",
1212
+ "shapeType": "image",
1213
+ "colorKey": "c-gray",
1214
+ "nodeWidth": 300,
1215
+ "nodeHeight": 244,
1216
+ "fontSize": null,
1217
+ "textAlign": null,
1218
+ "textValign": null,
1219
+ "rotation": 0,
1220
+ "labelRotation": 0,
1221
+ "imageSrc": "/images/creer-document-context-engineering.png",
1222
+ "groupId": null,
1223
+ "nodeLink": null,
1224
+ "locked": false,
1225
+ "x": 68,
1226
+ "y": 139
1227
+ },
1228
+ {
1229
+ "id": "n1776026271695",
1230
+ "label": "1. Créer un document",
1231
+ "shapeType": "post-it",
1232
+ "colorKey": "c-amber",
1233
+ "nodeWidth": 120,
1234
+ "nodeHeight": 100,
1235
+ "fontSize": null,
1236
+ "textAlign": null,
1237
+ "textValign": null,
1238
+ "rotation": 0,
1239
+ "labelRotation": 0,
1240
+ "imageSrc": null,
1241
+ "groupId": null,
1242
+ "nodeLink": null,
1243
+ "locked": false,
1244
+ "x": -216,
1245
+ "y": -68
1246
+ },
1247
+ {
1248
+ "id": "n177602630381010291tr9g8um",
1249
+ "label": "2. Définir la catégorie et le dossier",
1250
+ "shapeType": "post-it",
1251
+ "colorKey": "c-amber",
1252
+ "nodeWidth": 120,
1253
+ "nodeHeight": 100,
1254
+ "fontSize": null,
1255
+ "textAlign": null,
1256
+ "textValign": null,
1257
+ "rotation": 0,
1258
+ "labelRotation": 0,
1259
+ "imageSrc": null,
1260
+ "groupId": null,
1261
+ "nodeLink": null,
1262
+ "locked": false,
1263
+ "x": -217,
1264
+ "y": 136
1265
+ },
1266
+ {
1267
+ "id": "a1776026349483",
1268
+ "label": "",
1269
+ "shapeType": "anchor",
1270
+ "colorKey": "c-gray",
1271
+ "nodeWidth": 8,
1272
+ "nodeHeight": 8,
1273
+ "fontSize": null,
1274
+ "textAlign": null,
1275
+ "textValign": null,
1276
+ "rotation": 0,
1277
+ "labelRotation": 0,
1278
+ "imageSrc": null,
1279
+ "groupId": null,
1280
+ "nodeLink": null,
1281
+ "locked": false,
1282
+ "x": -75,
1283
+ "y": 117
1284
+ },
1285
+ {
1286
+ "id": "a1776026349485",
1287
+ "label": "",
1288
+ "shapeType": "anchor",
1289
+ "colorKey": "c-gray",
1290
+ "nodeWidth": 8,
1291
+ "nodeHeight": 8,
1292
+ "fontSize": null,
1293
+ "textAlign": null,
1294
+ "textValign": null,
1295
+ "rotation": 0,
1296
+ "labelRotation": 0,
1297
+ "imageSrc": null,
1298
+ "groupId": null,
1299
+ "nodeLink": null,
1300
+ "locked": false,
1301
+ "x": -75,
1302
+ "y": 117
1303
+ },
1304
+ {
1305
+ "id": "a1776026349486",
1306
+ "label": "",
1307
+ "shapeType": "anchor",
1308
+ "colorKey": "c-gray",
1309
+ "nodeWidth": 8,
1310
+ "nodeHeight": 8,
1311
+ "fontSize": null,
1312
+ "textAlign": null,
1313
+ "textValign": null,
1314
+ "rotation": 0,
1315
+ "labelRotation": 0,
1316
+ "imageSrc": null,
1317
+ "groupId": null,
1318
+ "nodeLink": null,
1319
+ "locked": false,
1320
+ "x": -75,
1321
+ "y": 117
1322
+ },
1323
+ {
1324
+ "id": "a1776026354267",
1325
+ "label": "",
1326
+ "shapeType": "anchor",
1327
+ "colorKey": "c-gray",
1328
+ "nodeWidth": 8,
1329
+ "nodeHeight": 8,
1330
+ "fontSize": null,
1331
+ "textAlign": null,
1332
+ "textValign": null,
1333
+ "rotation": 0,
1334
+ "labelRotation": 0,
1335
+ "imageSrc": null,
1336
+ "groupId": null,
1337
+ "nodeLink": null,
1338
+ "locked": false,
1339
+ "x": -77,
1340
+ "y": 167
1341
+ },
1342
+ {
1343
+ "id": "a1776026354268",
1344
+ "label": "",
1345
+ "shapeType": "anchor",
1346
+ "colorKey": "c-gray",
1347
+ "nodeWidth": 8,
1348
+ "nodeHeight": 8,
1349
+ "fontSize": null,
1350
+ "textAlign": null,
1351
+ "textValign": null,
1352
+ "rotation": 0,
1353
+ "labelRotation": 0,
1354
+ "imageSrc": null,
1355
+ "groupId": null,
1356
+ "nodeLink": null,
1357
+ "locked": false,
1358
+ "x": -77,
1359
+ "y": 167
1360
+ },
1361
+ {
1362
+ "id": "a1776026354269",
1363
+ "label": "",
1364
+ "shapeType": "anchor",
1365
+ "colorKey": "c-gray",
1366
+ "nodeWidth": 8,
1367
+ "nodeHeight": 8,
1368
+ "fontSize": null,
1369
+ "textAlign": null,
1370
+ "textValign": null,
1371
+ "rotation": 0,
1372
+ "labelRotation": 0,
1373
+ "imageSrc": null,
1374
+ "groupId": null,
1375
+ "nodeLink": null,
1376
+ "locked": false,
1377
+ "x": -77,
1378
+ "y": 167
1379
+ },
1380
+ {
1381
+ "id": "a1776026410466",
1382
+ "label": "",
1383
+ "shapeType": "anchor",
1384
+ "colorKey": "c-gray",
1385
+ "nodeWidth": 8,
1386
+ "nodeHeight": 8,
1387
+ "fontSize": null,
1388
+ "textAlign": null,
1389
+ "textValign": null,
1390
+ "rotation": 0,
1391
+ "labelRotation": 0,
1392
+ "imageSrc": null,
1393
+ "groupId": null,
1394
+ "nodeLink": null,
1395
+ "locked": false,
1396
+ "x": -308,
1397
+ "y": -204
1398
+ },
1399
+ {
1400
+ "id": "a1776026410467",
1401
+ "label": "",
1402
+ "shapeType": "anchor",
1403
+ "colorKey": "c-gray",
1404
+ "nodeWidth": 8,
1405
+ "nodeHeight": 8,
1406
+ "fontSize": null,
1407
+ "textAlign": null,
1408
+ "textValign": null,
1409
+ "rotation": 0,
1410
+ "labelRotation": 0,
1411
+ "imageSrc": null,
1412
+ "groupId": null,
1413
+ "nodeLink": null,
1414
+ "locked": false,
1415
+ "x": -308,
1416
+ "y": -204
1417
+ },
1418
+ {
1419
+ "id": "a1776026410468",
1420
+ "label": "",
1421
+ "shapeType": "anchor",
1422
+ "colorKey": "c-gray",
1423
+ "nodeWidth": 8,
1424
+ "nodeHeight": 8,
1425
+ "fontSize": null,
1426
+ "textAlign": null,
1427
+ "textValign": null,
1428
+ "rotation": 0,
1429
+ "labelRotation": 0,
1430
+ "imageSrc": null,
1431
+ "groupId": null,
1432
+ "nodeLink": null,
1433
+ "locked": false,
1434
+ "x": -308,
1435
+ "y": -204
1436
+ },
1437
+ {
1438
+ "id": "a1776026410469",
1439
+ "label": "",
1440
+ "shapeType": "anchor",
1441
+ "colorKey": "c-gray",
1442
+ "nodeWidth": 8,
1443
+ "nodeHeight": 8,
1444
+ "fontSize": null,
1445
+ "textAlign": null,
1446
+ "textValign": null,
1447
+ "rotation": 0,
1448
+ "labelRotation": 0,
1449
+ "imageSrc": null,
1450
+ "groupId": null,
1451
+ "nodeLink": null,
1452
+ "locked": false,
1453
+ "x": -308,
1454
+ "y": -204
1455
+ },
1456
+ {
1457
+ "id": "n1776026494215w5zpkmgogas",
1458
+ "label": "3. Le document est crée dans le dossier et la catégorie indiquées",
1459
+ "shapeType": "post-it",
1460
+ "colorKey": "c-lime",
1461
+ "nodeWidth": 155,
1462
+ "nodeHeight": 98,
1463
+ "fontSize": null,
1464
+ "textAlign": null,
1465
+ "textValign": null,
1466
+ "rotation": 0,
1467
+ "labelRotation": 0,
1468
+ "imageSrc": null,
1469
+ "groupId": null,
1470
+ "nodeLink": null,
1471
+ "locked": false,
1472
+ "x": -415,
1473
+ "y": 98
1474
+ },
1475
+ {
1476
+ "id": "a1776026551041",
1477
+ "label": "",
1478
+ "shapeType": "anchor",
1479
+ "colorKey": "c-gray",
1480
+ "nodeWidth": 8,
1481
+ "nodeHeight": 8,
1482
+ "fontSize": null,
1483
+ "textAlign": null,
1484
+ "textValign": null,
1485
+ "rotation": 0,
1486
+ "labelRotation": 0,
1487
+ "imageSrc": null,
1488
+ "groupId": null,
1489
+ "nodeLink": null,
1490
+ "locked": false,
1491
+ "x": -418,
1492
+ "y": -32
1493
+ },
1494
+ {
1495
+ "id": "a1776026551043",
1496
+ "label": "",
1497
+ "shapeType": "anchor",
1498
+ "colorKey": "c-gray",
1499
+ "nodeWidth": 8,
1500
+ "nodeHeight": 8,
1501
+ "fontSize": null,
1502
+ "textAlign": null,
1503
+ "textValign": null,
1504
+ "rotation": 0,
1505
+ "labelRotation": 0,
1506
+ "imageSrc": null,
1507
+ "groupId": null,
1508
+ "nodeLink": null,
1509
+ "locked": false,
1510
+ "x": -418,
1511
+ "y": -32
1512
+ },
1513
+ {
1514
+ "id": "a1776026551044",
1515
+ "label": "",
1516
+ "shapeType": "anchor",
1517
+ "colorKey": "c-gray",
1518
+ "nodeWidth": 8,
1519
+ "nodeHeight": 8,
1520
+ "fontSize": null,
1521
+ "textAlign": null,
1522
+ "textValign": null,
1523
+ "rotation": 0,
1524
+ "labelRotation": 0,
1525
+ "imageSrc": null,
1526
+ "groupId": null,
1527
+ "nodeLink": null,
1528
+ "locked": false,
1529
+ "x": -418,
1530
+ "y": -32
1531
+ },
1532
+ {
1533
+ "id": "a1776026551045",
1534
+ "label": "",
1535
+ "shapeType": "anchor",
1536
+ "colorKey": "c-lime",
1537
+ "nodeWidth": 8,
1538
+ "nodeHeight": 8,
1539
+ "fontSize": null,
1540
+ "textAlign": null,
1541
+ "textValign": null,
1542
+ "rotation": 0,
1543
+ "labelRotation": 0,
1544
+ "imageSrc": null,
1545
+ "groupId": null,
1546
+ "nodeLink": null,
1547
+ "locked": false,
1548
+ "x": -418,
1549
+ "y": -32
1550
+ }
1551
+ ],
1552
+ "edges": [
1553
+ {
1554
+ "id": "e1776026349484",
1555
+ "from": "n177602630381010291tr9g8um",
1556
+ "to": "a1776026349483",
1557
+ "label": "",
1558
+ "arrowDir": "to",
1559
+ "dashes": false,
1560
+ "fontSize": null,
1561
+ "labelRotation": 0,
1562
+ "fromPort": null,
1563
+ "toPort": null,
1564
+ "edgeColor": null,
1565
+ "edgeWidth": null,
1566
+ "edgeLocked": false
1567
+ },
1568
+ {
1569
+ "id": "e1776026349486",
1570
+ "from": "n177602630381010291tr9g8um",
1571
+ "to": "a1776026349485",
1572
+ "label": "",
1573
+ "arrowDir": "to",
1574
+ "dashes": false,
1575
+ "fontSize": null,
1576
+ "labelRotation": 0,
1577
+ "fromPort": null,
1578
+ "toPort": null,
1579
+ "edgeColor": null,
1580
+ "edgeWidth": null,
1581
+ "edgeLocked": false
1582
+ },
1583
+ {
1584
+ "id": "e1776026354267",
1585
+ "from": "n177602630381010291tr9g8um",
1586
+ "to": "a1776026354267",
1587
+ "label": "",
1588
+ "arrowDir": "to",
1589
+ "dashes": false,
1590
+ "fontSize": null,
1591
+ "labelRotation": 0,
1592
+ "fromPort": null,
1593
+ "toPort": null,
1594
+ "edgeColor": null,
1595
+ "edgeWidth": null,
1596
+ "edgeLocked": false
1597
+ },
1598
+ {
1599
+ "id": "e1776026354268",
1600
+ "from": "n177602630381010291tr9g8um",
1601
+ "to": "a1776026354268",
1602
+ "label": "",
1603
+ "arrowDir": "to",
1604
+ "dashes": false,
1605
+ "fontSize": null,
1606
+ "labelRotation": 0,
1607
+ "fromPort": null,
1608
+ "toPort": null,
1609
+ "edgeColor": null,
1610
+ "edgeWidth": null,
1611
+ "edgeLocked": false
1612
+ },
1613
+ {
1614
+ "id": "e1776026354269",
1615
+ "from": "n177602630381010291tr9g8um",
1616
+ "to": "a1776026354269",
1617
+ "label": "",
1618
+ "arrowDir": "to",
1619
+ "dashes": false,
1620
+ "fontSize": null,
1621
+ "labelRotation": 0,
1622
+ "fromPort": null,
1623
+ "toPort": null,
1624
+ "edgeColor": null,
1625
+ "edgeWidth": null,
1626
+ "edgeLocked": false
1627
+ },
1628
+ {
1629
+ "id": "e1776026382006",
1630
+ "from": "n1776026271695",
1631
+ "to": "n177602630381010291tr9g8um",
1632
+ "label": "",
1633
+ "arrowDir": "to",
1634
+ "dashes": false,
1635
+ "fontSize": null,
1636
+ "labelRotation": 0,
1637
+ "fromPort": null,
1638
+ "toPort": null,
1639
+ "edgeColor": null,
1640
+ "edgeWidth": null,
1641
+ "edgeLocked": false
1642
+ },
1643
+ {
1644
+ "id": "e1776026410467",
1645
+ "from": "n1776026271695",
1646
+ "to": "a1776026410466",
1647
+ "label": "",
1648
+ "arrowDir": "to",
1649
+ "dashes": false,
1650
+ "fontSize": null,
1651
+ "labelRotation": 0,
1652
+ "fromPort": null,
1653
+ "toPort": null,
1654
+ "edgeColor": null,
1655
+ "edgeWidth": null,
1656
+ "edgeLocked": false
1657
+ },
1658
+ {
1659
+ "id": "e1776026410468",
1660
+ "from": "n1776026271695",
1661
+ "to": "a1776026410467",
1662
+ "label": "",
1663
+ "arrowDir": "to",
1664
+ "dashes": false,
1665
+ "fontSize": null,
1666
+ "labelRotation": 0,
1667
+ "fromPort": null,
1668
+ "toPort": null,
1669
+ "edgeColor": null,
1670
+ "edgeWidth": null,
1671
+ "edgeLocked": false
1672
+ },
1673
+ {
1674
+ "id": "e1776026410469",
1675
+ "from": "n1776026271695",
1676
+ "to": "a1776026410468",
1677
+ "label": "",
1678
+ "arrowDir": "to",
1679
+ "dashes": false,
1680
+ "fontSize": null,
1681
+ "labelRotation": 0,
1682
+ "fromPort": null,
1683
+ "toPort": null,
1684
+ "edgeColor": null,
1685
+ "edgeWidth": null,
1686
+ "edgeLocked": false
1687
+ },
1688
+ {
1689
+ "id": "e1776026551043",
1690
+ "from": "n1776026494215w5zpkmgogas",
1691
+ "to": "a1776026551041",
1692
+ "label": "",
1693
+ "arrowDir": "to",
1694
+ "dashes": false,
1695
+ "fontSize": null,
1696
+ "labelRotation": 0,
1697
+ "fromPort": null,
1698
+ "toPort": null,
1699
+ "edgeColor": null,
1700
+ "edgeWidth": null,
1701
+ "edgeLocked": false
1702
+ },
1703
+ {
1704
+ "id": "e1776026551044",
1705
+ "from": "n1776026494215w5zpkmgogas",
1706
+ "to": "a1776026551043",
1707
+ "label": "",
1708
+ "arrowDir": "to",
1709
+ "dashes": false,
1710
+ "fontSize": null,
1711
+ "labelRotation": 0,
1712
+ "fromPort": null,
1713
+ "toPort": null,
1714
+ "edgeColor": null,
1715
+ "edgeWidth": null,
1716
+ "edgeLocked": false
1717
+ },
1718
+ {
1719
+ "id": "e1776026551045",
1720
+ "from": "n1776026494215w5zpkmgogas",
1721
+ "to": "a1776026551044",
1722
+ "label": "",
1723
+ "arrowDir": "to",
1724
+ "dashes": false,
1725
+ "fontSize": null,
1726
+ "labelRotation": 0,
1727
+ "fromPort": null,
1728
+ "toPort": null,
1729
+ "edgeColor": null,
1730
+ "edgeWidth": null,
1731
+ "edgeLocked": false
1732
+ },
1733
+ {
1734
+ "id": "e1776026553797",
1735
+ "from": "n177602630381010291tr9g8um",
1736
+ "to": "n1776026494215w5zpkmgogas",
1737
+ "label": "",
1738
+ "arrowDir": "to",
1739
+ "dashes": false,
1740
+ "fontSize": null,
1741
+ "labelRotation": 0,
1742
+ "fromPort": null,
1743
+ "toPort": null,
1744
+ "edgeColor": null,
1745
+ "edgeWidth": null,
1746
+ "edgeLocked": false
1747
+ }
1748
+ ],
1749
+ "edgesStraight": false
1750
+ },
1751
+ {
1752
+ "id": "d1776720502066",
1753
+ "title": "Screen Guide — src/frontend/index.html",
1754
+ "nodes": [
1755
+ {
1756
+ "id": "n1",
1757
+ "label": "",
1758
+ "shape": "custom",
1759
+ "shapeType": "image",
1760
+ "colorKey": "c-blue",
1761
+ "nodeWidth": 2980,
1762
+ "nodeHeight": 1866,
1763
+ "x": 0,
1764
+ "y": 0,
1765
+ "locked": true,
1766
+ "imageSrc": "/images/image_2026_04_20_233100_sfhk.png"
1767
+ },
1768
+ {
1769
+ "id": "n2",
1770
+ "label": "",
1771
+ "shape": "box",
1772
+ "shapeType": "box",
1773
+ "colorKey": "c-blue",
1774
+ "nodeWidth": 2980,
1775
+ "nodeHeight": 140,
1776
+ "x": 0,
1777
+ "y": -863,
1778
+ "bgOpacity": 0.2,
1779
+ "locked": true
1780
+ },
1781
+ {
1782
+ "id": "n3",
1783
+ "label": "",
1784
+ "shape": "box",
1785
+ "shapeType": "box",
1786
+ "colorKey": "c-teal",
1787
+ "nodeWidth": 560,
1788
+ "nodeHeight": 1726,
1789
+ "x": -1210,
1790
+ "y": 70,
1791
+ "bgOpacity": 0.18,
1792
+ "locked": true
1793
+ },
1794
+ {
1795
+ "id": "n4",
1796
+ "label": "",
1797
+ "shape": "box",
1798
+ "shapeType": "box",
1799
+ "colorKey": "c-amber",
1800
+ "nodeWidth": 2420,
1801
+ "nodeHeight": 1726,
1802
+ "x": 280,
1803
+ "y": 70,
1804
+ "bgOpacity": 0.12,
1805
+ "locked": true
1806
+ },
1807
+ {
1808
+ "id": "n5",
1809
+ "label": "",
1810
+ "shape": "box",
1811
+ "shapeType": "box",
1812
+ "colorKey": "c-purple",
1813
+ "nodeWidth": 1180,
1814
+ "nodeHeight": 90,
1815
+ "x": 690,
1816
+ "y": -663,
1817
+ "bgOpacity": 0.28,
1818
+ "locked": true
1819
+ },
1820
+ {
1821
+ "id": "n6",
1822
+ "label": "1. Header (#header)\n- Titre de l'app (#app-title)\n- Recherche globale (#header-search)\n- Dark mode (#dark-toggle)\n- Liens Word Cloud / Diagram / Admin",
1823
+ "shape": "custom",
1824
+ "shapeType": "post-it",
1825
+ "colorKey": "c-blue",
1826
+ "nodeWidth": 296,
1827
+ "nodeHeight": 112,
1828
+ "x": -1900,
1829
+ "y": -1150
1830
+ },
1831
+ {
1832
+ "id": "n7",
1833
+ "label": "2. Sidebar (#sidebar)\n- Recherche locale (#sidebar-search)\n- Compteur de documents (#doc-count)\n- Bouton PDF + création\n- Arbre de catégories (#category-tree)",
1834
+ "shape": "custom",
1835
+ "shapeType": "post-it",
1836
+ "colorKey": "c-teal",
1837
+ "nodeWidth": 312,
1838
+ "nodeHeight": 112,
1839
+ "x": -2100,
1840
+ "y": 0
1841
+ },
1842
+ {
1843
+ "id": "n8",
1844
+ "label": "3. Zone de contenu (#content-area)\n- Accueil (#welcome)\n- Vue document (#doc-view) :\n fil d'Ariane, date, titre,\n contenu / éditeur\n (#doc-content / #doc-editor)",
1845
+ "shape": "custom",
1846
+ "shapeType": "post-it",
1847
+ "colorKey": "c-amber",
1848
+ "nodeWidth": 280,
1849
+ "nodeHeight": 128,
1850
+ "x": 2100,
1851
+ "y": 400
1852
+ },
1853
+ {
1854
+ "id": "n9",
1855
+ "label": "4. Barre d'actions (#view-actions)\n- Marker / Stabilo (#stabilo-btn)\n- Pleine page (#full-width-btn)\n- Export PDF\n- Copy link (#copy-link-btn)\n- Edit",
1856
+ "shape": "custom",
1857
+ "shapeType": "post-it",
1858
+ "colorKey": "c-purple",
1859
+ "nodeWidth": 280,
1860
+ "nodeHeight": 128,
1861
+ "x": 2100,
1862
+ "y": -800
1863
+ }
1864
+ ],
1865
+ "edges": [
1866
+ {
1867
+ "id": "e1",
1868
+ "from": "n6"
1869
+ },
1870
+ {
1871
+ "id": "e2",
1872
+ "from": "n7"
1873
+ },
1874
+ {
1875
+ "id": "e3",
1876
+ "from": "n8"
1877
+ },
1878
+ {
1879
+ "id": "e4",
1880
+ "from": "n9"
1881
+ }
1882
+ ]
1883
+ }
1884
+ ]