semiotic 3.5.4 → 3.7.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.
- package/CLAUDE.md +196 -175
- package/README.md +52 -15
- package/ai/cli.js +41 -0
- package/ai/componentMetadata.cjs +11 -2
- package/ai/dist/mcp-server.js +454 -4
- package/ai/examples.md +98 -0
- package/ai/schema.json +614 -9
- package/ai/system-prompt.md +5 -2
- package/dist/components/AccessibleNavTree.d.ts +25 -0
- package/dist/components/Annotation.d.ts +40 -14
- package/dist/components/ChartContainer.d.ts +32 -2
- package/dist/components/ai/annotationProvenance.d.ts +349 -0
- package/dist/components/ai/audienceProfile.d.ts +147 -0
- package/dist/components/ai/audiences.d.ts +31 -0
- package/dist/components/ai/chartCapabilities.d.ts +55 -0
- package/dist/components/ai/chartCapabilityTypes.d.ts +254 -0
- package/dist/components/ai/chartRoles.d.ts +27 -0
- package/dist/components/ai/conversationArc.d.ts +379 -0
- package/dist/components/ai/dataScaleProfile.d.ts +320 -0
- package/dist/components/ai/describeChart.d.ts +114 -0
- package/dist/components/ai/diffProfile.d.ts +51 -0
- package/dist/components/ai/inferIntent.d.ts +24 -0
- package/dist/components/ai/intents.d.ts +34 -0
- package/dist/components/ai/navigationTree.d.ts +45 -0
- package/dist/components/ai/profileData.d.ts +16 -0
- package/dist/components/ai/qualityFixtures.d.ts +2 -0
- package/dist/components/ai/qualityScorecard.d.ts +82 -0
- package/dist/components/ai/readerGrounding.d.ts +70 -0
- package/dist/components/ai/repairChartConfig.d.ts +73 -0
- package/dist/components/ai/streamingTypes.d.ts +64 -0
- package/dist/components/ai/suggestCharts.d.ts +109 -0
- package/dist/components/ai/suggestDashboard.d.ts +92 -0
- package/dist/components/ai/suggestStreamCharts.d.ts +34 -0
- package/dist/components/ai/suggestStretchCharts.d.ts +60 -0
- package/dist/components/ai/useChartSuggestions.d.ts +22 -0
- package/dist/components/ai/useConversationArc.d.ts +89 -0
- package/dist/components/ai/useNavigationSync.d.ts +61 -0
- package/dist/components/ai/variantDiscovery.d.ts +168 -0
- package/dist/components/charts/geo/ChoroplethMap.capability.d.ts +2 -0
- package/dist/components/charts/geo/DistanceCartogram.capability.d.ts +2 -0
- package/dist/components/charts/geo/FlowMap.capability.d.ts +2 -0
- package/dist/components/charts/geo/ProportionalSymbolMap.capability.d.ts +2 -0
- package/dist/components/charts/index.d.ts +1 -1
- package/dist/components/charts/network/ChordDiagram.capability.d.ts +2 -0
- package/dist/components/charts/network/CirclePack.capability.d.ts +2 -0
- package/dist/components/charts/network/ForceDirectedGraph.capability.d.ts +2 -0
- package/dist/components/charts/network/OrbitDiagram.capability.d.ts +2 -0
- package/dist/components/charts/network/ProcessSankey.capability.d.ts +2 -0
- package/dist/components/charts/network/SankeyDiagram.capability.d.ts +2 -0
- package/dist/components/charts/network/TreeDiagram.capability.d.ts +2 -0
- package/dist/components/charts/network/Treemap.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/BarChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/BoxPlot.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/DonutChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/DotPlot.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/FunnelChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/GaugeChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/GroupedBarChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/Histogram.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/Histogram.d.ts +4 -2
- package/dist/components/charts/ordinal/LikertChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/LikertChart.d.ts +1 -1
- package/dist/components/charts/ordinal/LikertChart.defaults.d.ts +1 -0
- package/dist/components/charts/ordinal/PieChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/RidgelinePlot.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/StackedBarChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/SwarmPlot.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/SwimlaneChart.capability.d.ts +2 -0
- package/dist/components/charts/ordinal/ViolinPlot.capability.d.ts +2 -0
- package/dist/components/charts/realtime/RealtimeHeatmap.capability.d.ts +2 -0
- package/dist/components/charts/realtime/RealtimeHeatmap.d.ts +3 -0
- package/dist/components/charts/realtime/RealtimeHistogram.capability.d.ts +2 -0
- package/dist/components/charts/realtime/RealtimeHistogram.d.ts +3 -0
- package/dist/components/charts/realtime/RealtimeLineChart.capability.d.ts +2 -0
- package/dist/components/charts/realtime/RealtimeLineChart.d.ts +3 -0
- package/dist/components/charts/realtime/RealtimeSwarmChart.capability.d.ts +2 -0
- package/dist/components/charts/realtime/RealtimeSwarmChart.d.ts +3 -0
- package/dist/components/charts/realtime/RealtimeWaterfallChart.capability.d.ts +2 -0
- package/dist/components/charts/realtime/RealtimeWaterfallChart.d.ts +3 -0
- package/dist/components/charts/realtime/TemporalHistogram.capability.d.ts +7 -0
- package/dist/components/charts/shared/annotationHierarchy.d.ts +42 -0
- package/dist/components/charts/shared/annotationResolvers.d.ts +3 -2
- package/dist/components/charts/shared/annotationRules.d.ts +16 -0
- package/dist/components/charts/shared/annotationTypes.d.ts +14 -0
- package/dist/components/charts/shared/auditAccessibility.d.ts +90 -0
- package/dist/components/charts/shared/chartSpecs.d.ts +2 -37
- package/dist/components/charts/shared/diagnoseConfig.d.ts +4 -6
- package/dist/components/charts/shared/selectionUtils.d.ts +5 -2
- package/dist/components/charts/shared/streamPropsHelpers.d.ts +2 -0
- package/dist/components/charts/shared/types.d.ts +5 -1
- package/dist/components/charts/value/BigNumber.capability.d.ts +13 -0
- package/dist/components/charts/value/BigNumber.d.ts +14 -0
- package/dist/components/charts/value/formatting.d.ts +40 -0
- package/dist/components/charts/value/thresholdSparkline.d.ts +40 -0
- package/dist/components/charts/value/types.d.ts +292 -0
- package/dist/components/charts/xy/AreaChart.capability.d.ts +10 -0
- package/dist/components/charts/xy/BubbleChart.capability.d.ts +2 -0
- package/dist/components/charts/xy/CandlestickChart.capability.d.ts +2 -0
- package/dist/components/charts/xy/ConnectedScatterplot.capability.d.ts +2 -0
- package/dist/components/charts/xy/DifferenceChart.capability.d.ts +8 -0
- package/dist/components/charts/xy/Heatmap.capability.d.ts +9 -0
- package/dist/components/charts/xy/LineChart.capability.d.ts +9 -0
- package/dist/components/charts/xy/MinimapChart.capability.d.ts +2 -0
- package/dist/components/charts/xy/MultiAxisLineChart.capability.d.ts +2 -0
- package/dist/components/charts/xy/QuadrantChart.capability.d.ts +2 -0
- package/dist/components/charts/xy/QuadrantChart.d.ts +5 -2
- package/dist/components/charts/xy/QuadrantChart.defaults.d.ts +2 -0
- package/dist/components/charts/xy/Scatterplot.capability.d.ts +2 -0
- package/dist/components/charts/xy/StackedAreaChart.capability.d.ts +2 -0
- package/dist/components/data/DataSummarizer.d.ts +45 -0
- package/dist/components/realtime/lifecycleBands.d.ts +44 -0
- package/dist/components/realtime/types.d.ts +23 -8
- package/dist/components/recipes/annotationDensity.d.ts +69 -0
- package/dist/components/recipes/annotationLayout.d.ts +93 -0
- package/dist/components/semiotic-ai.d.ts +58 -0
- package/dist/components/semiotic-realtime.d.ts +2 -0
- package/dist/components/semiotic-recipes.d.ts +4 -0
- package/dist/components/semiotic-utils.d.ts +8 -0
- package/dist/components/semiotic-value.d.ts +55 -0
- package/dist/components/semiotic-xy.d.ts +1 -1
- package/dist/components/semiotic.d.ts +8 -1
- package/dist/components/server/staticAnnotations.d.ts +2 -0
- package/dist/components/store/useChartFocus.d.ts +43 -0
- package/dist/components/store/useChartInterrogation.d.ts +141 -0
- package/dist/components/stream/AccessibleDataTable.d.ts +10 -1
- package/dist/components/stream/NetworkSVGOverlay.d.ts +11 -5
- package/dist/components/stream/OrdinalSVGOverlay.d.ts +2 -0
- package/dist/components/stream/SVGOverlay.d.ts +2 -0
- package/dist/components/stream/geoTypes.d.ts +3 -0
- package/dist/components/stream/networkTypes.d.ts +2 -0
- package/dist/components/stream/ordinalTypes.d.ts +2 -0
- package/dist/components/stream/types.d.ts +2 -0
- package/dist/geo.min.js +1 -1
- package/dist/geo.module.min.js +1 -1
- package/dist/network.min.js +1 -1
- package/dist/network.module.min.js +1 -1
- package/dist/ordinal.min.js +1 -1
- package/dist/ordinal.module.min.js +1 -1
- package/dist/realtime.min.js +1 -1
- package/dist/realtime.module.min.js +1 -1
- package/dist/semiotic-ai.d.ts +58 -0
- package/dist/semiotic-ai.min.js +1 -1
- package/dist/semiotic-ai.module.min.js +1 -1
- package/dist/semiotic-realtime.d.ts +2 -0
- package/dist/semiotic-recipes.d.ts +4 -0
- package/dist/semiotic-recipes.min.js +1 -1
- package/dist/semiotic-recipes.module.min.js +1 -1
- package/dist/semiotic-themes.min.js +1 -1
- package/dist/semiotic-themes.module.min.js +1 -1
- package/dist/semiotic-utils.d.ts +8 -0
- package/dist/semiotic-utils.min.js +1 -1
- package/dist/semiotic-utils.module.min.js +1 -1
- package/dist/semiotic-value.d.ts +55 -0
- package/dist/semiotic-value.min.js +2 -0
- package/dist/semiotic-value.module.min.js +2 -0
- package/dist/semiotic-xy.d.ts +1 -1
- package/dist/semiotic.d.ts +8 -1
- package/dist/semiotic.min.js +1 -1
- package/dist/semiotic.module.min.js +1 -1
- package/dist/server.min.js +1 -1
- package/dist/server.module.min.js +1 -1
- package/dist/xy.min.js +1 -1
- package/dist/xy.module.min.js +1 -1
- package/package.json +28 -5
package/ai/schema.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"name": "semiotic",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.7.0",
|
|
5
5
|
"description": "React data visualization library for charts, networks, and beyond",
|
|
6
6
|
"tools": [
|
|
7
7
|
{
|
|
@@ -94,6 +94,14 @@
|
|
|
94
94
|
]
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
|
+
"autoPlaceAnnotations": {
|
|
98
|
+
"type": [
|
|
99
|
+
"boolean",
|
|
100
|
+
"object"
|
|
101
|
+
],
|
|
102
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
103
|
+
"default": false
|
|
104
|
+
},
|
|
97
105
|
"axisExtent": {
|
|
98
106
|
"type": "string",
|
|
99
107
|
"enum": [
|
|
@@ -294,6 +302,14 @@
|
|
|
294
302
|
]
|
|
295
303
|
}
|
|
296
304
|
},
|
|
305
|
+
"autoPlaceAnnotations": {
|
|
306
|
+
"type": [
|
|
307
|
+
"boolean",
|
|
308
|
+
"object"
|
|
309
|
+
],
|
|
310
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
311
|
+
"default": false
|
|
312
|
+
},
|
|
297
313
|
"axisExtent": {
|
|
298
314
|
"type": "string",
|
|
299
315
|
"enum": [
|
|
@@ -493,6 +509,14 @@
|
|
|
493
509
|
]
|
|
494
510
|
}
|
|
495
511
|
},
|
|
512
|
+
"autoPlaceAnnotations": {
|
|
513
|
+
"type": [
|
|
514
|
+
"boolean",
|
|
515
|
+
"object"
|
|
516
|
+
],
|
|
517
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
518
|
+
"default": false
|
|
519
|
+
},
|
|
496
520
|
"axisExtent": {
|
|
497
521
|
"type": "string",
|
|
498
522
|
"enum": [
|
|
@@ -667,6 +691,14 @@
|
|
|
667
691
|
]
|
|
668
692
|
}
|
|
669
693
|
},
|
|
694
|
+
"autoPlaceAnnotations": {
|
|
695
|
+
"type": [
|
|
696
|
+
"boolean",
|
|
697
|
+
"object"
|
|
698
|
+
],
|
|
699
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
700
|
+
"default": false
|
|
701
|
+
},
|
|
670
702
|
"axisExtent": {
|
|
671
703
|
"type": "string",
|
|
672
704
|
"enum": [
|
|
@@ -837,6 +869,14 @@
|
|
|
837
869
|
]
|
|
838
870
|
}
|
|
839
871
|
},
|
|
872
|
+
"autoPlaceAnnotations": {
|
|
873
|
+
"type": [
|
|
874
|
+
"boolean",
|
|
875
|
+
"object"
|
|
876
|
+
],
|
|
877
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
878
|
+
"default": false
|
|
879
|
+
},
|
|
840
880
|
"axisExtent": {
|
|
841
881
|
"type": "string",
|
|
842
882
|
"enum": [
|
|
@@ -880,7 +920,29 @@
|
|
|
880
920
|
},
|
|
881
921
|
"quadrants": {
|
|
882
922
|
"type": "object",
|
|
883
|
-
"description": "
|
|
923
|
+
"description": "Optional configuration overrides for the four quadrants: { topRight, topLeft, bottomRight, bottomLeft }, each with partial { label, color, opacity }. Omitted quadrants and fields use built-in defaults.",
|
|
924
|
+
"default": {
|
|
925
|
+
"topLeft": {
|
|
926
|
+
"label": "Low / High",
|
|
927
|
+
"color": "#E9C46A",
|
|
928
|
+
"opacity": 0.08
|
|
929
|
+
},
|
|
930
|
+
"topRight": {
|
|
931
|
+
"label": "High / High",
|
|
932
|
+
"color": "#2A9D8F",
|
|
933
|
+
"opacity": 0.08
|
|
934
|
+
},
|
|
935
|
+
"bottomLeft": {
|
|
936
|
+
"label": "Low / Low",
|
|
937
|
+
"color": "#E76F51",
|
|
938
|
+
"opacity": 0.08
|
|
939
|
+
},
|
|
940
|
+
"bottomRight": {
|
|
941
|
+
"label": "High / Low",
|
|
942
|
+
"color": "#86BBD8",
|
|
943
|
+
"opacity": 0.08
|
|
944
|
+
}
|
|
945
|
+
}
|
|
884
946
|
},
|
|
885
947
|
"showQuadrantLabels": {
|
|
886
948
|
"type": "boolean",
|
|
@@ -913,9 +975,7 @@
|
|
|
913
975
|
"default": 0.8
|
|
914
976
|
}
|
|
915
977
|
},
|
|
916
|
-
"required": [
|
|
917
|
-
"quadrants"
|
|
918
|
-
]
|
|
978
|
+
"required": []
|
|
919
979
|
}
|
|
920
980
|
}
|
|
921
981
|
},
|
|
@@ -1008,6 +1068,14 @@
|
|
|
1008
1068
|
]
|
|
1009
1069
|
}
|
|
1010
1070
|
},
|
|
1071
|
+
"autoPlaceAnnotations": {
|
|
1072
|
+
"type": [
|
|
1073
|
+
"boolean",
|
|
1074
|
+
"object"
|
|
1075
|
+
],
|
|
1076
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
1077
|
+
"default": false
|
|
1078
|
+
},
|
|
1011
1079
|
"axisExtent": {
|
|
1012
1080
|
"type": "string",
|
|
1013
1081
|
"enum": [
|
|
@@ -1144,6 +1212,14 @@
|
|
|
1144
1212
|
]
|
|
1145
1213
|
}
|
|
1146
1214
|
},
|
|
1215
|
+
"autoPlaceAnnotations": {
|
|
1216
|
+
"type": [
|
|
1217
|
+
"boolean",
|
|
1218
|
+
"object"
|
|
1219
|
+
],
|
|
1220
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
1221
|
+
"default": false
|
|
1222
|
+
},
|
|
1147
1223
|
"axisExtent": {
|
|
1148
1224
|
"type": "string",
|
|
1149
1225
|
"enum": [
|
|
@@ -1309,6 +1385,14 @@
|
|
|
1309
1385
|
]
|
|
1310
1386
|
}
|
|
1311
1387
|
},
|
|
1388
|
+
"autoPlaceAnnotations": {
|
|
1389
|
+
"type": [
|
|
1390
|
+
"boolean",
|
|
1391
|
+
"object"
|
|
1392
|
+
],
|
|
1393
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
1394
|
+
"default": false
|
|
1395
|
+
},
|
|
1312
1396
|
"axisExtent": {
|
|
1313
1397
|
"type": "string",
|
|
1314
1398
|
"enum": [
|
|
@@ -1477,6 +1561,14 @@
|
|
|
1477
1561
|
]
|
|
1478
1562
|
}
|
|
1479
1563
|
},
|
|
1564
|
+
"autoPlaceAnnotations": {
|
|
1565
|
+
"type": [
|
|
1566
|
+
"boolean",
|
|
1567
|
+
"object"
|
|
1568
|
+
],
|
|
1569
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
1570
|
+
"default": false
|
|
1571
|
+
},
|
|
1480
1572
|
"axisExtent": {
|
|
1481
1573
|
"type": "string",
|
|
1482
1574
|
"enum": [
|
|
@@ -1642,6 +1734,14 @@
|
|
|
1642
1734
|
]
|
|
1643
1735
|
}
|
|
1644
1736
|
},
|
|
1737
|
+
"autoPlaceAnnotations": {
|
|
1738
|
+
"type": [
|
|
1739
|
+
"boolean",
|
|
1740
|
+
"object"
|
|
1741
|
+
],
|
|
1742
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
1743
|
+
"default": false
|
|
1744
|
+
},
|
|
1645
1745
|
"axisExtent": {
|
|
1646
1746
|
"type": "string",
|
|
1647
1747
|
"enum": [
|
|
@@ -1813,6 +1913,14 @@
|
|
|
1813
1913
|
]
|
|
1814
1914
|
}
|
|
1815
1915
|
},
|
|
1916
|
+
"autoPlaceAnnotations": {
|
|
1917
|
+
"type": [
|
|
1918
|
+
"boolean",
|
|
1919
|
+
"object"
|
|
1920
|
+
],
|
|
1921
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
1922
|
+
"default": false
|
|
1923
|
+
},
|
|
1816
1924
|
"axisExtent": {
|
|
1817
1925
|
"type": "string",
|
|
1818
1926
|
"enum": [
|
|
@@ -1978,6 +2086,14 @@
|
|
|
1978
2086
|
]
|
|
1979
2087
|
}
|
|
1980
2088
|
},
|
|
2089
|
+
"autoPlaceAnnotations": {
|
|
2090
|
+
"type": [
|
|
2091
|
+
"boolean",
|
|
2092
|
+
"object"
|
|
2093
|
+
],
|
|
2094
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
2095
|
+
"default": false
|
|
2096
|
+
},
|
|
1981
2097
|
"axisExtent": {
|
|
1982
2098
|
"type": "string",
|
|
1983
2099
|
"enum": [
|
|
@@ -2136,6 +2252,14 @@
|
|
|
2136
2252
|
]
|
|
2137
2253
|
}
|
|
2138
2254
|
},
|
|
2255
|
+
"autoPlaceAnnotations": {
|
|
2256
|
+
"type": [
|
|
2257
|
+
"boolean",
|
|
2258
|
+
"object"
|
|
2259
|
+
],
|
|
2260
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
2261
|
+
"default": false
|
|
2262
|
+
},
|
|
2139
2263
|
"axisExtent": {
|
|
2140
2264
|
"type": "string",
|
|
2141
2265
|
"enum": [
|
|
@@ -2160,7 +2284,14 @@
|
|
|
2160
2284
|
},
|
|
2161
2285
|
"levels": {
|
|
2162
2286
|
"type": "array",
|
|
2163
|
-
"description": "Ordered response labels, most negative to most positive
|
|
2287
|
+
"description": "Ordered response labels, most negative to most positive. Defaults to a 5-point Very Low to Very High scale. Odd count = center is neutral.",
|
|
2288
|
+
"default": [
|
|
2289
|
+
"Very Low",
|
|
2290
|
+
"Low",
|
|
2291
|
+
"Neutral",
|
|
2292
|
+
"High",
|
|
2293
|
+
"Very High"
|
|
2294
|
+
]
|
|
2164
2295
|
},
|
|
2165
2296
|
"categoryAccessor": {
|
|
2166
2297
|
"type": [
|
|
@@ -2206,9 +2337,7 @@
|
|
|
2206
2337
|
"default": 20
|
|
2207
2338
|
}
|
|
2208
2339
|
},
|
|
2209
|
-
"required": [
|
|
2210
|
-
"levels"
|
|
2211
|
-
]
|
|
2340
|
+
"required": []
|
|
2212
2341
|
}
|
|
2213
2342
|
}
|
|
2214
2343
|
},
|
|
@@ -2303,6 +2432,14 @@
|
|
|
2303
2432
|
]
|
|
2304
2433
|
}
|
|
2305
2434
|
},
|
|
2435
|
+
"autoPlaceAnnotations": {
|
|
2436
|
+
"type": [
|
|
2437
|
+
"boolean",
|
|
2438
|
+
"object"
|
|
2439
|
+
],
|
|
2440
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
2441
|
+
"default": false
|
|
2442
|
+
},
|
|
2306
2443
|
"axisExtent": {
|
|
2307
2444
|
"type": "string",
|
|
2308
2445
|
"enum": [
|
|
@@ -2456,6 +2593,14 @@
|
|
|
2456
2593
|
]
|
|
2457
2594
|
}
|
|
2458
2595
|
},
|
|
2596
|
+
"autoPlaceAnnotations": {
|
|
2597
|
+
"type": [
|
|
2598
|
+
"boolean",
|
|
2599
|
+
"object"
|
|
2600
|
+
],
|
|
2601
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
2602
|
+
"default": false
|
|
2603
|
+
},
|
|
2459
2604
|
"axisExtent": {
|
|
2460
2605
|
"type": "string",
|
|
2461
2606
|
"enum": [
|
|
@@ -2623,6 +2768,14 @@
|
|
|
2623
2768
|
]
|
|
2624
2769
|
}
|
|
2625
2770
|
},
|
|
2771
|
+
"autoPlaceAnnotations": {
|
|
2772
|
+
"type": [
|
|
2773
|
+
"boolean",
|
|
2774
|
+
"object"
|
|
2775
|
+
],
|
|
2776
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
2777
|
+
"default": false
|
|
2778
|
+
},
|
|
2626
2779
|
"axisExtent": {
|
|
2627
2780
|
"type": "string",
|
|
2628
2781
|
"enum": [
|
|
@@ -2777,6 +2930,14 @@
|
|
|
2777
2930
|
]
|
|
2778
2931
|
}
|
|
2779
2932
|
},
|
|
2933
|
+
"autoPlaceAnnotations": {
|
|
2934
|
+
"type": [
|
|
2935
|
+
"boolean",
|
|
2936
|
+
"object"
|
|
2937
|
+
],
|
|
2938
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
2939
|
+
"default": false
|
|
2940
|
+
},
|
|
2780
2941
|
"axisExtent": {
|
|
2781
2942
|
"type": "string",
|
|
2782
2943
|
"enum": [
|
|
@@ -2924,6 +3085,14 @@
|
|
|
2924
3085
|
]
|
|
2925
3086
|
}
|
|
2926
3087
|
},
|
|
3088
|
+
"autoPlaceAnnotations": {
|
|
3089
|
+
"type": [
|
|
3090
|
+
"boolean",
|
|
3091
|
+
"object"
|
|
3092
|
+
],
|
|
3093
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
3094
|
+
"default": false
|
|
3095
|
+
},
|
|
2927
3096
|
"axisExtent": {
|
|
2928
3097
|
"type": "string",
|
|
2929
3098
|
"enum": [
|
|
@@ -3084,6 +3253,14 @@
|
|
|
3084
3253
|
]
|
|
3085
3254
|
}
|
|
3086
3255
|
},
|
|
3256
|
+
"autoPlaceAnnotations": {
|
|
3257
|
+
"type": [
|
|
3258
|
+
"boolean",
|
|
3259
|
+
"object"
|
|
3260
|
+
],
|
|
3261
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
3262
|
+
"default": false
|
|
3263
|
+
},
|
|
3087
3264
|
"axisExtent": {
|
|
3088
3265
|
"type": "string",
|
|
3089
3266
|
"enum": [
|
|
@@ -3226,6 +3403,14 @@
|
|
|
3226
3403
|
]
|
|
3227
3404
|
}
|
|
3228
3405
|
},
|
|
3406
|
+
"autoPlaceAnnotations": {
|
|
3407
|
+
"type": [
|
|
3408
|
+
"boolean",
|
|
3409
|
+
"object"
|
|
3410
|
+
],
|
|
3411
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
3412
|
+
"default": false
|
|
3413
|
+
},
|
|
3229
3414
|
"axisExtent": {
|
|
3230
3415
|
"type": "string",
|
|
3231
3416
|
"enum": [
|
|
@@ -3392,6 +3577,14 @@
|
|
|
3392
3577
|
]
|
|
3393
3578
|
}
|
|
3394
3579
|
},
|
|
3580
|
+
"autoPlaceAnnotations": {
|
|
3581
|
+
"type": [
|
|
3582
|
+
"boolean",
|
|
3583
|
+
"object"
|
|
3584
|
+
],
|
|
3585
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
3586
|
+
"default": false
|
|
3587
|
+
},
|
|
3395
3588
|
"axisExtent": {
|
|
3396
3589
|
"type": "string",
|
|
3397
3590
|
"enum": [
|
|
@@ -3521,6 +3714,14 @@
|
|
|
3521
3714
|
]
|
|
3522
3715
|
}
|
|
3523
3716
|
},
|
|
3717
|
+
"autoPlaceAnnotations": {
|
|
3718
|
+
"type": [
|
|
3719
|
+
"boolean",
|
|
3720
|
+
"object"
|
|
3721
|
+
],
|
|
3722
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
3723
|
+
"default": false
|
|
3724
|
+
},
|
|
3524
3725
|
"axisExtent": {
|
|
3525
3726
|
"type": "string",
|
|
3526
3727
|
"enum": [
|
|
@@ -3662,6 +3863,14 @@
|
|
|
3662
3863
|
]
|
|
3663
3864
|
}
|
|
3664
3865
|
},
|
|
3866
|
+
"autoPlaceAnnotations": {
|
|
3867
|
+
"type": [
|
|
3868
|
+
"boolean",
|
|
3869
|
+
"object"
|
|
3870
|
+
],
|
|
3871
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
3872
|
+
"default": false
|
|
3873
|
+
},
|
|
3665
3874
|
"axisExtent": {
|
|
3666
3875
|
"type": "string",
|
|
3667
3876
|
"enum": [
|
|
@@ -3825,6 +4034,14 @@
|
|
|
3825
4034
|
]
|
|
3826
4035
|
}
|
|
3827
4036
|
},
|
|
4037
|
+
"autoPlaceAnnotations": {
|
|
4038
|
+
"type": [
|
|
4039
|
+
"boolean",
|
|
4040
|
+
"object"
|
|
4041
|
+
],
|
|
4042
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
4043
|
+
"default": false
|
|
4044
|
+
},
|
|
3828
4045
|
"axisExtent": {
|
|
3829
4046
|
"type": "string",
|
|
3830
4047
|
"enum": [
|
|
@@ -4017,6 +4234,14 @@
|
|
|
4017
4234
|
]
|
|
4018
4235
|
}
|
|
4019
4236
|
},
|
|
4237
|
+
"autoPlaceAnnotations": {
|
|
4238
|
+
"type": [
|
|
4239
|
+
"boolean",
|
|
4240
|
+
"object"
|
|
4241
|
+
],
|
|
4242
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
4243
|
+
"default": false
|
|
4244
|
+
},
|
|
4020
4245
|
"axisExtent": {
|
|
4021
4246
|
"type": "string",
|
|
4022
4247
|
"enum": [
|
|
@@ -4214,6 +4439,14 @@
|
|
|
4214
4439
|
]
|
|
4215
4440
|
}
|
|
4216
4441
|
},
|
|
4442
|
+
"autoPlaceAnnotations": {
|
|
4443
|
+
"type": [
|
|
4444
|
+
"boolean",
|
|
4445
|
+
"object"
|
|
4446
|
+
],
|
|
4447
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
4448
|
+
"default": false
|
|
4449
|
+
},
|
|
4217
4450
|
"axisExtent": {
|
|
4218
4451
|
"type": "string",
|
|
4219
4452
|
"enum": [
|
|
@@ -4389,6 +4622,14 @@
|
|
|
4389
4622
|
]
|
|
4390
4623
|
}
|
|
4391
4624
|
},
|
|
4625
|
+
"autoPlaceAnnotations": {
|
|
4626
|
+
"type": [
|
|
4627
|
+
"boolean",
|
|
4628
|
+
"object"
|
|
4629
|
+
],
|
|
4630
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
4631
|
+
"default": false
|
|
4632
|
+
},
|
|
4392
4633
|
"axisExtent": {
|
|
4393
4634
|
"type": "string",
|
|
4394
4635
|
"enum": [
|
|
@@ -4568,6 +4809,14 @@
|
|
|
4568
4809
|
]
|
|
4569
4810
|
}
|
|
4570
4811
|
},
|
|
4812
|
+
"autoPlaceAnnotations": {
|
|
4813
|
+
"type": [
|
|
4814
|
+
"boolean",
|
|
4815
|
+
"object"
|
|
4816
|
+
],
|
|
4817
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
4818
|
+
"default": false
|
|
4819
|
+
},
|
|
4571
4820
|
"axisExtent": {
|
|
4572
4821
|
"type": "string",
|
|
4573
4822
|
"enum": [
|
|
@@ -4713,6 +4962,14 @@
|
|
|
4713
4962
|
]
|
|
4714
4963
|
}
|
|
4715
4964
|
},
|
|
4965
|
+
"autoPlaceAnnotations": {
|
|
4966
|
+
"type": [
|
|
4967
|
+
"boolean",
|
|
4968
|
+
"object"
|
|
4969
|
+
],
|
|
4970
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
4971
|
+
"default": false
|
|
4972
|
+
},
|
|
4716
4973
|
"axisExtent": {
|
|
4717
4974
|
"type": "string",
|
|
4718
4975
|
"enum": [
|
|
@@ -4862,6 +5119,14 @@
|
|
|
4862
5119
|
]
|
|
4863
5120
|
}
|
|
4864
5121
|
},
|
|
5122
|
+
"autoPlaceAnnotations": {
|
|
5123
|
+
"type": [
|
|
5124
|
+
"boolean",
|
|
5125
|
+
"object"
|
|
5126
|
+
],
|
|
5127
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
5128
|
+
"default": false
|
|
5129
|
+
},
|
|
4865
5130
|
"axisExtent": {
|
|
4866
5131
|
"type": "string",
|
|
4867
5132
|
"enum": [
|
|
@@ -5074,6 +5339,13 @@
|
|
|
5074
5339
|
]
|
|
5075
5340
|
}
|
|
5076
5341
|
},
|
|
5342
|
+
"autoPlaceAnnotations": {
|
|
5343
|
+
"type": [
|
|
5344
|
+
"boolean",
|
|
5345
|
+
"object"
|
|
5346
|
+
],
|
|
5347
|
+
"description": "Opt-in annotation placement pass for note-like annotations without manual offsets."
|
|
5348
|
+
},
|
|
5077
5349
|
"decay": {
|
|
5078
5350
|
"type": "object",
|
|
5079
5351
|
"description": "Decay config: { type, halfLife, minOpacity }"
|
|
@@ -5223,6 +5495,13 @@
|
|
|
5223
5495
|
]
|
|
5224
5496
|
}
|
|
5225
5497
|
},
|
|
5498
|
+
"autoPlaceAnnotations": {
|
|
5499
|
+
"type": [
|
|
5500
|
+
"boolean",
|
|
5501
|
+
"object"
|
|
5502
|
+
],
|
|
5503
|
+
"description": "Opt-in annotation placement pass for note-like annotations without manual offsets."
|
|
5504
|
+
},
|
|
5226
5505
|
"decay": {
|
|
5227
5506
|
"type": "object",
|
|
5228
5507
|
"description": "Decay config: { type, halfLife, minOpacity }"
|
|
@@ -5420,6 +5699,13 @@
|
|
|
5420
5699
|
]
|
|
5421
5700
|
}
|
|
5422
5701
|
},
|
|
5702
|
+
"autoPlaceAnnotations": {
|
|
5703
|
+
"type": [
|
|
5704
|
+
"boolean",
|
|
5705
|
+
"object"
|
|
5706
|
+
],
|
|
5707
|
+
"description": "Opt-in annotation placement pass for note-like annotations without manual offsets."
|
|
5708
|
+
},
|
|
5423
5709
|
"decay": {
|
|
5424
5710
|
"type": "object",
|
|
5425
5711
|
"description": "Decay config: { type, halfLife, minOpacity }"
|
|
@@ -5584,6 +5870,13 @@
|
|
|
5584
5870
|
]
|
|
5585
5871
|
}
|
|
5586
5872
|
},
|
|
5873
|
+
"autoPlaceAnnotations": {
|
|
5874
|
+
"type": [
|
|
5875
|
+
"boolean",
|
|
5876
|
+
"object"
|
|
5877
|
+
],
|
|
5878
|
+
"description": "Opt-in annotation placement pass for note-like annotations without manual offsets."
|
|
5879
|
+
},
|
|
5587
5880
|
"decay": {
|
|
5588
5881
|
"type": "object",
|
|
5589
5882
|
"description": "Decay config: { type, halfLife, minOpacity }"
|
|
@@ -5745,6 +6038,13 @@
|
|
|
5745
6038
|
]
|
|
5746
6039
|
}
|
|
5747
6040
|
},
|
|
6041
|
+
"autoPlaceAnnotations": {
|
|
6042
|
+
"type": [
|
|
6043
|
+
"boolean",
|
|
6044
|
+
"object"
|
|
6045
|
+
],
|
|
6046
|
+
"description": "Opt-in annotation placement pass for note-like annotations without manual offsets."
|
|
6047
|
+
},
|
|
5748
6048
|
"decay": {
|
|
5749
6049
|
"type": "object",
|
|
5750
6050
|
"description": "Decay config: { type, halfLife, minOpacity }"
|
|
@@ -5866,6 +6166,14 @@
|
|
|
5866
6166
|
]
|
|
5867
6167
|
}
|
|
5868
6168
|
},
|
|
6169
|
+
"autoPlaceAnnotations": {
|
|
6170
|
+
"type": [
|
|
6171
|
+
"boolean",
|
|
6172
|
+
"object"
|
|
6173
|
+
],
|
|
6174
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
6175
|
+
"default": false
|
|
6176
|
+
},
|
|
5869
6177
|
"axisExtent": {
|
|
5870
6178
|
"type": "string",
|
|
5871
6179
|
"enum": [
|
|
@@ -6039,6 +6347,14 @@
|
|
|
6039
6347
|
]
|
|
6040
6348
|
}
|
|
6041
6349
|
},
|
|
6350
|
+
"autoPlaceAnnotations": {
|
|
6351
|
+
"type": [
|
|
6352
|
+
"boolean",
|
|
6353
|
+
"object"
|
|
6354
|
+
],
|
|
6355
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
6356
|
+
"default": false
|
|
6357
|
+
},
|
|
6042
6358
|
"axisExtent": {
|
|
6043
6359
|
"type": "string",
|
|
6044
6360
|
"enum": [
|
|
@@ -6230,6 +6546,14 @@
|
|
|
6230
6546
|
]
|
|
6231
6547
|
}
|
|
6232
6548
|
},
|
|
6549
|
+
"autoPlaceAnnotations": {
|
|
6550
|
+
"type": [
|
|
6551
|
+
"boolean",
|
|
6552
|
+
"object"
|
|
6553
|
+
],
|
|
6554
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
6555
|
+
"default": false
|
|
6556
|
+
},
|
|
6233
6557
|
"axisExtent": {
|
|
6234
6558
|
"type": "string",
|
|
6235
6559
|
"enum": [
|
|
@@ -6343,6 +6667,14 @@
|
|
|
6343
6667
|
]
|
|
6344
6668
|
}
|
|
6345
6669
|
},
|
|
6670
|
+
"autoPlaceAnnotations": {
|
|
6671
|
+
"type": [
|
|
6672
|
+
"boolean",
|
|
6673
|
+
"object"
|
|
6674
|
+
],
|
|
6675
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
6676
|
+
"default": false
|
|
6677
|
+
},
|
|
6346
6678
|
"axisExtent": {
|
|
6347
6679
|
"type": "string",
|
|
6348
6680
|
"enum": [
|
|
@@ -6451,6 +6783,14 @@
|
|
|
6451
6783
|
]
|
|
6452
6784
|
}
|
|
6453
6785
|
},
|
|
6786
|
+
"autoPlaceAnnotations": {
|
|
6787
|
+
"type": [
|
|
6788
|
+
"boolean",
|
|
6789
|
+
"object"
|
|
6790
|
+
],
|
|
6791
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
6792
|
+
"default": false
|
|
6793
|
+
},
|
|
6454
6794
|
"axisExtent": {
|
|
6455
6795
|
"type": "string",
|
|
6456
6796
|
"enum": [
|
|
@@ -6574,6 +6914,14 @@
|
|
|
6574
6914
|
]
|
|
6575
6915
|
}
|
|
6576
6916
|
},
|
|
6917
|
+
"autoPlaceAnnotations": {
|
|
6918
|
+
"type": [
|
|
6919
|
+
"boolean",
|
|
6920
|
+
"object"
|
|
6921
|
+
],
|
|
6922
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
6923
|
+
"default": false
|
|
6924
|
+
},
|
|
6577
6925
|
"axisExtent": {
|
|
6578
6926
|
"type": "string",
|
|
6579
6927
|
"enum": [
|
|
@@ -6709,6 +7057,14 @@
|
|
|
6709
7057
|
]
|
|
6710
7058
|
}
|
|
6711
7059
|
},
|
|
7060
|
+
"autoPlaceAnnotations": {
|
|
7061
|
+
"type": [
|
|
7062
|
+
"boolean",
|
|
7063
|
+
"object"
|
|
7064
|
+
],
|
|
7065
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
7066
|
+
"default": false
|
|
7067
|
+
},
|
|
6712
7068
|
"axisExtent": {
|
|
6713
7069
|
"type": "string",
|
|
6714
7070
|
"enum": [
|
|
@@ -6833,6 +7189,14 @@
|
|
|
6833
7189
|
]
|
|
6834
7190
|
}
|
|
6835
7191
|
},
|
|
7192
|
+
"autoPlaceAnnotations": {
|
|
7193
|
+
"type": [
|
|
7194
|
+
"boolean",
|
|
7195
|
+
"object"
|
|
7196
|
+
],
|
|
7197
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
7198
|
+
"default": false
|
|
7199
|
+
},
|
|
6836
7200
|
"axisExtent": {
|
|
6837
7201
|
"type": "string",
|
|
6838
7202
|
"enum": [
|
|
@@ -6951,6 +7315,14 @@
|
|
|
6951
7315
|
]
|
|
6952
7316
|
}
|
|
6953
7317
|
},
|
|
7318
|
+
"autoPlaceAnnotations": {
|
|
7319
|
+
"type": [
|
|
7320
|
+
"boolean",
|
|
7321
|
+
"object"
|
|
7322
|
+
],
|
|
7323
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
7324
|
+
"default": false
|
|
7325
|
+
},
|
|
6954
7326
|
"axisExtent": {
|
|
6955
7327
|
"type": "string",
|
|
6956
7328
|
"enum": [
|
|
@@ -7204,6 +7576,14 @@
|
|
|
7204
7576
|
]
|
|
7205
7577
|
}
|
|
7206
7578
|
},
|
|
7579
|
+
"autoPlaceAnnotations": {
|
|
7580
|
+
"type": [
|
|
7581
|
+
"boolean",
|
|
7582
|
+
"object"
|
|
7583
|
+
],
|
|
7584
|
+
"description": "Opt-in annotation placement pass. Chooses dx/dy for note-like annotations without manual offsets and avoids note/mark/edge overlaps where possible.",
|
|
7585
|
+
"default": false
|
|
7586
|
+
},
|
|
7207
7587
|
"axisExtent": {
|
|
7208
7588
|
"type": "string",
|
|
7209
7589
|
"enum": [
|
|
@@ -7464,6 +7844,13 @@
|
|
|
7464
7844
|
]
|
|
7465
7845
|
}
|
|
7466
7846
|
},
|
|
7847
|
+
"autoPlaceAnnotations": {
|
|
7848
|
+
"type": [
|
|
7849
|
+
"boolean",
|
|
7850
|
+
"object"
|
|
7851
|
+
],
|
|
7852
|
+
"description": "Opt-in annotation placement pass for note-like annotations without manual offsets."
|
|
7853
|
+
},
|
|
7467
7854
|
"fill": {
|
|
7468
7855
|
"type": "string"
|
|
7469
7856
|
},
|
|
@@ -7505,6 +7892,224 @@
|
|
|
7505
7892
|
]
|
|
7506
7893
|
}
|
|
7507
7894
|
}
|
|
7895
|
+
},
|
|
7896
|
+
{
|
|
7897
|
+
"type": "function",
|
|
7898
|
+
"function": {
|
|
7899
|
+
"name": "BigNumber",
|
|
7900
|
+
"description": "Focal-value display: one number, optionally with comparison / target / threshold zones (mapped to semantic theme roles) / four layout modes (tile / presentation / inline / thumbnail). Ships with NO chart-family dependency — embed your own Semiotic chart via two slots: `trendSlot` for wide / rectangular charts (LineChart, AreaChart) under the value, and `chartSlot` for square charts (DonutChart, PieChart, Scatterplot, Treemap) beside the value. The slot context exposes the resolved threshold colour + sentiment + push buffer so embedded charts can theme-link. Forward-looking POC for a future SingleValueFrame.",
|
|
7901
|
+
"parameters": {
|
|
7902
|
+
"type": "object",
|
|
7903
|
+
"properties": {
|
|
7904
|
+
"width": {
|
|
7905
|
+
"type": [
|
|
7906
|
+
"number",
|
|
7907
|
+
"string"
|
|
7908
|
+
],
|
|
7909
|
+
"description": "Reserved width in pixels (or any CSS length). Mode-keyed defaults: 280 (tile) / 540 (presentation) / unset (inline / thumbnail).",
|
|
7910
|
+
"default": 280
|
|
7911
|
+
},
|
|
7912
|
+
"height": {
|
|
7913
|
+
"type": [
|
|
7914
|
+
"number",
|
|
7915
|
+
"string"
|
|
7916
|
+
],
|
|
7917
|
+
"description": "Reserved height in pixels (or any CSS length). Mode-keyed defaults: 184 (tile) / 320 (presentation) / unset (inline / thumbnail).",
|
|
7918
|
+
"default": 184
|
|
7919
|
+
},
|
|
7920
|
+
"className": {
|
|
7921
|
+
"type": "string",
|
|
7922
|
+
"description": "Composed with the BEM root class on the outer container."
|
|
7923
|
+
},
|
|
7924
|
+
"value": {
|
|
7925
|
+
"type": "number",
|
|
7926
|
+
"description": "The focal number this card exists to display"
|
|
7927
|
+
},
|
|
7928
|
+
"label": {
|
|
7929
|
+
"type": "string",
|
|
7930
|
+
"description": "Top-line descriptor rendered above the value"
|
|
7931
|
+
},
|
|
7932
|
+
"caption": {
|
|
7933
|
+
"type": "string",
|
|
7934
|
+
"description": "Secondary descriptor, smaller, below the label"
|
|
7935
|
+
},
|
|
7936
|
+
"format": {
|
|
7937
|
+
"type": [
|
|
7938
|
+
"string",
|
|
7939
|
+
"function"
|
|
7940
|
+
],
|
|
7941
|
+
"enum": [
|
|
7942
|
+
"number",
|
|
7943
|
+
"currency",
|
|
7944
|
+
"percent",
|
|
7945
|
+
"compact",
|
|
7946
|
+
"duration"
|
|
7947
|
+
],
|
|
7948
|
+
"description": "Number-format shortcut or custom (value) => string",
|
|
7949
|
+
"default": "number"
|
|
7950
|
+
},
|
|
7951
|
+
"locale": {
|
|
7952
|
+
"type": "string",
|
|
7953
|
+
"description": "BCP-47 locale for Intl.NumberFormat",
|
|
7954
|
+
"default": "en-US"
|
|
7955
|
+
},
|
|
7956
|
+
"currency": {
|
|
7957
|
+
"type": "string",
|
|
7958
|
+
"description": "ISO 4217 code for format: \"currency\"",
|
|
7959
|
+
"default": "USD"
|
|
7960
|
+
},
|
|
7961
|
+
"precision": {
|
|
7962
|
+
"type": "number",
|
|
7963
|
+
"description": "maximumFractionDigits passed to Intl.NumberFormat"
|
|
7964
|
+
},
|
|
7965
|
+
"prefix": {
|
|
7966
|
+
"type": "string",
|
|
7967
|
+
"description": "Prepend to formatted value"
|
|
7968
|
+
},
|
|
7969
|
+
"suffix": {
|
|
7970
|
+
"type": "string",
|
|
7971
|
+
"description": "Append to formatted value"
|
|
7972
|
+
},
|
|
7973
|
+
"unit": {
|
|
7974
|
+
"type": "string",
|
|
7975
|
+
"description": "Unit label rendered after the value as small text (e.g. \"USD\", \"req/s\")"
|
|
7976
|
+
},
|
|
7977
|
+
"comparison": {
|
|
7978
|
+
"type": "object",
|
|
7979
|
+
"description": "Comparison value: { value, label?, format?, direction? }. Drives the delta when explicit delta is not set."
|
|
7980
|
+
},
|
|
7981
|
+
"target": {
|
|
7982
|
+
"type": "object",
|
|
7983
|
+
"description": "Target value: { value, label?, format?, direction? }. Renders \"X% of target\" next to the comparison row."
|
|
7984
|
+
},
|
|
7985
|
+
"delta": {
|
|
7986
|
+
"type": "number",
|
|
7987
|
+
"description": "Explicit delta override; bypasses comparison-derived subtraction"
|
|
7988
|
+
},
|
|
7989
|
+
"deltaFormat": {
|
|
7990
|
+
"type": [
|
|
7991
|
+
"string",
|
|
7992
|
+
"function"
|
|
7993
|
+
],
|
|
7994
|
+
"enum": [
|
|
7995
|
+
"number",
|
|
7996
|
+
"currency",
|
|
7997
|
+
"percent",
|
|
7998
|
+
"compact",
|
|
7999
|
+
"duration"
|
|
8000
|
+
],
|
|
8001
|
+
"description": "Format the delta; defaults to format"
|
|
8002
|
+
},
|
|
8003
|
+
"showDeltaPercent": {
|
|
8004
|
+
"type": "boolean",
|
|
8005
|
+
"description": "Render percent change next to absolute delta when a comparison is present",
|
|
8006
|
+
"default": true
|
|
8007
|
+
},
|
|
8008
|
+
"direction": {
|
|
8009
|
+
"type": "string",
|
|
8010
|
+
"enum": [
|
|
8011
|
+
"higher-is-better",
|
|
8012
|
+
"lower-is-better",
|
|
8013
|
+
"neutral"
|
|
8014
|
+
],
|
|
8015
|
+
"description": "Default direction used to infer sentiment from the sign of the delta",
|
|
8016
|
+
"default": "higher-is-better"
|
|
8017
|
+
},
|
|
8018
|
+
"sentiment": {
|
|
8019
|
+
"type": "string",
|
|
8020
|
+
"enum": [
|
|
8021
|
+
"auto",
|
|
8022
|
+
"positive",
|
|
8023
|
+
"negative",
|
|
8024
|
+
"neutral"
|
|
8025
|
+
],
|
|
8026
|
+
"description": "Force sentiment; \"auto\" infers from direction + delta sign",
|
|
8027
|
+
"default": "auto"
|
|
8028
|
+
},
|
|
8029
|
+
"thresholds": {
|
|
8030
|
+
"type": "array",
|
|
8031
|
+
"description": "Threshold zones: [{ at, level, color?, label? }] ordered ascending by `at`. Resolved by highest `at` ≤ value. `level` maps to a semantic CSS variable (--semiotic-{success|warning|danger|info})."
|
|
8032
|
+
},
|
|
8033
|
+
"chartSize": {
|
|
8034
|
+
"type": "number",
|
|
8035
|
+
"description": "Pixel size reserved for chartSlot (rendered as a square). Mode-keyed defaults: 44 (tile) / 80 (presentation) — sparkline scale; pass a larger value for a hero anchor."
|
|
8036
|
+
},
|
|
8037
|
+
"windowSize": {
|
|
8038
|
+
"type": "number",
|
|
8039
|
+
"description": "Cap on the trend buffer when fed via push API",
|
|
8040
|
+
"default": 60
|
|
8041
|
+
},
|
|
8042
|
+
"mode": {
|
|
8043
|
+
"type": "string",
|
|
8044
|
+
"enum": [
|
|
8045
|
+
"tile",
|
|
8046
|
+
"presentation",
|
|
8047
|
+
"inline",
|
|
8048
|
+
"thumbnail"
|
|
8049
|
+
],
|
|
8050
|
+
"description": "Layout mode — chrome envelope around the value",
|
|
8051
|
+
"default": "tile"
|
|
8052
|
+
},
|
|
8053
|
+
"align": {
|
|
8054
|
+
"type": "string",
|
|
8055
|
+
"enum": [
|
|
8056
|
+
"start",
|
|
8057
|
+
"center",
|
|
8058
|
+
"end"
|
|
8059
|
+
],
|
|
8060
|
+
"description": "Horizontal alignment within the card"
|
|
8061
|
+
},
|
|
8062
|
+
"padding": {
|
|
8063
|
+
"type": [
|
|
8064
|
+
"number",
|
|
8065
|
+
"object"
|
|
8066
|
+
],
|
|
8067
|
+
"description": "Inner padding: number for uniform, or { top, right, bottom, left }"
|
|
8068
|
+
},
|
|
8069
|
+
"emphasis": {
|
|
8070
|
+
"type": "string",
|
|
8071
|
+
"enum": [
|
|
8072
|
+
"primary",
|
|
8073
|
+
"secondary"
|
|
8074
|
+
],
|
|
8075
|
+
"description": "Visual emphasis hint; \"primary\" spans two ChartGrid columns"
|
|
8076
|
+
},
|
|
8077
|
+
"color": {
|
|
8078
|
+
"type": "string",
|
|
8079
|
+
"description": "Override the value text colour. CSS variables work."
|
|
8080
|
+
},
|
|
8081
|
+
"background": {
|
|
8082
|
+
"type": "string",
|
|
8083
|
+
"description": "Card background. CSS variables work."
|
|
8084
|
+
},
|
|
8085
|
+
"borderColor": {
|
|
8086
|
+
"type": "string"
|
|
8087
|
+
},
|
|
8088
|
+
"borderRadius": {
|
|
8089
|
+
"type": [
|
|
8090
|
+
"number",
|
|
8091
|
+
"string"
|
|
8092
|
+
]
|
|
8093
|
+
},
|
|
8094
|
+
"animate": {
|
|
8095
|
+
"type": [
|
|
8096
|
+
"boolean",
|
|
8097
|
+
"object"
|
|
8098
|
+
],
|
|
8099
|
+
"description": "Tween between value changes. true = 300ms ease-out + intro. Object: { duration?, easing?: \"linear\"|\"ease-out\", intro? }"
|
|
8100
|
+
},
|
|
8101
|
+
"stalenessThreshold": {
|
|
8102
|
+
"type": "number",
|
|
8103
|
+
"description": "Mark stale (dimmed) when no push occurs for this many ms"
|
|
8104
|
+
},
|
|
8105
|
+
"staleLabel": {
|
|
8106
|
+
"type": "string",
|
|
8107
|
+
"default": "stale"
|
|
8108
|
+
}
|
|
8109
|
+
},
|
|
8110
|
+
"required": []
|
|
8111
|
+
}
|
|
8112
|
+
}
|
|
7508
8113
|
}
|
|
7509
8114
|
]
|
|
7510
8115
|
}
|