@luquimbo/bi-superpowers 3.2.0 → 4.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 (91) hide show
  1. package/.claude-plugin/marketplace.json +5 -3
  2. package/.claude-plugin/plugin.json +28 -2
  3. package/.claude-plugin/skill-manifest.json +22 -6
  4. package/.plugin/plugin.json +1 -1
  5. package/AGENTS.md +52 -36
  6. package/CHANGELOG.md +295 -0
  7. package/README.md +75 -26
  8. package/bin/build-plugin.js +11 -4
  9. package/bin/cli.js +113 -16
  10. package/bin/commands/build-desktop.js +35 -16
  11. package/bin/commands/diff.js +31 -13
  12. package/bin/commands/install.js +7 -3
  13. package/bin/commands/lint.js +40 -26
  14. package/bin/commands/mcp-setup.js +3 -10
  15. package/bin/commands/update-check.js +389 -0
  16. package/bin/lib/generators/claude-plugin.js +144 -6
  17. package/bin/lib/generators/shared.js +29 -33
  18. package/bin/lib/mcp-config.js +168 -12
  19. package/bin/lib/skills.js +115 -27
  20. package/bin/postinstall.js +4 -2
  21. package/bin/utils/mcp-detect.js +2 -2
  22. package/commands/bi-start.md +218 -0
  23. package/commands/pbi-connect.md +43 -65
  24. package/commands/project-kickoff.md +393 -673
  25. package/commands/report-design.md +403 -0
  26. package/desktop-extension/manifest.json +3 -3
  27. package/package.json +7 -5
  28. package/skills/bi-start/SKILL.md +220 -0
  29. package/skills/bi-start/scripts/update-check.js +389 -0
  30. package/skills/pbi-connect/SKILL.md +45 -67
  31. package/skills/pbi-connect/scripts/update-check.js +389 -0
  32. package/skills/project-kickoff/SKILL.md +395 -675
  33. package/skills/project-kickoff/scripts/update-check.js +389 -0
  34. package/skills/report-design/SKILL.md +405 -0
  35. package/skills/report-design/references/cli-commands.md +184 -0
  36. package/skills/report-design/references/cli-setup.md +101 -0
  37. package/skills/report-design/references/close-write-open-pattern.md +80 -0
  38. package/skills/report-design/references/layouts/finance.md +65 -0
  39. package/skills/report-design/references/layouts/generic.md +46 -0
  40. package/skills/report-design/references/layouts/hr.md +48 -0
  41. package/skills/report-design/references/layouts/marketing.md +45 -0
  42. package/skills/report-design/references/layouts/operations.md +44 -0
  43. package/skills/report-design/references/layouts/sales.md +50 -0
  44. package/skills/report-design/references/native-visuals.md +341 -0
  45. package/skills/report-design/references/pbi-desktop-installation.md +87 -0
  46. package/skills/report-design/references/pbir-preview-activation.md +40 -0
  47. package/skills/report-design/references/slicer.md +89 -0
  48. package/skills/report-design/references/textbox.md +101 -0
  49. package/skills/report-design/references/themes/BISuperpowers.json +915 -0
  50. package/skills/report-design/references/troubleshooting.md +135 -0
  51. package/skills/report-design/references/visual-types.md +78 -0
  52. package/skills/report-design/scripts/apply-theme.js +243 -0
  53. package/skills/report-design/scripts/create-visual.js +878 -0
  54. package/skills/report-design/scripts/ensure-pbi-cli.sh +41 -0
  55. package/skills/report-design/scripts/update-check.js +389 -0
  56. package/skills/report-design/scripts/validate-pbir.js +322 -0
  57. package/src/content/base.md +12 -68
  58. package/src/content/mcp-requirements.json +0 -25
  59. package/src/content/routing.md +19 -74
  60. package/src/content/skills/bi-start.md +191 -0
  61. package/src/content/skills/pbi-connect.md +22 -65
  62. package/src/content/skills/project-kickoff.md +372 -673
  63. package/src/content/skills/report-design/SKILL.md +376 -0
  64. package/src/content/skills/report-design/references/cli-commands.md +184 -0
  65. package/src/content/skills/report-design/references/cli-setup.md +101 -0
  66. package/src/content/skills/report-design/references/close-write-open-pattern.md +80 -0
  67. package/src/content/skills/report-design/references/layouts/finance.md +65 -0
  68. package/src/content/skills/report-design/references/layouts/generic.md +46 -0
  69. package/src/content/skills/report-design/references/layouts/hr.md +48 -0
  70. package/src/content/skills/report-design/references/layouts/marketing.md +45 -0
  71. package/src/content/skills/report-design/references/layouts/operations.md +44 -0
  72. package/src/content/skills/report-design/references/layouts/sales.md +50 -0
  73. package/src/content/skills/report-design/references/native-visuals.md +341 -0
  74. package/src/content/skills/report-design/references/pbi-desktop-installation.md +87 -0
  75. package/src/content/skills/report-design/references/pbir-preview-activation.md +40 -0
  76. package/src/content/skills/report-design/references/slicer.md +89 -0
  77. package/src/content/skills/report-design/references/textbox.md +101 -0
  78. package/src/content/skills/report-design/references/themes/BISuperpowers.json +915 -0
  79. package/src/content/skills/report-design/references/troubleshooting.md +135 -0
  80. package/src/content/skills/report-design/references/visual-types.md +78 -0
  81. package/src/content/skills/report-design/scripts/apply-theme.js +243 -0
  82. package/src/content/skills/report-design/scripts/create-visual.js +878 -0
  83. package/src/content/skills/report-design/scripts/ensure-pbi-cli.sh +41 -0
  84. package/src/content/skills/report-design/scripts/validate-pbir.js +322 -0
  85. package/bin/commands/install.test.js +0 -289
  86. package/bin/commands/lint.test.js +0 -103
  87. package/bin/lib/generators/claude-plugin.test.js +0 -111
  88. package/bin/lib/mcp-config.test.js +0 -310
  89. package/bin/lib/microsoft-mcp.test.js +0 -115
  90. package/bin/utils/mcp-detect.test.js +0 -81
  91. package/bin/utils/tui.test.js +0 -127
@@ -0,0 +1,915 @@
1
+ {
2
+ "name": "BISuperpowers",
3
+ "dataColors": [
4
+ "#3B82F6",
5
+ "#10B981",
6
+ "#8B5CF6",
7
+ "#F59E0B",
8
+ "#06B6D4",
9
+ "#6366F1",
10
+ "#EC4899",
11
+ "#F43F5E",
12
+ "#0EA5E9",
13
+ "#F97316"
14
+ ],
15
+ "foreground": "#111827",
16
+ "foregroundNeutralSecondary": "#4B5563",
17
+ "foregroundNeutralTertiary": "#6B7280",
18
+ "foregroundNeutralLight": "#9CA3AF",
19
+ "background": "#FFFFFF",
20
+ "backgroundLight": "#F9FAFB",
21
+ "backgroundNeutral": "#F3F4F6",
22
+ "backgroundDark": "#E5E7EB",
23
+ "secondaryBackground": "#FFFFFF",
24
+ "tableAccent": "#4F46E5",
25
+ "good": "#10B981",
26
+ "neutral": "#6B7280",
27
+ "bad": "#EF4444",
28
+ "maximum": "#4F46E5",
29
+ "center": "#9CA3AF",
30
+ "minimum": "#E5E7EB",
31
+ "null": "#D1D5DB",
32
+ "hyperlink": "#4F46E5",
33
+ "visitedHyperlink": "#3730A3",
34
+ "textClasses": {
35
+ "callout": {
36
+ "fontSize": 20,
37
+ "fontFace": "Segoe UI Semibold",
38
+ "color": "#111827"
39
+ },
40
+ "title": {
41
+ "fontSize": 11,
42
+ "fontFace": "Segoe UI Semibold",
43
+ "color": "#111827"
44
+ },
45
+ "header": {
46
+ "fontSize": 10,
47
+ "fontFace": "Segoe UI Semibold",
48
+ "color": "#374151"
49
+ },
50
+ "label": {
51
+ "fontSize": 9,
52
+ "fontFace": "Segoe UI",
53
+ "color": "#6B7280"
54
+ }
55
+ },
56
+ "visualStyles": {
57
+ "*": {
58
+ "*": {
59
+ "title": [
60
+ {
61
+ "show": true,
62
+ "fontFamily": "'Segoe UI Semibold', wf_segoe-ui_semibold, helvetica, arial, sans-serif",
63
+ "fontSize": 11,
64
+ "fontColor": {
65
+ "solid": {
66
+ "color": "#111827"
67
+ }
68
+ },
69
+ "titleWrap": true,
70
+ "alignment": "left"
71
+ }
72
+ ],
73
+ "subTitle": [
74
+ {
75
+ "show": true,
76
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
77
+ "fontSize": 9,
78
+ "fontColor": {
79
+ "solid": {
80
+ "color": "#6B7280"
81
+ }
82
+ }
83
+ }
84
+ ],
85
+ "padding": [
86
+ {
87
+ "left": 24,
88
+ "top": 24,
89
+ "right": 24,
90
+ "bottom": 24
91
+ }
92
+ ],
93
+ "background": [
94
+ {
95
+ "show": true,
96
+ "color": {
97
+ "solid": {
98
+ "color": "#FFFFFF"
99
+ }
100
+ },
101
+ "transparency": 0
102
+ }
103
+ ],
104
+ "border": [
105
+ {
106
+ "show": true,
107
+ "width": 1,
108
+ "radius": 8,
109
+ "color": {
110
+ "solid": {
111
+ "color": "#E5E7EB"
112
+ }
113
+ }
114
+ }
115
+ ],
116
+ "dropShadow": [
117
+ {
118
+ "show": true,
119
+ "preset": "Custom",
120
+ "angle": 90,
121
+ "shadowDistance": 1,
122
+ "shadowBlur": 4,
123
+ "shadowSpread": 0,
124
+ "color": {
125
+ "solid": {
126
+ "color": "#0F172A"
127
+ }
128
+ },
129
+ "transparency": 92
130
+ }
131
+ ],
132
+ "categoryAxis": [
133
+ {
134
+ "show": true,
135
+ "showAxisTitle": false,
136
+ "axisStyle": "showLabels",
137
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
138
+ "fontSize": 9,
139
+ "labelColor": {
140
+ "solid": {
141
+ "color": "#6B7280"
142
+ }
143
+ },
144
+ "gridlineShow": false
145
+ }
146
+ ],
147
+ "valueAxis": [
148
+ {
149
+ "show": true,
150
+ "showAxisTitle": false,
151
+ "axisStyle": "showLabels",
152
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
153
+ "fontSize": 9,
154
+ "labelColor": {
155
+ "solid": {
156
+ "color": "#6B7280"
157
+ }
158
+ },
159
+ "gridlineShow": true,
160
+ "gridlineStyle": "solid",
161
+ "gridlineColor": {
162
+ "solid": {
163
+ "color": "#E5E7EB"
164
+ }
165
+ },
166
+ "gridlineThickness": 1
167
+ }
168
+ ],
169
+ "legend": [
170
+ {
171
+ "show": true,
172
+ "position": "Top",
173
+ "showTitle": false,
174
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
175
+ "fontSize": 9,
176
+ "labelColor": {
177
+ "solid": {
178
+ "color": "#374151"
179
+ }
180
+ }
181
+ }
182
+ ],
183
+ "lineStyles": [
184
+ {
185
+ "strokeWidth": 2,
186
+ "lineStyle": "solid"
187
+ }
188
+ ],
189
+ "spacing": [
190
+ {
191
+ "verticalSpacing": 4,
192
+ "customizeSpacing": true,
193
+ "spaceBelowTitle": 8,
194
+ "spaceBelowSubTitle": 12
195
+ }
196
+ ]
197
+ }
198
+ },
199
+ "page": {
200
+ "*": {
201
+ "background": [
202
+ {
203
+ "color": {
204
+ "solid": {
205
+ "color": "#FFFFFF"
206
+ }
207
+ },
208
+ "transparency": 0
209
+ }
210
+ ]
211
+ }
212
+ },
213
+ "textbox": {
214
+ "*": {
215
+ "background": [
216
+ {
217
+ "show": false
218
+ }
219
+ ],
220
+ "visualHeader": [
221
+ {
222
+ "show": false
223
+ }
224
+ ],
225
+ "title": [
226
+ {
227
+ "show": false
228
+ }
229
+ ],
230
+ "subTitle": [
231
+ {
232
+ "show": false
233
+ }
234
+ ],
235
+ "padding": [
236
+ {
237
+ "left": 0,
238
+ "top": 0,
239
+ "right": 0,
240
+ "bottom": 0
241
+ }
242
+ ],
243
+ "border": [
244
+ {
245
+ "show": false
246
+ }
247
+ ],
248
+ "dropShadow": [
249
+ {
250
+ "show": false
251
+ }
252
+ ]
253
+ }
254
+ },
255
+ "card": {
256
+ "*": {
257
+ "labels": [
258
+ {
259
+ "fontFamily": "'Segoe UI Semibold', wf_segoe-ui_semibold, helvetica, arial, sans-serif",
260
+ "fontSize": 28,
261
+ "color": {
262
+ "solid": {
263
+ "color": "#111827"
264
+ }
265
+ }
266
+ }
267
+ ],
268
+ "categoryLabels": [
269
+ {
270
+ "show": true,
271
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
272
+ "fontSize": 10,
273
+ "color": {
274
+ "solid": {
275
+ "color": "#6B7280"
276
+ }
277
+ }
278
+ }
279
+ ]
280
+ }
281
+ },
282
+ "multiRowCard": {
283
+ "*": {
284
+ "dataLabels": [
285
+ {
286
+ "fontFamily": "'Segoe UI Semibold', wf_segoe-ui_semibold, helvetica, arial, sans-serif",
287
+ "fontSize": 16,
288
+ "color": {
289
+ "solid": {
290
+ "color": "#111827"
291
+ }
292
+ }
293
+ }
294
+ ],
295
+ "categoryLabels": [
296
+ {
297
+ "show": true,
298
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
299
+ "fontSize": 9,
300
+ "color": {
301
+ "solid": {
302
+ "color": "#6B7280"
303
+ }
304
+ }
305
+ }
306
+ ],
307
+ "card": [
308
+ {
309
+ "outlineWeight": 1,
310
+ "barShow": false
311
+ }
312
+ ]
313
+ }
314
+ },
315
+ "kpi": {
316
+ "*": {
317
+ "indicator": [
318
+ {
319
+ "fontFamily": "'Segoe UI Semibold', wf_segoe-ui_semibold, helvetica, arial, sans-serif",
320
+ "fontSize": 28,
321
+ "color": {
322
+ "solid": {
323
+ "color": "#111827"
324
+ }
325
+ }
326
+ },
327
+ {
328
+ "directionGood": "Positive",
329
+ "goodColor": {
330
+ "solid": {
331
+ "color": "#10B981"
332
+ }
333
+ },
334
+ "badColor": {
335
+ "solid": {
336
+ "color": "#EF4444"
337
+ }
338
+ },
339
+ "neutralColor": {
340
+ "solid": {
341
+ "color": "#6B7280"
342
+ }
343
+ }
344
+ }
345
+ ],
346
+ "trendline": [
347
+ {
348
+ "show": true,
349
+ "transparency": 20,
350
+ "color": {
351
+ "solid": {
352
+ "color": "#4F46E5"
353
+ }
354
+ }
355
+ }
356
+ ],
357
+ "goals": [
358
+ {
359
+ "show": true,
360
+ "color": {
361
+ "solid": {
362
+ "color": "#9CA3AF"
363
+ }
364
+ }
365
+ }
366
+ ]
367
+ }
368
+ },
369
+ "gauge": {
370
+ "*": {
371
+ "general": [
372
+ {
373
+ "responsive": true
374
+ }
375
+ ],
376
+ "labels": [
377
+ {
378
+ "show": false
379
+ }
380
+ ]
381
+ }
382
+ },
383
+ "slicer": {
384
+ "*": {
385
+ "visualHeader": [
386
+ {
387
+ "show": false
388
+ }
389
+ ]
390
+ }
391
+ },
392
+ "advancedSlicerVisual": {
393
+ "*": {
394
+ "visualHeader": [
395
+ {
396
+ "show": false
397
+ }
398
+ ]
399
+ }
400
+ },
401
+ "listSlicer": {
402
+ "*": {
403
+ "visualHeader": [
404
+ {
405
+ "show": false
406
+ }
407
+ ]
408
+ }
409
+ },
410
+ "textSlicer": {
411
+ "*": {
412
+ "visualHeader": [
413
+ {
414
+ "show": false
415
+ }
416
+ ]
417
+ }
418
+ },
419
+ "barChart": {
420
+ "*": {
421
+ "general": [
422
+ {
423
+ "responsive": true
424
+ }
425
+ ],
426
+ "legend": [
427
+ {
428
+ "show": true,
429
+ "position": "Top",
430
+ "showTitle": false
431
+ }
432
+ ],
433
+ "categoryAxis": [
434
+ {
435
+ "gridlineShow": false,
436
+ "innerPadding": 30
437
+ }
438
+ ]
439
+ }
440
+ },
441
+ "clusteredBarChart": {
442
+ "*": {
443
+ "general": [
444
+ {
445
+ "responsive": true
446
+ }
447
+ ],
448
+ "legend": [
449
+ {
450
+ "show": true,
451
+ "position": "Top",
452
+ "showTitle": false
453
+ }
454
+ ],
455
+ "categoryAxis": [
456
+ {
457
+ "gridlineShow": false,
458
+ "innerPadding": 30
459
+ }
460
+ ]
461
+ }
462
+ },
463
+ "stackedBarChart": {
464
+ "*": {
465
+ "general": [
466
+ {
467
+ "responsive": true
468
+ }
469
+ ],
470
+ "legend": [
471
+ {
472
+ "show": true,
473
+ "position": "Top",
474
+ "showTitle": false
475
+ }
476
+ ],
477
+ "categoryAxis": [
478
+ {
479
+ "gridlineShow": false,
480
+ "innerPadding": 30
481
+ }
482
+ ]
483
+ }
484
+ },
485
+ "columnChart": {
486
+ "*": {
487
+ "general": [
488
+ {
489
+ "responsive": true
490
+ }
491
+ ],
492
+ "legend": [
493
+ {
494
+ "show": true,
495
+ "position": "Top",
496
+ "showTitle": false
497
+ }
498
+ ],
499
+ "categoryAxis": [
500
+ {
501
+ "gridlineShow": false,
502
+ "innerPadding": 30
503
+ }
504
+ ]
505
+ }
506
+ },
507
+ "clusteredColumnChart": {
508
+ "*": {
509
+ "general": [
510
+ {
511
+ "responsive": true
512
+ }
513
+ ],
514
+ "legend": [
515
+ {
516
+ "show": true,
517
+ "position": "Top",
518
+ "showTitle": false
519
+ }
520
+ ],
521
+ "categoryAxis": [
522
+ {
523
+ "gridlineShow": false,
524
+ "innerPadding": 30
525
+ }
526
+ ]
527
+ }
528
+ },
529
+ "stackedColumnChart": {
530
+ "*": {
531
+ "general": [
532
+ {
533
+ "responsive": true
534
+ }
535
+ ],
536
+ "legend": [
537
+ {
538
+ "show": true,
539
+ "position": "Top",
540
+ "showTitle": false
541
+ }
542
+ ],
543
+ "categoryAxis": [
544
+ {
545
+ "gridlineShow": false,
546
+ "innerPadding": 30
547
+ }
548
+ ]
549
+ }
550
+ },
551
+ "hundredPercentStackedBarChart": {
552
+ "*": {
553
+ "general": [
554
+ {
555
+ "responsive": true
556
+ }
557
+ ],
558
+ "legend": [
559
+ {
560
+ "show": true,
561
+ "position": "Top",
562
+ "showTitle": false
563
+ }
564
+ ],
565
+ "categoryAxis": [
566
+ {
567
+ "gridlineShow": false,
568
+ "innerPadding": 30
569
+ }
570
+ ]
571
+ }
572
+ },
573
+ "hundredPercentStackedColumnChart": {
574
+ "*": {
575
+ "general": [
576
+ {
577
+ "responsive": true
578
+ }
579
+ ],
580
+ "legend": [
581
+ {
582
+ "show": true,
583
+ "position": "Top",
584
+ "showTitle": false
585
+ }
586
+ ],
587
+ "categoryAxis": [
588
+ {
589
+ "gridlineShow": false,
590
+ "innerPadding": 30
591
+ }
592
+ ]
593
+ }
594
+ },
595
+ "lineChart": {
596
+ "*": {
597
+ "general": [
598
+ {
599
+ "responsive": true
600
+ }
601
+ ],
602
+ "legend": [
603
+ {
604
+ "show": true,
605
+ "position": "Top",
606
+ "showTitle": false
607
+ }
608
+ ]
609
+ }
610
+ },
611
+ "areaChart": {
612
+ "*": {
613
+ "general": [
614
+ {
615
+ "responsive": true
616
+ }
617
+ ],
618
+ "legend": [
619
+ {
620
+ "show": true,
621
+ "position": "Top",
622
+ "showTitle": false
623
+ }
624
+ ]
625
+ }
626
+ },
627
+ "stackedAreaChart": {
628
+ "*": {
629
+ "general": [
630
+ {
631
+ "responsive": true
632
+ }
633
+ ],
634
+ "legend": [
635
+ {
636
+ "show": true,
637
+ "position": "Top",
638
+ "showTitle": false
639
+ }
640
+ ]
641
+ }
642
+ },
643
+ "ribbonChart": {
644
+ "*": {
645
+ "general": [
646
+ {
647
+ "responsive": true
648
+ }
649
+ ],
650
+ "legend": [
651
+ {
652
+ "show": true,
653
+ "position": "Top",
654
+ "showTitle": false
655
+ }
656
+ ]
657
+ }
658
+ },
659
+ "lineClusteredColumnComboChart": {
660
+ "*": {
661
+ "general": [
662
+ {
663
+ "responsive": true
664
+ }
665
+ ],
666
+ "legend": [
667
+ {
668
+ "show": true,
669
+ "position": "Top",
670
+ "showTitle": false
671
+ }
672
+ ],
673
+ "categoryAxis": [
674
+ {
675
+ "innerPadding": 30
676
+ }
677
+ ]
678
+ }
679
+ },
680
+ "lineStackedColumnComboChart": {
681
+ "*": {
682
+ "general": [
683
+ {
684
+ "responsive": true
685
+ }
686
+ ],
687
+ "legend": [
688
+ {
689
+ "show": true,
690
+ "position": "Top",
691
+ "showTitle": false
692
+ }
693
+ ],
694
+ "categoryAxis": [
695
+ {
696
+ "innerPadding": 30
697
+ }
698
+ ]
699
+ }
700
+ },
701
+ "pieChart": {
702
+ "*": {
703
+ "legend": [
704
+ {
705
+ "show": true,
706
+ "position": "Right",
707
+ "showTitle": false
708
+ }
709
+ ]
710
+ }
711
+ },
712
+ "donutChart": {
713
+ "*": {
714
+ "legend": [
715
+ {
716
+ "show": true,
717
+ "position": "Right",
718
+ "showTitle": false
719
+ }
720
+ ]
721
+ }
722
+ },
723
+ "treemap": {
724
+ "*": {
725
+ "legend": [
726
+ {
727
+ "show": false
728
+ }
729
+ ]
730
+ }
731
+ },
732
+ "funnel": {
733
+ "*": {
734
+ "general": [
735
+ {
736
+ "responsive": true
737
+ }
738
+ ],
739
+ "legend": [
740
+ {
741
+ "show": false
742
+ }
743
+ ]
744
+ }
745
+ },
746
+ "scatterChart": {
747
+ "*": {
748
+ "general": [
749
+ {
750
+ "responsive": true
751
+ }
752
+ ],
753
+ "fillPoint": [
754
+ {
755
+ "show": true
756
+ }
757
+ ],
758
+ "legend": [
759
+ {
760
+ "show": true,
761
+ "position": "Top",
762
+ "showTitle": false
763
+ }
764
+ ],
765
+ "categoryAxis": [
766
+ {
767
+ "showAxisTitle": true
768
+ }
769
+ ],
770
+ "valueAxis": [
771
+ {
772
+ "showAxisTitle": true
773
+ }
774
+ ]
775
+ }
776
+ },
777
+ "waterfallChart": {
778
+ "*": {
779
+ "general": [
780
+ {
781
+ "responsive": true
782
+ }
783
+ ],
784
+ "categoryAxis": [
785
+ {
786
+ "innerPadding": 36
787
+ }
788
+ ],
789
+ "legend": [
790
+ {
791
+ "show": false
792
+ }
793
+ ],
794
+ "sentimentColors": [
795
+ {
796
+ "increaseFill": {
797
+ "solid": {
798
+ "color": "#10B981"
799
+ }
800
+ },
801
+ "decreaseFill": {
802
+ "solid": {
803
+ "color": "#EF4444"
804
+ }
805
+ },
806
+ "totalFill": {
807
+ "solid": {
808
+ "color": "#6B7280"
809
+ }
810
+ }
811
+ }
812
+ ]
813
+ }
814
+ },
815
+ "tableEx": {
816
+ "*": {
817
+ "grid": [
818
+ {
819
+ "gridVertical": false,
820
+ "gridHorizontal": true,
821
+ "gridHorizontalColor": {
822
+ "solid": {
823
+ "color": "#E5E7EB"
824
+ }
825
+ },
826
+ "gridHorizontalWeight": 1,
827
+ "rowPadding": 6
828
+ }
829
+ ],
830
+ "columnHeaders": [
831
+ {
832
+ "fontFamily": "'Segoe UI Semibold', wf_segoe-ui_semibold, helvetica, arial, sans-serif",
833
+ "fontSize": 10,
834
+ "fontColor": {
835
+ "solid": {
836
+ "color": "#374151"
837
+ }
838
+ },
839
+ "backColor": {
840
+ "solid": {
841
+ "color": "#F9FAFB"
842
+ }
843
+ }
844
+ }
845
+ ],
846
+ "values": [
847
+ {
848
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
849
+ "fontSize": 10,
850
+ "fontColorPrimary": {
851
+ "solid": {
852
+ "color": "#111827"
853
+ }
854
+ }
855
+ }
856
+ ]
857
+ }
858
+ },
859
+ "pivotTable": {
860
+ "*": {
861
+ "grid": [
862
+ {
863
+ "gridVertical": false,
864
+ "gridHorizontal": true,
865
+ "gridHorizontalColor": {
866
+ "solid": {
867
+ "color": "#E5E7EB"
868
+ }
869
+ },
870
+ "gridHorizontalWeight": 1,
871
+ "rowPadding": 6
872
+ }
873
+ ],
874
+ "columnHeaders": [
875
+ {
876
+ "fontFamily": "'Segoe UI Semibold', wf_segoe-ui_semibold, helvetica, arial, sans-serif",
877
+ "fontSize": 10,
878
+ "fontColor": {
879
+ "solid": {
880
+ "color": "#374151"
881
+ }
882
+ },
883
+ "backColor": {
884
+ "solid": {
885
+ "color": "#F9FAFB"
886
+ }
887
+ }
888
+ }
889
+ ],
890
+ "rowHeaders": [
891
+ {
892
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
893
+ "fontSize": 10,
894
+ "fontColor": {
895
+ "solid": {
896
+ "color": "#111827"
897
+ }
898
+ }
899
+ }
900
+ ],
901
+ "values": [
902
+ {
903
+ "fontFamily": "'Segoe UI', wf_segoe-ui_normal, helvetica, arial, sans-serif",
904
+ "fontSize": 10,
905
+ "fontColorPrimary": {
906
+ "solid": {
907
+ "color": "#111827"
908
+ }
909
+ }
910
+ }
911
+ ]
912
+ }
913
+ }
914
+ }
915
+ }