viteboard 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +136 -0
  3. package/bin/viteboard.mjs +59 -0
  4. package/content/docs/assets/image-mqjpqlyw.png +0 -0
  5. package/content/docs/assets/image-mqjsmenr.png +0 -0
  6. package/content/docs/boards/product-roadmap.board.json +2130 -0
  7. package/content/docs/capabilities.md +89 -0
  8. package/content/docs/docs.md +84 -0
  9. package/content/docs/guide/boards-in-markdown.md +48 -0
  10. package/content/docs/guide/boards.md +92 -0
  11. package/content/docs/guide/getting-started.md +71 -0
  12. package/content/docs/guide/test.md +6 -0
  13. package/content/docs/index.md +47 -0
  14. package/content/docs/product-roadmap.board.json +2130 -0
  15. package/content/docs/test.md +219 -0
  16. package/content/docs/tetst-dir/test-board.board.json +15 -0
  17. package/content/docs/tetst-dir/test-test.md +1 -0
  18. package/content/docs/workspace.md +73 -0
  19. package/dist/assets/index-CEpxLM2o.css +1 -0
  20. package/dist/assets/index-D4xvJdEQ.js +60 -0
  21. package/dist/index.html +13 -0
  22. package/index.html +13 -0
  23. package/package.json +52 -0
  24. package/src/app/AppController.ts +955 -0
  25. package/src/app/BoardState.ts +130 -0
  26. package/src/app/ClipboardService.ts +159 -0
  27. package/src/app/CommandManager.ts +66 -0
  28. package/src/app/ElementActions.ts +152 -0
  29. package/src/app/EmbedRegionSelector.ts +103 -0
  30. package/src/app/ExportPng.ts +107 -0
  31. package/src/app/ImageInsertService.ts +141 -0
  32. package/src/app/KeyboardShortcuts.ts +124 -0
  33. package/src/app/main.ts +6 -0
  34. package/src/board/BoardPreview.ts +189 -0
  35. package/src/board/BoardService.ts +222 -0
  36. package/src/canvas/CanvasRenderer.ts +253 -0
  37. package/src/canvas/CanvasSurface.ts +70 -0
  38. package/src/canvas/HitTester.ts +110 -0
  39. package/src/canvas/ImageCache.ts +123 -0
  40. package/src/canvas/PerformanceMonitor.ts +31 -0
  41. package/src/canvas/RenderScheduler.ts +26 -0
  42. package/src/canvas/Viewport.ts +77 -0
  43. package/src/content/ContentApi.ts +258 -0
  44. package/src/content/Markdown.ts +431 -0
  45. package/src/content/MarkdownView.ts +70 -0
  46. package/src/editor/DocEditor.ts +799 -0
  47. package/src/editor/htmlToMarkdown.ts +333 -0
  48. package/src/elements/renderElement.ts +509 -0
  49. package/src/elements/types.ts +118 -0
  50. package/src/shell/Shell.ts +2950 -0
  51. package/src/shell/Sidebar.ts +1352 -0
  52. package/src/storage/AssetStore.ts +86 -0
  53. package/src/storage/BoardSerializer.ts +114 -0
  54. package/src/storage/ImportExportService.ts +153 -0
  55. package/src/storage/IndexedDbStore.ts +92 -0
  56. package/src/storage/LocalBoardStore.ts +104 -0
  57. package/src/styles.css +3257 -0
  58. package/src/templates/helpers.ts +124 -0
  59. package/src/templates/index.ts +65 -0
  60. package/src/templates/journeyMapTemplate.ts +52 -0
  61. package/src/templates/opportunityTreeTemplate.ts +45 -0
  62. package/src/templates/personaTemplate.ts +41 -0
  63. package/src/templates/prioritizationMatrixTemplate.ts +44 -0
  64. package/src/templates/requirementsFlowTemplate.ts +45 -0
  65. package/src/templates/screenshotReviewTemplate.ts +52 -0
  66. package/src/templates/systemDiagramTemplate.ts +41 -0
  67. package/src/testing/StressTestGenerator.ts +134 -0
  68. package/src/testing/StressTestPanel.ts +64 -0
  69. package/src/tools/ArrowTool.ts +87 -0
  70. package/src/tools/ImageTool.ts +39 -0
  71. package/src/tools/PanTool.ts +34 -0
  72. package/src/tools/SelectTool.ts +377 -0
  73. package/src/tools/ShapeTool.ts +106 -0
  74. package/src/tools/StickyTool.ts +69 -0
  75. package/src/tools/TaskTool.ts +52 -0
  76. package/src/tools/TextTool.ts +45 -0
  77. package/src/tools/ToolContext.ts +44 -0
  78. package/src/tools/ToolController.ts +178 -0
  79. package/src/ui/Modal.ts +58 -0
  80. package/src/ui/PerformanceOverlay.ts +75 -0
  81. package/src/ui/StorageManager.ts +94 -0
  82. package/src/ui/TemplatePicker.ts +67 -0
  83. package/src/ui/TextEditorOverlay.ts +137 -0
  84. package/src/ui/Toolbar.ts +151 -0
  85. package/src/ui/TopControls.ts +137 -0
  86. package/src/ui/icons.ts +50 -0
  87. package/tsconfig.json +19 -0
  88. package/vite.config.ts +694 -0
@@ -0,0 +1,2130 @@
1
+ {
2
+ "version": 1,
3
+ "id": "product-roadmap",
4
+ "title": "Product Roadmap",
5
+ "createdAt": 1718000000000,
6
+ "updatedAt": 1784600810590,
7
+ "viewport": {
8
+ "offsetX": -3547.7083035349933,
9
+ "offsetY": -2049.683417968947,
10
+ "scale": 0.7351121006160558
11
+ },
12
+ "theme": "light",
13
+ "elements": [
14
+ {
15
+ "id": "title-1",
16
+ "type": "text",
17
+ "x": -344.4172647594153,
18
+ "y": 11.749429473324046,
19
+ "width": 600,
20
+ "height": 44,
21
+ "rotation": 0,
22
+ "zIndex": 1,
23
+ "locked": false,
24
+ "hidden": false,
25
+ "createdAt": 1718000000000,
26
+ "updatedAt": 1781480027704,
27
+ "style": {
28
+ "fontSize": 30,
29
+ "fontWeight": "700",
30
+ "textColor": "#1f2933"
31
+ },
32
+ "data": {
33
+ "text": "Product Roadmap"
34
+ }
35
+ },
36
+ {
37
+ "id": "frame-now",
38
+ "type": "rectangle",
39
+ "x": -344.4172647594153,
40
+ "y": 86.91280377216724,
41
+ "width": 360,
42
+ "height": 520,
43
+ "rotation": 0,
44
+ "zIndex": 2,
45
+ "locked": false,
46
+ "hidden": false,
47
+ "createdAt": 1718000000000,
48
+ "updatedAt": 1781480027704,
49
+ "style": {
50
+ "fill": "#eef2ff",
51
+ "stroke": "#c7d2fe",
52
+ "strokeWidth": 1.5,
53
+ "borderRadius": 14
54
+ },
55
+ "data": {}
56
+ },
57
+ {
58
+ "id": "head-now",
59
+ "type": "text",
60
+ "x": -320.4172647594153,
61
+ "y": 106.91280377216724,
62
+ "width": 300,
63
+ "height": 32,
64
+ "rotation": 0,
65
+ "zIndex": 3,
66
+ "locked": false,
67
+ "hidden": false,
68
+ "createdAt": 1718000000000,
69
+ "updatedAt": 1781480027704,
70
+ "style": {
71
+ "fontSize": 20,
72
+ "fontWeight": "700",
73
+ "textColor": "#4338ca"
74
+ },
75
+ "data": {
76
+ "text": "Now"
77
+ }
78
+ },
79
+ {
80
+ "id": "now-1",
81
+ "type": "sticky",
82
+ "x": -320.4172647594153,
83
+ "y": 154.91280377216722,
84
+ "width": 312,
85
+ "height": 96,
86
+ "rotation": 0,
87
+ "zIndex": 4,
88
+ "locked": false,
89
+ "hidden": false,
90
+ "createdAt": 1718000000000,
91
+ "updatedAt": 1781480027704,
92
+ "style": {
93
+ "fill": "#fde68a",
94
+ "borderRadius": 10,
95
+ "shadow": true
96
+ },
97
+ "data": {
98
+ "text": "Ship git-based doc + board hub (this app)"
99
+ }
100
+ },
101
+ {
102
+ "id": "now-2",
103
+ "type": "sticky",
104
+ "x": -320.4172647594153,
105
+ "y": 266.91280377216725,
106
+ "width": 312,
107
+ "height": 96,
108
+ "rotation": 0,
109
+ "zIndex": 5,
110
+ "locked": false,
111
+ "hidden": false,
112
+ "createdAt": 1718000000000,
113
+ "updatedAt": 1781480027704,
114
+ "style": {
115
+ "fill": "#fde68a",
116
+ "borderRadius": 10,
117
+ "shadow": true
118
+ },
119
+ "data": {
120
+ "text": "No-library markdown renderer + sidebar nav"
121
+ }
122
+ },
123
+ {
124
+ "id": "now-3",
125
+ "type": "sticky",
126
+ "x": -320.4172647594153,
127
+ "y": 378.91280377216725,
128
+ "width": 312,
129
+ "height": 96,
130
+ "rotation": 0,
131
+ "zIndex": 6,
132
+ "locked": false,
133
+ "hidden": false,
134
+ "createdAt": 1718000000000,
135
+ "updatedAt": 1781480027704,
136
+ "style": {
137
+ "fill": "#fde68a",
138
+ "borderRadius": 10,
139
+ "shadow": true
140
+ },
141
+ "data": {
142
+ "text": "Embed boards in docs with a preview region"
143
+ }
144
+ },
145
+ {
146
+ "id": "frame-next",
147
+ "type": "rectangle",
148
+ "x": 55.582735240584725,
149
+ "y": 86.91280377216724,
150
+ "width": 360,
151
+ "height": 520,
152
+ "rotation": 0,
153
+ "zIndex": 7,
154
+ "locked": false,
155
+ "hidden": false,
156
+ "createdAt": 1718000000000,
157
+ "updatedAt": 1781480027704,
158
+ "style": {
159
+ "fill": "#ecfdf5",
160
+ "stroke": "#a7f3d0",
161
+ "strokeWidth": 1.5,
162
+ "borderRadius": 14
163
+ },
164
+ "data": {
165
+ "text": ""
166
+ }
167
+ },
168
+ {
169
+ "id": "head-next",
170
+ "type": "text",
171
+ "x": 79.58273524058473,
172
+ "y": 106.91280377216724,
173
+ "width": 300,
174
+ "height": 32,
175
+ "rotation": 0,
176
+ "zIndex": 8,
177
+ "locked": false,
178
+ "hidden": false,
179
+ "createdAt": 1718000000000,
180
+ "updatedAt": 1781480027704,
181
+ "style": {
182
+ "fontSize": 20,
183
+ "fontWeight": "700",
184
+ "textColor": "#047857"
185
+ },
186
+ "data": {
187
+ "text": "Next"
188
+ }
189
+ },
190
+ {
191
+ "id": "next-1",
192
+ "type": "sticky",
193
+ "x": 79.58273524058473,
194
+ "y": 154.91280377216722,
195
+ "width": 312,
196
+ "height": 96,
197
+ "rotation": 0,
198
+ "zIndex": 9,
199
+ "locked": false,
200
+ "hidden": false,
201
+ "createdAt": 1718000000000,
202
+ "updatedAt": 1781480027704,
203
+ "style": {
204
+ "fill": "#a7f3d0",
205
+ "borderRadius": 10,
206
+ "shadow": true
207
+ },
208
+ "data": {
209
+ "text": "Capability library: shopping-cart copy flow"
210
+ }
211
+ },
212
+ {
213
+ "id": "next-2",
214
+ "type": "sticky",
215
+ "x": 79.58273524058473,
216
+ "y": 266.91280377216725,
217
+ "width": 312,
218
+ "height": 96,
219
+ "rotation": 0,
220
+ "zIndex": 10,
221
+ "locked": false,
222
+ "hidden": false,
223
+ "createdAt": 1718000000000,
224
+ "updatedAt": 1781480027704,
225
+ "style": {
226
+ "fill": "#a7f3d0",
227
+ "borderRadius": 10,
228
+ "shadow": true
229
+ },
230
+ "data": {
231
+ "text": "Full-text search across docs and boards"
232
+ }
233
+ },
234
+ {
235
+ "id": "frame-later",
236
+ "type": "rectangle",
237
+ "x": 455.5827352405847,
238
+ "y": 86.91280377216724,
239
+ "width": 360,
240
+ "height": 520,
241
+ "rotation": 0,
242
+ "zIndex": 11,
243
+ "locked": false,
244
+ "hidden": false,
245
+ "createdAt": 1718000000000,
246
+ "updatedAt": 1781480027704,
247
+ "style": {
248
+ "fill": "#fef2f2",
249
+ "stroke": "#fecaca",
250
+ "strokeWidth": 1.5,
251
+ "borderRadius": 14
252
+ },
253
+ "data": {}
254
+ },
255
+ {
256
+ "id": "head-later",
257
+ "type": "text",
258
+ "x": 479.5827352405847,
259
+ "y": 106.91280377216724,
260
+ "width": 300,
261
+ "height": 32,
262
+ "rotation": 0,
263
+ "zIndex": 12,
264
+ "locked": false,
265
+ "hidden": false,
266
+ "createdAt": 1718000000000,
267
+ "updatedAt": 1781480027704,
268
+ "style": {
269
+ "fontSize": 20,
270
+ "fontWeight": "700",
271
+ "textColor": "#b91c1c"
272
+ },
273
+ "data": {
274
+ "text": "Later"
275
+ }
276
+ },
277
+ {
278
+ "id": "later-1",
279
+ "type": "sticky",
280
+ "x": 479.5827352405847,
281
+ "y": 154.91280377216722,
282
+ "width": 312,
283
+ "height": 96,
284
+ "rotation": 0,
285
+ "zIndex": 13,
286
+ "locked": false,
287
+ "hidden": false,
288
+ "createdAt": 1718000000000,
289
+ "updatedAt": 1781480027704,
290
+ "style": {
291
+ "fill": "#fecaca",
292
+ "borderRadius": 10,
293
+ "shadow": true
294
+ },
295
+ "data": {
296
+ "text": "Hub-and-spoke: scan external repos for docs"
297
+ }
298
+ },
299
+ {
300
+ "id": "later-2",
301
+ "type": "sticky",
302
+ "x": 479.5827352405847,
303
+ "y": 266.91280377216725,
304
+ "width": 312,
305
+ "height": 96,
306
+ "rotation": 0,
307
+ "zIndex": 14,
308
+ "locked": false,
309
+ "hidden": false,
310
+ "createdAt": 1718000000000,
311
+ "updatedAt": 1781480027704,
312
+ "style": {
313
+ "fill": "#fecaca",
314
+ "borderRadius": 10,
315
+ "shadow": true
316
+ },
317
+ "data": {
318
+ "text": "Types library + component library modules"
319
+ }
320
+ },
321
+ {
322
+ "id": "arrow-1",
323
+ "type": "arrow",
324
+ "x": 15.582735240584725,
325
+ "y": 202.91280377216722,
326
+ "width": 64,
327
+ "height": 0,
328
+ "rotation": 0,
329
+ "zIndex": 15,
330
+ "locked": false,
331
+ "hidden": false,
332
+ "createdAt": 1718000000000,
333
+ "updatedAt": 1781480027704,
334
+ "style": {
335
+ "stroke": "#9ca3af",
336
+ "strokeWidth": 2,
337
+ "arrowEnd": true
338
+ },
339
+ "data": {}
340
+ },
341
+ {
342
+ "id": "arrow-2",
343
+ "type": "arrow",
344
+ "x": 415.5827352405847,
345
+ "y": 202.91280377216722,
346
+ "width": 64,
347
+ "height": 0,
348
+ "rotation": 0,
349
+ "zIndex": 16,
350
+ "locked": false,
351
+ "hidden": false,
352
+ "createdAt": 1718000000000,
353
+ "updatedAt": 1781480027704,
354
+ "style": {
355
+ "stroke": "#9ca3af",
356
+ "strokeWidth": 2,
357
+ "arrowEnd": true
358
+ },
359
+ "data": {}
360
+ },
361
+ {
362
+ "id": "mqedhsh6-1-foud32",
363
+ "type": "rectangle",
364
+ "x": 2099.201083682319,
365
+ "y": 398.2732368007093,
366
+ "width": 1062.3463728586767,
367
+ "height": 371.5149582728462,
368
+ "rotation": 0,
369
+ "zIndex": 17,
370
+ "locked": false,
371
+ "hidden": false,
372
+ "createdAt": 1781477142378,
373
+ "updatedAt": 1781813852584,
374
+ "style": {
375
+ "fill": "#667150",
376
+ "stroke": "#374151",
377
+ "strokeWidth": 1.5,
378
+ "borderRadius": 8,
379
+ "fontSize": 14,
380
+ "textColor": "#1f2933"
381
+ },
382
+ "data": {
383
+ "text": "This is an embedding"
384
+ }
385
+ },
386
+ {
387
+ "id": "mqjtq558-2-iidc44",
388
+ "type": "rectangle",
389
+ "x": 4992.327110611636,
390
+ "y": 1046.0076617663708,
391
+ "width": 800,
392
+ "height": 810,
393
+ "rotation": 0,
394
+ "zIndex": 20019,
395
+ "locked": false,
396
+ "hidden": false,
397
+ "createdAt": 1781806736780,
398
+ "updatedAt": 1781806737847,
399
+ "style": {
400
+ "borderRadius": 16,
401
+ "fill": "#ffffff",
402
+ "stroke": "#d8dade",
403
+ "strokeWidth": 1.5,
404
+ "shadow": true
405
+ },
406
+ "data": {
407
+ "text": ""
408
+ }
409
+ },
410
+ {
411
+ "id": "mqjtq558-3-4kz9h8",
412
+ "type": "text",
413
+ "x": 5020.327110611636,
414
+ "y": 1068.0076617663708,
415
+ "width": 500,
416
+ "height": 35.2,
417
+ "rotation": 0,
418
+ "zIndex": 20020,
419
+ "locked": false,
420
+ "hidden": false,
421
+ "createdAt": 1781806736780,
422
+ "updatedAt": 1781806737847,
423
+ "style": {
424
+ "fontSize": 22,
425
+ "textColor": "#1f2933",
426
+ "fontWeight": "700"
427
+ },
428
+ "data": {
429
+ "text": "Feature Prioritization Matrix"
430
+ }
431
+ },
432
+ {
433
+ "id": "mqjtq558-4-uea979",
434
+ "type": "rectangle",
435
+ "x": 5072.327110611636,
436
+ "y": 1126.0076617663708,
437
+ "width": 340,
438
+ "height": 340,
439
+ "rotation": 0,
440
+ "zIndex": 20021,
441
+ "locked": false,
442
+ "hidden": false,
443
+ "createdAt": 1781806736780,
444
+ "updatedAt": 1781806737847,
445
+ "style": {
446
+ "borderRadius": 8,
447
+ "fill": "#86efac55"
448
+ },
449
+ "data": {
450
+ "text": ""
451
+ }
452
+ },
453
+ {
454
+ "id": "mqjtq558-5-318ryl",
455
+ "type": "rectangle",
456
+ "x": 5412.327110611636,
457
+ "y": 1126.0076617663708,
458
+ "width": 340,
459
+ "height": 340,
460
+ "rotation": 0,
461
+ "zIndex": 20022,
462
+ "locked": false,
463
+ "hidden": false,
464
+ "createdAt": 1781806736780,
465
+ "updatedAt": 1781806737847,
466
+ "style": {
467
+ "borderRadius": 8,
468
+ "fill": "#93c5fd55"
469
+ },
470
+ "data": {
471
+ "text": ""
472
+ }
473
+ },
474
+ {
475
+ "id": "mqjtq558-6-42i8bt",
476
+ "type": "rectangle",
477
+ "x": 5072.327110611636,
478
+ "y": 1466.0076617663708,
479
+ "width": 340,
480
+ "height": 340,
481
+ "rotation": 0,
482
+ "zIndex": 20023,
483
+ "locked": false,
484
+ "hidden": false,
485
+ "createdAt": 1781806736780,
486
+ "updatedAt": 1781806737847,
487
+ "style": {
488
+ "borderRadius": 8,
489
+ "fill": "#fef08a55"
490
+ },
491
+ "data": {
492
+ "text": ""
493
+ }
494
+ },
495
+ {
496
+ "id": "mqjtq558-7-xqrq8f",
497
+ "type": "rectangle",
498
+ "x": 5416.062215978461,
499
+ "y": 1466.0076617663708,
500
+ "width": 340,
501
+ "height": 340,
502
+ "rotation": 0,
503
+ "zIndex": 20024,
504
+ "locked": false,
505
+ "hidden": false,
506
+ "createdAt": 1781806736780,
507
+ "updatedAt": 1781813812248,
508
+ "style": {
509
+ "borderRadius": 8,
510
+ "fill": "#fca5a555"
511
+ },
512
+ "data": {
513
+ "text": ""
514
+ }
515
+ },
516
+ {
517
+ "id": "mqjtq558-8-5sgle9",
518
+ "type": "text",
519
+ "x": 5088.327110611636,
520
+ "y": 1138.0076617663708,
521
+ "width": 300,
522
+ "height": 25.6,
523
+ "rotation": 0,
524
+ "zIndex": 20025,
525
+ "locked": false,
526
+ "hidden": false,
527
+ "createdAt": 1781806736780,
528
+ "updatedAt": 1781806737847,
529
+ "style": {
530
+ "fontSize": 16,
531
+ "textColor": "#1f2933",
532
+ "fontWeight": "700"
533
+ },
534
+ "data": {
535
+ "text": "Quick wins"
536
+ }
537
+ },
538
+ {
539
+ "id": "mqjtq558-9-312i09",
540
+ "type": "text",
541
+ "x": 5428.327110611636,
542
+ "y": 1138.0076617663708,
543
+ "width": 300,
544
+ "height": 25.6,
545
+ "rotation": 0,
546
+ "zIndex": 20026,
547
+ "locked": false,
548
+ "hidden": false,
549
+ "createdAt": 1781806736780,
550
+ "updatedAt": 1781806737847,
551
+ "style": {
552
+ "fontSize": 16,
553
+ "textColor": "#1f2933",
554
+ "fontWeight": "700"
555
+ },
556
+ "data": {
557
+ "text": "Strategic bets"
558
+ }
559
+ },
560
+ {
561
+ "id": "mqjtq559-a-5w1hzx",
562
+ "type": "text",
563
+ "x": 5088.327110611636,
564
+ "y": 1478.0076617663708,
565
+ "width": 300,
566
+ "height": 25.6,
567
+ "rotation": 0,
568
+ "zIndex": 20027,
569
+ "locked": false,
570
+ "hidden": false,
571
+ "createdAt": 1781806736780,
572
+ "updatedAt": 1781806737847,
573
+ "style": {
574
+ "fontSize": 16,
575
+ "textColor": "#1f2933",
576
+ "fontWeight": "700"
577
+ },
578
+ "data": {
579
+ "text": "Fill-ins"
580
+ }
581
+ },
582
+ {
583
+ "id": "mqjtq559-b-uwtn7m",
584
+ "type": "text",
585
+ "x": 5428.327110611636,
586
+ "y": 1478.0076617663708,
587
+ "width": 300,
588
+ "height": 25.6,
589
+ "rotation": 0,
590
+ "zIndex": 20028,
591
+ "locked": false,
592
+ "hidden": false,
593
+ "createdAt": 1781806736781,
594
+ "updatedAt": 1781806737847,
595
+ "style": {
596
+ "fontSize": 16,
597
+ "textColor": "#1f2933",
598
+ "fontWeight": "700"
599
+ },
600
+ "data": {
601
+ "text": "Avoid"
602
+ }
603
+ },
604
+ {
605
+ "id": "mqjtq559-c-47hrr2",
606
+ "type": "arrow",
607
+ "x": 5048.327110611636,
608
+ "y": 1806.0076617663708,
609
+ "width": 0,
610
+ "height": -680.0000000000001,
611
+ "rotation": 0,
612
+ "zIndex": 20029,
613
+ "locked": false,
614
+ "hidden": false,
615
+ "createdAt": 1781806736781,
616
+ "updatedAt": 1781806737847,
617
+ "style": {
618
+ "stroke": "#1f2933",
619
+ "strokeWidth": 2,
620
+ "arrowEnd": true
621
+ },
622
+ "data": {}
623
+ },
624
+ {
625
+ "id": "mqjtq559-d-n5mfhv",
626
+ "type": "text",
627
+ "x": 5008.327110611636,
628
+ "y": 1454.0076617663708,
629
+ "width": 60,
630
+ "height": 22.400000000000002,
631
+ "rotation": 0,
632
+ "zIndex": 20030,
633
+ "locked": false,
634
+ "hidden": false,
635
+ "createdAt": 1781806736781,
636
+ "updatedAt": 1781806737847,
637
+ "style": {
638
+ "fontSize": 14,
639
+ "textColor": "#4b5563",
640
+ "fontWeight": "600"
641
+ },
642
+ "data": {
643
+ "text": "Impact"
644
+ }
645
+ },
646
+ {
647
+ "id": "mqjtq559-e-q9lz5z",
648
+ "type": "arrow",
649
+ "x": 5072.327110611636,
650
+ "y": 1830.0076617663708,
651
+ "width": 680,
652
+ "height": 0,
653
+ "rotation": 0,
654
+ "zIndex": 20031,
655
+ "locked": false,
656
+ "hidden": false,
657
+ "createdAt": 1781806736781,
658
+ "updatedAt": 1781806737847,
659
+ "style": {
660
+ "stroke": "#1f2933",
661
+ "strokeWidth": 2,
662
+ "arrowEnd": true
663
+ },
664
+ "data": {}
665
+ },
666
+ {
667
+ "id": "mqjtq559-f-g2zly3",
668
+ "type": "text",
669
+ "x": 5382.327110611636,
670
+ "y": 1840.0076617663708,
671
+ "width": 80,
672
+ "height": 22.400000000000002,
673
+ "rotation": 0,
674
+ "zIndex": 20032,
675
+ "locked": false,
676
+ "hidden": false,
677
+ "createdAt": 1781806736781,
678
+ "updatedAt": 1781806737847,
679
+ "style": {
680
+ "fontSize": 14,
681
+ "textColor": "#4b5563",
682
+ "fontWeight": "600"
683
+ },
684
+ "data": {
685
+ "text": "Effort"
686
+ }
687
+ },
688
+ {
689
+ "id": "mqjtq559-g-lduuqy",
690
+ "type": "sticky",
691
+ "x": 5112.327110611636,
692
+ "y": 1186.0076617663708,
693
+ "width": 150,
694
+ "height": 90,
695
+ "rotation": 0,
696
+ "zIndex": 20033,
697
+ "locked": false,
698
+ "hidden": false,
699
+ "createdAt": 1781806736781,
700
+ "updatedAt": 1781806737847,
701
+ "style": {
702
+ "fill": "#fef08a",
703
+ "borderRadius": 12,
704
+ "shadow": true,
705
+ "fontSize": 13,
706
+ "textColor": "#1f2933"
707
+ },
708
+ "data": {
709
+ "text": "Feature idea"
710
+ }
711
+ },
712
+ {
713
+ "id": "mqjtq559-h-qoouop",
714
+ "type": "sticky",
715
+ "x": 5452.327110611636,
716
+ "y": 1184.1368122563883,
717
+ "width": 150,
718
+ "height": 90,
719
+ "rotation": 0,
720
+ "zIndex": 20034,
721
+ "locked": false,
722
+ "hidden": false,
723
+ "createdAt": 1781806736781,
724
+ "updatedAt": 1781806737847,
725
+ "style": {
726
+ "fill": "#a5b4fc",
727
+ "borderRadius": 12,
728
+ "shadow": true,
729
+ "fontSize": 13,
730
+ "textColor": "#1f2933"
731
+ },
732
+ "data": {
733
+ "text": "Big bet"
734
+ }
735
+ },
736
+ {
737
+ "id": "mqjtsw3b-k-fviy2j",
738
+ "type": "rectangle",
739
+ "x": 6232.011738587724,
740
+ "y": 1083.4257702432412,
741
+ "width": 896,
742
+ "height": 730,
743
+ "rotation": 0,
744
+ "zIndex": 20035,
745
+ "locked": false,
746
+ "hidden": false,
747
+ "createdAt": 1781806865015,
748
+ "updatedAt": 1781806869418,
749
+ "style": {
750
+ "borderRadius": 16,
751
+ "fill": "#ffffff",
752
+ "stroke": "#d8dade",
753
+ "strokeWidth": 1.5,
754
+ "shadow": true
755
+ },
756
+ "data": {
757
+ "text": ""
758
+ }
759
+ },
760
+ {
761
+ "id": "mqjtsw3b-l-cpq4nu",
762
+ "type": "text",
763
+ "x": 6260.011738587724,
764
+ "y": 1105.4257702432412,
765
+ "width": 500,
766
+ "height": 35.2,
767
+ "rotation": 0,
768
+ "zIndex": 20036,
769
+ "locked": false,
770
+ "hidden": false,
771
+ "createdAt": 1781806865015,
772
+ "updatedAt": 1781806869418,
773
+ "style": {
774
+ "fontSize": 22,
775
+ "textColor": "#1f2933",
776
+ "fontWeight": "700"
777
+ },
778
+ "data": {
779
+ "text": "Product Requirements Flow"
780
+ }
781
+ },
782
+ {
783
+ "id": "mqjtsw3b-m-yrk19s",
784
+ "type": "text",
785
+ "x": 6260.011738587724,
786
+ "y": 1155.4257702432412,
787
+ "width": 250,
788
+ "height": 22.400000000000002,
789
+ "rotation": 0,
790
+ "zIndex": 20037,
791
+ "locked": false,
792
+ "hidden": false,
793
+ "createdAt": 1781806865015,
794
+ "updatedAt": 1781806869418,
795
+ "style": {
796
+ "fontSize": 14,
797
+ "textColor": "#8b816f",
798
+ "fontWeight": "600"
799
+ },
800
+ "data": {
801
+ "text": "1. Problem"
802
+ }
803
+ },
804
+ {
805
+ "id": "mqjtsw3b-n-fvr6de",
806
+ "type": "sticky",
807
+ "x": 6260.011738587724,
808
+ "y": 1185.4257702432412,
809
+ "width": 252,
810
+ "height": 150,
811
+ "rotation": 0,
812
+ "zIndex": 20038,
813
+ "locked": false,
814
+ "hidden": false,
815
+ "createdAt": 1781806865015,
816
+ "updatedAt": 1781806869418,
817
+ "style": {
818
+ "fill": "#fca5a5",
819
+ "borderRadius": 12,
820
+ "shadow": true,
821
+ "fontSize": 13,
822
+ "textColor": "#1f2933"
823
+ },
824
+ "data": {
825
+ "text": ""
826
+ }
827
+ },
828
+ {
829
+ "id": "mqjtsw3b-o-vbj79y",
830
+ "type": "text",
831
+ "x": 6540.011738587724,
832
+ "y": 1155.4257702432412,
833
+ "width": 250,
834
+ "height": 22.400000000000002,
835
+ "rotation": 0,
836
+ "zIndex": 20039,
837
+ "locked": false,
838
+ "hidden": false,
839
+ "createdAt": 1781806865015,
840
+ "updatedAt": 1781806869418,
841
+ "style": {
842
+ "fontSize": 14,
843
+ "textColor": "#8b816f",
844
+ "fontWeight": "600"
845
+ },
846
+ "data": {
847
+ "text": "2. User"
848
+ }
849
+ },
850
+ {
851
+ "id": "mqjtsw3b-p-68bau6",
852
+ "type": "sticky",
853
+ "x": 6540.011384566079,
854
+ "y": 1185.4257702432412,
855
+ "width": 252,
856
+ "height": 150,
857
+ "rotation": 0,
858
+ "zIndex": 20040,
859
+ "locked": false,
860
+ "hidden": false,
861
+ "createdAt": 1781806865015,
862
+ "updatedAt": 1781806869418,
863
+ "style": {
864
+ "fill": "#93c5fd",
865
+ "borderRadius": 12,
866
+ "shadow": true,
867
+ "fontSize": 13,
868
+ "textColor": "#1f2933"
869
+ },
870
+ "data": {
871
+ "text": ""
872
+ }
873
+ },
874
+ {
875
+ "id": "mqjtsw3b-q-3viy6s",
876
+ "type": "text",
877
+ "x": 6820.011738587724,
878
+ "y": 1155.4257702432412,
879
+ "width": 250,
880
+ "height": 22.400000000000002,
881
+ "rotation": 0,
882
+ "zIndex": 20041,
883
+ "locked": false,
884
+ "hidden": false,
885
+ "createdAt": 1781806865015,
886
+ "updatedAt": 1781806869418,
887
+ "style": {
888
+ "fontSize": 14,
889
+ "textColor": "#8b816f",
890
+ "fontWeight": "600"
891
+ },
892
+ "data": {
893
+ "text": "3. Context"
894
+ }
895
+ },
896
+ {
897
+ "id": "mqjtsw3b-r-j6sn0w",
898
+ "type": "sticky",
899
+ "x": 6818.140734193272,
900
+ "y": 1183.5549207332588,
901
+ "width": 252,
902
+ "height": 150,
903
+ "rotation": 0,
904
+ "zIndex": 20042,
905
+ "locked": false,
906
+ "hidden": false,
907
+ "createdAt": 1781806865015,
908
+ "updatedAt": 1781806869418,
909
+ "style": {
910
+ "fill": "#d8b4fe",
911
+ "borderRadius": 12,
912
+ "shadow": true,
913
+ "fontSize": 13,
914
+ "textColor": "#1f2933"
915
+ },
916
+ "data": {
917
+ "text": ""
918
+ }
919
+ },
920
+ {
921
+ "id": "mqjtsw3b-s-3ilzqy",
922
+ "type": "text",
923
+ "x": 6260.011738587724,
924
+ "y": 1365.4257702432412,
925
+ "width": 250,
926
+ "height": 22.400000000000002,
927
+ "rotation": 0,
928
+ "zIndex": 20043,
929
+ "locked": false,
930
+ "hidden": false,
931
+ "createdAt": 1781806865015,
932
+ "updatedAt": 1781806869418,
933
+ "style": {
934
+ "fontSize": 14,
935
+ "textColor": "#8b816f",
936
+ "fontWeight": "600"
937
+ },
938
+ "data": {
939
+ "text": "4. Current workflow"
940
+ }
941
+ },
942
+ {
943
+ "id": "mqjtsw3b-t-sg9lje",
944
+ "type": "sticky",
945
+ "x": 6261.882565971353,
946
+ "y": 1395.4257702432412,
947
+ "width": 252,
948
+ "height": 150,
949
+ "rotation": 0,
950
+ "zIndex": 20044,
951
+ "locked": false,
952
+ "hidden": false,
953
+ "createdAt": 1781806865015,
954
+ "updatedAt": 1781806869418,
955
+ "style": {
956
+ "fill": "#fdba74",
957
+ "borderRadius": 12,
958
+ "shadow": true,
959
+ "fontSize": 13,
960
+ "textColor": "#1f2933"
961
+ },
962
+ "data": {
963
+ "text": ""
964
+ }
965
+ },
966
+ {
967
+ "id": "mqjtsw3b-u-9w0avj",
968
+ "type": "text",
969
+ "x": 6540.011738587724,
970
+ "y": 1365.4257702432412,
971
+ "width": 250,
972
+ "height": 22.400000000000002,
973
+ "rotation": 0,
974
+ "zIndex": 20045,
975
+ "locked": false,
976
+ "hidden": false,
977
+ "createdAt": 1781806865015,
978
+ "updatedAt": 1781806869418,
979
+ "style": {
980
+ "fontSize": 14,
981
+ "textColor": "#8b816f",
982
+ "fontWeight": "600"
983
+ },
984
+ "data": {
985
+ "text": "5. Proposed solution"
986
+ }
987
+ },
988
+ {
989
+ "id": "mqjtsw3b-v-bcqhe4",
990
+ "type": "sticky",
991
+ "x": 6540.011738587724,
992
+ "y": 1395.4257702432412,
993
+ "width": 252,
994
+ "height": 150,
995
+ "rotation": 0,
996
+ "zIndex": 20046,
997
+ "locked": false,
998
+ "hidden": false,
999
+ "createdAt": 1781806865015,
1000
+ "updatedAt": 1781806869418,
1001
+ "style": {
1002
+ "fill": "#86efac",
1003
+ "borderRadius": 12,
1004
+ "shadow": true,
1005
+ "fontSize": 13,
1006
+ "textColor": "#1f2933"
1007
+ },
1008
+ "data": {
1009
+ "text": ""
1010
+ }
1011
+ },
1012
+ {
1013
+ "id": "mqjtsw3b-w-38qh8u",
1014
+ "type": "text",
1015
+ "x": 6820.011738587724,
1016
+ "y": 1365.4257702432412,
1017
+ "width": 250,
1018
+ "height": 22.400000000000002,
1019
+ "rotation": 0,
1020
+ "zIndex": 20047,
1021
+ "locked": false,
1022
+ "hidden": false,
1023
+ "createdAt": 1781806865015,
1024
+ "updatedAt": 1781806869418,
1025
+ "style": {
1026
+ "fontSize": 14,
1027
+ "textColor": "#8b816f",
1028
+ "fontWeight": "600"
1029
+ },
1030
+ "data": {
1031
+ "text": "6. Edge cases"
1032
+ }
1033
+ },
1034
+ {
1035
+ "id": "mqjtsw3b-x-e1ah4i",
1036
+ "type": "sticky",
1037
+ "x": 6820.011738587724,
1038
+ "y": 1393.5549428596116,
1039
+ "width": 252,
1040
+ "height": 150,
1041
+ "rotation": 0,
1042
+ "zIndex": 20048,
1043
+ "locked": false,
1044
+ "hidden": false,
1045
+ "createdAt": 1781806865015,
1046
+ "updatedAt": 1781806869418,
1047
+ "style": {
1048
+ "fill": "#f9a8d4",
1049
+ "borderRadius": 12,
1050
+ "shadow": true,
1051
+ "fontSize": 13,
1052
+ "textColor": "#1f2933"
1053
+ },
1054
+ "data": {
1055
+ "text": ""
1056
+ }
1057
+ },
1058
+ {
1059
+ "id": "mqjtsw3b-y-2055lp",
1060
+ "type": "text",
1061
+ "x": 6260.011738587724,
1062
+ "y": 1575.4257702432412,
1063
+ "width": 250,
1064
+ "height": 22.400000000000002,
1065
+ "rotation": 0,
1066
+ "zIndex": 20049,
1067
+ "locked": false,
1068
+ "hidden": false,
1069
+ "createdAt": 1781806865015,
1070
+ "updatedAt": 1781806869418,
1071
+ "style": {
1072
+ "fontSize": 14,
1073
+ "textColor": "#8b816f",
1074
+ "fontWeight": "600"
1075
+ },
1076
+ "data": {
1077
+ "text": "7. Acceptance criteria"
1078
+ }
1079
+ },
1080
+ {
1081
+ "id": "mqjtsw3b-z-joc3u1",
1082
+ "type": "sticky",
1083
+ "x": 6260.011738587724,
1084
+ "y": 1605.4257702432412,
1085
+ "width": 252,
1086
+ "height": 150,
1087
+ "rotation": 0,
1088
+ "zIndex": 20050,
1089
+ "locked": false,
1090
+ "hidden": false,
1091
+ "createdAt": 1781806865015,
1092
+ "updatedAt": 1781806869418,
1093
+ "style": {
1094
+ "fill": "#a5b4fc",
1095
+ "borderRadius": 12,
1096
+ "shadow": true,
1097
+ "fontSize": 13,
1098
+ "textColor": "#1f2933"
1099
+ },
1100
+ "data": {
1101
+ "text": ""
1102
+ }
1103
+ },
1104
+ {
1105
+ "id": "mqjtsw3b-10-3ntik1",
1106
+ "type": "text",
1107
+ "x": 6540.011738587724,
1108
+ "y": 1575.4257702432412,
1109
+ "width": 250,
1110
+ "height": 22.400000000000002,
1111
+ "rotation": 0,
1112
+ "zIndex": 20051,
1113
+ "locked": false,
1114
+ "hidden": false,
1115
+ "createdAt": 1781806865015,
1116
+ "updatedAt": 1781806869418,
1117
+ "style": {
1118
+ "fontSize": 14,
1119
+ "textColor": "#8b816f",
1120
+ "fontWeight": "600"
1121
+ },
1122
+ "data": {
1123
+ "text": "8. Dependencies"
1124
+ }
1125
+ },
1126
+ {
1127
+ "id": "mqjtsw3b-11-zkaean",
1128
+ "type": "sticky",
1129
+ "x": 6540.011738587724,
1130
+ "y": 1603.5548543542004,
1131
+ "width": 252,
1132
+ "height": 150,
1133
+ "rotation": 0,
1134
+ "zIndex": 20052,
1135
+ "locked": false,
1136
+ "hidden": false,
1137
+ "createdAt": 1781806865015,
1138
+ "updatedAt": 1781806869418,
1139
+ "style": {
1140
+ "fill": "#fef08a",
1141
+ "borderRadius": 12,
1142
+ "shadow": true,
1143
+ "fontSize": 13,
1144
+ "textColor": "#1f2933"
1145
+ },
1146
+ "data": {
1147
+ "text": ""
1148
+ }
1149
+ },
1150
+ {
1151
+ "id": "mqjtsw3b-12-ijf62b",
1152
+ "type": "text",
1153
+ "x": 6820.011738587724,
1154
+ "y": 1575.4257702432412,
1155
+ "width": 250,
1156
+ "height": 22.400000000000002,
1157
+ "rotation": 0,
1158
+ "zIndex": 20053,
1159
+ "locked": false,
1160
+ "hidden": false,
1161
+ "createdAt": 1781806865015,
1162
+ "updatedAt": 1781806869418,
1163
+ "style": {
1164
+ "fontSize": 14,
1165
+ "textColor": "#8b816f",
1166
+ "fontWeight": "600"
1167
+ },
1168
+ "data": {
1169
+ "text": "9. Risks"
1170
+ }
1171
+ },
1172
+ {
1173
+ "id": "mqjtsw3b-13-42ybvw",
1174
+ "type": "sticky",
1175
+ "x": 6821.882742982176,
1176
+ "y": 1605.4257702432412,
1177
+ "width": 252,
1178
+ "height": 150,
1179
+ "rotation": 0,
1180
+ "zIndex": 20054,
1181
+ "locked": false,
1182
+ "hidden": false,
1183
+ "createdAt": 1781806865015,
1184
+ "updatedAt": 1781806869418,
1185
+ "style": {
1186
+ "fill": "#fca5a5",
1187
+ "borderRadius": 12,
1188
+ "shadow": true,
1189
+ "fontSize": 13,
1190
+ "textColor": "#1f2933"
1191
+ },
1192
+ "data": {
1193
+ "text": ""
1194
+ }
1195
+ },
1196
+ {
1197
+ "id": "mqk7qp2w-186b-z88xpj",
1198
+ "type": "rectangle",
1199
+ "x": 3227.503823648528,
1200
+ "y": 1214.3207123288616,
1201
+ "width": 132.22601190733639,
1202
+ "height": 80.13206551708737,
1203
+ "rotation": 0,
1204
+ "zIndex": 20055,
1205
+ "locked": false,
1206
+ "hidden": false,
1207
+ "createdAt": 1781830277240,
1208
+ "updatedAt": 1781830286098,
1209
+ "style": {
1210
+ "fill": "#ffffff",
1211
+ "stroke": "#374151",
1212
+ "strokeWidth": 1.5,
1213
+ "borderRadius": 8,
1214
+ "fontSize": 14,
1215
+ "textColor": "#1f2933"
1216
+ },
1217
+ "data": {
1218
+ "text": "Stakeholders\n",
1219
+ "shapeKind": "rectangle"
1220
+ }
1221
+ },
1222
+ {
1223
+ "id": "mqk7qz9o-186g-5q994e",
1224
+ "type": "arrow",
1225
+ "x": 3383.392249870939,
1226
+ "y": 1262.5535477319918,
1227
+ "width": 229.1095715946958,
1228
+ "height": -3.0627752477391823,
1229
+ "rotation": 0,
1230
+ "zIndex": 20056,
1231
+ "locked": false,
1232
+ "hidden": false,
1233
+ "createdAt": 1781830290444,
1234
+ "updatedAt": 1781830290444,
1235
+ "style": {
1236
+ "stroke": "#374151",
1237
+ "strokeWidth": 2,
1238
+ "arrowEnd": true
1239
+ },
1240
+ "data": {}
1241
+ },
1242
+ {
1243
+ "id": "mqk7r1ys-186i-ljhhnc",
1244
+ "type": "task",
1245
+ "x": 3658.728334813359,
1246
+ "y": 1236.3882376372792,
1247
+ "width": 280,
1248
+ "height": 56,
1249
+ "rotation": 0,
1250
+ "zIndex": 20057,
1251
+ "locked": false,
1252
+ "hidden": false,
1253
+ "createdAt": 1781830293940,
1254
+ "updatedAt": 1781830614735,
1255
+ "style": {
1256
+ "fill": "#ffffff",
1257
+ "stroke": "rgba(0,0,0,0.09)",
1258
+ "strokeWidth": 1,
1259
+ "borderRadius": 14,
1260
+ "shadow": true,
1261
+ "fontSize": 15,
1262
+ "fontWeight": "650",
1263
+ "textColor": "#252829"
1264
+ },
1265
+ "data": {
1266
+ "text": "Engage",
1267
+ "checked": false
1268
+ }
1269
+ },
1270
+ {
1271
+ "id": "mqk7x8yp-92a-90lf1e",
1272
+ "type": "text",
1273
+ "x": 2879.465168620112,
1274
+ "y": 1072.4740554858324,
1275
+ "width": 500,
1276
+ "height": 35.2,
1277
+ "rotation": 0,
1278
+ "zIndex": 20058,
1279
+ "locked": false,
1280
+ "hidden": false,
1281
+ "createdAt": 1781830582945,
1282
+ "updatedAt": 1781830582945,
1283
+ "style": {
1284
+ "fontSize": 22,
1285
+ "textColor": "#1f2933",
1286
+ "fontWeight": "700"
1287
+ },
1288
+ "data": {
1289
+ "text": "Opportunity Solution Tree"
1290
+ }
1291
+ },
1292
+ {
1293
+ "id": "mqk7x8yp-92b-fwhnna",
1294
+ "type": "rectangle",
1295
+ "x": 2899.465168620112,
1296
+ "y": 1112.4740554858324,
1297
+ "width": 280,
1298
+ "height": 80,
1299
+ "rotation": 0,
1300
+ "zIndex": 20059,
1301
+ "locked": false,
1302
+ "hidden": false,
1303
+ "createdAt": 1781830582945,
1304
+ "updatedAt": 1781830582945,
1305
+ "style": {
1306
+ "borderRadius": 12,
1307
+ "fill": "#a5b4fc",
1308
+ "shadow": true,
1309
+ "fontSize": 15,
1310
+ "fontWeight": "600",
1311
+ "textColor": "#1f2933"
1312
+ },
1313
+ "data": {
1314
+ "text": "Desired outcome"
1315
+ }
1316
+ },
1317
+ {
1318
+ "id": "mqk7x8yp-92c-p039sg",
1319
+ "type": "sticky",
1320
+ "x": 2599.465168620112,
1321
+ "y": 1272.4740554858324,
1322
+ "width": 220,
1323
+ "height": 100,
1324
+ "rotation": 0,
1325
+ "zIndex": 20060,
1326
+ "locked": false,
1327
+ "hidden": false,
1328
+ "createdAt": 1781830582945,
1329
+ "updatedAt": 1781830582945,
1330
+ "style": {
1331
+ "fill": "#93c5fd",
1332
+ "borderRadius": 12,
1333
+ "shadow": true,
1334
+ "fontSize": 13,
1335
+ "textColor": "#1f2933"
1336
+ },
1337
+ "data": {
1338
+ "text": "Opportunity"
1339
+ }
1340
+ },
1341
+ {
1342
+ "id": "mqk7x8yp-92d-rxgn0e",
1343
+ "type": "arrow",
1344
+ "x": 3039.465168620112,
1345
+ "y": 1197.4740554858324,
1346
+ "width": -330,
1347
+ "height": 70,
1348
+ "rotation": 0,
1349
+ "zIndex": 20061,
1350
+ "locked": false,
1351
+ "hidden": false,
1352
+ "createdAt": 1781830582945,
1353
+ "updatedAt": 1781830582945,
1354
+ "style": {
1355
+ "stroke": "#1f2933",
1356
+ "strokeWidth": 2,
1357
+ "arrowEnd": true
1358
+ },
1359
+ "data": {}
1360
+ },
1361
+ {
1362
+ "id": "mqk7x8yp-92e-v5irhn",
1363
+ "type": "sticky",
1364
+ "x": 2899.465168620112,
1365
+ "y": 1272.4740554858324,
1366
+ "width": 220,
1367
+ "height": 100,
1368
+ "rotation": 0,
1369
+ "zIndex": 20062,
1370
+ "locked": false,
1371
+ "hidden": false,
1372
+ "createdAt": 1781830582945,
1373
+ "updatedAt": 1781830582945,
1374
+ "style": {
1375
+ "fill": "#93c5fd",
1376
+ "borderRadius": 12,
1377
+ "shadow": true,
1378
+ "fontSize": 13,
1379
+ "textColor": "#1f2933"
1380
+ },
1381
+ "data": {
1382
+ "text": "Opportunity"
1383
+ }
1384
+ },
1385
+ {
1386
+ "id": "mqk7x8yp-92f-rn3n2p",
1387
+ "type": "arrow",
1388
+ "x": 3039.465168620112,
1389
+ "y": 1197.4740554858324,
1390
+ "width": -30,
1391
+ "height": 70,
1392
+ "rotation": 0,
1393
+ "zIndex": 20063,
1394
+ "locked": false,
1395
+ "hidden": false,
1396
+ "createdAt": 1781830582945,
1397
+ "updatedAt": 1781830582945,
1398
+ "style": {
1399
+ "stroke": "#1f2933",
1400
+ "strokeWidth": 2,
1401
+ "arrowEnd": true
1402
+ },
1403
+ "data": {}
1404
+ },
1405
+ {
1406
+ "id": "mqk7x8yp-92g-64n9s1",
1407
+ "type": "sticky",
1408
+ "x": 3199.465168620112,
1409
+ "y": 1272.4740554858324,
1410
+ "width": 220,
1411
+ "height": 100,
1412
+ "rotation": 0,
1413
+ "zIndex": 20064,
1414
+ "locked": false,
1415
+ "hidden": false,
1416
+ "createdAt": 1781830582945,
1417
+ "updatedAt": 1781830582945,
1418
+ "style": {
1419
+ "fill": "#93c5fd",
1420
+ "borderRadius": 12,
1421
+ "shadow": true,
1422
+ "fontSize": 13,
1423
+ "textColor": "#1f2933"
1424
+ },
1425
+ "data": {
1426
+ "text": "Opportunity"
1427
+ }
1428
+ },
1429
+ {
1430
+ "id": "mqk7x8yp-92h-uul8a8",
1431
+ "type": "arrow",
1432
+ "x": 3039.465168620112,
1433
+ "y": 1197.4740554858324,
1434
+ "width": 270,
1435
+ "height": 70,
1436
+ "rotation": 0,
1437
+ "zIndex": 20065,
1438
+ "locked": false,
1439
+ "hidden": false,
1440
+ "createdAt": 1781830582945,
1441
+ "updatedAt": 1781830582945,
1442
+ "style": {
1443
+ "stroke": "#1f2933",
1444
+ "strokeWidth": 2,
1445
+ "arrowEnd": true
1446
+ },
1447
+ "data": {}
1448
+ },
1449
+ {
1450
+ "id": "mqk7x8yp-92i-t3ykgh",
1451
+ "type": "sticky",
1452
+ "x": 2599.465168620112,
1453
+ "y": 1452.4740554858324,
1454
+ "width": 220,
1455
+ "height": 100,
1456
+ "rotation": 0,
1457
+ "zIndex": 20066,
1458
+ "locked": false,
1459
+ "hidden": false,
1460
+ "createdAt": 1781830582945,
1461
+ "updatedAt": 1781830582945,
1462
+ "style": {
1463
+ "fill": "#86efac",
1464
+ "borderRadius": 12,
1465
+ "shadow": true,
1466
+ "fontSize": 13,
1467
+ "textColor": "#1f2933"
1468
+ },
1469
+ "data": {
1470
+ "text": "Solution"
1471
+ }
1472
+ },
1473
+ {
1474
+ "id": "mqk7x8yp-92j-fv2p21",
1475
+ "type": "arrow",
1476
+ "x": 2709.465168620112,
1477
+ "y": 1377.4740554858324,
1478
+ "width": 0,
1479
+ "height": 70,
1480
+ "rotation": 0,
1481
+ "zIndex": 20067,
1482
+ "locked": false,
1483
+ "hidden": false,
1484
+ "createdAt": 1781830582945,
1485
+ "updatedAt": 1781830582945,
1486
+ "style": {
1487
+ "stroke": "#1f2933",
1488
+ "strokeWidth": 2,
1489
+ "arrowEnd": true
1490
+ },
1491
+ "data": {}
1492
+ },
1493
+ {
1494
+ "id": "mqk7x8yp-92k-4hyrg5",
1495
+ "type": "sticky",
1496
+ "x": 2899.465168620112,
1497
+ "y": 1452.4740554858324,
1498
+ "width": 220,
1499
+ "height": 100,
1500
+ "rotation": 0,
1501
+ "zIndex": 20068,
1502
+ "locked": false,
1503
+ "hidden": false,
1504
+ "createdAt": 1781830582945,
1505
+ "updatedAt": 1781830582945,
1506
+ "style": {
1507
+ "fill": "#86efac",
1508
+ "borderRadius": 12,
1509
+ "shadow": true,
1510
+ "fontSize": 13,
1511
+ "textColor": "#1f2933"
1512
+ },
1513
+ "data": {
1514
+ "text": "Solution"
1515
+ }
1516
+ },
1517
+ {
1518
+ "id": "mqk7x8yp-92l-z6qbgh",
1519
+ "type": "arrow",
1520
+ "x": 3009.465168620112,
1521
+ "y": 1377.4740554858324,
1522
+ "width": 0,
1523
+ "height": 70,
1524
+ "rotation": 0,
1525
+ "zIndex": 20069,
1526
+ "locked": false,
1527
+ "hidden": false,
1528
+ "createdAt": 1781830582945,
1529
+ "updatedAt": 1781830582945,
1530
+ "style": {
1531
+ "stroke": "#1f2933",
1532
+ "strokeWidth": 2,
1533
+ "arrowEnd": true
1534
+ },
1535
+ "data": {}
1536
+ },
1537
+ {
1538
+ "id": "mqk7x8yp-92m-aotkdx",
1539
+ "type": "sticky",
1540
+ "x": 3199.465168620112,
1541
+ "y": 1452.4740554858324,
1542
+ "width": 220,
1543
+ "height": 100,
1544
+ "rotation": 0,
1545
+ "zIndex": 20070,
1546
+ "locked": false,
1547
+ "hidden": false,
1548
+ "createdAt": 1781830582945,
1549
+ "updatedAt": 1781830582945,
1550
+ "style": {
1551
+ "fill": "#86efac",
1552
+ "borderRadius": 12,
1553
+ "shadow": true,
1554
+ "fontSize": 13,
1555
+ "textColor": "#1f2933"
1556
+ },
1557
+ "data": {
1558
+ "text": "Solution"
1559
+ }
1560
+ },
1561
+ {
1562
+ "id": "mqk7x8yp-92n-puuckd",
1563
+ "type": "arrow",
1564
+ "x": 3309.465168620112,
1565
+ "y": 1377.4740554858324,
1566
+ "width": 0,
1567
+ "height": 70,
1568
+ "rotation": 0,
1569
+ "zIndex": 20071,
1570
+ "locked": false,
1571
+ "hidden": false,
1572
+ "createdAt": 1781830582945,
1573
+ "updatedAt": 1781830582945,
1574
+ "style": {
1575
+ "stroke": "#1f2933",
1576
+ "strokeWidth": 2,
1577
+ "arrowEnd": true
1578
+ },
1579
+ "data": {}
1580
+ },
1581
+ {
1582
+ "id": "mqk7x8yp-92o-y2dobv",
1583
+ "type": "sticky",
1584
+ "x": 2599.465168620112,
1585
+ "y": 1632.4740554858324,
1586
+ "width": 220,
1587
+ "height": 90,
1588
+ "rotation": 0,
1589
+ "zIndex": 20072,
1590
+ "locked": false,
1591
+ "hidden": false,
1592
+ "createdAt": 1781830582945,
1593
+ "updatedAt": 1781830582945,
1594
+ "style": {
1595
+ "fill": "#fdba74",
1596
+ "borderRadius": 12,
1597
+ "shadow": true,
1598
+ "fontSize": 13,
1599
+ "textColor": "#1f2933"
1600
+ },
1601
+ "data": {
1602
+ "text": "Experiment"
1603
+ }
1604
+ },
1605
+ {
1606
+ "id": "mqk7x8yp-92p-hziwui",
1607
+ "type": "arrow",
1608
+ "x": 2709.465168620112,
1609
+ "y": 1557.4740554858324,
1610
+ "width": 0,
1611
+ "height": 70,
1612
+ "rotation": 0,
1613
+ "zIndex": 20073,
1614
+ "locked": false,
1615
+ "hidden": false,
1616
+ "createdAt": 1781830582945,
1617
+ "updatedAt": 1781830582945,
1618
+ "style": {
1619
+ "stroke": "#1f2933",
1620
+ "strokeWidth": 2,
1621
+ "arrowEnd": true
1622
+ },
1623
+ "data": {}
1624
+ },
1625
+ {
1626
+ "id": "mqk7x8yp-92q-9dg2ih",
1627
+ "type": "sticky",
1628
+ "x": 2899.465168620112,
1629
+ "y": 1632.4740554858324,
1630
+ "width": 220,
1631
+ "height": 90,
1632
+ "rotation": 0,
1633
+ "zIndex": 20074,
1634
+ "locked": false,
1635
+ "hidden": false,
1636
+ "createdAt": 1781830582945,
1637
+ "updatedAt": 1781830582945,
1638
+ "style": {
1639
+ "fill": "#fdba74",
1640
+ "borderRadius": 12,
1641
+ "shadow": true,
1642
+ "fontSize": 13,
1643
+ "textColor": "#1f2933"
1644
+ },
1645
+ "data": {
1646
+ "text": "Experiment"
1647
+ }
1648
+ },
1649
+ {
1650
+ "id": "mqk7x8yp-92r-dc0pj3",
1651
+ "type": "arrow",
1652
+ "x": 3009.465168620112,
1653
+ "y": 1557.4740554858324,
1654
+ "width": 0,
1655
+ "height": 70,
1656
+ "rotation": 0,
1657
+ "zIndex": 20075,
1658
+ "locked": false,
1659
+ "hidden": false,
1660
+ "createdAt": 1781830582945,
1661
+ "updatedAt": 1781830582945,
1662
+ "style": {
1663
+ "stroke": "#1f2933",
1664
+ "strokeWidth": 2,
1665
+ "arrowEnd": true
1666
+ },
1667
+ "data": {}
1668
+ },
1669
+ {
1670
+ "id": "mqk7x8yp-92s-6yaeu4",
1671
+ "type": "sticky",
1672
+ "x": 3199.465168620112,
1673
+ "y": 1632.4740554858324,
1674
+ "width": 220,
1675
+ "height": 90,
1676
+ "rotation": 0,
1677
+ "zIndex": 20076,
1678
+ "locked": false,
1679
+ "hidden": false,
1680
+ "createdAt": 1781830582945,
1681
+ "updatedAt": 1781830582945,
1682
+ "style": {
1683
+ "fill": "#fdba74",
1684
+ "borderRadius": 12,
1685
+ "shadow": true,
1686
+ "fontSize": 13,
1687
+ "textColor": "#1f2933"
1688
+ },
1689
+ "data": {
1690
+ "text": "Experiment"
1691
+ }
1692
+ },
1693
+ {
1694
+ "id": "mqk7x8yp-92t-k3n17l",
1695
+ "type": "arrow",
1696
+ "x": 3309.465168620112,
1697
+ "y": 1557.4740554858324,
1698
+ "width": 0,
1699
+ "height": 70,
1700
+ "rotation": 0,
1701
+ "zIndex": 20077,
1702
+ "locked": false,
1703
+ "hidden": false,
1704
+ "createdAt": 1781830582945,
1705
+ "updatedAt": 1781830582945,
1706
+ "style": {
1707
+ "stroke": "#1f2933",
1708
+ "strokeWidth": 2,
1709
+ "arrowEnd": true
1710
+ },
1711
+ "data": {}
1712
+ },
1713
+ {
1714
+ "id": "mqk7x8yp-92u-osw6iz",
1715
+ "type": "text",
1716
+ "x": 2599.465168620112,
1717
+ "y": 1752.4740554858324,
1718
+ "width": 400,
1719
+ "height": 22.400000000000002,
1720
+ "rotation": 0,
1721
+ "zIndex": 20078,
1722
+ "locked": false,
1723
+ "hidden": false,
1724
+ "createdAt": 1781830582945,
1725
+ "updatedAt": 1781830582945,
1726
+ "style": {
1727
+ "fontSize": 14,
1728
+ "textColor": "#8b816f",
1729
+ "fontWeight": "600"
1730
+ },
1731
+ "data": {
1732
+ "text": "Signals / metrics"
1733
+ }
1734
+ },
1735
+ {
1736
+ "id": "mqk7x8yp-92v-8honmr",
1737
+ "type": "sticky",
1738
+ "x": 2599.465168620112,
1739
+ "y": 1782.4740554858324,
1740
+ "width": 380,
1741
+ "height": 100,
1742
+ "rotation": 0,
1743
+ "zIndex": 20079,
1744
+ "locked": false,
1745
+ "hidden": false,
1746
+ "createdAt": 1781830582945,
1747
+ "updatedAt": 1781830582945,
1748
+ "style": {
1749
+ "fill": "#fef08a",
1750
+ "borderRadius": 12,
1751
+ "shadow": true,
1752
+ "fontSize": 13,
1753
+ "textColor": "#1f2933"
1754
+ },
1755
+ "data": {
1756
+ "text": "What signal tells us this is working?"
1757
+ }
1758
+ },
1759
+ {
1760
+ "id": "mqkbldxc-16-1lokzh",
1761
+ "type": "rectangle",
1762
+ "x": 5051.084612341202,
1763
+ "y": 3103.6680564507424,
1764
+ "width": 1060,
1765
+ "height": 620,
1766
+ "rotation": 0,
1767
+ "zIndex": 20080,
1768
+ "locked": false,
1769
+ "hidden": false,
1770
+ "createdAt": 1781836747968,
1771
+ "updatedAt": 1781836747968,
1772
+ "style": {
1773
+ "borderRadius": 16,
1774
+ "fill": "#ffffff",
1775
+ "stroke": "#d8dade",
1776
+ "strokeWidth": 1.5,
1777
+ "shadow": true
1778
+ },
1779
+ "data": {
1780
+ "text": ""
1781
+ }
1782
+ },
1783
+ {
1784
+ "id": "mqkbldxc-17-nwdyd8",
1785
+ "type": "text",
1786
+ "x": 5079.084612341202,
1787
+ "y": 3125.6680564507424,
1788
+ "width": 500,
1789
+ "height": 35.2,
1790
+ "rotation": 0,
1791
+ "zIndex": 20081,
1792
+ "locked": false,
1793
+ "hidden": false,
1794
+ "createdAt": 1781836747968,
1795
+ "updatedAt": 1781836747968,
1796
+ "style": {
1797
+ "fontSize": 22,
1798
+ "textColor": "#1f2933",
1799
+ "fontWeight": "700"
1800
+ },
1801
+ "data": {
1802
+ "text": "Screenshot Review"
1803
+ }
1804
+ },
1805
+ {
1806
+ "id": "mqkbldxc-18-z0d16l",
1807
+ "type": "text",
1808
+ "x": 5079.084612341202,
1809
+ "y": 3167.6680564507424,
1810
+ "width": 300,
1811
+ "height": 20.8,
1812
+ "rotation": 0,
1813
+ "zIndex": 20082,
1814
+ "locked": false,
1815
+ "hidden": false,
1816
+ "createdAt": 1781836747968,
1817
+ "updatedAt": 1781836747968,
1818
+ "style": {
1819
+ "fontSize": 13,
1820
+ "textColor": "#8b816f",
1821
+ "fontWeight": "600"
1822
+ },
1823
+ "data": {
1824
+ "text": "Screenshot"
1825
+ }
1826
+ },
1827
+ {
1828
+ "id": "mqkbldxc-19-l8bz7b",
1829
+ "type": "frame",
1830
+ "x": 5079.084612341202,
1831
+ "y": 3195.6680564507424,
1832
+ "width": 480,
1833
+ "height": 360,
1834
+ "rotation": 0,
1835
+ "zIndex": 20179,
1836
+ "locked": false,
1837
+ "hidden": false,
1838
+ "createdAt": 1781836747968,
1839
+ "updatedAt": 1781836747968,
1840
+ "style": {
1841
+ "fill": "#f0f0ed",
1842
+ "stroke": "#d8dade",
1843
+ "strokeWidth": 1.5,
1844
+ "borderRadius": 12,
1845
+ "fontSize": 13,
1846
+ "textColor": "#4b5563"
1847
+ },
1848
+ "data": {
1849
+ "text": "Paste a screenshot here (Cmd/Ctrl+V)"
1850
+ }
1851
+ },
1852
+ {
1853
+ "id": "mqkbldxc-1a-fjvl91",
1854
+ "type": "text",
1855
+ "x": 5591.084612341202,
1856
+ "y": 3167.6680564507424,
1857
+ "width": 230,
1858
+ "height": 20.8,
1859
+ "rotation": 0,
1860
+ "zIndex": 20083,
1861
+ "locked": false,
1862
+ "hidden": false,
1863
+ "createdAt": 1781836747968,
1864
+ "updatedAt": 1781836747968,
1865
+ "style": {
1866
+ "fontSize": 13,
1867
+ "textColor": "#8b816f",
1868
+ "fontWeight": "600"
1869
+ },
1870
+ "data": {
1871
+ "text": "Observations"
1872
+ }
1873
+ },
1874
+ {
1875
+ "id": "mqkbldxc-1b-sglhnw",
1876
+ "type": "sticky",
1877
+ "x": 5591.084612341202,
1878
+ "y": 3195.6680564507424,
1879
+ "width": 230,
1880
+ "height": 140,
1881
+ "rotation": 0,
1882
+ "zIndex": 20084,
1883
+ "locked": false,
1884
+ "hidden": false,
1885
+ "createdAt": 1781836747968,
1886
+ "updatedAt": 1781836747968,
1887
+ "style": {
1888
+ "fill": "#93c5fd",
1889
+ "borderRadius": 12,
1890
+ "shadow": true,
1891
+ "fontSize": 13,
1892
+ "textColor": "#1f2933"
1893
+ },
1894
+ "data": {
1895
+ "text": ""
1896
+ }
1897
+ },
1898
+ {
1899
+ "id": "mqkbldxc-1c-yfyf6m",
1900
+ "type": "text",
1901
+ "x": 5841.084612341202,
1902
+ "y": 3167.6680564507424,
1903
+ "width": 230,
1904
+ "height": 20.8,
1905
+ "rotation": 0,
1906
+ "zIndex": 20085,
1907
+ "locked": false,
1908
+ "hidden": false,
1909
+ "createdAt": 1781836747968,
1910
+ "updatedAt": 1781836747968,
1911
+ "style": {
1912
+ "fontSize": 13,
1913
+ "textColor": "#8b816f",
1914
+ "fontWeight": "600"
1915
+ },
1916
+ "data": {
1917
+ "text": "Problems"
1918
+ }
1919
+ },
1920
+ {
1921
+ "id": "mqkbldxc-1d-5wi7tp",
1922
+ "type": "sticky",
1923
+ "x": 5841.084612341202,
1924
+ "y": 3195.6680564507424,
1925
+ "width": 230,
1926
+ "height": 140,
1927
+ "rotation": 0,
1928
+ "zIndex": 20086,
1929
+ "locked": false,
1930
+ "hidden": false,
1931
+ "createdAt": 1781836747968,
1932
+ "updatedAt": 1781836747968,
1933
+ "style": {
1934
+ "fill": "#fca5a5",
1935
+ "borderRadius": 12,
1936
+ "shadow": true,
1937
+ "fontSize": 13,
1938
+ "textColor": "#1f2933"
1939
+ },
1940
+ "data": {
1941
+ "text": ""
1942
+ }
1943
+ },
1944
+ {
1945
+ "id": "mqkbldxc-1e-f9xa20",
1946
+ "type": "text",
1947
+ "x": 5591.084612341202,
1948
+ "y": 3367.6680564507424,
1949
+ "width": 230,
1950
+ "height": 20.8,
1951
+ "rotation": 0,
1952
+ "zIndex": 20087,
1953
+ "locked": false,
1954
+ "hidden": false,
1955
+ "createdAt": 1781836747968,
1956
+ "updatedAt": 1781836747968,
1957
+ "style": {
1958
+ "fontSize": 13,
1959
+ "textColor": "#8b816f",
1960
+ "fontWeight": "600"
1961
+ },
1962
+ "data": {
1963
+ "text": "UX notes"
1964
+ }
1965
+ },
1966
+ {
1967
+ "id": "mqkbldxc-1f-t6jkoy",
1968
+ "type": "sticky",
1969
+ "x": 5591.084612341202,
1970
+ "y": 3395.6680564507424,
1971
+ "width": 230,
1972
+ "height": 140,
1973
+ "rotation": 0,
1974
+ "zIndex": 20088,
1975
+ "locked": false,
1976
+ "hidden": false,
1977
+ "createdAt": 1781836747968,
1978
+ "updatedAt": 1781836747968,
1979
+ "style": {
1980
+ "fill": "#d8b4fe",
1981
+ "borderRadius": 12,
1982
+ "shadow": true,
1983
+ "fontSize": 13,
1984
+ "textColor": "#1f2933"
1985
+ },
1986
+ "data": {
1987
+ "text": ""
1988
+ }
1989
+ },
1990
+ {
1991
+ "id": "mqkbldxc-1g-c3c6bv",
1992
+ "type": "text",
1993
+ "x": 5841.084612341202,
1994
+ "y": 3367.6680564507424,
1995
+ "width": 230,
1996
+ "height": 20.8,
1997
+ "rotation": 0,
1998
+ "zIndex": 20089,
1999
+ "locked": false,
2000
+ "hidden": false,
2001
+ "createdAt": 1781836747968,
2002
+ "updatedAt": 1781836747968,
2003
+ "style": {
2004
+ "fontSize": 13,
2005
+ "textColor": "#8b816f",
2006
+ "fontWeight": "600"
2007
+ },
2008
+ "data": {
2009
+ "text": "Requirements"
2010
+ }
2011
+ },
2012
+ {
2013
+ "id": "mqkbldxc-1h-sfpv8q",
2014
+ "type": "sticky",
2015
+ "x": 5841.084612341202,
2016
+ "y": 3395.6680564507424,
2017
+ "width": 230,
2018
+ "height": 140,
2019
+ "rotation": 0,
2020
+ "zIndex": 20090,
2021
+ "locked": false,
2022
+ "hidden": false,
2023
+ "createdAt": 1781836747968,
2024
+ "updatedAt": 1781836747968,
2025
+ "style": {
2026
+ "fill": "#86efac",
2027
+ "borderRadius": 12,
2028
+ "shadow": true,
2029
+ "fontSize": 13,
2030
+ "textColor": "#1f2933"
2031
+ },
2032
+ "data": {
2033
+ "text": ""
2034
+ }
2035
+ },
2036
+ {
2037
+ "id": "mqkbldxc-1i-ntl1e7",
2038
+ "type": "text",
2039
+ "x": 5079.084612341202,
2040
+ "y": 3573.6680564507424,
2041
+ "width": 300,
2042
+ "height": 20.8,
2043
+ "rotation": 0,
2044
+ "zIndex": 20091,
2045
+ "locked": false,
2046
+ "hidden": false,
2047
+ "createdAt": 1781836747968,
2048
+ "updatedAt": 1781836747968,
2049
+ "style": {
2050
+ "fontSize": 13,
2051
+ "textColor": "#8b816f",
2052
+ "fontWeight": "600"
2053
+ },
2054
+ "data": {
2055
+ "text": "Follow-up tasks"
2056
+ }
2057
+ },
2058
+ {
2059
+ "id": "mqkbldxc-1j-qasi9m",
2060
+ "type": "sticky",
2061
+ "x": 5079.084612341202,
2062
+ "y": 3601.6680564507424,
2063
+ "width": 480,
2064
+ "height": 96,
2065
+ "rotation": 0,
2066
+ "zIndex": 20092,
2067
+ "locked": false,
2068
+ "hidden": false,
2069
+ "createdAt": 1781836747968,
2070
+ "updatedAt": 1781836747968,
2071
+ "style": {
2072
+ "fill": "#fef08a",
2073
+ "borderRadius": 12,
2074
+ "shadow": true,
2075
+ "fontSize": 13,
2076
+ "textColor": "#1f2933"
2077
+ },
2078
+ "data": {
2079
+ "text": ""
2080
+ }
2081
+ },
2082
+ {
2083
+ "id": "mqkbldxc-1k-icebmv",
2084
+ "type": "text",
2085
+ "x": 5591.084612341202,
2086
+ "y": 3573.6680564507424,
2087
+ "width": 300,
2088
+ "height": 20.8,
2089
+ "rotation": 0,
2090
+ "zIndex": 20093,
2091
+ "locked": false,
2092
+ "hidden": false,
2093
+ "createdAt": 1781836747968,
2094
+ "updatedAt": 1781836747968,
2095
+ "style": {
2096
+ "fontSize": 13,
2097
+ "textColor": "#8b816f",
2098
+ "fontWeight": "600"
2099
+ },
2100
+ "data": {
2101
+ "text": "Decision"
2102
+ }
2103
+ },
2104
+ {
2105
+ "id": "mqkbldxc-1l-2pbo7a",
2106
+ "type": "sticky",
2107
+ "x": 5591.084612341202,
2108
+ "y": 3601.6680564507424,
2109
+ "width": 480,
2110
+ "height": 96,
2111
+ "rotation": 0,
2112
+ "zIndex": 20094,
2113
+ "locked": false,
2114
+ "hidden": false,
2115
+ "createdAt": 1781836747968,
2116
+ "updatedAt": 1781836747968,
2117
+ "style": {
2118
+ "fill": "#fdba74",
2119
+ "borderRadius": 12,
2120
+ "shadow": true,
2121
+ "fontSize": 13,
2122
+ "textColor": "#1f2933"
2123
+ },
2124
+ "data": {
2125
+ "text": ""
2126
+ }
2127
+ }
2128
+ ],
2129
+ "assetIds": []
2130
+ }