semiotic 3.4.0 → 3.4.1

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 (187) hide show
  1. package/CLAUDE.md +16 -3
  2. package/ai/schema.json +42 -1
  3. package/ai/system-prompt.md +4 -0
  4. package/dist/components/Annotation.d.ts +42 -2
  5. package/dist/components/CategoryColors.d.ts +1 -1
  6. package/dist/components/ChartGrid.d.ts +1 -1
  7. package/dist/components/ContextLayout.d.ts +1 -1
  8. package/dist/components/DataSummaryContext.d.ts +1 -1
  9. package/dist/components/DetailsPanel.d.ts +3 -2
  10. package/dist/components/Legend.d.ts +2 -3
  11. package/dist/components/LinkedCharts.d.ts +1 -1
  12. package/dist/components/ThemeProvider.d.ts +1 -1
  13. package/dist/components/Tooltip/FlippingTooltip.d.ts +1 -1
  14. package/dist/components/Tooltip/Tooltip.d.ts +4 -3
  15. package/dist/components/charts/geo/ChoroplethMap.d.ts +4 -4
  16. package/dist/components/charts/geo/DistanceCartogram.d.ts +5 -4
  17. package/dist/components/charts/geo/FlowMap.d.ts +4 -4
  18. package/dist/components/charts/geo/ProportionalSymbolMap.d.ts +4 -3
  19. package/dist/components/charts/index.d.ts +2 -0
  20. package/dist/components/charts/network/ChordDiagram.d.ts +4 -3
  21. package/dist/components/charts/network/CirclePack.d.ts +3 -3
  22. package/dist/components/charts/network/ForceDirectedGraph.d.ts +3 -2
  23. package/dist/components/charts/network/OrbitDiagram.d.ts +6 -5
  24. package/dist/components/charts/network/SankeyDiagram.d.ts +4 -3
  25. package/dist/components/charts/network/TreeDiagram.d.ts +3 -3
  26. package/dist/components/charts/network/Treemap.d.ts +3 -3
  27. package/dist/components/charts/ordinal/BarChart.d.ts +24 -4
  28. package/dist/components/charts/ordinal/BoxPlot.d.ts +4 -3
  29. package/dist/components/charts/ordinal/DonutChart.d.ts +4 -3
  30. package/dist/components/charts/ordinal/DotPlot.d.ts +4 -3
  31. package/dist/components/charts/ordinal/FunnelChart.d.ts +4 -3
  32. package/dist/components/charts/ordinal/GaugeChart.d.ts +2 -1
  33. package/dist/components/charts/ordinal/GroupedBarChart.d.ts +4 -3
  34. package/dist/components/charts/ordinal/Histogram.d.ts +4 -3
  35. package/dist/components/charts/ordinal/LikertChart.d.ts +4 -3
  36. package/dist/components/charts/ordinal/PieChart.d.ts +4 -3
  37. package/dist/components/charts/ordinal/RidgelinePlot.d.ts +4 -3
  38. package/dist/components/charts/ordinal/StackedBarChart.d.ts +4 -3
  39. package/dist/components/charts/ordinal/SwarmPlot.d.ts +4 -3
  40. package/dist/components/charts/ordinal/SwimlaneChart.d.ts +4 -3
  41. package/dist/components/charts/ordinal/ViolinPlot.d.ts +4 -3
  42. package/dist/components/charts/realtime/RealtimeHeatmap.d.ts +7 -6
  43. package/dist/components/charts/realtime/RealtimeHistogram.d.ts +10 -7
  44. package/dist/components/charts/realtime/RealtimeLineChart.d.ts +9 -6
  45. package/dist/components/charts/realtime/RealtimeSwarmChart.d.ts +7 -6
  46. package/dist/components/charts/realtime/RealtimeWaterfallChart.d.ts +9 -6
  47. package/dist/components/charts/shared/ChartError.d.ts +1 -2
  48. package/dist/components/charts/shared/annotationResolvers.d.ts +4 -3
  49. package/dist/components/charts/shared/annotationRules.d.ts +2 -1
  50. package/dist/components/charts/shared/colorUtils.d.ts +4 -3
  51. package/dist/components/charts/shared/datumTypes.d.ts +20 -0
  52. package/dist/components/charts/shared/diagnoseConfig.d.ts +2 -7
  53. package/dist/components/charts/shared/formatUtils.d.ts +4 -2
  54. package/dist/components/charts/shared/hooks.d.ts +27 -23
  55. package/dist/components/charts/shared/legendUtils.d.ts +3 -2
  56. package/dist/components/charts/shared/mergeShapeStyle.d.ts +43 -0
  57. package/dist/components/charts/shared/networkUtils.d.ts +7 -6
  58. package/dist/components/charts/shared/selectionUtils.d.ts +5 -4
  59. package/dist/components/charts/shared/statisticalOverlays.d.ts +14 -26
  60. package/dist/components/charts/shared/statisticalOverlaysLazy.d.ts +2 -2
  61. package/dist/components/charts/shared/statsTooltip.d.ts +3 -2
  62. package/dist/components/charts/shared/tooltipUtils.d.ts +7 -6
  63. package/dist/components/charts/shared/types.d.ts +22 -13
  64. package/dist/components/charts/shared/useChartSetup.d.ts +7 -6
  65. package/dist/components/charts/shared/useLikertAggregation.d.ts +18 -7
  66. package/dist/components/charts/shared/useOrdinalStreaming.d.ts +3 -2
  67. package/dist/components/charts/shared/useStreamingLegend.d.ts +2 -1
  68. package/dist/components/charts/shared/validateChartData.d.ts +2 -1
  69. package/dist/components/charts/shared/validateProps.d.ts +2 -8
  70. package/dist/components/charts/shared/withChartWrapper.d.ts +1 -1
  71. package/dist/components/charts/xy/AreaChart.d.ts +4 -3
  72. package/dist/components/charts/xy/BubbleChart.d.ts +4 -3
  73. package/dist/components/charts/xy/CandlestickChart.d.ts +47 -0
  74. package/dist/components/charts/xy/ConnectedScatterplot.d.ts +4 -3
  75. package/dist/components/charts/xy/Heatmap.d.ts +12 -7
  76. package/dist/components/charts/xy/LineChart.d.ts +4 -3
  77. package/dist/components/charts/xy/MinimapChart.d.ts +4 -4
  78. package/dist/components/charts/xy/MultiAxisLineChart.d.ts +5 -4
  79. package/dist/components/charts/xy/QuadrantChart.d.ts +4 -3
  80. package/dist/components/charts/xy/Scatterplot.d.ts +4 -3
  81. package/dist/components/charts/xy/ScatterplotMatrix.d.ts +3 -3
  82. package/dist/components/charts/xy/StackedAreaChart.d.ts +4 -3
  83. package/dist/components/data/transforms.d.ts +8 -7
  84. package/dist/components/export/chartConfig.d.ts +4 -3
  85. package/dist/components/geo/mergeData.d.ts +2 -1
  86. package/dist/components/realtime/BinAccumulator.d.ts +3 -2
  87. package/dist/components/realtime/renderers/types.d.ts +2 -1
  88. package/dist/components/realtime/renderers/waterfallRenderer.d.ts +2 -1
  89. package/dist/components/realtime/types.d.ts +20 -16
  90. package/dist/components/semiotic-themes.d.ts +2 -1
  91. package/dist/components/semiotic-xy.d.ts +2 -0
  92. package/dist/components/semiotic.d.ts +3 -3
  93. package/dist/components/server/animatedGif.d.ts +4 -18
  94. package/dist/components/server/renderToStaticSVG.d.ts +5 -4
  95. package/dist/components/server/serverChartConfigs.d.ts +2 -10
  96. package/dist/components/server/staticAnnotations.d.ts +2 -1
  97. package/dist/components/server/staticLegend.d.ts +2 -1
  98. package/dist/components/store/ObservationStore.d.ts +4 -3
  99. package/dist/components/store/SelectionStore.d.ts +3 -8
  100. package/dist/components/store/ThemeStore.d.ts +32 -4
  101. package/dist/components/store/TooltipStore.d.ts +1 -1
  102. package/dist/components/store/useSelection.d.ts +6 -5
  103. package/dist/components/stream/AccessibleDataTable.d.ts +5 -5
  104. package/dist/components/stream/CanvasHitTester.d.ts +2 -1
  105. package/dist/components/stream/DataSourceAdapter.d.ts +2 -1
  106. package/dist/components/stream/FocusRing.d.ts +1 -2
  107. package/dist/components/stream/GeoParticlePool.d.ts +2 -1
  108. package/dist/components/stream/GeoPipelineStore.d.ts +7 -6
  109. package/dist/components/stream/MarginalGraphics.d.ts +1 -2
  110. package/dist/components/stream/NetworkPipelineStore.d.ts +3 -2
  111. package/dist/components/stream/NetworkSVGOverlay.d.ts +4 -4
  112. package/dist/components/stream/OrdinalBrushOverlay.d.ts +1 -19
  113. package/dist/components/stream/OrdinalPipelineStore.d.ts +6 -5
  114. package/dist/components/stream/OrdinalSVGOverlay.d.ts +6 -5
  115. package/dist/components/stream/PipelineStore.d.ts +63 -28
  116. package/dist/components/stream/SVGOverlay.d.ts +10 -10
  117. package/dist/components/stream/SceneGraph.d.ts +6 -5
  118. package/dist/components/stream/StreamGeoFrame.d.ts +2 -1
  119. package/dist/components/stream/StreamNetworkFrame.d.ts +2 -1
  120. package/dist/components/stream/StreamOrdinalFrame.d.ts +2 -1
  121. package/dist/components/stream/StreamXYFrame.d.ts +2 -1
  122. package/dist/components/stream/XYBrushOverlay.d.ts +1 -21
  123. package/dist/components/stream/devDataAccessWarning.d.ts +2 -11
  124. package/dist/components/stream/geoTypes.d.ts +25 -18
  125. package/dist/components/stream/hoverUtils.d.ts +2 -1
  126. package/dist/components/stream/layouts/hierarchySceneBuilders.d.ts +4 -3
  127. package/dist/components/stream/layouts/hierarchyUtils.d.ts +4 -3
  128. package/dist/components/stream/networkTypes.d.ts +33 -28
  129. package/dist/components/stream/ordinalSceneBuilders/barFunnelScene.d.ts +1 -1
  130. package/dist/components/stream/ordinalSceneBuilders/barScene.d.ts +2 -2
  131. package/dist/components/stream/ordinalSceneBuilders/connectorScene.d.ts +1 -1
  132. package/dist/components/stream/ordinalSceneBuilders/pointScene.d.ts +2 -2
  133. package/dist/components/stream/ordinalSceneBuilders/statisticalScene.d.ts +4 -4
  134. package/dist/components/stream/ordinalSceneBuilders/swimlaneScene.d.ts +1 -1
  135. package/dist/components/stream/ordinalSceneBuilders/timelineScene.d.ts +1 -1
  136. package/dist/components/stream/ordinalSceneBuilders/types.d.ts +9 -8
  137. package/dist/components/stream/ordinalTypes.d.ts +54 -22
  138. package/dist/components/stream/pipelineDecay.d.ts +2 -1
  139. package/dist/components/stream/pipelinePulse.d.ts +2 -1
  140. package/dist/components/stream/pipelineTransitions.d.ts +16 -4
  141. package/dist/components/stream/renderers/colorUtils.d.ts +20 -0
  142. package/dist/components/stream/types.d.ts +45 -8
  143. package/dist/components/stream/xySceneBuilders/areaScene.d.ts +3 -2
  144. package/dist/components/stream/xySceneBuilders/barScene.d.ts +2 -1
  145. package/dist/components/stream/xySceneBuilders/boundsScene.d.ts +2 -1
  146. package/dist/components/stream/xySceneBuilders/candlestickScene.d.ts +2 -1
  147. package/dist/components/stream/xySceneBuilders/emitPointNodes.d.ts +3 -2
  148. package/dist/components/stream/xySceneBuilders/heatmapScene.d.ts +2 -1
  149. package/dist/components/stream/xySceneBuilders/lineScene.d.ts +2 -1
  150. package/dist/components/stream/xySceneBuilders/mixedScene.d.ts +2 -1
  151. package/dist/components/stream/xySceneBuilders/pointScene.d.ts +2 -1
  152. package/dist/components/stream/xySceneBuilders/swarmScene.d.ts +2 -1
  153. package/dist/components/stream/xySceneBuilders/types.d.ts +35 -26
  154. package/dist/components/stream/xySceneBuilders/waterfallScene.d.ts +2 -1
  155. package/dist/components/types/marginType.d.ts +15 -0
  156. package/dist/geo.min.js +1 -1
  157. package/dist/geo.module.min.js +1 -1
  158. package/dist/network.min.js +1 -1
  159. package/dist/network.module.min.js +1 -1
  160. package/dist/ordinal.min.js +1 -1
  161. package/dist/ordinal.module.min.js +1 -1
  162. package/dist/realtime.min.js +1 -1
  163. package/dist/realtime.module.min.js +1 -1
  164. package/dist/semiotic-ai.min.js +1 -1
  165. package/dist/semiotic-ai.module.min.js +1 -1
  166. package/dist/semiotic-statisticalOverlays-Ckd_jM8z.js +1 -0
  167. package/dist/semiotic-themes.d.ts +2 -1
  168. package/dist/semiotic-themes.min.js +1 -1
  169. package/dist/semiotic-themes.module.min.js +1 -1
  170. package/dist/semiotic-utils.min.js +1 -1
  171. package/dist/semiotic-utils.module.min.js +1 -1
  172. package/dist/semiotic-xy.d.ts +2 -0
  173. package/dist/semiotic.d.ts +3 -3
  174. package/dist/semiotic.min.js +1 -1
  175. package/dist/semiotic.module.min.js +1 -1
  176. package/dist/server.min.js +1 -1
  177. package/dist/server.module.min.js +1 -1
  178. package/dist/test-utils/canvasMock.d.ts +10 -2
  179. package/dist/xy.min.js +1 -1
  180. package/dist/xy.module.min.js +1 -1
  181. package/package.json +38 -31
  182. package/dist/components/types/annotationTypes.d.ts +0 -145
  183. package/dist/components/types/generalTypes.d.ts +0 -241
  184. package/dist/components/types/interactionTypes.d.ts +0 -72
  185. package/dist/components/types/networkTypes.d.ts +0 -174
  186. package/dist/components/types/ordinalTypes.d.ts +0 -112
  187. package/dist/semiotic-statisticalOverlays-DGX_WWc5.js +0 -1
@@ -1 +1 @@
1
- "use strict";const e=require("react"),t=require("d3-selection"),n=require("d3-brush"),o=require("d3-scale"),r=require("d3-quadtree"),i=require("d3-scale-chromatic"),a=require("d3-array"),s=require("d3-hierarchy"),l=require("d3-shape"),c=require("regression"),u=require("d3-interpolate"),d=require("d3-force"),h=require("d3-chord");function g(e){return e&&e.__esModule?e:{default:e}}function f(e){if(e&&e.__esModule)return e;const t=Object.create(null);if(e)for(const n in e)if("default"!==n){const o=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,o.get?o:{enumerable:!0,get:function(){return e[n]}})}return t.default=e,Object.freeze(t)}const p=f(e),y=g(c);function m(e,t){let n=0,o=t.length-1;for(;o>n;){const r=n+o+1>>1;t[r]>e?o=r-1:n=r}return t[n]}function v(e,t){let n=0,o=t.length-1;for(;o>n;){const r=n+o>>1;e>t[r]?n=r+1:o=r}return t[n]}function b({width:o,height:r,totalWidth:i,totalHeight:a,margin:s,dimension:l,scales:c,onBrush:u,binSize:d,snap:h,binBoundaries:g,snapDuring:f,streaming:y}){const b=e.useRef(null),x=e.useRef(null),k=e.useRef(u);k.current=u;const w=e.useRef(c);w.current=c;const A=e.useMemo(()=>g?[...g].sort((e,t)=>e-t):void 0,[g]),S=e.useRef(A);S.current=A;const O=e.useRef(!1),E=e.useRef(null);return e.useEffect(()=>{if(!b.current)return;const e=t.select(b.current).select(".brush-g"),i="x"===l?n.brushX():"y"===l?n.brushY():n.brush();return i.extent([[0,0],[o,r]]),i.on("brush end",t=>{if(O.current)return;const n=w.current;if(!n)return;if(!t.selection)return E.current=null,void k.current(null);let a,s;if("x"===l){const[e,o]=t.selection;a=[n.x.invert(e),n.x.invert(o)],s=[n.y.invert(r),n.y.invert(0)]}else if("y"===l){const[e,r]=t.selection;a=[n.x.invert(0),n.x.invert(o)],s=[n.y.invert(r),n.y.invert(e)]}else{const[[e,o],[r,i]]=t.selection;a=[n.x.invert(e),n.x.invert(r)],s=[n.y.invert(i),n.y.invert(o)]}if("bin"===h&&"y"!==l&&("end"===t.type||"brush"===t.type&&f)){const o=S.current;o&&o.length>0?a=function(e,t){return 0===t.length?e:[m(e[0],t),v(e[1],t)]}(a,o):d&&d>0&&(a=[Math.floor(a[0]/d)*d,Math.ceil(a[1]/d)*d]);const r=n.x(a[0]),s=n.x(a[1]);if(O.current=!0,"x"===l)e.call(i.move,[r,s]);else if("xy"===l){const n=t.selection;e.call(i.move,[[r,n[0][1]],[s,n[1][1]]])}O.current=!1}const c={x:a,y:s};E.current=c,k.current(c)}),e.call(i),x.current=i,e.select(".selection").attr("fill","steelblue").attr("fill-opacity",.15).attr("stroke","steelblue").attr("stroke-width",1),()=>{i.on("brush end",null),x.current=null}},[o,r,l,h,d,f]),e.useEffect(()=>{if(!(y&&c&&x.current&&E.current))return;if(!b.current)return;if("y"===l)return;const e=E.current,n=c.x.domain()[0],o=t.select(b.current).select(".brush-g");if(n>=e.x[1])return O.current=!0,o.call(x.current.move,null),O.current=!1,E.current=null,void k.current(null);let r=e.x[0],i=!1;if(n>e.x[0]){if(r=n,"bin"===h){const e=S.current;e&&e.length>0?r=v(n,e):d&&d>0&&(r=Math.ceil(n/d)*d)}if(r>=e.x[1])return O.current=!0,o.call(x.current.move,null),O.current=!1,E.current=null,void k.current(null);i=!0}const a=c.x(r),s=c.x(e.x[1]);if(O.current=!0,"x"===l)o.call(x.current.move,[a,s]);else{const t=c.y(e.y[1]),n=c.y(e.y[0]);o.call(x.current.move,[[a,t],[s,n]])}if(O.current=!1,i){const t={x:[r,e.x[1]],y:e.y};E.current=t,k.current(t)}},[c,y,l,h,d]),p.createElement("svg",{ref:b,width:i,height:a,style:{position:"absolute",top:0,left:0,pointerEvents:"all"}},p.createElement("g",{className:"brush-g",transform:`translate(${s.left},${s.top})`}))}class x{constructor(e,t){var n,o;this.lastBoundedData=null,this.chunkTimer=0,this.pushBuffer=[],this.flushScheduled=!1,this.callback=e,this.chunkThreshold=null!==(n=null==t?void 0:t.chunkThreshold)&&void 0!==n?n:5e3,this.chunkSize=null!==(o=null==t?void 0:t.chunkSize)&&void 0!==o?o:5e3}updateChunkOptions(e){null!=e.chunkThreshold&&(this.chunkThreshold=e.chunkThreshold),null!=e.chunkSize&&(this.chunkSize=e.chunkSize)}clearLastData(){this.lastBoundedData=null,this.pushBuffer=[],this.flushScheduled=!1,this.chunkTimer&&(cancelAnimationFrame(this.chunkTimer),this.chunkTimer=0)}setBoundedData(e){if(this.lastBoundedData=e,this.chunkTimer&&(cancelAnimationFrame(this.chunkTimer),this.chunkTimer=0),this.chunkThreshold>=e.length)return void this.callback({inserts:e,bounded:!0});this.callback({inserts:e.slice(0,this.chunkSize),bounded:!0,totalSize:e.length});let t=this.chunkSize;const n=()=>{if(t>=e.length)return void(this.chunkTimer=0);if(e!==this.lastBoundedData)return void(this.chunkTimer=0);const o=Math.min(t+this.chunkSize,e.length);this.callback({inserts:e.slice(t,o),bounded:!1}),t=o,this.chunkTimer=e.length>t?requestAnimationFrame(n):0};this.chunkTimer=requestAnimationFrame(n)}setReplacementData(e){if(this.lastBoundedData=e,this.chunkTimer&&(cancelAnimationFrame(this.chunkTimer),this.chunkTimer=0),this.pushBuffer=[],this.flushScheduled=!1,this.chunkThreshold>=e.length)return void this.callback({inserts:e,bounded:!0,preserveCategoryOrder:!0});this.callback({inserts:e.slice(0,this.chunkSize),bounded:!0,preserveCategoryOrder:!0,totalSize:e.length});let t=this.chunkSize;const n=()=>{if(t>=e.length)return void(this.chunkTimer=0);if(e!==this.lastBoundedData)return void(this.chunkTimer=0);const o=Math.min(t+this.chunkSize,e.length);this.callback({inserts:e.slice(t,o),bounded:!1}),t=o,this.chunkTimer=e.length>t?requestAnimationFrame(n):0};this.chunkTimer=requestAnimationFrame(n)}flushPushBuffer(){if(this.flushScheduled=!1,0===this.pushBuffer.length)return;const e=this.pushBuffer;this.pushBuffer=[],this.callback({inserts:e,bounded:!1})}scheduleFlush(){this.flushScheduled||(this.flushScheduled=!0,queueMicrotask(()=>this.flushPushBuffer()))}push(e){this.pushBuffer.push(e),this.scheduleFlush()}pushMany(e){if(0!==e.length){for(let t=0;e.length>t;t++)this.pushBuffer.push(e[t]);this.scheduleFlush()}}flush(){this.flushPushBuffer()}clear(){this.chunkTimer&&(cancelAnimationFrame(this.chunkTimer),this.chunkTimer=0),this.lastBoundedData=null,this.pushBuffer=[],this.flushScheduled=!1}}class k{constructor(e){if(this._capacity=e,this.head=0,this._size=0,1>e)throw Error("RingBuffer capacity must be at least 1");this.buffer=Array(e)}push(e){let t;return this._size===this._capacity?t=this.buffer[this.head]:this._size++,this.buffer[this.head]=e,this.head=(this.head+1)%this._capacity,t}pushMany(e){const t=[];for(const n of e){const e=this.push(n);void 0!==e&&t.push(e)}return t}get(e){if(e>=0&&this._size>e)return this.buffer[(this.head-this._size+e+this._capacity)%this._capacity]}peek(){if(0!==this._size)return this.buffer[(this.head-1+this._capacity)%this._capacity]}peekOldest(){if(0!==this._size)return this.buffer[(this.head-this._size+this._capacity)%this._capacity]}[Symbol.iterator](){let e=0;const t=this;return{next:()=>t._size>e?{done:!1,value:t.get(e++)}:{done:!0,value:void 0}}}forEach(e){const t=(this.head-this._size+this._capacity)%this._capacity;for(let n=0;this._size>n;n++)e(this.buffer[(t+n)%this._capacity],n)}toArray(){const e=Array(this._size),t=(this.head-this._size+this._capacity)%this._capacity;for(let n=0;this._size>n;n++)e[n]=this.buffer[(t+n)%this._capacity];return e}resize(e){if(1>e)throw Error("RingBuffer capacity must be at least 1");const t=this.toArray(),n=[];for(;t.length>e;)n.push(t.shift());this._capacity=e,this.buffer=Array(e),this.head=0,this._size=0;for(const e of t)this.push(e);return n}update(e,t){const n=[],o=(this.head-this._size+this._capacity)%this._capacity;for(let r=0;this._size>r;r++){const i=(o+r)%this._capacity,a=this.buffer[i];if(e(a)){let e;e="object"!=typeof a||null===a?a:Array.isArray(a)?[...a]:Object.assign({},a),n.push(e),this.buffer[i]=t(a)}}return n}remove(e){const t=[],n=[];if(this.forEach(o=>{e(o)?n.push(o):t.push(o)}),0===n.length)return n;this.buffer=Array(this._capacity),this.head=0,this._size=0;for(const e of t)this.push(e);return n}clear(){this.buffer=Array(this._capacity),this.head=0,this._size=0}get size(){return this._size}get capacity(){return this._capacity}get full(){return this._size===this._capacity}}class w{constructor(){this._min=1/0,this._max=-1/0,this._dirty=!1}push(e){Number.isNaN(e)||(this._min>e&&(this._min=e),e>this._max&&(this._max=e))}evict(e){e!==this._min&&e!==this._max||(this._dirty=!0)}recalculate(e,t){this._min=1/0,this._max=-1/0;for(const n of e){const e=t?t(n):n;Number.isNaN(e)||(this._min>e&&(this._min=e),e>this._max&&(this._max=e))}this._dirty=!1}clear(){this._min=1/0,this._max=-1/0,this._dirty=!1}get extent(){return[this._min,this._max]}get min(){return this._min}get max(){return this._max}get dirty(){return this._dirty}}function A(e,t,n,o,r){const i=new Map;for(const a of e){const e=t(a),s=n(a);if(null==e||null==s||Number.isNaN(e)||Number.isNaN(s))continue;const l=Math.floor(e/o)*o;let c=i.get(l);if(c||(c={start:l,end:l+o,total:0,categories:new Map},i.set(l,c)),c.total+=s,r){const e=r(a);c.categories.set(e,(c.categories.get(e)||0)+s)}}return i}function S(e,t){return e===t||typeof e==typeof t&&"function"==typeof e&&"function"==typeof t&&""+e==""+t}function O(e,t){if("function"==typeof e)return t=>+e(t);const n=e||t;return e=>+e[n]}function E(e,t){if("function"==typeof e)return e;const n=e||t;return e=>e[n]}function M(e,t){return"function"==typeof e?e:e?t=>t[e]+"":t?e=>e[t]+"":void 0}const j={category10:i.schemeCategory10,tableau10:i.schemeTableau10,set3:i.schemeSet3,blues:i.interpolateBlues,reds:i.interpolateReds,greens:i.interpolateGreens,oranges:i.interpolateOranges,purples:i.interpolatePurples,viridis:i.interpolateViridis,plasma:i.interpolatePlasma},C=i.schemeCategory10,P=["#4e79a7","#f28e2b","#e15759","#76b7b2","#59a14f","#edc948","#b07aa1","#ff9da7","#9c755f","#bab0ac"],_=["#f0f0f0","#b5d4ea","#f4c2a1","#b8dab2","#d4b5e0","#f9e0a2","#a8d8d8"],L=new Set(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","transparent","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"]);function T(e,t,n){if("function"==typeof t){const o=t(e);return n&&o&&"string"==typeof o&&!function(e){const t=e.toLowerCase();return t.startsWith("#")||t.startsWith("rgb")||t.startsWith("hsl")||L.has(t)}(o)?n(o):o}const o=null==e?void 0:e[t];return n?n(o):C[Math.abs(function(e){let t=0;for(let n=0;e.length>n;n++)t=(t<<5)-t+e.charCodeAt(n),t&=t;return Math.abs(t)}(o+""))%C.length]}function R(e,t,n="category10"){const r=Array.from(new Set(e.map(e=>null==e?void 0:e[t]).filter(e=>null!=e))),i=r.every(e=>"number"==typeof e||!isNaN(Number(e)));if(Array.isArray(n))return o.scaleOrdinal().domain(r).range(n).unknown("#999");const a=j[n]||j.category10;if(i&&"function"==typeof a){let e=-1/0;for(const t of r){const n=Number(t);n>e&&(e=n)}return t=>a(Number(t)/e)}{const e=Array.isArray(a)?a:C;return o.scaleOrdinal().domain(r).range(e).unknown("#999")}}function B(e,t,n=[3,20],o){let r;if(r="function"==typeof t?t(e):null==e?void 0:e[t],!o)return r;const[i,a]=o,[s,l]=n;return a===i?(s+l)/2:s+(r-i)/(a-i)*(l-s)}function D(e,t,n){var o,r,i;if(1>=n)return 1;const a=null!==(o=e.minOpacity)&&void 0!==o?o:.1,s=n-1-t;switch(e.type){case"linear":return a+(1-s/(n-1))*(1-a);case"exponential":{const t=null!==(r=e.halfLife)&&void 0!==r?r:n/2;return a+Math.pow(.5,s/t)*(1-a)}case"step":return(null!==(i=e.stepThreshold)&&void 0!==i?i:.5*n)>s?1:a;default:return 1}}function I(e,t,n){var o;const r=null!==(o=e.duration)&&void 0!==o?o:500,i=n-t;return r>i?1-i/r:0}function N(e,t="ease-out-cubic"){return"linear"===t?e:1-Math.pow(1-e,3)}function H(e,t){return Math.min((e-t.startTime)/t.duration,1)}function W(e,t,n){return e+(t-e)*n}function F(){return"undefined"!=typeof performance?performance.now():Date.now()}function $(e,t,n){var o,r,i,a;switch(t.type){case"point":if(t.pointId)return"p:"+t.pointId;if("streaming"===e.runtimeMode&&t.datum){const n=e.getX(t.datum),o=e.getY(t.datum);if(e.getCategory)return`p:${e.getCategory(t.datum)}:${n}:${o}`;if(null!=n&&null!=o)return`p:${n}:${o}`}return"p:"+n;case"rect":return`r:${t.group||""}:${null!==(a=null!==(r=null===(o=t.datum)||void 0===o?void 0:o.binStart)&&void 0!==r?r:null===(i=t.datum)||void 0===i?void 0:i.category)&&void 0!==a?a:n}`;case"heatcell":return`h:${t.x}_${t.y}`;case"candlestick":return null==t.datum?"c:"+n:"c:"+e.getX(t.datum);case"line":return"l:"+(t.group||"_default");case"area":return"a:"+(t.group||"_default");default:return null}}function z(e,t,n,o,r,i){const a=[];for(const r of e){const e=n(r),i=o(r);null==e||null==i||Number.isNaN(e)||Number.isNaN(i)||a.push({px:t.x(e),py:t.y(i),rawY:i,d:r})}a.sort((e,t)=>e.px-t.px);const s=Array(a.length),l=Array(a.length),c=Array(a.length);for(let e=0;a.length>e;e++){const t=a[e];s[e]=[t.px,t.py],l[e]=t.rawY,c[e]=t.d}return{type:"line",path:s,rawValues:l,style:r,datum:c,group:i}}function G(e,t,n,o,r,i,a,s){const l=[];for(const i of e){const e=n(i),a=o(i);if(null==e||null==a||Number.isNaN(e)||Number.isNaN(a))continue;const c=t.x(e),u=s?s(i):r;l.push({px:c,topY:t.y(a),botY:t.y(u)})}l.sort((e,t)=>e.px-t.px);const c=Array(l.length),u=Array(l.length);for(let e=0;l.length>e;e++){const t=l[e];c[e]=[t.px,t.topY],u[e]=[t.px,t.botY]}return{type:"area",topPath:c,bottomPath:u,style:i,datum:e,group:a}}function Y(e,t,n,o,r,i,a){const s=n(e),l=o(e);if(null==s||null==l||Number.isNaN(s)||Number.isNaN(l))return null;const c={type:"point",x:t.x(s),y:t.y(l),r:r,style:i,datum:e};return void 0!==a&&(c.pointId=a),c}function q(e,t,n,o,r,i,a){return{type:"rect",x:e,y:t,w:n,h:o,style:r,datum:i,group:a}}function X(e,t,n,o,r,i,a){const s={type:"heatcell",x:e,y:t,w:n,h:o,fill:r,datum:i};return(null==a?void 0:a.showValues)&&(s.showValues=!0,s.value=a.value,a.valueFormat&&(s.valueFormat=a.valueFormat)),s}function V(e,t,n){if(!e.getBounds||!e.scales)return null;const o=[],r=[];for(const n of t){const t=e.getX(n),i=e.getY(n);if(null==t||null==i||Number.isNaN(t)||Number.isNaN(i))continue;const a=e.getBounds(n),s=e.scales.x(t);if(a&&0!==a)o.push([s,e.scales.y(i+a)]),r.push([s,e.scales.y(i-a)]);else{const t=e.scales.y(i);o.push([s,t]),r.push([s,t])}}return 2>o.length?null:{type:"area",topPath:o,bottomPath:r,style:e.resolveBoundsStyle(n,t[0]),datum:t,group:n,interactive:!1}}function U(e,t,n,o){var r;if(!e.config.pointStyle)return;const i=null!=o?o:e.getY;for(const o of t){const t=e.resolveGroupColor(o.key);for(const a of o.data){let o=e.config.pointStyle(a);!o.fill&&t&&(o=Object.assign(Object.assign({},o),{fill:t}));const s=null!==(r=o.r)&&void 0!==r?r:3,l=e.getPointId?e.getPointId(a)+"":void 0,c=Y(a,e.scales,e.getX,i,s,o,l);c&&n.push(c)}}}const K={blues:i.interpolateBlues,reds:i.interpolateReds,greens:i.interpolateGreens,viridis:i.interpolateViridis},Q=new Map;class Z{constructor(e){if(this.xExtent=new w,this.yExtent=new w,this.timestampBuffer=null,this.activeTransition=null,this._hasRenderedOnce=!1,this.prevPositionMap=new Map,this.prevPathMap=new Map,this.exitNodes=[],this.lastIngestTime=0,this._colorMapCache=null,this._groupColorMap=new Map,this._barCategoryCache=null,this._binBoundaries=[],this._stackExtentCache=null,this._ingestVersion=0,this._bufferArrayCache=null,this._bufferDirty=!0,this.needsFullRebuild=!0,this.lastLayout=null,this.scales=null,this.scene=[],this.version=0,this.xIsDate=!1,this._quadtree=null,this._maxPointRadius=0,this.config=e,this.buffer=new k(e.windowSize),this.growingCap=e.windowSize,["bar","swarm","waterfall"].includes(e.chartType)||"streaming"===e.runtimeMode?(this.getX=O(e.timeAccessor||e.xAccessor,"time"),this.getY=O(e.valueAccessor||e.yAccessor,"value")):(this.getX=O(e.xAccessor,"x"),this.getY=O(e.yAccessor,"y")),this.getGroup=M(e.groupAccessor),this.getCategory=M(e.categoryAccessor),this.getSize=e.sizeAccessor?O(e.sizeAccessor,"size"):void 0,this.getColor=M(e.colorAccessor),this.getBounds=e.boundsAccessor?O(e.boundsAccessor,"bounds"):void 0,this.getY0=e.y0Accessor?O(e.y0Accessor,"y0"):void 0,this.getPointId=M(e.pointIdAccessor),"candlestick"===e.chartType){const t=null!=e.openAccessor,n=null!=e.closeAccessor;this.getOpen=t?O(e.openAccessor,"open"):void 0,this.getHigh=O(e.highAccessor,"high"),this.getLow=O(e.lowAccessor,"low"),this.getClose=n?O(e.closeAccessor,"close"):void 0,this.config.candlestickRangeMode=!t&&!n}e.pulse&&(this.timestampBuffer=new k(e.windowSize))}ingest(e){const t="undefined"!=typeof performance?performance.now():Date.now();if(this.lastIngestTime=t,this.needsFullRebuild=!0,this._bufferDirty=!0,this._ingestVersion++,e.bounded){if(this.buffer.clear(),this.xExtent.clear(),this.yExtent.clear(),this.timestampBuffer&&this.timestampBuffer.clear(),this.getX=["bar","swarm","waterfall"].includes(this.config.chartType)||"streaming"===this.config.runtimeMode?O(this.config.timeAccessor||this.config.xAccessor,"time"):O(this.config.xAccessor,"x"),this.xIsDate=!1,e.inserts.length>0){const t=e.inserts[0],n=this.config.xAccessor,o="function"==typeof n?n(t):t[n||"x"],r=o instanceof Date,i="string"==typeof o&&o.length>=10&&!isNaN(new Date(o).getTime())&&isNaN(Number(o));if(this.xIsDate=r||i,i){const e="string"==typeof n?n:void 0;this.getX=e?t=>+new Date(t[e]):e=>+(n(e)instanceof Date?n(e):new Date(n(e)))}}const n=e.totalSize||e.inserts.length;n>this.buffer.capacity&&(this.buffer.resize(n),this.timestampBuffer&&n>this.timestampBuffer.capacity&&this.timestampBuffer.resize(n));for(const n of e.inserts)this.buffer.push(n),this.timestampBuffer&&this.timestampBuffer.push(t),this.xExtent.push(this.getX(n)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.push(this.getHigh(n)),this.yExtent.push(this.getLow(n))):(this.yExtent.push(this.getY(n)),this.getY0&&this.yExtent.push(this.getY0(n)))}else for(const n of e.inserts){if("growing"===this.config.windowMode&&this.buffer.full){const e=this.config.maxCapacity||1e6;e>this.growingCap&&(this.growingCap=Math.min(2*this.growingCap,e),this.buffer.resize(this.growingCap),this.timestampBuffer&&this.timestampBuffer.resize(this.growingCap))}const e=this.buffer.push(n);this.timestampBuffer&&this.timestampBuffer.push(t),this.xExtent.push(this.getX(n)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.push(this.getHigh(n)),this.yExtent.push(this.getLow(n))):(this.yExtent.push(this.getY(n)),this.getY0&&this.yExtent.push(this.getY0(n))),null!=e&&(this.xExtent.evict(this.getX(e)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.evict(this.getHigh(e)),this.yExtent.evict(this.getLow(e))):this.yExtent.evict(this.getY(e)))}return!0}computeScene(e){var t,n,r,i,a,s,l;const{config:c,buffer:u}=this;if(!this.needsFullRebuild&&this.lastLayout&&this.scene.length>0&&this.scales&&0>=(null!==(t=this.config.scalePadding)&&void 0!==t?t:0)&&(this.lastLayout.width!==e.width||this.lastLayout.height!==e.height))return void this.remapScene(e);if(this.xExtent.dirty&&this.xExtent.recalculate(u,this.getX),this.yExtent.dirty)if("candlestick"===c.chartType&&this.getHigh&&this.getLow){this.yExtent.clear();for(const e of u)this.yExtent.push(this.getHigh(e)),this.yExtent.push(this.getLow(e))}else this.yExtent.recalculate(u,this.getY);const d=this.getBufferArray(),h=this.xExtent.extent,g=this.yExtent.extent;let f=c.xExtent?[null!==(n=c.xExtent[0])&&void 0!==n?n:h[0],null!==(r=c.xExtent[1])&&void 0!==r?r:h[1]]:h,p=c.yExtent?[null!==(i=c.yExtent[0])&&void 0!==i?i:g[0],null!==(a=c.yExtent[1])&&void 0!==a?a:g[1]]:g;const y=c.yExtent&&null!=c.yExtent[0]&&null!=c.yExtent[1];if("stackedarea"===c.chartType&&!y&&u.size>0)if(c.normalize)p=[0,1+c.extentPadding];else{const e=`${u.size}:${this._ingestVersion}`;if(this._stackExtentCache&&this._stackExtentCache.key===e)p=this._stackExtentCache.yDomain;else{const t=this.groupData(d),n=new Map;let o=0;for(const e of t)for(const t of e.data){const e=this.getX(t),r=this.getY(t);if(null==e||null==r||Number.isNaN(e)||Number.isNaN(r))continue;const i=(n.get(e)||0)+r;n.set(e,i),i>o&&(o=i)}p=[0,o+(o>0?o*c.extentPadding:1)],this._stackExtentCache={key:e,yDomain:p}}}else if("bar"===c.chartType&&c.binSize&&!y&&u.size>0){const[,e]=function(e,t,n,o,r){const i=A(e,t,n,o,r);if(0===i.size)return[0,0];let a=0;for(const e of i.values())e.total>a&&(a=e.total);return[0,a]}(u,this.getX,this.getY,c.binSize,this.getCategory);p=[0,e+e*c.extentPadding]}else if("waterfall"===c.chartType&&!y&&u.size>0){const[e,t]=function(e,t){let n=0,o=0,r=0;for(const i of e){const e=t(i);null==e||Number.isNaN(e)||(r+=e,n>r&&(n=r),r>o&&(o=r))}return[n,o]}(u,this.getY),n=t-e,o=n>0?n*c.extentPadding:1;p=[Math.min(0,e-Math.abs(o)),Math.max(0,t+Math.abs(o))]}else if(!y&&p[0]!==1/0){if(this.getBounds)for(const e of d){const t=this.getY(e),n=this.getBounds(e);null!=t&&!Number.isNaN(t)&&n&&(t+n>p[1]&&(p[1]=t+n),p[0]>t-n&&(p[0]=t-n))}const e=p[1]-p[0],t=e>0?e*c.extentPadding:1,n=null===(s=c.yExtent)||void 0===s?void 0:s[0],o=null===(l=c.yExtent)||void 0===l?void 0:l[1];p=[null!=n?p[0]:p[0]-t,null!=o?p[1]:p[1]+t],"log"===c.yScaleType&&0>=p[0]&&g[0]>0&&(p[0]=null!=n?p[0]:g[0]/(1+c.extentPadding))}if(f[0]===1/0||f[1]===-1/0)if("time"===c.xScaleType){const e=Date.now();f=[e-864e5,e]}else f=[0,1];p[0]!==1/0&&p[1]!==-1/0||(p=[0,1]);const m="streaming"===c.runtimeMode,v=Math.max(0,Math.min(c.scalePadding||0,Math.min(e.width,e.height)/2-1));if(m)if("x"==("up"===(b=c.arrowOfTime)||"down"===b?"y":"x")){const t="right"===c.arrowOfTime?[v,e.width-v]:[e.width-v,v];this.scales={x:o.scaleLinear().domain(f).range(t),y:o.scaleLinear().domain(p).range([e.height-v,v])}}else{const t="down"===c.arrowOfTime?[v,e.height-v]:[e.height-v,v];this.scales={x:o.scaleLinear().domain(p).range([v,e.width-v]),y:o.scaleLinear().domain(f).range(t)}}else{const t=(e,t,n)=>{if("log"===e){const e=[Math.max(t[0],1e-6),Math.max(t[1],1e-6)];return o.scaleLog().domain(e).range(n).clamp(!0)}return"time"===e?o.scaleTime().domain([new Date(t[0]),new Date(t[1])]).range(n):o.scaleLinear().domain(t).range(n)};this.scales={x:t(c.xScaleType,f,[v,e.width-v]),y:t(c.yScaleType,p,[e.height-v,v])}}var b;this.config.transition&&this.scene.length>0&&this.snapshotPositions(),this.scene=this.buildSceneNodes(e,d),this.config.decay&&this.applyDecay(this.scene,d),this.config.pulse&&this.applyPulse(this.scene,d),this.config.transition&&!this._hasRenderedOnce&&this.scene.length>0&&(this.config.introAnimation&&this.synthesizeIntroPositions(),this._hasRenderedOnce=!0),this.config.transition&&(this.prevPositionMap.size>0||this.prevPathMap.size>0)&&this.startTransition(),this.rebuildQuadtree(),this.needsFullRebuild=!1,this.lastLayout={width:e.width,height:e.height},this.version++}rebuildQuadtree(){const e=this.config.chartType;if("scatter"!==e&&"bubble"!==e)return this._quadtree=null,void(this._maxPointRadius=0);let t=0,n=0;for(const e of this.scene)"point"===e.type&&(t++,e.r>n&&(n=e.r));if(this._maxPointRadius=n,Z.QUADTREE_THRESHOLD>=t)return void(this._quadtree=null);const o=Array(t);let i=0;for(const e of this.scene)"point"===e.type&&(o[i++]=e);this._quadtree=r.quadtree().x(e=>e.x).y(e=>e.y).addAll(o)}get quadtree(){return this._quadtree}get maxPointRadius(){return this._maxPointRadius}remapScene(e){const t=e.width/this.lastLayout.width,n=e.height/this.lastLayout.height;for(const e of this.scene)switch(e.type){case"line":for(const o of e.path)o[0]*=t,o[1]*=n;break;case"area":for(const o of e.topPath)o[0]*=t,o[1]*=n;for(const o of e.bottomPath)o[0]*=t,o[1]*=n;break;case"point":e.x*=t,e.y*=n;break;case"rect":case"heatcell":e.x*=t,e.y*=n,e.w*=t,e.h*=n;break;case"candlestick":e.x*=t,e.openY*=n,e.closeY*=n,e.highY*=n,e.lowY*=n}const r=this.scales.x.domain(),i=this.scales.y.domain(),a=this.scales.x.range(),s=this.scales.y.range(),l=(e,t,n)=>{if("log"===e){const e=[Math.max(t[0],1e-6),Math.max(t[1],1e-6)];return o.scaleLog().domain(e).range(n).clamp(!0)}return"time"===e?o.scaleTime().domain([new Date(t[0]),new Date(t[1])]).range(n):o.scaleLinear().domain(t).range(n)},c=Math.max(0,Math.min(this.config.scalePadding||0,Math.min(e.width,e.height)/2-1)),u=s[1]>s[0];this.scales={x:l(this.config.xScaleType,r,a[0]>a[1]?[e.width-c,c]:[c,e.width-c]),y:l(this.config.yScaleType,i,u?[c,e.height-c]:[e.height-c,c])},this.lastLayout={width:e.width,height:e.height},this.rebuildQuadtree(),this.version++}buildSceneNodes(e,t){var n;const{config:o,scales:r}=this;if(!r||0===t.length)return[];const a={scales:r,config:o,getX:this.getX,getY:this.getY,getY0:this.getY0,getSize:this.getSize,getColor:this.getColor,getGroup:this.getGroup,getCategory:this.getCategory,getPointId:this.getPointId,getBounds:this.getBounds,getOpen:this.getOpen,getHigh:this.getHigh,getLow:this.getLow,getClose:this.getClose,resolveLineStyle:(e,t)=>this.resolveLineStyle(e,t),resolveAreaStyle:(e,t)=>this.resolveAreaStyle(e,t),resolveBoundsStyle:(e,t)=>this.resolveBoundsStyle(e,t),resolveColorMap:e=>this.resolveColorMap(e),resolveGroupColor:e=>this.resolveGroupColor(e),groupData:e=>this.groupData(e),barCategoryCache:this._barCategoryCache};switch(o.chartType){case"line":return function(e,t){var n;const o=e.groupData(t),r=[],i=null===(n=e.config.annotations)||void 0===n?void 0:n.filter(e=>"threshold"===e.type&&e.color).map(e=>({value:e.value,color:e.color,thresholdType:e.thresholdType||"greater"}));if(e.getBounds)for(const t of o){const n=V(e,t.data,t.key);n&&r.push(n)}for(const t of o){const n=e.resolveLineStyle(t.key,t.data[0]),o=z(t.data,e.scales,e.getX,e.getY,n,t.key);i&&i.length>0&&(o.colorThresholds=i),e.config.curve&&"linear"!==e.config.curve&&(o.curve=e.config.curve),e.config.lineGradient&&(o.strokeGradient=e.config.lineGradient),r.push(o)}return U(e,o,r),r}(a,t);case"area":return function(e,t){const n=e.groupData(t),o=[],r=e.scales.y.domain()[0],i=e.getY0?t=>{const n=e.getY0(t);return null==n?r:n}:void 0;for(const t of n){const n=e.resolveAreaStyle(t.key,t.data[0]),a=G(t.data,e.scales,e.getX,e.getY,r,n,t.key,i);e.config.gradientFill&&(a.fillGradient=e.config.gradientFill),e.config.curve&&"linear"!==e.config.curve&&(a.curve=e.config.curve),e.config.lineGradient&&(a.strokeGradient=e.config.lineGradient),o.push(a)}return U(e,n,o),o}(a,t);case"mixed":return function(e,t){const n=e.groupData(t),o=[],r=e.config.areaGroups||new Set,i=e.scales.y.domain()[0],a=e.getY0?t=>{const n=e.getY0(t);return null==n?i:n}:void 0;for(const t of n)if(r.has(t.key)){const n=e.resolveAreaStyle(t.key,t.data[0]),r=G(t.data,e.scales,e.getX,e.getY,i,n,t.key,a);e.config.gradientFill&&(r.fillGradient=e.config.gradientFill),e.config.curve&&"linear"!==e.config.curve&&(r.curve=e.config.curve),e.config.lineGradient&&(r.strokeGradient=e.config.lineGradient),o.push(r)}else{const n=e.resolveLineStyle(t.key,t.data[0]),r=z(t.data,e.scales,e.getX,e.getY,n,t.key);e.config.curve&&"linear"!==e.config.curve&&(r.curve=e.config.curve),e.config.lineGradient&&(r.strokeGradient=e.config.lineGradient),o.push(r)}return U(e,n,o),o}(a,t);case"stackedarea":return function(e,t){const n=e.groupData(t);n.sort((e,t)=>t.key>e.key?-1:e.key>t.key?1:0);const o=e.config.curve&&"linear"!==e.config.curve?e.config.curve:void 0,{nodes:r,stackedTops:i}=function(e,t,n,o,r,i,a){var s;const l=new Set;for(const t of e)for(const e of t.data){const t=n(e);null==t||Number.isNaN(t)||l.add(t)}const c=Array.from(l).sort((e,t)=>e-t),u=new Map;for(const t of e){const e=new Map;for(const r of t.data){const t=n(r),i=o(r);null==t||null==i||Number.isNaN(t)||Number.isNaN(i)||e.set(t,(e.get(t)||0)+i)}u.set(t.key,e)}let d;if(i){d=new Map;for(const t of c){let n=0;for(const o of e)n+=(null===(s=u.get(o.key))||void 0===s?void 0:s.get(t))||0;d.set(t,n||1)}}const h=[],g=new Map,f=new Map;for(const e of c)f.set(e,0);for(const n of e){const e=u.get(n.key),o=[],s=[],l=new Map;for(const n of c){let r=e.get(n)||0;const a=f.get(n);i&&(r/=d.get(n));const c=a+r,u=t.x(n);s.push([u,t.y(a)]),o.push([u,t.y(c)]),f.set(n,c),l.set(n,c)}g.set(n.key,l);const p={type:"area",topPath:o,bottomPath:s,style:r(n.key,n.data[0]),datum:n.data,group:n.key};a&&(p.curve=a),h.push(p)}return{nodes:h,stackedTops:g}}(n,e.scales,e.getX,e.getY,(t,n)=>e.resolveAreaStyle(t,n),e.config.normalize,o),a=r;if(e.config.pointStyle){const t=new WeakMap;for(const o of n){const n=i.get(o.key);if(n)for(const r of o.data){const o=e.getX(r),i=e.getY(r);null==o||Number.isNaN(o)||null==i||Number.isNaN(i)||!n.has(o)||t.set(r,n.get(o))}}const o=n=>{var o;return null!==(o=t.get(n))&&void 0!==o?o:e.getY(n)};U(e,n,a,o)}return a}(a,t);case"scatter":case"bubble":return function(e,t){const n=[],o="bubble"===e.config.chartType?10:5,r=e.config.sizeRange||[3,15];let i=null;if(e.getSize&&!e.config.pointStyle){const n=t.map(t=>e.getSize(t)).filter(e=>null!=e&&!Number.isNaN(e));if(n.length>0){let e=1/0,t=-1/0;for(const o of n)e>o&&(e=o),o>t&&(t=o);i=n=>e===t?(r[0]+r[1])/2:r[0]+(n-e)/(t-e)*(r[1]-r[0])}}const a=e.getColor?e.resolveColorMap(t):null;for(const r of t){let t=e.config.pointStyle?e.config.pointStyle(r):{fill:"#4e79a7",opacity:.8},s=t.r||o;if(i&&e.getSize){const t=e.getSize(r);null==t||Number.isNaN(t)||(s=i(t))}if(a&&e.getColor&&!t.fill){const n=e.getColor(r);n&&a.has(n)&&(t=Object.assign(Object.assign({},t),{fill:a.get(n)}))}const l=e.getPointId?e.getPointId(r)+"":void 0,c=Y(r,e.scales,e.getX,e.getY,s,t,l);c&&n.push(c)}return n}(a,t);case"heatmap":return function(e,t,n){if(e.config.heatmapAggregation)return function(e,t,n){var o,r,i;const a=Math.max(1,Math.floor(null!==(o=e.config.heatmapXBins)&&void 0!==o?o:20)),s=Math.max(1,Math.floor(null!==(r=e.config.heatmapYBins)&&void 0!==r?r:20)),l=null!==(i=e.config.heatmapAggregation)&&void 0!==i?i:"count",c=O(e.config.valueAccessor,"value");if(!e.scales||0===t.length)return[];const[u,d]=e.scales.x.domain(),[h,g]=e.scales.y.domain(),f=(d-u||1)/a,p=(g-h||1)/s,y=a*s;if(y>1e6)return[];const m=new Int32Array(y),v=new Float64Array(y);for(let n=0;t.length>n;n++){const o=t[n],r=e.getX(o),i=e.getY(o);if(!isFinite(r)||!isFinite(i))continue;const l=Math.min(Math.floor((r-u)/f),a-1),d=Math.min(Math.floor((i-h)/p),s-1);if(0>l||0>d)continue;const g=d*a+l;m[g]++;const y=c(o);v[g]+=isFinite(y)?y:0}let b=1/0,x=-1/0;for(let e=0;y>e;e++){if(0===m[e])continue;let t;switch(l){case"sum":t=v[e];break;case"mean":t=v[e]/m[e];break;default:t=m[e]}b>t&&(b=t),t>x&&(x=t)}if(!isFinite(b))return[];const k=x-b||1,w=n.width/a,A=n.height/s,S=e.config.showValues,E=e.config.heatmapValueFormat,M=[];for(let e=0;s>e;e++){const t=e*a;for(let n=0;a>n;n++){const o=t+n;if(0===m[o])continue;let r;switch(l){case"sum":r=v[o];break;case"mean":r=v[o]/m[o];break;default:r=m[o]}const i=(r-b)/k;M.push(X(n*w,(s-1-e)*A,w,A,`rgb(${220-(180*i+.5)|0},${220-(100*i+.5)|0},${255-(50*i+.5)|0})`,{xi:n,yi:e,value:r,count:m[o],sum:v[o]},S?{value:r,showValues:!0,valueFormat:E}:void 0))}}return M}(e,t,n);if(0===t.length)return[];const o=O(e.config.valueAccessor,"value"),r=E(e.config.xAccessor,"x"),a=E(e.config.yAccessor,"y"),s=new Map,l=new Map,c=Array(t.length),u=Array(t.length);for(let e=0;t.length>e;e++){const n=t[e],o=r(n),i=a(n);c[e]=o,u[e]=i,s.has(o)||s.set(o,s.size),l.has(i)||l.set(i,l.size)}const d=s.size,h=l.size;if(0===d||0===h)return[];const g=Array.from(s.keys()),f=Array.from(l.keys()),p=g.every(e=>"number"==typeof e&&!isNaN(e)),y=f.every(e=>"number"==typeof e&&!isNaN(e));if(p){g.sort((e,t)=>e-t),s.clear();for(let e=0;g.length>e;e++)s.set(g[e],e)}if(y){f.sort((e,t)=>e-t),l.clear();for(let e=0;f.length>e;e++)l.set(f[e],e)}const m=new Float64Array(t.length),v=new Float64Array(t.length),b=Array(t.length),x=new Map;let k=0;for(let e=0;t.length>e;e++){const n=t[e],r=s.get(c[e]),i=l.get(u[e]);if(void 0===r||void 0===i)continue;const a=o(n),h=i*d+r,g=x.get(h);let f;void 0!==g?f=g:(f=k++,x.set(h,f)),m[f]=h,v[f]=a,b[f]=n}let w=1/0,A=-1/0;for(let e=0;k>e;e++){const t=v[e];isFinite(t)&&(w>t&&(w=t),t>A&&(A=t))}if(!isFinite(w)||!isFinite(A))return[];const S=function(e){const t=e in K?e:"blues";let n=Q.get(t);if(n)return n;n=Array(256);const o=K[t]||i.interpolateBlues;for(let e=0;256>e;e++)n[e]=o(e/255);return Q.set(t,n),n}("string"==typeof e.config.colorScheme?e.config.colorScheme:"blues"),M=255/(A-w||1),j=n.width/d,C=n.height/h,P=e.config.showValues,_=e.config.heatmapValueFormat,L=[];for(let e=0;k>e;e++){const t=v[e];if(!isFinite(t))continue;const n=m[e],o=n%d;L.push(X(o*j,(h-1-(n-o)/d)*C,j,C,S[Math.min((t-w)*M+.5|0,255)],b[e],P?{value:t,showValues:!0,valueFormat:_}:void 0))}return L}(a,t,e);case"bar":{const e=function(e,t){var n;if(!e.config.binSize)return{nodes:[],binBoundaries:[]};const o=A(t,e.getX,e.getY,e.config.binSize,e.getCategory);if(0===o.size)return{nodes:[],binBoundaries:[]};let r=null;if(e.getCategory){const t=new Set;for(const e of o.values())for(const n of e.categories.keys())t.add(n);const n=e.config.barColors?Object.keys(e.config.barColors):[],i=new Set(n),a=Array.from(t).filter(e=>!i.has(e)).sort(),s=n.filter(e=>t.has(e)),l=s.join("\0")+""+a.join("\0");e.barCategoryCache&&e.barCategoryCache.key===l?r=e.barCategoryCache.order:(r=[...s,...a],e.barCategoryCache={key:l,order:r})}const i=[],a=e.scales,[s,l]=a.x.domain();for(const t of o.values()){const o=Math.max(t.start,s),c=Math.min(t.end,l);if(o>=c)continue;const u=a.x(o),d=a.x(c),h=Math.abs(d-u),g=h>2?1:0,f=Math.min(u,d)+g/2,p=Math.max(h-g,1);if(p>0)if(r&&t.categories.size>0){let o=0;for(const s of r){const r=t.categories.get(s)||0;if(0===r)continue;const l=a.y(o),c=a.y(o+r);i.push(q(f,Math.min(l,c),p,Math.abs(l-c),{fill:(null===(n=e.config.barColors)||void 0===n?void 0:n[s])||"#4e79a7"},{binStart:t.start,binEnd:t.end,total:t.total,category:s,categoryValue:r},s)),o+=r}}else{const e=a.y(0),n=a.y(t.total);i.push(q(f,Math.min(e,n),p,Math.abs(e-n),{fill:"#007bff"},{binStart:t.start,binEnd:t.end,total:t.total}))}}const c=new Set;for(const e of o.values())c.add(e.start),c.add(e.end);return{nodes:i,binBoundaries:Array.from(c).sort((e,t)=>e-t)}}(a,t);return this._barCategoryCache=null!==(n=a.barCategoryCache)&&void 0!==n?n:null,this._binBoundaries=e.binBoundaries,e.nodes}case"swarm":return function(e,t){var n,o,r,i;const a=[],s=e.config.swarmStyle||{},l=null!==(n=s.radius)&&void 0!==n?n:3,c=null!==(o=s.fill)&&void 0!==o?o:"#007bff",u=null!==(r=s.opacity)&&void 0!==r?r:.7,d=s.stroke,h=s.strokeWidth;for(const n of t){const t=e.getX(n),o=e.getY(n);if(null==o||Number.isNaN(o))continue;const r=e.scales.x(t),s=e.scales.y(o);let g=c;if(e.getCategory){const t=e.getCategory(n);g=(null===(i=e.config.barColors)||void 0===i?void 0:i[t])||g}const f={type:"point",x:r,y:s,r:l,style:{fill:g,opacity:u,stroke:d,strokeWidth:h},datum:n};e.getPointId&&(f.pointId=e.getPointId(n)+""),a.push(f)}return a}(a,t);case"waterfall":return function(e,t,n){var o,r,i;const a=[],s=e.scales,l=e.config.waterfallStyle,c=t.filter(t=>{const n=e.getY(t),o=e.getX(t);return null!=n&&!Number.isNaN(n)&&null!=o&&isFinite(o)});if(0===c.length)return a;const u=null!==(o=null==l?void 0:l.positiveColor)&&void 0!==o?o:"#28a745",d=null!==(r=null==l?void 0:l.negativeColor)&&void 0!==r?r:"#dc3545",h=null!==(i=null==l?void 0:l.gap)&&void 0!==i?i:1,g=null==l?void 0:l.stroke,f=null==l?void 0:l.strokeWidth;let p=0;for(let t=0;c.length>t;t++){const o=c[t],r=e.getX(o),i=e.getY(o),y=p+i;let m;m=c.length-1>t?e.getX(c[t+1])-r:t>0?r-e.getX(c[t-1]):0;const v=s.x(r),b=0!==m?s.x(r+m):v+n.width/10,x=Math.min(v,b)+h/2,k=Math.max(v,b)-h/2-x;if(0>=k){p=y;continue}const w=s.y(p),A=s.y(y);a.push(q(x,Math.min(w,A),k,Math.abs(w-A),{fill:0>i?d:u,stroke:g,strokeWidth:f},Object.assign(Object.assign({},o),{baseline:p,cumEnd:y,delta:i,_connectorStroke:null==l?void 0:l.connectorStroke,_connectorWidth:null==l?void 0:l.connectorWidth}))),p=y}return a}(a,t,e);case"candlestick":return function(e,t){var n,o;if(!e.getHigh||!e.getLow||!e.scales)return[];const r=null!==(n=e.config.candlestickRangeMode)&&void 0!==n&&n;if(!(r||e.getOpen&&e.getClose))return[];const i=[],a=e.config.candlestickStyle||{},s=a.rangeColor||"#6366f1",l=r?s:a.upColor||"#28a745",c=r?s:a.downColor||"#dc3545",u=r?s:a.wickColor||"#333",d=a.wickWidth||(r?2:1),h=t.map(t=>e.getX(t)).filter(e=>null!=e&&!Number.isNaN(e)).sort((e,t)=>e-t);let g=r?0:null!==(o=a.bodyWidth)&&void 0!==o?o:0;if(!r&&null==a.bodyWidth&&h.length>1){let t=1/0;for(let n=1;h.length>n;n++){const o=Math.abs(e.scales.x(h[n])-e.scales.x(h[n-1]));o>0&&t>o&&(t=o)}g=t!==1/0?Math.max(2,Math.min(.6*t,20)):6}else r||null!=a.bodyWidth||(g=6);for(const n of t){const t=e.getX(n);if(null==t||Number.isNaN(t))continue;const o=e.getHigh(n),a=e.getLow(n);if(null==o||Number.isNaN(o)||null==a||Number.isNaN(a))continue;const s=r?o:e.getOpen(n),h=r?a:e.getClose(n);if(!r&&[s,h].some(e=>null==e||Number.isNaN(e)))continue;const f=h>=s,p={type:"candlestick",x:e.scales.x(t),openY:e.scales.y(s),closeY:e.scales.y(h),highY:e.scales.y(o),lowY:e.scales.y(a),bodyWidth:g,upColor:l,downColor:c,wickColor:u,wickWidth:d,isUp:f,datum:n};r&&(p.isRange=!0),i.push(p)}return i}(a,t);default:return[]}}resolveBoundsStyle(e,t){const n=this.config.boundsStyle;return"function"==typeof n?n(t||{},e):n&&"object"==typeof n?n:{fill:this.resolveLineStyle(e,t).stroke||"#4e79a7",fillOpacity:.2,stroke:"none"}}computeDecayOpacity(e,t){const n=this.config.decay;return n&&t>1?D(n,e,t):1}applyDecay(e,t){this.config.decay&&function(e,t,n){var o,r;const i=n.length;if(1>=i)return;const a=new Map;for(let e=0;n.length>e;e++)a.set(n[e],e);for(const n of t){if("line"===n.type){const t=Array.isArray(n.datum)?n.datum:[];if(2>t.length)continue;const o=Array(t.length);let r=!1;for(let n=0;t.length>n;n++){const s=a.get(t[n]);null!=s?(o[n]=D(e,s,i),1>o[n]&&(r=!0)):o[n]=1}r&&(n._decayOpacities=o);continue}if("area"===n.type){const t=Array.isArray(n.datum)?n.datum:[],o=n.topPath?n.topPath.length:t.length;if(2>o)continue;if(t.length===o){const r=Array(o);let s=!1;for(let n=0;t.length>n;n++){const o=a.get(t[n]);null!=o?(r[n]=D(e,o,i),1>r[n]&&(s=!0)):r[n]=1}s&&(n._decayOpacities=r)}else{let r=1;for(const n of t){const t=a.get(n);if(null!=t){const n=D(e,t,i);r>n&&(r=n)}}if(1>r){const e=Array(o);e.fill(r),n._decayOpacities=e}}continue}const t=a.get(n.datum);if(null==t)continue;const s=D(e,t,i);if("heatcell"===n.type)n.style={opacity:s};else if("candlestick"===n.type)n._decayOpacity=s;else{const e=null!==(r=null===(o=n.style)||void 0===o?void 0:o.opacity)&&void 0!==r?r:1;n.style=Object.assign(Object.assign({},n.style),{opacity:e*s})}}}(this.config.decay,e,t)}applyPulse(e,t){this.config.pulse&&this.timestampBuffer&&function(e,t,n,o){var r,i;const a="undefined"!=typeof performance?performance.now():Date.now(),s=null!==(r=e.color)&&void 0!==r?r:"rgba(255,255,255,0.6)",l=null!==(i=e.glowRadius)&&void 0!==i?i:4,c=new Map;for(let e=0;n.length>e;e++)c.set(n[e],e);for(const n of t){if("line"===n.type)continue;if("area"===n.type){const t=Array.isArray(n.datum)?n.datum:[n.datum];let r=0;for(const n of t){const t=c.get(n);if(null==t)continue;const i=o.get(t);if(null==i)continue;const s=I(e,i,a);s>r&&(r=s)}r>0&&(n._pulseIntensity=r,n._pulseColor=s);continue}const t=c.get(n.datum);if(null==t)continue;const r=o.get(t);if(null==r)continue;const i=I(e,r,a);i>0&&(n._pulseIntensity=i,n._pulseColor=s,n._pulseGlowRadius=l)}}(this.config.pulse,e,t,this.timestampBuffer)}get hasActivePulses(){return!!this.config.pulse&&function(e,t){var n;if(!t||0===t.size)return!1;const o="undefined"!=typeof performance?performance.now():Date.now(),r=null!==(n=e.duration)&&void 0!==n?n:500,i=t.peek();return null!=i&&r>o-i}(this.config.pulse,this.timestampBuffer)}get transitionContext(){return{runtimeMode:this.config.runtimeMode,getX:this.getX,getY:this.getY,getCategory:this.getCategory}}snapshotPositions(){!function(e,t,n,o){var r,i,a;n.clear(),o.clear();for(let s=0;t.length>s;s++){const l=t[s],c=$(e,l,s);c&&("point"===l.type?n.set(c,{x:l.x,y:l.y,r:l.r,opacity:l.style.opacity}):"rect"===l.type?n.set(c,{x:l.x,y:l.y,w:l.w,h:l.h,opacity:l.style.opacity}):"heatcell"===l.type?n.set(c,{x:l.x,y:l.y,w:l.w,h:l.h,opacity:null===(r=l.style)||void 0===r?void 0:r.opacity}):"candlestick"===l.type?n.set(c,{x:l.x,y:l.openY}):"line"===l.type?o.set(c,{path:l.path.map(e=>[e[0],e[1]]),opacity:null===(i=l.style)||void 0===i?void 0:i.opacity}):"area"===l.type&&o.set(c,{topPath:l.topPath.map(e=>[e[0],e[1]]),bottomPath:l.bottomPath.map(e=>[e[0],e[1]]),opacity:null===(a=l.style)||void 0===a?void 0:a.opacity}))}}(this.transitionContext,this.scene,this.prevPositionMap,this.prevPathMap)}synthesizeIntroPositions(){var e,t,n;this.prevPositionMap.clear(),this.prevPathMap.clear();const o=null!==(t=null===(e=this.scales)||void 0===e?void 0:e.y(0))&&void 0!==t?t:0;for(let e=0;this.scene.length>e;e++){const t=this.scene[e],r=$(this.transitionContext,t,e);r&&("point"===t.type?this.prevPositionMap.set(r,{x:t.x,y:t.y,r:0,opacity:0}):"rect"===t.type?this.prevPositionMap.set(r,{x:t.x,y:o,w:t.w,h:0,opacity:null!==(n=t.style.opacity)&&void 0!==n?n:1}):"heatcell"===t.type?this.prevPositionMap.set(r,{x:t.x,y:t.y,w:t.w,h:t.h,opacity:0}):"line"===t.type?(t._introClipFraction=0,this.prevPathMap.set(r,{path:t.path.map(e=>[e[0],e[1]]),opacity:t.style.opacity})):"area"===t.type&&(t._introClipFraction=0,this.prevPathMap.set(r,{topPath:t.topPath.map(e=>[e[0],e[1]]),bottomPath:t.bottomPath.map(e=>[e[0],e[1]]),opacity:t.style.opacity})))}}startTransition(){if(!this.config.transition)return;const e=function(e,t,n,o,r){var i,a,s,l,c,u,d,h,g,f,p,y,m,v,b,x,k,w,A,S,O,E,M,j,C,P,_,L;if(0===o.size&&0===r.size)return n;const T=null!==(i=t.duration)&&void 0!==i?i:300;if(n.exitNodes.length>0){const e=new Set(n.exitNodes);n.scene=n.scene.filter(t=>!e.has(t)),n.exitNodes=[]}let R=!1;const B=new Set,D=new Set;for(let t=0;n.scene.length>t;t++){const i=n.scene[t],A=$(e,i,t);if(!A)continue;if(i._transitionKey=A,"line"===i.type||"area"===i.type){const e=r.get(A);if(e){if(D.add(A),"line"===i.type&&e.path&&e.path.length===i.path.length){i._targetPath=i.path.map(e=>[e[0],e[1]]),i._prevPath=e.path;for(let t=0;i.path.length>t;t++)i.path[t]=[e.path[t][0],e.path[t][1]];R=!0}else if("area"===i.type&&e.topPath&&e.bottomPath&&e.topPath.length===i.topPath.length&&e.bottomPath.length===i.bottomPath.length){i._targetTopPath=i.topPath.map(e=>[e[0],e[1]]),i._targetBottomPath=i.bottomPath.map(e=>[e[0],e[1]]),i._prevTopPath=e.topPath,i._prevBottomPath=e.bottomPath;for(let t=0;i.topPath.length>t;t++)i.topPath[t]=[e.topPath[t][0],e.topPath[t][1]];for(let t=0;i.bottomPath.length>t;t++)i.bottomPath[t]=[e.bottomPath[t][0],e.bottomPath[t][1]];R=!0}i._targetOpacity=null!==(a=i.style.opacity)&&void 0!==a?a:1,i._startOpacity=null!==(l=null!==(s=e.opacity)&&void 0!==s?s:i.style.opacity)&&void 0!==l?l:1}else i._targetOpacity=null!==(c=i.style.opacity)&&void 0!==c?c:1,i._startOpacity=0,i.style=Object.assign(Object.assign({},i.style),{opacity:0}),R=!0;continue}const S=o.get(A);if("point"===i.type)if(S){B.add(A);const e={x:i.x,y:i.y,r:i.r};i._targetOpacity=null!==(u=i.style.opacity)&&void 0!==u?u:1,S.x===e.x&&S.y===e.y&&S.r===e.r||(i._targetX=e.x,i._targetY=e.y,i._targetR=e.r,i.x=S.x,i.y=S.y,i.r=null!==(d=S.r)&&void 0!==d?d:i.r,R=!0)}else i._targetOpacity=null!==(h=i.style.opacity)&&void 0!==h?h:1,i.style=Object.assign(Object.assign({},i.style),{opacity:0}),R=!0;else if("rect"===i.type)if(S){B.add(A);const e={x:i.x,y:i.y,w:i.w,h:i.h};i._targetOpacity=null!==(g=i.style.opacity)&&void 0!==g?g:1,S.x===e.x&&S.y===e.y&&S.w===e.w&&S.h===e.h||(i._targetX=e.x,i._targetY=e.y,i._targetW=e.w,i._targetH=e.h,i.x=S.x,i.y=S.y,i.w=null!==(f=S.w)&&void 0!==f?f:i.w,i.h=null!==(p=S.h)&&void 0!==p?p:i.h,R=!0)}else i._targetOpacity=null!==(y=i.style.opacity)&&void 0!==y?y:1,i.style=Object.assign(Object.assign({},i.style),{opacity:0}),R=!0;else if("heatcell"===i.type)if(S){B.add(A);const e={x:i.x,y:i.y,w:i.w,h:i.h};i._targetOpacity=null!==(v=null===(m=i.style)||void 0===m?void 0:m.opacity)&&void 0!==v?v:1,S.x===e.x&&S.y===e.y&&S.w===e.w&&S.h===e.h||(i._targetX=e.x,i._targetY=e.y,i._targetW=e.w,i._targetH=e.h,i.x=S.x,i.y=S.y,i.w=null!==(b=S.w)&&void 0!==b?b:i.w,i.h=null!==(x=S.h)&&void 0!==x?x:i.h,R=!0)}else i._targetOpacity=null!==(w=null===(k=i.style)||void 0===k?void 0:k.opacity)&&void 0!==w?w:1,i.style=Object.assign(Object.assign({},i.style||{}),{opacity:0}),R=!0}for(const[e,t]of r)if(!D.has(e))if(e.startsWith("l:")&&t.path){const o={type:"line",path:t.path.map(e=>[e[0],e[1]]),group:e.slice(2),style:{stroke:"#999",strokeWidth:1,opacity:null!==(A=t.opacity)&&void 0!==A?A:1},_targetOpacity:0,_transitionKey:e,datum:null};n.exitNodes.push(o),R=!0}else if(e.startsWith("a:")&&t.topPath&&t.bottomPath){const o={type:"area",topPath:t.topPath.map(e=>[e[0],e[1]]),bottomPath:t.bottomPath.map(e=>[e[0],e[1]]),group:e.slice(2),style:{fill:"#999",opacity:null!==(S=t.opacity)&&void 0!==S?S:1},_targetOpacity:0,_transitionKey:e,datum:null};n.exitNodes.push(o),R=!0}for(const[e,t]of o)if(!B.has(e)){if(e.startsWith("p:")){const o={type:"point",x:t.x,y:t.y,r:null!==(O=t.r)&&void 0!==O?O:3,style:{opacity:null!==(E=t.opacity)&&void 0!==E?E:1},datum:null,_targetOpacity:0,_transitionKey:e};n.exitNodes.push(o)}else if(e.startsWith("r:")){const o={type:"rect",x:t.x,y:t.y,w:null!==(M=t.w)&&void 0!==M?M:0,h:null!==(j=t.h)&&void 0!==j?j:0,style:{opacity:null!==(C=t.opacity)&&void 0!==C?C:1,fill:"#999"},datum:null,_targetOpacity:0,_transitionKey:e};n.exitNodes.push(o)}else if(e.startsWith("h:")){const o={type:"heatcell",x:t.x,y:t.y,w:null!==(P=t.w)&&void 0!==P?P:0,h:null!==(_=t.h)&&void 0!==_?_:0,fill:"#999",datum:null,style:{opacity:null!==(L=t.opacity)&&void 0!==L?L:1},_targetOpacity:0,_transitionKey:e};n.exitNodes.push(o)}R=!0}return n.exitNodes.length>0&&(n.scene=[...n.scene,...n.exitNodes]),R&&(n.activeTransition={startTime:F(),duration:T}),n}(this.transitionContext,this.config.transition,{scene:this.scene,exitNodes:this.exitNodes,activeTransition:this.activeTransition},this.prevPositionMap,this.prevPathMap);this.scene=e.scene,this.exitNodes=e.exitNodes,this.activeTransition=e.activeTransition}advanceTransition(e){if(!this.activeTransition||!this.config.transition)return!1;const t={scene:this.scene,exitNodes:this.exitNodes,activeTransition:this.activeTransition},n=function(e,t,n,o){var r,i,a,s,l;if(!n.activeTransition)return!1;const c=H(e,n.activeTransition),u=N(c,"linear"===t.easing?"linear":"ease-out-cubic");for(const e of n.scene){const t=e._transitionKey;if("point"===e.type){if(void 0!==e._targetOpacity){const n=t?o.get(t):void 0,i=n?null!==(r=n.opacity)&&void 0!==r?r:1:0;e.style.opacity=W(i,e._targetOpacity,u)}if(void 0===e._targetX)continue;if(!t)continue;const n=o.get(t);if(!n)continue;e.x=W(n.x,e._targetX,u),e.y=W(n.y,e._targetY,u),void 0!==e._targetR&&void 0!==n.r&&(e.r=W(n.r,e._targetR,u))}else if("rect"===e.type){if(void 0!==e._targetOpacity){const n=t?o.get(t):void 0,r=n?null!==(i=n.opacity)&&void 0!==i?i:1:0;e.style.opacity=W(r,e._targetOpacity,u)}if(void 0===e._targetX)continue;if(!t)continue;const n=o.get(t);if(!n)continue;e.x=W(n.x,e._targetX,u),e.y=W(n.y,e._targetY,u),void 0!==n.w&&(e.w=W(n.w,e._targetW,u)),void 0!==n.h&&(e.h=W(n.h,e._targetH,u))}else if("heatcell"===e.type){if(void 0!==e._targetOpacity){const n=t?o.get(t):void 0,r=n?null!==(a=n.opacity)&&void 0!==a?a:1:0;e.style=Object.assign(Object.assign({},e.style||{}),{opacity:W(r,e._targetOpacity,u)})}if(void 0===e._targetX)continue;if(!t)continue;const n=o.get(t);if(!n)continue;e.x=W(n.x,e._targetX,u),e.y=W(n.y,e._targetY,u),void 0!==n.w&&(e.w=W(n.w,e._targetW,u)),void 0!==n.h&&(e.h=W(n.h,e._targetH,u))}else if("line"===e.type){if(void 0!==e._targetOpacity){const t=null!==(s=e._startOpacity)&&void 0!==s?s:0;e.style=Object.assign(Object.assign({},e.style),{opacity:W(t,e._targetOpacity,u)})}void 0!==e._introClipFraction&&(e._introClipFraction=u);const t=e._prevPath,n=e._targetPath;if(t&&n&&t.length===e.path.length)for(let o=0;e.path.length>o;o++)e.path[o][0]=W(t[o][0],n[o][0],u),e.path[o][1]=W(t[o][1],n[o][1],u)}else if("area"===e.type){if(void 0!==e._targetOpacity){const t=null!==(l=e._startOpacity)&&void 0!==l?l:0;e.style=Object.assign(Object.assign({},e.style),{opacity:W(t,e._targetOpacity,u)})}void 0!==e._introClipFraction&&(e._introClipFraction=u);const t=e._prevTopPath,n=e._prevBottomPath,o=e._targetTopPath,r=e._targetBottomPath;if(t&&o&&t.length===e.topPath.length)for(let n=0;e.topPath.length>n;n++)e.topPath[n][0]=W(t[n][0],o[n][0],u),e.topPath[n][1]=W(t[n][1],o[n][1],u);if(n&&r&&n.length===e.bottomPath.length)for(let t=0;e.bottomPath.length>t;t++)e.bottomPath[t][0]=W(n[t][0],r[t][0],u),e.bottomPath[t][1]=W(n[t][1],r[t][1],u)}}if(c>=1){for(const e of n.scene){if(void 0!==e._targetOpacity){const t=e._targetOpacity;e.style=Object.assign(Object.assign({},"line"===e.type||"area"===e.type?e.style:e.style||{}),{opacity:0===t?0:t}),e._targetOpacity=void 0}if("point"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,e.y=e._targetY,void 0!==e._targetR&&(e.r=e._targetR),e._targetX=void 0,e._targetY=void 0,e._targetR=void 0}else if("rect"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,e.y=e._targetY,e.w=e._targetW,e.h=e._targetH,e._targetX=void 0,e._targetY=void 0,e._targetW=void 0,e._targetH=void 0}else if("heatcell"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,e.y=e._targetY,e.w=e._targetW,e.h=e._targetH,e._targetX=void 0,e._targetY=void 0,e._targetW=void 0,e._targetH=void 0}else if("line"===e.type){const t=e._targetPath;if(t)for(let n=0;e.path.length>n;n++)e.path[n]=t[n];e._prevPath=void 0,e._targetPath=void 0,e._introClipFraction=void 0}else if("area"===e.type){const t=e._targetTopPath,n=e._targetBottomPath;if(t)for(let n=0;e.topPath.length>n;n++)e.topPath[n]=t[n];if(n)for(let t=0;e.bottomPath.length>t;t++)e.bottomPath[t]=n[t];e._prevTopPath=void 0,e._prevBottomPath=void 0,e._targetTopPath=void 0,e._targetBottomPath=void 0,e._introClipFraction=void 0}}if(n.exitNodes.length>0){const e=new Set(n.exitNodes);n.scene=n.scene.filter(t=>!e.has(t)),n.exitNodes=[]}return n.activeTransition=null,!1}return!0}(e,this.config.transition,t,this.prevPositionMap);return this.scene=t.scene,this.exitNodes=t.exitNodes,this.activeTransition=t.activeTransition,n}groupData(e){if(!this.getGroup)return[{key:"_default",data:e}];const t=new Map;for(const n of e){const e=this.getGroup(n);t.has(e)||t.set(e,[]),t.get(e).push(n)}return Array.from(t.entries()).map(([e,t])=>({key:e,data:t}))}resolveColorMap(e){if(this._colorMapCache&&this._colorMapCache.version===this._ingestVersion)return this._colorMapCache.map;const t=new Set;for(const n of e){const e=this.getColor(n);e&&t.add(e)}const n=Array.from(t).sort(),o=n.join("\0");if(this._colorMapCache&&this._colorMapCache.key===o)return this._colorMapCache.version=this._ingestVersion,this._colorMapCache.map;const r=Array.isArray(this.config.colorScheme)?this.config.colorScheme:this.config.themeCategorical||P,i=new Map;for(let e=0;n.length>e;e++)i.set(n[e],r[e%r.length]);return this._colorMapCache={key:o,map:i,version:this._ingestVersion},i}resolveLineStyle(e,t){const n=this.config.lineStyle;if("function"==typeof n){const o=n(t||{},e);if(o&&!o.stroke&&e){const t=this.resolveGroupColor(e);if(t)return Object.assign(Object.assign({},o),{stroke:t})}return o}return n&&"object"==typeof n?{stroke:n.stroke||"#007bff",strokeWidth:n.strokeWidth||2,strokeDasharray:n.strokeDasharray,fill:n.fill,fillOpacity:n.fillOpacity,opacity:n.opacity}:{stroke:this.resolveGroupColor(e)||"#007bff",strokeWidth:2}}resolveAreaStyle(e,t){var n;if(this.config.areaStyle){const n=this.config.areaStyle(t||{});if(n&&!n.fill&&e){const t=this.resolveGroupColor(e);if(t)return Object.assign(Object.assign({},n),{fill:t,stroke:n.stroke||t})}return n}const o=this.config.lineStyle;if("function"==typeof o){const n=o(t||{},e);if(n&&!n.fill&&e){const t=this.resolveGroupColor(e);if(t)return Object.assign(Object.assign({},n),{fill:t,stroke:n.stroke||t})}return n}if(o&&"object"==typeof o)return{fill:o.fill||o.stroke||"#4e79a7",fillOpacity:null!==(n=o.fillOpacity)&&void 0!==n?n:.7,stroke:o.stroke||"#4e79a7",strokeWidth:o.strokeWidth||2};const r=this.resolveGroupColor(e)||"#4e79a7";return{fill:r,fillOpacity:.7,stroke:r,strokeWidth:2}}resolveGroupColor(e){if(this._colorMapCache){const t=this._colorMapCache.map.get(e);if(t)return t}const t=this._groupColorMap.get(e);if(t)return t;const n=Array.isArray(this.config.colorScheme)?this.config.colorScheme:this.config.themeCategorical||P,o=n[this._groupColorMap.size%n.length];return this._groupColorMap.set(e,o),o}getBufferArray(){return!this._bufferDirty&&this._bufferArrayCache||(this._bufferArrayCache=this.buffer.toArray(),this._bufferDirty=!1),this._bufferArrayCache}getData(){return this.getBufferArray()}remove(e){if(!this.getPointId)throw Error("remove() requires pointIdAccessor to be configured");this.config.transition&&this.scene.length>0&&this.snapshotPositions();const t=new Set(Array.isArray(e)?e:[e]),n=this.getPointId,o=e=>t.has(n(e));if(this.timestampBuffer&&this.timestampBuffer.size>0){const e=this.timestampBuffer.toArray(),t=new Set;this.buffer.forEach((e,n)=>{o(e)&&t.add(n)}),this.timestampBuffer.clear();for(let n=0;e.length>n;n++)t.has(n)||this.timestampBuffer.push(e[n])}const r=this.buffer.remove(o);if(0===r.length)return r;for(const e of r)this.xExtent.evict(this.getX(e)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.evict(this.getHigh(e)),this.yExtent.evict(this.getLow(e))):(this.yExtent.evict(this.getY(e)),this.getY0&&this.yExtent.evict(this.getY0(e)));return this.needsFullRebuild=!0,this._bufferDirty=!0,this._ingestVersion++,r}update(e,t){if(!this.getPointId)throw Error("update() requires pointIdAccessor to be configured");const n=new Set(Array.isArray(e)?e:[e]),o=this.getPointId,r=new Set;this.buffer.forEach((e,t)=>{n.has(o(e))&&r.add(t)});const i=this.buffer.update(e=>n.has(o(e)),t);if(0===i.length)return i;for(const e of i)this.xExtent.evict(this.getX(e)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.evict(this.getHigh(e)),this.yExtent.evict(this.getLow(e))):(this.yExtent.evict(this.getY(e)),this.getY0&&this.yExtent.evict(this.getY0(e)));return this.buffer.forEach((e,t)=>{r.has(t)&&(this.xExtent.push(this.getX(e)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.push(this.getHigh(e)),this.yExtent.push(this.getLow(e))):(this.yExtent.push(this.getY(e)),this.getY0&&this.yExtent.push(this.getY0(e))))}),this.needsFullRebuild=!0,this._bufferDirty=!0,this._ingestVersion++,i}getBinBoundaries(){return this._binBoundaries}getExtents(){return this.xExtent.min===1/0?null:{x:this.xExtent.extent,y:this.yExtent.extent}}clear(){this.buffer.clear(),this.xExtent.clear(),this.yExtent.clear(),this._hasRenderedOnce=!1,this.timestampBuffer&&this.timestampBuffer.clear(),this.prevPositionMap.clear(),this.prevPathMap.clear(),this.exitNodes=[],this.activeTransition=null,this.lastIngestTime=0,this.needsFullRebuild=!0,this._bufferDirty=!0,this._bufferArrayCache=null,this.lastLayout=null,this.scales=null,this.scene=[],this._quadtree=null,this._maxPointRadius=0,this._colorMapCache=null,this._groupColorMap=new Map,this._barCategoryCache=null,this._binBoundaries=[],this._stackExtentCache=null,this.version++}get size(){return this.buffer.size}getBuffer(){return this.buffer}getXAccessor(){return this.getX}getYAccessor(){return this.getY}getCategoryAccessor(){return this.getCategory}updateConfig(e){var t,n,o,r;const i=Object.assign({},this.config);("colorScheme"in e||"themeCategorical"in e||"colorAccessor"in e)&&(this._colorMapCache=null,this._groupColorMap=new Map),("barColors"in e||"colorScheme"in e)&&(this._barCategoryCache=null),("normalize"in e||"extentPadding"in e||"xAccessor"in e||"yAccessor"in e||"timeAccessor"in e||"valueAccessor"in e||"groupAccessor"in e||"categoryAccessor"in e||"chartType"in e||"runtimeMode"in e)&&(this._stackExtentCache=null);let a=!1;Object.assign(this.config,e);const s="chartType"in e&&e.chartType!==i.chartType||"runtimeMode"in e&&e.runtimeMode!==i.runtimeMode;if(s||"xAccessor"in e||"yAccessor"in e||"timeAccessor"in e||"valueAccessor"in e){const l=s||!S(null!==(t=e.xAccessor)&&void 0!==t?t:e.timeAccessor,null!==(n=i.xAccessor)&&void 0!==n?n:i.timeAccessor),c=s||!S(null!==(o=e.yAccessor)&&void 0!==o?o:e.valueAccessor,null!==(r=i.yAccessor)&&void 0!==r?r:i.valueAccessor);(l||c)&&(["bar","swarm","waterfall"].includes(this.config.chartType)||"streaming"===this.config.runtimeMode?(this.getX=O(this.config.timeAccessor||this.config.xAccessor,"time"),this.getY=O(this.config.valueAccessor||this.config.yAccessor,"value")):(this.getX=O(this.config.xAccessor,"x"),this.getY=O(this.config.yAccessor,"y")),a=!0)}if("groupAccessor"in e&&!S(e.groupAccessor,i.groupAccessor)&&(this.getGroup=null!=this.config.groupAccessor?M(this.config.groupAccessor):void 0,a=!0),"categoryAccessor"in e&&!S(e.categoryAccessor,i.categoryAccessor)&&(this.getCategory=null!=this.config.categoryAccessor?M(this.config.categoryAccessor):void 0,a=!0),"sizeAccessor"in e&&!S(e.sizeAccessor,i.sizeAccessor)&&(this.getSize=this.config.sizeAccessor?O(this.config.sizeAccessor,"size"):void 0,a=!0),"colorAccessor"in e&&!S(e.colorAccessor,i.colorAccessor)&&(this.getColor=null!=this.config.colorAccessor?M(this.config.colorAccessor):void 0,a=!0),"y0Accessor"in e&&!S(e.y0Accessor,i.y0Accessor)&&(this.getY0=this.config.y0Accessor?O(this.config.y0Accessor,"y0"):void 0,a=!0),"pointIdAccessor"in e&&!S(e.pointIdAccessor,i.pointIdAccessor)&&(this.getPointId=null!=this.config.pointIdAccessor?M(this.config.pointIdAccessor):void 0,a=!0),"candlestick"===this.config.chartType&&("openAccessor"in e&&!S(e.openAccessor,i.openAccessor)||"closeAccessor"in e&&!S(e.closeAccessor,i.closeAccessor)||"highAccessor"in e&&!S(e.highAccessor,i.highAccessor)||"lowAccessor"in e&&!S(e.lowAccessor,i.lowAccessor))){const e=null!=this.config.openAccessor,t=null!=this.config.closeAccessor;this.getOpen=e?O(this.config.openAccessor,"open"):void 0,this.getHigh=O(this.config.highAccessor,"high"),this.getLow=O(this.config.lowAccessor,"low"),this.getClose=t?O(this.config.closeAccessor,"close"):void 0,this.config.candlestickRangeMode=!e&&!t,a=!0}if(!a){const t=Object.keys(e).filter(e=>!e.endsWith("Accessor")&&"timeAccessor"!==e&&"valueAccessor"!==e);for(const n of t)if(e[n]!==i[n]){a=!0;break}}a&&(this.needsFullRebuild=!0)}}function J(e,t,n){return n.x>e||e>n.x+n.w||n.y>t||t>n.y+n.h?{hit:!1,cx:0,cy:0}:{hit:!0,cx:n.x+n.w/2,cy:n.y+n.h/2}}function ee(e,t=30){return Math.max((null!=e?e:4)+5,12,t)}function te(e){return e instanceof Date?e:"number"==typeof e&&e>1e9?new Date(e):null}function ne(e,t){const n=te(e);if(!n)return!1;const o=te(t);return!o||n.getFullYear()!==o.getFullYear()||n.getMonth()!==o.getMonth()}function oe(e){let t=e%(2*Math.PI);return 0>t&&(t+=2*Math.PI),t}function re(e,t,n,o,r){const i=Math.max(o,r+5,12),a=t-i,s=t+i,l=n-i,c=n+i;let u=null,d=1/0;return e.visit((e,r,i,h,g)=>{if(r>s||a>h||i>c||l>g)return!0;if(!e.length){let r=e;do{const e=r.data,i=e.x-t,a=e.y-n,s=Math.sqrt(i*i+a*a);ee(e.r,o)>=s&&d>s&&(u=e,d=s),r=r.next}while(r)}return!1}),u?{node:u,distance:d}:null}function ie(e,t,n,o=30,r,i=0){let a=null;if(r){const e=re(r,t,n,o,i);e&&(a={node:e.node,datum:e.node.datum,x:e.node.x,y:e.node.y,distance:e.distance})}for(const i of e){let e=null;switch(i.type){case"point":if(r)break;e=se(i,t,n,o);break;case"line":e=le(i,t,n,o);break;case"rect":e=ue(i,t,n);break;case"heatcell":e=de(i,t,n);break;case"area":if(!1===i.interactive)break;e=ge(i,t,n);break;case"candlestick":e=he(i,t,n)}e&&o>e.distance&&(a&&e.distance>=a.distance||(a=e))}return a}function ae(e,t,n){if(0===e.length)return null;const o=fe(e,t);if(0>o)return null;if(Math.abs(e[o][0]-t)>n)return null;let r=o,i=o;o>0&&e[o][0]>=t?(r=o-1,i=o):e.length-1>o&&(r=o,i=o+1);const[a,s]=e[r],[l,c]=e[i];return l===a?s:s+Math.max(0,Math.min(1,(t-a)/(l-a)))*(c-s)}function se(e,t,n,o=30){const r=t-e.x,i=n-e.y,a=Math.sqrt(r*r+i*i);return a>ee(e.r,o)?null:{node:e,datum:e.datum,x:e.x,y:e.y,distance:a}}function le(e,t,n,o=30){var r,i,a,s;if(0===e.path.length)return null;const l=fe(e.path,t);if(0>l)return null;const[c,u]=e.path[l];let d;if(e.path.length>1){let o=1/0;const r=Math.max(0,l-1),i=Math.min(e.path.length-2,l);for(let a=r;i>=a;a++){const[r,i]=e.path[a],[s,l]=e.path[a+1],c=ce(t,n,r,i,s,l);o>c&&(o=c)}d=o}else{const e=t-c,o=n-u;d=Math.sqrt(e*e+o*o)}const h=null!==(s=null!==(i=null===(r=e.style)||void 0===r?void 0:r.strokeWidth)&&void 0!==i?i:null===(a=e.style)||void 0===a?void 0:a.lineWidth)&&void 0!==s?s:1;return d>Math.max(5,h/2+2,o)?null:{node:e,datum:Array.isArray(e.datum)&&e.datum[l]?e.datum[l]:e.datum,x:c,y:u,distance:d}}function ce(e,t,n,o,r,i){const a=r-n,s=i-o,l=a*a+s*s;if(0===l)return Math.sqrt(Math.pow(e-n,2)+Math.pow(t-o,2));let c=((e-n)*a+(t-o)*s)/l;c=Math.max(0,Math.min(1,c));const u=o+c*s;return Math.sqrt(Math.pow(e-(n+c*a),2)+Math.pow(t-u,2))}function ue(e,t,n){const o=J(t,n,e);return o.hit?{node:e,datum:e.datum,x:o.cx,y:o.cy,distance:0}:null}function de(e,t,n){const o=J(t,n,e);return o.hit?{node:e,datum:e.datum,x:o.cx,y:o.cy,distance:0}:null}function he(e,t,n){const o=e.bodyWidth/2,r=Math.min(e.openY,e.closeY);if(!(e.x-o-3>t||t>e.x+o+3||e.highY-3>n||n>e.lowY+3)){const o=r+Math.max(Math.max(e.openY,e.closeY)-r,1)/2,i=t-e.x,a=n-o;return{node:e,datum:e.datum,x:e.x,y:o,distance:Math.sqrt(i*i+a*a)}}return null}function ge(e,t,n){if(0===e.topPath.length)return null;const o=fe(e.topPath,t);if(0>o)return null;const[r,i]=e.topPath[o],a=t-r,s=n-i,l=Math.sqrt(a*a+s*s);return{node:e,datum:Array.isArray(e.datum)&&e.datum[o]?e.datum[o]:e.datum,x:r,y:i,distance:l}}function fe(e,t){if(0===e.length)return-1;let n=0,o=e.length-1;for(;o>n;){const r=n+o>>1;t>e[r][0]?n=r+1:o=r}return n>0&&Math.abs(e[n][0]-t)>=Math.abs(e[n-1][0]-t)?n-1:n}function pe(e){var t,n;const o=new Map;for(const n of e){const e=null!==(t=n.group)&&void 0!==t?t:"_default";let r=o.get(e);r||(r=[],o.set(e,r)),r.push(n)}for(const e of o.values()){e.sort((e,t)=>e.x-t.x||e.y-t.y);for(let t=0;e.length>t;t++)e[t]._groupIndex=t}const r=Array.from(o.keys()).sort((e,t)=>{const n=o.get(e),r=o.get(t);return(n.length>0?n[0].y:0)-(r.length>0?r[0].y:0)}),i=Array.from(o.values()).flat();i.sort((e,t)=>e.x-t.x||e.y-t.y);const a=new Map;for(let e=0;i.length>e;e++){i[e]._flatIndex=e;const t=null===(n=i[e].datum)||void 0===n?void 0:n.id;null!=t&&a.set(t+"",e)}return{flat:i,groups:r,byGroup:o,idToIdx:a}}function ye(e,t){var n,o;if(0===e.flat.length)return{flatIndex:-1,group:"_default",indexInGroup:-1};const r=Math.max(0,Math.min(t,e.flat.length-1)),i=e.flat[r];return{flatIndex:r,group:null!==(n=i.group)&&void 0!==n?n:"_default",indexInGroup:null!==(o=i._groupIndex)&&void 0!==o?o:0}}function me(e,t,n){const{group:o,indexInGroup:r}=t,i=n.byGroup.get(o);switch(e){case"ArrowRight":return i.length-1>r?i[r+1]._flatIndex:t.flatIndex;case"ArrowLeft":return r>0?i[r-1]._flatIndex:t.flatIndex;case"ArrowDown":{const e=n.groups.indexOf(o);return n.groups.length-1>e?ve(n,n.groups[e+1],i[r]):t.flatIndex}case"ArrowUp":{const e=n.groups.indexOf(o);return e>0?ve(n,n.groups[e-1],i[r]):t.flatIndex}case"PageDown":return Math.min(t.flatIndex+Math.max(1,Math.floor(.1*n.flat.length)),n.flat.length-1);case"PageUp":return Math.max(t.flatIndex-Math.max(1,Math.floor(.1*n.flat.length)),0);case"Home":return 0;case"End":return n.flat.length-1;case"Escape":return-1;default:return null}}function ve(e,t,n){const o=e.byGroup.get(t);let r=0,i=Math.abs(o[0].x-n.x);for(let e=1;o.length>e;e++){const t=Math.abs(o[e].x-n.x);i>t&&(i=t,r=e)}return o[r]._flatIndex}function be(e){const t=e.datum||{};return Object.assign(Object.assign({},"object"!=typeof t||null===t||Array.isArray(t)?{}:t),{data:t,x:e.x,y:e.y,time:e.x,value:e.y})}function xe(t,n,o,r,i,a){e.useEffect(()=>{if(!t)return;const e=setInterval(()=>{var e;const s=n.current;if(!s||0===s.lastIngestTime)return;const l="undefined"!=typeof performance?performance.now():Date.now(),c=null!==(e=t.threshold)&&void 0!==e?e:5e3,u=l-s.lastIngestTime>c;u!==i&&(a(u),o.current=!0,r())},1e3);return()=>clearInterval(e)},[t,i,r])}Z.QUADTREE_THRESHOLD=500;const ke={fill:e=>p.createElement("rect",{style:e,width:16,height:16}),line:e=>p.createElement("line",{style:e,x1:0,y1:0,x2:16,y2:16})};function we(e,t,n,o){let r;return r="function"==typeof n?n(e):(0,ke[n])(o(e,t)),r}function Ae(){return p.createElement("path",{d:"M4,8.8 L7.2,12 L12.8,4.8",fill:"none",stroke:"white",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}function Se(e,t,n){return n&&n.size>0?n.has(e.label)?1:.3:null!=t?e.label===t?1:.3:1}function Oe({config:e,orientation:t="vertical",width:n=100}){const{colorFn:o,domain:r,label:i,format:a}=e,s=a||(e=>Math.round(100*e)/100+""),l="grad-legend-"+p.useId();if("horizontal"===t){const e=12,t=Math.min(n,200),a=Math.max(0,(n-t)/2),c=[];for(let e=0;64>=e;e++){const t=e/64;c.push(p.createElement("stop",{key:e,offset:100*t+"%",stopColor:o(r[0]+t*(r[1]-r[0]))}))}return p.createElement("g",{"aria-label":i||"Gradient legend"},p.createElement("defs",null,p.createElement("linearGradient",{id:l,x1:"0%",y1:"0%",x2:"100%",y2:"0%"},c)),i&&p.createElement("text",{x:a+t/2,y:-4,textAnchor:"middle",fontSize:11,fill:"var(--semiotic-text, #333)"},i),p.createElement("rect",{x:a,y:0,width:t,height:e,fill:`url(#${l})`,rx:2}),p.createElement("text",{x:a,y:e+12,textAnchor:"start",fontSize:10,fill:"var(--semiotic-text-secondary, #666)"},s(r[0])),p.createElement("text",{x:a+t,y:e+12,textAnchor:"end",fontSize:10,fill:"var(--semiotic-text-secondary, #666)"},s(r[1])))}const c=[];for(let e=0;64>=e;e++){const t=e/64;c.push(p.createElement("stop",{key:e,offset:100*t+"%",stopColor:o(r[1]-t*(r[1]-r[0]))}))}return p.createElement("g",{"aria-label":i||"Gradient legend"},i&&p.createElement("text",{x:7,y:-6,textAnchor:"middle",fontSize:11,fill:"var(--semiotic-text, #333)"},i),p.createElement("defs",null,p.createElement("linearGradient",{id:l,x1:"0%",y1:"0%",x2:"0%",y2:"100%"},c)),p.createElement("rect",{x:0,y:0,width:14,height:100,fill:`url(#${l})`,rx:2}),p.createElement("text",{x:19,y:10,fontSize:10,fill:"var(--semiotic-text-secondary, #666)"},s(r[1])),p.createElement("text",{x:19,y:100,fontSize:10,fill:"var(--semiotic-text-secondary, #666)"},s(r[0])))}function Ee(e){const{legendGroups:t,customClickBehavior:n,customHoverBehavior:o,highlightedCategory:r,isolatedCategories:i,legendInteraction:a,title:s="Legend",width:l=100,height:c=20,orientation:u="vertical"}=e,[d,h]=p.useState(0),[g,f]=p.useState(0),y=p.useCallback((e,t)=>{h(e),f(t)},[]),m="vertical"===u?(({legendGroups:e,width:t,customClickBehavior:n,customHoverBehavior:o,highlightedCategory:r,isolatedCategories:i,focusedGroupIndex:a,focusedItemIndex:s,onFocusedIndexChange:l,legendInteraction:c})=>{let u=24;const d=[];return e.forEach((e,h)=>{u+=5,d.push(p.createElement("line",{key:"legend-top-line legend-symbol-"+h,stroke:"gray",x1:0,y1:u,x2:t,y2:u})),u+=8,e.label&&(u+=16,d.push(p.createElement("text",{key:"legend-text-"+h,y:u,className:"legend-group-label",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)"},e.label)),u+=8),d.push(p.createElement("g",{key:"legend-group-"+h,className:"legend-item",transform:`translate(0,${u})`},((e,t,n,o,r,i,a,s,l,c)=>{const{type:u="fill",styleFn:d,items:h}=e,g=[];let f=0;const y=!(!t&&!n),m="isolate"===c||void 0===c&&null!=r;return h.forEach((e,c)=>{const v=we(e,c,u,d),b=Se(e,o,r),x=r&&r.size>0&&r.has(e.label);g.push(p.createElement("g",{key:"legend-item-"+c,transform:`translate(0,${f})`,onClick:t?()=>t(e):void 0,onMouseEnter:n?()=>n(e):void 0,onMouseLeave:n?()=>n(null):void 0,tabIndex:y?s===i&&c===a?0:-1:void 0,role:y?"option":void 0,"aria-selected":y&&m?x||!1:void 0,"aria-current":y&&!m&&null!=o&&e.label===o||void 0,"aria-label":e.label,onKeyDown:y?n=>{var o;if("Enter"!==n.key&&" "!==n.key||(n.preventDefault(),t&&t(e)),"ArrowDown"===n.key||"ArrowUp"===n.key){n.preventDefault();const e=(c+("ArrowDown"===n.key?1:-1)+h.length)%h.length;l(s,e);const t=null===(o=n.currentTarget.parentElement)||void 0===o?void 0:o.children[e];t instanceof SVGElement&&t.focus()}}:void 0,onFocus:y?t=>{l(s,c),n&&n(e);const o=t.currentTarget.querySelector(".semiotic-legend-focus-ring");o&&o.setAttribute("visibility","visible")}:void 0,onBlur:y?e=>{n&&n(null);const t=e.currentTarget.querySelector(".semiotic-legend-focus-ring");t&&t.setAttribute("visibility","hidden")}:void 0,style:{cursor:y?"pointer":"default",opacity:b,transition:"opacity 150ms ease",pointerEvents:"all",outline:"none"}},y&&p.createElement("rect",{className:"semiotic-legend-focus-ring",x:-2,y:-2,width:24+7*e.label.length,height:20,fill:"none",stroke:"var(--semiotic-focus, #005fcc)",strokeWidth:2,rx:3,visibility:"hidden"}),v,x&&p.createElement(Ae,null),p.createElement("text",{y:8,x:22,dominantBaseline:"central",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)"},e.label))),f+=22}),g})(e,n,o,r,i,a,s,h,l,c))),u+=22*e.items.length+8}),d})({legendGroups:t||[],width:l,customClickBehavior:n,customHoverBehavior:o,highlightedCategory:r,isolatedCategories:i,focusedGroupIndex:d,focusedItemIndex:g,onFocusedIndexChange:y,legendInteraction:a}):(({legendGroups:e,height:t,width:n,customClickBehavior:o,customHoverBehavior:r,highlightedCategory:i,isolatedCategories:a,focusedGroupIndex:s,focusedItemIndex:l,onFocusedIndexChange:c,legendInteraction:u})=>{let d=0;const h=[];e.forEach((e,t)=>{let g=0;e.label&&(g+=16);const f=((e,t,n,o,r,i,a,s,l,c,u)=>{const{type:d="fill",styleFn:h,items:g}=e,f=[];let y=0,m=0;const v=!(!t&&!n),b="isolate"===c||void 0===c&&null!=r;g.forEach((e,c)=>{const x=we(e,c,d,h),k=Se(e,o,r),w=r&&r.size>0&&r.has(e.label),A=26+7*e.label.length;u&&u>0&&y>0&&y+A>u&&(m++,y=0),f.push(p.createElement("g",{key:"legend-item-"+c,transform:`translate(${y},${22*m})`,onClick:t?()=>t(e):void 0,onMouseEnter:n?()=>n(e):void 0,onMouseLeave:n?()=>n(null):void 0,tabIndex:v?s===i&&c===a?0:-1:void 0,role:v?"option":void 0,"aria-selected":v&&b?w||!1:void 0,"aria-current":v&&!b&&null!=o&&e.label===o||void 0,"aria-label":e.label,onKeyDown:v?n=>{var o;if("Enter"!==n.key&&" "!==n.key||(n.preventDefault(),t&&t(e)),"ArrowRight"===n.key||"ArrowLeft"===n.key){n.preventDefault();const e=(c+("ArrowRight"===n.key?1:-1)+g.length)%g.length;l(s,e);const t=null===(o=n.currentTarget.parentElement)||void 0===o?void 0:o.children[e];t instanceof SVGElement&&t.focus()}}:void 0,onFocus:v?t=>{l(s,c),n&&n(e);const o=t.currentTarget.querySelector(".semiotic-legend-focus-ring");o&&o.setAttribute("visibility","visible")}:void 0,onBlur:v?e=>{n&&n(null);const t=e.currentTarget.querySelector(".semiotic-legend-focus-ring");t&&t.setAttribute("visibility","hidden")}:void 0,style:{cursor:v?"pointer":"default",opacity:k,transition:"opacity 150ms ease",pointerEvents:"all",outline:"none"}},v&&p.createElement("rect",{className:"semiotic-legend-focus-ring",x:-2,y:-2,width:24+7*e.label.length,height:20,fill:"none",stroke:"var(--semiotic-focus, #005fcc)",strokeWidth:2,rx:3,visibility:"hidden"}),x,w&&p.createElement(Ae,null),p.createElement("text",{y:8,x:22,dominantBaseline:"central",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)"},e.label))),y+=A});let x=0,k=0;for(const e of g){const t=26+7*e.label.length;u&&u>0&&k>0&&k+t>u?(x=Math.max(x,k),k=t):k+=t}x=Math.max(x,k);const w=m+1;return{items:f,offset:x,totalRows:w,totalHeight:22*w}})(e,o,r,i,a,s,l,t,c,u,n);g+=f.offset+5,h.push(Object.assign(Object.assign({label:e.label},f),{offset:g,totalRows:f.totalRows,totalHeight:f.totalHeight})),d+=g+12});let g=d>n?0:Math.max(0,(n-d)/2);const f=[];return h.forEach((n,o)=>{const r=e[o];r.label&&(f.push(p.createElement("text",{key:"legend-text-"+o,transform:`translate(${g},0) rotate(90)`,textAnchor:"start",className:"legend-group-label",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)"},r.label)),g+=16),f.push(p.createElement("g",{key:"legend-group-"+o,className:"legend-item",transform:`translate(${g},0)`},n.items)),g+=n.offset+5,e[o+1]&&f.push(p.createElement("line",{key:"legend-top-line legend-symbol-"+o,stroke:"gray",x1:g,y1:-8,x2:g,y2:(n.totalHeight||t)+0+8})),g+=12}),p.createElement("g",null,f)})({legendGroups:t||[],title:s,height:c,width:l,customClickBehavior:n,customHoverBehavior:o,highlightedCategory:r,isolatedCategories:i,focusedGroupIndex:d,focusedItemIndex:g,onFocusedIndexChange:y,legendInteraction:a}),v=!(!n&&!o);return p.createElement("g",{role:v?"listbox":void 0,"aria-multiselectable":!(!v||"isolate"!==a&&(void 0!==a||null==i))||void 0,"aria-label":"Chart legend",style:{fontFamily:"var(--semiotic-font-family, sans-serif)"}},void 0!==s&&""!==s&&"vertical"===u&&p.createElement("text",{className:"legend-title",y:16,x:l/2,textAnchor:"middle",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)"},s),m)}function Me(e){const{legend:t,totalWidth:n,totalHeight:o,margin:r,legendPosition:i="right",title:a,legendHoverBehavior:s,legendClickBehavior:l,legendHighlightedCategory:c,legendIsolatedCategories:u,legendInteraction:d}=e;if(!t)return null;const h="top"===i||"bottom"===i;let g,f;return"left"===i?(g=4,f=r.top):"top"===i?(g=0,f=a?32:8):"bottom"===i?(g=0,f=o-r.bottom+50):(g=n-r.right+10,f=r.top),p.createElement("g",{transform:`translate(${g}, ${f})`},function(e){return"object"==typeof e&&null!==e&&"gradient"in e}(t)?p.createElement(Oe,{config:t.gradient,orientation:h?"horizontal":"vertical",width:h?n:100}):function(e){return"object"==typeof e&&null!==e&&"legendGroups"in e}(t)?p.createElement(Ee,{legendGroups:t.legendGroups,title:"",width:h?n:100,orientation:h?"horizontal":"vertical",customHoverBehavior:s,customClickBehavior:l,highlightedCategory:c,isolatedCategories:u,legendInteraction:d}):t)}function je(e){return"string"==typeof e?{type:e}:e}function Ce({orient:t,config:n,values:o,scale:r,size:i,length:s}){const l=function(e){var t,n,o,r,i;return{type:e.type,bins:null!==(t=e.bins)&&void 0!==t?t:20,fill:null!==(n=e.fill)&&void 0!==n?n:"#4e79a7",fillOpacity:null!==(o=e.fillOpacity)&&void 0!==o?o:.5,stroke:null!==(r=e.stroke)&&void 0!==r?r:"none",strokeWidth:null!==(i=e.strokeWidth)&&void 0!==i?i:1}}(n),c="top"===t||"bottom"===t,u=e.useMemo(()=>{if(0===o.length)return null;const e=r.domain(),n=i-8;if("boxplot"===l.type){const e=function(e){const t=[...e].sort((e,t)=>e-t),n=t.length;if(0===n)return null;const o=t[Math.floor(.25*n)],r=t[Math.floor(.5*n)],i=t[Math.floor(.75*n)],a=i-o;return{q1:o,median:r,q3:i,whiskerLow:Math.max(t[0],o-1.5*a),whiskerHigh:Math.min(t[n-1],i+1.5*a)}}(o);if(!e)return null;const{q1:i,median:a,q3:s,whiskerLow:u,whiskerHigh:d}=e,h=Math.min(.5*n,20),g=(n-h)/2+4;if(c){const e=r(i),n=r(s),o=r(a),c=r(u),f=r(d),y="top"===t?-1:1,m=0;return p.createElement("g",{"data-testid":"marginal-boxplot-"+t},p.createElement("line",{x1:c,y1:m+y*(g+h/2),x2:f,y2:m+y*(g+h/2),stroke:l.fill,strokeWidth:l.strokeWidth}),p.createElement("line",{x1:c,y1:m+y*g,x2:c,y2:m+y*(g+h),stroke:l.fill,strokeWidth:l.strokeWidth}),p.createElement("line",{x1:f,y1:m+y*g,x2:f,y2:m+y*(g+h),stroke:l.fill,strokeWidth:l.strokeWidth}),p.createElement("rect",{x:Math.min(e,n),y:"top"===t?m-g-h:m+g,width:Math.abs(n-e),height:h,fill:l.fill,fillOpacity:l.fillOpacity,stroke:"none"===l.stroke?l.fill:l.stroke,strokeWidth:l.strokeWidth}),p.createElement("line",{x1:o,y1:"top"===t?m-g-h:m+g,x2:o,y2:"top"===t?m-g:m+g+h,stroke:l.fill,strokeWidth:2}))}{const e=r(i),n=r(s),o=r(a),c=r(u),f=r(d),y="left"===t?-1:1,m=0;return p.createElement("g",{"data-testid":"marginal-boxplot-"+t},p.createElement("line",{x1:m+y*(g+h/2),y1:c,x2:m+y*(g+h/2),y2:f,stroke:l.fill,strokeWidth:l.strokeWidth}),p.createElement("line",{x1:m+y*g,y1:c,x2:m+y*(g+h),y2:c,stroke:l.fill,strokeWidth:l.strokeWidth}),p.createElement("line",{x1:m+y*g,y1:f,x2:m+y*(g+h),y2:f,stroke:l.fill,strokeWidth:l.strokeWidth}),p.createElement("rect",{x:"left"===t?m-g-h:m+g,y:Math.min(e,n),width:h,height:Math.abs(n-e),fill:l.fill,fillOpacity:l.fillOpacity,stroke:"none"===l.stroke?l.fill:l.stroke,strokeWidth:l.strokeWidth}),p.createElement("line",{x1:"left"===t?m-g-h:m+g,y1:o,x2:"left"===t?m-g:m+g+h,y2:o,stroke:l.fill,strokeWidth:2}))}}const u=a.bin().domain(e).thresholds(l.bins)(o);if(0===u.length)return null;const d=Math.max(...u.map(e=>e.length));if(0===d)return null;if("histogram"===l.type)return p.createElement("g",{"data-testid":"marginal-histogram-"+t},u.map((e,o)=>{if(null==e.x0||null==e.x1)return null;const i=e.length/d*n;if(c){const n=r(e.x0),a=r(e.x1)-r(e.x0);return p.createElement("rect",{key:o,x:n,y:"top"===t?-4-i:4,width:Math.max(a,.5),height:i,fill:l.fill,fillOpacity:l.fillOpacity,stroke:l.stroke,strokeWidth:l.strokeWidth})}{const n=r(e.x0),a=r(e.x1)-r(e.x0);return p.createElement("rect",{key:o,x:"left"===t?-4-i:4,y:Math.min(n,n+a),width:i,height:Math.abs(a),fill:l.fill,fillOpacity:l.fillOpacity,stroke:l.stroke,strokeWidth:l.strokeWidth})}}));if("violin"===l.type){const e=n/2+4,o=[];for(const i of u){if(null==i.x0||null==i.x1)continue;const a=i.length/d*(n/2),s=r((i.x0+i.x1)/2);o.push(c?`${s},${"top"===t?-(e-a):e-a}`:`${"left"===t?-(e-a):e-a},${s}`)}for(let i=u.length-1;i>=0;i--){const a=u[i];if(null==a.x0||null==a.x1)continue;const s=a.length/d*(n/2),l=r((a.x0+a.x1)/2);o.push(c?`${l},${"top"===t?-(e+s):e+s}`:`${"left"===t?-(e+s):e+s},${l}`)}return p.createElement("g",{"data-testid":"marginal-violin-"+t},p.createElement("polygon",{points:o.join(" "),fill:l.fill,fillOpacity:l.fillOpacity,stroke:"none"===l.stroke?l.fill:l.stroke,strokeWidth:l.strokeWidth}))}if("ridgeline"===l.type){const e=[];if(c){const o=0,i=null!=u[0].x0?r(u[0].x0):0;e.push(`M${i},${o}`);for(const o of u){if(null==o.x0||null==o.x1)continue;const i=o.length/d*n,a=r((o.x0+o.x1)/2);e.push(`L${a},${"top"===t?-i-4:i+4}`)}const a=null!=u[u.length-1].x1?r(u[u.length-1].x1):s;e.push(`L${a},${o}`),e.push("Z")}else{const o=0,i=null!=u[0].x0?r(u[0].x0):0;e.push(`M${o},${i}`);for(const o of u){if(null==o.x0||null==o.x1)continue;const i=o.length/d*n,a=r((o.x0+o.x1)/2);e.push(`L${"left"===t?-i-4:i+4},${a}`)}const a=null!=u[u.length-1].x1?r(u[u.length-1].x1):s;e.push(`L${o},${a}`),e.push("Z")}return p.createElement("g",{"data-testid":"marginal-ridgeline-"+t},p.createElement("path",{d:e.join(" "),fill:l.fill,fillOpacity:l.fillOpacity,stroke:"none"===l.stroke?l.fill:l.stroke,strokeWidth:l.strokeWidth}))}return null},[o,r,l,i,s,t,c,4]);return u?p.createElement("g",{className:"marginal-"+t,"data-testid":"marginal-"+t},u):null}function Pe(e,t=120,n=8){if(!e)return[];const o=Math.max(1,Math.floor(t/n)),r=e.split(/\s+/),i=[];let a="";for(const e of r)a&&a.length+1+e.length>o?(i.push(a),a=e):a=a?`${a} ${e}`:e;return a&&i.push(a),i}function _e(e,t,n,o){return"curly"===e?o?`M0,0 C${.6*n},0 ${.4*n},${t/2} ${n},${t/2} C${.4*n},${t/2} ${.6*n},${t} 0,${t}`:`M0,0 C0,${.6*n} ${t/2},${.4*n} ${t/2},${n} C${t/2},${.4*n} ${t},${.6*n} ${t},0`:o?`M0,0 L${n},0 L${n},${t} L0,${t}`:`M0,0 L0,${n} L${t},${n} L${t},0`}function Le(e){const{x:t=0,y:n=0,dx:o,dy:r,nx:i,ny:a,note:s,connector:l,subject:c,type:u,color:d,className:h,disable:g,events:f={},"data-testid":y}=e,m=new Set(Array.isArray(g)?g:[]);let v=o||0,b=r||0;null!=i&&(v=i-t),null!=a&&(b=a-n);const x="string"==typeof u?u:"label";if("bracket"===x&&c&&0===v&&0===b)if(void 0!==c.width){v=c.width/2;const e=c.depth||30;b=e+(0>e?-5:5)}else if(void 0!==c.height){const e=c.depth||30;v=e+(0>e?-5:5),b=c.height/2}return p.createElement("g",Object.assign({className:("annotation "+(h||"")).trim(),transform:`translate(${t},${n})`,"data-testid":y},f),!m.has("connector")&&function(e,t,n,o,r,i){const a=[];let s=0,l=0;if("callout-circle"!==r&&"label"!==r||!(null==i?void 0:i.radius)){if("callout-rect"===r&&i){const n=i.width||0,o=i.height||0;if(n>0||o>0){const r=n/2,i=o/2,a=e-r,c=t-i;if(0!==a||0!==c){const e=Math.abs(a),t=Math.abs(c),u=n/2,d=o/2,h=e*d>t*u?u/e:d/t;s=r+a*h,l=i+c*h}}}else if("bracket"===r&&i){const e=i.width,t=i.height,n=i.depth||30;void 0!==e?(s=e/2,l=n):void 0!==t&&(s=n,l=t/2)}}else{const n=(i.radius||0)+(i.radiusPadding||0);if(n>0&&(0!==e||0!==t)){const o=Math.atan2(t,e);s=Math.cos(o)*n,l=Math.sin(o)*n}}if(Math.sqrt(Math.pow(e-s,2)+Math.pow(t-l,2))>.5&&(a.push(p.createElement("line",{key:"connector-line",x1:s,y1:l,x2:e,y2:t,stroke:o||"var(--semiotic-text-secondary, currentColor)"})),"arrow"===(null==n?void 0:n.end))){const n=10,r=16/180*Math.PI,i=Math.atan2(t-l,e-s);a.push(p.createElement("path",{key:"connector-arrow",d:`M${s},${l}L${s+n*Math.cos(i+r)},${l+n*Math.sin(i+r)}L${s+n*Math.cos(i-r)},${l+n*Math.sin(i-r)}Z`,fill:o||"var(--semiotic-text-secondary, currentColor)",stroke:"none"}))}return p.createElement("g",{className:"annotation-connector"},a)}(v,b,l,d,x,c),!m.has("subject")&&function(e,t,n,o,r){var i;const a=[];switch(e){case"callout-circle":{const e=((null==t?void 0:t.radius)||0)+((null==t?void 0:t.radiusPadding)||0);e>0&&a.push(p.createElement("circle",{key:"subject-circle",r:e,fill:"none",stroke:n||"var(--semiotic-text-secondary, currentColor)"}));break}case"callout-rect":{const e=(null==t?void 0:t.width)||0,o=(null==t?void 0:t.height)||0;(e>0||o>0)&&a.push(p.createElement("rect",{key:"subject-rect",width:e,height:o,fill:"none",stroke:n||"var(--semiotic-text-secondary, currentColor)"}));break}case"callout-custom":(null==t?void 0:t.custom)&&a.push(...Array.isArray(t.custom)?t.custom:[t.custom]);break;case"xy-threshold":{const e=o||0,i=r||0;if(void 0!==(null==t?void 0:t.x)){const o=(t.x||0)-e;a.push(p.createElement("line",{key:"threshold-line",x1:o,y1:(t.y1||0)-i,x2:o,y2:(t.y2||0)-i,stroke:n||"var(--semiotic-text-secondary, currentColor)",strokeDasharray:"5,5"}))}else if(void 0!==(null==t?void 0:t.y)){const o=(t.y||0)-i;a.push(p.createElement("line",{key:"threshold-line",x1:(t.x1||0)-e,y1:o,x2:(t.x2||0)-e,y2:o,stroke:n||"var(--semiotic-text-secondary, currentColor)",strokeDasharray:"5,5"}))}else void 0!==(null==t?void 0:t.x1)||void 0!==(null==t?void 0:t.x2)?a.push(p.createElement("line",{key:"threshold-line",x1:(t.x1||0)-e,y1:0,x2:(t.x2||0)-e,y2:0,stroke:n||"var(--semiotic-text-secondary, currentColor)",strokeDasharray:"5,5"})):void 0===(null==t?void 0:t.y1)&&void 0===(null==t?void 0:t.y2)||a.push(p.createElement("line",{key:"threshold-line",x1:0,y1:(t.y1||0)-i,x2:0,y2:(t.y2||0)-i,stroke:n||"var(--semiotic-text-secondary, currentColor)",strokeDasharray:"5,5"}));break}case"bracket":{const e=null!==(i=null==t?void 0:t.width)&&void 0!==i?i:null==t?void 0:t.height;void 0!==e&&a.push(p.createElement("path",{key:"bracket-path",d:_e((null==t?void 0:t.type)||"curly",e,(null==t?void 0:t.depth)||30,void 0===(null==t?void 0:t.width)),fill:"none",stroke:n||"var(--semiotic-text-secondary, currentColor)"}));break}}return p.createElement("g",{className:"annotation-subject"},a)}(x,c,d,t,n),!m.has("note")&&function(e,t,n,o){if(!e)return p.createElement("g",{className:"annotation-note"});const{label:r,title:i,orientation:a,align:s,wrap:l=120,noWrap:c}=e;if(!r&&!i)return p.createElement("g",{className:"annotation-note"});let u=a;u||(u=Math.abs(t)>Math.abs(n)?"leftRight":"topBottom");let d=s;d&&"dynamic"!==d||(d="topBottom"===u?0>t?"right":"left":0>n?"bottom":"top");let h="start";"topBottom"===u?"right"===d?h="end":"middle"===d&&(h="middle"):h=0>t?"end":"start";const g=16,f=i?c?[i]:Pe(i,l):[],y=r?c?[r]:Pe(r,l):[],m="leftRight"===u?"end"===h?-4:4:0;let v=0;const b=[],x=o||"var(--semiotic-annotation-color, var(--semiotic-text, #333))";f.length>0&&(b.push(p.createElement("text",{key:"annotation-note-title",className:"annotation-note-title",fill:x,textAnchor:h,fontWeight:"bold"},f.map((e,t)=>p.createElement("tspan",{key:t,x:m,dy:0===t?0:g},e)))),v=f.length*g),y.length>0&&b.push(p.createElement("text",{key:"annotation-note-label",className:"annotation-note-label",fill:x,textAnchor:h,y:v},y.map((e,t)=>p.createElement("tspan",{key:t,x:m,dy:0===t?0:g},e))));let k=null;if((i||r)&&(0!==t||0!==n))if("topBottom"===u){const e=Math.min(l,120);let t=0,n=e;"end"===h?(t=-e,n=0):"middle"===h&&(t=-e/2,n=e/2),k=p.createElement("line",{className:"note-line",x1:t,x2:n,y1:0,y2:0,stroke:o||"var(--semiotic-text-secondary, currentColor)"})}else{const e=(f.length+y.length)*g+(y.length>0?g:0);let t=0,n=e;"bottom"===d?(t=-e,n=0):"middle"===d&&(t=-e/2,n=e/2),k=p.createElement("line",{className:"note-line",x1:0,x2:0,y1:t,y2:n,stroke:o||"var(--semiotic-text-secondary, currentColor)"})}const w=Math.max(0,f.length+y.length-1)*g;let A=0;return"topBottom"===u?A=0>n?-(w+2):18:"leftRight"===u&&(A="middle"===d?-(w+g+(y.length>0&&f.length>0?2:0))/2+8:"bottom"===d||0>n?-(w+2):18),p.createElement("g",{className:"annotation-note",transform:`translate(${t},${n})`},p.createElement("g",{className:"annotation-note-content",transform:0!==A?`translate(0,${A})`:void 0},b),k)}(s,v,b,d))}function Te(e){var t,n;const{noteData:o}=e,{screenCoordinates:r}=o,i="string"==typeof o.type?o.type:"label",a=o.eventListeners||o.events||{};if(o.coordinates&&r){const e=o.nx||r[0][0]+(null!==(t=o.dx)&&void 0!==t?t:0),a=o.ny||r[0][1]+(null!==(n=o.dy)&&void 0!==n?n:0),s=r.map((t,n)=>{const r=Object.assign({},o,{note:0===n?o.note:{label:""},x:t[0],y:t[1],nx:e,ny:a});return p.createElement(Le,Object.assign({"data-testid":"semiotic-annotation",key:"multi-annotation-"+n},r,{type:i}))});return p.createElement("g",null,s)}const s=o.note||{title:"none",label:o.label};return p.createElement(Le,Object.assign({"data-testid":"semiotic-annotation",key:`${s.label}-${s.title}-${o.i}`,events:a},o,{type:i}))}function Re(e,t){var n,o,r;const i=null!==(o=null===(n=t.scales)||void 0===n?void 0:n.x)&&void 0!==o?o:null===(r=t.scales)||void 0===r?void 0:r.time;return i?null!=e.x?i(e.x):t.xAccessor&&null!=e[t.xAccessor]?i(e[t.xAccessor]):null:null}function Be(e,t){var n,o,r;const i=null!==(o=null===(n=t.scales)||void 0===n?void 0:n.y)&&void 0!==o?o:null===(r=t.scales)||void 0===r?void 0:r.value;return i?null!=e.y?i(e.y):t.yAccessor&&null!=e[t.yAccessor]?i(e[t.yAccessor]):null:null}function De(e,t,n){var o,r,i,a;const s=e.anchor||"fixed";if("latest"===s){if(null!=e.pointId&&n.pointNodes&&n.pointNodes.length>0)for(let r=n.pointNodes.length-1;r>=0;r--){const i=n.pointNodes[r];if(i.pointId===e.pointId){const e={x:i.x,y:i.y};return null===(o=n.stickyPositionCache)||void 0===o||o.set(t,e),e}}const i=function(e){var t,n,o,r,i,a;const s=e.data;if(!s||0===s.length)return null;const l=s[s.length-1],c=null!==(n=null===(t=e.scales)||void 0===t?void 0:t.x)&&void 0!==n?n:null===(o=e.scales)||void 0===o?void 0:o.time,u=null!==(i=null===(r=e.scales)||void 0===r?void 0:r.y)&&void 0!==i?i:null===(a=e.scales)||void 0===a?void 0:a.value;if(!c||!u)return null;const d=l[e.xAccessor||"x"],h=l[e.yAccessor||"y"];return null==d||null==h?null:{x:c(d),y:u(h)}}(n);return i&&(null===(r=n.stickyPositionCache)||void 0===r||r.set(t,i)),i}let l=null,c=null;if(null!=e.pointId&&n.pointNodes){const t=n.pointNodes.find(t=>t.pointId===e.pointId);t&&(l=t.x,c=t.y)}if(null!=l&&null!=c||(l=Re(e,n),c=Be(e,n)),null!=l&&null!=c)return null===(i=n.stickyPositionCache)||void 0===i||i.set(t,{x:l,y:c}),{x:l,y:c};if("sticky"===s){const e=null===(a=n.stickyPositionCache)||void 0===a?void 0:a.get(t);if(e)return e}return null}function Ie(e,t,n,o=50){return!(-o>e||e>(n.width||0)+o||-o>t||t>(n.height||0)+o)}const Ne={linear:l.curveLinear,monotoneX:l.curveMonotoneX,monotoneY:l.curveMonotoneY,step:l.curveStep,stepAfter:l.curveStepAfter,stepBefore:l.curveStepBefore,basis:l.curveBasis,cardinal:l.curveCardinal,catmullRom:l.curveCatmullRom};function He(e){return function(e,t,n){var o,r,i,a,c,u,d,h,g,f,m,v,b,x,k,w,A,S,O,E,M,j,C,P,_,L,T,R,B,D,I,N,H,W,F,$,z,G,Y,q,X,V,U,K,Q,Z,J,ee;switch(e.type){case"label":{const o=De(e,t,n);if(!o)return null;const{x:r,y:i}=o;return Ie(r,i,n)?p.createElement(Te,{key:"ann-"+t,noteData:{x:r,y:i,dx:e.dx||30,dy:e.dy||-30,note:{label:e.label,title:e.title,wrap:e.wrap||120},type:"label",connector:e.connector||{end:"arrow"},color:e.color}}):null}case"callout":{const o=De(e,t,n);if(!o)return null;const{x:r,y:i}=o;return Ie(r,i,n)?p.createElement(Te,{key:"ann-"+t,noteData:{x:r,y:i,dx:e.dx||30,dy:e.dy||-30,note:{label:e.label,title:e.title,wrap:e.wrap||120},type:"callout-circle",subject:{radius:e.radius||12},connector:e.connector||{end:"arrow"},color:e.color}}):null}case"x-threshold":{const o=Re(e,n);if(null==o)return null;const r=e.color||"#f97316",i=e.labelPosition||"top";let a;return a="bottom"===i?(n.height||0)-4:"center"===i?(n.height||0)/2:12,p.createElement("g",{key:"ann-"+t},p.createElement("line",{x1:o,y1:0,x2:o,y2:n.height||0,stroke:r,strokeWidth:e.strokeWidth||1.5,strokeDasharray:e.strokeDasharray||"6,3"}),e.label&&p.createElement("text",{x:o+4,y:a,fill:r,fontSize:12,fontWeight:"bold"},e.label))}case"y-threshold":{const o=Be(e,n);if(null==o)return null;const r=e.color||"#f97316",i=e.labelPosition||"right";let a,s;return"left"===i?(a=4,s="start"):"center"===i?(a=(n.width||0)/2,s="middle"):(a=(n.width||0)-4,s="end"),p.createElement("g",{key:"ann-"+t},p.createElement("line",{x1:0,y1:o,x2:n.width||0,y2:o,stroke:r,strokeWidth:e.strokeWidth||1.5,strokeDasharray:e.strokeDasharray||"6,3"}),e.label&&p.createElement("text",{x:a,y:o-4,textAnchor:s,fill:r,fontSize:12,fontWeight:"bold"},e.label))}case"enclose":{const o=(e.coordinates||[]).map(e=>({x:Re(Object.assign(Object.assign({},e),{type:"point"}),n),y:Be(Object.assign(Object.assign({},e),{type:"point"}),n),r:1})).filter(e=>null!=e.x&&null!=e.y);if(2>o.length)return null;const r=s.packEnclose(o),i=e.padding||10;return p.createElement("g",{key:"ann-"+t},p.createElement("circle",{cx:r.x,cy:r.y,r:r.r+i,fill:e.fill||"none",fillOpacity:e.fillOpacity||.1,stroke:e.color||"var(--semiotic-text-secondary, #666)",strokeWidth:1.5,strokeDasharray:"4,2"}),e.label&&p.createElement("text",{x:r.x,y:r.y-r.r-i-4,textAnchor:"middle",fill:e.color||"var(--semiotic-text-secondary, #666)",fontSize:12},e.label))}case"rect-enclose":{const o=(e.coordinates||[]).map(e=>({x:Re(Object.assign(Object.assign({},e),{type:"point"}),n),y:Be(Object.assign(Object.assign({},e),{type:"point"}),n)})).filter(e=>null!=e.x&&null!=e.y);if(2>o.length)return null;const r=e.padding||10,i=o.map(e=>e.x),a=o.map(e=>e.y),s=Math.min(...i)-r,l=Math.max(...i)+r,c=Math.min(...a)-r,u=Math.max(...a)+r;return p.createElement("g",{key:"ann-"+t},p.createElement("rect",{x:s,y:c,width:l-s,height:u-c,fill:e.fill||"none",fillOpacity:e.fillOpacity||.1,stroke:e.color||"var(--semiotic-text-secondary, #666)",strokeWidth:1.5,strokeDasharray:"4,2"}),e.label&&p.createElement("text",{x:(s+l)/2,y:c-4,textAnchor:"middle",fill:e.color||"var(--semiotic-text-secondary, #666)",fontSize:12},e.label))}case"highlight":{const o=n.data||[],r="function"==typeof e.filter?o.filter(e.filter):e.field&&null!=e.value?o.filter(t=>t[e.field]===e.value):[],i={stroke:e.color||"#f97316",strokeWidth:2,fill:"none"};return p.createElement("g",{key:"ann-"+t},r.map((t,o)=>{const r=Re(t,n),a=Be(t,n);if(null==r||null==a)return null;const s="function"==typeof e.r?e.r(t):e.r||6,l="function"==typeof e.style?e.style(t):e.style||i;return p.createElement("circle",Object.assign({key:"hl-"+o,cx:r,cy:a,r:s},l))}))}case"bracket":{const o=Re(e,n),r=Be(e,n);return p.createElement(Te,{key:"ann-"+t,noteData:{x:null!=o?o:0,y:null!=r?r:0,dx:e.dx||0,dy:e.dy||0,note:{label:e.label,title:e.title,wrap:e.wrap||120},type:"bracket",subject:{type:e.bracketType||"curly",width:e.width,height:e.height,depth:e.depth||30},color:e.color}})}case"trend":{const s=n.data||[];if(2>s.length)return null;const l=n.xAccessor||"x",h=n.yAccessor||"y",g=s.map(e=>[e[l],e[h]]).filter(e=>null!=e[0]&&null!=e[1]);if(2>g.length)return null;const f=null!==(r=null===(o=n.scales)||void 0===o?void 0:o.x)&&void 0!==r?r:null===(i=n.scales)||void 0===i?void 0:i.time,m=null!==(c=null===(a=n.scales)||void 0===a?void 0:a.y)&&void 0!==c?c:null===(u=n.scales)||void 0===u?void 0:u.value;if(!f||!m)return null;const v=e.method||"linear";let b;b="loess"===v?function(e,t=.3){const n=e.length;if(2>n)return e.slice();const o=e.slice().sort((e,t)=>e[0]-t[0]),r=o.map(e=>e[0]),i=o.map(e=>e[1]),a=Math.max(2,Math.ceil(t*n)),s=[];for(let e=0;n>e;e++){const t=r[e],o=r.map(e=>Math.abs(e-t)),l=o.slice().sort((e,t)=>e-t)[Math.min(a-1,n-1)]||1,c=[];for(let e=0;n>e;e++){const t=0===l?0:o[e]/l;c[e]=1>t?Math.pow(1-Math.pow(t,3),3):0}let u=0,d=0,h=0,g=0,f=0;for(let e=0;n>e;e++){const t=c[e];0!==t&&(u+=t,d+=t*r[e],h+=t*i[e],g+=t*r[e]*r[e],f+=t*r[e]*i[e])}if(0===u){s.push([t,i[e]]);continue}const p=u*g-d*d;if(1e-12>Math.abs(p))s.push([t,h/u]);else{const e=(u*f-d*h)/p;s.push([t,(h-e*d)/u+e*t])}}return s}(g,null!==(d=e.bandwidth)&&void 0!==d?d:.3):("polynomial"===v?y.default.polynomial(g,{order:e.order||2}):y.default.linear(g)).points;const x=b.map(([e,t])=>`${f(e)},${m(t)}`).join(" "),k=e.color||"#6366f1";return p.createElement("g",{key:"ann-"+t},p.createElement("polyline",{points:x,fill:"none",stroke:k,strokeWidth:e.strokeWidth||2,strokeDasharray:e.strokeDasharray||"6,3"}),e.label&&p.createElement("text",{x:f(b[b.length-1][0])+4,y:m(b[b.length-1][1])-4,fill:k,fontSize:11},e.label))}case"band":{const o=null!==(g=null===(h=n.scales)||void 0===h?void 0:h.y)&&void 0!==g?g:null===(f=n.scales)||void 0===f?void 0:f.value,r=null!==(m=null==o?void 0:o(e.y0))&&void 0!==m?m:0,i=null!==(v=null==o?void 0:o(e.y1))&&void 0!==v?v:n.height||0;return p.createElement("g",{key:"ann-"+t},p.createElement("rect",{x:0,y:Math.min(r,i),width:n.width||0,height:Math.abs(i-r),fill:e.fill||"var(--semiotic-primary, #6366f1)",fillOpacity:e.fillOpacity||.1}),e.label&&p.createElement("text",{x:(n.width||0)-4,y:Math.min(r,i)-4,textAnchor:"end",fill:e.color||"var(--semiotic-primary, #6366f1)",fontSize:11},e.label))}case"envelope":{const o=n.data||[];if(2>o.length)return null;const r=n.xAccessor||"x",i=null!==(x=null===(b=n.scales)||void 0===b?void 0:b.x)&&void 0!==x?x:null===(k=n.scales)||void 0===k?void 0:k.time,a=null!==(A=null===(w=n.scales)||void 0===w?void 0:w.y)&&void 0!==A?A:null===(S=n.scales)||void 0===S?void 0:S.value;if(!i||!a)return null;const s=e.upperAccessor||"upperBounds",c=e.lowerAccessor||"lowerBounds",u=e.filter,d=o.filter(e=>null!=e[s]&&null!=e[c]&&!(u&&!u(e))).sort((e,t)=>e[r]-t[r]);if(2>d.length)return null;const h=Ne[n.curve||"linear"]||l.curveLinear,g=l.area().x(e=>i(e[r])).y0(e=>a(e[c])).y1(e=>a(e[s])).curve(h)(d);if(!g)return null;const f=e.fill||"#6366f1";return p.createElement("g",{key:"ann-"+t},p.createElement("path",{d:g,fill:f,fillOpacity:null!==(O=e.fillOpacity)&&void 0!==O?O:.15,stroke:"none"}),e.label&&d.length>0&&p.createElement("text",{x:i(d[d.length-1][r])+4,y:a(d[d.length-1][s])-4,fill:f,fontSize:11},e.label))}case"anomaly-band":{const o=n.data||[];if(2>o.length)return null;const r=n.yAccessor||"y",i=null!==(M=null===(E=n.scales)||void 0===E?void 0:E.x)&&void 0!==M?M:null===(j=n.scales)||void 0===j?void 0:j.time,a=null!==(P=null===(C=n.scales)||void 0===C?void 0:C.y)&&void 0!==P?P:null===(_=n.scales)||void 0===_?void 0:_.value;if(!i||!a)return null;const s=o.map(e=>e[r]).filter(e=>null!=e&&isFinite(e));if(2>s.length)return null;const l=s.reduce((e,t)=>e+t,0)/s.length,c=s.reduce((e,t)=>e+Math.pow(t-l,2),0)/s.length,u=Math.sqrt(c),d=null!==(L=e.threshold)&&void 0!==L?L:2,h=l-d*u,g=!1!==e.showBand,f=e.fill||"#6366f1",y=null!==(T=e.fillOpacity)&&void 0!==T?T:.1,m=e.anomalyColor||"#ef4444",v=null!==(R=e.anomalyRadius)&&void 0!==R?R:6,b=a(l+d*u),x=a(h),k=o.filter(e=>{const t=e[r];return null!=t&&Math.abs(t-l)>d*u});return p.createElement("g",{key:"ann-"+t},g&&p.createElement("rect",{x:0,y:Math.min(b,x),width:n.width||0,height:Math.abs(x-b),fill:f,fillOpacity:y}),k.map((e,t)=>{const o=Re(e,n),r=Be(e,n);return null==o||null==r?null:p.createElement("circle",{key:"anomaly-"+t,cx:o,cy:r,r:v,fill:m,fillOpacity:.7,stroke:m,strokeWidth:1.5})}),e.label&&p.createElement("text",{x:(n.width||0)-4,y:Math.min(b,x)-4,textAnchor:"end",fill:f,fontSize:11},e.label))}case"forecast":{const o=n.data||[];if(3>o.length)return null;const r=n.xAccessor||"x",i=n.yAccessor||"y",a=null!==(D=null===(B=n.scales)||void 0===B?void 0:B.x)&&void 0!==D?D:null===(I=n.scales)||void 0===I?void 0:I.time,s=null!==(H=null===(N=n.scales)||void 0===N?void 0:N.y)&&void 0!==H?H:null===(W=n.scales)||void 0===W?void 0:W.value;if(!a||!s)return null;const l=o.map(e=>[e[r],e[i]]).filter(e=>null!=e[0]&&null!=e[1]&&isFinite(e[0])&&isFinite(e[1])).sort((e,t)=>e[0]-t[0]);if(3>l.length)return null;let c;if("polynomial"===(e.method||"linear")){const t=y.default.polynomial(l,{order:e.order||2}).equation;c=e=>t.reduce((t,n,o)=>t+n*Math.pow(e,o),0)}else{const e=l.length;let t=0,n=0,o=0,r=0;for(const[e,i]of l)t+=e,n+=i,o+=e*e,r+=e*i;const i=e*o-t*t;if(1e-12>Math.abs(i))return null;const a=(e*r-t*n)/i,s=(n-a*t)/e;c=e=>s+a*e}const u=l.length,d=l.map(([e,t])=>t-c(e)).reduce((e,t)=>e+t*t,0),h=Math.sqrt(d/Math.max(u-2,1)),g=l.reduce((e,t)=>e+t[0],0)/u,f=l.reduce((e,t)=>e+Math.pow(t[0]-g,2),0),m=null!==(F=e.confidence)&&void 0!==F?F:.95,v=.99>m?.95>m?.9>m?1:1.645:1.96:2.576,b=null!==($=e.steps)&&void 0!==$?$:5,x=l[u-1][0],k=(x-l[0][0])/Math.max(u-1,1),w=[];for(let e=1;b>=e;e++)w.push(x+e*k);const A=[];for(const e of w){const t=c(e),n=h*Math.sqrt(1+1/u+(f>0?Math.pow(e-g,2)/f:0))*v;A.push({x:e,yCenter:t,yUpper:t+n,yLower:t-n})}const S=`M${A.map(e=>`${a(e.x)},${s(e.yUpper)}`).join(" L")} L${A.slice().reverse().map(e=>`${a(e.x)},${s(e.yLower)}`).join(" L")} Z`,O=A.map(e=>`${a(e.x)},${s(e.yCenter)}`).join(" "),E=`${a(x)},${s(c(x))}`,M=e.strokeColor||"#6366f1";return p.createElement("g",{key:"ann-"+t},p.createElement("path",{d:S,fill:e.fill||"#6366f1",fillOpacity:null!==(z=e.fillOpacity)&&void 0!==z?z:.15,stroke:"none"}),p.createElement("polyline",{points:`${E} ${O}`,fill:"none",stroke:M,strokeWidth:null!==(G=e.strokeWidth)&&void 0!==G?G:2,strokeDasharray:null!==(Y=e.strokeDasharray)&&void 0!==Y?Y:"6,3"}),e.label&&A.length>0&&p.createElement("text",{x:a(A[A.length-1].x)+4,y:s(A[A.length-1].yCenter)-4,fill:M,fontSize:11},e.label))}case"widget":{let o=null,r=null;if(null!=e.px&&null!=e.py)o=e.px,r=e.py;else{const i=De(e,t,n);if(!i)return null;o=i.x,r=i.y}if(null==o||null==r)return null;if(!Ie(o,r,n))return null;const i=null!==(q=e.dx)&&void 0!==q?q:0,a=null!==(X=e.dy)&&void 0!==X?X:0,s=null!==(V=e.width)&&void 0!==V?V:32,l=null!==(U=e.height)&&void 0!==U?U:32,c=null!==(K=e.content)&&void 0!==K?K:p.createElement("span",{style:{fontSize:18,cursor:"default"},title:e.label||"Info"},"ℹ️");return p.createElement("foreignObject",{key:"ann-"+t,x:o+i-s/2,y:r+a-l/2,width:s,height:l,style:{overflow:"visible",pointerEvents:"auto"}},p.createElement("div",{style:{width:s,height:l,display:"flex",alignItems:"center",justifyContent:"center"}},c))}case"text":{const o=De(e,t,n);if(!o)return null;const{x:r,y:i}=o;return p.createElement("text",{key:"ann-text-"+t,x:r+(e.dx||0),y:i+(e.dy||0),fill:e.color||"var(--semiotic-text, #333)",fontSize:e.fontSize||11,dominantBaseline:"middle",style:{fontFamily:"inherit"}},e.label)}case"category-highlight":{const o=e.category;if(null==o)return null;const r=null===(Q=n.scales)||void 0===Q?void 0:Q.o,i=null===(Z=n.scales)||void 0===Z?void 0:Z.x,a=null===(J=n.scales)||void 0===J?void 0:J.y,s=(null==r?void 0:r.bandwidth)?r:(null==i?void 0:i.bandwidth)?i:(null==a?void 0:a.bandwidth)?a:null;if(!s)return null;const l=s(o);if(null==l)return null;const c=s.bandwidth(),u=e.color||"var(--semiotic-primary, #4589ff)",d=null!==(ee=e.opacity)&&void 0!==ee?ee:.15,h=e.label;return(n.projection?"vertical"===n.projection:s===i)?p.createElement("g",{key:"ann-"+t},p.createElement("rect",{x:l,y:0,width:c,height:n.height||0,fill:u,fillOpacity:d}),h&&p.createElement("text",{x:l+c/2,y:12,textAnchor:"middle",fill:u,fontSize:12,fontWeight:"bold"},h)):p.createElement("g",{key:"ann-"+t},p.createElement("rect",{x:0,y:l,width:n.width||0,height:c,fill:u,fillOpacity:d}),h&&p.createElement("text",{x:12,y:l+c/2,dominantBaseline:"middle",fill:u,fontSize:12,fontWeight:"bold"},h))}default:return null}}}let We={positions:new Map};const Fe=new Set;function $e(){for(const e of Fe)e()}function ze(e,t){const n=We.positions.get(e);if(null==n?void 0:n.locked)return;if(!n||n.sourceId!==t)return;const o=new Map(We.positions);o.delete(e),We={positions:o},$e()}function Ge(e,t){const n=We.positions.get(e);if(!(null==n?void 0:n.locked))return;if(t&&n.sourceId!==t)return;const o=new Map(We.positions);o.delete(e),We={positions:o},$e()}function Ye(){return We}function qe(e){return Fe.add(e),()=>Fe.delete(e)}const Xe={positions:new Map};function Ve(){return()=>{}}function Ue(){return Xe}function Ke(e){if(e)return"dashed"===e?"6,4":"dotted"===e?"2,4":e}function Qe(e,t,n){if("left"===e||"right"===e){const o="left"===e?n:0,r="left"===e?-1:1,i=Math.ceil(t/8);let a="M0,"+o;for(let e=0;i>e;e++){const n=8*(e+1);a+=`L${Math.min(8*e+4,t)},${o+4*r}`,a+=`L${Math.min(n,t)},${o}`}return a}{const o="bottom"===e?0:t,r="bottom"===e?1:-1,i=Math.ceil(n/8);let a=`M${o},0`;for(let e=0;i>e;e++){const t=8*(e+1);a+=`L${o+4*r},${Math.min(8*e+4,n)}`,a+=`L${o},${Math.min(t,n)}`}return a}}function Ze(t){const{width:n,height:o,totalWidth:r,totalHeight:i,margin:a,scales:s,showAxes:l,axes:c,showGrid:u,xFormat:d,yFormat:h}=t,g=e.useMemo(()=>{var e;if(!s)return[];const t=null==c?void 0:c.find(e=>"bottom"===e.orient),o=(null==t?void 0:t.tickFormat)||d||Je,r=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5,i=s.x.ticks(Math.min(r,Math.max(2,Math.floor(n/70)))),a=i.map(e=>e.valueOf()),l=i.map((e,t)=>({value:e,pixel:s.x(e),label:o(e,t,a)})),u=l.reduce((e,t)=>Math.max(e,"string"==typeof t.label?6.5*t.label.length:"number"==typeof t.label?6.5*(t.label+"").length:60),0);return et(l,Math.max(55,u+8))},[s,c,d,n]),f=e.useMemo(()=>{var e;if(!s)return[];const t=null==c?void 0:c.find(e=>"left"===e.orient),n=(null==t?void 0:t.tickFormat)||h||Je,r=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5;return et(s.y.ticks(Math.min(r,Math.max(2,Math.floor(o/30)))).map(e=>({value:e,pixel:s.y(e),label:n(e)})),22)},[s,c,h,o]),y=u&&s,m=l&&s;if(!y&&!m)return null;const v=null==c?void 0:c.find(e=>"bottom"===e.orient),b=null==c?void 0:c.find(e=>"left"===e.orient),x=m&&(!v||!1!==v.baseline),k=m&&(!b||!1!==b.baseline),w=(null==v?void 0:v.jaggedBase)||!1,A=(null==b?void 0:b.jaggedBase)||!1,S="var(--semiotic-border, #ccc)";return p.createElement("svg",{width:r,height:i,style:{position:"absolute",top:0,left:0,pointerEvents:"none"}},p.createElement("g",{transform:`translate(${a.left},${a.top})`},y&&(()=>{var e,t;const r=Ke(null===(e=null==c?void 0:c.find(e=>"bottom"===e.orient))||void 0===e?void 0:e.gridStyle),i=Ke(null===(t=null==c?void 0:c.find(e=>"left"===e.orient))||void 0===t?void 0:t.gridStyle);return p.createElement("g",{className:"stream-grid"},g.map((e,t)=>p.createElement("line",{key:"xgrid-"+t,x1:e.pixel,y1:0,x2:e.pixel,y2:o,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1,strokeDasharray:r})),f.map((e,t)=>p.createElement("line",{key:"ygrid-"+t,x1:0,y1:e.pixel,x2:n,y2:e.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1,strokeDasharray:i})))})(),x&&!w&&p.createElement("line",{x1:0,y1:o,x2:n,y2:o,stroke:S,strokeWidth:1}),w&&p.createElement("path",{d:Qe("bottom",n,o),fill:"none",stroke:S,strokeWidth:1}),k&&!A&&p.createElement("line",{x1:0,y1:0,x2:0,y2:o,stroke:S,strokeWidth:1}),A&&p.createElement("path",{d:Qe("left",n,o),fill:"none",stroke:S,strokeWidth:1})))}function Je(e,t,n){return e instanceof Date?`${e.toLocaleString("en",{month:"short"})} ${e.getDate()}`:"number"==typeof e?Math.round(100*e)/100+"":e+""}function et(e,t){if(2>=e.length)return e;const n=[e[0]];for(let o=1;e.length-1>o;o++)t>Math.abs(e[o].pixel-n[n.length-1].pixel)||n.push(e[o]);const o=e[e.length-1];return t>Math.abs(o.pixel-n[n.length-1].pixel)?n[n.length-1]=o:n.push(o),n}function tt(t){var n,o;const{width:r,height:i,totalWidth:a,totalHeight:s,margin:l,scales:c,showAxes:u,axes:d,xLabel:h,yLabel:g,yLabelRight:f,xFormat:y,yFormat:m,showGrid:v,title:b,legend:x,legendHoverBehavior:k,legendClickBehavior:w,legendHighlightedCategory:A,legendIsolatedCategories:S,legendPosition:O="right",foregroundGraphics:E,marginalGraphics:M,xValues:j,yValues:C,annotations:P,svgAnnotationRules:_,xAccessor:L,yAccessor:T,annotationData:R,pointNodes:B,curve:D,underlayRendered:I,linkedCrosshairName:N,linkedCrosshairSourceId:H,children:W}=t,F=e.useMemo(()=>{var e;if(!u||!c)return[];const t=null==d?void 0:d.find(e=>"bottom"===e.orient),n=(null==t?void 0:t.tickFormat)||y||Je,o=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5,i=c.x.ticks(Math.min(o,Math.max(2,Math.floor(r/70)))),a=i.map(e=>e.valueOf()),s=i.map((e,t)=>({value:e,pixel:c.x(e),label:n(e,t,a)})),l=s.reduce((e,t)=>Math.max(e,"string"==typeof t.label?6.5*t.label.length:"number"==typeof t.label?6.5*(t.label+"").length:60),0),h=(null==t?void 0:t.autoRotate)?Math.max(20,Math.min(l+8,55)):Math.max(55,l+8);let g=et(s,h);if(g.length>1&&(g=g.filter((e,t)=>0===t||e.label+""!=g[t-1].label+"")),(null==t?void 0:t.includeMax)&&g.length>0){const e=c.x.domain()[1],t=c.x(e),o=g[g.length-1].pixel;if(Math.abs(t-o)>1){const r=n(e,g.length,a);h>t-o&&g.length>1&&(g=g.slice(0,-1)),g.push({value:e,pixel:t,label:r})}}return g},[u,c,d,y,r]),$=e.useMemo(()=>{var e;if(!u||!c)return[];const t=null==d?void 0:d.find(e=>"left"===e.orient),n=(null==t?void 0:t.tickFormat)||m||Je,o=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5;let r=et(c.y.ticks(Math.min(o,Math.max(2,Math.floor(i/30)))).map(e=>({value:e,pixel:c.y(e),label:n(e)})),22);if(r.length>1&&(r=r.filter((e,t)=>0===t||e.label+""!=r[t-1].label+"")),(null==t?void 0:t.includeMax)&&r.length>0){const e=c.y.domain()[1],t=c.y(e),o=r[r.length-1].pixel;if(Math.abs(t-o)>1){const i=n(e);22>Math.abs(t-o)&&r.length>1&&(r=r.slice(0,-1)),r.push({value:e,pixel:t,label:i})}}return r},[u,c,d,m,i]),z=e.useMemo(()=>{var e;if(!u||!c)return[];const t=null==d?void 0:d.find(e=>"right"===e.orient);if(!t)return[];const n=t.tickFormat||m||Je,o=null!==(e=t.ticks)&&void 0!==e?e:5;return et(c.y.ticks(Math.min(o,Math.max(2,Math.floor(i/30)))).map(e=>({value:e,pixel:c.y(e),label:n(e)})),22)},[u,c,d,m,i]),G=e.useRef(new Map),Y=e.useRef(null!==(n=null==P?void 0:P.length)&&void 0!==n?n:0),q=null!==(o=null==P?void 0:P.length)&&void 0!==o?o:0;Y.current!==q&&(Y.current=q,G.current=new Map);const X=e.useMemo(()=>{if(!P||0===P.length)return null;const e=He(),t={scales:c?{x:c.x,y:c.y,time:c.x,value:c.y}:null,timeAxis:"x",xAccessor:L,yAccessor:T,width:r,height:i,data:R,frameType:"xy",pointNodes:B,curve:D,stickyPositionCache:G.current};return P.map((n,o)=>{if(_){const r=_(n,o,t);return null!=r?r:e(n,o,t)}return e(n,o,t)}).filter(Boolean)},[P,_,r,i,L,T,R,c,B,D]),V=function(t){var n;const o=e.useSyncExternalStore(t?qe:Ve,t?Ye:Ue,t?Ye:Ue);return t&&null!==(n=o.positions.get(t))&&void 0!==n?n:null}(N);return e.useEffect(()=>{if(!(null==V?void 0:V.locked)||!N)return;const e=e=>{"Escape"===e.key&&Ge(N)};return document.addEventListener("keydown",e),()=>document.removeEventListener("keydown",e)},[null==V?void 0:V.locked,N]),u||b||x||E||M||X&&X.length>0||v||W||V?p.createElement("svg",{role:"img",width:a,height:s,overflow:"visible",style:{position:"absolute",top:0,left:0,pointerEvents:"none",overflow:"visible"}},p.createElement("title",null,"string"==typeof b?b:"XY Chart"),p.createElement("desc",null,"string"==typeof b?b+" — XY data visualization":"XY data visualization"),p.createElement("g",{transform:`translate(${l.left},${l.top})`},v&&c&&!I&&(()=>{var e,t;const n=Ke(null===(e=null==d?void 0:d.find(e=>"bottom"===e.orient))||void 0===e?void 0:e.gridStyle),o=Ke(null===(t=null==d?void 0:d.find(e=>"left"===e.orient))||void 0===t?void 0:t.gridStyle);return p.createElement("g",{className:"stream-grid"},F.map((e,t)=>p.createElement("line",{key:"xgrid-"+t,x1:e.pixel,y1:0,x2:e.pixel,y2:i,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1,strokeDasharray:n})),$.map((e,t)=>p.createElement("line",{key:"ygrid-"+t,x1:0,y1:e.pixel,x2:r,y2:e.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1,strokeDasharray:o})))})(),u&&c&&(()=>{const e=null==d?void 0:d.find(e=>"left"===e.orient),t=null==d?void 0:d.find(e=>"bottom"===e.orient),n=!e||!1!==e.baseline,o=!t||!1!==t.baseline,a=(null==e?void 0:e.jaggedBase)||!1,s=(null==t?void 0:t.jaggedBase)||!1,c=null==t?void 0:t.landmarkTicks,u=null==e?void 0:e.landmarkTicks,y="var(--semiotic-border, #ccc)",m="var(--semiotic-text-secondary, var(--semiotic-text, #666))",v="var(--semiotic-text, #333)",b=!!(null==t?void 0:t.autoRotate)&&F.length>1&&(()=>{const e=r/Math.max(F.length-1,1);return F.reduce((e,t)=>Math.max(e,"string"==typeof t.label?6.5*t.label.length:60),0)+8>e})();return p.createElement("g",{className:"stream-axes",style:{fontFamily:"var(--semiotic-font-family, sans-serif)"}},!I&&o&&!s&&p.createElement("line",{x1:0,y1:i,x2:r,y2:i,stroke:y,strokeWidth:1}),!I&&s&&p.createElement("path",{d:Qe("bottom",r,i),fill:"none",stroke:y,strokeWidth:1}),F.map((e,t)=>{const n=!!c&&("function"==typeof c?c(e.value,t):ne(e.value,t>0?F[t-1].value:void 0));return p.createElement("g",{key:"xtick-"+t,transform:`translate(${e.pixel},${i})`},p.createElement("line",{y2:5,stroke:y,strokeWidth:1}),"string"==typeof e.label||"number"==typeof e.label?p.createElement("text",{y:b?10:18,textAnchor:b?"end":"middle",fontSize:n?11:10,fontWeight:n?600:400,fill:m,style:{userSelect:"none"},transform:b?"rotate(-45)":void 0},e.label):p.createElement("foreignObject",{x:-30,y:6,width:60,height:24,style:{overflow:"visible"}},p.createElement("div",{style:{textAlign:"center",fontSize:10,userSelect:"none"}},e.label)))}),h&&p.createElement("text",{x:r/2,y:i+40,textAnchor:"middle",fontSize:12,fill:v,style:{userSelect:"none"}},h),!I&&n&&!a&&p.createElement("line",{x1:0,y1:0,x2:0,y2:i,stroke:y,strokeWidth:1}),!I&&a&&p.createElement("path",{d:Qe("left",r,i),fill:"none",stroke:y,strokeWidth:1}),$.map((e,t)=>{const n=!!u&&("function"==typeof u?u(e.value,t):ne(e.value,t>0?$[t-1].value:void 0));return p.createElement("g",{key:"ytick-"+t,transform:`translate(0,${e.pixel})`},p.createElement("line",{x2:-5,stroke:y,strokeWidth:1}),"string"==typeof e.label||"number"==typeof e.label?p.createElement("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:n?11:10,fontWeight:n?600:400,fill:m,style:{userSelect:"none"}},e.label):p.createElement("foreignObject",{x:-68,y:-12,width:60,height:24,style:{overflow:"visible"}},p.createElement("div",{style:{textAlign:"right",fontSize:10,userSelect:"none"}},e.label)))}),(()=>{const t=(null==e?void 0:e.label)||g;return t?p.createElement("text",{x:15-l.left,y:i/2,textAnchor:"middle",fontSize:12,fill:v,transform:`rotate(-90, ${15-l.left}, ${i/2})`,style:{userSelect:"none"}},t):null})(),(()=>{const e=null==d?void 0:d.find(e=>"right"===e.orient);if(!e||0===z.length)return null;const t=e.landmarkTicks,n=e.label||f;return p.createElement(p.Fragment,null,!1!==e.baseline&&p.createElement("line",{x1:r,y1:0,x2:r,y2:i,stroke:y,strokeWidth:1}),z.map((e,n)=>{const o=!!t&&("function"==typeof t?t(e.value,n):ne(e.value,n>0?z[n-1].value:void 0));return p.createElement("g",{key:"ytick-r-"+n,transform:`translate(${r},${e.pixel})`},p.createElement("line",{x2:5,stroke:y,strokeWidth:1}),"string"==typeof e.label||"number"==typeof e.label?p.createElement("text",{x:8,textAnchor:"start",dominantBaseline:"middle",fontSize:o?11:10,fontWeight:o?600:400,fill:m,style:{userSelect:"none"}},e.label):p.createElement("foreignObject",{x:8,y:-12,width:60,height:24,style:{overflow:"visible"}},p.createElement("div",{style:{textAlign:"left",fontSize:10,userSelect:"none"}},e.label)))}),n&&p.createElement("text",{x:r+l.right-15,y:i/2,textAnchor:"middle",fontSize:12,fill:v,transform:`rotate(90, ${r+l.right-15}, ${i/2})`,style:{userSelect:"none"}},n))})())})(),X,M&&c&&j&&C&&p.createElement(p.Fragment,null,M.top&&p.createElement("g",{transform:"translate(0, 0)"},p.createElement(Ce,{orient:"top",config:je(M.top),values:j,scale:c.x,size:l.top,length:r})),M.bottom&&p.createElement("g",{transform:`translate(0, ${i})`},p.createElement(Ce,{orient:"bottom",config:je(M.bottom),values:j,scale:c.x,size:l.bottom,length:r})),M.left&&p.createElement("g",{transform:"translate(0, 0)"},p.createElement(Ce,{orient:"left",config:je(M.left),values:C,scale:c.y,size:l.left,length:i})),M.right&&p.createElement("g",{transform:`translate(${r}, 0)`},p.createElement(Ce,{orient:"right",config:je(M.right),values:C,scale:c.y,size:l.right,length:i}))),E,V&&V.sourceId!==H&&(null==c?void 0:c.x)&&(()=>{const e=c.x(V.xValue);if(null==e||0>e||e>r)return null;const t=V.locked;return p.createElement("line",{x1:e,y1:0,x2:e,y2:i,stroke:t?"white":"var(--semiotic-text-secondary, rgba(0,0,0,0.25))",strokeWidth:t?1.5:1,strokeDasharray:t?"6,3":"4,4",pointerEvents:"none"})})(),W),b&&p.createElement("text",{x:a/2,y:20,textAnchor:"middle",fontSize:14,fontWeight:"bold",fill:"var(--semiotic-text, #333)",style:{userSelect:"none"}},"string"==typeof b?b:null),Me({legend:x,totalWidth:a,totalHeight:s,margin:l,legendPosition:O,title:b,legendHoverBehavior:k,legendClickBehavior:w,legendHighlightedCategory:A,legendIsolatedCategories:S})):null}function nt(e,t="#4e79a7"){return e&&"string"==typeof e?e:t}const ot="undefined"==typeof window||"undefined"==typeof document,rt=p.createContext(null);function it({children:e}){const[t,n]=p.useState(!1),o=p.useMemo(()=>({visible:t,setVisible:n}),[t]);return p.createElement(rt.Provider,{value:o},e)}function at(){return p.useContext(rt)}const st={position:"absolute",width:1,height:1,overflow:"hidden",clip:"rect(0,0,0,0)",whiteSpace:"nowrap",border:0};function lt(e,t){if(!e||0===e.length)return t+", empty";const n={};for(const t of e)n[t.type]=(n[t.type]||0)+1;const o=[],r={point:"points",line:"lines",area:"areas",rect:"bars",heatcell:"cells",circle:"nodes",candlestick:"candlesticks",wedge:"wedges",arc:"arcs",geoarea:"regions"},i=["point","line","area","rect","heatcell","circle","candlestick","wedge","arc","geoarea"],a=Object.keys(n).sort((e,t)=>{const n=i.indexOf(e),o=i.indexOf(t);return(-1===n?999:n)-(-1===o?999:o)});for(const e of a)o.push(`${n[e]} ${r[e]||e}`);return`${t}, ${o.join(", ")}`}function ct(e,t,n){const o=[];return e>0&&o.push(e+" nodes"),t>0&&o.push(t+" edges"),0===o.length?n+", empty":`${n}, ${o.join(", ")}`}const ut=e=>{if(null==e)return"";const t=Math.round(100*e)/100;return Number.isNaN(t)?"":t+""},dt={position:"absolute",top:0,left:0,right:0,zIndex:5,padding:"14px 16px 12px",borderBottom:"1px solid var(--semiotic-border, #e0e0e0)",fontFamily:"var(--semiotic-font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif)",fontSize:13,lineHeight:1.5,color:"var(--semiotic-text, #333)",background:"var(--semiotic-bg, #fff)",borderRadius:"var(--semiotic-border-radius, 0px) var(--semiotic-border-radius, 0px) 0 0"},ht={marginBottom:8,paddingRight:28,color:"var(--semiotic-text-secondary, #666)",fontSize:12,letterSpacing:"0.01em"},gt={position:"absolute",top:10,right:10,width:22,height:22,display:"flex",alignItems:"center",justifyContent:"center",border:"1px solid var(--semiotic-border, #e0e0e0)",background:"var(--semiotic-bg, #fff)",cursor:"pointer",color:"var(--semiotic-text-secondary, #666)",fontSize:13,lineHeight:1,padding:0,borderRadius:"var(--semiotic-border-radius, 4px)"},ft={width:"100%",borderCollapse:"collapse",fontSize:12,marginTop:4,fontVariantNumeric:"tabular-nums"},pt={textAlign:"left",padding:"5px 10px",borderBottom:"2px solid var(--semiotic-border, #e0e0e0)",fontWeight:600,fontSize:11,textTransform:"uppercase",letterSpacing:"0.04em",color:"var(--semiotic-text-secondary, #666)"},yt={padding:"4px 10px",borderBottom:"1px solid var(--semiotic-border, #e0e0e0)"},mt={textAlign:"left",fontSize:11,color:"var(--semiotic-text-secondary, #999)",marginBottom:4,fontStyle:"italic"};function vt({scene:e,chartType:t,tableId:n,chartTitle:o}){var r;const[i,a]=p.useState(!1),s=at(),l=null!==(r=null==s?void 0:s.visible)&&void 0!==r&&r,c=i||l,u=p.useRef(null),d=o?"Data summary for "+o:n?`Data summary for ${t} ${n}`:"Data summary for "+t,h=p.useCallback(()=>{i||l||a(!0)},[i,l]),g=p.useCallback(e=>{var t;l||(null===(t=u.current)||void 0===t?void 0:t.contains(e.relatedTarget))||a(!1)},[l]);if(!e||0===e.length)return n?p.createElement("span",{id:n,tabIndex:-1,style:st}):null;if(!c)return p.createElement("div",{id:n,tabIndex:-1,onFocus:h,style:st,role:"region","aria-label":d},p.createElement("button",{type:"button",onClick:()=>a(!0)},"View data summary (",e.length," elements)"));const f=function(e){var t,n,o,r,i,a,s,l,c,u,d,h,g,f,p,y,m,v,b,x,k,w,A,S,O;const E=[];if(!Array.isArray(e))return E;for(const M of e)if(M&&"object"==typeof M)try{switch(M.type){case"point":E.push({label:"Point",values:{x:M.x,y:M.y}});break;case"line":{const e=M.path,t=Array.isArray(M.datum)?M.datum:[];if(!Array.isArray(e))break;for(let n=0;e.length>n&&t.length>n;n++){const t=e[n];Array.isArray(t)&&E.push({label:"Line point",values:{x:t[0],y:t[1]}})}break}case"area":{const e=M.topPath,t=Array.isArray(M.datum)?M.datum:[];if(!Array.isArray(e))break;for(let n=0;e.length>n&&t.length>n;n++){const t=e[n];Array.isArray(t)&&E.push({label:"Area point",values:{x:t[0],y:t[1]}})}break}case"rect":{const e=null!=M.datum&&"object"==typeof M.datum?M.datum:{},i=null!==(n=null!==(t=e.category)&&void 0!==t?t:M.group)&&void 0!==n?n:"",a=null!==(r=null!==(o=e.value)&&void 0!==o?o:e.__aggregateValue)&&void 0!==r?r:e.total;E.push({label:"Bar",values:{category:i,value:null!=a?a:""}});break}case"heatcell":E.push({label:"Cell",values:{x:M.x,y:M.y,value:M.value}});break;case"wedge":E.push({label:"Wedge",values:{category:null!==(l=null!==(a=null===(i=M.datum)||void 0===i?void 0:i.category)&&void 0!==a?a:null===(s=M.datum)||void 0===s?void 0:s.label)&&void 0!==l?l:"",value:null!==(u=null===(c=M.datum)||void 0===c?void 0:c.value)&&void 0!==u?u:""}});break;case"circle":E.push({label:"Node",values:{id:null!==(h=null===(d=M.datum)||void 0===d?void 0:d.id)&&void 0!==h?h:"",x:null!==(g=M.cx)&&void 0!==g?g:M.x,y:null!==(f=M.cy)&&void 0!==f?f:M.y}});break;case"arc":E.push({label:"Arc",values:{id:null!==(y=null===(p=M.datum)||void 0===p?void 0:p.id)&&void 0!==y?y:"",x:null!==(m=M.cx)&&void 0!==m?m:M.x,y:null!==(v=M.cy)&&void 0!==v?v:M.y}});break;case"candlestick":E.push({label:"Candlestick",values:{x:M.x,open:M.open,high:M.high,low:M.low,close:M.close}});break;case"geoarea":E.push({label:"Region",values:{name:null!==(A=null!==(k=null===(x=null===(b=M.datum)||void 0===b?void 0:b.properties)||void 0===x?void 0:x.name)&&void 0!==k?k:null===(w=M.datum)||void 0===w?void 0:w.name)&&void 0!==A?A:"",value:null!==(O=null===(S=M.datum)||void 0===S?void 0:S.value)&&void 0!==O?O:""}})}}catch(e){}return E}(e),y=function(e){if(!e||0===e.length)return[];const t=new Set;for(const n of e)if(n&&n.values)for(const e of Object.keys(n.values))t.add(e);const n=[];for(const o of t){const t=[],r=new Set;for(const n of e){if(!n||!n.values)continue;const e=n.values[o];null!=e&&""!==e&&("number"==typeof e&&!Number.isNaN(e)&&Number.isFinite(e)?t.push(e):"number"==typeof e||"object"!=typeof e&&"function"!=typeof e&&r.add(e+""))}if(t.length>0){let e=t[0],r=t[0],i=0;for(const n of t)e>n&&(e=n),n>r&&(r=n),i+=n;n.push({name:o,count:t.length,numeric:!0,min:e,max:r,mean:i/t.length})}else if(r.size>0){const e=Array.from(r);n.push({name:o,count:e.length,numeric:!1,uniqueValues:e.slice(0,5)})}}return n}(f),m=function(e,t){const n=[e+" data points."];for(const e of t)if(e.numeric)n.push(`${e.name}: ${ut(e.min)} to ${ut(e.max)}, mean ${ut(e.mean)}.`);else{const t=e.uniqueValues,o=t.length>3?`${t.slice(0,3).join(", ")}… (${e.count} unique)`:t.join(", ");n.push(`${e.name}: ${o}.`)}return n.join(" ")}(f.length,y),v=f.slice(0,5),b=new Set;for(const e of v)for(const t of Object.keys(e.values))b.add(t);const x=Array.from(b);return p.createElement("div",{ref:u,id:n,tabIndex:-1,onBlur:g,style:dt,role:"region","aria-label":d},p.createElement("button",{type:"button",onClick:()=>{l&&s&&s.setVisible(!1),a(!1)},"aria-label":"Close data summary",style:gt},"×"),p.createElement("div",{role:"note",style:ht},m),p.createElement("table",{role:"table","aria-label":"Sample data for "+t,style:ft},p.createElement("caption",{style:mt},"First ",v.length," of ",f.length," data points"),p.createElement("thead",null,p.createElement("tr",null,p.createElement("th",{style:pt},"type"),x.map(e=>p.createElement("th",{key:e,style:pt},e)))),p.createElement("tbody",null,v.map((e,t)=>p.createElement("tr",{key:t},p.createElement("td",{style:yt},e.label),x.map(t=>{return p.createElement("td",{key:t,style:yt},null==(n=e.values[t])||""===n?"—":"number"==typeof n?Number.isNaN(n)?"—":ut(n):"boolean"==typeof n?n?"true":"false":"object"==typeof n?"—":n+"");var n}))))))}function bt({nodes:e,edges:t,chartType:n,tableId:o,chartTitle:r}){var i,a,s,l,c,u,d,h,g,f,y,m,v,b;const[x,k]=p.useState(!1),w=at(),A=null!==(i=null==w?void 0:w.visible)&&void 0!==i&&i,S=x||A,O=r?"Data summary for "+r:o?`Data summary for ${n} ${o}`:"Data summary for "+n,E=p.useRef(null),M=p.useCallback(()=>{x||A||k(!0)},[x,A]),j=p.useCallback(e=>{var t;A||(null===(t=E.current)||void 0===t?void 0:t.contains(e.relatedTarget))||k(!1)},[A]);if(!e||0===e.length)return o?p.createElement("span",{id:o,tabIndex:-1,style:st}):null;if(!S)return p.createElement("div",{id:o,tabIndex:-1,onFocus:M,style:st,role:"region","aria-label":O},p.createElement("button",{type:"button",onClick:()=>k(!0)},"View data summary (",e.length," nodes, ",t.length," edges)"));const C=Array.isArray(e)?e:[],P=Array.isArray(t)?t:[],_=new Map,L=new Map,T=new Map,R=new Map;for(const e of P){if(!e||"object"!=typeof e)continue;const t=null!==(a=e.datum)&&void 0!==a?a:e,n="object"==typeof t.source?null===(s=t.source)||void 0===s?void 0:s.id:t.source,o="object"==typeof t.target?null===(l=t.target)||void 0===l?void 0:l.id:t.target,r="number"==typeof t.value&&Number.isFinite(t.value)?t.value:0;if(null!=n&&""!==n){const e=n+"";L.set(e,(null!==(c=L.get(e))&&void 0!==c?c:0)+1),R.set(e,(null!==(u=R.get(e))&&void 0!==u?u:0)+r)}if(null!=o&&""!==o){const e=o+"";_.set(e,(null!==(d=_.get(e))&&void 0!==d?d:0)+1),T.set(e,(null!==(h=T.get(e))&&void 0!==h?h:0)+r)}}const B=[];for(let e=0;C.length>e;e++){const t=C[e];if(!t||"object"!=typeof t)continue;const n=null!==(f=null===(g=t.datum)||void 0===g?void 0:g.id)&&void 0!==f?f:t.id,o=null!=n?n+"":"node-"+e,r=null!==(y=_.get(o))&&void 0!==y?y:0,i=null!==(m=L.get(o))&&void 0!==m?m:0,a=null!==(v=T.get(o))&&void 0!==v?v:0,s=null!==(b=R.get(o))&&void 0!==b?b:0;B.push({id:o,degree:r+i,inDeg:r,outDeg:i,wDegree:a+s,wInDeg:a,wOutDeg:s})}B.sort((e,t)=>t.degree-e.degree);let D=0,I=0;if(B.length>0){let e=0;for(const t of B)e+=t.degree,t.degree>I&&(I=t.degree);D=e/B.length}const N=P.some(e=>{var t;const n=null!==(t=null==e?void 0:e.datum)&&void 0!==t?t:e;return"number"==typeof(null==n?void 0:n.value)&&Number.isFinite(n.value)}),H=[`${B.length} nodes, ${P.length} edges.`];B.length>0&&H.push(`Mean degree: ${ut(D)}, max degree: ${I}.`);const W=B.slice(0,5);return p.createElement("div",{ref:E,id:o,tabIndex:-1,onBlur:j,style:dt,role:"region","aria-label":O},p.createElement("button",{type:"button",onClick:()=>{A&&w&&w.setVisible(!1),k(!1)},"aria-label":"Close data summary",style:gt},"×"),p.createElement("div",{role:"note",style:ht},H.join(" ")),p.createElement("table",{role:"table","aria-label":"Node degree summary for "+n,style:ft},p.createElement("caption",{style:mt},"Top ",W.length," of ",B.length," nodes by degree"),p.createElement("thead",null,p.createElement("tr",null,p.createElement("th",{style:pt},"id"),p.createElement("th",{style:pt},"degree"),p.createElement("th",{style:pt},"in"),p.createElement("th",{style:pt},"out"),N&&p.createElement("th",{style:pt},"w. degree"),N&&p.createElement("th",{style:pt},"w. in"),N&&p.createElement("th",{style:pt},"w. out"))),p.createElement("tbody",null,W.map((e,t)=>p.createElement("tr",{key:t},p.createElement("td",{style:yt},e.id),p.createElement("td",{style:yt},e.degree),p.createElement("td",{style:yt},e.inDeg),p.createElement("td",{style:yt},e.outDeg),N&&p.createElement("td",{style:yt},ut(e.wDegree)),N&&p.createElement("td",{style:yt},ut(e.wInDeg)),N&&p.createElement("td",{style:yt},ut(e.wOutDeg)))))))}function xt({summary:e}){return e?p.createElement("div",{role:"note",style:st},e):null}function kt({tableId:e}){return p.createElement("a",{href:"#"+e,style:st,onClick:t=>{t.preventDefault();const n=document.getElementById(e);n&&requestAnimationFrame(()=>n.focus())},onFocus:e=>{Object.assign(e.currentTarget.style,{position:"absolute",width:"auto",height:"auto",overflow:"visible",clip:"auto",whiteSpace:"normal",padding:"4px 8px",background:"var(--semiotic-bg, #fff)",color:"var(--semiotic-text, #000)",border:"2px solid var(--semiotic-focus, #005fcc)",borderRadius:"4px",zIndex:"10",fontSize:"12px",top:"4px",left:"4px"})},onBlur:e=>{const t=e.currentTarget;t.removeAttribute("style"),Object.assign(t.style,st)}},"Skip to data table")}function wt({hoverPoint:e}){let t="";if(e){const n=e.data||e;t="object"==typeof n?"Focused on data point: "+Object.entries(n).filter(([,e])=>"object"!=typeof e&&"function"!=typeof e).map(([e,t])=>`${e}: ${t}`).join(", "):"Focused on data point: "+n}return p.createElement("div",{"aria-live":"polite","aria-atomic":"true",style:st},t)}const At="var(--semiotic-focus, #005fcc)";function St({active:e,hoverPoint:t,margin:n,size:o,shape:r="circle",width:i,height:a}){if(!e||!t)return null;const s=t.x+n.left,l=t.y+n.top;let c;if("rect"===r&&null!=i&&null!=a){const e=Math.max(i,4),t=Math.max(a,4);c=p.createElement("rect",{x:s-e/2-3,y:l-t/2-3,width:e+6,height:t+6,rx:3,fill:"none",stroke:At,strokeWidth:2,strokeDasharray:"4,2"})}else c=p.createElement("circle","wedge"===r?{cx:s,cy:l,r:12,fill:"none",stroke:At,strokeWidth:2.5,strokeDasharray:"6,3"}:{cx:s,cy:l,r:8,fill:"none",stroke:At,strokeWidth:2,strokeDasharray:"4,2"});return p.createElement("svg",{style:{position:"absolute",left:0,top:0,width:o[0],height:o[1],pointerEvents:"none",zIndex:2},"aria-hidden":"true"},c)}function Ot({x:e,y:t,containerWidth:n,containerHeight:o,margin:r,children:i,className:a="stream-frame-tooltip",zIndex:s=1}){const l=p.useRef(null),[c,u]=p.useState(null);p.useLayoutEffect(()=>{const e=l.current;if(!e)return;const t=e.getBoundingClientRect();u(e=>e&&e.width===t.width&&e.height===t.height?e:{width:t.width,height:t.height})},[i,a,n,o]);let d;return d=c?`translate(${c.width+12>n-e?"calc(-100% - 12px)":"12px"}, ${c.height+12>o-t?"calc(-100% - 4px)":"4px"})`:`translate(${e>.7*n?"calc(-100% - 12px)":"12px"}, ${.3*o>t?"4px":"calc(-100% - 4px)"})`,p.createElement("div",{ref:l,className:a,style:{position:"absolute",left:r.left+e,top:r.top+t,transform:d,pointerEvents:"none",zIndex:s,width:"max-content"}},i)}function Et(t){const n=e.createContext(null),o=Mt(t);return[function({children:o}){const r=e.useMemo(()=>Mt(t),[]);return p.createElement(n.Provider,{value:r,children:o})},t=>{var r;const i=null!==(r=e.useContext(n))&&void 0!==r?r:o,a=e.useRef(t);a.current=t;const s=e.useCallback(()=>a.current(i.getState()),[i]),l=e.useCallback(()=>a.current(i.getState()),[i]);return e.useSyncExternalStore(i.subscribe,s,l)}]}function Mt(e){const t=new EventTarget;let n=e(function(e){n=Object.assign(Object.assign({},n),e(n)),t.dispatchEvent(new CustomEvent("update"))});return{getState:()=>n,subscribe:function(e){return t.addEventListener("update",e),()=>t.removeEventListener("update",e)}}}function jt(e){if(!e.accessibility)return e;let t=e;if(e.accessibility.colorBlindSafe&&(t=Object.assign(Object.assign({},t),{colors:Object.assign(Object.assign({},t.colors),{categorical:Ct})})),e.accessibility.highContrast){const e="dark"===t.mode;t=Object.assign(Object.assign({},t),{colors:Object.assign(Object.assign({},t.colors),{text:e?"#ffffff":"#000000",textSecondary:e?"#cccccc":"#333333",grid:e?"#666666":"#999999",border:e?"#888888":"#000000"})})}return t}const Ct=["#0072B2","#E69F00","#009E73","#CC79A7","#56B4E9","#D55E00","#F0E442","#000000"],Pt={mode:"light",colors:{primary:"#00a2ce",categorical:["#1f77b4","#ff7f0e","#2ca02c","#d62728","#9467bd","#8c564b","#e377c2","#7f7f7f","#bcbd22","#17becf"],sequential:"blues",diverging:"RdBu",background:"transparent",text:"#333",textSecondary:"#666",grid:"#e0e0e0",border:"#ccc",selection:"#00a2ce",selectionOpacity:.15},typography:{fontFamily:"sans-serif",titleSize:16,labelSize:12,tickSize:10}},_t={mode:"dark",colors:{primary:"#4fc3f7",categorical:["#4fc3f7","#ffb74d","#81c784","#ef5350","#ba68c8","#a1887f","#f06292","#90a4ae","#dce775","#4dd0e1"],sequential:"blues",diverging:"RdBu",background:"#1a1a2e",text:"#e0e0e0",textSecondary:"#aaa",grid:"#333",border:"#555",selection:"#4fc3f7",selectionOpacity:.15},typography:{fontFamily:"sans-serif",titleSize:16,labelSize:12,tickSize:10}},Lt={mode:"light",colors:{primary:"#0000cc",categorical:Ct,sequential:"blues",diverging:"RdBu",background:"#ffffff",text:"#000000",textSecondary:"#333333",grid:"#999999",border:"#000000",focus:"#0000cc",selection:"#0000cc",selectionOpacity:.1},typography:{fontFamily:"system-ui, sans-serif",titleSize:18,labelSize:14,tickSize:12},tooltip:{background:"#000000",text:"#ffffff",borderRadius:"4px",fontSize:"14px",shadow:"0 2px 8px rgba(0, 0, 0, 0.3)"},borderRadius:"4px"},[Tt,Rt]=Et(e=>({theme:Pt,setTheme(t){e(e=>{if("light"===t)return{theme:Pt};if("dark"===t)return{theme:_t};if("high-contrast"===t)return{theme:Lt};if(t.mode&&"auto"!==t.mode){const e="dark"===t.mode?_t:Pt;return{theme:jt(Object.assign(Object.assign(Object.assign({},e),t),{colors:Object.assign(Object.assign({},e.colors),t.colors||{}),typography:Object.assign(Object.assign({},e.typography),t.typography||{})}))}}return{theme:jt(Object.assign(Object.assign(Object.assign({},e.theme),t),{colors:Object.assign(Object.assign({},e.theme.colors),t.colors||{}),typography:Object.assign(Object.assign({},e.theme.typography),t.typography||{})}))}})}}));function Bt(e,t){return"function"==typeof e.addEventListener?(e.addEventListener("change",t),()=>e.removeEventListener("change",t)):(e.addListener(t),()=>e.removeListener(t))}function Dt(t,n,o){const r=e.useRef(null),[i,a]=e.useState(null);return e.useEffect(()=>{if(!n&&!o)return;const e=r.current;if(!e)return;const t=new ResizeObserver(e=>{for(const t of e){const{width:e,height:n}=t.contentRect;a(t=>t&&t.w===e&&t.h===n?t:{w:e,h:n})}});return t.observe(e),()=>t.disconnect()},[n,o]),[r,[n&&i?i.w:t[0],o&&i?i.h:t[1]]]}const It=/^var\(\s*(--[^,)]+)(?:\s*,\s*([^)]+))?\s*\)$/,Nt=new WeakMap;let Ht=0,Wt=!1,Ft=null,$t=null,zt=null;function Gt(e,t){var n,o;if(!t)return t;const r=It.exec(t);if(!r)return t;const i=e.canvas;if(!i)return(null===(n=r[2])||void 0===n?void 0:n.trim())||t;!function(){if(Wt)return;if("undefined"==typeof window||"undefined"==typeof document)return;Wt=!0;const e=()=>{Ht++};if("undefined"!=typeof MutationObserver&&document.documentElement&&(Ft=new MutationObserver(e),Ft.observe(document.documentElement,{attributes:!0,attributeFilter:["class","style","data-theme","data-semiotic-theme"]})),"function"==typeof window.matchMedia)try{$t=window.matchMedia("(prefers-color-scheme: dark)"),zt=e,"function"==typeof $t.addEventListener?$t.addEventListener("change",zt):"function"==typeof $t.addListener&&$t.addListener(zt)}catch(e){}}();let a=Nt.get(i);a&&a.version===Ht||(a={version:Ht,map:new Map},Nt.set(i,a));const s=a.map.get(t);if(void 0!==s)return s;const l=getComputedStyle(i).getPropertyValue(r[1]).trim()||(null===(o=r[2])||void 0===o?void 0:o.trim())||t;return a.map.set(t,l),l}function Yt(e,t,n){return"function"==typeof e?e({size:t,margin:n}):e}function qt(t){const n=function(){const[t,n]=e.useState(()=>!("undefined"==typeof window||!window.matchMedia)&&window.matchMedia("(prefers-reduced-motion: reduce)").matches);return e.useEffect(()=>{if("undefined"==typeof window||!window.matchMedia)return;const e=window.matchMedia("(prefers-reduced-motion: reduce)");return n(e.matches),Bt(e,e=>n(e.matches))},[]),t}(),o=e.useRef(n);o.current=n;const[r,i]=Dt(t.sizeProp,t.responsiveWidth,t.responsiveHeight),a=e.useMemo(()=>Object.assign(Object.assign({},t.marginDefault),t.userMargin),[t.marginDefault,t.userMargin]),s=i[0]-a.left-a.right,l=i[1]-a.top-a.bottom,c=Yt(t.foregroundGraphics,i,a),u=Yt(t.backgroundGraphics,i,a),d=Rt(e=>e.theme),{transition:h,introEnabled:g}=function(e,t){var n,o;if(!1===e)return{transition:void 0,introEnabled:!1};const r="undefined"!=typeof window&&(null===(n=window.matchMedia)||void 0===n?void 0:n.call(window,"(prefers-reduced-motion: reduce)").matches);return{transition:e?!0===e?{duration:300}:{duration:null!==(o=e.duration)&&void 0!==o?o:300,easing:"linear"===e.easing?"linear":"ease-out"}:t,introEnabled:!(r||!e||!0!==e&&!1===e.intro)}}(t.animate,t.transitionProp),f="semiotic-table-"+p.useId(),y=e.useRef(0),m=e.useRef(()=>{}),v=e.useCallback(()=>{y.current||(y.current=requestAnimationFrame(()=>m.current()))},[]);e.useEffect(()=>()=>{y.current&&(cancelAnimationFrame(y.current),y.current=0)},[]);const b=e.useRef(()=>{}),x=e.useRef(()=>{}),k=e.useRef(null),w=e.useRef(0),A=e.useCallback(()=>{w.current=0;const e=k.current;k.current=null,e&&b.current(e)},[]),S=e.useCallback(e=>{k.current={clientX:e.clientX,clientY:e.clientY},0===w.current&&(w.current=requestAnimationFrame(A))},[A]),O=e.useCallback(()=>{k.current=null,0!==w.current&&(cancelAnimationFrame(w.current),w.current=0),x.current()},[]);e.useEffect(()=>()=>{k.current=null,0!==w.current&&(cancelAnimationFrame(w.current),w.current=0)},[]);const E=t.themeDirtyRef;return e.useEffect(()=>{E&&(Ht++,E.current=!0,v())},[d,v,E]),{reducedMotion:n,reducedMotionRef:o,responsiveRef:r,size:i,margin:a,adjustedWidth:s,adjustedHeight:l,resolvedForeground:c,resolvedBackground:u,currentTheme:d,transition:h,introEnabled:g,tableId:f,rafRef:y,renderFnRef:m,scheduleRender:v,hoverHandlerRef:b,hoverLeaveRef:x,onPointerMove:S,onPointerLeave:O}}function Xt(e,t,n,o){const r=e.getContext("2d");if(!r)return null;const i=t[0]*o,a=t[1]*o,s=t[0]+"px",l=t[1]+"px";return e.style.width!==s&&(e.style.width=s),e.style.height!==l&&(e.style.height=l),e.width===i&&e.height===a||(e.width=i,e.height=a),r.setTransform(o,0,0,o,0,0),r.translate(n.left,n.top),r}function Vt(){return"undefined"!=typeof window&&window.devicePixelRatio||1}function Ut(e){switch(e){case"monotoneX":return l.curveMonotoneX;case"monotoneY":return l.curveMonotoneY;case"cardinal":return l.curveCardinal;case"catmullRom":return l.curveCatmullRom;case"step":return l.curveStep;case"stepBefore":return l.curveStepBefore;case"stepAfter":return l.curveStepAfter;case"basis":return l.curveBasis;case"natural":return l.curveNatural;default:return null}}function Kt(e,t,n){let o=n;for(const n of t)"lesser"===n.thresholdType?n.value>e&&(o=n.color):e>n.value&&(o=n.color);return o}function Qt(e,t,n,o,r,i){if(2>t.length)return;const a=[0];for(let e=1;t.length>e;e++){const n=t[e][0]-t[e-1][0],o=t[e][1]-t[e-1][1];a.push(a[e-1]+Math.sqrt(n*n+o*o))}const s=a[a.length-1];if(0===s)return;const l=Math.min(.2*s,40);e.strokeStyle=n,e.lineWidth=o,e.lineCap=i;for(let n=0;t.length-1>n;n++){const o=(a[n]+a[n+1])/2;let i=r;l>o&&(i*=o/l),l>s-o&&(i*=(s-o)/l),e.globalAlpha=Math.max(0,i),e.beginPath(),e.moveTo(t[n][0],t[n][1]),e.lineTo(t[n+1][0],t[n+1][1]),e.stroke()}}const Zt=(e,t,n,o)=>{var r,i;const a=t.filter(e=>"line"===e.type);for(const s of a){if(2>s.path.length)continue;const c=s._introClipFraction;void 0!==c&&1>c&&(e.save(),e.beginPath(),e.rect(0,0,o.width*c,o.height),e.clip());const u=s.style.stroke||"#007bff",d=s.style.strokeWidth||2,h=s.colorThresholds,g=s.rawValues;if(e.setLineDash(s.style.strokeDasharray?s.style.strokeDasharray.split(/[\s,]+/).map(Number):[]),null!=s.style.opacity&&(e.globalAlpha=s.style.opacity),e.lineWidth=d,e.lineCap=s.style.strokeLinecap||"butt",s.style._edgeFade){const m=null!==(r=s.style.opacity)&&void 0!==r?r:1;Qt(e,s.path,u,d,m,s.style.strokeLinecap||"butt"),e.globalAlpha=1,e.setLineDash([]),e.lineCap="butt";continue}const f=Ut(s.curve),p=h&&h.length>0&&g&&g.length===s.path.length,y=s._decayOpacities;if(y&&y.length===s.path.length&&!p){e.strokeStyle=u;const v=null!==(i=s.style.opacity)&&void 0!==i?i:1;for(let b=0;s.path.length-1>b;b++)e.globalAlpha=.5*(y[b]+y[b+1])*v,e.beginPath(),e.moveTo(s.path[b][0],s.path[b][1]),e.lineTo(s.path[b+1][0],s.path[b+1][1]),e.stroke()}else if(p){let x=null,k=null,w=null,A=null,S=!1;function O(t,n,o){e.beginPath(),e.strokeStyle=t,e.moveTo(n,o),S=!0}function E(){S&&(e.stroke(),S=!1)}for(let M=0;s.path.length>M;M++){const[j,C]=s.path[M],P=g[M],_=Kt(P,h,u);if(null!==x&&null!==A&&null!==w){if(_===A)e.lineTo(j,C);else{const L=[];for(const T of h){const R=T.value;(w>R||R>P)&&(R>w||P>R)||w===R||P===R||L.push({t:(R-w)/(P-w)})}L.sort((e,t)=>e.t-t.t);for(const B of L){const D=x+(j-x)*B.t,I=k+(C-k)*B.t,N=Kt(w+(P-w)*Math.min(B.t+1e-4,1),h,u);e.lineTo(D,I),E(),O(N,D,I)}e.lineTo(j,C)}x=j,k=C,w=P,A=_}else O(_,j,C),x=j,k=C,w=P,A=_}E()}else{if(e.beginPath(),!s.strokeGradient||2>s.strokeGradient.colorStops.length||2>s.path.length)e.strokeStyle=u;else{const H=e.createLinearGradient(s.path[0][0],0,s.path[s.path.length-1][0],0);for(const W of s.strokeGradient.colorStops)H.addColorStop(Math.max(0,Math.min(1,W.offset)),W.color);e.strokeStyle=H}if(f)l.line().x(e=>e[0]).y(e=>e[1]).curve(f).context(e)(s.path);else{const[F,$]=s.path[0];e.moveTo(F,$);for(let z=1;s.path.length>z;z++)e.lineTo(s.path[z][0],s.path[z][1])}e.stroke()}if(s.style.fill&&s.style.fillOpacity&&s.style.fillOpacity>0){if(e.beginPath(),e.globalAlpha=s.style.fillOpacity,e.fillStyle=("string"==typeof s.style.fill?Gt(e,s.style.fill):s.style.fill)||s.style.fill,f&&!p)l.line().x(e=>e[0]).y(e=>e[1]).curve(f).context(e)(s.path);else{const[Y,q]=s.path[0];e.moveTo(Y,q);for(let X=1;s.path.length>X;X++)e.lineTo(s.path[X][0],s.path[X][1])}const G=s.path[0][0];e.lineTo(s.path[s.path.length-1][0],o.height),e.lineTo(G,o.height),e.closePath(),e.fill()}void 0!==c&&1>c&&e.restore(),e.globalAlpha=1,e.setLineDash([]),e.lineCap="butt"}};function Jt(e){return!(!e._pulseIntensity||0>=e._pulseIntensity)}function en(e,t,n=.3){Jt(t)&&(e.globalAlpha=t._pulseIntensity*n,e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.fillRect(t.x,t.y,t.w,t.h))}function tn(e,t,n=.6){var o,r,i,a,s;if(!Jt(t))return;const l=null!==(o=t._pulseGlowRadius)&&void 0!==o?o:4,c=t.r+l*t._pulseIntensity,u=null!==(i=null!==(r=t.cx)&&void 0!==r?r:t.x)&&void 0!==i?i:0,d=null!==(s=null!==(a=t.cy)&&void 0!==a?a:t.y)&&void 0!==s?s:0;e.beginPath(),e.arc(u,d,c,0,2*Math.PI),e.strokeStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.lineWidth=2*t._pulseIntensity,e.globalAlpha=t._pulseIntensity*n,e.stroke()}function nn(e,t,n,o=.35){Jt(t)&&(e.globalAlpha=t._pulseIntensity*o,e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.fill())}function on(e){switch(e){case"monotoneX":return l.curveMonotoneX;case"monotoneY":return l.curveMonotoneY;case"cardinal":return l.curveCardinal;case"catmullRom":return l.curveCatmullRom;case"step":return l.curveStep;case"stepBefore":return l.curveStepBefore;case"stepAfter":return l.curveStepAfter;case"basis":return l.curveBasis;case"natural":return l.curveNatural;default:return null}}function rn(e){if(e.startsWith("#")){const t=4===e.length?e[1]+e[1]+e[2]+e[2]+e[3]+e[3]:e.slice(1,7);return[parseInt(t.slice(0,2),16),parseInt(t.slice(2,4),16),parseInt(t.slice(4,6),16)]}const t=e.match(/(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return t?[+t[1],+t[2],+t[3]]:[78,121,167]}function an(e,t){const n=on(t.curve);if(!n||2>t.topPath.length||2>t.bottomPath.length){e.beginPath(),e.moveTo(t.topPath[0][0],t.topPath[0][1]);for(let n=1;t.topPath.length>n;n++)e.lineTo(t.topPath[n][0],t.topPath[n][1]);for(let n=t.bottomPath.length-1;n>=0;n--)e.lineTo(t.bottomPath[n][0],t.bottomPath[n][1]);e.closePath()}else{const o=l.area().x(e=>e[0]).y0((e,n)=>t.bottomPath[n][1]).y1(e=>e[1]).curve(n).context(e);e.beginPath(),o(t.topPath)}}const sn=(e,t,n,o)=>{var r,i,a;const s=t.filter(e=>"area"===e.type);for(const t of s){if(2>t.topPath.length)continue;const n=t._introClipFraction;void 0!==n&&1>n&&(e.save(),e.beginPath(),e.rect(0,0,o.width*n,o.height),e.clip());const s=t.style.fill||"#4e79a7",c=t._decayOpacities;if(c&&c.length===t.topPath.length){const n=null!==(r=t.style.fillOpacity)&&void 0!==r?r:.7;e.fillStyle=s;for(let o=0;t.topPath.length-1>o;o++)e.globalAlpha=.5*(c[o]+c[o+1])*n,e.beginPath(),e.moveTo(t.topPath[o][0],t.topPath[o][1]),e.lineTo(t.topPath[o+1][0],t.topPath[o+1][1]),e.lineTo(t.bottomPath[o+1][0],t.bottomPath[o+1][1]),e.lineTo(t.bottomPath[o][0],t.bottomPath[o][1]),e.closePath(),e.fill();if(t.style.stroke&&"none"!==t.style.stroke){e.strokeStyle=Gt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||2,e.setLineDash([]);for(let n=0;t.topPath.length-1>n;n++)e.globalAlpha=.5*(c[n]+c[n+1]),e.beginPath(),e.moveTo(t.topPath[n][0],t.topPath[n][1]),e.lineTo(t.topPath[n+1][0],t.topPath[n+1][1]),e.stroke()}e.globalAlpha=1;continue}const u=null!==(i=t.style.opacity)&&void 0!==i?i:1;if(an(e,t),t.fillGradient&&("colorStops"in t.fillGradient&&t.fillGradient.colorStops.length>=2||"topOpacity"in t.fillGradient)&&t.fillGradient){let n=1/0;for(const e of t.topPath)n>e[1]&&(n=e[1]);let o=-1/0;for(const e of t.bottomPath)e[1]>o&&(o=e[1]);const r=e.createLinearGradient(0,n,0,o);if("colorStops"in t.fillGradient)for(const e of t.fillGradient.colorStops){const t=Math.max(0,Math.min(1,e.offset));isNaN(t)||r.addColorStop(t,e.color)}else if("topOpacity"in t.fillGradient){const e=rn("string"==typeof s?s:"#4e79a7");r.addColorStop(0,`rgba(${e[0]},${e[1]},${e[2]},${t.fillGradient.topOpacity})`),r.addColorStop(1,`rgba(${e[0]},${e[1]},${e[2]},${t.fillGradient.bottomOpacity})`)}e.fillStyle=r,e.globalAlpha=u}else{const n=null!==(a=t.style.fillOpacity)&&void 0!==a?a:.7;e.globalAlpha=n*u,e.fillStyle=s}if(e.fill(),t._pulseIntensity&&t._pulseIntensity>0&&(an(e,t),nn(e,t)),t.style.stroke&&"none"!==t.style.stroke){if(e.globalAlpha=u,!t.strokeGradient||2>t.strokeGradient.colorStops.length||2>t.topPath.length)e.strokeStyle=Gt(e,t.style.stroke)||t.style.stroke;else{const n=e.createLinearGradient(t.topPath[0][0],0,t.topPath[t.topPath.length-1][0],0);for(const e of t.strokeGradient.colorStops)n.addColorStop(Math.max(0,Math.min(1,e.offset)),e.color);e.strokeStyle=n}e.lineWidth=t.style.strokeWidth||2,e.setLineDash([]);const n=on(t.curve);if(e.beginPath(),n)l.line().x(e=>e[0]).y(e=>e[1]).curve(n).context(e)(t.topPath);else{e.moveTo(t.topPath[0][0],t.topPath[0][1]);for(let n=1;t.topPath.length>n;n++)e.lineTo(t.topPath[n][0],t.topPath[n][1])}e.stroke()}void 0!==n&&1>n&&e.restore(),e.globalAlpha=1}},ln=(e,t,n,o)=>{var r;const i=t.filter(e=>"point"===e.type);if(0!==i.length){e.save();try{for(const t of i){e.beginPath(),e.arc(t.x,t.y,t.r,0,2*Math.PI);const n=null!==(r=t.style.opacity)&&void 0!==r?r:t.style.fillOpacity;null!=n&&(e.globalAlpha=n),e.fillStyle=("string"==typeof t.style.fill?Gt(e,t.style.fill):t.style.fill)||"#4e79a7",e.fill(),t.style.stroke&&(e.strokeStyle=("string"==typeof t.style.stroke?Gt(e,t.style.stroke):t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke()),tn(e,t),e.globalAlpha=1}}finally{e.restore()}}},cn=(e,t,n,o)=>{const r=t.filter(e=>"rect"===e.type);for(const t of r){if(null!=t.style.opacity&&(e.globalAlpha=t.style.opacity),t.style.icon)un(e,t);else if(t.roundedTop&&t.roundedTop>0){e.fillStyle=("string"==typeof t.style.fill?Gt(e,t.style.fill):t.style.fill)||"#007bff";const n=Math.min(t.roundedTop,t.w/2,t.h/2);e.beginPath();const{x:o,y:r,w:i,h:a}=t;switch(t.roundedEdge){case"right":e.moveTo(o,r),e.lineTo(o+i-n,r),e.arcTo(o+i,r,o+i,r+n,n),e.lineTo(o+i,r+a-n),e.arcTo(o+i,r+a,o+i-n,r+a,n),e.lineTo(o,r+a);break;case"left":e.moveTo(o+i,r),e.lineTo(o+n,r),e.arcTo(o,r,o,r+n,n),e.lineTo(o,r+a-n),e.arcTo(o,r+a,o+n,r+a,n),e.lineTo(o+i,r+a);break;case"bottom":e.moveTo(o,r),e.lineTo(o+i,r),e.lineTo(o+i,r+a-n),e.arcTo(o+i,r+a,o+i-n,r+a,n),e.lineTo(o+n,r+a),e.arcTo(o,r+a,o,r+a-n,n);break;default:e.moveTo(o,r+a),e.lineTo(o,r+n),e.arcTo(o,r,o+n,r,n),e.lineTo(o+i-n,r),e.arcTo(o+i,r,o+i,r+n,n),e.lineTo(o+i,r+a)}e.closePath(),e.fill(),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Gt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke())}else e.fillStyle=("string"==typeof t.style.fill?Gt(e,t.style.fill):t.style.fill)||"#007bff",e.fillRect(t.x,t.y,t.w,t.h),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Gt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.strokeRect(t.x,t.y,t.w,t.h));en(e,t),e.globalAlpha=1}};function un(e,t){const n=t.style.icon,o=t.style.iconPadding||2,r=Math.min(t.w,t.h)-o;if(0>=r)return;const i=t.h>t.w;if(e.save(),e.beginPath(),e.rect(t.x,t.y,t.w,t.h),e.clip(),i){const i=r+o,a=t.x+(t.w-r)/2;for(let o=t.y+t.h-r;o>=t.y-r;o-=i)e.drawImage(n,a,o,r,r)}else{const i=r+o,a=t.y+(t.h-r)/2;for(let o=t.x;t.x+t.w>o;o+=i)e.drawImage(n,o,a,r,r)}e.restore()}function dn(e,t,n,o){return Object.assign(Object.assign(Object.assign({},function(e){return"object"!=typeof e||null===e||Array.isArray(e)?{}:e}(e)),{data:e,x:t,y:n,time:t,value:n}),o)}function hn(e){const[t,n,o]=function(e){if(e.startsWith("#")){let t=e.slice(1);if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length)return[parseInt(t.slice(0,2),16),parseInt(t.slice(2,4),16),parseInt(t.slice(4,6),16)]}const t=e.match(/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return t?[+t[1],+t[2],+t[3]]:[128,128,128]}(e);return.299*t+.587*n+.114*o>128?"#000":"#fff"}function gn(e){return Number.isInteger(e)?e+"":100>Math.abs(e)?1>Math.abs(e)?e.toPrecision(3):e.toFixed(1):e.toFixed(0)}const fn=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function pn(e){const t=e[1]-e[0],n=3156e7;return 864e5>t?e=>{const t=new Date(e);return`${(t.getUTCHours()+"").padStart(2,"0")}:${(t.getUTCMinutes()+"").padStart(2,"0")}`}:n>t?e=>{const t=new Date(e);return`${fn[t.getUTCMonth()]} ${t.getUTCDate()}`}:5*n>t?e=>{const t=new Date(e);return`${fn[t.getUTCMonth()]} ${t.getUTCFullYear()}`}:e=>new Date(e).getUTCFullYear()+""}const yn={line:[sn,Zt,ln],area:[sn,ln],stackedarea:[sn,ln],scatter:[ln],bubble:[ln],heatmap:[(e,t,n,o)=>{const r=t.filter(e=>"heatcell"===e.type);e.save();try{for(const t of r){const n=t.style;if(null!=(null==n?void 0:n.opacity)&&(e.globalAlpha=n.opacity),e.fillStyle=t.fill,e.fillRect(t.x,t.y,t.w,t.h),e.strokeStyle="#fff",e.lineWidth=1,e.strokeRect(t.x,t.y,t.w,t.h),en(e,t),e.globalAlpha=1,t.showValues&&null!=t.value){if(20>t.w||20>t.h)continue;const n=t.valueFormat?t.valueFormat(t.value):gn(t.value),o=Math.max(10,Math.min(16,.3*Math.min(t.w,t.h))),r=t.x+t.w/2,i=t.y+t.h/2;e.fillStyle=hn(t.fill),e.font=o+"px sans-serif",e.textAlign="center",e.textBaseline="middle",e.fillText(n,r,i)}}}finally{e.restore()}}],bar:[cn],swarm:[ln],waterfall:[(e,t,n,o)=>{var r,i,a;cn(e,t);const s=t.filter(e=>"rect"===e.type);if(2>s.length)return;const l=s[0].datum,c=null==l?void 0:l._connectorStroke;if(c){e.save(),e.strokeStyle=c,e.lineWidth=null!==(r=null==l?void 0:l._connectorWidth)&&void 0!==r?r:1,e.setLineDash([]);for(let t=0;s.length-1>t;t++){const o=s[t],r=s[t+1];if(!(null===(i=o.datum)||void 0===i?void 0:i.cumEnd)||!(null===(a=r.datum)||void 0===a?void 0:a.baseline))continue;const l=n.y(o.datum.cumEnd),c=o.x+o.w,u=r.x;e.beginPath(),e.moveTo(c,l),e.lineTo(u,l),e.stroke()}e.restore()}}],candlestick:[(e,t,n,o)=>{for(const n of t){if("candlestick"!==n.type)continue;const t=n;e.save();const o=t._decayOpacity;if(null!=o&&1!==o&&(e.globalAlpha=o),e.beginPath(),e.moveTo(t.x,t.highY),e.lineTo(t.x,t.lowY),e.strokeStyle=t.wickColor,e.lineWidth=t.wickWidth,e.stroke(),t.isRange){const n=Math.max(2*t.wickWidth,4);e.fillStyle=t.wickColor,e.beginPath(),e.arc(t.x,t.highY,n,0,2*Math.PI),e.fill(),e.beginPath(),e.arc(t.x,t.lowY,n,0,2*Math.PI),e.fill()}else if(t.bodyWidth>0){const n=Math.min(t.openY,t.closeY),o=Math.abs(t.openY-t.closeY),r=t.isUp?t.upColor:t.downColor;e.fillStyle=r,e.fillRect(t.x-t.bodyWidth/2,n,t.bodyWidth,Math.max(o,1)),e.strokeStyle=r,e.lineWidth=1,e.strokeRect(t.x-t.bodyWidth/2,n,t.bodyWidth,Math.max(o,1))}e.restore()}}],mixed:[sn,Zt,ln]},mn={top:20,right:20,bottom:30,left:40},vn={axisStroke:"#ccc",tickText:"#666",crosshair:"rgba(0, 0, 0, 0.25)",hoverFill:"rgba(255, 255, 255, 0.3)",hoverStroke:"rgba(0, 0, 0, 0.4)",pointRing:"white"};function bn(e,t){const n=e.trim();if(/^#[0-9a-f]{3}$/i.test(n)){const e=n[1],o=n[2],r=n[3];return`#${e}${e}${o}${o}${r}${r}${t}`}if(/^#[0-9a-f]{6}$/i.test(n))return`${n}${t}`;const o=n.match(/^rgb\s*\(\s*([^)]+?)\s*\)$/i);return o?`rgba(${o[1]}, ${(parseInt(t,16)/255).toFixed(3)})`:n}const xn={background:"rgba(0, 0, 0, 0.85)",color:"white",padding:"6px 10px",borderRadius:4,fontSize:12,lineHeight:1.5,boxShadow:"0 2px 8px rgba(0, 0, 0, 0.15)",pointerEvents:"none",whiteSpace:"nowrap"};function kn({hover:e}){const t=e=>Number.isInteger(e)?e+"":e.toFixed(2);return p.createElement("div",{className:"semiotic-tooltip",style:xn},p.createElement("div",{style:{fontWeight:600,marginBottom:2}},t(e.value)),p.createElement("div",{style:{opacity:.7,fontSize:11}},t(e.time)))}const wn=e.forwardRef(function(t,n){var o,r,i,a,s,l,c,u,d,h,g;const{chartType:f,runtimeMode:y,data:m,chunkThreshold:v,chunkSize:k,xAccessor:w,yAccessor:A,colorAccessor:S,sizeAccessor:O,groupAccessor:E,lineDataAccessor:M,curve:j,normalize:C,binSize:P,valueAccessor:_,arrowOfTime:L="right",windowMode:T="sliding",windowSize:R=200,timeAccessor:B,xExtent:D,yExtent:I,extentPadding:N=.1,scalePadding:H,sizeRange:W,size:F=[500,300],responsiveWidth:$,responsiveHeight:z,margin:G,className:Y,background:q,lineStyle:X,pointStyle:V,areaStyle:U,waterfallStyle:K,swarmStyle:Q,barColors:J,colorScheme:ee,boundsAccessor:te,boundsStyle:ne,y0Accessor:oe,gradientFill:re,lineGradient:se,areaGroups:le,openAccessor:ce,highAccessor:ue,lowAccessor:de,closeAccessor:he,candlestickStyle:ge,showAxes:ve=!0,axes:ke,xLabel:we,yLabel:Ae,yLabelRight:Se,xFormat:Oe,yFormat:Ee,tickFormatTime:Me,tickFormatValue:je,hoverAnnotation:Ce,tooltipContent:Pe,customHoverBehavior:_e,customClickBehavior:Le,enableHover:Te,hoverRadius:Re=30,tooltipMode:Be,annotations:De,svgAnnotationRules:Ie,showGrid:Ne,legend:He,legendHoverBehavior:We,legendClickBehavior:Fe,legendHighlightedCategory:$e,legendIsolatedCategories:ze,legendPosition:Ge,backgroundGraphics:Ye,foregroundGraphics:qe,canvasPreRenderers:Xe,svgPreRenderers:Ve,title:Ue,categoryAccessor:Ke,brush:Qe,onBrush:Je,decay:et,pulse:rt,transition:it,animate:at,staleness:st,heatmapAggregation:ct,heatmapXBins:ut,heatmapYBins:dt,showValues:ht,heatmapValueFormat:gt,marginalGraphics:ft,pointIdAccessor:pt,xScaleType:yt,yScaleType:mt,accessibleTable:bt=!0,description:At,summary:Et,linkedCrosshairName:Mt,linkedCrosshairSourceId:jt}=t,Ct=e.useRef(!1),Pt=qt({sizeProp:F,responsiveWidth:$,responsiveHeight:z,userMargin:G,marginDefault:mn,animate:at,transitionProp:it,themeDirtyRef:Ct}),{reducedMotionRef:_t,responsiveRef:Lt,size:Tt,currentTheme:Rt,transition:Bt,introEnabled:Dt,tableId:It,rafRef:Nt,renderFnRef:Ht,scheduleRender:Wt}=Pt;let Ft=Pt.margin;if(ft){const e=60,t=Object.assign({},Pt.margin);ft.top&&e>t.top&&(t.top=e),ft.bottom&&e>t.bottom&&(t.bottom=e),ft.left&&e>t.left&&(t.left=e),ft.right&&e>t.right&&(t.right=e),Ft=t}const $t="function"==typeof qe?qe({size:Tt,margin:Ft}):qe,zt="function"==typeof Ye?Ye({size:Tt,margin:Ft}):Ye,Gt=Tt[0]-Ft.left-Ft.right,Yt=Tt[1]-Ft.top-Ft.bottom,Ut=null!=Ce?Ce:Te,Kt=e.useRef(null),Qt=e.useRef(null),[Zt,Jt]=e.useState(0),[en,tn]=e.useState(null),nn=e.useRef(null),on=e.useRef(null),[rn,an]=e.useState(null),[sn,ln]=e.useState(!1),[cn,un]=e.useState([]),[hn,gn]=e.useState([]),fn="streaming"===y||["bar","swarm","waterfall"].includes(f),xn=e.useMemo(()=>{var e;return{chartType:f,runtimeMode:fn?"streaming":"bounded",windowSize:R,windowMode:T,arrowOfTime:fn?L:"right",extentPadding:N,scalePadding:H,xAccessor:fn?void 0:w,yAccessor:fn?void 0:A,timeAccessor:fn?B:void 0,valueAccessor:_,colorAccessor:S,sizeAccessor:O,groupAccessor:E||(M?"_lineGroup":void 0),categoryAccessor:Ke,lineDataAccessor:M,xScaleType:yt,yScaleType:mt,xExtent:D,yExtent:I,sizeRange:W,binSize:P,normalize:C,boundsAccessor:te,boundsStyle:ne,y0Accessor:oe,gradientFill:!0===re?{topOpacity:.8,bottomOpacity:.05}:!1===re?void 0:re,areaGroups:le?new Set(le):void 0,lineGradient:se,openAccessor:ce,highAccessor:ue,lowAccessor:de,closeAccessor:he,candlestickStyle:ge,lineStyle:X,pointStyle:V,areaStyle:U,swarmStyle:Q,waterfallStyle:K,colorScheme:ee,barColors:J,annotations:De,decay:et,pulse:rt,transition:Bt,introAnimation:Dt,staleness:st,heatmapAggregation:ct,heatmapXBins:ut,heatmapYBins:dt,showValues:ht,heatmapValueFormat:gt,pointIdAccessor:pt,curve:j,themeCategorical:null===(e=null==Rt?void 0:Rt.colors)||void 0===e?void 0:e.categorical}},[f,R,T,L,N,H,w,A,B,_,yt,mt,S,O,E,Ke,M,D,I,W,P,C,te,ne,oe,re,se,le,ce,ue,de,he,ge,X,V,U,Q,K,ee,J,De,et,rt,null==Bt?void 0:Bt.duration,null==Bt?void 0:Bt.easing,Dt,st,ct,ut,dt,ht,gt,fn,pt,j,Rt]),wn=e.useRef(null);wn.current||(wn.current=new Z(xn)),e.useEffect(()=>{var e;null===(e=wn.current)||void 0===e||e.updateConfig(xn),Ct.current=!0,Wt()},[xn,Wt]);const An=e.useRef(null);An.current||(An.current=new x(e=>{const t=wn.current;t&&t.ingest(e)&&(Ct.current=!0,Wt())},{chunkThreshold:v,chunkSize:k})),e.useEffect(()=>{var e;null===(e=An.current)||void 0===e||e.updateChunkOptions({chunkThreshold:v,chunkSize:k})},[v,k]);const Sn=e.useCallback(e=>{var t;null===(t=An.current)||void 0===t||t.push(e)},[]),On=e.useCallback(e=>{var t;null===(t=An.current)||void 0===t||t.pushMany(e)},[]),En=e.useCallback(()=>{var e,t;null===(e=An.current)||void 0===e||e.clear(),null===(t=wn.current)||void 0===t||t.clear(),Ct.current=!0,Wt()},[Wt]);e.useImperativeHandle(n,()=>({push:Sn,pushMany:On,remove:e=>{var t,n,o;null===(t=An.current)||void 0===t||t.flush();const r=null!==(o=null===(n=wn.current)||void 0===n?void 0:n.remove(e))&&void 0!==o?o:[];return r.length>0&&(nn.current&&r.some(e=>{var t;return e===(null===(t=nn.current)||void 0===t?void 0:t.data)})&&(nn.current=null,an(null)),Ct.current=!0,Wt()),r},update:(e,t)=>{var n,o,r;null===(n=An.current)||void 0===n||n.flush();const i=null!==(r=null===(o=wn.current)||void 0===o?void 0:o.update(e,t))&&void 0!==r?r:[];return i.length>0&&(Ct.current=!0,Wt()),i},clear:En,getData:()=>{var e,t,n;return null===(e=An.current)||void 0===e||e.flush(),null!==(n=null===(t=wn.current)||void 0===t?void 0:t.getData())&&void 0!==n?n:[]},getScales:()=>{var e,t;return null!==(t=null===(e=wn.current)||void 0===e?void 0:e.scales)&&void 0!==t?t:null},getExtents:()=>{var e,t;return null!==(t=null===(e=wn.current)||void 0===e?void 0:e.getExtents())&&void 0!==t?t:null}}),[Sn,On,En,Wt]),e.useEffect(()=>{var e,t;if(m){if(M&&m.length>0&&"object"==typeof m[0]&&null!==m[0]){const t="string"==typeof M?M:"coordinates";if(Array.isArray(m[0][t])){const n=[];for(const e of m){const o=e[t];if(Array.isArray(o)){const t=e.label||e.id||e.key;if(null!=t)for(const e of o)n.push(Object.assign(Object.assign({},e),{_lineGroup:t}));else for(const e of o)n.push(e)}}return void(null===(e=An.current)||void 0===e||e.setBoundedData(n))}}null===(t=An.current)||void 0===t||t.setBoundedData(m)}},[m,M]);const{hoverHandlerRef:Mn,hoverLeaveRef:jn,onPointerMove:Cn,onPointerLeave:Pn}=Pt;Mn.current=e=>{if(!Ut)return;const t=Kt.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-Ft.left,r=e.clientY-n.top-Ft.top;if(0>o||o>Gt||0>r||r>Yt)return void(nn.current&&(nn.current=null,on.current=null,an(null),_e&&(_e(null),Ct.current=!0),Wt()));const i=wn.current;if(!i||0===i.scene.length)return;const a=ie(i.scene,o,r,Re,i.quadtree,i.maxPointRadius);if(!a)return void(nn.current&&(nn.current=null,on.current=null,an(null),_e&&_e(null),Wt()));const s=dn(a.datum||{},a.x,a.y);if("multi"===Be&&i.scene.length>0&&i.scales){const e=function(e,t,n=30){const o=[];for(const r of e)if("line"===r.type){const e=r;if(2>e.path.length)continue;const i=ae(e.path,t,n);if(null===i)continue;const a=fe(e.path,t);o.push({node:r,datum:Array.isArray(e.datum)&&e.datum[a]?e.datum[a]:e.datum,x:e.path[a][0],y:i,group:e.group,color:e.style.stroke})}else if("area"===r.type){const e=r;if(!1===e.interactive)continue;if(2>e.topPath.length)continue;const i=ae(e.topPath,t,n);if(null===i)continue;const a=fe(e.topPath,t);o.push({node:r,datum:Array.isArray(e.datum)&&e.datum[a]?e.datum[a]:e.datum,x:e.topPath[a][0],y:i,group:e.group,color:"string"==typeof e.style.stroke?e.style.stroke:"string"==typeof e.style.fill?e.style.fill:void 0})}return o}(i.scene,a.x,Re),t=i.scales.y.invert,n=i.scales.x.invert;if(e.length>0){const o=n?n(a.x):a.x;s.xValue=o,s.xPx=a.x,s.allSeries=e.map(e=>({group:e.group||"",value:t?t(e.y):e.y,valuePx:e.y,color:e.color||"#007bff",datum:e.datum}))}}nn.current=s,on.current=a.node,an(s),_e&&(_e(s),Ct.current=!0),Wt()},jn.current=()=>{nn.current&&(nn.current=null,on.current=null,an(null),_e&&(_e(null),Ct.current=!0),Wt())};const _n=e.useRef(()=>{});_n.current=e=>{if(!Le)return;const t=Kt.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-Ft.left,r=e.clientY-n.top-Ft.top;if(0>o||o>Gt||0>r||r>Yt)return void Le(null);const i=wn.current;if(!i||0===i.scene.length)return void Le(null);const a=ie(i.scene,o,r,Re,i.quadtree,i.maxPointRadius);Le(a?dn(a.datum||{},a.x,a.y):null)};const Ln=e.useCallback(e=>_n.current(e),[]),Tn=e.useRef(-1),Rn=e.useRef(null),Bn=e.useRef(null),Dn=e.useCallback(e=>{const t=wn.current;if(!t||0===t.scene.length)return;const n=t.version;let o;if(Bn.current&&Bn.current.version===n)o=Bn.current.graph;else{const e=function(e){var t,n,o,r;const i=[];for(const a of e)switch(a.type){case"point":i.push({x:a.x,y:a.y,datum:a.datum,shape:"circle",group:null!==(t=a.group)&&void 0!==t?t:"_default"});break;case"line":{const e=a,t=Array.isArray(e.datum)?e.datum:[],o=null!==(n=e.group)&&void 0!==n?n:"_default";for(let n=0;e.path.length>n&&t.length>n;n++)i.push({x:e.path[n][0],y:e.path[n][1],datum:t[n],shape:"circle",group:o});break}case"area":{const e=a,t=Array.isArray(e.datum)?e.datum:[],n=null!==(o=e.group)&&void 0!==o?o:"_default";for(let o=0;e.topPath.length>o&&t.length>o;o++)i.push({x:e.topPath[o][0],y:e.topPath[o][1],datum:t[o],shape:"circle",group:n});break}case"rect":i.push({x:a.x+a.w/2,y:a.y+a.h/2,datum:a.datum,shape:"rect",w:a.w,h:a.h,group:null!==(r=a.group)&&void 0!==r?r:"_default"});break;case"heatcell":i.push({x:a.x+a.w/2,y:a.y+a.h/2,datum:a.datum,shape:"rect",w:a.w,h:a.h,group:"_default"})}return i.sort((e,t)=>e.x-t.x||e.y-t.y),i}(t.scene);if(0===e.length)return;o=pe(e),Bn.current={version:n,graph:o}}const r=Tn.current;if(0>r){if("Escape"===e.key)return;if(!["ArrowRight","ArrowLeft","ArrowUp","ArrowDown","Home","End","PageUp","PageDown"].includes(e.key))return;e.preventDefault(),Tn.current=0;const t=o.flat[0];Rn.current={shape:t.shape,w:t.w,h:t.h};const n=be(t);return nn.current=n,an(n),_e&&_e(n),void Wt()}const i=ye(o,r),a=me(e.key,i,o);if(null===a)return;if(e.preventDefault(),0>a)return Tn.current=-1,Rn.current=null,nn.current=null,on.current=null,an(null),_e&&_e(null),void Wt();Tn.current=a;const s=o.flat[a];Rn.current={shape:s.shape,w:s.w,h:s.h};const l=be(s);nn.current=l,an(l),_e&&_e(l),Wt()},[_e,Wt]),In=e.useCallback(e=>{Tn.current=-1,Rn.current=null,Cn(e)},[Cn]);Ht.current=()=>{var e,t;Nt.current=0;const n=Kt.current,o=Qt.current;if(!n||!o)return;const r=wn.current;if(!r)return;const i="undefined"!=typeof performance?performance.now():Date.now(),a=r.advanceTransition(_t.current?i+1e6:i),s=!_t.current&&a,l=Ct.current||a;l&&!s&&r.computeScene({width:Gt,height:Yt});const c=Vt(),u=function(e){if(!e)return vn;const t=getComputedStyle(e),n=t.getPropertyValue("--semiotic-border").trim(),o=t.getPropertyValue("--semiotic-text-secondary").trim(),r=t.getPropertyValue("--semiotic-bg").trim(),i=o||t.getPropertyValue("--text-secondary").trim(),a=t.getPropertyValue("--text-primary").trim(),s=n||t.getPropertyValue("--surface-3").trim(),l=r||t.getPropertyValue("--surface-0").trim();return i||a||n?{axisStroke:s||vn.axisStroke,tickText:i||vn.tickText,crosshair:i?bn(i,"66"):vn.crosshair,hoverFill:l?bn(l,"4D"):vn.hoverFill,hoverStroke:i?bn(i,"99"):vn.hoverStroke,pointRing:l||vn.pointRing}:vn}(n),d=null!==(e=null==st?void 0:st.threshold)&&void 0!==e?e:5e3,h=st&&r.lastIngestTime>0&&i-r.lastIngestTime>d;if(l){const e=Xt(n,Tt,Ft,c);if(e){if(e.clearRect(-Ft.left,-Ft.top,Tt[0],Tt[1]),h&&(e.globalAlpha=null!==(t=null==st?void 0:st.dimOpacity)&&void 0!==t?t:.5),"transparent"!==q&&!Ye){const t=getComputedStyle(n).getPropertyValue("--semiotic-bg").trim(),o=q||(t&&"transparent"!==t?t:null);o&&(e.fillStyle=o,e.fillRect(-Ft.left,-Ft.top,Tt[0],Tt[1]))}if(e.save(),"function"==typeof e.rect&&(e.beginPath(),e.rect(0,0,Gt,Yt),e.clip()),Xe&&r.scales)for(const t of Xe)e.save(),t(e,r.scene,r.scales,{width:Gt,height:Yt}),e.restore();const o=yn[f];if(o&&r.scales)for(const t of o)t(e,r.scene,r.scales,{width:Gt,height:Yt});e.restore(),h&&(e.globalAlpha=1)}}{const e=Xt(o,Tt,Ft,c);if(e&&(e.clearRect(-Ft.left,-Ft.top,Tt[0],Tt[1]),Ut&&nn.current&&r.scales&&function(e,t,n,o,r,i,a){var s,l;if(!1===r.crosshair)return;const c=t.allSeries,u=c&&c.length>0,d=null!==(s=t.xPx)&&void 0!==s?s:t.x;e.save();const h="object"==typeof r.crosshair?r.crosshair:{};if(e.strokeStyle=h.stroke||a.crosshair,e.lineWidth=h.strokeWidth||1,e.setLineDash(h.strokeDasharray?h.strokeDasharray.split(/[\s,]+/).map(Number):[4,4]),e.beginPath(),e.moveTo(u?d:t.x,0),e.lineTo(u?d:t.x,o),e.stroke(),u||(e.beginPath(),e.moveTo(0,t.y),e.lineTo(n,t.y),e.stroke()),e.restore(),u){e.lineWidth=2,e.strokeStyle=a.pointRing;for(const t of c)null!=t.valuePx&&(e.beginPath(),e.arc(d,t.valuePx,4,0,2*Math.PI),e.fillStyle=t.color||"#007bff",e.fill(),e.stroke())}else{let n="";try{(null===(l=e.canvas)||void 0===l?void 0:l.parentElement)&&(n=getComputedStyle(e.canvas).getPropertyValue("--semiotic-primary").trim())}catch(e){}const o=r.pointColor||function(e){if(!e)return null;if("heatcell"===e.type)return e.fill||null;if("candlestick"===e.type)return e.isUp?e.upColor:e.downColor;const{style:t}=e;if(!t)return null;const n="string"==typeof t.fill?t.fill:null;return"line"===e.type||"area"===e.type?t.stroke||n||null:n||t.stroke||null}(i)||n||"#007bff";e.beginPath(),e.arc(t.x,t.y,4,0,2*Math.PI),e.fillStyle=o,e.fill(),e.strokeStyle=a.pointRing,e.lineWidth=2,e.stroke()}}(e,nn.current,Gt,Yt,"object"==typeof Ut?Ut:{},on.current,u),on.current&&Array.isArray(Ce))){const t=Ce.find(e=>e&&"object"==typeof e&&"highlight"===e.type);t&&function(e,t,n,o){var r;if(!n)return;const i=n.group;if(void 0!==i)for(const n of t){if("line"!==n.type)continue;if(n.group!==i)continue;if(2>n.path.length)continue;const t="function"==typeof o.style?o.style(n.datum):o.style||{};e.save(),e.beginPath(),e.moveTo(n.path[0][0],n.path[0][1]);for(let t=1;n.path.length>t;t++)e.lineTo(n.path[t][0],n.path[t][1]);e.strokeStyle=t.stroke||n.style.stroke||"#007bff",e.lineWidth=t.strokeWidth||(n.style.strokeWidth||2)+2,e.globalAlpha=null!==(r=t.opacity)&&void 0!==r?r:1,e.stroke(),e.restore()}}(e,r.scene,on.current,t)}}l&&n&&n.setAttribute("aria-label",lt(r.scene,f+" chart"));const g=Ct.current;if(Ct.current=!1,g&&r.scales){const e=e=>"object"==typeof e&&null!==e&&"function"==typeof e.valueOf?e.valueOf():e;if((!en||e(en.x.domain()[0])!==e(r.scales.x.domain()[0])||e(en.x.domain()[1])!==e(r.scales.x.domain()[1])||e(en.y.domain()[0])!==e(r.scales.y.domain()[0])||e(en.y.domain()[1])!==e(r.scales.y.domain()[1])||en.x.range()[0]!==r.scales.x.range()[0]||en.x.range()[1]!==r.scales.x.range()[1]||en.y.range()[0]!==r.scales.y.range()[0]||en.y.range()[1]!==r.scales.y.range()[1])&&tn(r.scales),ft){const e=r.getData(),t="function"==typeof w?w:e=>e[w||"x"],n="function"==typeof A?A:e=>e[A||"y"];un(e.map(e=>t(e)).filter(e=>"number"==typeof e&&isFinite(e))),gn(e.map(e=>n(e)).filter(e=>"number"==typeof e&&isFinite(e)))}}g&&De&&De.length>0&&Jt(e=>e+1),(null==st?void 0:st.showBadge)&&ln(!!h),(s||null!=r.activeTransition||r.hasActivePulses)&&(Nt.current=requestAnimationFrame(()=>Ht.current()))},e.useEffect(()=>(Wt(),()=>{var e;null===(e=An.current)||void 0===e||e.clear()}),[Wt]),e.useEffect(()=>{Ct.current=!0,Wt()},[f,Gt,Yt,ve,q,X,Xe,Wt]),xe(st,wn,Ct,Wt,sn,ln);const Nn=e.useMemo(()=>{if(Oe||Me)return;const e=wn.current;return(null==e?void 0:e.xIsDate)&&en?pn(en.x.domain()):void 0},[Oe,Me,en]),Hn=Oe||Me||Nn,Wn=Ut&&rn?Pe?Pe(rn):p.createElement(kn,{hover:rn}):null,Fn=Wn?p.createElement(Ot,{x:rn.x,y:rn.y,containerWidth:Gt,containerHeight:Yt,margin:Ft,className:"stream-frame-tooltip"},Wn):null,$n=Rn.current,zn=p.createElement(St,{active:Tn.current>=0,hoverPoint:rn,margin:Ft,size:Tt,shape:null==$n?void 0:$n.shape,width:null==$n?void 0:$n.w,height:null==$n?void 0:$n.h}),Gn=(e,t,n,o)=>"string"==typeof e?{key:e,fn:null}:"function"==typeof e?{key:n,fn:e}:"string"==typeof t?{key:t,fn:null}:"function"==typeof t?{key:o,fn:t}:{key:void 0,fn:null},Yn=Gn(w,B,"__semiotic_resolvedX","__semiotic_resolvedTime"),qn=Gn(A,_,"__semiotic_resolvedY","__semiotic_resolvedValue"),Xn=Yn.key,Vn=qn.key,Un=De&&De.length>0,Kn=e=>{if(!e||!Un||!Yn.fn&&!qn.fn)return e;let t=!1;const n=e.map(e=>{const n=Yn.fn&&Yn.key&&!(Yn.key in e),o=qn.fn&&qn.key&&!(qn.key in e);if(!n&&!o)return e;t=!0;const r=Object.assign({},e);return n&&(r[Yn.key]=Yn.fn(e)),o&&(r[qn.key]=qn.fn(e)),r});return t?n:e};if(ot){const e=wn.current;e&&m&&(e.ingest({inserts:m,bounded:!0}),e.computeScene({width:Gt,height:Yt}));const t=null!==(o=null==e?void 0:e.scene)&&void 0!==o?o:[],n=null!==(r=null==e?void 0:e.scales)&&void 0!==r?r:null,i=Hn||(()=>{if((null==e?void 0:e.xIsDate)&&n)return pn(n.x.domain())})();return p.createElement("div",{className:"stream-xy-frame"+(Y?" "+Y:""),role:"img","aria-label":At||("string"==typeof Ue?Ue:"XY chart"),style:{position:"relative",width:Tt[0],height:Tt[1]}},p.createElement(xt,{summary:Et}),p.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:Tt[0],height:Tt[1],style:{position:"absolute",left:0,top:0}},p.createElement("g",{transform:`translate(${Ft.left},${Ft.top})`},zt),p.createElement("g",{transform:`translate(${Ft.left},${Ft.top})`},q&&p.createElement("rect",{x:0,y:0,width:Gt,height:Yt,fill:q}),Ve&&n&&Ve.map((e,o)=>p.createElement(p.Fragment,{key:"svgpre-"+o},e(t,n,{width:Gt,height:Yt}))),t.map((e,t)=>function(e,t){var n,o,r;switch(e.type){case"line":{const n=e;if(0===n.path.length)return null;const o="M"+n.path.map(([e,t])=>`${e},${t}`).join("L");return p.createElement("path",{key:"line-"+t,d:o,fill:"none",stroke:n.style.stroke||"#4e79a7",strokeWidth:n.style.strokeWidth||2,strokeDasharray:n.style.strokeDasharray,opacity:n.style.opacity})}case"area":{const r=e;if(0===r.topPath.length)return null;const i=r.topPath.map(([e,t])=>`${e},${t}`).join("L"),a=[...r.bottomPath].reverse().map(([e,t])=>`${e},${t}`).join("L");return p.createElement("path",{key:"area-"+t,d:`M${i}L${a}Z`,fill:nt(r.style.fill),fillOpacity:null!==(o=null!==(n=r.style.fillOpacity)&&void 0!==n?n:r.style.opacity)&&void 0!==o?o:.7,stroke:r.style.stroke,strokeWidth:r.style.strokeWidth})}case"point":{const n=e;return p.createElement("circle",{key:"point-"+t,cx:n.x,cy:n.y,r:n.r,fill:nt(n.style.fill),opacity:null!==(r=n.style.opacity)&&void 0!==r?r:.8,stroke:n.style.stroke,strokeWidth:n.style.strokeWidth})}case"rect":{const n=e;return p.createElement("rect",{key:"rect-"+t,x:n.x,y:n.y,width:n.w,height:n.h,fill:nt(n.style.fill),opacity:n.style.opacity,stroke:n.style.stroke,strokeWidth:n.style.strokeWidth})}case"heatcell":{const n=e;if(n.showValues&&null!=n.value&&n.w>=20&&n.h>=20){const e=n.valueFormat?n.valueFormat(n.value):Number.isInteger(n.value)?n.value+"":100>Math.abs(n.value)?1>Math.abs(n.value)?n.value.toPrecision(3):n.value.toFixed(1):n.value.toFixed(0),[o,r,i]=function(e){if(e.startsWith("#")){let t=e.slice(1);if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length)return[parseInt(t.slice(0,2),16),parseInt(t.slice(2,4),16),parseInt(t.slice(4,6),16)]}const t=e.match(/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return t?[+t[1],+t[2],+t[3]]:[128,128,128]}(n.fill),a=.299*o+.587*r+.114*i>128?"#000":"#fff",s=Math.max(10,Math.min(16,.3*Math.min(n.w,n.h)));return p.createElement("g",{key:"heatcell-"+t},p.createElement("rect",{x:n.x,y:n.y,width:n.w,height:n.h,fill:n.fill}),p.createElement("text",{x:n.x+n.w/2,y:n.y+n.h/2,textAnchor:"middle",dominantBaseline:"middle",fill:a,fontSize:s+"px"},e))}return p.createElement("rect",{key:"heatcell-"+t,x:n.x,y:n.y,width:n.w,height:n.h,fill:n.fill})}case"candlestick":{const n=e,o=Math.min(n.openY,n.closeY),r=Math.max(Math.abs(n.openY-n.closeY),1),i=n.isUp?n.upColor:n.downColor;return p.createElement("g",{key:"candle-"+t},p.createElement("line",{x1:n.x,y1:n.highY,x2:n.x,y2:n.lowY,stroke:n.wickColor,strokeWidth:n.wickWidth}),p.createElement("rect",{x:n.x-n.bodyWidth/2,y:o,width:n.bodyWidth,height:r,fill:i,stroke:i,strokeWidth:1}))}default:return null}}(e,t)).filter(Boolean))),p.createElement(tt,{width:Gt,height:Yt,totalWidth:Tt[0],totalHeight:Tt[1],margin:Ft,scales:n,showAxes:ve,axes:ke,xLabel:we,yLabel:Ae,yLabelRight:Se,xFormat:i,yFormat:Ee||je,showGrid:Ne,title:Ue,legend:He,legendHoverBehavior:We,legendClickBehavior:Fe,legendHighlightedCategory:$e,legendIsolatedCategories:ze,legendPosition:Ge,foregroundGraphics:$t,marginalGraphics:ft,xValues:[],yValues:[],annotations:De,svgAnnotationRules:Ie,annotationFrame:0,xAccessor:Xn,yAccessor:Vn,annotationData:Kn(null==e?void 0:e.getData()),pointNodes:null==e?void 0:e.scene.filter(e=>"point"===e.type),curve:"string"==typeof j?j:void 0,linkedCrosshairName:Mt,linkedCrosshairSourceId:jt}))}return p.createElement("div",{ref:Lt,className:"stream-xy-frame"+(Y?" "+Y:""),role:"group","aria-label":At||("string"==typeof Ue?Ue:"XY chart"),tabIndex:0,style:{position:"relative",width:$?"100%":Tt[0],height:z?"100%":Tt[1],overflow:"visible"},onKeyDown:Dn},bt&&p.createElement(kt,{tableId:It}),bt&&p.createElement(vt,{scene:null!==(a=null===(i=wn.current)||void 0===i?void 0:i.scene)&&void 0!==a?a:[],chartType:f+" chart",tableId:It,chartTitle:"string"==typeof Ue?Ue:void 0}),p.createElement(xt,{summary:Et}),p.createElement("div",{role:"img","aria-label":At||("string"==typeof Ue?Ue:"XY chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:Ut?In:void 0,onMouseLeave:Ut?Pn:void 0,onClick:Le?Ln:void 0},zt&&p.createElement("svg",{style:{position:"absolute",left:0,top:0,width:Tt[0],height:Tt[1],pointerEvents:"none"}},p.createElement("g",{transform:`translate(${Ft.left},${Ft.top})`},zt)),p.createElement(Ze,{width:Gt,height:Yt,totalWidth:Tt[0],totalHeight:Tt[1],margin:Ft,scales:en,showAxes:ve,axes:ke,showGrid:Ne,xFormat:Hn,yFormat:Ee||je}),p.createElement("canvas",{ref:Kt,"aria-label":lt(null!==(l=null===(s=wn.current)||void 0===s?void 0:s.scene)&&void 0!==l?l:[],f+" chart"),style:{position:"absolute",left:0,top:0}}),p.createElement("canvas",{ref:Qt,style:{position:"absolute",left:0,top:0,pointerEvents:"none"}}),p.createElement(wt,{hoverPoint:rn}),p.createElement(tt,{width:Gt,height:Yt,totalWidth:Tt[0],totalHeight:Tt[1],margin:Ft,scales:en,showAxes:ve,axes:ke,xLabel:we,yLabel:Ae,yLabelRight:Se,xFormat:Hn,yFormat:Ee||je,showGrid:Ne,title:Ue,legend:He,legendHoverBehavior:We,legendClickBehavior:Fe,legendHighlightedCategory:$e,legendIsolatedCategories:ze,legendPosition:Ge,foregroundGraphics:$t,marginalGraphics:ft,xValues:cn,yValues:hn,annotations:De,svgAnnotationRules:Ie,annotationFrame:Zt,xAccessor:Xn,yAccessor:Vn,annotationData:Kn(null===(c=wn.current)||void 0===c?void 0:c.getData()),pointNodes:null===(u=wn.current)||void 0===u?void 0:u.scene.filter(e=>"point"===e.type),curve:"string"==typeof j?j:void 0,underlayRendered:!0,linkedCrosshairName:Mt,linkedCrosshairSourceId:jt}),(Qe||Je)&&p.createElement(b,{width:Gt,height:Yt,totalWidth:Tt[0],totalHeight:Tt[1],margin:Ft,dimension:null!==(d=null==Qe?void 0:Qe.dimension)&&void 0!==d?d:"xy",scales:en,onBrush:null!=Je?Je:()=>{},binSize:P,snap:null==Qe?void 0:Qe.snap,binBoundaries:null!==(h=null==Qe?void 0:Qe.binBoundaries)&&void 0!==h?h:"bar"===f?null===(g=wn.current)||void 0===g?void 0:g.getBinBoundaries():void 0,snapDuring:null==Qe?void 0:Qe.snapDuring,streaming:"streaming"===y}),(null==st?void 0:st.showBadge)&&p.createElement("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===st.badgePosition?{top:4,left:4}:"bottom-left"===st.badgePosition?{bottom:4,left:4}:"bottom-right"===st.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{padding:"2px 8px",borderRadius:4,fontSize:11,fontWeight:600,pointerEvents:"none",background:sn?"#dc3545":"#28a745",color:"white"})},sn?"STALE":"LIVE"),zn,Fn))});wn.displayName="StreamXYFrame";const An=e.createContext(null);function Sn({colors:t,categories:n,colorScheme:o="category10",children:r}){const i=e.useMemo(()=>{if(t)return t;if(n){const e=Array.isArray(o)?o:j[o]||C,t={};for(let o=0;n.length>o;o++)t[n[o]]=e[o%e.length];return t}return{}},[t,n,o]);return p.createElement(An.Provider,{value:i},r)}function On(){return e.useContext(An)}function En(e){const t=[];for(const[n,o]of Object.entries(e.fields))if("point"===o.type)t.push(e=>o.values.has(e[n]));else{const[e,r]=o.range;t.push(t=>{const o=t[n];return o>=e&&r>=o})}return e=>t.every(t=>t(e))}function Mn(e,t){const n=[];for(const[o,r]of e.clauses)"crossfilter"===e.resolution&&o===t||n.push(En(r));return 0===n.length?()=>!0:"intersect"===e.resolution?e=>n.every(t=>t(e)):e=>n.some(t=>t(e))}function jn(e,t){let n=e.get(t);return n||(n={name:t,resolution:"union",clauses:new Map},e.set(t,n)),n}Sn.displayName="CategoryColorProvider";const[Cn,Pn]=Et(e=>({selections:new Map,setClause(t,n){e(e=>{const o=new Map(e.selections),r=jn(o,t),i=new Map(r.clauses);return i.set(n.clientId,n),o.set(t,Object.assign(Object.assign({},r),{clauses:i})),{selections:o}})},clearClause(t,n){e(e=>{const o=e.selections.get(t);if(!o)return{};const r=new Map(e.selections),i=new Map(o.clauses);return i.delete(n),r.set(t,Object.assign(Object.assign({},o),{clauses:i})),{selections:r}})},setResolution(t,n){e(e=>{const o=new Map(e.selections),r=jn(o,t);return o.set(t,Object.assign(Object.assign({},r),{resolution:n})),{selections:o}})},clearSelection(t){e(e=>{const n=new Map(e.selections),o=n.get(t);return o&&n.set(t,Object.assign(Object.assign({},o),{clauses:new Map})),{selections:n}})}})),[_n,Ln]=Et(e=>({observations:[],maxObservations:100,version:0,pushObservation(t){e(e=>{const n=e.observations;return n.push(t),n.length>e.maxObservations&&n.shift(),{version:e.version+1}})},clearObservations(){e(()=>({observations:[],version:0}))}}));function Tn(t){const n=e.useId(),o=t.clientId||n,{name:r}=t,i=Pn(e=>e.selections.get(r)),a=Pn(e=>e.setClause),s=Pn(e=>e.clearClause),l=e.useMemo(()=>!!i&&i.clauses.size>0,[i]);return{predicate:e.useMemo(()=>i&&0!==i.clauses.size?Mn(i,o):()=>!0,[i,o]),isActive:l,selectPoints:e.useCallback(e=>{const t={};for(const[n,o]of Object.entries(e))t[n]={type:"point",values:new Set(o)};a(r,{clientId:o,type:"point",fields:t})},[o,r,a]),selectInterval:e.useCallback(e=>{const t={};for(const[n,o]of Object.entries(e))t[n]={type:"interval",range:o};a(r,{clientId:o,type:"interval",fields:t})},[o,r,a]),clear:e.useCallback(()=>{s(r,o)},[s,r,o]),clientId:o}}function Rn(t){const n=t.name||"hover",{fields:o}=t,{predicate:r,isActive:i,selectPoints:a,clear:s}=Tn({name:n});return{onHover:e.useCallback(e=>{if(!e)return void s();const t={};for(const n of o){const o=e[n];void 0!==o&&(t[n]=[o])}Object.keys(t).length>0&&a(t)},[o,a,s,n]),predicate:r,isActive:i}}function Bn(t){const{name:n,xField:o,yField:r}=t,{predicate:i,isActive:a,selectInterval:s,clear:l}=Tn({name:n}),c=o&&r?"xyBrush":o?"xBrush":"yBrush",u=e.useCallback(e=>{if(!e)return void l();const t={};"xyBrush"===c&&Array.isArray(e)&&2===e.length?(o&&(t[o]=[Math.min(e[0][0],e[1][0]),Math.max(e[0][0],e[1][0])]),r&&(t[r]=[Math.min(e[0][1],e[1][1]),Math.max(e[0][1],e[1][1])])):"xBrush"===c&&Array.isArray(e)?o&&(t[o]=[Math.min(...e),Math.max(...e)]):"yBrush"===c&&Array.isArray(e)&&r&&(t[r]=[Math.min(...e),Math.max(...e)]),Object.keys(t).length>0&&s(t)},[c,o,r,s,l]);return{brushInteraction:e.useMemo(()=>({brush:c,during:u,end:u}),[c,u]),predicate:i,isActive:a,clear:l}}function Dn(t={}){const{limit:n=50,types:o,chartId:r}=t,i=Ln(e=>e.version),a=Ln(e=>e.observations),s=Ln(e=>e.clearObservations),l=e.useMemo(()=>{let e=a;if(o&&o.length>0){const t=new Set(o);e=e.filter(e=>t.has(e.type))}return r&&(e=e.filter(e=>e.chartId===r)),e.length>n&&(e=e.slice(e.length-n)),e},[a,o,r,n,i]);return{observations:l,latest:l.length>0?l[l.length-1]:null,clear:s}}const In=e.createContext(!1);function Nn({selections:t}){const n=Pn(e=>e.setResolution);return e.useEffect(()=>{for(const[e,o]of Object.entries(t))o.resolution&&n(e,o.resolution)},[t,n]),null}function Hn({categoryColors:t,interaction:n,selectionName:o,field:r}){const i=Object.entries(t);if(0===i.length)return null;const a=i.map(([e])=>e),s=[{styleFn:e=>({fill:e.color||"#333",stroke:e.color||"#333"}),type:"fill",items:i.map(([e,t])=>({label:e,color:t})),label:""}],l=Rn({name:o,fields:[r]}),c=Tn({name:o,clientId:"__linked-legend-isolate__"}),[u,d]=e.useState(new Set),[h,g]=e.useState(null),f=e.useRef(c.selectPoints);f.current=c.selectPoints;const y=e.useRef(c.clear);y.current=c.clear,e.useEffect(()=>{"isolate"===n&&(u.size>0?f.current({[r]:Array.from(u)}):y.current())},[n,u,r]);const m=e.useCallback(e=>{"highlight"===n&&(e?(g(e.label),l.onHover({[r]:e.label})):(g(null),l.onHover(null)))},[n,r,l]),v=e.useCallback(e=>{"isolate"===n&&d(t=>{const n=new Set(t);return n.has(e.label)?n.delete(e.label):n.add(e.label),n.size===a.length?new Set:n})},[n,a.length]),[b,[x]]=Dt([0,0],!0,!1),k=e.useMemo(()=>function(e,t){if(!t||0===e.length)return 1;let n=0,o=1;for(const r of e){const e=26+7*r.length;n>0&&n+e>t&&(o++,n=0),n+=e}return o}(i.map(([e])=>e),x),[i,x]);return p.createElement("div",{ref:b,style:{width:"100%",display:"block"}},p.createElement("svg",{width:"100%",height:Math.max(30,22*k+8),style:{display:"block",overflow:"visible"}},p.createElement(Ee,{legendGroups:s,title:!1,orientation:"horizontal",width:x,height:20,customHoverBehavior:"highlight"===n?m:void 0,customClickBehavior:"isolate"===n?v:void 0,highlightedCategory:h,isolatedCategories:u})))}function Wn({children:e,selections:t,showLegend:n,legendPosition:o="top",legendInteraction:r="none",legendSelectionName:i="legend",legendField:a="category"}){const s=On(),l=void 0!==n?n:!(!s||0>=Object.keys(s).length);return p.createElement(Cn,null,p.createElement(_n,null,t&&p.createElement(Nn,{selections:t}),p.createElement(In.Provider,{value:l},l&&"top"===o&&s&&p.createElement(Hn,{categoryColors:s,interaction:r,selectionName:i,field:a}),e,l&&"bottom"===o&&s&&p.createElement(Hn,{categoryColors:s,interaction:r,selectionName:i,field:a}))))}function Fn({data:e,colorBy:t,colorScale:n,getColor:o,strokeColor:r,strokeWidth:i,categories:a}){const s=(a&&a.length>0?a:Array.from(new Set(e.map(e=>"function"==typeof t?t(e):e[t])))).map((r,i)=>{const a=e.find("function"==typeof t?e=>t(e)===r:e=>e[t]===r),s=a?o(a,t,n):n?n(r):P[i%P.length];return{label:r+"",color:s}});return{legendGroups:[{styleFn:e=>{const t=e.color||"#333",n={fill:t,stroke:t};return void 0!==r&&(n.stroke=r),void 0!==i&&(n.strokeWidth=i),n},type:"fill",items:s,label:""}]}}function $n(e){return e?"string"==typeof e?{name:e}:e:null}function zn(e,t,n){return t?o=>{var r;const i=Object.assign({},e(o));if(t.isActive)if(t.predicate(o))(null==n?void 0:n.selectedStyle)&&Object.assign(i,n.selectedStyle);else{const e=null!==(r=null==n?void 0:n.unselectedOpacity)&&void 0!==r?r:.5;i.opacity=e,i.fillOpacity=e,i.strokeOpacity=e,(null==n?void 0:n.unselectedStyle)&&Object.assign(i,n.unselectedStyle)}return i}:e}const Gn={light:Pt,dark:_t,"high-contrast":Lt,pastels:{mode:"light",colors:{primary:"#c9a0dc",categorical:["#f0a0c0","#88d4ab","#b0a0e8","#f0c888"],sequential:"purples",background:"#fdf6f0",text:"#4a3728",textSecondary:"#8b7355",grid:"#e8d5c4",border:"#e8d5c4",focus:"#c9a0dc",annotation:"#c9a0dc"},typography:{fontFamily:"Inter, system-ui, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#fff5ee",text:"#4a3728",borderRadius:"8px",shadow:"0 2px 8px rgba(0, 0, 0, 0.12)"},borderRadius:"10px"},"pastels-dark":{mode:"dark",colors:{primary:"#c9a0dc",categorical:["#f0a0c0","#88d4ab","#b0a0e8","#f0c888"],sequential:"purples",background:"#1a1525",text:"#e8ddf0",textSecondary:"#a899c0",grid:"#3d3455",border:"#3d3455",focus:"#c9a0dc",annotation:"#c9a0dc"},typography:{fontFamily:"Inter, system-ui, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#251e35",text:"#e8ddf0",borderRadius:"8px",shadow:"0 4px 12px rgba(0, 0, 0, 0.4)"},borderRadius:"10px"},"bi-tool":{mode:"light",colors:{primary:"#2563eb",categorical:["#2563eb","#0d9488","#ea580c","#6b7280"],sequential:"blues",background:"#f5f6f8",text:"#2c3e50",textSecondary:"#7f8c9b",grid:"#d8dce3",border:"#d8dce3",focus:"#2563eb",annotation:"#2563eb"},typography:{fontFamily:"'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#ffffff",text:"#2c3e50",borderRadius:"6px",shadow:"0 2px 8px rgba(0, 0, 0, 0.12)"},borderRadius:"8px"},"bi-tool-dark":{mode:"dark",colors:{primary:"#3b82f6",categorical:["#3b82f6","#14b8a6","#f97316","#9ca3af"],sequential:"blues",background:"#111827",text:"#f3f4f6",textSecondary:"#9ca3af",grid:"#374151",border:"#374151",focus:"#3b82f6",annotation:"#3b82f6"},typography:{fontFamily:"'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#1f2937",text:"#f3f4f6",borderRadius:"6px",shadow:"0 4px 12px rgba(0, 0, 0, 0.4)"},borderRadius:"8px"},italian:{mode:"light",colors:{primary:"#cc0000",categorical:["#cc0000","#333333","#c8a415","#4682b4"],sequential:"reds",background:"#fafafa",text:"#1a1a1a",textSecondary:"#666666",grid:"#e0e0e0",border:"#e0e0e0",focus:"#cc0000",annotation:"#cc0000"},typography:{fontFamily:"'Helvetica Neue', Helvetica, Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#ffffff",text:"#1a1a1a",borderRadius:"2px",shadow:"0 2px 4px rgba(0, 0, 0, 0.15)"},borderRadius:"2px"},"italian-dark":{mode:"dark",colors:{primary:"#ff3333",categorical:["#ff3333","#aaaaaa","#d4a843","#6aa4d4"],sequential:"reds",background:"#0a0a0a",text:"#f5f5f5",textSecondary:"#aaaaaa",grid:"#333333",border:"#333333",focus:"#ff3333",annotation:"#ff3333"},typography:{fontFamily:"'Helvetica Neue', Helvetica, Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#1a1a1a",text:"#f5f5f5",borderRadius:"2px",shadow:"0 2px 8px rgba(0, 0, 0, 0.5)"},borderRadius:"2px"},tufte:{mode:"light",colors:{primary:"#8b0000",categorical:["#8b4513","#556b2f","#4a5568","#800020"],sequential:"oranges",background:"#fffff8",text:"#111111",textSecondary:"#555555",grid:"#e0ddd0",border:"#e0ddd0",focus:"#8b0000",annotation:"#8b0000"},typography:{fontFamily:"Georgia, 'Times New Roman', serif",titleSize:16,labelSize:12,tickSize:10,tickFontFamily:"'Courier New', Courier, monospace",legendSize:11},tooltip:{background:"#fffff8",text:"#111111",borderRadius:"2px",shadow:"0 1px 3px rgba(0, 0, 0, 0.1)"},borderRadius:"0px"},"tufte-dark":{mode:"dark",colors:{primary:"#c05050",categorical:["#c08050","#7a8b5a","#8090a0","#a05060"],sequential:"oranges",background:"#1c1b18",text:"#e8e4d8",textSecondary:"#a09880",grid:"#3d3c35",border:"#3d3c35",focus:"#c05050",annotation:"#c05050"},typography:{fontFamily:"Georgia, 'Times New Roman', serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#262520",text:"#e8e4d8",borderRadius:"2px",shadow:"0 2px 6px rgba(0, 0, 0, 0.4)"},borderRadius:"0px"},journalist:{mode:"light",colors:{primary:"#e45050",categorical:["#3a86c8","#e45050","#d4a843","#888888"],sequential:"blues",background:"#ffffff",text:"#222222",textSecondary:"#666666",grid:"#d4d4d4",border:"#d4d4d4",focus:"#e45050",annotation:"#e45050"},typography:{fontFamily:"'Franklin Gothic Medium', 'Libre Franklin', Arial, sans-serif",titleSize:18,labelSize:12,tickSize:10,tickFontFamily:"'Courier New', Courier, monospace",legendSize:11},tooltip:{background:"#f8f8f8",text:"#222222",borderRadius:"4px",shadow:"0 2px 6px rgba(0, 0, 0, 0.12)"},borderRadius:"4px"},"journalist-dark":{mode:"dark",colors:{primary:"#ff6b6b",categorical:["#5a9fd8","#ff6b6b","#e0c060","#aaaaaa"],sequential:"blues",background:"#141414",text:"#ededed",textSecondary:"#a0a0a0",grid:"#383838",border:"#383838",focus:"#ff6b6b",annotation:"#ff6b6b"},typography:{fontFamily:"'Franklin Gothic Medium', 'Libre Franklin', Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#1e1e1e",text:"#ededed",borderRadius:"4px",shadow:"0 4px 12px rgba(0, 0, 0, 0.4)"},borderRadius:"4px"},playful:{mode:"light",colors:{primary:"#8b5cf6",categorical:["#8b5cf6","#ec4899","#06b6d4","#84cc16"],sequential:"viridis",background:"#fdf8ff",text:"#2d1b4e",textSecondary:"#7c5a9e",grid:"#e8d0f8",border:"#e8d0f8",focus:"#8b5cf6",annotation:"#8b5cf6"},typography:{fontFamily:"'Nunito', 'Poppins', system-ui, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#ffffff",text:"#2d1b4e",borderRadius:"12px",shadow:"0 4px 12px rgba(139, 92, 246, 0.15)"},borderRadius:"12px"},"playful-dark":{mode:"dark",colors:{primary:"#a78bfa",categorical:["#a78bfa","#f472b6","#22d3ee","#a3e635"],sequential:"viridis",background:"#150a28",text:"#f0e8ff",textSecondary:"#b8a0d8",grid:"#3a2560",border:"#3a2560",focus:"#a78bfa",annotation:"#a78bfa"},typography:{fontFamily:"'Nunito', 'Poppins', system-ui, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#1f1138",text:"#f0e8ff",borderRadius:"12px",shadow:"0 4px 12px rgba(0, 0, 0, 0.4)"},borderRadius:"12px"},carbon:{mode:"light",colors:{primary:"#0f62fe",categorical:["#6929c4","#1192e8","#005d5d","#9f1853"],sequential:"blues",diverging:"RdBu",background:"#ffffff",text:"#161616",textSecondary:"#525252",grid:"#e0e0e0",border:"#e0e0e0",focus:"#0f62fe",annotation:"#0f62fe"},typography:{fontFamily:"'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#ffffff",text:"#161616",borderRadius:"2px",shadow:"0 2px 6px rgba(0, 0, 0, 0.2)"},borderRadius:"0px"},"carbon-dark":{mode:"dark",colors:{primary:"#4589ff",categorical:["#a56eff","#33b1ff","#08bdba","#ff7eb6"],sequential:"blues",diverging:"RdBu",background:"#161616",text:"#f4f4f4",textSecondary:"#a8a8a8",grid:"#393939",border:"#393939",focus:"#4589ff",annotation:"#4589ff"},typography:{fontFamily:"'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#262626",text:"#f4f4f4",borderRadius:"2px",shadow:"0 4px 12px rgba(0, 0, 0, 0.5)"},borderRadius:"0px"}};function Yn(e){return Gn[e]}const qn=p.createContext(void 0);function Xn({theme:e}){const t=Rt(e=>e.setTheme),n=Rt(e=>e.theme),o=p.useRef(n);o.current=n;const r=p.useRef(null);return p.useEffect(()=>{if(void 0!==e)return;if("undefined"==typeof window||!window.matchMedia)return;const n=window.matchMedia("(forced-colors: active)");return n.matches&&(r.current=o.current,t(Lt)),Bt(n,e=>{var n;e.matches?(r.current=o.current,t(Lt)):(t(null!==(n=r.current)&&void 0!==n?n:Pt),r.current=null)})},[e,t]),p.useEffect(()=>{if(void 0!==e)if("string"==typeof e){const n=Yn(e);t(n||e)}else t(e)},[e,t]),null}function Vn({children:e}){var t,n,o,r,i;const a=Rt(e=>e.theme),s=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({position:"relative","--semiotic-bg":a.colors.background,"--semiotic-text":a.colors.text,"--semiotic-text-secondary":a.colors.textSecondary,"--semiotic-grid":a.colors.grid,"--semiotic-border":a.colors.border,"--semiotic-primary":a.colors.primary,"--semiotic-font-family":a.typography.fontFamily},a.colors.focus?{"--semiotic-focus":a.colors.focus}:{}),(null===(t=a.tooltip)||void 0===t?void 0:t.background)?{"--semiotic-tooltip-bg":a.tooltip.background}:{}),(null===(n=a.tooltip)||void 0===n?void 0:n.text)?{"--semiotic-tooltip-text":a.tooltip.text}:{}),(null===(o=a.tooltip)||void 0===o?void 0:o.borderRadius)?{"--semiotic-tooltip-radius":a.tooltip.borderRadius}:{}),(null===(r=a.tooltip)||void 0===r?void 0:r.fontSize)?{"--semiotic-tooltip-font-size":a.tooltip.fontSize}:{}),(null===(i=a.tooltip)||void 0===i?void 0:i.shadow)?{"--semiotic-tooltip-shadow":a.tooltip.shadow}:{}),a.borderRadius?{"--semiotic-border-radius":a.borderRadius}:{}),a.colors.selection?{"--semiotic-selection-color":a.colors.selection}:{}),null!=a.colors.selectionOpacity?{"--semiotic-selection-opacity":a.colors.selectionOpacity+""}:{}),a.colors.diverging?{"--semiotic-diverging":a.colors.diverging}:{}),a.colors.annotation?{"--semiotic-annotation-color":a.colors.annotation}:{}),null!=a.typography.legendSize?{"--semiotic-legend-font-size":a.typography.legendSize+"px"}:{}),null!=a.typography.titleFontSize?{"--semiotic-title-font-size":a.typography.titleFontSize+"px"}:{}),null!=a.typography.tickFontFamily?{"--semiotic-tick-font-family":a.typography.tickFontFamily}:{}),l=p.useContext(qn),c={};return l&&(c["data-semiotic-theme"]=l),p.createElement("div",Object.assign({style:s},c),e)}function Un(){return Rt(e=>e.theme)}const Kn="#007bff";function Qn(){var e;const t=Un(),n=null===(e=null==t?void 0:t.colors)||void 0===e?void 0:e.categorical;return n&&n.length>0?n:void 0}function Zn(e,t,n,o,r){if(e)return e;let i;if(Array.isArray(n))i=n;else if(t&&t.length>0)i=t;else if("string"==typeof n){const e=j[n];Array.isArray(e)&&(i=e)}return i&&0!==i.length?null!=o?(r.has(o)||r.set(o,r.size),i[r.get(o)%i.length]):i[0]:Kn}function Jn(e){return"function"==typeof e?e:t=>t[e]}function eo(t,n,o){const r=On(),i=Qn();return e.useMemo(()=>{var e;if(!n)return;const a=null!==(e=null!=o?o:i&&i.length>0?i:void 0)&&void 0!==e?e:"category10";if(0!==t.length){if("function"==typeof n){const e=Array.from(new Set(t.map(e=>n(e)+"")));if(r&&Object.keys(r).length>0){const t=R(e.map(e=>({_cat:e})),"_cat",a);return e=>r[e]||t(e)}return R(e.map(e=>({_cat:e})),"_cat",a)}if(r&&Object.keys(r).length>0){const e=R(t,n,a);return t=>r[t]||e(t)}return R(t,n,a)}if(r&&Object.keys(r).length>0){const e=R([{_:"a"}],"_",a);return t=>r[t]||e(t)}},[t,n,o,r,i])}function to(t,n,o){return e.useMemo(()=>{if(!n||"auto"===n||"function"==typeof n)return t;const e=[...t],r=Jn(o);return e.sort("asc"===n?(e,t)=>r(e)-r(t):(e,t)=>r(t)-r(e))},[t,n,o])}function no({selection:t,linkedHover:n,fallbackFields:o=[],unwrapData:r=!1,onObservation:i,chartType:a,chartId:s,onClick:l,hoverHighlight:c,colorByField:u}){const d=e.useId(),h=function(e,t){return e?!0===e?{name:"hover",fields:t||[]}:"string"==typeof e?{name:e,fields:t||[]}:{name:e.name||"hover",fields:e.fields||t||[],mode:e.mode,xField:e.xField}:null}(n,o),g=Tn({name:(null==t?void 0:t.name)||"__unused__"}),f=Rn({name:(null==h?void 0:h.name)||"hover",fields:(null==h?void 0:h.fields)||o||[]}),p=Ln(e=>e.pushObservation),y=t?{isActive:g.isActive,predicate:g.predicate}:null,[m,v]=e.useState(null),b=u||o[0],x=e.useMemo(()=>{if(!c||null==m||!b)return null;const e=m,t=b;return{isActive:!0,predicate:n=>{var o;return("string"==typeof n[t]?n[t]:(null!==(o=n[t])&&void 0!==o?o:"")+"")===e}}},[c,m,b]),k=e.useCallback(e=>{var t,o;if(n)if(e){let t=e.data||e.datum||e;if(Array.isArray(t)&&(t=t[0]),"x-position"===(null==h?void 0:h.mode)&&h.xField){const e=null==t?void 0:t[h.xField];null!=e&&Number.isFinite(Number(e))&&function(e,t,n){const o=We.positions.get(e);(null==o?void 0:o.locked)||o&&o.xValue===t&&o.sourceId===n||(We={positions:new Map(We.positions).set(e,{xValue:t,sourceId:n})},$e())}(h.name||"hover",Number(e),d)}"x-position"!==(null==h?void 0:h.mode)&&f.onHover(t)}else"x-position"===(null==h?void 0:h.mode)&&ze(h.name||"hover",d),"x-position"!==(null==h?void 0:h.mode)&&f.onHover(null);if(c&&b)if(e){let t=e.data||e.datum||e;Array.isArray(t)&&(t=t[0]);const n=null==t?void 0:t[b];v(null!=n?n+"":null)}else v(null);if(i||p){const n={timestamp:Date.now(),chartType:a||"unknown",chartId:s};if(e){let r=e.data||e.datum||e;Array.isArray(r)&&(r=r[0]);const a=Object.assign(Object.assign({},n),{type:"hover",datum:r||{},x:null!==(t=e.x)&&void 0!==t?t:0,y:null!==(o=e.y)&&void 0!==o?o:0});i&&i(a),p&&p(a)}else{const e=Object.assign(Object.assign({},n),{type:"hover-end"});i&&i(e),p&&p(e)}}},[n,f,h,d,i,a,s,p,c,b]),w=e.useCallback(e=>{var t,n,o,r;if("x-position"===(null==h?void 0:h.mode)&&h.xField&&e){let t=e.data||e.datum||e;Array.isArray(t)&&(t=t[0]);const n=null==t?void 0:t[h.xField];null!=n&&Number.isFinite(Number(n))&&function(e,t,n){const o=We.positions.get(e);if(null==o?void 0:o.locked){const t=new Map(We.positions);return t.delete(e),We={positions:t},$e(),!1}We={positions:new Map(We.positions).set(e,{xValue:t,sourceId:n,locked:!0})},$e()}(h.name||"hover",Number(n),d)}if(e&&l){let o=e.data||e.datum||e;Array.isArray(o)&&(o=o[0]),l(o,{x:null!==(t=e.x)&&void 0!==t?t:0,y:null!==(n=e.y)&&void 0!==n?n:0})}if(i||p){const t={timestamp:Date.now(),chartType:a||"unknown",chartId:s};if(e){let n=e.data||e.datum||e;Array.isArray(n)&&(n=n[0]);const a=Object.assign(Object.assign({},t),{type:"click",datum:n||{},x:null!==(o=e.x)&&void 0!==o?o:0,y:null!==(r=e.y)&&void 0!==r?r:0});i&&i(a),p&&p(a)}else{const e=Object.assign(Object.assign({},t),{type:"click-end"});i&&i(e),p&&p(e)}}},[l,i,p,a,s,h,d]);return e.useEffect(()=>{if("x-position"!==(null==h?void 0:h.mode))return;const e=h.name||"hover";return()=>{Ge(e,d),ze(e,d)}},[null==h?void 0:h.mode,null==h?void 0:h.name,d]),{activeSelectionHook:y,hoverSelectionHook:x,customHoverBehavior:k,customClickBehavior:w,crosshairSourceId:d}}function oo(e,t){const n="object"==typeof e&&null!==e?e:void 0;if("x-position"===(null==n?void 0:n.mode))return{linkedCrosshairName:n.name||"hover",linkedCrosshairSourceId:t}}function ro({data:t,colorBy:n,colorScale:o,showLegend:r,legendPosition:i="right",userMargin:a,defaults:s={top:50,bottom:60,left:70,right:40},categories:l}){const c=e.useContext(In),u=void 0!==r?r:!c&&!!n,d=e.useMemo(()=>{if(u&&n)return Fn({data:t,colorBy:n,colorScale:o,getColor:T,categories:l})},[u,n,t,o,l]),h=e.useMemo(()=>{const e=Object.assign(Object.assign({},s),a);return d&&("right"===i&&110>e.right?e.right=110:"left"===i&&110>e.left?e.left=110:"top"===i&&50>e.top?e.top=50:"bottom"===i&&80>e.bottom&&(e.bottom=80)),e},[s,a,d,i]);return{legend:d,margin:h,legendPosition:i}}function io(t,n,o){const[r,i]=e.useState(null),[a,s]=e.useState(new Set),l=e.useCallback(e=>{"highlight"===t&&i(e?e.label:null)},[t]),c=e.useCallback(e=>{"isolate"===t&&s(t=>{const n=new Set(t);return n.has(e.label)?n.delete(e.label):n.add(e.label),n.size===o.length?new Set:n})},[t,o.length]),u=e.useMemo(()=>{if(!t||"none"===t||!n)return null;const e="string"==typeof n?n:null;return"highlight"===t&&null!=r?{isActive:!0,predicate:t=>(e?t[e]:"function"==typeof n?n(t):null)===r}:"isolate"===t&&a.size>0?{isActive:!0,predicate:t=>{const o=e?t[e]:"function"==typeof n?n(t):null;return a.has(o)}}:null},[t,n,r,a]);return{highlightedCategory:"highlight"===t?r:null,isolatedCategories:"isolate"===t?a:new Set,onLegendHover:l,onLegendClick:c,legendSelectionHook:u}}const ao={primary:{width:600,height:400,showAxes:!0,showGrid:!1,enableHover:!0,showLegend:void 0,showLabels:void 0,marginDefaults:{top:50,bottom:60,left:70,right:40}},context:{width:400,height:250,showAxes:!1,showGrid:!1,enableHover:!1,showLegend:!1,showLabels:!1,marginDefaults:{top:10,bottom:10,left:10,right:10}},sparkline:{width:120,height:24,showAxes:!1,showGrid:!1,enableHover:!1,showLegend:!1,showLabels:!1,marginDefaults:{top:2,bottom:2,left:0,right:0}}};function so(e,t,n){var o,r,i,a,s,l,c;const u=ao[e||"primary"],d="context"===e||"sparkline"===e;return{width:null!==(o=t.width)&&void 0!==o?o:e&&"primary"!==e||!(null==n?void 0:n.width)?u.width:n.width,height:null!==(r=t.height)&&void 0!==r?r:e&&"primary"!==e||!(null==n?void 0:n.height)?u.height:n.height,showAxes:null!==(i=t.showAxes)&&void 0!==i?i:u.showAxes,showGrid:null!==(a=t.showGrid)&&void 0!==a?a:u.showGrid,enableHover:null!==(s=t.enableHover)&&void 0!==s?s:!!t.linkedHover||u.enableHover,showLegend:null!==(l=t.showLegend)&&void 0!==l?l:u.showLegend,showLabels:null!==(c=t.showLabels)&&void 0!==c?c:u.showLabels,title:d?void 0:t.title,description:t.description,summary:t.summary,accessibleTable:t.accessibleTable,xLabel:d?void 0:t.xLabel,yLabel:d?void 0:t.yLabel,categoryLabel:d?void 0:t.categoryLabel,valueLabel:d?void 0:t.valueLabel,marginDefaults:lo(u.marginDefaults,t.showCategoryTicks,t.orientation)}}function lo(e,t,n){if(!1!==t)return e;const o=Object.assign({},e);return"horizontal"===n?o.left=Math.min(o.left,15):o.bottom=Math.min(o.bottom,15),o}const co={background:"var(--semiotic-tooltip-bg, rgba(0, 0, 0, 0.85))",color:"var(--semiotic-tooltip-text, white)",padding:"8px 12px",borderRadius:"var(--semiotic-tooltip-radius, 6px)",fontSize:"var(--semiotic-tooltip-font-size, 14px)",fontFamily:"var(--semiotic-font-family, inherit)",lineHeight:"1.5",boxShadow:"var(--semiotic-tooltip-shadow, 0 2px 8px rgba(0, 0, 0, 0.15))",pointerEvents:"none",maxWidth:"300px",wordWrap:"break-word"};function uo(e,t){return"function"==typeof t?t(e):e[t]}function ho(e,t){if(t)return t(e);if(null==e)return"";if("number"==typeof e){if(!Number.isFinite(e))return e+"";const t=Number.isInteger(e)?e:parseFloat(e.toPrecision(6));return Math.abs(t)>9999?t.toLocaleString():t+""}return e instanceof Date?e.toLocaleDateString():"object"==typeof e&&null!==e?void 0!==e.id?e.id+"":void 0!==e.name?e.name+"":JSON.stringify(e):e+""}function go(e={}){const{fields:t,title:n,format:o,style:r={},className:i=""}=e;return e=>{if(!e||"object"!=typeof e)return null;let a;const s=[];if(n){const t=uo(e,n);a=ho(t,o)}if(t&&t.length>0)t.forEach(t=>{let n,r,i;"string"==typeof t?(n=t,r=t,i=o):(n=t.label,r=t.accessor||t.key||"",i=t.format||o);const a=uo(e,r);s.push({label:n,value:ho(a,i)})});else if(!n){const t=["value","y","name","id","label"];for(const n of t)if(void 0!==e[n]){a=ho(e[n],o);break}if(!a){const t=Object.keys(e).filter(e=>!e.startsWith("_"));t.length>0&&(a=ho(e[t[0]],o))}}const l=Object.assign(Object.assign({},co),r);return p.createElement("div",{className:("semiotic-tooltip "+i).trim(),style:l},a&&p.createElement("div",{style:{fontWeight:s.length>0?"bold":"normal"}},a),s.map((e,t)=>p.createElement("div",{key:t,style:{marginTop:0===t&&a?"4px":0}},e.label&&p.createElement("span",null,e.label,": "),e.value)))}}function fo(e){if(!0===e)return go();if("function"==typeof e){const t=e;return e=>{const n=t(!e||"object"!=typeof e.data||null===e.data||"node"!==e.type&&"edge"!==e.type?e:e.data);return null==n?null:p.createElement("div",{className:"semiotic-tooltip",style:co},n)}}return!1!==e&&void 0!==e&&("object"==typeof e&&null!==e&&("fields"in e||"title"in e)?go(e):go())}function po(e){return"string"==typeof e?e:"value"}function yo(e){return null==e?"–":"number"==typeof e?Math.abs(e)>9999?e.toLocaleString():e+"":e instanceof Date?e.toLocaleDateString():e+""}function mo(e,t){if(!t)return yo(e);try{const n=t(e);return null==n?yo(e):n}catch(t){return yo(e)}}function vo(e,t){return"function"==typeof t?t(e):e[t]}function bo(e){const t=e.find(e=>"title"===e.role),n=e.filter(e=>"title"!==e.role);return e=>{const o=e.data;if(!o)return null;const r=t?mo(vo(o,t.accessor),t.format):null;return p.createElement("div",{className:"semiotic-tooltip",style:co},null!=r&&p.createElement("div",{style:{fontWeight:"bold",marginBottom:n.length>0?4:0}},r),n.map((e,t)=>{const n=mo(vo(o,e.accessor),e.format);return p.createElement("div",{key:t,style:t>0?{marginTop:2}:void 0},p.createElement("span",{style:{opacity:.7}},e.label,": "),p.createElement("span",null,n))}))}}function xo({categoryAccessor:e,valueAccessor:t,groupAccessor:n,groupLabel:o,pieData:r=!1,valueFormat:i}){return a=>{var s;const l=r?(null===(s=a.data)||void 0===s?void 0:s[0])||a.data||a:a.data||a,c=vo(l,e),u=vo(l,t),d=n?vo(l,n):void 0;return p.createElement("div",{className:"semiotic-tooltip",style:co},p.createElement("div",{style:{fontWeight:"bold"}},yo(c)),p.createElement("div",{style:{marginTop:4}},mo(u,i)),null!=d&&p.createElement("div",{style:{marginTop:2,opacity:.8}},o||po(n),": ",yo(d)))}}function ko({componentName:e,message:t,diagnosticHint:n,width:o,height:r}){return p.createElement("div",{role:"alert",style:{width:o,height:Math.max(r,120),display:"flex",alignItems:"center",justifyContent:"center",border:"1px dashed rgba(128, 128, 128, 0.4)",borderRadius:8,background:"rgba(128, 128, 128, 0.04)",padding:24,boxSizing:"border-box"}},p.createElement("div",{style:{textAlign:"center",maxWidth:400}},p.createElement("div",{style:{fontSize:13,fontWeight:600,color:"rgba(128, 128, 128, 0.7)",marginBottom:6,fontFamily:"monospace"}},e),p.createElement("div",{style:{fontSize:14,color:"rgba(128, 128, 128, 0.9)",lineHeight:1.5}},t),n&&p.createElement("div",{"data-testid":"semiotic-diagnostic-hint",style:{marginTop:10,padding:"8px 12px",background:"rgba(128, 128, 128, 0.06)",borderRadius:4,fontSize:12,color:"rgba(128, 128, 128, 0.8)",fontFamily:"monospace",textAlign:"left",whiteSpace:"pre-wrap",lineHeight:1.6}},n)))}class wo extends p.Component{constructor(e){super(e),this.state={error:null}}static getDerivedStateFromError(e){return{error:e}}componentDidCatch(e,t){var n,o;null===(o=(n=this.props).onError)||void 0===o||o.call(n,e,t)}render(){if(this.state.error){const{fallback:e}=this.props,t=this.state.error;return"function"==typeof e?e(t):void 0!==e?e:p.createElement(ko,{componentName:"ChartErrorBoundary",message:t.message||"An unexpected error occurred while rendering this chart.",width:600,height:400})}return this.props.children}}function Ao(e,t){const n=e.length,o=t.length,r=Array(o+1);for(let e=0;o>=e;e++)r[e]=e;for(let i=1;n>=i;i++){let n=r[0];r[0]=i;for(let a=1;o>=a;a++){const o=r[a];r[a]=e[i-1]===t[a-1]?n:1+Math.min(n,r[a],r[a-1]),n=o}}return r[o]}function So(e,t,n=3){let o,r=n+1;for(const n of t){const t=Ao(e.toLowerCase(),n.toLowerCase());r>t&&(r=t,o=n)}return r>n?void 0:o}function Oo(e){return e.length>3?[e[0],e[Math.floor(e.length/2)],e[e.length-1]]:e}function Eo(e,t){var n;if(0===t.length)return null;const o=e.toLowerCase();return t.find(e=>e.toLowerCase().includes(o)||o.includes(e.toLowerCase()))||(null!==(n=So(e,t,3))&&void 0!==n?n:null)}function Mo({componentName:e,data:t,accessors:n,requiredProps:o}){if(o)for(const[t,n]of Object.entries(o))if(null==n)return`${e}: ${t} is required. Provide a field name or function.`;if(null==t)return null;if(!Array.isArray(t)||0===t.length)return e+": No data provided. Pass a non-empty array to the data prop.";if(!Array.isArray(t)&&"object"==typeof t)return e+": data should be an array, but received an object. If this is hierarchical data, use TreeDiagram, Treemap, or CirclePack instead.";if(n){const o=Oo(t).find(e=>e&&"object"==typeof e);if(o){const t=Object.keys(o);for(const[r,i]of Object.entries(n))if(i&&"string"==typeof i&&!(i in o)){const n=Eo(i,t),o=n?` Try ${r}="${n}".`:"";return`${e}: ${r} "${i}" not found in data. Available fields: ${t.join(", ")}.${o}`}}}return null}function jo({componentName:e,data:t,dataLabel:n="data"}){return null==t?`${e}: No ${n} provided. Pass a hierarchical object with children: { name: "root", children: [...] }.`:Array.isArray(t)?`${e}: ${n} should be a single root object, not an array. Expected: { name: "root", children: [...] }. If you have flat data, use LineChart, BarChart, or Scatterplot instead.`:null}function Co({componentName:e,nodes:t,edges:n,nodesRequired:o=!1,edgesRequired:r=!0,accessors:i}){if(null==t&&null==n)return null;if(r&&(!n||!Array.isArray(n)||0===n.length))return e+': No edges provided. Pass a non-empty array: edges={[{ source: "A", target: "B", value: 10 }, ...]}.';if(o&&(!t||!Array.isArray(t)||0===t.length))return e+': No nodes provided. Pass a non-empty array: nodes={[{ id: "A" }, { id: "B" }, ...]}.';if(i&&t&&t.length>0){const n=Oo(t).find(e=>e&&"object"==typeof e);if(n){const t=Object.keys(n);for(const[o,r]of Object.entries(i))if(r&&"string"==typeof r&&!(r in n)){const n=Eo(r,t),i=n?` Try ${o}="${n}".`:"";return`${e}: ${o} "${r}" not found in node data. Available fields: ${t.join(", ")}.${i}`}}}return null}const Po={width:{type:"number"},height:{type:"number"},margin:{type:"object"},className:{type:"string"},title:{type:"string"},enableHover:{type:"boolean"},showLegend:{type:"boolean"},showGrid:{type:"boolean"},colorBy:{type:["string","function"]},colorScheme:{type:["string","array"]},tooltip:{type:["boolean","function","object"]},annotations:{type:"array"},frameProps:{type:"object"},onClick:{type:"function"}},_o={xLabel:{type:"string"},yLabel:{type:"string"},xFormat:{type:"function"},yFormat:{type:"function"}},Lo={categoryLabel:{type:"string"},valueLabel:{type:"string"},valueFormat:{type:"function"},categoryFormat:{type:"function"}},To=["linear","monotoneX","monotoneY","step","stepAfter","stepBefore","basis","cardinal","catmullRom"],Ro=["vertical","horizontal"],Bo={LineChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},lineBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:To},lineWidth:{type:"number"},showPoints:{type:"boolean"},pointRadius:{type:"number"},fillArea:{type:"boolean"},areaOpacity:{type:"number"}})},AreaChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},areaBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:To},areaOpacity:{type:"number"},showLine:{type:"boolean"},lineWidth:{type:"number"}})},StackedAreaChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},areaBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:To},areaOpacity:{type:"number"},showLine:{type:"boolean"},lineWidth:{type:"number"},normalize:{type:"boolean"}})},Scatterplot:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},pointRadius:{type:"number"},pointOpacity:{type:"number"}})},BubbleChart:{required:["data","sizeBy"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},bubbleOpacity:{type:"number"},bubbleStrokeWidth:{type:"number"},bubbleStrokeColor:{type:"string"}})},Heatmap:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},colorScheme:{type:"string",enum:["blues","reds","greens","viridis","custom"]},customColorScale:{type:["object","function"]},showValues:{type:"boolean"},valueFormat:{type:"function"},cellBorderColor:{type:"string"},cellBorderWidth:{type:"number"},showLegend:{type:"boolean"},legendPosition:{type:"string",enum:["right","left","top","bottom"]}})},QuadrantChart:{required:["quadrants"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},quadrants:{type:"object"},xCenter:{type:"number"},yCenter:{type:"number"},centerlineStyle:{type:"object"},showQuadrantLabels:{type:"boolean"},quadrantLabelSize:{type:"number"},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},pointRadius:{type:"number"},pointOpacity:{type:"number"}})},MultiAxisLineChart:{required:["series"],dataShape:"array",dataAccessors:["xAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},series:{type:"array"},colorScheme:{type:["string","array"]},curve:{type:"string"},lineWidth:{type:"number"},annotations:{type:"array"}})},ConnectedScatterplot:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),_o),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},orderAccessor:{type:["string","function"]},orderLabel:{type:"string"},pointRadius:{type:"number"},pointIdAccessor:{type:["string","function"]},annotations:{type:"array"}})},BarChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:Ro},sort:{type:["boolean","string","function"]},barPadding:{type:"number"},roundedTop:{type:"number"}})},StackedBarChart:{required:["data","stackBy"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},stackBy:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:Ro},normalize:{type:"boolean"},sort:{type:["boolean","string","function"]},barPadding:{type:"number"},roundedTop:{type:"number"}})},LikertChart:{required:["levels"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor","levelAccessor","countAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},levelAccessor:{type:["string","function"]},countAccessor:{type:["string","function"]},levels:{type:"array"},orientation:{type:"string",enum:Ro},barPadding:{type:"number"}})},GroupedBarChart:{required:["data","groupBy"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},groupBy:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:Ro},sort:{type:["boolean","string","function"]},barPadding:{type:"number"},roundedTop:{type:"number"}})},SwarmPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:Ro},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},pointRadius:{type:"number"},pointOpacity:{type:"number"},categoryPadding:{type:"number"},brush:{type:"boolean"},onBrush:{type:"function"},linkedBrush:{type:["string","object"]}})},BoxPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:Ro},showOutliers:{type:"boolean"},outlierRadius:{type:"number"},categoryPadding:{type:"number"}})},Histogram:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},bins:{type:"number"},relative:{type:"boolean"},categoryPadding:{type:"number"},brush:{type:"boolean"},onBrush:{type:"function"},linkedBrush:{type:["string","object"]}})},ViolinPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:Ro},bins:{type:"number"},curve:{type:"string"},showIQR:{type:"boolean"},categoryPadding:{type:"number"},brush:{type:"boolean"},onBrush:{type:"function"},linkedBrush:{type:["string","object"]}})},RidgelinePlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},bins:{type:"number"},amplitude:{type:"number"},categoryPadding:{type:"number"}})},DotPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:Ro},sort:{type:["boolean","string","function"]},dotRadius:{type:"number"},categoryPadding:{type:"number"}})},PieChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign({},Po),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},startAngle:{type:"number"},cornerRadius:{type:"number"}})},DonutChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign({},Po),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},innerRadius:{type:"number"},centerContent:{type:["object","string","number"]},startAngle:{type:"number"},cornerRadius:{type:"number"}})},GaugeChart:{required:["value"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Po),{value:{type:"number"},min:{type:"number"},max:{type:"number"},thresholds:{type:"array"},arcWidth:{type:"number"},sweep:{type:"number"},showNeedle:{type:"boolean"},needleColor:{type:"string"},centerContent:{type:["object","string","number","function"]},valueFormat:{type:"function"},showScaleLabels:{type:"boolean"},backgroundColor:{type:"string"}})},FunnelChart:{required:["data"],dataShape:"array",dataAccessors:["stepAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},stepAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},categoryAccessor:{type:["string","function"]},orientation:{type:"string",enum:["horizontal","vertical"]},connectorOpacity:{type:"number"},showCategoryTicks:{type:"boolean"},responsiveWidth:{type:"boolean"},legendPosition:{type:"string",enum:["right","left","top","bottom"]}})},SwimlaneChart:{required:["subcategoryAccessor"],dataShape:"array",dataAccessors:["categoryAccessor","subcategoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Po),Lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},subcategoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:["horizontal","vertical"]},barPadding:{type:"number"},showCategoryTicks:{type:"boolean"},brush:{type:"boolean"},onBrush:{type:"function"},linkedBrush:{type:["string","object"]},responsiveWidth:{type:"boolean"},legendPosition:{type:"string",enum:["right","left","top","bottom"]}})},ForceDirectedGraph:{required:["nodes","edges"],dataShape:"network",dataAccessors:["nodeIDAccessor","sourceAccessor","targetAccessor"],props:Object.assign(Object.assign({},Po),{nodes:{type:"array"},edges:{type:"array"},nodeIDAccessor:{type:["string","function"]},sourceAccessor:{type:["string","function"]},targetAccessor:{type:["string","function"]},nodeLabel:{type:["string","function"]},nodeSize:{type:["number","string","function"]},nodeSizeRange:{type:"array"},edgeWidth:{type:["number","string","function"]},edgeColor:{type:"string"},edgeOpacity:{type:"number"},iterations:{type:"number"},forceStrength:{type:"number"},showLabels:{type:"boolean"}})},SankeyDiagram:{required:["edges"],dataShape:"network",dataAccessors:["sourceAccessor","targetAccessor"],props:Object.assign(Object.assign({},Po),{nodes:{type:"array"},edges:{type:"array"},sourceAccessor:{type:["string","function"]},targetAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},edgeColorBy:{type:["string","function"],enum:["source","target","gradient"]},orientation:{type:"string",enum:Ro},nodeAlign:{type:"string",enum:["justify","left","right","center"]},nodePaddingRatio:{type:"number"},nodeWidth:{type:"number"},nodeLabel:{type:["string","function"]},showLabels:{type:"boolean"},edgeOpacity:{type:"number"},edgeSort:{type:"function"}})},ChordDiagram:{required:["edges"],dataShape:"network",dataAccessors:["sourceAccessor","targetAccessor"],props:Object.assign(Object.assign({},Po),{nodes:{type:"array"},edges:{type:"array"},sourceAccessor:{type:["string","function"]},targetAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},edgeColorBy:{type:["string","function"],enum:["source","target"]},padAngle:{type:"number"},groupWidth:{type:"number"},sortGroups:{type:"function"},nodeLabel:{type:["string","function"]},showLabels:{type:"boolean"},edgeOpacity:{type:"number"}})},TreeDiagram:{required:["data"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Po),{data:{type:"object"},layout:{type:"string",enum:["tree","cluster","partition","treemap","circlepack"]},orientation:{type:"string",enum:["vertical","horizontal","radial"]},childrenAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},colorByDepth:{type:"boolean"},edgeStyle:{type:"string",enum:["line","curve"]},nodeLabel:{type:["string","function"]},showLabels:{type:"boolean"},nodeSize:{type:"number"}})},Treemap:{required:["data"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Po),{data:{type:"object"},childrenAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},colorByDepth:{type:"boolean"},showLabels:{type:"boolean"},nodeLabel:{type:["string","function"]}})},CirclePack:{required:["data"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Po),{data:{type:"object"},childrenAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},colorByDepth:{type:"boolean"},showLabels:{type:"boolean"},nodeLabel:{type:["string","function"]},circleOpacity:{type:"number"}})},OrbitDiagram:{required:["data"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Po),{data:{type:"object"},childrenAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},orbitMode:{type:["string","array"]},speed:{type:"number"},revolution:{type:"function"},eccentricity:{type:["number","function"]},orbitSize:{type:["number","function"]},nodeRadius:{type:["number","function"]},showRings:{type:"boolean"},showLabels:{type:"boolean"},animated:{type:"boolean"},colorByDepth:{type:"boolean"},annotations:{type:"array"},foregroundGraphics:{type:"object"}})},RealtimeLineChart:{required:[],dataShape:"realtime",dataAccessors:[],props:{size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},stroke:{type:"string"},strokeWidth:{type:"number"},strokeDasharray:{type:"string"},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"},transition:{type:"object"}}},RealtimeHistogram:{required:["binSize"],dataShape:"realtime",dataAccessors:[],props:{binSize:{type:"number"},size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},categoryAccessor:{type:["string","function"]},colors:{type:"object"},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},fill:{type:"string"},stroke:{type:"string"},strokeWidth:{type:"number"},gap:{type:"number"},brush:{type:["boolean","string","object"]},onBrush:{type:"function"},linkedBrush:{type:["string","object"]},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"},transition:{type:"object"}}},RealtimeSwarmChart:{required:[],dataShape:"realtime",dataAccessors:[],props:{size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},categoryAccessor:{type:["string","function"]},colors:{type:"object"},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},radius:{type:"number"},fill:{type:"string"},opacity:{type:"number"},stroke:{type:"string"},strokeWidth:{type:"number"},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"},transition:{type:"object"}}},RealtimeWaterfallChart:{required:[],dataShape:"realtime",dataAccessors:[],props:{size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},positiveColor:{type:"string"},negativeColor:{type:"string"},connectorStroke:{type:"string"},connectorWidth:{type:"number"},gap:{type:"number"},stroke:{type:"string"},strokeWidth:{type:"number"},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"},transition:{type:"object"}}},RealtimeHeatmap:{required:[],dataShape:"realtime",dataAccessors:[],props:{size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},heatmapXBins:{type:"number"},heatmapYBins:{type:"number"},aggregation:{type:"string",enum:["count","sum","mean"]},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"}}},ScatterplotMatrix:{required:["data","fields"],dataShape:"array",dataAccessors:[],props:Object.assign(Object.assign({},Po),{data:{type:"array"},fields:{type:"array"}})},MinimapChart:{required:["data"],dataShape:"array",dataAccessors:[],props:Object.assign(Object.assign({},Po),{data:{type:"array"}})},ChoroplethMap:{required:["areas"],dataShape:"array",dataAccessors:["valueAccessor"],props:Object.assign(Object.assign({},Po),{areas:{type:["array","string"]},valueAccessor:{type:["string","function"]},colorScheme:{type:["string","array"]},projection:{type:"string"}})},ProportionalSymbolMap:{required:["points"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign({},Po),{points:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},sizeBy:{type:["string","function"]},areas:{type:["array","string"]}})},FlowMap:{required:["flows"],dataShape:"array",dataAccessors:[],props:Object.assign(Object.assign({},Po),{flows:{type:"array"},nodes:{type:"array"},valueAccessor:{type:["string","function"]}})},DistanceCartogram:{required:["points"],dataShape:"array",dataAccessors:[],props:Object.assign(Object.assign({},Po),{points:{type:"array"},center:{type:"array"},costAccessor:{type:["string","function"]}})}};function Do(e,t){return(Array.isArray(t)?t:[t]).includes(Array.isArray(e)?"array":typeof e)}function Io(e,t){const n=[],o=Bo[e];if(!o)return{valid:!1,errors:[`Unknown component "${e}". Valid components: ${Object.keys(Bo).join(", ")}`]};for(const r of o.required)null==t[r]&&n.push(`"${r}" is required for ${e}.`);for(const[e,r]of Object.entries(t)){if(null==r)continue;const t=o.props[e];if(t){if(!Do(r,t.type)){const o=Array.isArray(t.type)?t.type.join(" | "):t.type;n.push(`"${e}" should be ${o}, got ${Array.isArray(r)?"array":typeof r}.`);continue}t.enum&&"string"==typeof r&&!t.enum.includes(r)&&n.push(`"${e}" value "${r}" is not valid. Expected one of: ${t.enum.join(", ")}.`)}}const r=Object.keys(o.props),i=new Set(r);for(const o of Object.keys(t))if(void 0!==t[o]&&!i.has(o)){const t=So(o,r),i=t?`Unknown prop "${o}" for ${e}. Did you mean "${t}"?`:`Unknown prop "${o}" for ${e}. Valid props: ${r.join(", ")}.`;n.push(i)}if("array"===o.dataShape){const r=t.data,i={};for(const e of o.dataAccessors){const n=t[e];"string"==typeof n&&(i[e]=n)}const a=Mo({componentName:e,data:r,accessors:Object.keys(i).length>0?i:void 0});a&&n.push(a)}else if("object"===o.dataShape){const o=jo({componentName:e,data:t.data});o&&n.push(o)}else if("network"===o.dataShape){const r=Co({componentName:e,nodes:t.nodes,edges:t.edges,nodesRequired:o.required.includes("nodes"),edgesRequired:o.required.includes("edges")});r&&n.push(r)}return{valid:0===n.length,errors:n}}const No=new Set(["TreeDiagram","Treemap","CirclePack","OrbitDiagram"]),Ho=new Set(["ForceDirectedGraph","SankeyDiagram","ChordDiagram"]),Wo=new Set(["BarChart","StackedBarChart","GroupedBarChart","AreaChart","StackedAreaChart"]),Fo=new Set(["LineChart","AreaChart","StackedAreaChart"]),$o=new Set(["BarChart","StackedBarChart","GroupedBarChart","FunnelChart"]);function zo(e){const t=e.match(/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i);if(!t)return null;const[n,o,r]=[parseInt(t[1],16)/255,parseInt(t[2],16)/255,parseInt(t[3],16)/255],i=e=>e>.03928?Math.pow((e+.055)/1.055,2.4):e/12.92;return.2126*i(n)+.7152*i(o)+.0722*i(r)}function Go(e,t){const n=zo(e),o=zo(t);return null===n||null===o?null:(Math.max(n,o)+.05)/(Math.min(n,o)+.05)}const Yo=["xAccessor","yAccessor","timeAccessor","valueAccessor","categoryAccessor","colorBy","sizeBy","lineBy","areaBy","stackBy","groupBy","orderAccessor","y0Accessor","sourceAccessor","targetAccessor","nodeIDAccessor","childrenAccessor","costAccessor"];function qo(e,t){const n=[],o=Io(e,t);for(const e of o.errors)n.push({severity:"error",code:"VALIDATION",message:e,fix:""});return Bo[e]?(function(e,t,n){const o=Bo[e];if(o){if("array"===o.dataShape){const e=t.data;e&&Array.isArray(e)&&0===e.length&&n.push({severity:"error",code:"EMPTY_DATA",message:"data is an empty array — chart will render blank.",fix:"Provide at least one data point: data={[{ x: 1, y: 2 }]}."})}"network"===o.dataShape&&t.edges&&Array.isArray(t.edges)&&0===t.edges.length&&n.push({severity:"error",code:"EMPTY_EDGES",message:"edges is an empty array — network chart will render blank.",fix:'Provide at least one edge: edges={[{ source: "A", target: "B" }]}.'})}}(e,t,n),function(e,t,n){const o=t.width,r=t.height;if(void 0===o||"number"==typeof o&&o>0||n.push({severity:"error",code:"BAD_WIDTH",message:`width=${JSON.stringify(o)} — chart needs a positive number.`,fix:"Set width={600} or use responsiveWidth={true}."}),void 0===r||"number"==typeof r&&r>0||n.push({severity:"error",code:"BAD_HEIGHT",message:`height=${JSON.stringify(r)} — chart needs a positive number.`,fix:"Set height={400} or use responsiveHeight={true}."}),t.size&&Array.isArray(t.size)){const[e,o]=t.size;(null!=e&&0>=e||null!=o&&0>=o)&&n.push({severity:"error",code:"BAD_SIZE",message:`size=[${e}, ${o}] — both dimensions must be positive.`,fix:"Set size={[600, 400]}."})}}(0,t,n),function(e,t,n){const o=Bo[e];if(!o||"array"!==o.dataShape)return;const r=t.data;if(!r||!Array.isArray(r)||0===r.length)return;const i=r[0];if(!i||"object"!=typeof i)return;const a=Object.keys(i);for(const e of o.dataAccessors){const o=t[e];"string"==typeof o&&(o in i||n.push({severity:"error",code:"ACCESSOR_MISSING",message:`${e}="${o}" not found in data. Available fields: ${a.join(", ")}.`,fix:`Change ${e} to one of: ${a.map(e=>`"${e}"`).join(", ")}.`}))}}(e,t,n),function(e,t,n){No.has(e)&&Array.isArray(t.data)&&n.push({severity:"error",code:"HIERARCHY_FLAT_ARRAY",message:e+" expects hierarchical data but received a flat array.",fix:'Pass a root object: data={{ name: "root", children: [...] }}. For flat data, use BarChart or LineChart.'})}(e,t,n),function(e,t,n){Ho.has(e)&&(t.edges||t.data||n.push({severity:"error",code:"NETWORK_NO_EDGES",message:e+" requires an edges prop.",fix:'Provide edges={[{ source: "A", target: "B", value: 10 }]}.'}))}(e,t,n),function(e,t,n){const o=Bo[e];if(!o||"array"!==o.dataShape)return;const r=t.data;if(!r||!Array.isArray(r)||0===r.length)return;const i=r[0];if(!i||"object"!=typeof i)return;const a=t.xAccessor;"string"==typeof a&&i[a]instanceof Date&&!t.xFormat&&n.push({severity:"warning",code:"DATE_NO_FORMAT",message:`xAccessor "${a}" contains Date objects but no xFormat is provided. Axis ticks may display "[object Object]".`,fix:"Add xFormat={d => d.toLocaleDateString()} or use timestamps (d.getTime()) instead of Date objects."})}(e,t,n),function(e,t,n){t.linkedHover&&!t.selection&&n.push({severity:"warning",code:"LINKED_HOVER_NO_SELECTION",message:"linkedHover is set but selection is not — this chart emits hover events but won't highlight from others.",fix:`Add selection={{ name: "${"object"==typeof t.linkedHover&&t.linkedHover.name||"hl"}" }} to receive cross-highlights.`})}(0,t,n),function(e,t,n){var o;if(!Wo.has(e))return;const r=t.rExtent||t.yExtent;r&&Array.isArray(r)&&r.length>=1&&null!=r[0]&&0!==r[0]&&n.push({severity:"warning",code:"NON_ZERO_BASELINE",message:`${e} has a non-zero baseline (${r[0]}). Bar and area charts should start at zero to avoid exaggerating differences.`,fix:`Remove the custom extent minimum or set it to 0: rExtent={[0, ${null!==(o=r[1])&&void 0!==o?o:"auto"}]}. For trend-focused charts, use LineChart instead.`})}(e,t,n),function(e,t,n){if(!Fo.has(e))return;if(t.gapStrategy)return;const o=t.data;if(!o||!Array.isArray(o)||0===o.length)return;const r=t.yAccessor||"y";"string"==typeof r&&o.some(e=>{const t=e[r];return null==t||Number.isNaN(t)})&&n.push({severity:"warning",code:"DATA_GAPS",message:`Data contains null/undefined/NaN values in "${r}". Default behavior breaks the line at gaps.`,fix:'Set gapStrategy="break" (default), "interpolate", or "zero" to control gap handling.'})}(e,t,n),function(e,t,n){var o,r;const i=null!==(o=t.width)&&void 0!==o?o:600,a=null!==(r=t.height)&&void 0!==r?r:400,s=t.margin;if(!s||"object"!=typeof s)return;const l=(s.left||0)+(s.right||0),c=(s.top||0)+(s.bottom||0);i>l||n.push({severity:"error",code:"MARGIN_OVERFLOW_H",message:`Horizontal margins (${l}px) >= width (${i}px) — no drawing area left.`,fix:"Reduce margin.left/right or increase width."}),a>c||n.push({severity:"error",code:"MARGIN_OVERFLOW_V",message:`Vertical margins (${c}px) >= height (${a}px) — no drawing area left.`,fix:"Reduce margin.top/bottom or increase height."})}(0,t,n),function(e,t,n){var o;const r=Bo[e];if(!r||"array"!==r.dataShape)return;const i=t.data;if(!i||!Array.isArray(i)||0===i.length)return;const a=[];t.xAccessor&&"string"==typeof t.xAccessor&&a.push({prop:"xAccessor",name:t.xAccessor}),t.yAccessor&&"string"==typeof t.yAccessor&&a.push({prop:"yAccessor",name:t.yAccessor}),t.valueAccessor&&"string"==typeof t.valueAccessor&&a.push({prop:"valueAccessor",name:t.valueAccessor});const s=Math.min(i.length,5);for(const e of a){let t=!0;for(let n=0;s>n;n++){const r=null===(o=i[n])||void 0===o?void 0:o[e.name];if("number"==typeof r&&Number.isFinite(r)){t=!1;break}}t&&n.push({severity:"error",code:"DEGENERATE_EXTENT",message:`${e.prop}="${e.name}" produces NaN or non-finite values for all sampled data points — chart extents will be invalid.`,fix:`Ensure data[].${e.name} contains finite numbers, or use a function accessor to transform values.`})}}(e,t,n),function(e,t,n){if(!$o.has(e))return;const o=t.barPadding;"number"==typeof o&&10>o&&n.push({severity:"warning",code:"BAR_PADDING_INVISIBLE",message:`barPadding=${o} is very small — bars may appear to have no spacing between them.`,fix:"Increase barPadding to at least 10 for visible gaps, e.g. barPadding={12}."})}(e,t,n),function(e,t,n){if("bottom"!==t.legendPosition)return;const o=t.margin;if(!o||"object"!=typeof o)return;const r=o.bottom;"number"==typeof r&&70>r&&n.push({severity:"warning",code:"BOTTOM_MARGIN_WITH_LEGEND",message:`legendPosition="bottom" with margin.bottom=${r}px — legend may overlap axis labels.`,fix:"Increase margin.bottom to at least 70, e.g. margin={{ ...margin, bottom: 80 }}."})}(0,t,n),function(e,t,n){var o;if(!t.showLegend)return;if("right"!==(null!==(o=t.legendPosition)&&void 0!==o?o:"right"))return;const r=t.margin;if(!r||"object"!=typeof r)return;const i=r.right;"number"==typeof i&&100>i&&n.push({severity:"warning",code:"LEGEND_MARGIN_TIGHT",message:`showLegend is true with legendPosition="right" but margin.right=${i}px — legend may be clipped or overlap the chart.`,fix:"Increase margin.right to at least 100, e.g. margin={{ ...margin, right: 120 }}."})}(0,t,n),function(e,t,n){if("Heatmap"!==e)return;const o=t.data;if(!o||!Array.isArray(o)||0===o.length)return;const r=o[0];if(r&&"object"==typeof r)for(const e of["xAccessor","yAccessor"]){const o=t[e];if("string"!=typeof o)continue;const i=r[o];"string"==typeof i&&n.push({severity:"warning",code:"HEATMAP_STRING_ACCESSOR",message:`${e}="${o}" resolves to string values (e.g. "${i}"). Heatmap will use categorical axis handling which may produce unexpected cell layout.`,fix:"If you intend categorical axes this is fine. Otherwise, convert values to numbers before passing data."})}}(e,t,n),function(e,t,n){const o=t.colorScheme;if(!o||!Array.isArray(o))return;const r="string"==typeof t.background?t.background:"#ffffff";if(!r.startsWith("#"))return;const i=[];for(const e of o){if("string"!=typeof e||!e.startsWith("#"))continue;const t=Go(e,r);null!==t&&3>t&&i.push(`${e} (${t.toFixed(1)}:1)`)}i.length>0&&n.push({severity:"warning",code:"LOW_COLOR_CONTRAST",message:`${i.length} color(s) in colorScheme have < 3:1 contrast against background "${r}": ${i.join(", ")}. Data marks may be hard to see.`,fix:'Use darker colors on light backgrounds or lighter colors on dark backgrounds. Import COLOR_BLIND_SAFE_CATEGORICAL from "semiotic" for an accessible preset.'})}(0,t,n),function(e,t,n){const o=t.colorScheme;if(!o||!Array.isArray(o)||2>o.length)return;const r=o.filter(e=>"string"==typeof e&&e.startsWith("#"));if(2>r.length)return;const i=[];for(let e=0;r.length-1>e;e++){const t=Go(r[e],r[e+1]);null!==t&&1.5>t&&i.push(`${r[e]} / ${r[e+1]} (${t.toFixed(1)}:1)`)}i.length>0&&n.push({severity:"warning",code:"LOW_ADJACENT_CONTRAST",message:`${i.length} adjacent color pair(s) in colorScheme have very similar luminance: ${i.join("; ")}. Categories may be hard to distinguish.`,fix:'Alternate light and dark colors in the scheme, or use COLOR_BLIND_SAFE_CATEGORICAL from "semiotic" for a pre-tested palette.'})}(0,t,n),function(e,t,n){const o="string"==typeof t.title&&t.title.trim().length>0,r="string"==typeof t.description&&t.description.trim().length>0,i="string"==typeof t.summary&&t.summary.trim().length>0;o||r||i||n.push({severity:"warning",code:"MISSING_DESCRIPTION",message:'No title, description, or summary provided. Screen readers will use a generic label like "XY chart".',fix:'Add a title="..." prop for a brief label, or description="..." for a detailed aria-label, or summary="..." for a screen-reader-only note describing the chart\'s purpose.'})}(0,t,n),function(e,t,n){const o=[];for(const e of Yo)"function"==typeof t[e]&&o.push(e);o.length>0&&n.push({severity:"warning",code:"FUNCTION_ACCESSOR",message:`Function accessor${o.length>1?"s":""} detected: ${o.join(", ")}. If defined inline (e.g. \`xAccessor={d => d.value}\`), every parent re-render creates a new reference which may trigger unnecessary scene rebuilds.`,fix:'Use string accessors when possible (e.g. xAccessor="value"), or memoize with useCallback / define outside the component.'})}(0,t,n),{ok:n.every(e=>"warning"===e.severity),diagnoses:n}):{ok:0===n.length,diagnoses:n}}var Xo;const Vo="undefined"!=typeof process&&"production"!==(null===(Xo=process.env)||void 0===Xo?void 0:Xo.NODE_ENV);function Uo({componentName:e,width:t,height:n,chartProps:o,children:r}){return p.createElement(wo,{fallback:r=>{let i="";if(Vo&&o)try{const t=qo(e,o);t.ok||(i=t.diagnoses.map(e=>`${"error"===e.severity?"✗":"⚠"} ${e.message}${e.fix?" — Fix: "+e.fix:""}`).join("\n"))}catch(e){}return p.createElement(ko,{componentName:e,message:r.message,diagnosticHint:i,width:t,height:n})}},r)}const Ko={display:"flex",alignItems:"center",justifyContent:"center",color:"var(--semiotic-text-secondary, #999)",fontSize:13,fontFamily:"inherit",border:"1px dashed var(--semiotic-border, #ddd)",borderRadius:4,boxSizing:"border-box"},Qo={background:"var(--semiotic-border, #e0e0e0)",borderRadius:2};function Zo(e,t,n,o){return!1===o||null==e||Array.isArray(e)&&e.length>0?null:Array.isArray(e)?p.createElement("div",{style:Object.assign(Object.assign({},Ko),{width:t,height:n})},o||"No data available"):null}function Jo(e,t,n){if(!e)return null;const o=Math.min(5,Math.floor(n/40)),r=Math.max(8,Math.floor(n/(3*o))),i=Math.max(6,Math.floor(n/(2.5*o))),a=Math.floor((n-(o*(r+i)-i))/2);return p.createElement("div",{style:{width:t,height:n,position:"relative",overflow:"hidden",border:"1px solid var(--semiotic-border, #e0e0e0)",borderRadius:4,boxSizing:"border-box"}},Array.from({length:o},(e,n)=>p.createElement("div",{key:n,className:"semiotic-loading-bar",style:Object.assign(Object.assign({},Qo),{position:"absolute",top:a+n*(r+i),left:Math.floor(.1*t),width:30+(37*n+13)%50+"%",height:r,opacity:.5+n%2*.2})})))}function er(e,t,n,o){if(!Vo)return;if(!t||0===t.length)return;if("string"!=typeof o)return;const r=t[0];if(!r||"object"!=typeof r)return;if(o in r)return;const i=Object.keys(r).join(", ");console.warn(`[semiotic] ${e}: ${n} "${o}" not found in data. Available keys: ${i}`)}function tr(t){const n=Rt(e=>e.theme.colors.selectionOpacity);return e.useMemo(()=>{var e,o;if(void 0!==t||void 0!==n)return Object.assign(Object.assign({name:null!==(e=null==t?void 0:t.name)&&void 0!==e?e:""},t),{unselectedOpacity:null!==(o=null==t?void 0:t.unselectedOpacity)&&void 0!==o?o:n})},[t,n])}function nr(e,t,n,o){return new(n||(n=Promise))(function(r,i){function a(e){try{l(o.next(e))}catch(e){i(e)}}function s(e){try{l(o.throw(e))}catch(e){i(e)}}function l(e){e.done?r(e.value):function(e){return e instanceof n?e:new n(function(t){t(e)})}(e.value).then(a,s)}l((o=o.apply(e,t||[])).next())})}"function"==typeof SuppressedError&&SuppressedError;const or="__forecastSegment";let rr=null;function ir(){return nr(this,void 0,void 0,function*(){return rr||(rr=yield Promise.resolve().then(function(){return dl})),rr})}const ar=e.forwardRef(function(t,n){var o,r;const i=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=i.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=i.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=i.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=i.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=i.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const a=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,summary:t.summary,accessibleTable:t.accessibleTable,xLabel:t.xLabel,yLabel:t.yLabel}),{data:s,margin:l,className:c,xFormat:u,yFormat:d,xAccessor:h="x",yAccessor:g="y",lineBy:f,lineDataAccessor:y="coordinates",colorBy:m,colorScheme:v,curve:b="linear",showPoints:x=!1,pointRadius:k=3,fillArea:w=!1,areaOpacity:A=.3,lineWidth:S=2,lineGradient:O,tooltip:E,pointIdAccessor:M,annotations:j,directLabel:C,gapStrategy:P="break",anomaly:_,forecast:L,frameProps:R={},selection:B,linkedHover:D,onObservation:I,onClick:N,hoverHighlight:H,hoverRadius:W,chartId:F,loading:$,emptyContent:z,legendInteraction:G,legendPosition:Y,xScaleType:q,yScaleType:X,color:V}=t,U=a.width,K=a.height,Q=a.enableHover,Z=a.showGrid,J=a.showLegend,ee=a.title,te=a.description,ne=a.summary,oe=a.accessibleTable,re=a.xLabel,ie=a.yLabel,ae=Jo($,U,K),se=ae?null:Zo(s,U,K,z),le=s||[];er("LineChart",le,"xAccessor",h),er("LineChart",le,"yAccessor",g);const ce="string"==typeof h?h:"__semiotic_resolvedX",ue="string"==typeof g?g:"__semiotic_resolvedY",[de,he]=e.useState(null),[ge,fe]=e.useState([]),pe=e.useMemo(()=>{if(!L&&!_)return le;const e="function"==typeof h,t="function"==typeof g;return e||t?le.map(n=>{const o=Object.assign({},n);return e&&(o.__semiotic_resolvedX=h(n)),t&&(o.__semiotic_resolvedY=g(n)),o}):le},[le,L,_,h,g]),ye=e.useRef(L),me=e.useRef(_);e.useEffect(()=>{if(!L&&!_)return void((ye.current||me.current)&&(he(null),fe([]),ye.current=L,me.current=_));let e=!1;const t=L!==ye.current||_!==me.current;if(ye.current=L,me.current=_,t&&(he(null),fe([])),L){const t=f&&"string"==typeof f&&"object"==typeof L?Object.assign(Object.assign({},L),{_groupBy:f}):L;(function(...e){return nr(this,void 0,void 0,function*(){return(yield ir()).buildForecast(...e)})})(pe,ce,ue,t,_).then(t=>{e||(he(t),fe(t.annotations))}).catch(()=>{e||(he(null),fe([]))})}else _&&function(...e){return nr(this,void 0,void 0,function*(){return(yield ir()).buildAnomalyAnnotations(...e)})}(_).then(t=>{e||(he(null),fe(t))}).catch(()=>{e||fe([])});return()=>{e=!0}},[pe,L,_,ce,ue]);const ve=de?de.processedData:le,be="__compoundGroup",xe=!(!L||!f),ke=xe?be:L?or:f,we=e.useMemo(()=>{if(!xe)return ve;const e="function"==typeof f?f:e=>e[f];return ve.map(t=>{const n=Object.assign({},t);return n[be]=`${e(t)}__${t[or]||"observed"}`,n})},[ve,xe,f]),Ae=xe?we:ve,Se=e.useMemo(()=>{if(!L)return;const e=L.upperBounds,t=L.lowerBounds;if(!e&&!t)return;const n="function"==typeof e?e:"string"==typeof e?t=>t[e]:null,o="function"==typeof t?t:"string"==typeof t?e=>e[t]:null;let r=1/0,i=-1/0;const a=de?de.processedData:le;for(const e of a){const t="function"==typeof g?g(e):+e[g];if(isFinite(t)&&(r>t&&(r=t),t>i&&(i=t)),n){const t=n(e);null!=t&&isFinite(t)&&(t>i&&(i=t),r>t&&(r=t))}if(o){const t=o(e);null!=t&&isFinite(t)&&(r>t&&(r=t),t>i&&(i=t))}}return isFinite(r)&&isFinite(i)?[r,i]:void 0},[L,de,le,g]),{activeSelectionHook:Oe,hoverSelectionHook:Ee,customHoverBehavior:Me,customClickBehavior:je,crosshairSourceId:Ce}=no({selection:B,linkedHover:D,fallbackFields:m?["string"==typeof m?m:""]:[],onObservation:I,onClick:N,chartType:"LineChart",chartId:F,hoverHighlight:H,colorByField:"string"==typeof m?m:void 0}),Pe=tr(B),_e=oo(D,Ce),Le=e.useCallback(e=>{const t="function"==typeof h?h(e):e[h],n="function"==typeof g?g(e):e[g];return null==t||null==n||Number.isNaN(t)||Number.isNaN(n)},[h,g]),Te=void 0!==(null===(o=Ae[0])||void 0===o?void 0:o[y]),Re=e.useMemo(()=>{if(Te)return Ae;if(ke){const e=Ae.reduce((e,t)=>{const n="function"==typeof ke?ke(t):t[ke];if(!e[n]){const o={[y]:[]};"string"==typeof ke&&(o[ke]=n),xe&&(o[or]=t[or],"string"==typeof f&&(o[f]=t[f])),e[n]=o}return e[n][y].push(t),e},{});return Object.values(e)}return[{[y]:Ae}]},[Ae,ke,y,Te]),{gapProcessedLineData:Be,hasGaps:De}=e.useMemo(()=>{if("interpolate"===P){let e=!1;const t=[];for(const n of Re){const o=(n[y]||[]).filter(t=>!Le(t)||(e=!0,!1));o.length>0&&t.push(Object.assign(Object.assign({},n),{[y]:o}))}return{gapProcessedLineData:t,hasGaps:e}}if("break"===P){let e=!1;const t=[];for(const n of Re){const o=n[y]||[];let r=[],i=0;const a=ke&&"string"==typeof ke?n[ke]:void 0;for(const s of o)if(Le(s))e=!0,r.length>0&&(t.push(Object.assign(Object.assign({},n),{[y]:r})),r=[],i++);else{const e=null!=a?`${a}__seg${i}`:"__seg"+i;r.push(Object.assign(Object.assign({},s),{_gapSegment:e}))}r.length>0&&t.push(Object.assign(Object.assign({},n),{[y]:r}))}return{gapProcessedLineData:t,hasGaps:e}}if("zero"===P){let e=!1;const t="string"==typeof g?g:"y",n=[];for(const o of Re){const r=o[y]||[],i=[];for(const n of r)Le(n)?(e=!0,i.push(Object.assign(Object.assign({},n),{[t]:0}))):i.push(n);n.push(Object.assign(Object.assign({},o),{[y]:i}))}return{gapProcessedLineData:n,hasGaps:e}}return{gapProcessedLineData:Re,hasGaps:!1}},[Re,P,y,Le,ke,g]),Ie=eo(ve,m,v),Ne=e.useMemo(()=>{if(!m)return[];const e=new Set;for(const t of ve){const n="function"==typeof m?m(t):t[m];null!=n&&e.add(n+"")}return Array.from(e)},[ve,m]),He=io(G,m,Ne),We=e.useMemo(()=>Ee||(He.legendSelectionHook?He.legendSelectionHook:Oe),[Ee,He.legendSelectionHook,Oe]),Fe=e.useMemo(()=>(e,t)=>{const n={strokeWidth:S},o=!0===w||Array.isArray(w)&&null!=t&&w.includes(t);return m?Ie&&(n.stroke=T(e,m,Ie),o&&(n.fill=n.stroke,n.fillOpacity=A)):(n.stroke=V||Kn,o&&(n.fill=V||Kn,n.fillOpacity=A)),n},[m,Ie,S,w,A,V]),[$e,ze]=e.useState(null);e.useEffect(()=>{if(!L)return void ze(null);let e=!1;return function(...e){return nr(this,void 0,void 0,function*(){return(yield ir()).createSegmentLineStyle(...e)})}(Fe,L).then(t=>{e||ze(()=>t)}).catch(()=>{e||ze(null)}),()=>{e=!0}},[Fe,L]);const Ge=$e||Fe,Ye=e.useMemo(()=>zn(Ge,We,Pe),[Ge,We,Pe]),qe=e.useMemo(()=>{if(x)return e=>{const t={r:k,fillOpacity:1};return m?Ie&&(t.fill=T(e.parentLine||e,m,Ie)):t.fill=V||Kn,t}},[x,k,m,Ie,V]),Xe=Array.isArray(w)?"mixed":w?"area":"line",Ve="object"==typeof C?C:{},Ue=Ve.position||"end",Ke=Ve.fontSize||11,Qe=e.useMemo(()=>{var e,t;if(!C||!m)return[];const n="function"==typeof h?h:e=>e[h],o="function"==typeof g?g:e=>e[g],r="function"==typeof m?m:e=>e[m],i=new Map;for(const n of Be){const o=n[y]||[];if(0===o.length)continue;const a="end"===Ue?o[o.length-1]:o[0],s=null!==(t=null!==(e=r(a))&&void 0!==e?e:r(n))&&void 0!==t?t:"";s&&!i.has(s+"")&&i.set(s+"",a)}const a=Array.from(i.entries()).map(([e,t])=>({type:"text",label:e,["string"==typeof h?h:"x"]:n(t),["string"==typeof g?g:"y"]:o(t),dx:"end"===Ue?6:-6,dy:0,color:Ie?Ie(e):Kn,fontSize:Ke}));a.sort((e,t)=>{const n="string"==typeof g?g:"y";return e[n]-t[n]});for(let e=1;a.length>e;e++){const t="string"==typeof g?g:"y",n=a[e-1],o=a[e];Ke+2>Math.abs(o[t]+o.dy-(n[t]+n.dy))&&(o.dy+=Ke+2)}return a},[C,m,Ie,Be,y,h,g,Ue,Ke]),Ze=(!C||void 0!==J)&&J,Je=e.useMemo(()=>{if(!C)return a.marginDefaults;const e=Qe.reduce((e,t)=>{var n;const o=((null===(n=t.label)||void 0===n?void 0:n.length)||0)*(.6*Ke);return Math.max(e,o)},0),t=e+10,n="end"===Ue?"right":"left";return Object.assign(Object.assign({},a.marginDefaults),{[n]:Math.max(a.marginDefaults[n]||0,t)})},[C,Qe,Ke,Ue,a.marginDefaults]),{legend:et,margin:tt,legendPosition:nt}=ro({data:Be,colorBy:m,colorScale:Ie,showLegend:Ze,legendPosition:Y,userMargin:l,defaults:Je}),ot=f||m,rt=e.useMemo(()=>bo([{label:re||po(h),accessor:h,role:"x",format:u},{label:ie||po(g),accessor:g,role:"y",format:d},...ot?[{label:po(ot),accessor:ot,role:"group"}]:[]]),[h,g,re,ie,ot,u,d]),it=Mo({componentName:"LineChart",data:Te?(null===(r=ve[0])||void 0===r?void 0:r[y])||[]:s,accessors:{xAccessor:h,yAccessor:g}}),at=e.useMemo(()=>Te||ke||De?Be.flatMap(e=>{const t=e[y]||[];return ke&&"string"==typeof ke?t.map(t=>Object.assign(Object.assign({},t),{[ke]:e[ke]})):t}):Ae,[Be,y,Te,ke,Ae,De]),st=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:Xe},Array.isArray(w)&&{areaGroups:w}),O&&{lineGradient:O}),null!=W&&{hoverRadius:W}),null!=s&&{data:at}),{xAccessor:h,yAccessor:g,xScaleType:q,yScaleType:X}),Se&&{yExtent:Se}),{groupAccessor:"break"===P&&De?"_gapSegment":ke||void 0,curve:b,lineStyle:Ye}),x&&{pointStyle:qe}),{size:[U,K],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:tt,showAxes:a.showAxes,xLabel:re,yLabel:ie,xFormat:u,yFormat:d,enableHover:Q,showGrid:Z}),et&&{legend:et,legendPosition:nt}),G&&"none"!==G&&{legendHoverBehavior:He.onLegendHover,legendClickBehavior:He.onLegendClick,legendHighlightedCategory:He.highlightedCategory,legendIsolatedCategories:He.isolatedCategories}),ee&&{title:ee}),te&&{description:te}),ne&&{summary:ne}),void 0!==oe&&{accessibleTable:oe}),c&&{className:c}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===E?()=>null:"multi"===E?e=>{var t,n,o,r,i,a,s,l,c,u;const d=e.allSeries;if(!d||0===d.length){const a=null!==(i=null!==(r=null!==(n=null===(t=e.data)||void 0===t?void 0:t.value)&&void 0!==n?n:null===(o=e.data)||void 0===o?void 0:o.y)&&void 0!==r?r:e.value)&&void 0!==i?i:e.y;return p.createElement("div",{className:"semiotic-tooltip",style:co},p.createElement("div",null,ho(a)))}const h=null!==(u=null!==(l=null!==(a=e.xValue)&&void 0!==a?a:null===(s=e.data)||void 0===s?void 0:s.time)&&void 0!==l?l:null===(c=e.data)||void 0===c?void 0:c.x)&&void 0!==u?u:e.time;return p.createElement("div",{className:"semiotic-tooltip",style:co},null!=h&&p.createElement("div",{style:{fontWeight:600,marginBottom:4,fontSize:"0.9em",borderBottom:"1px solid var(--semiotic-border, #eee)",paddingBottom:4}},ho(h)),d.map((e,t)=>p.createElement("div",{key:t,style:{display:"flex",alignItems:"center",gap:6,padding:"1px 0"}},p.createElement("span",{style:{width:8,height:8,borderRadius:"50%",backgroundColor:e.color,flexShrink:0}}),p.createElement("span",{style:{flex:1,fontSize:"0.85em"}},e.group),p.createElement("span",{style:{fontWeight:500,fontSize:"0.85em"}},ho(e.value)))))}:fo(E)||rt}),"multi"===E&&{tooltipMode:"multi"}),(D||I||N||H)&&{customHoverBehavior:Me}),(I||N||D)&&{customClickBehavior:je}),M&&{pointIdAccessor:M}),((null==j?void 0:j.length)||ge.length||Qe.length)&&{annotations:[...j||[],...ge,...Qe]}),_e),R);return ae||se||(it?p.createElement(ko,{componentName:"LineChart",message:it,width:U,height:K}):p.createElement(Uo,{componentName:"LineChart",width:U,height:K},p.createElement(wn,Object.assign({ref:i},st))))});ar.displayName="LineChart";const sr=e.forwardRef(function(t,n){var o;const r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const i=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:a,margin:s,className:l,xFormat:c,yFormat:u,xAccessor:d="x",yAccessor:h="y",areaBy:g,y0Accessor:f,gradientFill:y=!1,lineDataAccessor:m="coordinates",colorBy:v,colorScheme:b,curve:x="monotoneX",areaOpacity:k=.7,lineGradient:w,showLine:A=!0,lineWidth:S=2,showPoints:O=!1,pointRadius:E=3,tooltip:M,annotations:j,frameProps:C={},selection:P,linkedHover:_,onObservation:L,onClick:R,hoverHighlight:B,chartId:D,loading:I,emptyContent:N,legendInteraction:H,legendPosition:W,color:F}=t,$=i.width,z=i.height,G=i.enableHover,Y=i.showGrid,q=i.showLegend,X=i.title,V=i.description,U=i.summary,K=i.accessibleTable,Q=i.xLabel,Z=i.yLabel,J=Jo(I,$,z),ee=J?null:Zo(a,$,z,N),te=a||[];er("AreaChart",te,"xAccessor",d),er("AreaChart",te,"yAccessor",h);const{activeSelectionHook:ne,hoverSelectionHook:oe,customHoverBehavior:re,customClickBehavior:ie,crosshairSourceId:ae}=no({selection:P,linkedHover:_,fallbackFields:v?["string"==typeof v?v:""]:[],onObservation:L,onClick:R,chartType:"AreaChart",chartId:D,hoverHighlight:B,colorByField:"string"==typeof v?v:void 0}),se=tr(P),le=oo(_,ae),ce=void 0!==(null===(o=te[0])||void 0===o?void 0:o[m]),ue=e.useMemo(()=>{if(ce)return te;if(g){const e=te.reduce((e,t)=>{const n="function"==typeof g?g(t):t[g];if(!e[n]){const t={[m]:[]};"string"==typeof g&&(t[g]=n),e[n]=t}return e[n][m].push(t),e},{});return Object.values(e)}return[{[m]:te}]},[te,g,m,ce]),de=eo(te,v,b),he=e.useMemo(()=>{if(!v)return[];const e=new Set;for(const t of te){const n="function"==typeof v?v(t):t[v];null!=n&&e.add(n+"")}return Array.from(e)},[te,v]),ge=io(H,v,he),fe=e.useMemo(()=>oe||(ge.legendSelectionHook?ge.legendSelectionHook:ne),[oe,ge.legendSelectionHook,ne]),pe=e.useMemo(()=>e=>{const t={};if(v){if(de){const n=T(e,v,de);t.fill=n,A?(t.stroke=n,t.strokeWidth=S):t.stroke="none"}}else{const e=F||Kn;t.fill=e,A?(t.stroke=e,t.strokeWidth=S):t.stroke="none"}return t.fillOpacity=k,t},[v,de,F,k,A,S]),ye=e.useMemo(()=>zn(pe,fe,se),[pe,fe,se]),me=e.useMemo(()=>{if(O)return e=>{const t={r:E,fillOpacity:1};return v?de&&(t.fill=T(e.parentLine||e,v,de)):t.fill=Kn,t}},[O,E,v,de]),{legend:ve,margin:be,legendPosition:xe}=ro({data:ue,colorBy:v,colorScale:de,showLegend:q,legendPosition:W,userMargin:s,defaults:i.marginDefaults}),ke=g||v,we=e.useMemo(()=>bo([{label:Q||po(d),accessor:d,role:"x",format:c},{label:Z||po(h),accessor:h,role:"y",format:u},...ke?[{label:po(ke),accessor:ke,role:"group"}]:[]]),[d,h,Q,Z,ke,c,u]),Ae=Mo({componentName:"AreaChart",data:a,accessors:{xAccessor:d,yAccessor:h}}),Se=e.useMemo(()=>ce||g?ue.flatMap(e=>{const t=e[m]||[];return g&&"string"==typeof g?t.map(t=>Object.assign(Object.assign({},t),{[g]:e[g]})):t}):te,[ue,m,ce,g,te]),Oe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"area"},null!=a&&{data:Se}),{xAccessor:d,yAccessor:h,groupAccessor:g||void 0}),f&&{y0Accessor:f}),y&&{gradientFill:y}),w&&{lineGradient:w}),{curve:x,lineStyle:ye}),O&&me&&{pointStyle:me}),{size:[$,z],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:be,showAxes:i.showAxes,xLabel:Q,yLabel:Z,xFormat:c,yFormat:u,enableHover:G}),t.pointIdAccessor&&{pointIdAccessor:t.pointIdAccessor}),{showGrid:Y}),ve&&{legend:ve,legendPosition:xe}),H&&"none"!==H&&{legendHoverBehavior:ge.onLegendHover,legendClickBehavior:ge.onLegendClick,legendHighlightedCategory:ge.highlightedCategory,legendIsolatedCategories:ge.isolatedCategories}),X&&{title:X}),V&&{description:V}),U&&{summary:U}),void 0!==K&&{accessibleTable:K}),l&&{className:l}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===M?()=>null:fo(M)||we}),(_||L||R||B)&&{customHoverBehavior:re}),(L||R||_)&&{customClickBehavior:ie}),j&&j.length>0&&{annotations:j}),le),C);return J||ee||(Ae?p.createElement(ko,{componentName:"AreaChart",message:Ae,width:$,height:z}):p.createElement(Uo,{componentName:"AreaChart",width:$,height:z},p.createElement(wn,Object.assign({ref:r},Oe))))});function lr({isPushMode:t,colorBy:n,colorScheme:o,showLegend:r,legendPosition:i="right"}){const a=e.useRef(new Set),s=e.useRef([]),[l,c]=e.useState(0),u=e.useCallback(e=>{if(!n)return null;const t="function"==typeof n?n(e):e[n];return null!=t?t+"":null},[n]),d=e.useCallback(e=>{if(!t||!n)return;let o=!1;for(const t of e){if(!t||"object"!=typeof t)continue;const e=u(t);null==e||a.current.has(e)||(a.current.add(e),s.current.push(e),o=!0)}o&&c(e=>e+1)},[t,n,u]),h=e.useCallback(e=>t=>{d([t]),e(t)},[d]),g=e.useCallback(e=>t=>{d(t),e(t)},[d]),f=e.useCallback(()=>{a.current=new Set,s.current=[],c(e=>e+1)},[]),p=e.useMemo(()=>{if(!t||!n||!1===r)return;const e=s.current;if(0===e.length)return;const i=Array.isArray(o)?o:P,a=new Map;for(let t=0;e.length>t;t++)a.set(e[t],i[t%i.length]);const l="string"==typeof n?n:"__streamCat";return Fn({data:e.map(e=>({[l]:e})),colorBy:l,colorScale:e=>a.get(e)||"#999",getColor:T})},[t,n,r,o,l]),y=e.useMemo(()=>{if(p)return"right"===i?{right:110}:"left"===i?{left:110}:"top"===i?{top:50}:"bottom"===i?{bottom:80}:{right:110}},[p,i]);return{wrapPush:h,wrapPushMany:g,resetCategories:f,streamingLegend:p,streamingMarginAdjust:y}}sr.displayName="AreaChart";const cr=e.forwardRef(function(t,n){var o;const r=e.useRef(null),i=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:a,margin:s,className:l,xFormat:c,yFormat:u,xAccessor:d="x",yAccessor:h="y",areaBy:g,lineDataAccessor:f="coordinates",colorBy:y,colorScheme:m,curve:v="monotoneX",areaOpacity:b=.7,showLine:x=!0,lineWidth:k=2,showPoints:w=!1,pointRadius:A=3,normalize:S=!1,tooltip:O,annotations:E,frameProps:M={},selection:j,linkedHover:C,onObservation:P,onClick:_,hoverHighlight:L,chartId:R,loading:B,emptyContent:D,legendInteraction:I,legendPosition:N,color:H}=t,W=i.width,F=i.height,$=i.enableHover,z=i.showGrid,G=i.showLegend,Y=i.title,q=i.description,X=i.summary,V=i.accessibleTable,U=i.xLabel,K=i.yLabel,Q=Jo(B,W,F),Z=Q?null:Zo(a,W,F,D),J=a||[],ee=lr({isPushMode:void 0===a,colorBy:y||g,colorScheme:m,showLegend:G,legendPosition:N}),te=e.useCallback(ee.wrapPush(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)}),[ee.wrapPush]),ne=e.useCallback(ee.wrapPushMany(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)}),[ee.wrapPushMany]);e.useImperativeHandle(n,()=>({push:te,pushMany:ne,remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;ee.resetCategories(),null===(e=r.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}),[te,ne,ee.resetCategories]);const{activeSelectionHook:oe,hoverSelectionHook:re,customHoverBehavior:ie,customClickBehavior:ae,crosshairSourceId:se}=no({selection:j,linkedHover:C,fallbackFields:y?["string"==typeof y?y:""]:[],onObservation:P,onClick:_,chartType:"StackedAreaChart",chartId:R,hoverHighlight:L,colorByField:"string"==typeof y?y:void 0}),le=tr(j),ce=oo(C,se),ue=void 0!==(null===(o=J[0])||void 0===o?void 0:o[f]),de=e.useMemo(()=>{if(ue)return J;if(g){const e=J.reduce((e,t)=>{const n="function"==typeof g?g(t):t[g];if(!e[n]){const t={[f]:[]};"string"==typeof g&&(t[g]=n),e[n]=t}return e[n][f].push(t),e},{});return Object.values(e)}return[{[f]:J}]},[J,g,f,ue]),he=eo(J,y,m),ge=e.useMemo(()=>{if(!y)return[];const e=new Set;for(const t of J){const n="function"==typeof y?y(t):t[y];null!=n&&e.add(n+"")}return Array.from(e)},[J,y]),fe=io(I,y,ge),pe=e.useMemo(()=>re||(fe.legendSelectionHook?fe.legendSelectionHook:oe),[re,fe.legendSelectionHook,oe]),ye=e.useMemo(()=>e=>{const t={};if(y&&he){const n=T(e,y,he);t.fill=n,x?(t.stroke=n,t.strokeWidth=k):t.stroke="none"}else if(!y){const e=H||Kn;t.fill=e,t.stroke=x?e:"none",x&&(t.strokeWidth=k)}return t.fillOpacity=b,t},[y,he,b,x,k,H]),me=e.useMemo(()=>zn(ye,pe,le),[ye,pe,le]),ve=e.useMemo(()=>{if(w)return e=>{const t={r:A,fillOpacity:1};return y?he&&(t.fill=T(e.parentLine||e,y,he)):t.fill=H||Kn,t}},[w,A,y,he,H]),{legend:be,margin:xe,legendPosition:ke}=ro({data:de,colorBy:y,colorScale:he,showLegend:G,legendPosition:N,userMargin:s,defaults:i.marginDefaults}),we=ee.streamingLegend||be,Ae=N||ke,Se=e.useMemo(()=>{if(ee.streamingMarginAdjust){const e=Object.assign({},xe);for(const[t,n]of Object.entries(ee.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return xe},[xe,ee.streamingMarginAdjust]),Oe=g||y,Ee=e.useMemo(()=>bo([{label:U||po(d),accessor:d,role:"x",format:c},{label:K||po(h),accessor:h,role:"y",format:u},...Oe?[{label:po(Oe),accessor:Oe,role:"group"}]:[]]),[d,h,U,K,Oe,c,u]),Me=Mo({componentName:"StackedAreaChart",data:a,accessors:{xAccessor:d,yAccessor:h}}),je=e.useMemo(()=>ue||g?de.flatMap(e=>{const t=e[f]||[];return g&&"string"==typeof g?t.map(t=>Object.assign(Object.assign({},t),{[g]:e[g]})):t}):J,[de,f,ue,g,J]),Ce=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"stackedarea"},null!=a&&{data:je}),{xAccessor:d,yAccessor:h,groupAccessor:g||void 0,curve:v,normalize:S,lineStyle:me}),w&&ve&&{pointStyle:ve}),{size:[W,F],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Se,showAxes:i.showAxes,xLabel:U,yLabel:K,xFormat:c,yFormat:u,enableHover:$}),t.pointIdAccessor&&{pointIdAccessor:t.pointIdAccessor}),{showGrid:z}),we&&{legend:we,legendPosition:Ae}),I&&"none"!==I&&{legendHoverBehavior:fe.onLegendHover,legendClickBehavior:fe.onLegendClick,legendHighlightedCategory:fe.highlightedCategory,legendIsolatedCategories:fe.isolatedCategories}),Y&&{title:Y}),q&&{description:q}),X&&{summary:X}),void 0!==V&&{accessibleTable:V}),l&&{className:l}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===O?()=>null:fo(O)||Ee}),(C||P||_||L)&&{customHoverBehavior:ie}),(P||_||C)&&{customClickBehavior:ae}),E&&E.length>0&&{annotations:E}),ce),M);return Q||Z||(Me?p.createElement(ko,{componentName:"StackedAreaChart",message:Me,width:W,height:F}):p.createElement(Uo,{componentName:"StackedAreaChart",width:W,height:F},p.createElement(wn,Object.assign({ref:r},Ce))))});function ur(t){const{data:n,rawData:o,colorBy:r,colorScheme:i,legendInteraction:a,legendPosition:s,selection:l,linkedHover:c,fallbackFields:u,unwrapData:d=!1,onObservation:h,chartType:g,chartId:f,showLegend:p,userMargin:y,marginDefaults:m,onClick:v,hoverHighlight:b,loading:x,emptyContent:k,width:w,height:A}=t,S="string"==typeof t.colorBy?t.colorBy:void 0,{activeSelectionHook:O,hoverSelectionHook:E,customHoverBehavior:M,customClickBehavior:j,crosshairSourceId:C}=no({selection:l,linkedHover:c,fallbackFields:u,unwrapData:d,onObservation:h,chartType:g,chartId:f,onClick:v,hoverHighlight:b,colorByField:S}),P=oo(c,C),_=eo(n,r,i),L=e.useMemo(()=>{if(!r)return[];const e=new Set;for(const t of n){const n="function"==typeof r?r(t):t[r];null!=n&&e.add(n+"")}return Array.from(e)},[n,r]),T=io(a,r,L),R=e.useMemo(()=>E||(T.legendSelectionHook?T.legendSelectionHook:O),[E,T.legendSelectionHook,O]),B=tr(l),{legend:D,margin:I,legendPosition:N}=ro({data:n,colorBy:r,colorScale:_,showLegend:p,legendPosition:s,userMargin:y,defaults:m}),H=e.useMemo(()=>{const e={};return D&&(e.legend=D,e.legendPosition=N),a&&"none"!==a&&(e.legendHoverBehavior=T.onLegendHover,e.legendClickBehavior=T.onLegendClick,e.legendHighlightedCategory=T.highlightedCategory,e.legendIsolatedCategories=T.isolatedCategories),e},[D,N,a,T.onLegendHover,T.onLegendClick,T.highlightedCategory,T.isolatedCategories]),W=Jo(x,w,A),F=W?null:Zo(o,w,A,k);return{colorScale:_,allCategories:L,legendState:T,effectiveSelectionHook:R,activeSelectionHook:O,customHoverBehavior:M,customClickBehavior:j,legend:D,margin:I,legendPosition:N,earlyReturn:W||F||null,legendBehaviorProps:H,crosshairProps:P,resolvedSelection:B}}cr.displayName="StackedAreaChart";const dr=e.forwardRef(function(t,n){const o=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=o.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=o.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=o.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,r;return null!==(r=null===(n=o.current)||void 0===n?void 0:n.update(e,t))&&void 0!==r?r:[]},clear:()=>{var e;return null===(e=o.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=o.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=o.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const r=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:i,margin:a,className:s,xFormat:l,yFormat:c,xAccessor:u="x",yAccessor:d="y",colorBy:h,colorScheme:g,sizeBy:f,sizeRange:y=[3,15],pointRadius:m=5,pointOpacity:v=.8,tooltip:b,marginalGraphics:x,pointIdAccessor:k,annotations:w,frameProps:A={},selection:S,linkedHover:O,linkedBrush:E,onObservation:M,onClick:j,hoverHighlight:C,chartId:P,loading:_,emptyContent:L,legendInteraction:R,legendPosition:D,color:I}=t,N=r.width,H=r.height,W=r.enableHover,F=r.showGrid,$=r.title,z=r.description,G=r.summary,Y=r.accessibleTable,q=r.xLabel,X=r.yLabel,V=i||[],U=ur({data:V,rawData:i,colorBy:h,colorScheme:g,legendInteraction:R,legendPosition:D,selection:S,linkedHover:O,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!1,onObservation:M,onClick:j,hoverHighlight:C,chartType:"Scatterplot",chartId:P,showLegend:r.showLegend,userMargin:a,marginDefaults:r.marginDefaults,loading:_,emptyContent:L,width:N,height:H}),K=$n(E),Q=Bn({name:(null==K?void 0:K.name)||"__unused_brush__",xField:(null==K?void 0:K.xField)||("string"==typeof u?u:void 0),yField:(null==K?void 0:K.yField)||("string"==typeof d?d:void 0)}),Z=K?"xyBrush"===Q.brushInteraction.brush?"xy":"xBrush"===Q.brushInteraction.brush?"x":"y":void 0,J=p.useRef(Q.brushInteraction);J.current=Q.brushInteraction;const ee=e.useCallback(e=>{const t=J.current;t.end(e?"xyBrush"===t.brush?[[e.x[0],e.y[0]],[e.x[1],e.y[1]]]:"xBrush"===t.brush?e.x:e.y:null)},[]);if(U.earlyReturn)return U.earlyReturn;er("Scatterplot",V,"xAccessor",u),er("Scatterplot",V,"yAccessor",d);const te=e.useMemo(()=>{if(!f||0===V.length)return;const e=V.map(e=>"function"==typeof f?f(e):e[f]);return[Math.min(...e),Math.max(...e)]},[V,f]),ne=e.useMemo(()=>e=>{const t={fillOpacity:v};return h?U.colorScale&&(t.fill=T(e,h,U.colorScale)):t.fill=I||Kn,t.r=f?B(e,f,y,te):m,t},[h,U.colorScale,f,y,te,m,v,I]),oe=e.useMemo(()=>zn(ne,U.effectiveSelectionHook,U.resolvedSelection),[ne,U.effectiveSelectionHook,U.resolvedSelection]),re=e.useMemo(()=>bo([{label:q||po(u),accessor:u,role:"x",format:l},{label:X||po(d),accessor:d,role:"y",format:c},...h?[{label:po(h),accessor:h,role:"color"}]:[],...f?[{label:po(f),accessor:f,role:"size"}]:[]]),[u,d,q,X,h,f,l,c]),ie=Mo({componentName:"Scatterplot",data:i,accessors:{xAccessor:u,yAccessor:d}});if(ie)return p.createElement(ko,{componentName:"Scatterplot",message:ie,width:N,height:H});const ae=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"scatter"},null!=i&&{data:V}),{xAccessor:u,yAccessor:d,colorAccessor:h||void 0,sizeAccessor:f||void 0,sizeRange:y,pointStyle:oe,colorScheme:g,size:[N,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:U.margin,showAxes:r.showAxes,xLabel:q,yLabel:X,xFormat:l,yFormat:c,enableHover:W,showGrid:F}),U.legendBehaviorProps),$&&{title:$}),z&&{description:z}),G&&{summary:G}),void 0!==Y&&{accessibleTable:Y}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===b?()=>null:fo(b)||re}),(O||M||j||C)&&{customHoverBehavior:U.customHoverBehavior}),(M||j||O)&&{customClickBehavior:U.customClickBehavior}),x&&{marginalGraphics:x}),k&&{pointIdAccessor:k}),w&&w.length>0&&{annotations:w}),K&&{brush:{dimension:Z},onBrush:ee}),U.crosshairProps),A);return p.createElement(Uo,{componentName:"Scatterplot",width:N,height:H},p.createElement(wn,Object.assign({ref:o},ae)))});function hr(e,t){return i.interpolateViridis(1===t?.5:e/(t-1))}dr.displayName="Scatterplot";const gr=e.forwardRef(function(t,n){var o;const r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const i=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:a,className:s,xFormat:l,yFormat:c,xAccessor:u="x",yAccessor:d="y",orderAccessor:h,orderLabel:g,pointRadius:f=4,tooltip:y,pointIdAccessor:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:A,hoverHighlight:S,chartId:O,loading:E,emptyContent:M,legendInteraction:j}=t,C=i.width,P=i.height,_=i.enableHover,L=i.showGrid,T=i.title,R=i.description,B=i.summary,D=i.accessibleTable,I=i.xLabel,N=i.yLabel,H=a||[],{safeData:W,orderMap:F}=e.useMemo(()=>{const e="function"==typeof u?u:e=>e[u],t="function"==typeof d?d:e=>e[d];let n=H;if(h&&H.length>0){const e="function"==typeof h?h:e=>e[h];n=[...H].sort((t,n)=>{const o=e(t),r=e(n);return(o instanceof Date?o.getTime():+o)-(r instanceof Date?r.getTime():+r)})}const o=new WeakMap;let r=0;for(const o of n){const n=e(o),i=t(o);null!=n&&null!=i&&isFinite(n)&&isFinite(i)&&r++}let i=0;for(const a of n){const n=e(a),s=t(a);null!=n&&null!=s&&isFinite(n)&&isFinite(s)&&o.set(a,{idx:i++,total:r})}return{safeData:n,orderMap:o}},[H,h,u,d]);er("ConnectedScatterplot",W,"xAccessor",u),er("ConnectedScatterplot",W,"yAccessor",d);const{activeSelectionHook:$,hoverSelectionHook:z,customHoverBehavior:G,customClickBehavior:Y,crosshairSourceId:q}=no({selection:x,linkedHover:k,fallbackFields:[],onObservation:w,onClick:A,chartType:"ConnectedScatterplot",chartId:O,hoverHighlight:S,colorByField:void 0}),X=tr(x),V=oo(k,q),U=io(j,void 0,[]),K=e.useMemo(()=>z||(U.legendSelectionHook?U.legendSelectionHook:$),[z,U.legendSelectionHook,$]),Q=null!==(o=null==X?void 0:X.unselectedOpacity)&&void 0!==o?o:.5,Z=e.useMemo(()=>(e,t)=>{var n,o;const r=t.filter(e=>"point"===e.type);if(2>r.length)return;const i=null==K?void 0:K.isActive,a=null==K?void 0:K.predicate,s=100>r.length,l=r.length;e.lineCap="round";for(let t=0;l-1>t;t++){const c=r[t],u=r[t+1],d=hr(t,l),h=!i||!a||a(null!==(n=c.datum)&&void 0!==n?n:c)||a(null!==(o=u.datum)&&void 0!==o?o:u),g=i?h?1:Q:1;s&&(e.beginPath(),e.moveTo(c.x,c.y),e.lineTo(u.x,u.y),e.strokeStyle="white",e.lineWidth=f+2,e.globalAlpha=.5*g,e.stroke()),e.beginPath(),e.moveTo(c.x,c.y),e.lineTo(u.x,u.y),e.strokeStyle=d,e.lineWidth=f,e.globalAlpha=g,e.stroke()}e.globalAlpha=1},[f,K,Q]),J=e.useMemo(()=>[Z],[Z]),ee=e.useMemo(()=>(e,t,n)=>{var o,r;const i=e.filter(e=>"point"===e.type);if(2>i.length)return null;const a=i.length,s=100>a,l=[];for(let e=0;a-1>e;e++){const t=i[e],n=i[e+1],c=hr(e,a),u="number"==typeof(null===(o=t.style)||void 0===o?void 0:o.opacity)?t.style.opacity:1,d="number"==typeof(null===(r=n.style)||void 0===r?void 0:r.opacity)?n.style.opacity:1,h=Math.min(u,d);s&&l.push(p.createElement("line",{key:"halo-"+e,x1:t.x,y1:t.y,x2:n.x,y2:n.y,stroke:"white",strokeWidth:f+2,strokeLinecap:"round",opacity:.5*h})),l.push(p.createElement("line",{key:"seg-"+e,x1:t.x,y1:t.y,x2:n.x,y2:n.y,stroke:c,strokeWidth:f,strokeLinecap:"round",opacity:h}))}return p.createElement(p.Fragment,null,l)},[f]),te=e.useMemo(()=>[ee],[ee]),ne=e.useMemo(()=>e=>{var t,n;const o=F.get(e),r=null!==(t=null==o?void 0:o.idx)&&void 0!==t?t:0,i=null!==(n=null==o?void 0:o.total)&&void 0!==n?n:1;return{fill:i>0?hr(r,i):"#6366f1",stroke:"white",strokeWidth:1,r:f,fillOpacity:1}},[f,F]),oe=e.useMemo(()=>zn(ne,K,X),[ne,K,X]),re=Object.assign({top:50,right:40,bottom:60,left:70},t.margin),ie=g||("string"==typeof h?h:"Order"),ae=e.useMemo(()=>bo([{label:I||po(u),accessor:u,role:"x",format:l},{label:N||po(d),accessor:d,role:"y",format:c},...h?[{label:ie,accessor:h,role:"group"}]:[]]),[u,d,I,N,h,ie,l,c]),se=Mo({componentName:"ConnectedScatterplot",data:a,accessors:{xAccessor:u,yAccessor:d}}),le=Jo(E,C,P),ce=le?null:Zo(a,C,P,M),ue=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"scatter"},null!=a&&{data:W}),{xAccessor:u,yAccessor:d,pointStyle:oe,size:[C,P],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:re,showAxes:i.showAxes,xLabel:I,yLabel:N,xFormat:l,yFormat:c,enableHover:_,showGrid:L}),T&&{title:T}),R&&{description:R}),B&&{summary:B}),void 0!==D&&{accessibleTable:D}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===y?()=>null:fo(y)||ae}),(k||w||A||S)&&{customHoverBehavior:G}),(w||A||k)&&{customClickBehavior:Y}),m&&{pointIdAccessor:m}),{canvasPreRenderers:J,svgPreRenderers:te}),v&&v.length>0&&{annotations:v}),V),b);return le||ce||(se?p.createElement(ko,{componentName:"ConnectedScatterplot",message:se,width:C,height:P}):p.createElement(Uo,{componentName:"ConnectedScatterplot",width:C,height:P},p.createElement(wn,Object.assign({ref:r},ue))))});gr.displayName="ConnectedScatterplot";const fr=e.forwardRef(function(t,n){const o=e.useRef(null),r=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:i,margin:a,className:s,xFormat:l,yFormat:c,xAccessor:u="x",yAccessor:d="y",sizeBy:h,sizeRange:g=[5,40],colorBy:f,colorScheme:y,bubbleOpacity:m=.6,bubbleStrokeWidth:v=1,bubbleStrokeColor:b="white",tooltip:x,marginalGraphics:k,pointIdAccessor:w,annotations:A,frameProps:S={},selection:O,linkedHover:E,linkedBrush:M,onObservation:j,onClick:C,hoverHighlight:P,chartId:_,loading:L,emptyContent:R,legendInteraction:D,legendPosition:I,color:N}=t,H=r.width,W=r.height,F=r.enableHover,$=r.showGrid,z=r.showLegend,G=r.title,Y=r.description,q=r.summary,X=r.accessibleTable,V=r.xLabel,U=r.yLabel,K=Jo(L,H,W),Q=K?null:Zo(i,H,W,R),Z=i||[],J=void 0===i,ee=e.useRef(null),[te,ne]=e.useState(0),oe=e.useCallback(e=>{if(!J)return;let t=!1;for(const n of e){const e="function"==typeof h?h(n):n[h];null!=e&&isFinite(e)&&(ee.current?(ee.current[0]>e&&(ee.current[0]=e,t=!0),e>ee.current[1]&&(ee.current[1]=e,t=!0)):(ee.current=[e,e],t=!0))}t&&ne(e=>e+1)},[J,h]),re=lr({isPushMode:J,colorBy:f,colorScheme:y,showLegend:z,legendPosition:I}),ie=e.useCallback(re.wrapPush(e=>{var t;oe([e]),null===(t=o.current)||void 0===t||t.push(e)}),[re.wrapPush,oe]),ae=e.useCallback(re.wrapPushMany(e=>{var t;oe(e),null===(t=o.current)||void 0===t||t.pushMany(e)}),[re.wrapPushMany,oe]);e.useImperativeHandle(n,()=>({push:ie,pushMany:ae,remove:e=>{var t,n;return null!==(n=null===(t=o.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,r;return null!==(r=null===(n=o.current)||void 0===n?void 0:n.update(e,t))&&void 0!==r?r:[]},clear:()=>{var e;re.resetCategories(),ee.current=null,ne(e=>e+1),null===(e=o.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=o.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=o.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}),[ie,ae,re.resetCategories]);const{activeSelectionHook:se,hoverSelectionHook:le,customHoverBehavior:ce,customClickBehavior:ue,crosshairSourceId:de}=no({selection:O,linkedHover:E,fallbackFields:f?["string"==typeof f?f:""]:[],onObservation:j,onClick:C,chartType:"BubbleChart",chartId:_,hoverHighlight:P,colorByField:"string"==typeof f?f:void 0}),he=tr(O),ge=oo(E,de),fe=$n(M);Bn({name:(null==fe?void 0:fe.name)||"__unused_brush__",xField:(null==fe?void 0:fe.xField)||("string"==typeof u?u:void 0),yField:(null==fe?void 0:fe.yField)||("string"==typeof d?d:void 0)});const pe=eo(Z,f,y),ye=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of Z){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[Z,f]),me=io(D,f,ye),ve=e.useMemo(()=>le||(me.legendSelectionHook?me.legendSelectionHook:se),[le,me.legendSelectionHook,se]),be=e.useMemo(()=>{if(J)return ee.current||[0,1];const e=Z.map(e=>"function"==typeof h?h(e):e[h]);return[Math.min(...e),Math.max(...e)]},[Z,h,J,te]),xe=e.useMemo(()=>e=>{const t={fillOpacity:m,strokeWidth:v,stroke:b};return f?pe&&(t.fill=T(e,f,pe)):t.fill=N||Kn,t.r=B(e,h,g,be),t},[f,pe,h,g,be,m,v,b,N]),ke=e.useMemo(()=>zn(xe,ve,he),[xe,ve,he]),{legend:we,margin:Ae,legendPosition:Se}=ro({data:Z,colorBy:f,colorScale:pe,showLegend:z,legendPosition:I,userMargin:a,defaults:r.marginDefaults}),Oe=re.streamingLegend||we,Ee=I||Se,Me=e.useMemo(()=>{if(re.streamingMarginAdjust){const e=Object.assign({},Ae);for(const[t,n]of Object.entries(re.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return Ae},[Ae,re.streamingMarginAdjust]),je=e.useMemo(()=>bo([{label:V||po(u),accessor:u,role:"x",format:l},{label:U||po(d),accessor:d,role:"y",format:c},{label:po(h),accessor:h,role:"size"},...f?[{label:po(f),accessor:f,role:"color"}]:[]]),[u,d,V,U,h,f,l,c]),Ce=Mo({componentName:"BubbleChart",data:i,accessors:{xAccessor:u,yAccessor:d},requiredProps:{sizeBy:h}});if(Ce)return p.createElement(ko,{componentName:"BubbleChart",message:Ce,width:H,height:W});const Pe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bubble"},null!=i&&{data:Z}),{xAccessor:u,yAccessor:d,colorAccessor:f||void 0,sizeAccessor:h,sizeRange:g,pointStyle:ke,colorScheme:y,size:[H,W],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Me,showAxes:r.showAxes,xLabel:V,yLabel:U,xFormat:l,yFormat:c,enableHover:F,showGrid:$}),Oe&&{legend:Oe,legendPosition:Ee}),D&&"none"!==D&&{legendHoverBehavior:me.onLegendHover,legendClickBehavior:me.onLegendClick,legendHighlightedCategory:me.highlightedCategory,legendIsolatedCategories:me.isolatedCategories}),G&&{title:G}),Y&&{description:Y}),q&&{summary:q}),void 0!==X&&{accessibleTable:X}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===x?()=>null:fo(x)||je}),(E||j||C||P)&&{customHoverBehavior:ce}),(j||C||E)&&{customClickBehavior:ue}),k&&{marginalGraphics:k}),w&&{pointIdAccessor:w}),A&&A.length>0&&{annotations:A}),ge),S);return K||Q||p.createElement(Uo,{componentName:"BubbleChart",width:H,height:W},p.createElement(wn,Object.assign({ref:o},Pe)))});fr.displayName="BubbleChart";const pr=e.forwardRef(function(t,n){const r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const a=so(t.mode,{width:t.width,height:t.height,showGrid:void 0,enableHover:t.enableHover,showLegend:void 0,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:s,margin:l,className:c,xAccessor:u="x",yAccessor:d="y",valueAccessor:h="value",xFormat:g,yFormat:f,colorScheme:y="blues",customColorScale:m,showValues:v=!1,valueFormat:b,cellBorderColor:x="#fff",cellBorderWidth:k=1,tooltip:w,annotations:A,frameProps:S={},selection:O,linkedHover:E,onObservation:M,onClick:j,hoverHighlight:C,chartId:P,loading:_,emptyContent:L,showLegend:T,legendPosition:R,legendInteraction:B}=t,D=a.width,I=a.height,N=a.enableHover,H=a.title,W=a.description,F=a.summary,$=a.accessibleTable,z=a.xLabel,G=a.yLabel,Y=Jo(_,D,I),q=Y?null:Zo(s,D,I,L),X=s||[],V=null!=T&&T,U=null!=R?R:"right",{margin:K}=ro({data:X,colorBy:V?"value":void 0,colorScale:void 0,showLegend:V,legendPosition:U,userMargin:l,defaults:a.marginDefaults}),{activeSelectionHook:Q,hoverSelectionHook:Z,customHoverBehavior:J,customClickBehavior:ee,crosshairSourceId:te}=no({selection:O,linkedHover:E,fallbackFields:[],onObservation:M,onClick:j,chartType:"Heatmap",chartId:P,hoverHighlight:C,colorByField:void 0}),ne=tr(O),oe=oo(E,te),re=io(B,void 0,[]),ie=e.useMemo(()=>Z||(re.legendSelectionHook?re.legendSelectionHook:Q),[Z,re.legendSelectionHook,Q]),ae=e.useMemo(()=>"function"==typeof h?e=>h(e):e=>e[h],[h]),se=e.useMemo(()=>{const e=X.map(ae);return[Math.min(...e),Math.max(...e)]},[X,ae]),le=e.useMemo(()=>"custom"===y&&m?m:o.scaleSequential({blues:i.interpolateBlues,reds:i.interpolateReds,greens:i.interpolateGreens,viridis:i.interpolateViridis}[y]||i.interpolateBlues).domain(se),[y,m,se]);e.useMemo(()=>{const e=Jn(u),t=Jn(d);return{xBinCount:new Set(X.map(e)).size,yBinCount:new Set(X.map(t)).size}},[X,u,d]),e.useMemo(()=>({coordinates:X}),[X]);const ce=e.useMemo(()=>e=>{const t=ae(e);return{fill:le(t),stroke:x,strokeWidth:k}},[ae,le,x,k]);e.useMemo(()=>zn(ce,ie,ne),[ce,ie,ne]);const ue=e.useMemo(()=>bo([{label:z||po(u),accessor:u,role:"x",format:g},{label:G||po(d),accessor:d,role:"y",format:f},{label:po(h),accessor:h,role:"value",format:b}]),[u,d,z,G,h,g,f,b]),de=Mo({componentName:"Heatmap",data:s,accessors:{xAccessor:u,yAccessor:d,valueAccessor:h}}),he=e.useMemo(()=>{if(V)return{gradient:{colorFn:e=>le(e),domain:se,label:"string"==typeof h?h:"value",format:b}}},[V,le,se,h,b]),ge=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"heatmap"},null!=s&&{data:X}),{xAccessor:u,yAccessor:d,valueAccessor:h,colorScheme:"custom"!==y?y:void 0,showValues:v,heatmapValueFormat:b,size:[D,I],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:K,showAxes:a.showAxes,xLabel:z,yLabel:G,xFormat:g,yFormat:f,enableHover:N}),t.pointIdAccessor&&{pointIdAccessor:t.pointIdAccessor}),he&&{legend:he,legendPosition:U}),H&&{title:H}),W&&{description:W}),F&&{summary:F}),void 0!==$&&{accessibleTable:$}),c&&{className:c}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===w?()=>null:fo(w)||ue}),(E||M||j||C)&&{customHoverBehavior:J}),(M||j||E)&&{customClickBehavior:ee}),A&&A.length>0&&{annotations:A}),oe),S);return Y||q||(de?p.createElement(ko,{componentName:"Heatmap",message:de,width:D,height:I}):p.createElement(Uo,{componentName:"Heatmap",width:D,height:I},p.createElement(wn,Object.assign({ref:r},ge))))});pr.displayName="Heatmap";const yr="__splomIdx",mr={top:4,bottom:4,left:4,right:4};function vr({frameRef:o,cellSize:r,onBrush:i}){const a=e.useRef(null),s=r-mr.left-mr.right,l=r-mr.top-mr.bottom;return e.useEffect(()=>{if(!a.current)return;const e=t.select(a.current).select(".brush-g"),r=n.brush().extent([[0,0],[s,l]]).on("brush end",e=>{var t;const n=null===(t=o.current)||void 0===t?void 0:t.getScales();if(!n)return;if(!e.selection)return void i(null);const[[r,a],[s,l]]=e.selection,c=[[n.x.invert(r),n.y.invert(a)],[n.x.invert(s),n.y.invert(l)]];i(c)});return e.call(r),e.select(".selection").attr("fill","steelblue").attr("fill-opacity",.15).attr("stroke","steelblue").attr("stroke-width",1),()=>{r.on("brush end",null)}},[s,l,o,i]),p.createElement("svg",{ref:a,width:r,height:r,style:{position:"absolute",top:0,left:0}},p.createElement("g",{className:"brush-g",transform:`translate(${mr.left},${mr.top})`}))}function br({data:t,xField:n,yField:o,cellSize:r,pointRadius:i,pointOpacity:a,colorBy:s,colorScale:l,brushSelectionName:c,hoverSelectionName:u,unselectedOpacity:d,mode:h,onPointHover:g}){const f=e.useRef(null),y=Tn({name:c,clientId:`splom-${n}-${o}`}),m=Bn({name:c,xField:n,yField:o}),v=Tn({name:u,clientId:"splom-hover-source"}),b=v.selectPoints,x=e.useCallback(e=>{e?m.brushInteraction.during(e):m.brushInteraction.end(null)},[m.brushInteraction]),k=e.useCallback(e=>{if(!e)return void(null==g||g(null));const t=e.data,n=null==t?void 0:t[yr];void 0!==n&&(b({[yr]:[n]}),null==g||g(t,e.x+mr.left,e.y+mr.top))},[b,g]),w=e.useCallback(e=>{const t={opacity:a,r:i};return t.fill=s?T(e,s,l):Kn,"hover"===h?v.isActive&&v.predicate(e)?(t.opacity=1,t.r=2.5*i,t.stroke="#333",t.strokeWidth=1.5):v.isActive&&(t.opacity=.6*a):y.isActive&&!y.predicate(e)&&(t.opacity=d),t},[s,l,a,i,h,y.isActive,y.predicate,v.isActive,v.predicate,d]);return p.createElement("div",{style:{position:"relative",width:r,height:r}},p.createElement(wn,{ref:f,chartType:"scatter",data:t,size:[r,r],xAccessor:n,yAccessor:o,pointStyle:w,margin:mr,showAxes:!1,enableHover:"hover"===h,customHoverBehavior:"hover"===h?k:void 0,tooltipContent:"hover"===h?()=>null:void 0}),"brush"===h&&p.createElement(vr,{frameRef:f,cellSize:r,xField:n,yField:o,onBrush:x}))}function xr({data:t,field:n,label:o,cellSize:r,bins:i,colorBy:a,colorScale:s,brushSelectionName:l,hoverSelectionName:c,mode:u}){const d=Tn({name:l,clientId:"splom-diag-"+n}),h=Tn({name:c,clientId:`splom-diag-${n}-hover`}),g="hover"===u?h:d,f=g.isActive,y=g.predicate,m=e.useMemo(()=>{const e=t.map(e=>e[n]).filter(e=>null!=e&&!isNaN(e));if(0===e.length)return{bars:[],selectedBars:[],categoryBars:[],selectedCategoryBars:[],max:0,categories:[]};const o=Math.min(...e),s=(Math.max(...e)-o)/i||1,l="string"==typeof a?a:null,c=l?[...new Set(t.map(e=>e[l]).filter(e=>null!=e).map(String))]:[],u=new Map(c.map((e,t)=>[e,t])),d=Array(i).fill(0),h=Array(i).fill(0),g=Array.from({length:i},()=>Array(c.length).fill(0)),p=Array.from({length:i},()=>Array(c.length).fill(0));for(const e of t){const t=e[n];if(null==t||isNaN(t))continue;const r=Math.min(Math.floor((t-o)/s),i-1);if(d[r]++,f&&!y(e)||h[r]++,l){const t=u.get(e[l]+"");void 0!==t&&(g[r][t]++,f&&!y(e)||p[r][t]++)}}const m=Math.max(...d,1),v=g.map((e,t)=>{let n=0;return e.map((e,o)=>{const a=e/m*(r-24),s={x:t/i*r,w:r/i-1,h:a,y0:n,category:c[o]};return n+=a,s})}),b=p.map((e,t)=>{let n=0;return e.map((e,o)=>{const a=e/m*(r-24),s={x:t/i*r,w:r/i-1,h:a,y0:n,category:c[o]};return n+=a,s})});return{bars:d.map((e,t)=>({x:t/i*r,w:r/i-1,h:e/m*(r-24),count:e})),selectedBars:h.map((e,t)=>({x:t/i*r,w:r/i-1,h:e/m*(r-24),count:e})),categoryBars:v,selectedCategoryBars:b,max:m,categories:c}},[t,n,i,r,f,y,a]);return p.createElement("svg",{width:r,height:r,style:{overflow:"hidden"}},p.createElement("text",{x:r/2,y:14,textAnchor:"middle",fontSize:11,fontWeight:"bold",fill:"#333"},o),m.categories.length>0?m.categoryBars.map((e,t)=>e.map((e,n)=>p.createElement("rect",{key:`bg-${t}-${n}`,x:e.x,y:r-e.y0-e.h,width:Math.max(e.w,1),height:e.h,fill:s?s(e.category):Kn,opacity:f?.3:.6}))):m.bars.map((e,t)=>p.createElement("rect",{key:"bg-"+t,x:e.x,y:r-e.h,width:Math.max(e.w,1),height:e.h,fill:Kn,opacity:f?.3:.6})),f&&(m.categories.length>0?m.selectedCategoryBars.map((e,t)=>e.map((e,n)=>p.createElement("rect",{key:`sel-${t}-${n}`,x:e.x,y:r-e.y0-e.h,width:Math.max(e.w,1),height:e.h,fill:s?s(e.category):Kn,opacity:.7}))):m.selectedBars.map((e,t)=>p.createElement("rect",{key:"sel-"+t,x:e.x,y:r-e.h,width:Math.max(e.w,1),height:e.h,fill:Kn,opacity:.7}))))}function kr({label:e,cellSize:t}){return p.createElement("svg",{width:t,height:t},p.createElement("text",{x:t/2,y:t/2,textAnchor:"middle",dominantBaseline:"middle",fontSize:12,fontWeight:"bold",fill:"#333"},e))}function wr(t){const{data:n,fields:o,fieldLabels:r={},colorBy:i,colorScheme:a,cellSize:s=150,cellGap:l=4,pointRadius:c=2,pointOpacity:u=.5,diagonal:d="histogram",histogramBins:h=20,brushMode:g="crossfilter",hoverMode:f=!0,unselectedOpacity:y=.1,showGrid:m=!1,tooltip:v,showLegend:b,idAccessor:x,className:k,onObservation:w,chartId:A}=t,S="splom",O="splom-hover",E=f?"hover":g?"brush":"hover",M=Pn(e=>e.clearSelection),[j,C]=e.useState(null),P=e.useCallback(()=>{M(O),C(null)},[M,O]),_=e.useMemo(()=>(n||[]).map((e,t)=>void 0!==e[yr]?e:Object.assign(Object.assign({},e),{[yr]:t})),[n]),L=eo(_,i,a),T=void 0!==b?b:!!i,R=e.useMemo(()=>{if(!T||!i)return null;const e="string"==typeof i?i:null;return e?[...new Set(_.map(t=>t[e]))].map(e=>({label:e+"",color:L?L(e+""):Kn})):null},[T,i,_,L]),B=e.useMemo(()=>({display:"grid",gridTemplateColumns:"40px "+o.map(()=>s+"px").join(" "),gridTemplateRows:o.map(()=>s+"px").join(" ")+" 40px",gap:l+"px",width:"fit-content"}),[o,s,l,40]);return p.createElement("div",{className:k,style:{position:"relative"}},R&&p.createElement("div",{style:{display:"flex",gap:12,marginBottom:8,flexWrap:"wrap"}},R.map(e=>p.createElement("div",{key:e.label,style:{display:"flex",alignItems:"center",gap:4}},p.createElement("span",{style:{display:"inline-block",width:10,height:10,borderRadius:"50%",backgroundColor:e.color}}),p.createElement("span",{style:{fontSize:11}},e.label)))),p.createElement("div",{style:B,onMouseLeave:"hover"===E?P:void 0},o.map((e,t)=>p.createElement(p.Fragment,{key:"row-"+e},p.createElement("div",{style:{display:"flex",alignItems:"center",justifyContent:"center",writingMode:"vertical-rl",transform:"rotate(180deg)",fontSize:11,fontWeight:"bold",color:"#333"}},r[e]||e),o.map((n,o)=>t===o?"label"===d?p.createElement(kr,{key:"diag-"+e,label:r[e]||e,cellSize:s}):p.createElement(xr,{key:"diag-"+e,data:_,field:e,label:r[e]||e,cellSize:s,bins:h,colorBy:i,colorScale:L,brushSelectionName:S,hoverSelectionName:O,unselectedOpacity:y,mode:E}):p.createElement(br,{key:`cell-${e}-${n}`,data:_,xField:n,yField:e,fieldLabels:r,cellSize:s,pointRadius:c,pointOpacity:u,colorBy:i,colorScale:L,brushSelectionName:S,hoverSelectionName:O,unselectedOpacity:y,showGrid:m,tooltip:v,mode:E,onPointHover:"hover"===E?(r,i,a)=>{r?(C({datum:r,xField:n,yField:e,colIndex:o,rowIndex:t,px:null!=i?i:0,py:null!=a?a:0}),w&&w({type:"hover",datum:r,x:null!=i?i:0,y:null!=a?a:0,timestamp:Date.now(),chartType:"ScatterplotMatrix",chartId:A})):(C(null),w&&w({type:"hover-end",timestamp:Date.now(),chartType:"ScatterplotMatrix",chartId:A}))}:void 0})))),p.createElement("div",null)," ",o.map(e=>p.createElement("div",{key:"col-label-"+e,style:{display:"flex",alignItems:"center",justifyContent:"center",fontSize:11,fontWeight:"bold",color:"#333"}},r[e]||e))),j&&"hover"===E&&(()=>{const e=j.datum,t=r[j.xField]||j.xField,n=r[j.yField]||j.yField,o=i?"function"==typeof i?i(e):e[i]:null,a=x?"function"==typeof x?x(e):e[x]:"Row "+e[yr];return p.createElement("div",{style:{position:"absolute",left:40+j.colIndex*(s+l)+j.px,top:j.rowIndex*(s+l)+j.py-8,transform:"translate(-50%, -100%)",color:"#333",background:"rgba(255,255,255,0.95)",border:"1px solid #ddd",borderRadius:3,padding:"4px 8px",fontSize:11,lineHeight:1.4,whiteSpace:"nowrap",pointerEvents:"none",zIndex:10}},p.createElement("div",{style:{fontWeight:"bold",marginBottom:2}},a+""),p.createElement("div",null,t,": ",null!=e[j.xField]?Number(e[j.xField]).toFixed(1):"–"),p.createElement("div",null,n,": ",null!=e[j.yField]?Number(e[j.yField]).toFixed(1):"–"),null!=o&&p.createElement("div",{style:{opacity:.8}},"string"==typeof i?i:"group",": ",o+""))})())}function Ar(e){const{brushMode:t="crossfilter",hoverMode:n=!0}=e,o={};return!n&&t&&(o.splom={resolution:t}),n&&(o["splom-hover"]={resolution:"union"}),p.createElement(Wn,{selections:o},p.createElement(wr,Object.assign({},e)))}Ar.displayName="ScatterplotMatrix";const Sr=e.forwardRef(function(t,n){const o=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=o.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=o.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=o.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,r;return null!==(r=null===(n=o.current)||void 0===n?void 0:n.update(e,t))&&void 0!==r?r:[]},clear:()=>{var e;return null===(e=o.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=o.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=o.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const r=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:i,margin:a,className:s,xFormat:l,yFormat:c,xAccessor:u="x",yAccessor:d="y",xCenter:h,yCenter:g,quadrants:f,centerlineStyle:y={},showQuadrantLabels:m=!0,quadrantLabelSize:v=12,colorBy:b,colorScheme:x,sizeBy:k,sizeRange:w=[3,15],pointRadius:A=5,pointOpacity:S=.8,tooltip:O,pointIdAccessor:E,annotations:M,frameProps:j={},selection:C,linkedHover:P,onObservation:_,onClick:L,hoverHighlight:R,chartId:D,loading:I,emptyContent:N,legendInteraction:H,legendPosition:W,color:F}=t,$=r.width,z=r.height,G=r.enableHover,Y=r.showGrid,q=r.showLegend,X=r.title,V=r.description,U=r.summary,K=r.accessibleTable,Q=r.xLabel,Z=r.yLabel,J=Jo(I,$,z),ee=J?null:Zo(i,$,z,N),te=i||[];er("QuadrantChart",te,"xAccessor",u),er("QuadrantChart",te,"yAccessor",d);const{activeSelectionHook:ne,hoverSelectionHook:oe,customHoverBehavior:re,customClickBehavior:ie,crosshairSourceId:ae}=no({selection:C,linkedHover:P,fallbackFields:"string"==typeof b?[b]:[],onObservation:_,onClick:L,chartType:"QuadrantChart",chartId:D,hoverHighlight:R,colorByField:"string"==typeof b?b:void 0}),se=tr(C),le=oo(P,ae),ce=eo(te,b,x),ue=e.useMemo(()=>{if(!b)return[];const e=new Set;for(const t of te){const n="function"==typeof b?b(t):t[b];null!=n&&e.add(n+"")}return Array.from(e)},[te,b]),de=io(H,b,ue),he=e.useMemo(()=>oe||(de.legendSelectionHook?de.legendSelectionHook:ne),[oe,de.legendSelectionHook,ne]),ge=e.useMemo(()=>{if(!te.length)return;const e="function"==typeof u?u:e=>+e[u],t="function"==typeof d?d:e=>+e[d];let n=1/0,o=-1/0,r=1/0,i=-1/0;for(const a of te){const s=e(a),l=t(a);isFinite(s)&&(n>s&&(n=s),s>o&&(o=s)),isFinite(l)&&(r>l&&(r=l),l>i&&(i=l))}if(null!=h&&isFinite(h)&&(n>h&&(n=h),h>o&&(o=h)),null!=g&&isFinite(g)&&(r>g&&(r=g),g>i&&(i=g)),n===1/0)return;const a=.1*(o-n)||1,s=.1*(i-r)||1;return{xExtent:[n-a,o+a],yExtent:[r-s,i+s]}},[te,u,d,h,g]),fe=e.useMemo(()=>{if(!k||0===te.length)return;const e=te.map(e=>"function"==typeof k?k(e):e[k]).filter(e=>"number"==typeof e&&Number.isFinite(e));return 0!==e.length?[Math.min(...e),Math.max(...e)]:void 0},[te,k]),pe=e.useMemo(()=>"function"==typeof u?u:e=>+e[u],[u]),ye=e.useMemo(()=>"function"==typeof d?d:e=>+e[d],[d]),me=e.useMemo(()=>e=>{const t={fillOpacity:S};if(b)ce&&(t.fill=T(e,b,ce));else{const n=pe(e),o=ye(e),r=null!=h?n>=h:void 0,i=null!=g?o>=g:void 0;t.fill=void 0===i||void 0===r?F||Kn:i&&r?f.topRight.color:i&&!r?f.topLeft.color:!i&&r?f.bottomRight.color:f.bottomLeft.color}return t.r=k?B(e,k,w,fe):A,t},[b,ce,k,w,fe,A,S,pe,ye,h,g,f,F]),ve=e.useMemo(()=>zn(me,he,se),[me,he,se]),{legend:be,margin:xe,legendPosition:ke}=ro({data:te,colorBy:b,colorScale:ce,showLegend:q,legendPosition:W,userMargin:a,defaults:r.marginDefaults}),we=e.useMemo(()=>{if(!te.length)return;const e=new Set;"string"==typeof u&&e.add(u),"string"==typeof d&&e.add(d),"string"==typeof b&&e.add(b),"string"==typeof k&&e.add(k);const t=te[0];for(const n of Object.keys(t))if(!n.startsWith("_")&&!e.has(n)&&"string"==typeof t[n])return n},[te,u,d,b,k]),Ae=e.useMemo(()=>bo([...we?[{label:we,accessor:we,role:"title"}]:[],{label:Q||po(u),accessor:u,role:"x",format:l},{label:Z||po(d),accessor:d,role:"y",format:c},...b?[{label:po(b),accessor:b,role:"color"}]:[],...k?[{label:po(k),accessor:k,role:"size"}]:[]]),[we,u,d,Q,Z,b,k,l,c]),Se=Mo({componentName:"QuadrantChart",data:i,accessors:{xAccessor:u,yAccessor:d}}),Oe=e.useMemo(()=>{var e;const t={stroke:y.stroke||"#999",strokeWidth:null!==(e=y.strokeWidth)&&void 0!==e?e:1,dashArray:y.strokeDasharray||[]};return[(e,n,o,r)=>{var i;if(!(null==o?void 0:o.x)||!(null==o?void 0:o.y))return;const a=r.width,s=r.height,l=null!=h?o.x(h):a/2,c=null!=g?o.y(g):s/2;if(null!=h&&!isFinite(l))return;if(null!=g&&!isFinite(c))return;const u=Math.max(0,Math.min(a,l)),d=Math.max(0,Math.min(s,c)),p=[{config:f.topLeft,x:0,y:0,w:u,h:d},{config:f.topRight,x:u,y:0,w:a-u,h:d},{config:f.bottomLeft,x:0,y:d,w:u,h:s-d},{config:f.bottomRight,x:u,y:d,w:a-u,h:s-d}];for(const t of p)t.w>0&&t.h>0&&(e.fillStyle=t.config.color,e.globalAlpha=null!==(i=t.config.opacity)&&void 0!==i?i:.08,e.fillRect(t.x,t.y,t.w,t.h));e.globalAlpha=1,e.strokeStyle=t.stroke,e.lineWidth=t.strokeWidth,t.dashArray.length>0&&e.setLineDash(t.dashArray),e.beginPath(),e.moveTo(u,0),e.lineTo(u,s),e.stroke(),e.beginPath(),e.moveTo(0,d),e.lineTo(a,d),e.stroke(),e.setLineDash([])}]},[h,g,f,y]),Ee=e.useMemo(()=>m?[...Oe,(e,t,n,o)=>{if(!(null==n?void 0:n.x)||!(null==n?void 0:n.y))return;const r=o.width,i=o.height,a=null!=h?n.x(h):r/2,s=null!=g?n.y(g):i/2;(null==h||isFinite(a))&&(null==g||isFinite(s))&&(e.font=`600 ${v}px sans-serif`,e.globalAlpha=.5,e.fillStyle=f.topLeft.color,e.textAlign="left",e.textBaseline="top",e.fillText(f.topLeft.label,8,8),e.fillStyle=f.topRight.color,e.textAlign="right",e.textBaseline="top",e.fillText(f.topRight.label,r-8,8),e.fillStyle=f.bottomLeft.color,e.textAlign="left",e.textBaseline="bottom",e.fillText(f.bottomLeft.label,8,i-8),e.fillStyle=f.bottomRight.color,e.textAlign="right",e.textBaseline="bottom",e.fillText(f.bottomRight.label,r-8,i-8),e.globalAlpha=1)}]:Oe,[Oe,m,v,f,h,g]),Me=e.useMemo(()=>{const e=j.canvasPreRenderers||[];return[...Ee,...e]},[Ee,j.canvasPreRenderers]),je=e.useMemo(()=>{var e;const t={stroke:y.stroke||"#999",strokeWidth:null!==(e=y.strokeWidth)&&void 0!==e?e:1,dashArray:y.strokeDasharray?Array.isArray(y.strokeDasharray)?y.strokeDasharray.join(","):y.strokeDasharray:void 0};return[(e,n,o)=>{if(!(null==n?void 0:n.x)||!(null==n?void 0:n.y))return null;const r=o.width,i=o.height,a=null!=h?n.x(h):r/2,s=null!=g?n.y(g):i/2;if(null!=h&&!isFinite(a))return null;if(null!=g&&!isFinite(s))return null;const l=Math.max(0,Math.min(r,a)),c=Math.max(0,Math.min(i,s));return p.createElement(p.Fragment,null,[{config:f.topLeft,x:0,y:0,w:l,h:c},{config:f.topRight,x:l,y:0,w:r-l,h:c},{config:f.bottomLeft,x:0,y:c,w:l,h:i-c},{config:f.bottomRight,x:l,y:c,w:r-l,h:i-c}].map((e,t)=>{var n;return e.w>0&&e.h>0?p.createElement("rect",{key:"qf-"+t,x:e.x,y:e.y,width:e.w,height:e.h,fill:e.config.color,opacity:null!==(n=e.config.opacity)&&void 0!==n?n:.08}):null}),p.createElement("line",{x1:l,y1:0,x2:l,y2:i,stroke:t.stroke,strokeWidth:t.strokeWidth,strokeDasharray:t.dashArray}),p.createElement("line",{x1:0,y1:c,x2:r,y2:c,stroke:t.stroke,strokeWidth:t.strokeWidth,strokeDasharray:t.dashArray}),m&&p.createElement(p.Fragment,null,p.createElement("text",{x:8,y:8+v,fill:f.topLeft.color,fontWeight:600,fontSize:v,opacity:.5},f.topLeft.label),p.createElement("text",{x:r-8,y:8+v,fill:f.topRight.color,fontWeight:600,fontSize:v,opacity:.5,textAnchor:"end"},f.topRight.label),p.createElement("text",{x:8,y:i-8,fill:f.bottomLeft.color,fontWeight:600,fontSize:v,opacity:.5},f.bottomLeft.label),p.createElement("text",{x:r-8,y:i-8,fill:f.bottomRight.color,fontWeight:600,fontSize:v,opacity:.5,textAnchor:"end"},f.bottomRight.label)))}]},[h,g,f,y,m,v]),Ce=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"scatter"},null!=i&&{data:te}),{xAccessor:u,yAccessor:d,colorAccessor:b||void 0,sizeAccessor:k||void 0,sizeRange:w,pointStyle:ve,colorScheme:x,size:[$,z],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:xe,showAxes:r.showAxes,xLabel:Q,yLabel:Z,xFormat:l,yFormat:c,enableHover:G,showGrid:Y}),ge&&{xExtent:ge.xExtent,yExtent:ge.yExtent}),be&&{legend:be,legendPosition:ke}),H&&"none"!==H&&{legendHoverBehavior:de.onLegendHover,legendClickBehavior:de.onLegendClick,legendHighlightedCategory:de.highlightedCategory,legendIsolatedCategories:de.isolatedCategories}),X&&{title:X}),V&&{description:V}),U&&{summary:U}),void 0!==K&&{accessibleTable:K}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===O?()=>null:!0===O||void 0===O?Ae:fo(O)||Ae}),(P||_||L||R)&&{customHoverBehavior:re}),(_||L||P)&&{customClickBehavior:ie}),E&&{pointIdAccessor:E}),M&&M.length>0&&{annotations:M}),{canvasPreRenderers:Me}),le),j),Me.length>0&&{canvasPreRenderers:Me}),{svgPreRenderers:je});return J||ee||(Se?p.createElement(ko,{componentName:"QuadrantChart",message:Se,width:$,height:z}):p.createElement(Uo,{componentName:"QuadrantChart",width:$,height:z},p.createElement(wn,Object.assign({ref:o},Ce))))});Sr.displayName="QuadrantChart";const Or="__ma_unitized",Er="__ma_series";function Mr(e,t){const n=t[1]-t[0];return 0===n?.5:(e-t[0])/n}function jr(e,t){return t[0]+e*(t[1]-t[0])}const Cr=e.forwardRef(function(t,n){var o,r;const i=e.useRef(null),a=e.useRef([]);e.useImperativeHandle(n,()=>({push:e=>{if(!i.current)return;const n=e;for(let e=0;t.series.length>e&&2>e;e++){const o=t.series[e],r=o.extent||a.current[e];if(!r)continue;const s=("function"==typeof o.yAccessor?o.yAccessor:e=>e[o.yAccessor])(n);null!=s&&isFinite(s)&&i.current.push(Object.assign(Object.assign({},n),{[Or]:Mr(s,r),[Er]:o.label||"Series "+(e+1)}))}},pushMany:e=>{if(!i.current)return;const n=[];for(const o of e)for(let e=0;t.series.length>e&&2>e;e++){const r=t.series[e],i=r.extent||a.current[e];if(!i)continue;const s=("function"==typeof r.yAccessor?r.yAccessor:e=>e[r.yAccessor])(o);null!=s&&isFinite(s)&&n.push(Object.assign(Object.assign({},o),{[Or]:Mr(s,i),[Er]:r.label||"Series "+(e+1)}))}i.current.pushMany(n)},remove:e=>{var t,n;return null!==(n=null===(t=i.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=i.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=i.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const s=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,xLabel:t.xLabel,accessibleTable:t.accessibleTable},{width:800,height:400}),{data:l,margin:c,className:u,xFormat:d,xAccessor:h="x",series:g,colorScheme:f,curve:y="monotoneX",lineWidth:m=2,tooltip:v,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:A,onClick:S,hoverHighlight:O,chartId:E,loading:M,emptyContent:P,legendInteraction:_,legendPosition:L}=t,T=s.width,R=s.height,B=s.enableHover,D=s.showGrid,I=null===(o=s.showLegend)||void 0===o||o,N=s.title,H=s.description,W=s.summary,F=s.accessibleTable,$=s.xLabel,z=2===g.length;"undefined"==typeof process||"production"===(null===(r=process.env)||void 0===r?void 0:r.NODE_ENV)||z||console.warn(`[MultiAxisLineChart] Expected exactly 2 series for dual-axis mode, got ${g.length}. Rendering as a standard multi-line chart.`);const G=Jo(M,T,R),Y=G?null:Zo(l,T,R,P),q=l||[],X=Qn(),V=e.useMemo(()=>{let e;if(Array.isArray(f))e=f;else if(X&&X.length>0)e=X;else{const t=j[f];e=Array.isArray(t)?t:C}return g.map((t,n)=>t.color||e[n%e.length])},[g,f,X]),U=e.useMemo(()=>g.map((e,t)=>e.label||"Series "+(t+1)),[g]),{unitizedData:K,extents:Q}=e.useMemo(()=>{if(0===q.length){const e=g.map(e=>e.extent||null).filter(Boolean);return e.length===g.length&&(a.current=e),{unitizedData:[],extents:e.length===g.length?e:[]}}const e=g.map(e=>e.extent||function(e,t){let n=1/0,o=-1/0;const r="function"==typeof t?t:e=>e[t];for(const t of e){const e=r(t);null!=e&&isFinite(e)&&(n>e&&(n=e),e>o&&(o=e))}if(!isFinite(n)||!isFinite(o))return[0,1];if(n===o){const e=0===n?1:.1*Math.abs(n);return[n-e,o+e]}return[n,o]}(q,e.yAccessor));if(a.current=e,!z){const t=[];for(const e of q)for(let n=0;g.length>n;n++){const o=g[n],r=("function"==typeof o.yAccessor?o.yAccessor:e=>e[o.yAccessor])(e);null!=r&&t.push(Object.assign(Object.assign({},e),{[Or]:r,[Er]:U[n]}))}return{unitizedData:t,extents:e}}const t=[];for(const n of q)for(let o=0;2>o;o++){const r=g[o],i=("function"==typeof r.yAccessor?r.yAccessor:e=>e[r.yAccessor])(n);null!=i&&t.push(Object.assign(Object.assign({},n),{[Or]:Mr(i,e[o]),[Er]:U[o]}))}return{unitizedData:t,extents:e}},[q,g,z,U]),Z=e.useMemo(()=>{if(z&&Q.length>=2)return[{orient:"left",label:U[0],tickFormat:g[0].format||(e=>{const t=jr(e,Q[0]);return Number.isInteger(t)?t+"":t.toFixed(1)})},{orient:"right",label:U[1],tickFormat:g[1].format||(e=>{const t=jr(e,Q[1]);return Number.isInteger(t)?t+"":t.toFixed(1)})},{orient:"bottom"}]},[z,Q,g,U]),J=ur({data:e.useMemo(()=>K.length>0?K:U.map(e=>({[Er]:e})),[K,U]),rawData:l,colorBy:Er,colorScheme:V,legendInteraction:_,legendPosition:L,selection:k,linkedHover:w,fallbackFields:[Er],unwrapData:!1,onObservation:A,onClick:S,hoverHighlight:O,chartType:"MultiAxisLineChart",chartId:E,showLegend:I,userMargin:c,marginDefaults:z?Object.assign(Object.assign({},s.marginDefaults),{left:70,right:70}):s.marginDefaults,loading:M,emptyContent:P,width:T,height:R});if(J.earlyReturn)return J.earlyReturn;const ee=e.useMemo(()=>{const e=new Map;return U.forEach((t,n)=>e.set(t,V[n])),t=>({stroke:e.get(t[Er])||V[0],strokeWidth:m,fill:"none"})},[U,V,m]),te=e.useMemo(()=>zn(ee,J.effectiveSelectionHook,J.resolvedSelection),[ee,J.effectiveSelectionHook,J.resolvedSelection]),ne=e.useMemo(()=>{if(!1===v)return()=>null;return fo(v)||(e=>{var t;const n=e.data||e,o=n[Er],r=U.indexOf(o),i=n[Or],a=z&&r>=0&&Q[r]?jr(i,Q[r]):i,s=r>=0&&(null===(t=g[r])||void 0===t?void 0:t.format)?g[r].format:e=>Number.isInteger(e)?e+"":e.toFixed(2),l="function"==typeof h?h(n):n[h];return p.createElement("div",{style:{padding:"6px 10px",fontFamily:"var(--semiotic-font-family, sans-serif)",fontSize:"var(--semiotic-tooltip-font-size, 13px)"}},p.createElement("div",{style:{fontWeight:600,marginBottom:4,color:V[r]||"inherit"}},o),p.createElement("div",null,`${"string"==typeof h?h:"x"}: ${l}`),p.createElement("div",null,`${o}: ${s(a)}`))})},[v,U,V,Q,z,g,h]),oe=Mo({componentName:"MultiAxisLineChart",data:l,accessors:{xAccessor:h}}),re=z?[0,1]:void 0,ie=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"line"},null!=l&&{data:K}),{xAccessor:h,yAccessor:Or,groupAccessor:Er,lineStyle:te,colorScheme:V,size:[T,R],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:J.margin,showAxes:s.showAxes}),Z&&{axes:Z}),{xLabel:$}),z?{}:{yLabel:U[0]}),{xFormat:d}),z&&re&&{yExtent:re}),{enableHover:B}),t.pointIdAccessor&&{pointIdAccessor:t.pointIdAccessor}),{showGrid:D,curve:y}),J.legendBehaviorProps),N&&{title:N}),H&&{description:H}),W&&{summary:W}),void 0!==F&&{accessibleTable:F}),u&&{className:u}),null!=t.animate&&{animate:t.animate}),{tooltipContent:ne}),b&&{annotations:b}),(w||A||S||O)&&{customHoverBehavior:J.customHoverBehavior}),(A||S||w)&&{customClickBehavior:J.customClickBehavior}),J.crosshairProps),x);return G||Y||(oe?p.createElement(ko,{componentName:"MultiAxisLineChart",message:oe,width:T,height:R}):p.createElement(Uo,{componentName:"MultiAxisLineChart",width:T,height:R},p.createElement(wn,Object.assign({ref:i},ie))))});function Pr(e,t){const{columns:n,config:o,resolvePieceStyle:r}=e,i=[],a=Math.min(t.width,t.height)/2-4,s="donut"===o.chartType?o.innerRadius||60:0,l=-Math.PI/2+(o.startAngle||0)*Math.PI/180,c=null!=o.sweepAngle?o.sweepAngle*Math.PI/180:2*Math.PI;for(const e of Object.values(n)){const t=l+e.pctStart*c,n=l+(e.pctStart+e.pct)*c,u=r(e.pieceData[0],e.name);i.push(Object.assign(Object.assign({type:"wedge",cx:0,cy:0,innerRadius:s,outerRadius:a,startAngle:t,endAngle:n},o.cornerRadius&&{cornerRadius:o.cornerRadius}),{style:u,datum:e.pieceData,category:e.name}))}return i}function _r(e){var t,n,o;const r=e.length,i=e[0],s=e[r-1];return{n:r,min:i,q1:null!==(t=a.quantile(e,.25))&&void 0!==t?t:i,median:null!==(n=a.quantile(e,.5))&&void 0!==n?n:(i+s)/2,q3:null!==(o=a.quantile(e,.75))&&void 0!==o?o:s,max:s,mean:e.reduce((e,t)=>e+t,0)/r}}Cr.displayName="MultiAxisLineChart";const Lr={bar:function(e,t){var n;const{scales:o,columns:r,config:i,getR:a,getStack:s,resolvePieceStyle:l}=e,{r:c,projection:u}=o,d=[],h="vertical"===u,g="horizontal"===u,f=i.normalize,p=[];if(s){const e=new Set;for(const t of Object.values(r))for(const n of t.pieceData){const t=s(n);e.has(t)||(e.add(t),p.push(t))}}else p.push("_default");for(const e of Object.values(r)){const t=new Map;for(const n of e.pieceData){const e=s?s(n):"_default";t.has(e)||t.set(e,{total:0,pieces:[]});const o=t.get(e);o.total+=a(n),o.pieces.push(n)}let n=0;if(f)for(const e of t.values())n+=Math.abs(e.total);let o=0,r=0;for(const i of p){const a=t.get(i);if(!a)continue;let u=a.total;f&&n>0&&(u/=n);const p=l(a.pieces[0],s?i:e.name),y=Object.assign(Object.assign({},a.pieces[0]),{__aggregateValue:a.total,__pieceCount:a.pieces.length,category:e.name});if(h){const t=c(0>u?r:o+u),n=0>u?c(r+u)-c(r):c(o)-c(o+u);d.push(q(e.x,t,e.width,Math.abs(n),p,y,i)),0>u?r+=u:o+=u}else if(g){const t=c(0>u?r+u:o),n=0>u?c(r)-c(r+u):c(o+u)-c(o);d.push(q(t,e.x,Math.abs(n),e.width,p,y,i)),0>u?r+=u:o+=u}}}if(i.roundedTop&&i.roundedTop>0){const e=Math.max(0,i.roundedTop),t=new Map;for(const e of d){if("rect"!==e.type)continue;const o=(null===(n=e.datum)||void 0===n?void 0:n.category)||"";t.has(o)||t.set(o,[]),t.get(o).push(e)}const o="vertical"===u;for(const n of t.values()){if(0===n.length)continue;const t=n.filter(e=>{var t,n;return(null!==(n=null===(t=e.datum)||void 0===t?void 0:t.__aggregateValue)&&void 0!==n?n:0)>=0}),r=n.filter(e=>{var t,n;return 0>(null!==(n=null===(t=e.datum)||void 0===t?void 0:t.__aggregateValue)&&void 0!==n?n:0)});if(t.length>0){const n=t.reduce(o?(e,t)=>t.y>e.y?e:t:(e,t)=>e.x+e.w>t.x+t.w?e:t);n.roundedTop=e,n.roundedEdge=o?"top":"right"}if(r.length>0){const t=r.reduce(o?(e,t)=>e.y+e.h>t.y+t.h?e:t:(e,t)=>t.x>e.x?e:t);t.roundedTop=e,t.roundedEdge=o?"bottom":"left"}}}return d},clusterbar:function(e,t){const{scales:n,columns:o,config:r,getR:i,getGroup:a,resolvePieceStyle:s}=e,{r:l,projection:c}=n,u=[],d="vertical"===c,h=[],g=new Set;for(const e of Object.values(o))for(const t of e.pieceData){const e=a?a(t):"_default";g.has(e)||(g.add(e),h.push(e))}const f=h.length||1;for(const e of Object.values(o)){const t=e.width/f,n=.2*t,o=t-n,r=new Map;for(const t of e.pieceData){const e=a?a(t):"_default";r.has(e)||r.set(e,[]),r.get(e).push(t)}for(let a=0;h.length>a;a++){const c=r.get(h[a])||[];for(const r of c){const c=i(r),g=s(r,h[a]);if(d){const i=e.x+a*t+n/2,s=l(0),d=l(c);u.push(q(i,Math.min(s,d),o,Math.abs(s-d),g,r,h[a]))}else{const i=e.x+a*t+n/2,s=l(0),d=l(c);u.push(q(Math.min(s,d),i,Math.abs(d-s),o,g,r,h[a]))}}}}if(r.roundedTop&&r.roundedTop>0){const e=Math.max(0,r.roundedTop);for(const t of u){if("rect"!==t.type)continue;const n=i(t.datum);t.roundedTop=e,t.roundedEdge=d?0>n?"bottom":"top":0>n?"left":"right"}}return u},point:function(e,t){var n,o;const{scales:r,columns:i,getR:a,multiScales:s,resolvePieceStyle:l}=e,{r:c,projection:u}=r,d=[],h="vertical"===u,g="radial"===u,f=s.length>0,p=2*Math.PI,y=-Math.PI/2;for(const e of Object.values(i))for(const t of e.pieceData){const r=null!==(n=t.__rIndex)&&void 0!==n?n:0,i=null!==(o=t.__rValue)&&void 0!==o?o:a(t),u=f&&s[r]||c,m=l(t,e.name),v=m.r||5;let b,x;if(g){const t=y+(e.pctStart+e.pct/2)*p,n=u(i);b=Math.cos(t)*n,x=Math.sin(t)*n}else h?(b=e.middle,x=u(i)):(b=u(i),x=e.middle);d.push({type:"point",x:b,y:x,r:v,style:m,datum:t})}return d},swarm:function(e,t){const{scales:n,columns:o,getR:r,resolvePieceStyle:i}=e,{r:a,projection:s}=n,l=[],c="vertical"===s;for(const e of Object.values(o)){const t=e.width/2;for(let n=0;e.pieceData.length>n;n++){const o=e.pieceData[n],s=r(o),u=i(o,e.name),d=u.r||4,h=(7919*n%100/100-.5)*t*.8,g=c?e.middle+h:a(s),f=c?a(s):e.middle+h;l.push({type:"point",x:g,y:f,r:d,style:u,datum:o})}}return l},pie:Pr,donut:Pr,boxplot:function(e,t){var n,o,r,i,s;const{scales:l,columns:c,config:u,getR:d,resolveSummaryStyle:h}=e,{r:g,projection:f}=l,p=[],y="vertical"===f,m=!1!==u.showOutliers;for(const e of Object.values(c)){const t=e.pieceData.map(e=>d(e)).filter(e=>null!=e&&!isNaN(e)).sort((e,t)=>e-t);if(0===t.length)continue;const l=t[0],c=t[t.length-1],u=null!==(n=a.quantile(t,.25))&&void 0!==n?n:l,f=null!==(o=a.quantile(t,.5))&&void 0!==o?o:(l+c)/2,v=null!==(r=a.quantile(t,.75))&&void 0!==r?r:c,b=v-u,x=u-1.5*b,k=v+1.5*b,w=null!==(i=t.find(e=>e>=x))&&void 0!==i?i:l,A=null!==(s=[...t].reverse().find(e=>k>=e))&&void 0!==s?s:c,S=h(e.pieceData[0],e.name),O=[];if(m)for(const t of e.pieceData){const n=d(t);if(x>n||n>k){const o=y?e.middle:g(n),r=y?g(n):e.middle;O.push({px:o,py:r,value:n,datum:t})}}if(p.push({type:"boxplot",x:y?e.middle:0,y:y?0:e.middle,projection:y?"vertical":"horizontal",columnWidth:.6*e.width,minPos:g(w),q1Pos:g(u),medianPos:g(f),q3Pos:g(v),maxPos:g(A),stats:{n:t.length,min:w,q1:u,median:f,q3:v,max:A,mean:t.reduce((e,t)=>e+t,0)/t.length},style:S,datum:e.pieceData,category:e.name,outliers:O}),m)for(const e of O)p.push({type:"point",x:e.px,y:e.py,r:3,style:{fill:S.fill||"#999",opacity:.6},datum:e.datum})}return p},violin:function(e,t){var n,o,r;const{scales:i,columns:s,config:l,getR:c,resolveSummaryStyle:u}=e,{r:d,projection:h}=i,g=[],f="vertical"===h,p=l.bins||20,y=!1!==l.showIQR;for(const e of Object.values(s)){const t=e.pieceData.map(e=>c(e)).filter(e=>null!=e&&!isNaN(e)).sort((e,t)=>e-t);if(2>t.length)continue;const i=t[0],s=t[t.length-1],l=(s-i)/p||1,h=Array(p).fill(0);for(const e of t)h[Math.min(Math.floor((e-i)/l),p-1)]++;const m=Math.max(...h,1),v=e.width/2*.9;let b="";if(f){b=`M ${e.middle} ${d(i)}`;for(let t=0;p>t;t++){const n=d(i+(t+.5)*l);b+=` L ${e.middle+h[t]/m*v} ${n}`}b+=` L ${e.middle} ${d(s)}`;for(let t=p-1;t>=0;t--){const n=d(i+(t+.5)*l);b+=` L ${e.middle-h[t]/m*v} ${n}`}b+=" Z"}else{b=`M ${d(i)} ${e.middle}`;for(let t=0;p>t;t++)b+=` L ${d(i+(t+.5)*l)} ${e.middle-h[t]/m*v}`;b+=` L ${d(s)} ${e.middle}`;for(let t=p-1;t>=0;t--)b+=` L ${d(i+(t+.5)*l)} ${e.middle+h[t]/m*v}`;b+=" Z"}const x=u(e.pieceData[0],e.name);let k;if(y&&t.length>=4){const l=null!==(n=a.quantile(t,.25))&&void 0!==n?n:i,c=null!==(o=a.quantile(t,.5))&&void 0!==o?o:(i+s)/2,u=null!==(r=a.quantile(t,.75))&&void 0!==r?r:s;k={q1Pos:d(l),medianPos:d(c),q3Pos:d(u),centerPos:e.middle,isVertical:f}}const w=f?{x:e.x,y:Math.min(d(s),d(i)),width:e.width,height:Math.abs(d(s)-d(i))}:{x:Math.min(d(i),d(s)),y:e.x,width:Math.abs(d(s)-d(i)),height:e.width};g.push({type:"violin",pathString:b,translateX:0,translateY:0,bounds:w,iqrLine:k,stats:_r(t),style:x,datum:e.pieceData,category:e.name})}return g},histogram:function(e,t){var n;const{scales:o,columns:r,config:i,getR:a,resolveSummaryStyle:s}=e,{r:l}=o,c=[],u=i.bins||25,d=i.normalize,h=null===(n=l.domain)||void 0===n?void 0:n.call(l),g=h?+h[0]:void 0,f=h?+h[1]:void 0;for(const e of Object.values(r)){const t=e.pieceData.map(e=>a(e)).filter(e=>null!=e&&!isNaN(e));if(0===t.length)continue;const n=null!=g&&isFinite(g)?g:Math.min(...t),o=null!=f&&isFinite(f)?f:Math.max(...t),r=(o-n)/u||1,i=Array(u).fill(0);for(const e of t)n>e||e>o||i[Math.min(Math.floor((e-n)/r),u-1)]++;const h=t.length,p=Math.max(...i,1),y=s(e.pieceData[0],e.name);for(let t=0;u>t;t++){if(0===i[t])continue;const o=(d?i[t]/h:i[t]/p)*e.width*.9,a=l(n+t*r),s=l(n+(t+1)*r);c.push(q(Math.min(a,s),e.x+e.width-o,Math.abs(s-a),o,y,{bin:t,count:i[t],range:[n+t*r,n+(t+1)*r],category:e.name},e.name))}}return c},ridgeline:function(e,t){var n;const{scales:o,columns:r,config:i,getR:a,resolveSummaryStyle:s}=e,{r:l,projection:c}=o,u=[],d=i.bins||20,h="horizontal"===c,g=i.amplitude||1.5;for(const e of Object.values(r)){const t=e.pieceData.map(e=>a(e)).filter(e=>null!=e&&!isNaN(e)).sort((e,t)=>e-t);if(2>t.length)continue;const o=t[0],r=t[t.length-1],i=(r-o)/d||1,c=Array(d).fill(0);for(const e of t)o>e||e>r||c[Math.min(Math.floor((e-o)/i),d-1)]++;const f=Math.max(...c,1),p=s(e.pieceData[0],e.name),y=e.width*g;let m="";if(h){const t=e.x+e.width;m=`M ${l(o)} ${t}`;for(let e=0;d>e;e++)m+=` L ${l(o+(e+.5)*i)} ${t-c[e]/f*y}`;m+=` L ${l(r)} ${t} Z`}else{const t=e.x;m=`M ${t} ${l(o)}`;for(let e=0;d>e;e++){const n=l(o+(e+.5)*i);m+=` L ${t+c[e]/f*y} ${n}`}m+=` L ${t} ${l(r)} Z`}const v=h?{x:Math.min(l(o),l(r)),y:e.x,width:Math.abs(l(r)-l(o)),height:e.width}:{x:e.x,y:Math.min(l(r),l(o)),width:e.width,height:Math.abs(l(r)-l(o))};u.push({type:"violin",pathString:m,translateX:0,translateY:0,bounds:v,stats:_r(t),style:Object.assign(Object.assign({},p),{fillOpacity:null!==(n=p.fillOpacity)&&void 0!==n?n:.5}),datum:e.pieceData,category:e.name})}return u},timeline:function(e,t){const{scales:n,columns:o,getRawRange:r,resolvePieceStyle:i}=e,{r:a,projection:s}=n,l=[],c="horizontal"===s;for(const e of Object.values(o))for(const t of e.pieceData){const n=r(t);if(!n)continue;const[o,s]=n,u=i(t,e.name);if(c){const n=a(Math.min(o,s)),r=a(Math.max(o,s));l.push(q(n,e.x,r-n,e.width,u,t,e.name))}else{const n=a(Math.max(o,s)),r=a(Math.min(o,s));l.push(q(e.x,n,e.width,r-n,u,t,e.name))}}return l},funnel:function(e,t){var n,r,i,a,s,l,c;const{columns:u,getR:d,getStack:h,resolvePieceStyle:g}=e,f=[],p=t.width/2,y=!1!==e.config.showLabels,m=e.scales.o.domain().map(e=>u[e]).filter(Boolean);if(0===m.length)return f;const v=[],b=new Set;for(const e of m)for(const t of e.pieceData){const e=h?h(t):"_default";b.has(e)||(b.add(e),v.push(e))}const x=v.length>1&&"_default"!==v[0],k=[];let w=0;for(const e of m){const t=new Map;let n=0;for(const o of e.pieceData){const e=h?h(o):"_default";t.has(e)||t.set(e,{total:0,pieces:[]});const r=t.get(e),i=d(o);r.total+=i,r.pieces.push(o),n+=i}k.push({col:e,groups:t,stepTotal:n}),x||n>w&&(w=n)}if(x)for(const e of k){let t=0,n=0;for(let o=0;v.length>o;o++){const r=e.groups.get(v[o]);r&&(o%2==0?t+=r.total:n+=r.total)}const o=Math.max(t,n);o>w&&(w=o)}if(0===w)return f;const A=new Map;for(const e of v){const t=k[0].groups.get(e);A.set(e,null!==(n=null==t?void 0:t.total)&&void 0!==n?n:0)}const S=k[0].stepTotal,O=x?.95*p:.9*t.width,E=o.scaleLinear().domain([0,w]).range([0,O]),M=null!==(r=e.config.connectorOpacity)&&void 0!==r?r:.3;let j=new Map;for(let e=0;k.length>e;e++){const t=k[e],n=t.col,o=0===e,r=n.width,u=.55*r,d=n.x+(r-u)/2,h=new Map;if(x){let e=0;for(const n of v){const o=t.groups.get(n);o&&(e+=E(o.total))}let r=p,i=p;for(let a=0;v.length>a;a++){const l=v[a],c=t.groups.get(l);if(!c)continue;const m=E(c.total),b=a%2==0,x=b?r:i-m;b?r+=m:i-=m;const k=g(c.pieces[0],l),w=null!==(s=A.get(l))&&void 0!==s?s:c.total,S=w>0?c.total/w*100:0,O=Object.assign(Object.assign({},c.pieces[0]),{__funnelValue:c.total,__funnelPercent:S,__funnelStep:n.name,__funnelIsFirstStep:o,__aggregateValue:c.total,__pieceCount:c.pieces.length,category:l});y&&(0===a&&(O.__funnelStepLabel=n.name,O.__funnelStepLabelX=p,O.__funnelStepLabelY=d,O.__funnelRowWidth=e),O.__funnelValueLabelX=x+m/2,O.__funnelValueLabelY=d,O.__funnelBarW=m),f.push(q(x,d,m,u,k,O,l)),h.set(l,{x:x,y:d,w:m,h:u})}}else{const e=t.stepTotal,r=E(e),s=p-r/2,l=v[0],c="_default"!==l,m=null!==(a=null===(i=t.groups.get(l))||void 0===i?void 0:i.pieces[0])&&void 0!==a?a:n.pieceData[0],b=c?l:n.name,x=g(m,b),k=S>0?e/S*100:0,w=Object.assign(Object.assign({},m),{__funnelValue:e,__funnelPercent:k,__funnelStep:n.name,__funnelIsFirstStep:o,category:c?l:n.name});y&&(w.__funnelStepLabel=n.name,w.__funnelStepLabelX=p,w.__funnelStepLabelY=d,w.__funnelRowWidth=r,w.__funnelValueLabelX=p,w.__funnelValueLabelY=d,w.__funnelBarW=r),f.push(q(s,d,r,u,x,w,b)),h.set(l,{x:s,y:d,w:r,h:u})}if(e>0&&j.size>0){const e=x?v:[v[0]];for(const o of e){const e=j.get(o),r=h.get(o);if(!e||!r)continue;const i=(()=>{const e=t.groups.get(o);return g(e?e.pieces[0]:n.pieceData[0],"_default"===o?n.name:o)})(),a={type:"trapezoid",points:[[e.x,e.y+e.h],[e.x+e.w,e.y+e.h],[r.x+r.w,r.y],[r.x,r.y]],style:{fill:i.fill||"#999",opacity:M},datum:null!==(c=null===(l=t.groups.get(o))||void 0===l?void 0:l.pieces[0])&&void 0!==c?c:n.pieceData[0],category:"_default"===o?n.name:o};f.push(a)}}j=h}return f},"bar-funnel":function(e,t){var n,o,r,i;const{columns:a,getR:s,getStack:l,resolvePieceStyle:c,scales:u}=e,d=[],h=u.o.domain().map(e=>a[e]).filter(Boolean);if(0===h.length)return d;const g=[],f=new Set;for(const e of h)for(const t of e.pieceData){const e=l?l(t):"_default";f.has(e)||(f.add(e),g.push(e))}const p=g.length>1&&"_default"!==g[0],y=[];for(const e of h){const t=new Map;let n=0;for(const o of e.pieceData){const e=l?l(o):"_default";t.has(e)||t.set(e,{total:0,pieces:[]});const r=t.get(e),i=s(o);r.total+=i,r.pieces.push(o),n+=i}y.push({col:e,groups:t,stepTotal:n})}const m=new Map;for(const e of g){const t=null===(n=y[0])||void 0===n?void 0:n.groups.get(e);m.set(e,null!==(o=null==t?void 0:t.total)&&void 0!==o?o:0)}const v=u.r,b=p?g.length:1,x=p?.15:0;for(let e=0;y.length>e;e++){const t=y[e],n=t.col,o=0===e,a=e>0?y[e-1]:null,s=n.width/b,l=s*x,u=s-l;for(let e=0;g.length>e;e++){const h=g[e],f=t.groups.get(h);if(!f)continue;const y=f.total,b=null!==(r=m.get(h))&&void 0!==r?r:y,x=b>0?y/b*100:0,k=null==a?void 0:a.groups.get(h),w=null!==(i=null==k?void 0:k.total)&&void 0!==i?i:y,A=o?0:Math.max(0,w-y),S=n.x+e*s+l/2,O=v(y),E=v(0)-O,M=c(f.pieces[0],p?h:n.name),j=Object.assign(Object.assign({},f.pieces[0]),{__barFunnelValue:y,__barFunnelPercent:x,__barFunnelIsFirstStep:o,__barFunnelIsDropoff:!1,__barFunnelStep:n.name,__barFunnelDropoffValue:A,__barFunnelCategory:"_default"===h?void 0:h,category:p?h:n.name,__barFunnelLabelX:S+u/2,__barFunnelLabelY:v(y+A)});if(d.push(q(S,O,u,E,M,j,p?h:n.name)),A>0){const e=v(y+A),t=O-e,o=Object.assign({},M),r=Object.assign(Object.assign({},f.pieces[0]),{__barFunnelValue:A,__barFunnelPercent:b>0?A/b*100:0,__barFunnelIsFirstStep:!1,__barFunnelIsDropoff:!0,__barFunnelStep:n.name,__barFunnelCategory:"_default"===h?void 0:h,category:p?h:n.name});d.push(q(S,e,u,t,o,r,p?h:n.name))}}}return d},swimlane:function(e,t){const{scales:n,columns:o,getR:r,getStack:i,resolvePieceStyle:a}=e,{r:s,projection:l}=n,c=[],u="horizontal"===l;for(const e of Object.values(o)){let t=0;for(const n of e.pieceData){const o=Math.abs(r(n));if(0===o)continue;const l=i?i(n):e.name,d=a(n,l);if(u){const r=s(t),i=s(t+o);c.push(q(r,e.x,i-r,e.width,d,n,l))}else{const r=s(t+o),i=s(t);c.push(q(e.x,r,e.width,i-r,d,n,l))}t+=o}}return c}};class Tr{constructor(e){this.rExtent=new w,this.rExtents=[],this.rAccessors=[],this.categories=new Set,this._hasStreamingData=!1,this._colorSchemeMap=null,this._colorSchemeIndex=0,this.timestampBuffer=null,this.activeTransition=null,this.prevPositionMap=new Map,this.exitNodes=[],this.lastIngestTime=0,this.scales=null,this.multiScales=[],this.scene=[],this.columns={},this.version=0,this._dataVersion=0,this._pointQuadtree=null,this._maxPointRadius=0,this._datumIndexCache=null,this._categoryIndexCache=null,this._hasRenderedOnce=!1,this.config=e,this.buffer=new k(e.windowSize),this.getO=M(e.categoryAccessor||e.oAccessor,"category");const t=e.valueAccessor||e.rAccessor;Array.isArray(t)?(this.rAccessors=t.map(e=>O(e,"value")),this.getR=this.rAccessors[0],this.rExtents=t.map(()=>new w)):(this.getR=O(t,"value"),this.rAccessors=[this.getR],this.rExtents=[this.rExtent]),this.getStack=M(e.stackBy),this.getGroup=M(e.groupBy),this.getColor=M(e.colorAccessor),this.getConnector=M(e.connectorAccessor),this.getDataId=M(e.dataIdAccessor),e.pulse&&(this.timestampBuffer=new k(e.windowSize))}ingest(e){const t="undefined"!=typeof performance?performance.now():Date.now();if(this.lastIngestTime=t,this._dataVersion++,e.bounded){this.buffer.clear(),this.rExtent.clear();for(const e of this.rExtents)e.clear();e.preserveCategoryOrder?this._hasStreamingData=!0:this.categories.clear(),this.timestampBuffer&&this.timestampBuffer.clear();const n=e.totalSize||e.inserts.length;n>this.buffer.capacity&&(this.buffer.resize(n),this.timestampBuffer&&n>this.timestampBuffer.capacity&&this.timestampBuffer.resize(n));for(const n of e.inserts)this.buffer.push(n),this.timestampBuffer&&this.timestampBuffer.push(t),this.categories.add(this.getO(n)),this.pushValueExtent(n)}else{this._hasStreamingData=!0;for(const n of e.inserts){const e=this.buffer.push(n);this.timestampBuffer&&this.timestampBuffer.push(t),this.categories.add(this.getO(n)),this.pushValueExtent(n),null!=e&&this.evictValueExtent(e)}}return!0}pushValueExtent(e){if("timeline"===this.config.chartType){const t=this.getRawRange(e);t&&(this.rExtent.push(t[0]),this.rExtent.push(t[1]))}else if(this.rAccessors.length>1){for(let t=0;this.rAccessors.length>t;t++)this.rExtents[t].push(this.rAccessors[t](e));this.rExtent.push(this.getR(e))}else this.rExtent.push(this.getR(e))}evictValueExtent(e){if("timeline"===this.config.chartType){const t=this.getRawRange(e);t&&(this.rExtent.evict(t[0]),this.rExtent.evict(t[1]))}else if(this.rAccessors.length>1){for(let t=0;this.rAccessors.length>t;t++)this.rExtents[t].evict(this.rAccessors[t](e));this.rExtent.evict(this.getR(e))}else this.rExtent.evict(this.getR(e))}getRawRange(e){const t=this.config.valueAccessor||this.config.rAccessor;if(!t)return null;const n="function"==typeof t?t(e):e[t];return Array.isArray(n)&&n.length>=2?[+n[0],+n[1]]:null}computeScene(e){const{config:t,buffer:n}=this;if(0===n.size)return this.scales=null,this.scene=[],this.columns={},void this.version++;this.rExtent.dirty&&this.rExtent.recalculate(n,this.getR);const r=n.toArray(),i=t.projection||"vertical",a=t.oExtent||this.resolveCategories(r),s=this.computeValueDomain(r,a),l="horizontal"===i,c="radial"===i,u=Math.min(.9,Math.max(0,null!=t.barPadding?t.barPadding/("vertical"===i?e.width:e.height):.1));let d,h;if(c){d=o.scaleBand().domain(a).range([0,1]).padding(0);const n=Math.min(e.width,e.height)/2,r=t.innerRadius||0;h=o.scaleLinear().domain(s).range([r,n])}else l?(d=o.scaleBand().domain(a).range([0,e.height]).padding(u),h=o.scaleLinear().domain(s).range([0,e.width])):(d=o.scaleBand().domain(a).range([0,e.width]).padding(u),h=o.scaleLinear().domain(s).range([e.height,0]));this.scales={o:d,r:h,projection:i},this.multiScales=this.rAccessors.length>1&&t.multiAxis?this.rAccessors.map((r,i)=>{var a;const s=this.rExtents[i];s.dirty&&s.recalculate(n,r);let[c,u]=s.extent;c===1/0&&(c=0,u=1);const d=null!==(a=t.extentPadding)&&void 0!==a?a:.05,h=u-c,g=h>0?h*d:1;return c-=g,u+=g,c>0&&(c=0),l?o.scaleLinear().domain([c,u]).range([0,e.width]):o.scaleLinear().domain([c,u]).range([e.height,0])}):[];let g=r;this.rAccessors.length>1&&(g=r.flatMap(e=>this.rAccessors.map((t,n)=>Object.assign(Object.assign({},e),{__rIndex:n,__rValue:t(e),__rName:this.resolveRAccessorName(n)})))),this.columns=this.buildColumns(g,a,d,i,e),this.config.transition&&this.scene.length>0&&this.snapshotPositions(),this.scene=this.buildSceneNodes(g,e),this.rebuildPointQuadtree(),this.config.decay&&this.applyDecay(this.scene,r),this.config.pulse&&this.applyPulse(this.scene,r),this.config.transition&&!this._hasRenderedOnce&&this.scene.length>0&&(this.config.introAnimation&&this.synthesizeIntroPositions(),this._hasRenderedOnce=!0),this.config.transition&&this.prevPositionMap.size>0&&this.startTransition(),this.version++}resolveRAccessorName(e){const t=this.config.valueAccessor||this.config.rAccessor,n=Array.isArray(t)?t[e]:t;return"string"==typeof n?n:"value"+e}resolveCategories(e){const t=this.config.oSort,n="streaming"===this.config.runtimeMode||this._hasStreamingData,o="auto"===t?void 0:t;let r=null;if(n){r=new Set;for(const t of e)r.add(this.getO(t))}const i=r?Array.from(this.categories).filter(e=>r.has(e)):Array.from(this.categories);if(n&&void 0===o){const e=Math.max(50,3*r.size);if(this.categories.size>e){let t=this.categories.size-e;for(const e of this.categories){if(0>=t)break;r.has(e)||(this.categories.delete(e),t--)}}return i}if(!1===o)return i;if("function"==typeof o)return i.sort(o);const a=new Map;for(const t of e){const e=this.getO(t);a.set(e,(a.get(e)||0)+Math.abs(this.getR(t)))}return i.sort("asc"===o?(e,t)=>(a.get(e)||0)-(a.get(t)||0):(e,t)=>(a.get(t)||0)-(a.get(e)||0))}computeValueDomain(e,t){var n,o,r,i,a;const s=this.config.chartType,l=null!==(n=this.config.extentPadding)&&void 0!==n?n:.05;if("radial"===this.config.projection&&("pie"===s||"donut"===s))return[0,1];let c=0,u=0;if("bar"===s&&this.getStack&&this.config.normalize)c=0,u=1;else if("bar"===s&&this.getStack){const t=new Map,n=new Map;for(const o of e){const e=this.getO(o),r=this.getR(o);0>r?n.set(e,(n.get(e)||0)+r):t.set(e,(t.get(e)||0)+r)}for(const e of t.values())e>u&&(u=e);for(const e of n.values())c>e&&(c=e)}else if("bar"===s){const t=new Map;for(const n of e){const e=this.getO(n),o=this.getR(n);t.set(e,(t.get(e)||0)+o)}for(const e of t.values())e>u&&(u=e),c>e&&(c=e)}else if("swimlane"===s){const t=new Map;for(const n of e){const e=this.getO(n),o=Math.abs(this.getR(n));t.set(e,(t.get(e)||0)+o)}for(const e of t.values())e>u&&(u=e)}else if("clusterbar"===s||"bar-funnel"===s)for(const t of e){const e=this.getR(t);e>u&&(u=e),c>e&&(c=e)}else{const e=this.rExtent.extent[0],t=this.rExtent.extent[1];e!==1/0&&(c=e),t!==-1/0&&(u=t)}this.config.rExtent&&(null!=this.config.rExtent[0]&&(c=this.config.rExtent[0]),null!=this.config.rExtent[1]&&(u=this.config.rExtent[1]));const d="bar"===s||"clusterbar"===s||"bar-funnel"===s||"swimlane"===s;if(d&&null==(null===(o=this.config.rExtent)||void 0===o?void 0:o[0])&&null==(null===(r=this.config.rExtent)||void 0===r?void 0:r[1])&&(c>0&&(c=0),0>u&&(u=0)),"bar-funnel"!==s){const e=u-c,t=e>0?e*l:1;null!=(null===(i=this.config.rExtent)||void 0===i?void 0:i[0])||d&&!this.config.baselinePadding&&0===c||(c-=t),null!=(null===(a=this.config.rExtent)||void 0===a?void 0:a[1])||d&&!this.config.baselinePadding&&0===u||"swimlane"===s||(u+=t)}return[c,u]}buildColumns(e,t,n,o,r){var i;const a={},s=new Map;for(const t of e){const e=this.getO(t);s.has(e)||s.set(e,[]),s.get(e).push(t)}let l=0;if("radial"===o)for(const t of e)l+=Math.abs(this.getR(t));const c=this.config.dynamicColumnWidth;let u=null;if(c&&"radial"!==o){u=new Map;let e=0;for(const n of t){const t=s.get(n)||[];let o;o="string"==typeof c?t.reduce((e,t)=>e+(Number(t[c])||0),0):c(t),u.set(n,o),e+=o}const i=("horizontal"===o?r.height:r.width)-n.padding()*n.step()*t.length;if(e>0)for(const[t,n]of u)u.set(t,n/e*i)}let d=0,h=0;for(const e of t){const t=s.get(e)||[],o=t.reduce((e,t)=>e+Math.abs(this.getR(t)),0),r=l>0?o/l:0;let c,g;u?(c=h,g=u.get(e)||n.bandwidth(),h+=g+n.padding()*n.step()):(c=null!==(i=n(e))&&void 0!==i?i:0,g=n.bandwidth()),a[e]={name:e,x:c,y:0,width:g,middle:c+g/2,padding:n.padding()*n.step(),pieceData:t,pct:r,pctStart:d},d+=r}return a}getSceneContext(){return{scales:this.scales,columns:this.columns,config:this.config,getR:this.getR,getStack:this.getStack,getGroup:this.getGroup,getColor:this.getColor,getConnector:this.getConnector,getO:this.getO,multiScales:this.multiScales,rAccessors:this.rAccessors,resolvePieceStyle:(e,t)=>this.resolvePieceStyle(e,t),resolveSummaryStyle:(e,t)=>this.resolveSummaryStyle(e,t),getRawRange:e=>this.getRawRange(e)}}buildSceneNodes(e,t){if(!this.scales)return[];const n=this.getSceneContext(),o=Lr[this.config.chartType];let r=o?o(n,t):[];if(this.getConnector&&this.scales){const e=function(e,t){const{scales:n,config:o,getConnector:r,getO:i}=e;if(!r||!n)return[];const a=[],{projection:s}=n,l=new Map;for(const e of t){if("point"!==e.type&&"rect"!==e.type)continue;const t=e.datum;if(!t)continue;const n=r(t);if(!n)continue;let o,a;"point"===e.type?(o=e.x,a=e.y):(o=e.x+e.w/2,a=e.y+("vertical"===s?0:e.h/2)),l.has(n)||l.set(n,[]),l.get(n).push({x:o,y:a,datum:t,category:i(t)})}const c=n.o.domain(),u=o.connectorStyle;for(const[e,t]of l)if(t.length>=2){t.sort((e,t)=>c.indexOf(e.category)-c.indexOf(t.category));for(let n=0;t.length-1>n;n++){const o=t[n],r=t[n+1],i="function"==typeof u?u(o.datum):u||{stroke:"#999",strokeWidth:1,opacity:.5};a.push({type:"connector",x1:o.x,y1:o.y,x2:r.x,y2:r.y,style:i,datum:o.datum,group:e})}}return a}(n,r);r=[...e,...r]}return r}resolvePieceStyle(e,t){if("function"==typeof this.config.pieceStyle){const n=this.config.pieceStyle(e,t);return n&&!n.fill&&t?Object.assign(Object.assign({},n),{fill:this.getColorFromScheme(t)}):n}return this.config.pieceStyle&&"object"==typeof this.config.pieceStyle?this.config.pieceStyle:this.config.barColors&&t?{fill:this.config.barColors[t]||"#007bff"}:t?{fill:this.getColorFromScheme(t)}:{fill:"#007bff"}}getColorFromScheme(e){this._colorSchemeMap||(this._colorSchemeMap=new Map);const t=this._colorSchemeMap.get(e);if(t)return t;const n=Array.isArray(this.config.colorScheme)?this.config.colorScheme:this.config.themeCategorical||P,o=n[this._colorSchemeIndex%n.length];return this._colorSchemeIndex++,this._colorSchemeMap.set(e,o),o}resolveSummaryStyle(e,t){return"function"==typeof this.config.summaryStyle?this.config.summaryStyle(e,t):this.config.summaryStyle&&"object"==typeof this.config.summaryStyle?this.config.summaryStyle:{fill:"#007bff",fillOpacity:.6,stroke:"#007bff",strokeWidth:1}}computeDecayOpacity(e,t){const n=this.config.decay;return n&&t>1?D(n,e,t):1}getDatumIndexMap(e){if(this._datumIndexCache&&this._datumIndexCache.version===this._dataVersion)return this._datumIndexCache.map;const t=new Map;for(let n=0;e.length>n;n++)t.set(e[n],n);return this._datumIndexCache={version:this._dataVersion,map:t},t}getCategoryIndexMap(e){if(this._categoryIndexCache&&this._categoryIndexCache.version===this._dataVersion)return this._categoryIndexCache.map;const t=this.config.categoryAccessor||this.config.oAccessor,n="function"==typeof t,o=n?null:t||"category",r=new Map;for(let i=0;e.length>i;i++){const a=e[i],s=n?t(a):a[o];let l=r.get(s);l||(l=[],r.set(s,l)),l.push(i)}return this._categoryIndexCache={version:this._dataVersion,map:r},r}rebuildPointQuadtree(){let e=0,t=0;for(const n of this.scene)"point"===n.type&&(e++,n.r>t&&(t=n.r));if(this._maxPointRadius=t,Tr.QUADTREE_THRESHOLD>=e)return void(this._pointQuadtree=null);const n=Array(e);let o=0;for(const e of this.scene)"point"===e.type&&(n[o++]=e);this._pointQuadtree=r.quadtree().x(e=>e.x).y(e=>e.y).addAll(n)}get pointQuadtree(){return this._pointQuadtree}get maxPointRadius(){return this._maxPointRadius}applyDecay(e,t){var n,o;if(!this.config.decay)return;const r=t.length;if(1>=r)return;const i=this.getDatumIndexMap(t);for(const t of e){if("connector"===t.type||"violin"===t.type||"boxplot"===t.type||"wedge"===t.type)continue;const e=i.get(t.datum);if(null==e)continue;const a=this.computeDecayOpacity(e,r),s=null!==(o=null===(n=t.style)||void 0===n?void 0:n.opacity)&&void 0!==o?o:1;t.style=Object.assign(Object.assign({},t.style),{opacity:s*a})}}applyPulse(e,t){var n,o,r;if(!this.config.pulse||!this.timestampBuffer)return;const i="undefined"!=typeof performance?performance.now():Date.now(),a=null!==(n=this.config.pulse.duration)&&void 0!==n?n:500,s=null!==(o=this.config.pulse.color)&&void 0!==o?o:"rgba(255,255,255,0.6)",l=null!==(r=this.config.pulse.glowRadius)&&void 0!==r?r:4,c=this.getDatumIndexMap(t);let u=null;for(const n of e){if("connector"===n.type||"violin"===n.type||"boxplot"===n.type)continue;if("wedge"===n.type){const e=n.category;if(!e)continue;u||(u=this.getCategoryIndexMap(t));const o=u.get(e);if(!o)continue;let r=0;for(let e=0;o.length>e;e++){const t=this.timestampBuffer.get(o[e]);if(null==t)continue;const n=i-t;if(a>n){const e=1-n/a;e>r&&(r=e)}}r>0&&(n._pulseIntensity=r,n._pulseColor=s);continue}const e=c.get(n.datum);if(null==e)continue;const o=this.timestampBuffer.get(e);if(null==o)continue;const r=i-o;a>r&&(n._pulseIntensity=1-r/a,n._pulseColor=s,n._pulseGlowRadius=l)}}get hasActivePulses(){var e;if(!this.config.pulse||!this.timestampBuffer||0===this.timestampBuffer.size)return!1;const t="undefined"!=typeof performance?performance.now():Date.now(),n=null!==(e=this.config.pulse.duration)&&void 0!==e?e:500,o=this.timestampBuffer.peek();return null!=o&&n>t-o}synthesizeIntroPositions(){var e,t,n,o,r;this.prevPositionMap.clear();const i=new Map,a=null!==(t=null===(e=this.scales)||void 0===e?void 0:e.r(0))&&void 0!==t?t:0,s="horizontal"!==(null===(n=this.scales)||void 0===n?void 0:n.projection);let l;for(let e=0;this.scene.length>e;e++){const t=this.scene[e],n=this.getNodeKey(t,i);n&&("rect"===t.type?this.prevPositionMap.set(n,s?{x:t.x,y:a,w:t.w,h:0,opacity:null!==(o=t.style.opacity)&&void 0!==o?o:1}:{x:a,y:t.y,w:0,h:t.h,opacity:null!==(r=t.style.opacity)&&void 0!==r?r:1}):"point"===t.type?this.prevPositionMap.set(n,{x:t.x,y:t.y,r:0,opacity:0}):"wedge"===t.type&&(void 0===l&&(l=t.startAngle),this.prevPositionMap.set(n,{x:t.cx,y:t.cy,startAngle:l,endAngle:l,innerRadius:t.innerRadius,outerRadius:t.outerRadius,opacity:0})))}}getNodeKey(e,t){var n,o,r;if("point"===e.type){const n=`p:${e.datum?this.getO(e.datum):""}:${e.datum?this.getR(e.datum):0}`,o=t.get(n)||0;return t.set(n,o+1),`${n}:${o}`}return"rect"===e.type?`r:${e.group||""}:${null!==(o=null===(n=e.datum)||void 0===n?void 0:n.category)&&void 0!==o?o:""}`:"wedge"===e.type?"w:"+(null!==(r=e.category)&&void 0!==r?r:""):null}snapshotPositions(){var e;this.prevPositionMap.clear();const t=new Map;for(let n=0;this.scene.length>n;n++){const o=this.scene[n],r=this.getNodeKey(o,t);r&&("point"===o.type?this.prevPositionMap.set(r,{x:o.x,y:o.y,r:o.r,opacity:o.style.opacity}):"rect"===o.type?this.prevPositionMap.set(r,{x:o.x,y:o.y,w:o.w,h:o.h,opacity:o.style.opacity}):"wedge"===o.type&&this.prevPositionMap.set(r,{x:o.cx,y:o.cy,startAngle:o.startAngle,endAngle:o.endAngle,innerRadius:o.innerRadius,outerRadius:o.outerRadius,opacity:null!==(e=o.style.opacity)&&void 0!==e?e:1}))}}startTransition(){var e,t,n,o,r,i,a,s,l,c,u,d,h,g,f,p,y,m,v,b,x;if(!this.config.transition||0===this.prevPositionMap.size)return;const k=null!==(e=this.config.transition.duration)&&void 0!==e?e:300;if(this.exitNodes.length>0){const e=new Set(this.exitNodes);this.scene=this.scene.filter(t=>!e.has(t)),this.exitNodes=[]}let w=!1;const A=new Set,S=new Map;for(let e=0;this.scene.length>e;e++){const c=this.scene[e],u=this.getNodeKey(c,S);if(!u)continue;c._transitionKey=u;const d=this.prevPositionMap.get(u);if("point"===c.type)d?(A.add(u),c._targetOpacity=null!==(t=c.style.opacity)&&void 0!==t?t:1,(d.x!==c.x||d.y!==c.y||void 0!==d.r&&d.r!==c.r)&&(c._targetX=c.x,c._targetY=c.y,c._targetR=c.r,c.x=d.x,c.y=d.y,void 0!==d.r&&(c.r=d.r),w=!0)):(c._targetOpacity=null!==(n=c.style.opacity)&&void 0!==n?n:1,c._targetR=c.r,c.r=0,c.style=Object.assign(Object.assign({},c.style),{opacity:0}),w=!0);else if("rect"===c.type)d?(A.add(u),c._targetOpacity=null!==(o=c.style.opacity)&&void 0!==o?o:1,d.x===c.x&&d.y===c.y&&d.w===c.w&&d.h===c.h||(c._targetX=c.x,c._targetY=c.y,c._targetW=c.w,c._targetH=c.h,c.x=d.x,c.y=d.y,c.w=null!==(r=d.w)&&void 0!==r?r:c.w,c.h=null!==(i=d.h)&&void 0!==i?i:c.h,w=!0)):(c._targetOpacity=null!==(a=c.style.opacity)&&void 0!==a?a:1,c.style=Object.assign(Object.assign({},c.style),{opacity:0}),w=!0);else if("wedge"===c.type)if(d)A.add(u),c._targetOpacity=null!==(s=c.style.opacity)&&void 0!==s?s:1,d.startAngle===c.startAngle&&d.endAngle===c.endAngle||(c._targetStartAngle=c.startAngle,c._targetEndAngle=c.endAngle,c.startAngle=d.startAngle,c.endAngle=d.endAngle,w=!0);else{c._targetOpacity=null!==(l=c.style.opacity)&&void 0!==l?l:1,c._targetStartAngle=c.startAngle,c._targetEndAngle=c.endAngle;const e=c.startAngle;c.startAngle=e,c.endAngle=e,c.style=Object.assign(Object.assign({},c.style),{opacity:0}),this.prevPositionMap.set(u,{x:c.cx,y:c.cy,startAngle:e,endAngle:e,innerRadius:c.innerRadius,outerRadius:c.outerRadius,opacity:0}),w=!0}}this.exitNodes=[];for(const[e,t]of this.prevPositionMap)if(!A.has(e)){if(e.startsWith("p:"))this.exitNodes.push({type:"point",x:t.x,y:t.y,r:null!==(c=t.r)&&void 0!==c?c:3,style:{opacity:null!==(u=t.opacity)&&void 0!==u?u:1},datum:null,_targetOpacity:0,_transitionKey:e});else if(e.startsWith("r:"))this.exitNodes.push({type:"rect",x:t.x,y:t.y,w:null!==(d=t.w)&&void 0!==d?d:0,h:null!==(h=t.h)&&void 0!==h?h:0,style:{opacity:null!==(g=t.opacity)&&void 0!==g?g:1,fill:"#999"},datum:null,_targetOpacity:0,_transitionKey:e});else if(e.startsWith("w:")){const n=((null!==(f=t.startAngle)&&void 0!==f?f:0)+(null!==(p=t.endAngle)&&void 0!==p?p:0))/2;this.exitNodes.push({type:"wedge",cx:t.x,cy:t.y,innerRadius:null!==(y=t.innerRadius)&&void 0!==y?y:0,outerRadius:null!==(m=t.outerRadius)&&void 0!==m?m:100,startAngle:null!==(v=t.startAngle)&&void 0!==v?v:0,endAngle:null!==(b=t.endAngle)&&void 0!==b?b:0,style:{opacity:null!==(x=t.opacity)&&void 0!==x?x:1},datum:null,category:e.slice(2),_targetStartAngle:n,_targetEndAngle:n,_targetOpacity:0,_transitionKey:e})}w=!0}this.exitNodes.length>0&&(this.scene=[...this.scene,...this.exitNodes]),w&&(this.activeTransition={startTime:F(),duration:k})}advanceTransition(e){var t,n,o,r;if(!this.activeTransition)return!1;const i=H(e,this.activeTransition),a=N(i,"linear"===(null===(t=this.config.transition)||void 0===t?void 0:t.easing)?"linear":"ease-out-cubic");for(const e of this.scene){const t=e._transitionKey;if(t)if("point"===e.type){if(void 0!==e._targetOpacity){const o=this.prevPositionMap.get(t),r=o?null!==(n=o.opacity)&&void 0!==n?n:1:0;e.style.opacity=W(r,e._targetOpacity,a)}const o=this.prevPositionMap.get(t);void 0!==e._targetX&&o&&(e.x=W(o.x,e._targetX,a),e.y=W(o.y,e._targetY,a)),void 0!==e._targetR&&void 0!==(null==o?void 0:o.r)&&(e.r=W(o.r,e._targetR,a))}else if("rect"===e.type){if(void 0!==e._targetOpacity){const n=this.prevPositionMap.get(t),r=n?null!==(o=n.opacity)&&void 0!==o?o:1:0;e.style.opacity=W(r,e._targetOpacity,a)}if(void 0===e._targetX)continue;const n=this.prevPositionMap.get(t);if(!n)continue;e.x=W(n.x,e._targetX,a),e.y=W(n.y,e._targetY,a),void 0!==n.w&&(e.w=W(n.w,e._targetW,a),e.h=W(n.h,e._targetH,a))}else if("wedge"===e.type){if(void 0!==e._targetOpacity){const n=this.prevPositionMap.get(t),o=n?null!==(r=n.opacity)&&void 0!==r?r:1:0;e.style=Object.assign(Object.assign({},e.style),{opacity:W(o,e._targetOpacity,a)})}if(void 0!==e._targetStartAngle&&void 0!==e._targetEndAngle){const n=this.prevPositionMap.get(t);n&&void 0!==n.startAngle&&(e.startAngle=W(n.startAngle,e._targetStartAngle,a),e.endAngle=W(n.endAngle,e._targetEndAngle,a))}}}if(i>=1){for(const e of this.scene)if(void 0!==e._targetOpacity&&(e.style=Object.assign(Object.assign({},e.style||{}),{opacity:0===e._targetOpacity?0:e._targetOpacity}),e._targetOpacity=void 0),"point"===e.type){if(void 0===e._targetX&&void 0===e._targetR)continue;void 0!==e._targetX&&(e.x=e._targetX,e.y=e._targetY),void 0!==e._targetR&&(e.r=e._targetR),e._targetX=void 0,e._targetY=void 0,e._targetR=void 0}else if("rect"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,e.y=e._targetY,e.w=e._targetW,e.h=e._targetH,e._targetX=void 0,e._targetY=void 0,e._targetW=void 0,e._targetH=void 0}else"wedge"===e.type&&void 0!==e._targetStartAngle&&(e.startAngle=e._targetStartAngle,e.endAngle=e._targetEndAngle,e._targetStartAngle=void 0,e._targetEndAngle=void 0);if(this.exitNodes.length>0){const e=new Set(this.exitNodes);this.scene=this.scene.filter(t=>!e.has(t)),this.exitNodes=[]}return this.activeTransition=null,!1}return!0}getData(){return this.buffer.toArray()}remove(e){if(!this.getDataId)throw Error("remove() requires dataIdAccessor to be configured");this.config.transition&&this.scene.length>0&&this.snapshotPositions();const t=new Set(Array.isArray(e)?e:[e]),n=this.getDataId,o=e=>t.has(n(e));if(this.timestampBuffer&&this.timestampBuffer.size>0){const e=this.timestampBuffer.toArray(),t=new Set;this.buffer.forEach((e,n)=>{o(e)&&t.add(n)}),this.timestampBuffer.clear();for(let n=0;e.length>n;n++)t.has(n)||this.timestampBuffer.push(e[n])}const r=this.buffer.remove(o);if(0===r.length)return r;for(const e of r)this.evictValueExtent(e);return this.categories.clear(),this.buffer.forEach(e=>this.categories.add(this.getO(e))),this._dataVersion++,this.version++,r}update(e,t){if(!this.getDataId)throw Error("update() requires dataIdAccessor to be configured");const n=new Set(Array.isArray(e)?e:[e]),o=this.getDataId,r=new Set;this.buffer.forEach((e,t)=>{n.has(o(e))&&r.add(t)});const i=this.buffer.update(e=>n.has(o(e)),t);if(0===i.length)return i;for(const e of i)this.evictValueExtent(e);return this.categories.clear(),this.buffer.forEach((e,t)=>{this.categories.add(this.getO(e)),r.has(t)&&this.pushValueExtent(e)}),this._dataVersion++,this.version++,i}clear(){this.buffer.clear(),this.rExtent.clear(),this.categories.clear(),this._hasStreamingData=!1,this._hasRenderedOnce=!1,this.timestampBuffer&&this.timestampBuffer.clear(),this.prevPositionMap.clear(),this.exitNodes=[],this.activeTransition=null,this.lastIngestTime=0,this.scales=null,this.scene=[],this.columns={},this._pointQuadtree=null,this._maxPointRadius=0,this._dataVersion++,this.version++}get size(){return this.buffer.size}getOAccessor(){return this.getO}getRAccessor(){return this.getR}updateConfig(e){const t=Object.assign({},this.config);if(("colorScheme"in e&&e.colorScheme!==t.colorScheme||"themeCategorical"in e&&e.themeCategorical!==t.themeCategorical||"colorAccessor"in e&&!S(e.colorAccessor,t.colorAccessor))&&(this._colorSchemeMap=null,this._colorSchemeIndex=0),("categoryAccessor"in e&&!S(e.categoryAccessor,t.categoryAccessor)||"oAccessor"in e&&!S(e.oAccessor,t.oAccessor))&&(this._categoryIndexCache=null),Object.assign(this.config,e),("categoryAccessor"in e||"oAccessor"in e)&&(S(e.categoryAccessor||e.oAccessor,t.categoryAccessor||t.oAccessor)||(this.getO=M(this.config.categoryAccessor||this.config.oAccessor,"category"),this.categories.clear())),"valueAccessor"in e||"rAccessor"in e){const n=e.valueAccessor||e.rAccessor,o=t.valueAccessor||t.rAccessor,r=Array.isArray(n)?n:[n],i=Array.isArray(o)?o:[o];if(r.length!==i.length||r.some((e,t)=>!S(e,i[t]))){const e=this.config.valueAccessor||this.config.rAccessor;Array.isArray(e)?(this.rAccessors=e.map(e=>O(e,"value")),this.getR=this.rAccessors[0],this.rExtents=e.map(()=>new w)):(this.getR=O(e,"value"),this.rAccessors=[this.getR],this.rExtents=[this.rExtent])}}"stackBy"in e&&!S(e.stackBy,t.stackBy)&&(this.getStack=null!=this.config.stackBy?M(this.config.stackBy):void 0),"groupBy"in e&&!S(e.groupBy,t.groupBy)&&(this.getGroup=null!=this.config.groupBy?M(this.config.groupBy):void 0),"colorAccessor"in e&&!S(e.colorAccessor,t.colorAccessor)&&(this.getColor=null!=this.config.colorAccessor?M(this.config.colorAccessor):void 0),"connectorAccessor"in e&&!S(e.connectorAccessor,t.connectorAccessor)&&(this.getConnector=null!=this.config.connectorAccessor?M(this.config.connectorAccessor):void 0)}}function Rr(e,t,n){const o=J(t,n,e);return o.hit?{datum:e.datum,x:o.cx,y:e.y,distance:0,category:e.group}:null}function Br(e,t,n,o=30){const r=t-e.x,i=n-e.y,a=Math.sqrt(r*r+i*i);return a>ee(e.r,o)?null:{datum:e.datum,x:e.x,y:e.y,distance:a}}function Dr(e,t,n){const o=t-e.cx,r=n-e.cy,i=Math.sqrt(o*o+r*r);if(e.innerRadius>i||i>e.outerRadius)return null;const a=oe(Math.atan2(r,o)),s=oe(e.startAngle),l=oe(e.endAngle);if(!(s>l?a>=s||l>=a:a>=s&&l>=a))return null;const c=(e.startAngle+e.endAngle)/2,u=(e.innerRadius+e.outerRadius)/2;return{datum:e.datum,x:e.cx+Math.cos(c)*u,y:e.cy+Math.sin(c)*u,distance:0,category:e.category}}function Ir(e,t,n){const o=e.columnWidth/2;if("vertical"===e.projection){if(!(e.x-o>t||t>e.x+o||Math.min(e.minPos,e.maxPos)>n||n>Math.max(e.minPos,e.maxPos)))return{datum:e.datum,x:e.x,y:e.medianPos,distance:0,category:e.category,stats:e.stats}}else{const r=e.y-o,i=e.y+o;if(!(Math.min(e.minPos,e.maxPos)>t||t>Math.max(e.minPos,e.maxPos)||r>n||n>i))return{datum:e.datum,x:e.medianPos,y:e.y,distance:0,category:e.category,stats:e.stats}}return null}function Nr(e,t,n){if(!e.bounds)return null;const{x:o,y:r,width:i,height:a}=e.bounds;return o>t||t>o+i||r>n||n>r+a?null:{datum:e.datum,x:o+i/2,y:r+a/2,distance:0,category:e.category,stats:e.stats}}function Hr(t){const{width:n,height:o,totalWidth:r,totalHeight:i,margin:a,scales:s,showAxes:l,showGrid:c,rFormat:u}=t,{rTickValues:d}=t,h="radial"===(null==s?void 0:s.projection),g="horizontal"===(null==s?void 0:s.projection),f=e.useMemo(()=>!s||h?[]:(d||s.r.ticks(5)).map(e=>({value:e,pixel:s.r(e),label:(u||Wr)(e)})),[s,u,h,d]),y=c&&s&&!h,m=l&&s&&!h;return y||m?p.createElement("svg",{width:r,height:i,overflow:"visible",style:{position:"absolute",top:0,left:0,pointerEvents:"none",overflow:"visible"}},p.createElement("g",{transform:`translate(${a.left},${a.top})`},y&&p.createElement("g",{className:"ordinal-grid"},f.map((e,t)=>p.createElement("line",{key:"grid-"+t,x1:g?e.pixel:0,y1:g?0:e.pixel,x2:g?e.pixel:n,y2:g?o:e.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1}))),m&&p.createElement(p.Fragment,null,g?p.createElement(p.Fragment,null,p.createElement("line",{x1:0,y1:0,x2:0,y2:o,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),p.createElement("line",{x1:0,y1:o,x2:n,y2:o,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1})):p.createElement(p.Fragment,null,p.createElement("line",{x1:0,y1:o,x2:n,y2:o,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),p.createElement("line",{x1:0,y1:0,x2:0,y2:o,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}))))):null}function Wr(e){return Math.round(100*e)/100+""}function Fr(t){var n,o;const{width:r,height:i,totalWidth:a,totalHeight:s,margin:l,scales:c,showAxes:u,showCategoryTicks:d,oLabel:h,rLabel:g,oFormat:f,rFormat:y,showGrid:m,title:v,legend:b,legendHoverBehavior:x,legendClickBehavior:k,legendHighlightedCategory:w,legendIsolatedCategories:A,legendPosition:S="right",foregroundGraphics:O,annotations:E,svgAnnotationRules:M,xAccessor:j,yAccessor:C,annotationData:P,underlayRendered:_,children:L}=t,T="radial"===(null==c?void 0:c.projection),R="horizontal"===(null==c?void 0:c.projection),B=!1!==d,D=e.useMemo(()=>u&&B&&c&&!T?c.o.domain().map((e,t)=>{var n;return{value:e,pixel:(null!==(n=c.o(e))&&void 0!==n?n:0)+c.o.bandwidth()/2,label:f?f(e,t):e}}):[],[u,B,c,f,T]),I=t.rTickValues,N=t.tickLabelEdgeAlign,H=e.useMemo(()=>u&&c&&!T?(I||c.r.ticks(5)).map(e=>({value:e,pixel:c.r(e),label:(y||Wr)(e)})):[],[u,c,y,T,I]),W=e.useRef(new Map),F=e.useRef(null!==(n=null==E?void 0:E.length)&&void 0!==n?n:0),$=null!==(o=null==E?void 0:E.length)&&void 0!==o?o:0;F.current!==$&&(F.current=$,W.current=new Map);const z=e.useMemo(()=>{if(!E||0===E.length)return null;const e=He(),t="horizontal"===(null==c?void 0:c.projection),n=(null==c?void 0:c.o)?e=>{var t;return(null!==(t=c.o(e))&&void 0!==t?t:0)+c.o.bandwidth()/2}:null,o={scales:c?{x:t?c.r:n||c.r,y:t&&n||c.r,time:c.r,value:c.r,o:c.o}:null,timeAxis:"x",xAccessor:j,yAccessor:C,width:r,height:i,data:P,frameType:"ordinal",projection:t?"horizontal":"vertical",stickyPositionCache:W.current};return E.map((t,n)=>{if(M){const r=M(t,n,o);return null!=r?r:e(t,n,o)}return e(t,n,o)}).filter(Boolean)},[E,M,r,i,c,j,C,P]);return u||v||b||O||z&&z.length>0||m||L?p.createElement("svg",{role:"img",width:a,height:s,overflow:"visible",style:{position:"absolute",top:0,left:0,pointerEvents:"none",overflow:"visible"}},p.createElement("title",null,"string"==typeof v?v:"Ordinal Chart"),p.createElement("desc",null,"string"==typeof v?v+" — ordinal data visualization":"Ordinal data visualization"),p.createElement("g",{transform:`translate(${l.left},${l.top})`},m&&c&&!T&&!_&&p.createElement("g",{className:"ordinal-grid"},H.map((e,t)=>p.createElement("line",{key:"grid-"+t,x1:R?e.pixel:0,y1:R?0:e.pixel,x2:R?e.pixel:r,y2:R?i:e.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1}))),u&&c&&!T&&p.createElement("g",{className:"ordinal-axes"},R?p.createElement(p.Fragment,null,!_&&p.createElement("line",{x1:0,y1:0,x2:0,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),D.map((e,t)=>p.createElement("g",{key:"cat-"+t,transform:`translate(0,${e.pixel})`},p.createElement("line",{x2:-5,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),"string"==typeof e.label||"number"==typeof e.label?p.createElement("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{userSelect:"none"}},e.label):p.createElement("foreignObject",{x:-68,y:-12,width:60,height:24,style:{overflow:"visible"}},p.createElement("div",{style:{textAlign:"right",fontSize:10,userSelect:"none"}},e.label)))),h&&p.createElement("text",{x:15-l.left,y:i/2,textAnchor:"middle",fontSize:12,fill:"var(--semiotic-text, #333)",transform:`rotate(-90, ${15-l.left}, ${i/2})`,style:{userSelect:"none"}},h),!_&&p.createElement("line",{x1:0,y1:i,x2:r,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),!_&&(null==c?void 0:c.r)&&(()=>{const e=c.r(0);return e>1&&r-1>e?p.createElement("line",{x1:e,y1:0,x2:e,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1,strokeDasharray:"4,4"}):null})(),H.map((e,t)=>{const n=N?0===t?"start":t===H.length-1?"end":"middle":"middle";return p.createElement("g",{key:"val-"+t,transform:`translate(${e.pixel},${i})`},p.createElement("line",{y2:5,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),p.createElement("text",{y:18,textAnchor:n,fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{userSelect:"none"}},e.label))}),g&&p.createElement("text",{x:r/2,y:i+40,textAnchor:"middle",fontSize:12,fill:"var(--semiotic-text, #333)",style:{userSelect:"none"}},g)):p.createElement(p.Fragment,null,!_&&(()=>{const e=(null==c?void 0:c.r)?c.r(0):i,t=0>e||e>i?i:e;return p.createElement("line",{x1:0,y1:t,x2:r,y2:t,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1})})(),D.map((e,t)=>p.createElement("g",{key:"cat-"+t,transform:`translate(${e.pixel},${i})`},p.createElement("line",{y2:5,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),"string"==typeof e.label||"number"==typeof e.label?p.createElement("text",{y:18,textAnchor:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{userSelect:"none"}},e.label):p.createElement("foreignObject",{x:-30,y:6,width:60,height:24,style:{overflow:"visible"}},p.createElement("div",{style:{textAlign:"center",fontSize:10,userSelect:"none"}},e.label)))),h&&p.createElement("text",{x:r/2,y:i+40,textAnchor:"middle",fontSize:12,fill:"var(--semiotic-text, #333)",style:{userSelect:"none"}},h),!_&&p.createElement("line",{x1:0,y1:0,x2:0,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),H.map((e,t)=>p.createElement("g",{key:"val-"+t,transform:`translate(0,${e.pixel})`},p.createElement("line",{x2:-5,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),p.createElement("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{userSelect:"none"}},e.label))),g&&p.createElement("text",{x:15-l.left,y:i/2,textAnchor:"middle",fontSize:12,fill:"var(--semiotic-text, #333)",transform:`rotate(-90, ${15-l.left}, ${i/2})`,style:{userSelect:"none"}},g))),z,O,L),v&&p.createElement("text",{x:a/2,y:20,textAnchor:"middle",fontSize:14,fontWeight:"bold",fill:"var(--semiotic-text, #333)",style:{userSelect:"none"}},"string"==typeof v?v:null),Me({legend:b,totalWidth:a,totalHeight:s,margin:l,legendPosition:S,title:v,legendHoverBehavior:x,legendClickBehavior:k,legendHighlightedCategory:w,legendIsolatedCategories:A})):null}function $r({width:o,height:r,totalWidth:i,totalHeight:a,margin:s,scales:l,onBrush:c}){const u=e.useRef(null),d=e.useRef(null),h=e.useRef(c);h.current=c;const g=e.useRef(l);g.current=l;const f=e.useRef(!1),y=e.useRef(null),m="horizontal"===(null==l?void 0:l.projection),v=e.useRef(m);return v.current=m,e.useEffect(()=>{if(!u.current)return;const e=t.select(u.current).select(".brush-g"),i=m?n.brushX():n.brushY();return i.extent([[0,0],[o,r]]),i.on("brush end",e=>{if(f.current)return;const t=g.current;if(!t)return;if(!e.selection)return y.current=null,void h.current(null);const[n,o]=e.selection;let r;r=v.current?[t.r.invert(n),t.r.invert(o)]:[t.r.invert(o),t.r.invert(n)];const i={r:r};y.current=i,h.current(i)}),e.call(i),d.current=i,e.select(".selection").attr("fill","steelblue").attr("fill-opacity",.15).attr("stroke","steelblue").attr("stroke-width",1),()=>{i.on("brush end",null),d.current=null}},[o,r,m]),e.useEffect(()=>{if(!l||!d.current||!y.current)return;if(!u.current)return;const e=y.current,n=t.select(u.current).select(".brush-g"),o=l.r(e.r[0]),r=l.r(e.r[1]);m?(f.current=!0,n.call(d.current.move,[o,r]),f.current=!1):(f.current=!0,n.call(d.current.move,[r,o]),f.current=!1)},[l,m]),p.createElement("svg",{ref:u,width:i,height:a,style:{position:"absolute",top:0,left:0,pointerEvents:"none"}},p.createElement("g",{className:"brush-g",transform:`translate(${s.left},${s.top})`,style:{pointerEvents:"all"}}))}function zr(e,t){e.beginPath(),t.innerRadius>0?(e.arc(t.cx,t.cy,t.outerRadius,t.startAngle,t.endAngle),e.arc(t.cx,t.cy,t.innerRadius,t.endAngle,t.startAngle,!0)):(e.moveTo(t.cx,t.cy),e.arc(t.cx,t.cy,t.outerRadius,t.startAngle,t.endAngle)),e.closePath()}function Gr(e,t){const n=l.arc().innerRadius(t.innerRadius).outerRadius(t.outerRadius).startAngle(t.startAngle+Math.PI/2).endAngle(t.endAngle+Math.PI/2).cornerRadius(t.cornerRadius)({});if(!n)return;e.save(),e.translate(t.cx,t.cy);const o=new Path2D(n);e.fill(o),t.style.stroke&&"none"!==t.style.stroke&&e.stroke(o),e.restore()}Tr.QUADTREE_THRESHOLD=500;const Yr=(e,t,n,o)=>{var r,i;const a=t.filter(e=>"wedge"===e.type);for(const t of a){const n=null!==(r=t.style.fillOpacity)&&void 0!==r?r:1,o=null!==(i=t.style.opacity)&&void 0!==i?i:1;e.globalAlpha=n*o,e.fillStyle=("string"==typeof t.style.fill?Gt(e,t.style.fill):t.style.fill)||"#007bff",t.cornerRadius?(t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Gt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1),Gr(e,t)):(zr(e,t),e.fill(),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Gt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke())),t._pulseIntensity&&t._pulseIntensity>0&&(zr(e,t),nn(e,t)),e.globalAlpha=1}},qr=(e,t,n,o)=>{var r,i;const a=t.filter(e=>"violin"===e.type);for(const t of a){e.save(),(t.translateX||t.translateY)&&e.translate(t.translateX,t.translateY);const n=new Path2D(t.pathString);if(e.globalAlpha=null!==(i=null!==(r=t.style.fillOpacity)&&void 0!==r?r:t.style.opacity)&&void 0!==i?i:.6,e.fillStyle=("string"==typeof t.style.fill?Gt(e,t.style.fill):t.style.fill)||"#007bff",e.fill(n),e.globalAlpha=1,t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Gt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke(n)),t.iqrLine){e.strokeStyle="#333",e.lineWidth=2,e.globalAlpha=.8;const n=t.iqrLine.centerPos,o=!1!==t.iqrLine.isVertical;e.beginPath(),o?(e.moveTo(n,t.iqrLine.q1Pos),e.lineTo(n,t.iqrLine.q3Pos)):(e.moveTo(t.iqrLine.q1Pos,n),e.lineTo(t.iqrLine.q3Pos,n)),e.stroke(),e.beginPath(),o?e.arc(n,t.iqrLine.medianPos,3,0,2*Math.PI):e.arc(t.iqrLine.medianPos,n,3,0,2*Math.PI),e.fillStyle="#fff",e.fill(),e.strokeStyle="#333",e.lineWidth=1,e.stroke(),e.globalAlpha=1}e.restore()}},Xr=(e,t,n,o)=>{var r,i,a;const s=t.filter(e=>"connector"===e.type);if(0===s.length)return;const l=new Map;for(const e of s){const t=e.group||"_default";l.has(t)||l.set(t,[]),l.get(t).push(e)}for(const[,t]of l){if(0===t.length)continue;const n=t[0].style;if(n.fill&&"none"!==n.fill){e.beginPath(),e.moveTo(t[0].x1,t[0].y1);for(const n of t)e.lineTo(n.x2,n.y2);e.closePath(),e.globalAlpha=null!==(i=null!==(r=n.fillOpacity)&&void 0!==r?r:n.opacity)&&void 0!==i?i:.3,e.fillStyle=n.fill,e.fill(),e.globalAlpha=1}for(const n of t)e.beginPath(),e.moveTo(n.x1,n.y1),e.lineTo(n.x2,n.y2),e.strokeStyle=Gt(e,n.style.stroke)||("string"==typeof n.style.fill?Gt(e,n.style.fill):n.style.fill)||"#999",e.lineWidth=n.style.strokeWidth||1,e.globalAlpha=null!==(a=n.style.opacity)&&void 0!==a?a:.5,e.stroke(),e.globalAlpha=1}};function Vr(e){return 1e6>e?1e4>e?1e3>e?e+"":(e/1e3).toFixed(1)+"K":(e/1e3).toFixed(0)+"K":(e/1e6).toFixed(1)+"M"}function Ur(e){return.05>Math.abs(e-Math.round(e))?Math.round(e)+"%":e.toFixed(1)+"%"}let Kr=null;const Qr=new Map;function Zr(e,t){const n=`${e}@${"undefined"!=typeof window&&window.devicePixelRatio||1}`,o=Qr.get(n);if(void 0!==o)return o;const r=function(e={},t){const{background:n="transparent",stroke:o="#000",lineWidth:r=1.5,spacing:i=6,angle:a=45}=e,s=Math.max(8,Math.ceil(2*i));let l;try{l=function(e){return"undefined"!=typeof OffscreenCanvas?new OffscreenCanvas(e,e):(Kr||(Kr=document.createElement("canvas")),Kr.width=e,Kr.height=e,Kr)}(s)}catch(e){return null}const c=l.getContext("2d");if(!c)return null;n&&"transparent"!==n?(c.fillStyle=n,c.fillRect(0,0,s,s)):c.clearRect(0,0,s,s),c.strokeStyle=o,c.lineWidth=r,c.lineCap="square";const u=a*Math.PI/180;if(45===a||-45===a){const e=a>0?1:-1;for(let t=-s;2*s>=t;t+=i)c.beginPath(),c.moveTo(t,0),c.lineTo(t+e*s,s),c.stroke()}else{c.save(),c.translate(s/2,s/2),c.rotate(u);const e=2*s;for(let t=-e;e>=t;t+=i)c.beginPath(),c.moveTo(-e,t),c.lineTo(e,t),c.stroke();c.restore()}return(t||c).createPattern(l,"repeat")}({background:e,stroke:"rgba(255,255,255,0.5)",lineWidth:1.5,spacing:6,angle:45},t);return Qr.set(n,r),r}function Jr(e,t,n,o,r,i){e.moveTo(t+i,n),e.lineTo(t+o-i,n),e.quadraticCurveTo(t+o,n,t+o,n+i),e.lineTo(t+o,n+r-i),e.quadraticCurveTo(t+o,n+r,t+o-i,n+r),e.lineTo(t+i,n+r),e.quadraticCurveTo(t,n+r,t,n+r-i),e.lineTo(t,n+i),e.quadraticCurveTo(t,n,t+i,n),e.closePath()}function ei(e){return 1e6>e?1e4>e?1e3>e?Math.round(e)+"":(e/1e3).toFixed(1)+"K":(e/1e3).toFixed(0)+"K":(e/1e6).toFixed(1)+"M"}function ti(e){return.05>Math.abs(e-Math.round(e))?Math.round(e)+"%":e.toFixed(1)+"%"}const ni=e=>[Xr,...e],oi={bar:ni([cn]),clusterbar:ni([cn]),point:ni([ln]),swarm:ni([ln]),pie:[Yr],donut:[Yr],boxplot:ni([(e,t,n,o)=>{var r,i;const a=t.filter(e=>"boxplot"===e.type);for(const t of a){const n=t.columnWidth/2,o="vertical"===t.projection,a=t.style.fill||"#007bff",s=t.style.stroke||"#333",l=t.style.strokeWidth||1,c=null!==(i=null!==(r=t.style.fillOpacity)&&void 0!==r?r:t.style.opacity)&&void 0!==i?i:.6;if(e.save(),e.strokeStyle=s,e.lineWidth=l,e.beginPath(),o?(e.moveTo(t.x,t.minPos),e.lineTo(t.x,t.maxPos)):(e.moveTo(t.minPos,t.y),e.lineTo(t.maxPos,t.y)),e.stroke(),e.beginPath(),o?(e.moveTo(t.x-.4*n,t.minPos),e.lineTo(t.x+.4*n,t.minPos),e.moveTo(t.x-.4*n,t.maxPos),e.lineTo(t.x+.4*n,t.maxPos)):(e.moveTo(t.minPos,t.y-.4*n),e.lineTo(t.minPos,t.y+.4*n),e.moveTo(t.maxPos,t.y-.4*n),e.lineTo(t.maxPos,t.y+.4*n)),e.stroke(),e.globalAlpha=c,e.fillStyle=a,o){const o=Math.min(t.q1Pos,t.q3Pos),r=Math.abs(t.q3Pos-t.q1Pos);e.fillRect(t.x-n,o,t.columnWidth,r),e.globalAlpha=1,e.strokeRect(t.x-n,o,t.columnWidth,r)}else{const o=Math.min(t.q1Pos,t.q3Pos),r=Math.abs(t.q3Pos-t.q1Pos);e.fillRect(o,t.y-n,r,t.columnWidth),e.globalAlpha=1,e.strokeRect(o,t.y-n,r,t.columnWidth)}e.strokeStyle="#fff",e.lineWidth=2,e.beginPath(),o?(e.moveTo(t.x-n,t.medianPos),e.lineTo(t.x+n,t.medianPos)):(e.moveTo(t.medianPos,t.y-n),e.lineTo(t.medianPos,t.y+n)),e.stroke(),e.restore()}},ln]),violin:ni([qr]),histogram:ni([cn]),ridgeline:ni([qr]),timeline:ni([cn]),funnel:[cn,(e,t,n,o)=>{var r,i,a,s;const l=t.filter(e=>"trapezoid"===e.type);for(const t of l){const n=t.points;if(n.length>=4){e.globalAlpha=null!==(i=null===(r=t.style)||void 0===r?void 0:r.opacity)&&void 0!==i?i:1,e.beginPath(),e.moveTo(n[0][0],n[0][1]);for(let t=1;n.length>t;t++)e.lineTo(n[t][0],n[t][1]);e.closePath(),e.fillStyle=(null===(a=t.style)||void 0===a?void 0:a.fill)||"#999",e.fill(),(null===(s=t.style)||void 0===s?void 0:s.stroke)&&(e.strokeStyle=Gt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke()),e.globalAlpha=1}}},(e,t,n,o)=>{var r,i,a,s;const l=t.filter(e=>"rect"===e.type&&null!=e.datum);if(0!==l.length&&l.some(e=>null!=e.datum.__funnelStepLabel||null!=e.datum.__funnelValueLabelX)){e.textBaseline="top",e.lineJoin="round",e.textAlign="center",e.font="bold 14px sans-serif";for(const t of l){const n=t.datum;if(!n.__funnelStepLabel)continue;const o=n.__funnelStepLabel;if(e.measureText(o).width+16>(null!==(i=null!==(r=n.__funnelRowWidth)&&void 0!==r?r:n.__funnelBarW)&&void 0!==i?i:0))continue;const a=n.__funnelStepLabelX,s=n.__funnelStepLabelY+3;e.strokeStyle="rgba(0,0,0,0.6)",e.lineWidth=3,e.strokeText(o,a,s),e.fillStyle="#fff",e.fillText(o,a,s)}e.font="bold 13px sans-serif";for(const t of l){const n=t.datum;if(null==n.__funnelValueLabelX)continue;const o=null!==(a=n.__funnelBarW)&&void 0!==a?a:0;if(60>o)continue;const r=n.__funnelValue;if(null==r||0===r)continue;const i=n.__funnelPercent,l=!0===n.__funnelIsFirstStep;let c;if(c=l?Vr(r):null!=i?`${Vr(r)} (${Ur(i)})`:Vr(r),e.measureText(c).width+16>o){if(l||null==i)continue;if(c=Vr(r),e.measureText(c).width+16>o)continue}const u=n.__funnelValueLabelX,d=(null!==(s=n.__funnelValueLabelY)&&void 0!==s?s:t.y)+14+5;e.textAlign="center",e.strokeStyle="rgba(0,0,0,0.5)",e.lineWidth=3,e.strokeText(c,u,d),e.fillStyle="#fff",e.fillText(c,u,d)}e.lineWidth=1,e.lineJoin="miter"}}],"bar-funnel":[cn,(e,t,n,o)=>{var r,i;const a=t.filter(e=>{var t;return"rect"===e.type&&!0===(null===(t=e.datum)||void 0===t?void 0:t.__barFunnelIsDropoff)});for(const t of a){const n="string"==typeof t.style.fill?t.style.fill:"#999",o=Zr(n,e);e.globalAlpha=null!==(r=t.style.opacity)&&void 0!==r?r:1,e.beginPath(),e.rect(t.x,t.y,t.w,t.h),o?e.fillStyle=o:(e.fillStyle=n,e.globalAlpha=.4*(null!==(i=t.style.opacity)&&void 0!==i?i:1)),e.fill(),e.globalAlpha=1}},(e,t,n,o)=>{const r=t.filter(e=>{var t,n;return"rect"===e.type&&!0!==(null===(t=e.datum)||void 0===t?void 0:t.__barFunnelIsDropoff)&&null!=(null===(n=e.datum)||void 0===n?void 0:n.__barFunnelLabelX)});if(0!==r.length){for(const t of r){const n=t.datum,o=n.__barFunnelValue;if(null==o)continue;if(25>t.w)continue;const r=n.__barFunnelPercent,i=!(!0===n.__barFunnelIsFirstStep)&&null!=r,a=i?ti(r):"",s=ei(o);e.font="bold 13px sans-serif";const l=i?e.measureText(a).width:0;e.font="11px sans-serif";const c=e.measureText(s).width,u=Math.max(l,c)+12,d=i?32:17,h=n.__barFunnelLabelX,g=h-u/2,f=n.__barFunnelLabelY-d-4;e.save(),e.shadowColor="rgba(0,0,0,0.15)",e.shadowBlur=4,e.shadowOffsetY=1,e.fillStyle="rgba(255,255,255,0.95)",e.beginPath(),Jr(e,g,f,u,d,4),e.fill(),e.restore(),e.strokeStyle="rgba(0,0,0,0.12)",e.lineWidth=.5,e.beginPath(),Jr(e,g,f,u,d,4),e.stroke(),e.textAlign="center",e.textBaseline="top",i?(e.font="bold 13px sans-serif",e.fillStyle="#333",e.fillText(a,h,f+3),e.font="11px sans-serif",e.fillStyle="#666",e.fillText(s,h,f+3+13+2)):(e.font="bold 11px sans-serif",e.fillStyle="#333",e.fillText(s,h,f+3))}e.lineWidth=1}}],swimlane:ni([cn])},ri={top:50,right:40,bottom:60,left:70},ii={background:"rgba(0, 0, 0, 0.85)",color:"white",padding:"6px 10px",borderRadius:"4px",fontSize:"13px",lineHeight:"1.4",boxShadow:"0 2px 8px rgba(0, 0, 0, 0.15)",pointerEvents:"none",whiteSpace:"nowrap"};function ai({hover:e}){var t,n,o,r,i,a;const s=e.data||{},l=e.stats,c=e.category;if(Array.isArray(s)){const e=c||(null===(t=s[0])||void 0===t?void 0:t.category)||"";if(l)return p.createElement("div",{className:"semiotic-tooltip",style:ii},e&&p.createElement("div",{style:{fontWeight:"bold"}},e+""),p.createElement("div",null,"n = ",l.n),p.createElement("div",null,"Min: ",l.min.toLocaleString()),p.createElement("div",null,"Q1: ",l.q1.toLocaleString()),p.createElement("div",null,"Median: ",l.median.toLocaleString()),p.createElement("div",null,"Q3: ",l.q3.toLocaleString()),p.createElement("div",null,"Max: ",l.max.toLocaleString()),p.createElement("div",{style:{opacity:.8}},"Mean: ",l.mean.toLocaleString(void 0,{maximumFractionDigits:2})));const n=s.length;return p.createElement("div",{className:"semiotic-tooltip",style:ii},e&&p.createElement("div",{style:{fontWeight:"bold"}},e+""),p.createElement("div",null,n," items"))}if(null!=s.bin&&null!=s.count){const e=s.range||[];return p.createElement("div",{className:"semiotic-tooltip",style:ii},s.category&&p.createElement("div",{style:{fontWeight:"bold"}},s.category+""),p.createElement("div",null,"Count: ",s.count),2===e.length&&p.createElement("div",{style:{opacity:.8}},Number(e[0]).toFixed(1)," – ",Number(e[1]).toFixed(1)))}const u=e.__oAccessor,d=e.__rAccessor,h=e.__chartType;if("swarm"===h||"point"===h){const e=Object.entries(s).filter(([e])=>!e.startsWith("_")&&"data"!==e);return p.createElement("div",{className:"semiotic-tooltip",style:ii},e.map(([e,t])=>p.createElement("div",{key:e},p.createElement("span",{style:{opacity:.7}},e,":")," ","number"==typeof t?t.toLocaleString():t+"")))}const g=(u&&null!=s[u]?s[u]:null)||s.category||s.name||s.group||s.__rName||"",f=null!==(a=null!==(i=null!==(r=null!==(o=null!==(n=s.__aggregateValue)&&void 0!==n?n:d&&null!=s[d]?s[d]:null)&&void 0!==o?o:s.value)&&void 0!==r?r:s.__rValue)&&void 0!==i?i:s.pct)&&void 0!==a?a:"";if(!g&&""===f){const e=Object.entries(s).filter(([e])=>!e.startsWith("_")&&"data"!==e);return p.createElement("div",{className:"semiotic-tooltip",style:ii},e.map(([e,t])=>p.createElement("div",{key:e},p.createElement("span",{style:{opacity:.7}},e,":")," ","number"==typeof t?t.toLocaleString():t+"")))}return p.createElement("div",{className:"semiotic-tooltip",style:ii},g&&p.createElement("div",{style:{fontWeight:"bold"}},g+""),""!==f&&p.createElement("div",null,"number"==typeof f?f.toLocaleString():f+""))}const si=e.forwardRef(function(t,n){var o,r,i,a,s,c,u,d,h,g;const{chartType:f,runtimeMode:y,data:m,oAccessor:v="category",rAccessor:b="value",colorAccessor:k,stackBy:w,groupBy:A,multiAxis:S,timeAccessor:O,valueAccessor:E,categoryAccessor:M,projection:j="vertical",size:C=[600,400],responsiveWidth:P,responsiveHeight:_,margin:L,barPadding:T,roundedTop:R,baselinePadding:B,innerRadius:D,cornerRadius:I,normalize:N,startAngle:H,sweepAngle:W,dynamicColumnWidth:F,bins:$,showOutliers:z,showIQR:G,amplitude:Y,connectorOpacity:q,showLabels:X,connectorAccessor:V,connectorStyle:U,dataIdAccessor:K,rExtent:Q,oExtent:Z,extentPadding:J=.05,oSort:ee,windowMode:te="sliding",windowSize:ne=200,pieceStyle:oe,summaryStyle:ie,colorScheme:ae,barColors:se,showAxes:le=!0,showCategoryTicks:ce,categoryLabel:ue,valueLabel:de,categoryFormat:he,valueFormat:ge,oLabel:fe,rLabel:ve,oFormat:ke,rFormat:we,rTickValues:Ae,tickLabelEdgeAlign:Se,enableHover:Oe=!0,hoverAnnotation:Ee,tooltipContent:Me,customHoverBehavior:je,annotations:Ce,svgAnnotationRules:Pe,showGrid:_e=!1,legend:Le,legendHoverBehavior:Te,legendClickBehavior:Re,legendHighlightedCategory:Be,legendIsolatedCategories:De,legendPosition:Ie,backgroundGraphics:Ne,foregroundGraphics:He,title:We,className:Fe,background:$e,centerContent:ze,decay:Ge,pulse:Ye,transition:qe,animate:Xe,staleness:Ve,brush:Ue,onBrush:Ke,accessibleTable:Qe=!0,description:Ze,summary:Je}=t,et=e.useRef(!0),tt=qt({sizeProp:C,responsiveWidth:P,responsiveHeight:_,userMargin:L,marginDefault:ri,foregroundGraphics:He,backgroundGraphics:Ne,animate:Xe,transitionProp:qe,themeDirtyRef:et}),{reducedMotionRef:rt,responsiveRef:it,size:at,margin:st,adjustedWidth:ct,adjustedHeight:ut,resolvedForeground:dt,resolvedBackground:ht,currentTheme:gt,transition:ft,introEnabled:pt,tableId:yt,rafRef:mt,renderFnRef:bt,scheduleRender:At}=tt,Et=null!=ue?ue:fe,Mt=null!=de?de:ve,jt=null!=he?he:ke,Ct=null!=ge?ge:we,Pt=e.useRef(null),_t=e.useRef(null),[Lt,Tt]=e.useState(null),[Rt,Bt]=e.useState(null),[Dt,It]=e.useState(0),[Nt,Ht]=e.useState(!1),Wt=Oe||Ee,Ft="streaming"===y,$t=e.useMemo(()=>{var e;return{chartType:f,runtimeMode:Ft?"streaming":"bounded",windowSize:ne,windowMode:te,extentPadding:J,projection:j,oAccessor:Ft?void 0:v,rAccessor:Ft?void 0:b,colorAccessor:k,stackBy:w,groupBy:A,multiAxis:S,timeAccessor:Ft?O:void 0,valueAccessor:Ft?E||("string"==typeof b||"function"==typeof b?b:void 0):void 0,categoryAccessor:Ft?M||v:void 0,rExtent:Q,oExtent:Z,barPadding:T,roundedTop:R,baselinePadding:B,innerRadius:D,cornerRadius:I,normalize:N,startAngle:H,sweepAngle:W,dynamicColumnWidth:F,bins:$,showOutliers:z,showIQR:G,amplitude:Y,connectorOpacity:q,showLabels:X,connectorAccessor:V,connectorStyle:U,dataIdAccessor:K,oSort:ee,pieceStyle:oe,summaryStyle:ie,colorScheme:ae,themeCategorical:null===(e=null==gt?void 0:gt.colors)||void 0===e?void 0:e.categorical,barColors:se,decay:Ge,pulse:Ye,transition:ft,introAnimation:pt,staleness:Ve}},[f,ne,te,J,j,v,b,k,w,A,S,O,E,M,Q,Z,T,R,B,D,I,N,H,W,F,$,z,G,Y,q,X,V,U,K,ee,oe,ie,ae,se,Ge,Ye,null==ft?void 0:ft.duration,null==ft?void 0:ft.easing,pt,Ve,Ft,gt]),zt=e.useRef(null);zt.current||(zt.current=new Tr($t)),e.useEffect(()=>{var e;null===(e=zt.current)||void 0===e||e.updateConfig($t),et.current=!0,At()},[$t,At]);const Gt=e.useRef(null);Gt.current||(Gt.current=new x(e=>{const t=zt.current;t&&t.ingest(e)&&(et.current=!0,At())}));const Yt=e.useCallback(e=>{var t;null===(t=Gt.current)||void 0===t||t.push(e)},[]),Xt=e.useCallback(e=>{var t;null===(t=Gt.current)||void 0===t||t.pushMany(e)},[]),Ut=e.useCallback(()=>{var e,t;null===(e=Gt.current)||void 0===e||e.clear(),null===(t=zt.current)||void 0===t||t.clear(),et.current=!0,At()},[At]),Kt=e.useCallback(e=>{var t,n;null===(t=Gt.current)||void 0===t||t.clearLastData(),null===(n=Gt.current)||void 0===n||n.setReplacementData(e)},[]);e.useImperativeHandle(n,()=>({push:Yt,pushMany:Xt,replace:Kt,remove:e=>{var t,n,o,r;null===(t=Gt.current)||void 0===t||t.flush();const i=null!==(o=null===(n=zt.current)||void 0===n?void 0:n.remove(e))&&void 0!==o?o:[];if(i.length>0){const e=null===(r=_t.current)||void 0===r?void 0:r.data;!!_t.current&&i.some(Array.isArray(e)?t=>e.includes(t):t=>t===e)&&(_t.current=null,Tt(null)),et.current=!0,At()}return i},update:(e,t)=>{var n,o,r;null===(n=Gt.current)||void 0===n||n.flush();const i=null!==(r=null===(o=zt.current)||void 0===o?void 0:o.update(e,t))&&void 0!==r?r:[];return i.length>0&&(et.current=!0,At()),i},clear:Ut,getData:()=>{var e,t,n;return null===(e=Gt.current)||void 0===e||e.flush(),null!==(n=null===(t=zt.current)||void 0===t?void 0:t.getData())&&void 0!==n?n:[]},getScales:()=>{var e,t;return null!==(t=null===(e=zt.current)||void 0===e?void 0:e.scales)&&void 0!==t?t:null}}),[Yt,Xt,Kt,Ut,At]),e.useEffect(()=>{var e;m&&(null===(e=Gt.current)||void 0===e||e.setBoundedData(m))},[m]);const{hoverHandlerRef:Qt,hoverLeaveRef:Zt,onPointerMove:Jt,onPointerLeave:en}=tt;Qt.current=e=>{if(!Wt)return;const t=Pt.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-st.left,r=e.clientY-n.top-st.top;if(0>o||o>ct||0>r||r>ut)return void(_t.current&&(_t.current=null,Tt(null),je&&je(null),At()));const i=zt.current;if(!i||0===i.scene.length)return;const a="radial"===j,s=function(e,t,n,o=30,r,i=0){let a=null;if(r){const e=re(r,t,n,o,i);e&&(a={datum:e.node.datum,x:e.node.x,y:e.node.y,distance:e.distance})}for(const i of e){let e=null;switch(i.type){case"rect":e=Rr(i,t,n);break;case"point":if(r)break;e=Br(i,t,n,o);break;case"wedge":e=Dr(i,t,n);break;case"boxplot":e=Ir(i,t,n);break;case"violin":e=Nr(i,t,n)}e&&o>e.distance&&(a&&e.distance>=a.distance||(a=e))}return a}(i.scene,a?o-ct/2:o,a?r-ut/2:r,30,i.pointQuadtree,i.maxPointRadius);if(!s)return void(_t.current&&(_t.current=null,Tt(null),je&&je(null),At()));const l=dn(s.datum||{},s.x,s.y,Object.assign(Object.assign(Object.assign({},s.stats&&{stats:s.stats}),s.category&&{category:s.category}),{__oAccessor:"string"==typeof v?v:void 0,__rAccessor:"string"==typeof b?b:void 0,__chartType:f}));_t.current=l,Tt(l),je&&(je(l),et.current=!0),At()},Zt.current=()=>{_t.current&&(_t.current=null,Tt(null),je&&(je(null),et.current=!0),At())};const tn=e.useRef(-1),nn=e.useRef(null),on=e.useRef(null),rn=e.useCallback(e=>{const t=zt.current;if(!t||0===t.scene.length)return;const n=t.version;let o;if(on.current&&on.current.version===n)o=on.current.graph;else{const e=function(e){var t,n,o,r;const i=[];for(const a of e)if("rect"===a.type&&null!=a.x){const e=null!==(n=null===(t=a.datum)||void 0===t?void 0:t.category)&&void 0!==n?n:"";i.push({x:a.x+a.w/2,y:a.y+a.h/2,datum:a.datum,shape:"rect",w:a.w,h:a.h,group:null!==(o=a.group)&&void 0!==o?o:e})}else if("point"===a.type)i.push({x:a.x,y:a.y,datum:a.datum,shape:"circle",group:null!==(r=a.group)&&void 0!==r?r:"_default"});else if("wedge"===a.type&&null!=a.cx){const e=((a.startAngle||0)+(a.endAngle||0))/2,t=((a.innerRadius||0)+(a.outerRadius||50))/2;i.push({x:a.cx+Math.cos(e)*t,y:a.cy+Math.sin(e)*t,datum:a.datum,shape:"wedge",group:"_default"})}return i.sort((e,t)=>e.x-t.x||e.y-t.y),i}(t.scene);if(0===e.length)return;o=pe(e),on.current={version:n,graph:o}}const r=tn.current;if(0>r){if("Escape"===e.key)return;if(!["ArrowRight","ArrowLeft","ArrowUp","ArrowDown","Home","End","PageUp","PageDown"].includes(e.key))return;e.preventDefault(),tn.current=0;const t=o.flat[0];nn.current={shape:t.shape,w:t.w,h:t.h};const n=Object.assign(Object.assign({},be(t)),{__oAccessor:"string"==typeof v?v:void 0,__rAccessor:"string"==typeof b?b:void 0,__chartType:f});return _t.current=n,Tt(n),je&&je(n),void At()}const i=ye(o,r),a=me(e.key,i,o);if(null===a)return;if(e.preventDefault(),0>a)return tn.current=-1,nn.current=null,_t.current=null,Tt(null),je&&je(null),void At();tn.current=a;const s=o.flat[a];nn.current={shape:s.shape,w:s.w,h:s.h};const l=Object.assign(Object.assign({},be(s)),{__oAccessor:"string"==typeof v?v:void 0,__rAccessor:"string"==typeof b?b:void 0,__chartType:f});_t.current=l,Tt(l),je&&je(l),At()},[je,At]),an=e.useCallback(e=>{tn.current=-1,nn.current=null,Jt(e)},[Jt]);bt.current=()=>{var e,t;mt.current=0;const n=Pt.current;if(!n)return;const o=n.getContext("2d");if(!o)return;const r=zt.current;if(!r)return;const i="undefined"!=typeof performance?performance.now():Date.now(),a=r.advanceTransition(rt.current?i+1e6:i),s=!rt.current&&a,l=et.current;l&&!a&&(r.computeScene({width:ct,height:ut}),et.current=!1),(l||s)&&n.setAttribute("aria-label",lt(r.scene,f+" chart"));const c=Vt(),u=at[0]*c,d=at[1]*c;n.width===u&&n.height===d||(n.width=u,n.height=d,n.style.width=at[0]+"px",n.style.height=at[1]+"px"),o.setTransform(c,0,0,c,0,0),o.clearRect(0,0,at[0],at[1]);const h=null!==(e=null==Ve?void 0:Ve.threshold)&&void 0!==e?e:5e3,g=Ve&&r.lastIngestTime>0&&i-r.lastIngestTime>h;if(g&&(o.globalAlpha=null!==(t=null==Ve?void 0:Ve.dimOpacity)&&void 0!==t?t:.5),"transparent"!==$e&&!Ne){const e=n?getComputedStyle(n).getPropertyValue("--semiotic-bg").trim():"",t=$e||(e&&"transparent"!==e?e:null);t&&(o.fillStyle=t,o.fillRect(0,0,at[0],at[1]))}const p="radial"===j;o.save(),o.beginPath(),o.rect(st.left,st.top,ct,ut),o.clip(),p?(o.save(),o.translate(st.left+ct/2,st.top+ut/2)):o.translate(st.left,st.top);const y=oi[f]||[],m={width:ct,height:ut};for(const e of y)e(o,r.scene,r.scales,m);p&&o.restore(),o.restore(),g&&(o.globalAlpha=1),l&&r.scales&&(Bt(r.scales),It(e=>e+1)),(null==Ve?void 0:Ve.showBadge)&&Ht(!!g),(s||null!=r.activeTransition||r.hasActivePulses)&&(mt.current=requestAnimationFrame(()=>bt.current()))},e.useEffect(()=>(At(),()=>{var e;null===(e=Gt.current)||void 0===e||e.clear()}),[At]),e.useEffect(()=>{et.current=!0,At()},[f,ct,ut,le,$e,At]),xe(Ve,zt,et,At,Nt,Ht);const sn=Wt&&Lt?Me?Me(Lt):p.createElement(ai,{hover:Lt}):null,ln="radial"===j,cn=sn?p.createElement(Ot,{x:Lt?ln?Lt.x+ct/2:Lt.x:0,y:Lt?ln?Lt.y+ut/2:Lt.y:0,containerWidth:ct,containerHeight:ut,margin:st,className:"stream-ordinal-tooltip"},sn):null;if(ot){const e=zt.current;e&&m&&(e.ingest({inserts:m,bounded:!0}),e.computeScene({width:ct,height:ut}));const t=null!==(o=null==e?void 0:e.scene)&&void 0!==o?o:[],n=null!==(r=null==e?void 0:e.scales)&&void 0!==r?r:null,i="radial"===j,a=i?st.left+ct/2:st.left,s=i?st.top+ut/2:st.top;return p.createElement("div",{className:"stream-ordinal-frame"+(Fe?" "+Fe:""),role:"img","aria-label":Ze||("string"==typeof We?We:"Ordinal chart"),style:{position:"relative",width:at[0],height:at[1]}},p.createElement(xt,{summary:Je}),p.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:at[0],height:at[1],style:{position:"absolute",left:0,top:0}},ht&&p.createElement("g",{transform:`translate(${st.left},${st.top})`},ht),p.createElement("g",{transform:`translate(${a},${s})`},$e&&p.createElement("rect",{x:0,y:0,width:ct,height:ut,fill:$e}),t.map((e,t)=>function(e,t){var n,o,r,i,a;const s=("category"in e?e.category:void 0)||("group"in e?e.group:void 0)||"",c=n=>`ord-${e.type}-${s}-${t}-${n}`,u=`ord-${e.type}-${s}-${t}`;switch(e.type){case"rect":{const t=e;if(t.roundedTop&&t.roundedTop>0){const e=Math.min(t.roundedTop,t.w/2,t.h/2),{x:n,y:o,w:r,h:i}=t;let a;switch(t.roundedEdge){case"right":a=`M${n},${o} L${n+r-e},${o} A${e},${e} 0 0 1 ${n+r},${o+e} L${n+r},${o+i-e} A${e},${e} 0 0 1 ${n+r-e},${o+i} L${n},${o+i} Z`;break;case"left":a=`M${n+r},${o} L${n+e},${o} A${e},${e} 0 0 0 ${n},${o+e} L${n},${o+i-e} A${e},${e} 0 0 0 ${n+e},${o+i} L${n+r},${o+i} Z`;break;case"bottom":a=`M${n},${o} L${n+r},${o} L${n+r},${o+i-e} A${e},${e} 0 0 1 ${n+r-e},${o+i} L${n+e},${o+i} A${e},${e} 0 0 1 ${n},${o+i-e} Z`;break;default:a=`M${n},${o+i} L${n},${o+e} A${e},${e} 0 0 1 ${n+e},${o} L${n+r-e},${o} A${e},${e} 0 0 1 ${n+r},${o+e} L${n+r},${o+i} Z`}return p.createElement("path",{key:u,d:a,fill:nt(t.style.fill),opacity:t.style.opacity,stroke:t.style.stroke,strokeWidth:t.style.strokeWidth})}return p.createElement("rect",{key:u,x:t.x,y:t.y,width:t.w,height:t.h,fill:nt(t.style.fill),opacity:t.style.opacity,stroke:t.style.stroke,strokeWidth:t.style.strokeWidth})}case"point":{const t=e;return p.createElement("circle",{key:u,cx:t.x,cy:t.y,r:t.r,fill:nt(t.style.fill),opacity:null!==(n=t.style.opacity)&&void 0!==n?n:.8,stroke:t.style.stroke,strokeWidth:t.style.strokeWidth})}case"wedge":{const t=e,n=l.arc().innerRadius(t.innerRadius).outerRadius(t.outerRadius).startAngle(t.startAngle+Math.PI/2).endAngle(t.endAngle+Math.PI/2);t.cornerRadius&&n.cornerRadius(t.cornerRadius);const o=n({})||"";return p.createElement("path",{key:u,d:o,transform:`translate(${t.cx},${t.cy})`,fill:nt(t.style.fill),stroke:t.style.stroke,strokeWidth:t.style.strokeWidth,opacity:t.style.opacity})}case"boxplot":{const t=e,n=t.columnWidth/2;return"vertical"===t.projection?p.createElement("g",{key:u},p.createElement("line",{x1:t.x,y1:t.minPos,x2:t.x,y2:t.maxPos,stroke:t.style.stroke||"#333",strokeWidth:1}),p.createElement("rect",{x:t.x-n,y:Math.min(t.q1Pos,t.q3Pos),width:t.columnWidth,height:Math.abs(t.q3Pos-t.q1Pos),fill:nt(t.style.fill),fillOpacity:null!==(o=t.style.fillOpacity)&&void 0!==o?o:.6,stroke:t.style.stroke||"#333",strokeWidth:1}),p.createElement("line",{x1:t.x-n,y1:t.medianPos,x2:t.x+n,y2:t.medianPos,stroke:t.style.stroke||"#333",strokeWidth:2}),p.createElement("line",{x1:t.x-.5*n,y1:t.minPos,x2:t.x+.5*n,y2:t.minPos,stroke:t.style.stroke||"#333",strokeWidth:1}),p.createElement("line",{x1:t.x-.5*n,y1:t.maxPos,x2:t.x+.5*n,y2:t.maxPos,stroke:t.style.stroke||"#333",strokeWidth:1})):p.createElement("g",{key:u},p.createElement("line",{x1:t.minPos,y1:t.y,x2:t.maxPos,y2:t.y,stroke:t.style.stroke||"#333",strokeWidth:1}),p.createElement("rect",{x:Math.min(t.q1Pos,t.q3Pos),y:t.y-n,width:Math.abs(t.q3Pos-t.q1Pos),height:t.columnWidth,fill:nt(t.style.fill),fillOpacity:null!==(r=t.style.fillOpacity)&&void 0!==r?r:.6,stroke:t.style.stroke||"#333",strokeWidth:1}),p.createElement("line",{x1:t.medianPos,y1:t.y-n,x2:t.medianPos,y2:t.y+n,stroke:t.style.stroke||"#333",strokeWidth:2}),p.createElement("line",{x1:t.minPos,y1:t.y-.5*n,x2:t.minPos,y2:t.y+.5*n,stroke:t.style.stroke||"#333",strokeWidth:1}),p.createElement("line",{x1:t.maxPos,y1:t.y-.5*n,x2:t.maxPos,y2:t.y+.5*n,stroke:t.style.stroke||"#333",strokeWidth:1}))}case"violin":{const t=e,n=[p.createElement("path",{key:c("path"),d:t.pathString,transform:t.translateX||t.translateY?`translate(${t.translateX},${t.translateY})`:void 0,fill:nt(t.style.fill),fillOpacity:null!==(i=t.style.fillOpacity)&&void 0!==i?i:.6,stroke:t.style.stroke||"#333",strokeWidth:t.style.strokeWidth||1})];if(t.iqrLine&&t.bounds){const e=t.bounds,o=e.x+e.width/2,r=e.y+e.height/2;e.height>e.width?n.push(p.createElement("line",{key:c("iqr"),x1:o,y1:t.iqrLine.q1Pos,x2:o,y2:t.iqrLine.q3Pos,stroke:t.style.stroke||"#333",strokeWidth:2}),p.createElement("circle",{key:c("med"),cx:o,cy:t.iqrLine.medianPos,r:3,fill:"white",stroke:t.style.stroke||"#333",strokeWidth:1})):n.push(p.createElement("line",{key:c("iqr"),x1:t.iqrLine.q1Pos,y1:r,x2:t.iqrLine.q3Pos,y2:r,stroke:t.style.stroke||"#333",strokeWidth:2}),p.createElement("circle",{key:c("med"),cx:t.iqrLine.medianPos,cy:r,r:3,fill:"white",stroke:t.style.stroke||"#333",strokeWidth:1}))}return p.createElement("g",{key:u},n)}case"connector":return p.createElement("line",{key:u,x1:e.x1,y1:e.y1,x2:e.x2,y2:e.y2,stroke:e.style.stroke||"#999",strokeWidth:e.style.strokeWidth||1,opacity:null!==(a=e.style.opacity)&&void 0!==a?a:.5});case"trapezoid":{const t=e,n=t.points.map(e=>`${e[0]},${e[1]}`).join(" ");return p.createElement("polygon",{key:u,points:n,fill:nt(t.style.fill,"#999"),opacity:t.style.opacity,stroke:t.style.stroke,strokeWidth:t.style.strokeWidth})}default:return null}}(e,t)).filter(Boolean))),p.createElement(Fr,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:st,scales:n,showAxes:le,showCategoryTicks:ce,oLabel:Et,rLabel:Mt,oFormat:jt,rFormat:Ct,rTickValues:Ae,tickLabelEdgeAlign:Se,showGrid:_e,title:We,legend:Le,legendHoverBehavior:Te,legendClickBehavior:Re,legendHighlightedCategory:Be,legendIsolatedCategories:De,legendPosition:Ie,foregroundGraphics:dt,annotations:Ce,svgAnnotationRules:Pe,annotationFrame:0,xAccessor:"string"==typeof v?v:void 0,yAccessor:"string"==typeof b?b:void 0,annotationData:null==e?void 0:e.getData()}),ze&&"radial"===j&&p.createElement("div",{style:{position:"absolute",left:st.left+ct/2,top:st.top+ut/2,transform:"translate(-50%, -50%)",pointerEvents:"none",textAlign:"center"}},ze))}return p.createElement("div",{ref:it,className:"stream-ordinal-frame"+(Fe?" "+Fe:""),role:"group","aria-label":Ze||("string"==typeof We?We:"Ordinal chart"),tabIndex:0,style:{position:"relative",width:P?"100%":at[0],height:_?"100%":at[1],overflow:"visible"},onKeyDown:rn},Qe&&p.createElement(kt,{tableId:yt}),Qe&&p.createElement(vt,{scene:null!==(a=null===(i=zt.current)||void 0===i?void 0:i.scene)&&void 0!==a?a:[],chartType:f+" chart",tableId:yt,chartTitle:"string"==typeof We?We:void 0}),p.createElement(xt,{summary:Je}),p.createElement("div",{role:"img","aria-label":Ze||("string"==typeof We?We:"Ordinal chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:Wt?an:void 0,onMouseLeave:Wt?en:void 0},ht&&p.createElement("svg",{style:{position:"absolute",top:0,left:0,width:at[0],height:at[1],pointerEvents:"none"}},p.createElement("g",{transform:`translate(${st.left},${st.top})`},ht)),p.createElement(Hr,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:st,scales:Rt,showAxes:le,showGrid:_e,rFormat:Ct,rTickValues:Ae}),p.createElement("canvas",{ref:Pt,"aria-label":lt(null!==(c=null===(s=zt.current)||void 0===s?void 0:s.scene)&&void 0!==c?c:[],f+" chart"),style:{position:"absolute",top:0,left:0,width:at[0],height:at[1]}}),p.createElement(wt,{hoverPoint:Lt}),p.createElement(Fr,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:st,scales:Rt,showAxes:le,showCategoryTicks:ce,oLabel:Et,rLabel:Mt,oFormat:jt,rFormat:Ct,showGrid:_e,title:We,legend:Le,legendHoverBehavior:Te,legendClickBehavior:Re,legendHighlightedCategory:Be,legendIsolatedCategories:De,legendPosition:Ie,foregroundGraphics:dt,annotations:Ce,svgAnnotationRules:Pe,annotationFrame:Dt,xAccessor:"string"==typeof v?v:void 0,yAccessor:"string"==typeof b?b:void 0,annotationData:null===(u=zt.current)||void 0===u?void 0:u.getData(),underlayRendered:!0}),(Ue||Ke)&&"radial"!==j&&p.createElement($r,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:st,scales:Rt,onBrush:Ke||(()=>{})}),ze&&"radial"===j&&p.createElement("div",{style:{position:"absolute",left:st.left+ct/2,top:st.top+ut/2,transform:"translate(-50%, -50%)",pointerEvents:"none",textAlign:"center"}},ze),(null==Ve?void 0:Ve.showBadge)&&p.createElement("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===Ve.badgePosition?{top:4,left:4}:"bottom-left"===Ve.badgePosition?{bottom:4,left:4}:"bottom-right"===Ve.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{padding:"2px 8px",borderRadius:4,fontSize:11,fontWeight:600,pointerEvents:"none",background:Nt?"#dc3545":"#28a745",color:"white"})},Nt?"STALE":"LIVE"),p.createElement(St,{active:tn.current>=0,hoverPoint:Lt,margin:st,size:at,shape:null===(d=nn.current)||void 0===d?void 0:d.shape,width:null===(h=nn.current)||void 0===h?void 0:h.w,height:null===(g=nn.current)||void 0===g?void 0:g.h}),cn))});si.displayName="StreamOrdinalFrame";const li=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",orientation:u="vertical",valueFormat:d,colorBy:h,colorScheme:g,sort:f=!1,barPadding:y=40,roundedTop:m,baselinePadding:v=!1,tooltip:b,annotations:x,frameProps:k={},selection:w,linkedHover:A,onObservation:S,onClick:O,hoverHighlight:E,chartId:M,loading:j,emptyContent:C,legendInteraction:P,legendPosition:_,color:L,showCategoryTicks:R,categoryFormat:B,dataIdAccessor:D}=t,I=o.width,N=o.height,H=o.enableHover,W=o.showGrid,F=o.title,$=o.description,z=o.summary,G=o.accessibleTable,Y=o.categoryLabel,q=o.valueLabel,X=i||[],V=ur({data:X,rawData:i,colorBy:h,colorScheme:g,legendInteraction:P,legendPosition:_,selection:w,linkedHover:A,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!0,onObservation:S,onClick:O,hoverHighlight:E,chartType:"BarChart",chartId:M,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:j,emptyContent:C,width:I,height:N});if(V.earlyReturn)return V.earlyReturn;er("BarChart",X,"categoryAccessor",l),er("BarChart",X,"valueAccessor",c);const U=to(X,f,c),K=Qn(),Q=e.useMemo(()=>new Map,[X]),Z=e.useMemo(()=>(e,t)=>{const n={};return n.fill=h?T(e,h,V.colorScale):Zn(L,K,g,void 0,Q),n},[h,V.colorScale,L,K,g,Q]),J=e.useMemo(()=>{const e=null==k?void 0:k.pieceStyle;return e&&"function"==typeof e?(t,n)=>Object.assign(Object.assign({},Z(t,n)),e(t,n)||{}):Z},[Z,k]),ee=e.useMemo(()=>zn(J,V.effectiveSelectionHook,V.resolvedSelection),[J,V.effectiveSelectionHook,V.resolvedSelection]),te=e.useMemo(()=>xo({categoryAccessor:l,valueAccessor:c,groupAccessor:h&&h!==l?h:void 0,groupLabel:"string"==typeof h?h:"group",valueFormat:d}),[l,c,h,d]),ne=Mo({componentName:"BarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(ne)return p.createElement(ko,{componentName:"BarChart",message:ne,width:I,height:N});const oe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bar"},null!=i&&{data:U}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",pieceStyle:ee,size:[I,N],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:V.margin,barPadding:y}),null!=m&&{roundedTop:m}),D&&{dataIdAccessor:D}),{baselinePadding:v,enableHover:H,showAxes:o.showAxes,oLabel:Y,rLabel:q,rFormat:d}),B&&{oFormat:B}),{showGrid:W,showCategoryTicks:R,oSort:f}),V.legendBehaviorProps),F&&{title:F}),$&&{description:$}),z&&{summary:z}),void 0!==G&&{accessibleTable:G}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===b?()=>null:fo(b)||te}),(A||S||O||E)&&{customHoverBehavior:V.customHoverBehavior}),(S||O||A)&&{customClickBehavior:V.customClickBehavior}),x&&x.length>0&&{annotations:x}),Object.fromEntries(Object.entries(k).filter(([e])=>"pieceStyle"!==e)));return p.createElement(Uo,{componentName:"BarChart",width:I,height:N},p.createElement(si,Object.assign({ref:r},oe)))});function ci({ref:t,frameRef:n,isPushMode:o,colorBy:r,colorScheme:i,showLegend:a,legendPosition:s,setup:l}){const c=lr({isPushMode:o,colorBy:r,colorScheme:i,showLegend:a,legendPosition:s}),u=e.useCallback(c.wrapPush(e=>{var t;return null===(t=n.current)||void 0===t?void 0:t.push(e)}),[c.wrapPush]),d=e.useCallback(c.wrapPushMany(e=>{var t;return null===(t=n.current)||void 0===t?void 0:t.pushMany(e)}),[c.wrapPushMany]);return e.useImperativeHandle(t,()=>({push:u,pushMany:d,remove:e=>{var t,o;return null!==(o=null===(t=n.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,r;return null!==(r=null===(o=n.current)||void 0===o?void 0:o.update(e,t))&&void 0!==r?r:[]},clear:()=>{var e;c.resetCategories(),null===(e=n.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=n.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]}}),[u,d,c.resetCategories]),{effectiveLegendProps:e.useMemo(()=>c.streamingLegend?Object.assign(Object.assign({},l.legendBehaviorProps),{legend:c.streamingLegend,legendPosition:s||l.legendPosition}):l.legendBehaviorProps,[l.legendBehaviorProps,l.legendPosition,c.streamingLegend,s]),effectiveMargin:e.useMemo(()=>{if(c.streamingMarginAdjust){const e=Object.assign({},l.margin);for(const[t,n]of Object.entries(c.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return l.margin},[l.margin,c.streamingMarginAdjust])}}li.displayName="BarChart";const ui=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),r=e.useRef(null),{data:i,margin:a,className:s,categoryAccessor:l="category",stackBy:c,valueAccessor:u="value",orientation:d="vertical",valueFormat:h,colorBy:g,colorScheme:f,normalize:y=!1,sort:m=!1,barPadding:v=40,roundedTop:b,baselinePadding:x=!1,tooltip:k,annotations:w,frameProps:A={},selection:S,linkedHover:O,onObservation:E,onClick:M,hoverHighlight:j,chartId:C,loading:P,emptyContent:_,legendInteraction:L,legendPosition:R,color:B,categoryFormat:D}=t,I=o.width,N=o.height,H=o.enableHover,W=o.showGrid,F=o.showLegend,$=o.title,z=o.description,G=o.summary,Y=o.accessibleTable,q=o.categoryLabel,X=o.valueLabel,V=i||[],U=g||c,K=void 0===i,Q=ur({data:V,rawData:i,colorBy:U,colorScheme:f,legendInteraction:L,legendPosition:R,selection:S,linkedHover:O,fallbackFields:U?["string"==typeof U?U:""]:[],unwrapData:!0,onObservation:E,onClick:M,hoverHighlight:j,chartType:"StackedBarChart",chartId:C,showLegend:F,userMargin:a,marginDefaults:o.marginDefaults,loading:P,emptyContent:_,width:I,height:N});if(Q.earlyReturn)return Q.earlyReturn;const Z=Qn(),J=e.useMemo(()=>new Map,[V]),ee=e.useMemo(()=>(e,t)=>U?Q.colorScale?{fill:T(e,U,Q.colorScale)}:{}:{fill:Zn(B,Z,f,t,J)},[U,Q.colorScale,B,Z,f,J]),te=e.useMemo(()=>{const e=null==A?void 0:A.pieceStyle;return e&&"function"==typeof e?(t,n)=>{const o=ee(t,n),r=e(t,n)||{};return Object.assign(Object.assign({},o),r)}:ee},[ee,A]),ne=e.useMemo(()=>zn(te,Q.effectiveSelectionHook,Q.resolvedSelection),[te,Q.effectiveSelectionHook,Q.resolvedSelection]),oe=e.useMemo(()=>xo({categoryAccessor:c,valueAccessor:u,groupAccessor:l,valueFormat:h}),[c,l,u,h]),re=Mo({componentName:"StackedBarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:u},requiredProps:{stackBy:c}}),{effectiveLegendProps:ie,effectiveMargin:ae}=ci({ref:n,frameRef:r,isPushMode:K,colorBy:U,colorScheme:f,showLegend:F,legendPosition:R,setup:Q}),se=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bar"},null!=i&&{data:V}),{oAccessor:l,rAccessor:u,stackBy:c,normalize:y,oSort:m,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:ne,size:[I,N],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ae,barPadding:v}),null!=b&&{roundedTop:b}),{baselinePadding:x,enableHover:H}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:o.showAxes,oLabel:q,rLabel:X,rFormat:h}),D&&{oFormat:D}),{showGrid:W}),ie),$&&{title:$}),z&&{description:z}),G&&{summary:G}),void 0!==Y&&{accessibleTable:Y}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===k?()=>null:fo(k)||oe}),(O||E||M||j)&&{customHoverBehavior:Q.customHoverBehavior}),(E||M||O)&&{customClickBehavior:Q.customClickBehavior}),w&&w.length>0&&{annotations:w}),Object.fromEntries(Object.entries(A).filter(([e])=>"pieceStyle"!==e)));return re?p.createElement(ko,{componentName:"StackedBarChart",message:re,width:I,height:N}):p.createElement(Uo,{componentName:"StackedBarChart",width:I,height:N},p.createElement(si,Object.assign({ref:r},se)))});ui.displayName="StackedBarChart";const di=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),r=e.useRef(null),{data:i,margin:a,className:s,categoryAccessor:l="category",groupBy:c,valueAccessor:u="value",orientation:d="vertical",valueFormat:h,colorBy:g,colorScheme:f,sort:y=!1,barPadding:m=60,roundedTop:v,baselinePadding:b=!1,tooltip:x,annotations:k,frameProps:w={},selection:A,linkedHover:S,onObservation:O,onClick:E,hoverHighlight:M,chartId:j,loading:C,emptyContent:P,legendInteraction:_,legendPosition:L,color:R,categoryFormat:B}=t,D=o.width,I=o.height,N=o.enableHover,H=o.showGrid,W=o.showLegend,F=o.title,$=o.description,z=o.summary,G=o.accessibleTable,Y=o.categoryLabel,q=o.valueLabel,X=i||[],V=g||c,U=void 0===i,K=ur({data:X,rawData:i,colorBy:V,colorScheme:f,legendInteraction:_,legendPosition:L,selection:A,linkedHover:S,fallbackFields:V?["string"==typeof V?V:""]:[],unwrapData:!0,onObservation:O,onClick:E,hoverHighlight:M,chartType:"GroupedBarChart",chartId:j,showLegend:W,userMargin:a,marginDefaults:o.marginDefaults,loading:C,emptyContent:P,width:D,height:I});if(K.earlyReturn)return K.earlyReturn;const Q=Qn(),Z=e.useMemo(()=>new Map,[X]),J=w.pieceStyle,ee=e.useMemo(()=>(e,t)=>{const n=V?K.colorScale?{fill:T(e,V,K.colorScale)}:{}:{fill:Zn(R,Q,f,t,Z)};if(J){const o=J(e,t);o.stroke&&(n.stroke=o.stroke),null!=o.strokeWidth&&(n.strokeWidth=o.strokeWidth),null!=o.strokeOpacity&&(n.strokeOpacity=o.strokeOpacity)}return n},[V,K.colorScale,R,Q,f,Z,J]),te=e.useMemo(()=>zn(ee,K.effectiveSelectionHook,K.resolvedSelection),[ee,K.effectiveSelectionHook,K.resolvedSelection]),ne=e.useMemo(()=>xo({categoryAccessor:c,valueAccessor:u,groupAccessor:l,valueFormat:h}),[c,l,u,h]),oe=Mo({componentName:"GroupedBarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:u},requiredProps:{groupBy:c}}),{effectiveLegendProps:re,effectiveMargin:ie}=ci({ref:n,frameRef:r,isPushMode:U,colorBy:V,colorScheme:f,showLegend:W,legendPosition:L,setup:K}),ae=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"clusterbar"},null!=i&&{data:X}),{oAccessor:l,rAccessor:u,groupBy:c,oSort:y,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:te,size:[D,I],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ie,barPadding:m}),null!=v&&{roundedTop:v}),{baselinePadding:b,enableHover:N}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:o.showAxes,oLabel:Y,rLabel:q,rFormat:h}),B&&{oFormat:B}),{showGrid:H}),re),F&&{title:F}),$&&{description:$}),z&&{summary:z}),void 0!==G&&{accessibleTable:G}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===x?()=>null:fo(x)||ne}),(S||O||E||M)&&{customHoverBehavior:K.customHoverBehavior}),(O||E||S)&&{customClickBehavior:K.customClickBehavior}),k&&k.length>0&&{annotations:k}),Object.fromEntries(Object.entries(w).filter(([e])=>"pieceStyle"!==e)));return oe?p.createElement(ko,{componentName:"GroupedBarChart",message:oe,width:D,height:I}):p.createElement(Uo,{componentName:"GroupedBarChart",width:D,height:I},p.createElement(si,Object.assign({ref:r},ae)))});function hi({brushProp:t,onBrushProp:n,linkedBrush:o,valueAccessor:r}){const i=$n("string"==typeof o?o:o?{name:o.name,xField:o.rField}:void 0),a=Bn({name:(null==i?void 0:i.name)||"__unused_ordinal_brush__",xField:(null==i?void 0:i.xField)||("string"==typeof r?r:"value")}),s=e.useRef(a.brushInteraction);s.current=a.brushInteraction;const l=e.useCallback(e=>{if(i){s.current.end(e?e.r:null)}null==n||n(e)},[n,i]),c=!!(t||o||n);return{hasBrush:c,handleBrush:l,brushStreamProps:c?{brush:{dimension:"r"},onBrush:l}:{}}}di.displayName="GroupedBarChart";const gi=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",orientation:u="vertical",valueFormat:d,colorBy:h,colorScheme:g,sizeBy:f,sizeRange:y=[3,8],pointRadius:m=4,pointOpacity:v=.7,categoryPadding:b=20,tooltip:x,annotations:k,brush:w,onBrush:A,linkedBrush:S,frameProps:O={},selection:E,linkedHover:M,onObservation:j,onClick:C,hoverHighlight:P,chartId:_,loading:L,emptyContent:R,legendInteraction:D,legendPosition:I,color:N,showCategoryTicks:H,categoryFormat:W}=t,F=o.width,$=o.height,z=o.enableHover,G=o.showGrid,Y=o.title,q=o.description,X=o.summary,V=o.accessibleTable,U=o.categoryLabel,K=o.valueLabel,Q=i||[],Z=ur({data:Q,rawData:i,colorBy:h,colorScheme:g,legendInteraction:D,legendPosition:I,selection:E,linkedHover:M,fallbackFields:h?["string"==typeof h?h:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:j,onClick:C,hoverHighlight:P,chartType:"SwarmPlot",chartId:_,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:L,emptyContent:R,width:F,height:$}),J=hi({brushProp:w,onBrushProp:A,linkedBrush:S,valueAccessor:c});if(Z.earlyReturn)return Z.earlyReturn;const ee=e.useMemo(()=>{if(!f)return;const e=Q.map(e=>"function"==typeof f?f(e):e[f]);return[Math.min(...e),Math.max(...e)]},[Q,f]),te=Qn(),ne=e.useMemo(()=>new Map,[Q]),oe=O.pieceStyle,re=e.useMemo(()=>(e,t)=>{const n={fillOpacity:v};if(n.fill=h?T(e,h,Z.colorScale):Zn(N,te,g,void 0,ne),n.r=f?B(e,f,y,ee):m,oe){const o=oe(e,t);o.stroke&&(n.stroke=o.stroke),null!=o.strokeWidth&&(n.strokeWidth=o.strokeWidth),null!=o.strokeOpacity&&(n.strokeOpacity=o.strokeOpacity)}return n},[h,Z.colorScale,f,y,ee,m,v,N,te,g,ne,oe]),ie=e.useMemo(()=>zn(re,Z.effectiveSelectionHook,Z.resolvedSelection),[re,Z.effectiveSelectionHook,Z.resolvedSelection]),ae=e.useMemo(()=>xo({categoryAccessor:l,valueAccessor:c,groupAccessor:h||void 0,valueFormat:d}),[l,c,h,d]),se=Mo({componentName:"SwarmPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(se)return p.createElement(ko,{componentName:"SwarmPlot",message:se,width:F,height:$});const le=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"swarm"},null!=i&&{data:Q}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",pieceStyle:ie,size:[F,$],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Z.margin,barPadding:b,enableHover:z}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:o.showAxes,oLabel:U,rLabel:K,rFormat:d}),W&&{oFormat:W}),{showGrid:G,showCategoryTicks:H}),Z.legendBehaviorProps),Y&&{title:Y}),q&&{description:q}),X&&{summary:X}),void 0!==V&&{accessibleTable:V}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===x?()=>null:fo(x)||ae}),(M||j||C||P)&&{customHoverBehavior:Z.customHoverBehavior}),(j||C||M)&&{customClickBehavior:Z.customClickBehavior}),k&&k.length>0&&{annotations:k}),J.brushStreamProps),Object.fromEntries(Object.entries(O).filter(([e])=>"pieceStyle"!==e)));return p.createElement(Uo,{componentName:"SwarmPlot",width:F,height:$},p.createElement(si,Object.assign({ref:r},le)))});function fi(e){return t=>{var n;const o=t.category||t.data&&(null===(n=t.data[0])||void 0===n?void 0:n.category)||"",r=t.stats||(t.data||t).stats;if(r&&null!=r.median)return p.createElement("div",{className:"semiotic-tooltip",style:co},o&&p.createElement("div",{style:{fontWeight:"bold"}},o+""),null!=r.n&&p.createElement("div",null,"n = ",r.n),null!=r.min&&p.createElement("div",null,"Min: ",r.min.toLocaleString()),null!=r.q1&&p.createElement("div",null,"Q1: ",r.q1.toLocaleString()),p.createElement("div",null,"Median: ",r.median.toLocaleString()),null!=r.q3&&p.createElement("div",null,"Q3: ",r.q3.toLocaleString()),null!=r.max&&p.createElement("div",null,"Max: ",r.max.toLocaleString()),null!=r.mean&&p.createElement("div",{style:{opacity:.8}},"Mean: ",r.mean.toLocaleString(void 0,{maximumFractionDigits:2})));if(null==e?void 0:e.valueAccessor){const n=e.valueAccessor,r=(Array.isArray(t.data)?t.data:[]).map(e=>Number("function"==typeof n?n(e):e[n])).filter(e=>Number.isFinite(e)).sort((e,t)=>e-t),i=r.length,a=i>0?i%2!=0?r[Math.floor(i/2)]:(r[i/2-1]+r[i/2])/2:null;return p.createElement("div",{className:"semiotic-tooltip",style:co},o&&p.createElement("div",{style:{fontWeight:"bold"}},o+""),i>0&&p.createElement("div",null,"n = ",i),null!=a&&p.createElement("div",null,"Median: ",a.toLocaleString()))}return p.createElement("div",{className:"semiotic-tooltip",style:co},p.createElement("div",{style:{fontWeight:"bold"}},o+""))}}gi.displayName="SwarmPlot";const pi=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",orientation:u="vertical",valueFormat:d,colorBy:h,colorScheme:g,showOutliers:f=!0,categoryPadding:y=20,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:A,hoverHighlight:S,chartId:O,loading:E,emptyContent:M,legendInteraction:j,legendPosition:C,color:P,showCategoryTicks:_,categoryFormat:L}=t,R=o.width,B=o.height,D=o.enableHover,I=o.showGrid,N=o.title,H=o.description,W=o.summary,F=o.accessibleTable,$=o.categoryLabel,z=o.valueLabel,G=i||[],Y=ur({data:G,rawData:i,colorBy:h,colorScheme:g,legendInteraction:j,legendPosition:C,selection:x,linkedHover:k,fallbackFields:h?["string"==typeof h?h:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:w,onClick:A,hoverHighlight:S,chartType:"BoxPlot",chartId:O,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:E,emptyContent:M,width:R,height:B});if(Y.earlyReturn)return Y.earlyReturn;const q=Qn(),X=e.useMemo(()=>new Map,[G]),V=e.useMemo(()=>e=>{const t=h?T(e,h,Y.colorScale):Zn(P,q,g,void 0,X);return{fill:t,stroke:t,fillOpacity:.8}},[h,Y.colorScale,P,q,g,X]),U=e.useMemo(()=>zn(V,Y.effectiveSelectionHook,Y.resolvedSelection),[V,Y.effectiveSelectionHook,Y.resolvedSelection]),K=e.useMemo(()=>fi(),[]),Q=Mo({componentName:"BoxPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(Q)return p.createElement(ko,{componentName:"BoxPlot",message:Q,width:R,height:B});const Z=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"boxplot"},null!=i&&{data:G}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",summaryStyle:U,showOutliers:f,size:[R,B],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Y.margin,barPadding:y,enableHover:D}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:o.showAxes,oLabel:$,rLabel:z,rFormat:d}),L&&{oFormat:L}),{showGrid:I,showCategoryTicks:_}),Y.legendBehaviorProps),N&&{title:N}),H&&{description:H}),W&&{summary:W}),void 0!==F&&{accessibleTable:F}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===m?()=>null:fo(m)||K}),(k||w||A||S)&&{customHoverBehavior:Y.customHoverBehavior}),(w||A||k)&&{customClickBehavior:Y.customClickBehavior}),v&&v.length>0&&{annotations:v}),Object.fromEntries(Object.entries(b).filter(([e])=>"pieceStyle"!==e)));return p.createElement(Uo,{componentName:"BoxPlot",width:R,height:B},p.createElement(si,Object.assign({ref:r},Z)))});pi.displayName="BoxPlot";const yi=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:"horizontal"}),r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",bins:u=25,relative:d=!1,valueFormat:h,colorBy:g,colorScheme:f,categoryPadding:y=20,tooltip:m,annotations:v,brush:b,onBrush:x,linkedBrush:k,frameProps:w={},selection:A,linkedHover:S,onObservation:O,onClick:E,hoverHighlight:M,chartId:j,loading:C,emptyContent:P,legendInteraction:_,legendPosition:L,color:R,showCategoryTicks:B,categoryFormat:D}=t,I=o.width,N=o.height,H=o.enableHover,W=o.showGrid,F=o.title,$=o.description,z=o.summary,G=o.accessibleTable,Y=o.categoryLabel,q=o.valueLabel,X=i||[],V=ur({data:X,rawData:i,colorBy:g,colorScheme:f,legendInteraction:_,legendPosition:L,selection:A,linkedHover:S,fallbackFields:g?["string"==typeof g?g:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:O,onClick:E,hoverHighlight:M,chartType:"Histogram",chartId:j,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:C,emptyContent:P,width:I,height:N}),U=hi({brushProp:b,onBrushProp:x,linkedBrush:k,valueAccessor:c});if(V.earlyReturn)return V.earlyReturn;const K=e.useMemo(()=>{if(0===X.length)return;const e="function"==typeof c?c:e=>e[c];let t=1/0,n=-1/0;for(const o of X){const r=e(o);null!=r&&isFinite(r)&&(t>r&&(t=r),r>n&&(n=r))}return t>n?void 0:[t,n]},[X,c]),Q=Qn(),Z=e.useMemo(()=>new Map,[X]),J=e.useMemo(()=>e=>{const t=g?T(e,g,V.colorScale):Zn(R,Q,f,void 0,Z);return{fill:t,stroke:t,fillOpacity:.8}},[g,V.colorScale,R,Q,f,Z]),ee=e.useMemo(()=>zn(J,V.effectiveSelectionHook,V.resolvedSelection),[J,V.effectiveSelectionHook,V.resolvedSelection]),te=e.useMemo(()=>e=>{const t=e.data||e,n=t.category||e.category||"",o=t.count,r=t.range;return p.createElement("div",{className:"semiotic-tooltip",style:co},n&&p.createElement("div",{style:{fontWeight:"bold"}},n+""),null!=o&&p.createElement("div",null,"Count: ",o),r&&2===r.length&&p.createElement("div",{style:{opacity:.8}},Number(r[0]).toFixed(1)," – ",Number(r[1]).toFixed(1)))},[]),ne=Mo({componentName:"Histogram",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(ne)return p.createElement(ko,{componentName:"Histogram",message:ne,width:I,height:N});const oe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"histogram"},null!=i&&{data:X}),{oAccessor:l,rAccessor:c,projection:"horizontal",summaryStyle:ee,bins:u,normalize:d}),K&&{rExtent:K}),{size:[I,N],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:V.margin,barPadding:y,enableHover:H}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:o.showAxes,oLabel:Y,rLabel:q,rFormat:h}),D&&{oFormat:D}),{showGrid:W,showCategoryTicks:B}),V.legendBehaviorProps),F&&{title:F}),$&&{description:$}),z&&{summary:z}),void 0!==G&&{accessibleTable:G}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===m?()=>null:fo(m)||te}),(S||O||E||M)&&{customHoverBehavior:V.customHoverBehavior}),(O||E||S)&&{customClickBehavior:V.customClickBehavior}),v&&v.length>0&&{annotations:v}),U.brushStreamProps),Object.fromEntries(Object.entries(w).filter(([e])=>"pieceStyle"!==e)));return p.createElement(Uo,{componentName:"Histogram",width:I,height:N},p.createElement(si,Object.assign({ref:r},oe)))});yi.displayName="Histogram";const mi=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",orientation:u="vertical",bins:d=25,showIQR:h=!0,valueFormat:g,colorBy:f,colorScheme:y,categoryPadding:m=20,tooltip:v,annotations:b,brush:x,onBrush:k,linkedBrush:w,frameProps:A={},selection:S,linkedHover:O,onObservation:E,onClick:M,hoverHighlight:j,chartId:C,loading:P,emptyContent:_,legendInteraction:L,legendPosition:R,color:B,showCategoryTicks:D,categoryFormat:I}=t,N=o.width,H=o.height,W=o.enableHover,F=o.showGrid,$=o.title,z=o.description,G=o.summary,Y=o.accessibleTable,q=o.categoryLabel,X=o.valueLabel,V=i||[],U=ur({data:V,rawData:i,colorBy:f,colorScheme:y,legendInteraction:L,legendPosition:R,selection:S,linkedHover:O,fallbackFields:f?["string"==typeof f?f:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:E,onClick:M,hoverHighlight:j,chartType:"ViolinPlot",chartId:C,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:P,emptyContent:_,width:N,height:H}),K=hi({brushProp:x,onBrushProp:k,linkedBrush:w,valueAccessor:c});if(U.earlyReturn)return U.earlyReturn;const Q=Qn(),Z=e.useMemo(()=>new Map,[V]),J=e.useMemo(()=>e=>{const t=f?T(e,f,U.colorScale):Zn(B,Q,y,void 0,Z);return{fill:t,stroke:t,fillOpacity:.6}},[f,U.colorScale,B,Q,y,Z]),ee=e.useMemo(()=>zn(J,U.effectiveSelectionHook,U.resolvedSelection),[J,U.effectiveSelectionHook,U.resolvedSelection]),te=e.useMemo(()=>fi({valueAccessor:c}),[c]),ne=Mo({componentName:"ViolinPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(ne)return p.createElement(ko,{componentName:"ViolinPlot",message:ne,width:N,height:H});const oe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"violin"},null!=i&&{data:V}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",summaryStyle:ee,bins:d,showIQR:h,size:[N,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:U.margin,barPadding:m,enableHover:W}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:o.showAxes,oLabel:q,rLabel:X,rFormat:g}),I&&{oFormat:I}),{showGrid:F,showCategoryTicks:D}),U.legendBehaviorProps),$&&{title:$}),z&&{description:z}),G&&{summary:G}),void 0!==Y&&{accessibleTable:Y}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===v?()=>null:fo(v)||te}),(O||E||M||j)&&{customHoverBehavior:U.customHoverBehavior}),(E||M||O)&&{customClickBehavior:U.customClickBehavior}),b&&b.length>0&&{annotations:b}),K.brushStreamProps),Object.fromEntries(Object.entries(A).filter(([e])=>"pieceStyle"!==e)));return p.createElement(Uo,{componentName:"ViolinPlot",width:N,height:H},p.createElement(si,Object.assign({ref:r},oe)))});mi.displayName="ViolinPlot";const vi=e.forwardRef(function(t,n){var o;const r=so(t.mode,{width:t.width,height:t.height,showGrid:null===(o=t.showGrid)||void 0===o||o,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),i=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=i.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=i.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=i.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=i.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=i.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:a,margin:s,className:l,categoryAccessor:c="category",valueAccessor:u="value",orientation:d="horizontal",valueFormat:h,colorBy:g,colorScheme:f,sort:y="auto",dotRadius:m=5,categoryPadding:v=10,tooltip:b,annotations:x,frameProps:k={},selection:w,linkedHover:A,onObservation:S,onClick:O,hoverHighlight:E,chartId:M,loading:j,emptyContent:C,legendInteraction:P,legendPosition:_,color:L,categoryFormat:R}=t,B=r.width,D=r.height,I=r.enableHover,N=r.showGrid,H=r.title,W=r.description,F=r.summary,$=r.accessibleTable,z=r.categoryLabel,G=r.valueLabel,Y=a||[],q=ur({data:Y,rawData:a,colorBy:g,colorScheme:f,legendInteraction:P,legendPosition:_,selection:w,linkedHover:A,fallbackFields:g?["string"==typeof g?g:""]:["string"==typeof c?c:""],unwrapData:!0,onObservation:S,onClick:O,hoverHighlight:E,chartType:"DotPlot",chartId:M,showLegend:r.showLegend,userMargin:s,marginDefaults:r.marginDefaults,loading:j,emptyContent:C,width:B,height:D});if(q.earlyReturn)return q.earlyReturn;const X=to(Y,y,u),V=Qn(),U=e.useMemo(()=>new Map,[Y]),K=k.pieceStyle,Q=e.useMemo(()=>(e,t)=>{const n={r:m,fillOpacity:.8};if(n.fill=g?T(e,g,q.colorScale):Zn(L,V,f,void 0,U),K){const o=K(e,t);o.stroke&&(n.stroke=o.stroke),null!=o.strokeWidth&&(n.strokeWidth=o.strokeWidth),null!=o.strokeOpacity&&(n.strokeOpacity=o.strokeOpacity)}return n},[g,q.colorScale,m,L,V,f,U,K]),Z=e.useMemo(()=>zn(Q,q.effectiveSelectionHook,q.resolvedSelection),[Q,q.effectiveSelectionHook,q.resolvedSelection]),J=e.useMemo(()=>xo({categoryAccessor:c,valueAccessor:u,valueFormat:h}),[c,u,h]),ee=Mo({componentName:"DotPlot",data:a,accessors:{categoryAccessor:c,valueAccessor:u}});if(ee)return p.createElement(ko,{componentName:"DotPlot",message:ee,width:B,height:D});const te=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"point"},null!=a&&{data:X}),{oAccessor:c,rAccessor:u,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:Z,size:[B,D],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:q.margin,barPadding:v,enableHover:I}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:r.showAxes,oLabel:z,rLabel:G,rFormat:h}),R&&{oFormat:R}),{showGrid:N,oSort:y}),q.legendBehaviorProps),H&&{title:H}),W&&{description:W}),F&&{summary:F}),void 0!==$&&{accessibleTable:$}),l&&{className:l}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===b?()=>null:fo(b)||J}),(A||S||O||E)&&{customHoverBehavior:q.customHoverBehavior}),(S||O||A)&&{customClickBehavior:q.customClickBehavior}),x&&x.length>0&&{annotations:x}),Object.fromEntries(Object.entries(k).filter(([e])=>"pieceStyle"!==e)));return p.createElement(Uo,{componentName:"DotPlot",width:B,height:D},p.createElement(si,Object.assign({ref:i},te)))});vi.displayName="DotPlot";const bi=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",orientation:u="horizontal",bins:d=20,amplitude:h=1.5,valueFormat:g,colorBy:f,colorScheme:y,categoryPadding:m=5,tooltip:v,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:A,onClick:S,hoverHighlight:O,chartId:E,loading:M,emptyContent:j,legendInteraction:C,legendPosition:P,color:_,showCategoryTicks:L,categoryFormat:R}=t,B=o.width,D=o.height,I=o.enableHover,N=o.showGrid,H=o.title,W=o.description,F=o.summary,$=o.accessibleTable,z=o.categoryLabel,G=o.valueLabel,Y=i||[],q=ur({data:Y,rawData:i,colorBy:f,colorScheme:y,legendInteraction:C,legendPosition:P,selection:k,linkedHover:w,fallbackFields:f?["string"==typeof f?f:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:A,onClick:S,hoverHighlight:O,chartType:"RidgelinePlot",chartId:E,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:M,emptyContent:j,width:B,height:D});if(q.earlyReturn)return q.earlyReturn;const X=Qn(),V=e.useMemo(()=>new Map,[Y]),U=e.useMemo(()=>e=>{const t=f?T(e,f,q.colorScale):Zn(_,X,y,void 0,V);return{fill:t,stroke:t,fillOpacity:.5}},[f,q.colorScale,_,X,y,V]),K=e.useMemo(()=>zn(U,q.effectiveSelectionHook,q.resolvedSelection),[U,q.effectiveSelectionHook,q.resolvedSelection]),Q=e.useMemo(()=>fi(),[]),Z=Mo({componentName:"RidgelinePlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(Z)return p.createElement(ko,{componentName:"RidgelinePlot",message:Z,width:B,height:D});const J=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"ridgeline"},null!=i&&{data:Y}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",summaryStyle:K,bins:d,size:[B,D],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:q.margin,barPadding:m,enableHover:I}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:o.showAxes,oLabel:z,rLabel:G,rFormat:g}),R&&{oFormat:R}),{showGrid:N,showCategoryTicks:L,oSort:!1,amplitude:h}),q.legendBehaviorProps),H&&{title:H}),W&&{description:W}),F&&{summary:F}),void 0!==$&&{accessibleTable:$}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===v?()=>null:fo(v)||Q}),(w||A||S||O)&&{customHoverBehavior:q.customHoverBehavior}),(A||S||w)&&{customClickBehavior:q.customClickBehavior}),b&&b.length>0&&{annotations:b}),Object.fromEntries(Object.entries(x).filter(([e])=>"pieceStyle"!==e)));return p.createElement(Uo,{componentName:"RidgelinePlot",width:B,height:D},p.createElement(si,Object.assign({ref:r},J)))});bi.displayName="RidgelinePlot";const xi=e.forwardRef(function(t,n){var o,r;const i=so(t.mode,{width:null!==(o=t.width)&&void 0!==o?o:400,height:null!==(r=t.height)&&void 0!==r?r:400,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,showCategoryTicks:t.showCategoryTicks}),a=e.useRef(null),{data:s,margin:l,className:c,categoryAccessor:u="category",valueAccessor:d="value",colorBy:h,colorScheme:g,startAngle:f=0,cornerRadius:y,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:A,hoverHighlight:S,chartId:O,loading:E,emptyContent:M,legendInteraction:j,legendPosition:C,color:P}=t,_=i.width,L=i.height,R=i.enableHover,B=i.showLegend,D=i.title,I=i.description,N=i.summary,H=i.accessibleTable,W=s||[],F=h||u,$=void 0===s,z=ur({data:W,rawData:s,colorBy:F,colorScheme:g,legendInteraction:j,legendPosition:C,selection:x,linkedHover:k,fallbackFields:F?["string"==typeof F?F:""]:[],unwrapData:!0,onObservation:w,onClick:A,hoverHighlight:S,chartType:"PieChart",chartId:O,showLegend:B,userMargin:l,marginDefaults:i.marginDefaults,loading:E,emptyContent:M,width:_,height:L});if(z.earlyReturn)return z.earlyReturn;const G=Qn(),Y=e.useMemo(()=>new Map,[W]),q=e.useMemo(()=>(e,t)=>F?z.colorScale?{fill:T(e,F,z.colorScale)}:{}:{fill:Zn(P,G,g,t,Y)},[F,z.colorScale,P,G,g,Y]),X=e.useMemo(()=>{const e=null==b?void 0:b.pieceStyle;return e&&"function"==typeof e?(t,n)=>Object.assign(Object.assign({},q(t,n)),e(t,n)||{}):q},[q,b]),V=e.useMemo(()=>zn(X,z.effectiveSelectionHook,z.resolvedSelection),[X,z.effectiveSelectionHook,z.resolvedSelection]),U=e.useMemo(()=>xo({categoryAccessor:u,valueAccessor:d,groupAccessor:h&&h!==u?h:void 0,groupLabel:"string"==typeof h?h:"group",pieData:!0}),[u,d,h]),K=Mo({componentName:"PieChart",data:s,accessors:{categoryAccessor:u,valueAccessor:d}}),{effectiveLegendProps:Q,effectiveMargin:Z}=ci({ref:n,frameRef:a,isPushMode:$,colorBy:F,colorScheme:g,showLegend:B,legendPosition:C,setup:z}),J=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"pie"},null!=s&&{data:W}),{oAccessor:u,rAccessor:d,projection:"radial",pieceStyle:V,startAngle:f}),null!=y&&{cornerRadius:y}),{size:[_,L],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Z,enableHover:R}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:!1}),Q),D&&{title:D}),I&&{description:I}),N&&{summary:N}),void 0!==H&&{accessibleTable:H}),c&&{className:c}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===m?()=>null:fo(m)||U}),(k||w||A||S)&&{customHoverBehavior:z.customHoverBehavior}),(w||A||k)&&{customClickBehavior:z.customClickBehavior}),v&&v.length>0&&{annotations:v}),Object.fromEntries(Object.entries(b).filter(([e])=>"pieceStyle"!==e)));return K?p.createElement(ko,{componentName:"PieChart",message:K,width:_,height:L}):p.createElement(Uo,{componentName:"PieChart",width:_,height:L},p.createElement(si,Object.assign({ref:a},J)))});xi.displayName="PieChart";const ki=e.forwardRef(function(t,n){var o,r;const i=so(t.mode,{width:null!==(o=t.width)&&void 0!==o?o:400,height:null!==(r=t.height)&&void 0!==r?r:400,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,linkedHover:t.linkedHover,showCategoryTicks:t.showCategoryTicks}),a=e.useRef(null),{data:s,margin:l,className:c,categoryAccessor:u="category",valueAccessor:d="value",innerRadius:h=60,centerContent:g,colorBy:f,colorScheme:y,startAngle:m=0,cornerRadius:v,tooltip:b,annotations:x,frameProps:k={},selection:w,linkedHover:A,onObservation:S,onClick:O,hoverHighlight:E,chartId:M,loading:j,emptyContent:C,legendInteraction:P,legendPosition:_,color:L}=t,R=i.width,B=i.height,D=i.enableHover,I=i.showLegend,N=i.title,H=i.description,W=i.summary,F=i.accessibleTable,$=s||[],z=f||u,G=void 0===s,Y=ur({data:$,rawData:s,colorBy:z,colorScheme:y,legendInteraction:P,legendPosition:_,selection:w,linkedHover:A,fallbackFields:z?["string"==typeof z?z:""]:[],unwrapData:!0,onObservation:S,onClick:O,hoverHighlight:E,chartType:"DonutChart",chartId:M,showLegend:I,userMargin:l,marginDefaults:i.marginDefaults,loading:j,emptyContent:C,width:R,height:B});if(Y.earlyReturn)return Y.earlyReturn;const q=Qn(),X=e.useMemo(()=>new Map,[$]),V=k.pieceStyle,U=e.useMemo(()=>(e,t)=>{let n;if(n=z?Y.colorScale?{fill:T(e,z,Y.colorScale)}:{}:{fill:Zn(L,q,y,t,X)},V){const o=V(e,t);o.stroke&&(n.stroke=o.stroke),null!=o.strokeWidth&&(n.strokeWidth=o.strokeWidth),null!=o.strokeOpacity&&(n.strokeOpacity=o.strokeOpacity)}return n},[z,Y.colorScale,L,q,y,X,V]),K=e.useMemo(()=>zn(U,Y.effectiveSelectionHook,Y.resolvedSelection),[U,Y.effectiveSelectionHook,Y.resolvedSelection]),Q=e.useMemo(()=>xo({categoryAccessor:u,valueAccessor:d,groupAccessor:f&&f!==u?f:void 0,groupLabel:"string"==typeof f?f:"group",pieData:!0}),[u,d,f]),Z=Mo({componentName:"DonutChart",data:s,accessors:{categoryAccessor:u,valueAccessor:d}}),{effectiveLegendProps:J,effectiveMargin:ee}=ci({ref:n,frameRef:a,isPushMode:G,colorBy:z,colorScheme:y,showLegend:I,legendPosition:_,setup:Y}),te=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"donut"},null!=s&&{data:$}),{oAccessor:u,rAccessor:d,projection:"radial",pieceStyle:K,innerRadius:h,startAngle:m}),null!=v&&{cornerRadius:v}),{centerContent:g,size:[R,B],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ee,enableHover:D}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:!1}),J),N&&{title:N}),H&&{description:H}),W&&{summary:W}),void 0!==F&&{accessibleTable:F}),c&&{className:c}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===b?()=>null:fo(b)||Q}),(A||S||O||E)&&{customHoverBehavior:Y.customHoverBehavior}),(S||O||A)&&{customClickBehavior:Y.customClickBehavior}),x&&x.length>0&&{annotations:x}),Object.fromEntries(Object.entries(k).filter(([e])=>"pieceStyle"!==e)));return Z?p.createElement(ko,{componentName:"DonutChart",message:Z,width:R,height:B}):p.createElement(Uo,{componentName:"DonutChart",width:R,height:B},p.createElement(si,Object.assign({ref:a},te)))});ki.displayName="DonutChart";const wi=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:!1,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,showCategoryTicks:!1}),r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:i,margin:a,className:s,stepAccessor:l="step",valueAccessor:c="value",categoryAccessor:u,colorBy:d,colorScheme:h,orientation:g="horizontal",connectorOpacity:f=.3,showLabels:y=!0,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:A,hoverHighlight:S,chartId:O,loading:E,emptyContent:M,legendInteraction:j,legendPosition:C,color:P,categoryFormat:_}=t,L="vertical"===g,R=o.width,B=o.height,D=o.enableHover,I=o.title,N=o.description,H=o.summary,W=o.accessibleTable,F=i||[],$=d||u,z=!$,G=ur({data:F,rawData:i,colorBy:$,colorScheme:h,legendInteraction:j,legendPosition:C,selection:x,linkedHover:k,fallbackFields:$?["string"==typeof $?$:""]:[],unwrapData:!0,onObservation:w,onClick:A,hoverHighlight:S,chartType:"FunnelChart",chartId:O,showLegend:o.showLegend,userMargin:a,marginDefaults:L?{top:I?60:40,right:20,bottom:60,left:60}:{top:I?40:10,right:10,bottom:10,left:10},loading:E,emptyContent:M,width:R,height:B});if(G.earlyReturn)return G.earlyReturn;er("FunnelChart",F,"stepAccessor",l),er("FunnelChart",F,"valueAccessor",c);const Y=Qn(),q=e.useMemo(()=>new Map,[F]),X=e.useMemo(()=>{if(z)return P||((null==Y?void 0:Y[0])?Y[0]:Array.isArray(h)&&h[0]?h[0]:"#4e79a7")},[z,P,Y,h]),V=b.pieceStyle,U=e.useMemo(()=>(e,t)=>{const n={};if(n.fill=X||($?T(e,$,G.colorScale):Zn(P,Y,h,t,q)),V){const o=V(e,t);o.stroke&&(n.stroke=o.stroke),null!=o.strokeWidth&&(n.strokeWidth=o.strokeWidth),null!=o.strokeOpacity&&(n.strokeOpacity=o.strokeOpacity)}return n},[X,$,G.colorScale,P,Y,h,q,V]),K=e.useMemo(()=>zn(U,G.effectiveSelectionHook,G.resolvedSelection),[U,G.effectiveSelectionHook,G.resolvedSelection]),Q=e.useMemo(()=>e=>{var t,n,o,r,i,a;const s=(null==e?void 0:e.data)||e,l=(null==s?void 0:s.__funnelStep)||(null==s?void 0:s.__barFunnelStep)||(null==s?void 0:s.step)||"",c=null!==(o=null!==(n=null!==(t=null==s?void 0:s.__funnelValue)&&void 0!==t?t:null==s?void 0:s.__barFunnelValue)&&void 0!==n?n:null==s?void 0:s.value)&&void 0!==o?o:"",u=null!==(r=null==s?void 0:s.__funnelPercent)&&void 0!==r?r:null==s?void 0:s.__barFunnelPercent,d=null!==(i=null==s?void 0:s.__funnelIsFirstStep)&&void 0!==i?i:null==s?void 0:s.__barFunnelIsFirstStep,h=null==s?void 0:s.__barFunnelIsDropoff,g=null!==(a=null==s?void 0:s.__barFunnelCategory)&&void 0!==a?a:null==s?void 0:s.category,f=null==u||d?"":` (${.05>Math.abs(u-Math.round(u))?Math.round(u)+"%":u.toFixed(1)+"%"})`;return p.createElement("div",{className:"semiotic-tooltip",style:co},l&&p.createElement("div",{style:{fontWeight:"bold"}},l+""),g&&g!==l&&p.createElement("div",{style:{marginTop:2,opacity:.8}},g+""),h&&p.createElement("div",{style:{marginTop:2,fontStyle:"italic",opacity:.7}},"Dropoff"),p.createElement("div",{style:{marginTop:4}},c+"",f))},[]),Z=Mo({componentName:"FunnelChart",data:i,accessors:{stepAccessor:l,valueAccessor:c}});if(Z)return p.createElement(ko,{componentName:"FunnelChart",message:Z,width:R,height:B});const J=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:L?"bar-funnel":"funnel"},null!=i&&{data:F}),{oAccessor:l,rAccessor:c}),u&&{stackBy:u}),{projection:L?"vertical":"horizontal",barPadding:L?40:0,pieceStyle:K,size:[R,B],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:G.margin,enableHover:D}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:L,showCategoryTicks:L}),_&&{oFormat:_}),{showGrid:L}),!L&&{connectorOpacity:f}),{showLabels:y}),G.legendBehaviorProps),I&&{title:I}),N&&{description:N}),H&&{summary:H}),void 0!==W&&{accessibleTable:W}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===m?()=>null:!0===m||null==m?Q:fo(m)||Q}),(k||w||A||S)&&{customHoverBehavior:G.customHoverBehavior}),(w||A||k)&&{customClickBehavior:G.customClickBehavior}),v&&v.length>0&&{annotations:v}),Object.fromEntries(Object.entries(b).filter(([e])=>"pieceStyle"!==e)));return p.createElement(Uo,{componentName:"FunnelChart",width:R,height:B},p.createElement(si,Object.assign({ref:r},J)))});wi.displayName="FunnelChart";const Ai="__likert_neutral_neg",Si="__likert_neutral_pos";function Oi(e,t){if("function"==typeof e)return e;const n=e||t;return e=>e[n]}function Ei(e,t,n,o,r,i){const a=new Map,s=new Set(t);for(const l of e){const e=n(l);a.has(e)||a.set(e,new Map);const c=a.get(e);if(o){const e=o(l);if(null==e||!Number.isFinite(e))continue;if(!Number.isInteger(e)){"production"!==process.env.NODE_ENV&&console.warn("[LikertChart] Ignoring non-integer Likert score:",e);continue}const n=e-1;if(0>n||n>=t.length)continue;const r=t[n];c.set(r,(c.get(r)||0)+1)}else if(r&&i){const e=r(l),t=i(l);if(!s.has(e))continue;c.set(e,(c.get(e)||0)+(Number.isFinite(t)?t:0))}}const l=[];for(const[e,n]of a){let o=0;for(const e of t)o+=n.get(e)||0;if(0!==o)for(let r=0;t.length>r;r++){const i=t[r],a=n.get(i)||0;l.push({__likertCategory:e,__likertLevel:i,__likertLevelLabel:i,__likertCount:a,__likertPct:a/o*100,__likertLevelIndex:r})}}return l}function Mi(e,t){const n=t.length,o=n%2!=0,r=Math.floor(n/2),i=[];for(const t of e){const e=t.__likertLevelIndex;if(o&&e===r){const e=t.__likertPct/2;i.push(Object.assign(Object.assign({},t),{__likertLevel:Ai,__likertPct:-e})),i.push(Object.assign(Object.assign({},t),{__likertLevel:Si,__likertPct:e}))}else i.push(r>e?Object.assign(Object.assign({},t),{__likertPct:-t.__likertPct}):t)}return i}function ji(e,t){const n=t.length,o=n%2!=0,r=Math.floor(n/2),i=new Map;for(const t of e){const e=i.get(t.__likertCategory)||[];e.push(t),i.set(t.__likertCategory,e)}const a=[];for(const[,e]of i){const t=new Map;let i,s;for(const n of e)n.__likertLevel===Ai?i=n:n.__likertLevel===Si?s=n:t.set(n.__likertLevelIndex,n);o&&i&&a.push(i);for(let e=r-1;e>=0;e--){const n=t.get(e);n&&a.push(n)}o&&s&&a.push(s);for(let e=o?r+1:r;n>e;e++){const n=t.get(e);n&&a.push(n)}}return a}const Ci=e.forwardRef(function(t,n){const o=so(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),r=e.useRef(null),{data:i,margin:a,className:s,categoryAccessor:l="question",valueAccessor:c,levelAccessor:u,countAccessor:d="count",levels:h,orientation:g="horizontal",colorScheme:f,barPadding:y=20,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:A,hoverHighlight:S,chartId:O,valueFormat:E,loading:M,emptyContent:j,legendInteraction:C,legendPosition:P,categoryFormat:_}=t,L=o.width,T=o.height,R=o.enableHover,B=o.showGrid,D=o.showLegend,I=o.title,N=o.description,H=o.summary,W=o.accessibleTable,F=o.categoryLabel,$=o.valueLabel,z="horizontal"===g,G=void 0===i,Y=!u,q=e.useMemo(()=>f&&Array.isArray(f)&&f.length>=h.length?f:function(e){const t=["#da1e28","#ff8389","#ffb3b8"],n=["#a6c8ff","#4589ff","#0043ce"],o="#a8a8a8";if(0>=e)return[];if(1===e)return[o];const r=e%2!=0,i=Math.floor(e/2),a=[];for(let e=0;i>e;e++)a.push(t[Math.min(Math.floor(e*t.length/i),t.length-1)]);r&&a.push(o);for(let e=0;i>e;e++)a.push(n[Math.min(Math.floor(e*n.length/i),n.length-1)]);return a}(h.length),[f,h.length]),X=e.useMemo(()=>{const e=new Map;for(let t=0;h.length>t;t++)e.set(h[t],q[t]||"#888");return e},[h,q]),{processedData:V,reAggregate:U,accumulatorRef:K}=function({data:t,levels:n,categoryAccessor:o,valueAccessor:r,levelAccessor:i,countAccessor:a,isDiverging:s,frameRef:l}){const c=!i,u=e.useMemo(()=>Oi(o,"question"),[o]),d=e.useMemo(()=>c?Oi(r,"score"):null,[c,r]),h=e.useMemo(()=>c?null:Oi(i,"level"),[c,i]),g=e.useMemo(()=>c?null:Oi(a,"count"),[c,a]),f=t||[],p=e.useRef([]),y=e.useMemo(()=>{if(0===f.length)return[];let e=Ei(f,n,u,d,h,g);return s&&(e=Mi(e,n),e=ji(e,n)),e},[f,n,u,d,h,g,s]),m=e.useCallback(e=>{var t;let o=Ei(e,n,u,d,h,g);s&&(o=Mi(o,n),o=ji(o,n)),null===(t=l.current)||void 0===t||t.replace(o)},[n,u,d,h,g,s,l]);return{processedData:y,reAggregate:m,accumulatorRef:p}}({data:i,levels:h,categoryAccessor:l,valueAccessor:c,levelAccessor:u,countAccessor:d,isDiverging:z,frameRef:r}),Q="__likertLevelLabel",Z=lr({isPushMode:G,colorBy:Q,colorScheme:q,showLegend:D,legendPosition:P}),J=e.useCallback(Z.wrapPush(e=>{K.current.push(e),U(K.current)}),[Z.wrapPush,U,K]),ee=e.useCallback(Z.wrapPushMany(e=>{K.current.push(...e),U(K.current)}),[Z.wrapPushMany,U,K]);e.useImperativeHandle(n,()=>({push:J,pushMany:ee,remove:e=>{var t,n;return null!==(n=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=r.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;K.current=[],Z.resetCategories(),null===(e=r.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}),[J,ee,Z.resetCategories,K]);const te=ur({data:V,rawData:i,colorBy:Q,colorScheme:q,legendInteraction:C,legendPosition:P,selection:x,linkedHover:k,fallbackFields:["__likertLevelLabel"],unwrapData:!0,onObservation:w,onClick:A,hoverHighlight:S,chartType:"LikertChart",chartId:O,showLegend:D,userMargin:a,marginDefaults:o.marginDefaults,loading:M,emptyContent:j,width:L,height:T});if(te.earlyReturn)return te.earlyReturn;const ne=e.useMemo(()=>{const e=h.length;return e%2!=0&&X.get(h[Math.floor(e/2)])||"#888"},[h,X]),oe=b.pieceStyle,re=e.useMemo(()=>(e,t)=>{var n,o;const r=e.__likertLevelLabel||(null===(n=e.data)||void 0===n?void 0:n.__likertLevelLabel),i=e.__likertLevel||(null===(o=e.data)||void 0===o?void 0:o.__likertLevel);let a;if(i===Ai||i===Si)a={fill:ne};else{const e=r||i;a=e&&X.has(e)?{fill:X.get(e)}:{fill:"#888"}}if(oe){const n=oe(e,t);n.stroke&&(a.stroke=n.stroke),null!=n.strokeWidth&&(a.strokeWidth=n.strokeWidth),null!=n.strokeOpacity&&(a.strokeOpacity=n.strokeOpacity)}return a},[X,ne,oe]),ie=e.useMemo(()=>zn(re,te.effectiveSelectionHook,te.resolvedSelection),[re,te.effectiveSelectionHook,te.resolvedSelection]),ae=e.useMemo(()=>{const e=h.length;return e%2!=0?h[Math.floor(e/2)]:""},[h]),se=e.useMemo(()=>e=>{const t=e.data||e,n=t.__likertLevel||"Unknown",o=n===Ai||n===Si?ae:n,r=t.__likertCategory||"",i=Math.abs(t.__likertPct||0),a=n===Ai||n===Si?2*i:i,s=t.__likertCount||0;return p.createElement("div",{className:"semiotic-tooltip",style:co},p.createElement("div",{style:{fontWeight:"bold"}},r),p.createElement("div",{style:{marginTop:4}},`${o}: ${a.toFixed(1)}% (n=${s})`))},[ae]),le=e.useMemo(()=>{if(!h||2>h.length)return"LikertChart requires `levels` with at least 2 entries.";if(c&&u)return"LikertChart: provide either `valueAccessor` (raw responses) or `levelAccessor` + `countAccessor` (pre-aggregated), not both.";if(u&&!d)return"LikertChart: pre-aggregated mode requires both `levelAccessor` and `countAccessor`.";if(void 0!==i&&0===i.length)return null;const e={categoryAccessor:l};return Y?c&&(e.valueAccessor=c):(u&&(e.levelAccessor=u),d&&(e.countAccessor=d)),Mo({componentName:"LikertChart",data:i,accessors:e,requiredProps:{levels:h}})},[i,l,c,u,d,h,Y]),ce=e.useMemo(()=>[{styleFn:e=>({fill:X.get(e.label)||"#888"}),items:h.map(e=>({label:e})),label:""}],[h,X]),ue=e.useMemo(()=>!1!==D?Object.assign(Object.assign({},te.legendBehaviorProps),{legend:{legendGroups:ce},legendPosition:P||te.legendPosition||"bottom"}):te.legendBehaviorProps,[te.legendBehaviorProps,te.legendPosition,P,D,ce]),de=e.useMemo(()=>{const e=Object.assign({},te.margin);if(G&&!1!==D){const t=P||"bottom";"bottom"===t&&80>e.bottom?e.bottom=80:"top"===t&&50>e.top?e.top=50:"right"===t&&110>e.right?e.right=110:"left"===t&&110>e.left&&(e.left=110)}else if(Z.streamingMarginAdjust)for(const[t,n]of Object.entries(Z.streamingMarginAdjust))n>e[t]&&(e[t]=n);return z&&100>e.left&&(e.left=100),e},[te.margin,Z.streamingMarginAdjust,z,G,D,P]),he=e.useMemo(()=>E||(z?e=>Math.abs(Number(e)).toFixed(0)+"%":e=>Number(e).toFixed(0)+"%"),[z,E]),ge=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bar"},null!=i&&{data:V}),{oAccessor:"__likertCategory",rAccessor:"__likertPct",stackBy:"__likertLevel",normalize:!1,projection:z?"horizontal":"vertical",pieceStyle:ie,size:[L,T],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:de,barPadding:y,enableHover:R}),t.dataIdAccessor&&{dataIdAccessor:t.dataIdAccessor}),{showAxes:o.showAxes,oLabel:F,rLabel:$||(z?void 0:"Percentage"),rFormat:he}),_&&{oFormat:_}),{showGrid:B}),ue),I&&{title:I}),N&&{description:N}),H&&{summary:H}),void 0!==W&&{accessibleTable:W}),s&&{className:s}),null!=t.animate&&{animate:t.animate}),{tooltipContent:!1===m?()=>null:!0===m?se:fo(m)||se}),(k||w||A||S)&&{customHoverBehavior:te.customHoverBehavior}),(w||A||k)&&{customClickBehavior:te.customClickBehavior}),v&&v.length>0&&{annotations:v}),Object.fromEntries(Object.entries(b).filter(([e])=>"pieceStyle"!==e)));return le?p.createElement(ko,{componentName:"LikertChart",message:le,width:L,height:T}):p.createElement(Uo,{componentName:"LikertChart",width:L,height:T},p.createElement(si,Object.assign({ref:r},ge)))});Ci.displayName="LikertChart";const Pi={weightChange:.1,newEdge:.5,newNode:1,threshold:3,transitionDuration:500},_i={radius:3,opacity:.7,speedMultiplier:1,maxPerEdge:50,spawnRate:.1};class Li{constructor(e){this.capacity=e,this.particles=Array(e),this._freeIndices=Array(e);for(let t=0;e>t;t++)this.particles[t]={t:0,offset:0,edgeIndex:0,active:!1,x:0,y:0},this._freeIndices[t]=e-1-t}spawn(e){const t=this._freeIndices.pop();if(void 0===t)return null;const n=this.particles[t];return n.active=!0,n.t=0,n.offset=Math.random()-.5,n.edgeIndex=e,n.x=0,n.y=0,n}step(e,t,n,o){var r;for(let i=0;this.capacity>i;i++){const a=this.particles[i];if(!a.active)continue;const s=n[a.edgeIndex];if(!s||!s.bezier){a.active=!1,this._freeIndices.push(i);continue}const l=o&&null!==(r=o[a.edgeIndex])&&void 0!==r?r:1;a.t+=e*t*l*(s.bezier.circular?.3:1),1>a.t?Ti(s.bezier,a.t,a.offset,a):(a.active=!1,this._freeIndices.push(i))}}countForEdge(e){let t=0;for(let n=0;this.capacity>n;n++)this.particles[n].active&&this.particles[n].edgeIndex===e&&t++;return t}clear(){for(let e=0;this.capacity>e;e++)this.particles[e].active=!1;this._freeIndices.length=0;for(let e=this.capacity-1;e>=0;e--)this._freeIndices.push(e)}resize(e){if(this.capacity>=e)return;const t=this.particles;this.particles=Array(e);for(let n=0;e>n;n++)t.length>n?this.particles[n]=t[n]:(this.particles[n]={t:0,offset:0,edgeIndex:0,active:!1,x:0,y:0},this._freeIndices.push(n));this.capacity=e}}function Ti(e,t,n,o){if(e.circular&&e.segments)return void function(e,t,n,o,r){const i=e.length,a=t*i,s=Math.min(Math.floor(a),i-1),l=a-s,[c,u,d,h]=e[s];Ri(c,u,d,h,l,r);const g=h.x-c.x,f=h.y-c.y,p=Math.sqrt(g*g+f*f);if(p>.001){const e=g/p;r.x+=-f/p*n*o*2,r.y+=e*n*o*2}}(e.segments,t,n,e.halfWidth,o);if(!e.points)return o.x=0,void(o.y=0);const[r,i,a,s]=e.points;Ri(r,i,a,s,t,o);const l=s.x-r.x,c=s.y-r.y,u=Math.sqrt(l*l+c*c);if(u>.001){const t=l/u;o.x+=-c/u*n*e.halfWidth*2,o.y+=t*n*e.halfWidth*2}}function Ri(e,t,n,o,r,i){const a=1-r,s=a*a,l=s*a,c=r*r,u=c*r;i.x=l*e.x+3*s*r*t.x+3*a*c*n.x+u*o.x,i.y=l*e.y+3*s*r*t.y+3*a*c*n.y+u*o.y}function Bi(e,t){var n=e.get(t);if(!n)throw Error("missing: "+t);return n}function Di(e,t){var n,o=[],r=[],i=[],a={},s=[];function l(e){i[e]=!1,a.hasOwnProperty(e)&&Object.keys(a[e]).forEach(function(t){delete a[e][t],i[t]&&l(t)})}function c(e){var t,o,d=!1;for(r.push(e),i[e]=!0,t=0;s[e].length>t;t++)(o=s[e][t])===n?(u(n,r),d=!0):i[o]||(d=c(o));if(d)l(e);else for(t=0;s[e].length>t;t++){var h=a[o=s[e][t]];h||(a[o]=h={}),h[o]=!0}return r.pop(),d}function u(e,t){var n=[].concat(t).concat(e);o.push(n)}function d(t){!function(t){for(var n=0;e.length>n;n++)n>=t&&e[n]||(e[n]=[]),e[n]=e[n].filter(function(e){return e>=t})}(t);for(var n,o=function(e){for(var t=e.length,n=Array(t),o=Array(t),r=Array(t),i=Array(t),a=Array(t),s=Array(t),l=0;t>l;++l)n[l]=-1,o[l]=0,r[l]=!1,i[l]=0,a[l]=-1,s[l]=[];var c,u=0,d=[],h=[];function g(t){var l=[t],c=[t];for(n[t]=o[t]=u,r[t]=!0,u+=1;c.length>0;){var g=e[t=c[c.length-1]];if(g.length>i[t]){for(var f=i[t];g.length>f;++f){var p=g[f];if(0>n[p]){n[p]=o[p]=u,r[p]=!0,u+=1,l.push(p),c.push(p);break}r[p]&&(o[t]=0|Math.min(o[t],o[p])),0>a[p]||s[t].push(a[p])}i[t]=f}else{if(o[t]===n[t]){var y=[],m=[],v=0;for(f=l.length-1;f>=0;--f){var b=l[f];if(r[b]=!1,y.push(b),m.push(s[b]),v+=s[b].length,a[b]=d.length,b===t){l.length=f;break}}d.push(y);var x=Array(v);for(f=0;m.length>f;f++)for(var k=0;m[f].length>k;k++)x[--v]=m[f][k];h.push(x)}c.pop()}}}for(l=0;t>l;++l)0>n[l]&&g(l);for(l=0;h.length>l;l++){var f=h[l];if(0!==f.length){f.sort(function(e,t){return e-t}),c=[f[0]];for(var p=1;f.length>p;p++)f[p]!==f[p-1]&&c.push(f[p]);h[l]=c}}return{components:d,adjacencyList:h}}(e),r=o.components.filter(function(e){return e.length>1}),i=1/0,a=0;r.length>a;a++)for(var s=0;r[a].length>s;s++)i>r[a][s]&&(i=r[a][s],n=a);var l=r[n];if(!l)return!1;var c=e.map(function(e,t){return-1===l.indexOf(t)?[]:e.filter(function(e){return-1!==l.indexOf(e)})});return{leastVertex:i,adjList:c}}n=0;for(var h=e.length;h>n;){var g=d(n);if(n=g.leastVertex,s=g.adjList){for(var f=0;s.length>f;f++)for(var p=0;s[f].length>p;p++){var y=s[f][p];i[+y]=!1,a[y]={}}c(n),n+=1}else n=h}return o}function Ii(e){return e.y0-e.y1>0?"up":"down"}function Ni(e,t){return t(e.source)==t(e.target)}function Hi(e){var t=0;e.source.sourceLinks.forEach(function(e){t=e.circular?t+1:t});var n=0;return e.target.targetLinks.forEach(function(e){n=e.circular?n+1:n}),1>=t&&1>=n}function Wi(e){return e.target.x0-e.source.x1}function Fi(e,t){var n=zi(e),o=Wi(t)/Math.tan(n);return"up"==Ii(e)?e.y1-o:e.y1+o}function $i(e,t){var n=zi(e),o=Wi(t)/Math.tan(n);return"up"==Ii(e)?e.y1+o:e.y1-o}function zi(e){var t=Math.abs(e.y1-e.y0);return Math.atan(Math.abs(e.target.x0-e.source.x1)/t)}function Gi(e,t){return t(e)}function Yi(e){return Xi(e.source)}function qi(e){return Xi(e.target)}function Xi(e){return(e.y0+e.y1)/2}function Vi(e){return e.virtual?0:e.value}function Ui(e,t){var n=0;e.sourceLinks.forEach(function(e){n=e.circular&&!Ni(e,t)?n+1:n});var o=0;return e.targetLinks.forEach(function(e){o=e.circular&&!Ni(e,t)?o+1:o}),n+o}function Ki(e){return e.target.depth}function Qi(e,t){return e.sourceLinks.length?e.depth:t-1}function Zi(e,t){return e.y0-t.y0}function Ji(e,t){return t.y0-e.y0}function ea(e,t){return e.y1-t.y1}function ta(e,t){return t.y1-e.y1}function na(e,t){return ra(e.source,t.source)||e.index-t.index}function oa(e,t){return ra(e.target,t.target)||e.index-t.index}function ra(e,t){return e.partOfCycle===t.partOfCycle?e.y0-t.y0:"top"===e.circularLinkType||"bottom"===t.circularLinkType?-1:1}function ia(e,t){return aa(e)==aa(t)?"bottom"==e.circularLinkType?Ji(e,t):Zi(e,t):aa(t)-aa(e)}function aa(e){return e.target.column-e.source.column}function sa(e,t){return la(e)==la(t)}function la(e){return e.y0-e.y1>0?"up":"down"}function ca(e,t,n,o,r){let i=e;var s=Math.max(8,.15*(i.y1-i.y0));i.links.forEach(function(e){e.circular&&(e._circularWidth=Math.min(e.width,s))});var l=a.min(i.links,function(e){return e.source.y0});i.links.forEach(function(e){e.circular&&(e.circularPathData={})});var c=i.links.filter(function(e){return e.circular});return c.sort(function(e,t){return t.value-e.value}),c.forEach(function(e,t){e._circularStub=t>=4}),ua(i.links.filter(function(e){return"top"==e.circularLinkType}),t,n),ua(i.links.filter(function(e){return"bottom"==e.circularLinkType}),t,n),i.links.forEach(function(e){if(e.circular){if(e.circularPathData.arcRadius=e._circularWidth+o,e.circularPathData.rightNodeBuffer=5,e.circularPathData.leftNodeBuffer=5,e.circularPathData.sourceWidth=e.source.x1-e.source.x0,e.circularPathData.sourceX=e.source.x0+e.circularPathData.sourceWidth,e.circularPathData.targetX=e.target.x0,e.circularPathData.sourceY=e.y0,e.circularPathData.targetY=e.y1,Ni(e,t)&&Hi(e))e.circularPathData.rightSmallArcRadius=o+e._circularWidth/2,e.circularPathData.rightLargeArcRadius=o+e._circularWidth/2,e.circularPathData.leftSmallArcRadius=o+e._circularWidth/2,e.circularPathData.leftLargeArcRadius=o+e._circularWidth/2,"bottom"==e.circularLinkType?(e.circularPathData.verticalFullExtent=e.source.y1+r+e.circularPathData.verticalBuffer,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius):(e.circularPathData.verticalFullExtent=e.source.y0-r-e.circularPathData.verticalBuffer,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius);else{var a=e.source.column,s=e.circularLinkType,c=i.links.filter(function(e){return e.source.column==a&&e.circularLinkType==s});c.sort("bottom"==e.circularLinkType?Ji:Zi);var u=0;c.forEach(function(t,r){t.circularLinkID==e.circularLinkID&&(e.circularPathData.rightSmallArcRadius=o+e._circularWidth/2+u,e.circularPathData.rightLargeArcRadius=o+e._circularWidth/2+r*n+u),u+=t._circularWidth||t.width}),a=e.target.column,(c=i.links.filter(function(e){return e.target.column==a&&e.circularLinkType==s})).sort("bottom"==e.circularLinkType?ta:ea),u=0,c.forEach(function(t,r){t.circularLinkID==e.circularLinkID&&(e.circularPathData.leftSmallArcRadius=o+e._circularWidth/2+u,e.circularPathData.leftLargeArcRadius=o+e._circularWidth/2+r*n+u),u+=t._circularWidth||t.width}),"bottom"==e.circularLinkType?(e.circularPathData.verticalFullExtent=Math.max(i.y1,e.source.y1,e.target.y1)+r+e.circularPathData.verticalBuffer,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius):(e.circularPathData.verticalFullExtent=l-r-e.circularPathData.verticalBuffer,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius)}e.circularPathData.rightInnerExtent=e.circularPathData.sourceX+e.circularPathData.rightNodeBuffer,e.circularPathData.leftInnerExtent=e.circularPathData.targetX-e.circularPathData.leftNodeBuffer,e.circularPathData.rightFullExtent=e.circularPathData.sourceX+e.circularPathData.rightLargeArcRadius+e.circularPathData.rightNodeBuffer,e.circularPathData.leftFullExtent=e.circularPathData.targetX-e.circularPathData.leftLargeArcRadius-e.circularPathData.leftNodeBuffer}e.path=e.circular?function(e){return"top"==e.circularLinkType?"M"+e.circularPathData.sourceX+" "+e.circularPathData.sourceY+" L"+e.circularPathData.rightInnerExtent+" "+e.circularPathData.sourceY+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightSmallArcRadius+" 0 0 0 "+e.circularPathData.rightFullExtent+" "+(e.circularPathData.sourceY-e.circularPathData.rightSmallArcRadius)+" L"+e.circularPathData.rightFullExtent+" "+e.circularPathData.verticalRightInnerExtent+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightLargeArcRadius+" 0 0 0 "+e.circularPathData.rightInnerExtent+" "+e.circularPathData.verticalFullExtent+" L"+e.circularPathData.leftInnerExtent+" "+e.circularPathData.verticalFullExtent+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftLargeArcRadius+" 0 0 0 "+e.circularPathData.leftFullExtent+" "+e.circularPathData.verticalLeftInnerExtent+" L"+e.circularPathData.leftFullExtent+" "+(e.circularPathData.targetY-e.circularPathData.leftSmallArcRadius)+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftSmallArcRadius+" 0 0 0 "+e.circularPathData.leftInnerExtent+" "+e.circularPathData.targetY+" L"+e.circularPathData.targetX+" "+e.circularPathData.targetY:"M"+e.circularPathData.sourceX+" "+e.circularPathData.sourceY+" L"+e.circularPathData.rightInnerExtent+" "+e.circularPathData.sourceY+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightSmallArcRadius+" 0 0 1 "+e.circularPathData.rightFullExtent+" "+(e.circularPathData.sourceY+e.circularPathData.rightSmallArcRadius)+" L"+e.circularPathData.rightFullExtent+" "+e.circularPathData.verticalRightInnerExtent+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightLargeArcRadius+" 0 0 1 "+e.circularPathData.rightInnerExtent+" "+e.circularPathData.verticalFullExtent+" L"+e.circularPathData.leftInnerExtent+" "+e.circularPathData.verticalFullExtent+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftLargeArcRadius+" 0 0 1 "+e.circularPathData.leftFullExtent+" "+e.circularPathData.verticalLeftInnerExtent+" L"+e.circularPathData.leftFullExtent+" "+(e.circularPathData.targetY+e.circularPathData.leftSmallArcRadius)+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftSmallArcRadius+" 0 0 1 "+e.circularPathData.leftInnerExtent+" "+e.circularPathData.targetY+" L"+e.circularPathData.targetX+" "+e.circularPathData.targetY}(e):function(e){var t=e.source.x1,n=e.y0,o=e.target.x0,r=e.y1,i=(t+o)/2;return"M"+t+","+n+"C"+i+","+n+" "+i+","+r+" "+o+","+r}(e)}),i}function ua(e,t,n){e.sort(ia);var o=e.filter(function(e){return!e._circularStub});return e.forEach(function(e,r){var i=0;if(e._circularStub)e.circularPathData.verticalBuffer=0;else if(Ni(e,t)&&Hi(e))e.circularPathData.verticalBuffer=i+e._circularWidth/2;else{for(var a=0;o.length>a;a++){var s=o[a];if(s!==e&&s.circularPathData&&void 0!==s.circularPathData.verticalBuffer&&da(e,s)){var l=s.circularPathData.verticalBuffer+(s._circularWidth||s.width)/2+n;i=l>i?l:i}}e.circularPathData.verticalBuffer=i+e._circularWidth/2}}),e}function da(e,t){return e.source.column>=t.target.column&&t.source.column>=e.target.column}function ha(e){return function(){return e}}function ga(e){return e.index}function fa(e){return e.nodes}function pa(e){return e.links}function ya(e,t,n){var o=a.groups(e.nodes,function(e){return e.column}).sort(function(e,t){return e[0]-t[0]}).map(function(e){return e[1]});o.forEach(function(r,i){var a=r.length;if(t)r.sort(t);else if(i>0){var s=new Map;r.forEach(function(e,t){var n,o,r,i=(o=0,r=0,(n=e).targetLinks.forEach(function(e){if(!e.circular){var t=e.value||1;r+=Xi(e.source)*t,o+=t}}),n.sourceLinks.forEach(function(e){if(!e.circular){var t=e.value||1;r+=Xi(e.target)*t,o+=t}}),o>0?r/o:NaN);s.set(e,{bc:i,idx:t})}),r.sort(function(e,t){var n=s.get(e),o=s.get(t),r=n.bc,i=o.bc;if(e.circularLinkType!==t.circularLinkType){if("top"==e.circularLinkType&&"bottom"==t.circularLinkType)return-1;if("bottom"==e.circularLinkType&&"top"==t.circularLinkType)return 1;if("top"==e.circularLinkType)return-1;if("top"==t.circularLinkType)return 1;if("bottom"==e.circularLinkType)return 1;if("bottom"==t.circularLinkType)return-1}return isNaN(r)||isNaN(i)?isNaN(r)?isNaN(i)?n.idx-o.idx:1:-1:r-i})}else r.sort(function(e,t){return e.circularLinkType==t.circularLinkType?Ui(t,n)-Ui(e,n):"top"==e.circularLinkType&&"bottom"==t.circularLinkType||"top"==e.circularLinkType&&0==t.partOfCycle||0==e.partOfCycle&&"bottom"==t.circularLinkType?-1:0});r.forEach(function(t,r){t.depth==o.length-1&&1==a||0==t.depth&&1==a?(t.y0=e.y1/2-t.value*e.ky,t.y1=t.y0+t.value*e.ky):t.partOfCycle?0==Ui(t,n)?(t.y0=e.y1/2+r,t.y1=t.y0+t.value*e.ky):"top"==t.circularLinkType?(t.y0=e.y0+r,t.y1=t.y0+t.value*e.ky):(t.y0=e.y1-t.value*e.ky-r,t.y1=t.y0+t.value*e.ky):0==e.y0||0==e.y1?(t.y0=(e.y1-e.y0)/a*r,t.y1=t.y0+t.value*e.ky):(t.y0=(e.y1-e.y0)/2-a/2+r,t.y1=t.y0+t.value*e.ky)})})}function ma(e,t,n,o,r,i){var s=a.groups(e.nodes,function(e){return e.column}).sort(function(e,t){return e[0]-t[0]}).map(function(e){return e[1]});d();for(var l=1,c=i;c>0;--c)u(l*=.99,n),d();function u(t,n){var o=s.length;s.forEach(function(r){var i=r.length,s=r[0].depth;r.forEach(function(r){var l;if(r.sourceLinks.length||r.targetLinks.length)if(r.partOfCycle&&Ui(r,n)>0){var c=a.mean(r.sourceLinks,qi),u=a.mean(r.targetLinks,Yi),d=c&&u?(c+u)/2:c||u;if(d){var h=(d-Xi(r))*t*.3;r.y0+=h,r.y1+=h}}else if(0==s&&1==i)r.y0=e.y1/2-(l=r.y1-r.y0)/2,r.y1=e.y1/2+l/2;else if(s==o-1&&1==i)r.y0=e.y1/2-(l=r.y1-r.y0)/2,r.y1=e.y1/2+l/2;else if(1==r.targetLinks.length&&1==r.targetLinks[0].source.sourceLinks.length)l=r.y1-r.y0,r.y0=r.targetLinks[0].source.y0,r.y1=r.y0+l;else{var g=a.mean(r.sourceLinks,qi),f=a.mean(r.targetLinks,Yi),p=((g&&f?(g+f)/2:g||f)-Xi(r))*t;r.y0+=p,r.y1+=p}})})}function d(){s.forEach(function(n){var i,a,s,l=e.y0,c=n.length;for(n.sort(t||ra),s=0;c>s;++s)(a=l-(i=n[s]).y0)>0&&(i.y0+=a,i.y1+=a),l=i.y1+o;if((a=l-o-e.y1)>0)for(l=i.y0-=a,i.y1-=a,s=c-2;s>=0;--s)(a=(i=n[s]).y1+r-l)>0&&(i.y0-=a,i.y1-=a),l=i.y0})}}function va(e){e.nodes.forEach(function(e){e.sourceLinks.sort(oa),e.targetLinks.sort(na)}),e.nodes.forEach(function(e){var t=e.y0,n=t,o=e.y1,r=o;e.sourceLinks.forEach(function(e){e.circular?(e.y0=o-e.width/2,o-=e.width):(e.y0=t+e.width/2,t+=e.width)}),e.targetLinks.forEach(function(e){e.circular?(e.y1=r-e.width/2,r-=e.width):(e.y1=n+e.width/2,n+=e.width)})})}function ba(){var e=0,t=0,n=1,o=1,r=24,i=8,s=null,l=ga,c=Qi,u=void 0,d=32,h=2,g=fa,f=pa;function p(){var p={nodes:g.apply(null,arguments),links:f.apply(null,arguments)};return function(g){g.x0=e,g.y0=t,g.x1=n,g.y1=o,g.py=0,function(e,t){e.nodes.forEach(function(e,t){e.index=t,e.sourceLinks=[],e.targetLinks=[]});var n=function(e,t){var n=new Map;return a.group(e,t).forEach(function(e,t){n.set(t,e[0])}),n}(e.nodes,t);e.links.forEach(function(e,t){e.index=t;var o=e.source,r=e.target;"object"!=typeof o&&(o=e.source=Bi(n,o)),"object"!=typeof r&&(r=e.target=Bi(n,r)),o.sourceLinks.push(e),r.targetLinks.push(e)})}(g,l),function(e,t){var n=0;if(null==t){for(var o=[],r=0;e.links.length>r;r++){var i=e.links[r],a=i.source.index,s=i.target.index;o[a]||(o[a]=[]),o[s]||(o[s]=[]),-1===o[a].indexOf(s)&&o[a].push(s)}var l=Di(o);l.sort(function(e,t){return e.length-t.length});var c={};for(r=0;l.length>r;r++){var u=l[r].slice(-2);c[u[0]]||(c[u[0]]={}),c[u[0]][u[1]]=!0}e.links.forEach(function(e){var t=e.target.index,o=e.source.index;t===o||c[o]&&c[o][t]?(e.circular=!0,e.circularLinkID=n++):e.circular=!1})}else e.links.forEach(function(e){t(e.source)<t(e.target)?e.circular=!1:(e.circular=!0,e.circularLinkID=n++)})}(g,u),function(e,t){var n=0,o=0;e.links.forEach(function(r){r.circular&&(r.circularLinkType=r.source.circularLinkType||r.target.circularLinkType?r.source.circularLinkType?r.source.circularLinkType:r.target.circularLinkType:o>n?"top":"bottom","top"==r.circularLinkType?n++:o++,e.nodes.forEach(function(e){Gi(e,t)!=Gi(r.source,t)&&Gi(e,t)!=Gi(r.target,t)||(e.circularLinkType=r.circularLinkType)}))}),e.links.forEach(function(e){e.circular&&(e.source.circularLinkType==e.target.circularLinkType&&(e.circularLinkType=e.source.circularLinkType),Ni(e,t)&&(e.circularLinkType=e.source.circularLinkType))})}(g,l),function(e){e.nodes.forEach(function(e){e.partOfCycle=!1,e.value=Math.max(a.sum(e.sourceLinks,Vi),a.sum(e.targetLinks,Vi)),e.sourceLinks.forEach(function(t){t.circular&&(e.partOfCycle=!0,e.circularLinkType=t.circularLinkType)}),e.targetLinks.forEach(function(t){t.circular&&(e.partOfCycle=!0,e.circularLinkType=t.circularLinkType)})})}(g),function(e,t,n){var o,r,i;if(null!=t){e.nodes.sort(function(e,n){return t(e)<t(n)?-1:1});var a=0,s=t(e.nodes[0]);e.nodes.forEach(function(e){a=t(e)==s?a:a+1,s=t(e)==s?s:t(e),e.column=a})}for(o=e.nodes,r=[],i=0;o.length;++i,o=r,r=[])o.forEach(function(e){e.depth=i,e.sourceLinks.forEach(function(e){0>r.indexOf(e.target)&&!e.circular&&r.push(e.target)})});for(o=e.nodes,r=[],i=0;o.length;++i,o=r,r=[])o.forEach(function(e){e.height=i,e.targetLinks.forEach(function(e){0>r.indexOf(e.source)&&!e.circular&&r.push(e.source)})});e.nodes.forEach(function(e){e.column=null==t?n(e,i):e.column})}(g,u,c);var f=i;if(null!==s){var p=a.groups(g.nodes,function(e){return e.column}).sort(function(e,t){return e[0]-t[0]}).map(function(e){return e[1]}),y=a.max(p,function(e){return e.length});y>1&&(f=Math.max(1,(o-t)*s/(y-1)))}(function(e,t,n){var o=a.groups(e.nodes,function(e){return e.column}).sort(function(e,t){return e[0]-t[0]}).map(function(e){return e[1]});e.py=t;var r=a.min(o,function(t){return(e.y1-e.y0-(t.length-1)*e.py)/a.sum(t,function(e){return e.value})});e.ky=r,e.links.forEach(function(t){t.width=t.value*e.ky});var i=a.max(e.nodes,function(e){return e.column});e.nodes.forEach(i>0?function(t){t.x0=e.x0+t.column*((e.x1-e.x0-n)/i),t.x1=t.x0+n}:function(t){t.x0=e.x0,t.x1=t.x0+n})})(g,f,r),ya(g,u,l),ma(g,u,l,f,f,d),va(g),ca(g,l,h,10,8),ya(g,u,l),ma(g,u,l,f,f,d),va(g),ca(g,l,h,10,8),function(e,t){let n=e;n.nodes.forEach(function(e){e.y+(e.y1-e.y0)>n.y1&&(e.y=e.y-(e.y+(e.y1-e.y0)-n.y1));var o=n.links.filter(function(n){return Gi(n.source,t)==Gi(e,t)}),r=o.length;r>1&&o.sort(function(e,t){if(!e.circular&&!t.circular){if(e.target.column==t.target.column)return e.y1-t.y1;if(!sa(e,t))return e.y1-t.y1;if(e.target.column>t.target.column){var n=Fi(t,e);return e.y1-n}if(t.target.column>e.target.column)return Fi(e,t)-t.y1}return e.circular&&!t.circular?"top"==e.circularLinkType?-1:1:t.circular&&!e.circular?"top"==t.circularLinkType?1:-1:e.circular&&t.circular?e.circularLinkType===t.circularLinkType&&"top"==e.circularLinkType?e.target.column===t.target.column?e.target.y1-t.target.y1:t.target.column-e.target.column:e.circularLinkType===t.circularLinkType&&"bottom"==e.circularLinkType?e.target.column===t.target.column?t.target.y1-e.target.y1:e.target.column-t.target.column:"top"==e.circularLinkType?-1:1:void 0});var i=e.y0;o.forEach(function(e){e.y0=i+e.width/2,i+=e.width}),o.forEach(function(t,n){if("bottom"==t.circularLinkType){for(var i=n+1,a=0;r>i;i++)a+=o[i].width;t.y0=e.y1-a-t.width/2}})})}(g,l),function(e,t){let n=e;n.nodes.forEach(function(e){var o=n.links.filter(function(n){return Gi(n.target,t)==Gi(e,t)}),r=o.length;r>1&&o.sort(function(e,t){if(!e.circular&&!t.circular){if(e.source.column==t.source.column)return e.y0-t.y0;if(!sa(e,t))return e.y0-t.y0;if(e.source.column>t.source.column){var n=$i(t,e);return e.y0-n}if(t.source.column>e.source.column)return $i(e,t)-t.y0}return e.circular&&!t.circular?"top"==e.circularLinkType?-1:1:t.circular&&!e.circular?"top"==t.circularLinkType?1:-1:e.circular&&t.circular?e.circularLinkType===t.circularLinkType&&"top"==e.circularLinkType?e.source.column===t.source.column?e.source.y1-t.source.y1:e.source.column-t.source.column:e.circularLinkType===t.circularLinkType&&"bottom"==e.circularLinkType?e.source.column===t.source.column?e.source.y1-t.source.y1:t.source.column-e.source.column:"top"==e.circularLinkType?-1:1:void 0});var i=e.y0;o.forEach(function(e){e.y1=i+e.width/2,i+=e.width}),o.forEach(function(t,n){if("bottom"==t.circularLinkType){for(var i=n+1,a=0;r>i;i++)a+=o[i].width;t.y1=e.y1-a-t.width/2}})})}(g,l),function(e){var t=e.nodes,n=e.links,o=!1,r=!1;if(n.forEach(function(e){"top"==e.circularLinkType?o=!0:"bottom"==e.circularLinkType&&(r=!0)}),0==o||0==r){var i=a.min(t,function(e){return e.y0}),s=a.max(t,function(e){return e.y1}),l=(e.y1-e.y0)/(s-i);function c(t){return(t-i)/(s-i)*(e.y1-e.y0)+e.y0}1>l?(t.forEach(function(e){e.y0=c(e.y0),e.y1=c(e.y1)}),n.forEach(function(e){e.y0=c(e.y0),e.y1=c(e.y1),e.width=e.width*l})):t.forEach(function(e){var t=e.y1-e.y0,n=c(e.y0)-e.y0;e.y0=c(e.y0),e.y1=e.y0+t,e.sourceLinks.forEach(function(e){e.y0=e.y0+n}),e.targetLinks.forEach(function(e){e.y1=e.y1+n})})}}(g),ca(g,l,h,10,8)}(p),p}return p.update=function(e){return va(e),ca(e,l,h,10,8),e},p.nodeWidth=function(e){return arguments.length?(r=+e,p):r},p.nodePadding=function(e){return arguments.length?(i=+e,p):i},p.nodePaddingRatio=function(e){return arguments.length?(s=+e,p):s},p.nodes=function(e){return arguments.length?(g="function"==typeof e?e:ha(e),p):g},p.links=function(e){return arguments.length?(f="function"==typeof e?e:ha(e),p):f},p.nodeId=function(e){return arguments.length?(l="function"==typeof e?e:ha(e),p):l},p.nodeAlign=function(e){return arguments.length?(c="function"==typeof e?e:ha(e),p):c},p.nodeSort=function(e){return arguments.length?(u=e,p):u},p.iterations=function(e){return arguments.length?(d=+e,p):d},p.circularLinkGap=function(e){return arguments.length?(h=+e,p):h},p.extent=function(r){return arguments.length?(e=+r[0][0],t=+r[0][1],n=+r[1][0],o=+r[1][1],p):[[e,t],[n,o]]},p.size=function(r){return arguments.length?(e=t=0,n=+r[0],o=+r[1],p):[n-e,o-t]},p}const xa=e=>{let t,n,o,r,i,a,s,l,c;return"down"===e.direction?(t=e.y0-e.sankeyWidth/2,n=e.y1-e.sankeyWidth/2,o=e.y1+e.sankeyWidth/2,r=e.y0+e.sankeyWidth/2,i=e.source.x1,a=e.target.x0,s=u.interpolateNumber(i,a),l=s(.5),c=s(.5),`M${t},${i}C${t},${l} ${n},${c} ${n},${a}L${o},${a}C${o},${c} ${r},${l} ${r},${i}Z`):(t=e.source.x1,n=e.target.x0,s=u.interpolateNumber(t,n),o=s(.5),r=s(.5),i=e.y0-e.sankeyWidth/2,a=e.y1-e.sankeyWidth/2,l=e.y1+e.sankeyWidth/2,c=e.y0+e.sankeyWidth/2,`M${t},${i}C${o},${i} ${r},${a} ${n},${a}L${n},${l}C${r},${l} ${o},${c} ${t},${c}Z`)};function ka(e){var t;const n=e.sankeyWidth/2,o=(null!==(t=e._circularWidth)&&void 0!==t?t:e.sankeyWidth)/2,r=e.circularPathData;if(!r)return null;if("down"===e.direction)return null;if(e._circularStub){const t=r.sourceX,o=r.sourceY,i=r.targetX,a=r.targetY;if("object"!=typeof e.source||!e.source||"object"!=typeof e.target||!e.target)return null;const s=Math.max(15,Math.min(40,.33*(r.rightFullExtent-t))),l=Math.max(15,Math.min(40,.33*(i-r.leftFullExtent)));return`M${t},${o-n}L${t+s},${o-n}L${t+s},${o+n}L${t},${o+n}ZM${i},${a-n}L${i-l},${a-n}L${i-l},${a+n}L${i},${a+n}Z`}const i=r.sourceX,a=r.sourceY,s=r.targetX,l=r.targetY,c=r.rightFullExtent,u=r.leftFullExtent,d=r.verticalFullExtent,h="bottom"===e.circularLinkType?1:-1,g=Math.max(4,Math.min(o,15));return`M${i},${a-h*n}L${c},${a-h*n}L${c+o},${a-h*n+h*g}L${c+o},${d+h*o-h*g}L${c+o-g},${d+h*o}L${u-o+g},${d+h*o}L${u-o},${d+h*o-h*g}L${u-o},${l-h*n+h*g}L${u-o+g},${l-h*n}L${s},${l-h*n}L${s},${l+h*n}L${u+o},${l+h*n}L${u+o},${d-h*o}L${c-o},${d-h*o}L${c-o},${a+h*n}L${i},${a+h*n}Z`}const wa=new Set,Aa=new WeakMap;function Sa(e,t){if("production"===process.env.NODE_ENV)return e;if(!e||!e.data||"object"!=typeof e.data)return e;let n=Aa.get(e);if(n){const e=n.get(t);if(e)return e}else n=new Map,Aa.set(e,n);const o=new Proxy(e,{get(e,n,o){if("string"==typeof n&&!(n in e)&&e.data&&n in e.data){const e=`${t}:${n}`;wa.has(e)||(wa.add(e),console.warn(`[Semiotic] "${t}" callback accessed "${n}" on the wrapper object, but it only exists on ".data". Use d.data.${n} (or d.data?.${n}) instead. Frame callbacks receive RealtimeNode/RealtimeEdge wrappers, not your raw data.`))}return Reflect.get(e,n,o)}});return n.set(t,o),o}const Oa={left:function(e){return e.depth},right:function(e,t){return t-1-e.height},center:function(e){return e.targetLinks.length?e.depth:e.sourceLinks.length?Math.min.apply(Math,e.sourceLinks.map(Ki))-1:0},justify:Qi},Ea={supportsStreaming:!0,hierarchical:!1,computeLayout(e,t,n,o){var r,i,a,s,l,c,u;if(0===e.length)return;const d="vertical"===n.orientation?"down":"right",h=n.nodeAlign||"justify",g=null!==(r=n.nodeWidth)&&void 0!==r?r:15,f=null!==(i=n.nodePaddingRatio)&&void 0!==i?i:.05,p=null!==(a=n.iterations)&&void 0!==a?a:100,y=e.map(e=>Object.assign({},e)),m=t.map(e=>Object.assign(Object.assign({},e),{source:"string"==typeof e.source?e.source:e.source.id,target:"string"==typeof e.target?e.target:e.target.id,value:Math.sqrt(Math.max(1,e.value||1))}));let v;v="down"===d?[[0,0],[o[1],o[0]]]:[[0,0],[o[0],o[1]]];const b=ba().extent(v).links(m).nodes(y).nodeAlign(Oa[h]||Qi).nodeId(e=>e.id).nodeWidth(g).iterations(p);b.nodePaddingRatio&&b.nodePaddingRatio(f),b();{let e=1/0,t=-1/0,n=1/0,r=-1/0;for(const o of y)e>o.x0&&(e=o.x0),o.x1>t&&(t=o.x1),n>o.y0&&(n=o.y0),o.y1>r&&(r=o.y1);for(const o of m){if(!o.circular||!o.circularPathData)continue;const i=o.circularPathData,a=(null!==(l=null!==(s=o._circularWidth)&&void 0!==s?s:o.width)&&void 0!==l?l:0)/2;e>i.leftFullExtent-a&&(e=i.leftFullExtent-a),i.rightFullExtent+a>t&&(t=i.rightFullExtent+a),n>i.verticalFullExtent-a&&(n=i.verticalFullExtent-a),i.verticalFullExtent+a>r&&(r=i.verticalFullExtent+a)}const i=t-e,a=r-n,u=o[0],d=o[1];if(i>0&&a>0&&(0>e||0>n||t>u||r>d)){const t=Math.min(u/i,d/a),o=-e*t+(u-i*t)/2,r=-n*t+(d-a*t)/2;for(const e of y)e.x0=e.x0*t+o,e.x1=e.x1*t+o,e.y0=e.y0*t+r,e.y1=e.y1*t+r;for(const e of m)if(e.y0=e.y0*t+r,e.y1=e.y1*t+r,e.width=(null!==(c=e.width)&&void 0!==c?c:0)*t,e._circularWidth&&(e._circularWidth*=t),e.circular&&e.circularPathData){const n=e.circularPathData;n.sourceX=n.sourceX*t+o,n.targetX=n.targetX*t+o,n.sourceY=n.sourceY*t+r,n.targetY=n.targetY*t+r,n.rightFullExtent=n.rightFullExtent*t+o,n.leftFullExtent=n.leftFullExtent*t+o,n.verticalFullExtent=n.verticalFullExtent*t+r,n.rightInnerExtent=n.rightInnerExtent*t+o,n.leftInnerExtent=n.leftInnerExtent*t+o,n.verticalRightInnerExtent=n.verticalRightInnerExtent*t+r,n.verticalLeftInnerExtent=n.verticalLeftInnerExtent*t+r,n.rightSmallArcRadius*=t,n.rightLargeArcRadius*=t,n.leftSmallArcRadius*=t,n.leftLargeArcRadius*=t,n.sourceWidth*=t,n.rightNodeBuffer*=t,n.leftNodeBuffer*=t,n.arcRadius*=t}}}const x=new Map;for(const t of e)x.set(t.id,t);for(const e of y){const t=x.get(e.id);t&&(t.x0=e.x0,t.x1=e.x1,t.y0=e.y0,t.y1=e.y1,t.value=e.value,t.depth=e.depth,t.sourceLinks=e.sourceLinks,t.targetLinks=e.targetLinks,t.width=e.x1-e.x0,t.height=e.y1-e.y0,t.x=e.x0+(e.x1-e.x0)/2,t.y=e.y0+(e.y1-e.y0)/2)}const k=new Map;for(const e of t)k.set(e._edgeKey?e._edgeKey:`${"string"==typeof e.source?e.source:e.source.id}\0${"string"==typeof e.target?e.target:e.target.id}`,e);for(const e of m){const t=e.source,n=e.target,o="object"==typeof t&&null!==t?t.id:t+"",r="object"==typeof n&&null!==n?n.id:n+"",i=k.get(e._edgeKey?e._edgeKey:`${o}\0${r}`);if(i){i.y0=e.y0,i.y1=e.y1,i.sankeyWidth=null!==(u=e.width)&&void 0!==u?u:0,i.circular=!!e.circular,i.circularPathData=e.circularPathData,i._circularWidth=e._circularWidth,i._circularStub=e._circularStub,i.path=e.path,i.circularLinkType=e.circularLinkType,i.direction=d;const t=x.get(o),n=x.get(r);t&&(i.source=t),n&&(i.target=n)}}},buildScene(e,t,n,o){var r,a,s,l;const c="vertical"===n.orientation?"down":"right",u=n.nodeStyle,d=n.edgeStyle,h=null!==(r=n.edgeOpacity)&&void 0!==r?r:.5,g=n.edgeColorBy||"source",f=Array.isArray(n.colorScheme)?n.colorScheme:i.schemeCategory10,p=new Map;e.forEach((e,t)=>{p.set(e.id,f[t%f.length])});const y=[],m=[],v=[],b=new Map;for(const t of e){const e=t.x1-t.x0,n=t.y1-t.y0;if(0>=e||0>=n)continue;const o=u?u(Sa(t,"nodeStyle")):{},r={fill:o.fill||p.get(t.id)||"#4d430c",stroke:o.stroke,strokeWidth:o.strokeWidth,opacity:o.opacity};b.set(t.id,("string"==typeof r.fill?r.fill:null)||p.get(t.id)||"#4d430c"),y.push("down"===c?{type:"rect",x:t.y0,y:t.x0,w:n,h:e,style:r,datum:t,id:t.id,label:t.id}:{type:"rect",x:t.x0,y:t.y0,w:e,h:n,style:r,datum:t,id:t.id,label:t.id})}const x=[...t].sort((e,t)=>(t.sankeyWidth||0)-(e.sankeyWidth||0));for(const e of x){if(!e.sankeyWidth||0>=e.sankeyWidth)continue;const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;if(!t||!n)continue;let o="#999";o="function"==typeof g?g(e)||o:"target"===g?b.get(n.id)||p.get(n.id)||o:b.get(t.id)||p.get(t.id)||o;const r=d?d(Sa(e,"edgeStyle")):{};if(e._circularStub&&e.circular&&e.circularPathData){const t=e.circularPathData,n=e.sankeyWidth/2,i=Math.max(15,Math.min(40,.33*(t.rightFullExtent-t.sourceX))),l=Math.max(15,Math.min(40,.33*(t.targetX-t.leftFullExtent))),c=r.fill||o;m.push({type:"bezier",pathD:`M${t.sourceX},${t.sourceY-n}L${t.sourceX+i},${t.sourceY-n}L${t.sourceX+i},${t.sourceY+n}L${t.sourceX},${t.sourceY+n}Z`,style:{fill:c,fillOpacity:null!==(a=r.fillOpacity)&&void 0!==a?a:h,stroke:"none",opacity:r.opacity},datum:e,_gradient:{direction:"right",from:1,to:0,x0:t.sourceX,x1:t.sourceX+i}}),m.push({type:"bezier",pathD:`M${t.targetX},${t.targetY-n}L${t.targetX-l},${t.targetY-n}L${t.targetX-l},${t.targetY+n}L${t.targetX},${t.targetY+n}Z`,style:{fill:c,fillOpacity:null!==(s=r.fillOpacity)&&void 0!==s?s:h,stroke:"none",opacity:r.opacity},datum:e,_gradient:{direction:"left",from:0,to:1,x0:t.targetX-l,x1:t.targetX}});continue}let i;if(i=e.circular&&e.circularPathData?ka(e):xa(e),!i)continue;const c={fill:r.fill||o,fillOpacity:null!==(l=r.fillOpacity)&&void 0!==l?l:h,stroke:r.stroke||"none",strokeWidth:r.strokeWidth,opacity:r.opacity};m.push({type:"bezier",pathD:i,bezierCache:e.bezier,style:c,datum:e})}if(!1!==n.showLabels){const t=(k=n.nodeLabel)?"function"==typeof k?k:e=>e[k]||e.id:null;for(const n of e){const e=n.x1-n.x0,r=n.y1-n.y0;if(0>=e||0>=r)continue;const i=t?t(n):n.id;if(!i)continue;let a,s,l;"down"===c?(a=n.y0+(n.y1-n.y0)/2,s=n.x1+14,l="middle"):(o[0]/2>n.x0+e/2?(a=n.x0-6,l="end"):(a=n.x1+6,l="start"),s=n.y0+r/2),v.push({x:a,y:s,text:i+"",anchor:l,baseline:"middle",fontSize:11})}}var k;return{sceneNodes:y,sceneEdges:m,labels:v}}},Ma={supportsStreaming:!0,hierarchical:!1,computeLayout(e,t,n,o){var r,i;if(0===e.length)return;const a=null!==(r=n.forceStrength)&&void 0!==r?r:.1,s=o[0]/2,l=o[1]/2,c=n.__previousPositions;let u=0;const h=[];for(const t of e){const e=null!=t.x&&null!=t.y&&(0!==t.x||0!==t.y),n=null==c?void 0:c.get(t.id);e?u++:n?(t.x=n.x,t.y=n.y,u++):h.push(t)}const g=u>0&&.3>=(e.length>0?h.length/e.length:1);if(g){const n=new Map;for(const t of e)n.set(t.id,t);for(const e of h){const o=ja(e.id,t,n);if(o.length>0){let t=0,n=0;for(const e of o)t+=e.x,n+=e.y;const r=Ca(e.id),i=r%360*(Math.PI/180),a=10+r%20;e.x=t/o.length+a*Math.cos(i),e.y=n/o.length+a*Math.sin(i)}else{const t=Ca(e.id),n=t%360*(Math.PI/180),o=15+t%30;e.x=s+o*Math.cos(n),e.y=l+o*Math.sin(n)}}}else{const t=2.399963229728653;for(let n=0;e.length>n;n++){const o=e[n];if(null==o.x||null==o.y||0===o.x&&0===o.y){const e=10*Math.sqrt(n+.5),r=n*t;o.x=s+e*Math.cos(r),o.y=l+e*Math.sin(r)}}}const f=null!==(i=n.iterations)&&void 0!==i?i:Math.max(50,Math.min(300,Math.floor(300-2*(e.length-30)))),p=0===n.iterations?0:g?40:f,y=Pa(n.nodeSize,n.nodeSizeRange,e),m=e=>y(e);if(p>0){const n=d.forceLink().strength(e=>Math.min(2.5,e.weight?e.weight*a:a)).id(e=>e.id),o=d.forceSimulation().force("charge",d.forceManyBody().strength(e=>-25*m(e))).force("center",d.forceCenter(s,l).strength(.8)).force("x",d.forceX(s).strength(.15)).force("y",d.forceY(l).strength(.15));if(o.nodes(e),t.length>0){const e=t.map(e=>Object.assign(Object.assign({},e),{source:"string"==typeof e.source?e.source:e.source.id,target:"string"==typeof e.target?e.target:e.target.id}));o.force("link",n),o.force("link").links(e)}g?o.alpha(.3):.1>o.alpha()&&o.alpha(1),o.stop();for(let e=0;p>e;++e)o.tick()}for(const t of e){if(null==t.x||null==t.y)continue;const e=m(t);t.x=Math.max(e,Math.min(o[0]-e,t.x)),t.y=Math.max(e,Math.min(o[1]-e,t.y)),t.x0=0,t.x1=0,t.y0=0,t.y1=0}const v=new Map;for(const t of e)v.set(t.id,t);for(const e of t){if("string"==typeof e.source){const t=v.get(e.source);t&&(e.source=t)}if("string"==typeof e.target){const t=v.get(e.target);t&&(e.target=t)}}},buildScene(e,t,n,o){var r,a,s;const l=n.nodeStyle,c=n.edgeStyle,u=Pa(n.nodeSize,n.nodeSizeRange,e),d=Array.isArray(n.colorScheme)?n.colorScheme:i.schemeCategory10,h=new Map;e.forEach((e,t)=>{h.set(e.id,d[t%d.length])});const g=[],f=[],p=[];for(const t of e){if(null==t.x||null==t.y)continue;const e=u(Sa(t,"nodeSize")),n=l?l(Sa(t,"nodeStyle")):{},o={fill:n.fill||h.get(t.id)||"#007bff",stroke:n.stroke||"#fff",strokeWidth:null!==(r=n.strokeWidth)&&void 0!==r?r:2,opacity:n.opacity};g.push({type:"circle",cx:t.x,cy:t.y,r:e,style:o,datum:t,id:t.id,label:t.id})}const y=new Map;for(const t of e)y.set(t.id,t);for(const e of t){const t="object"==typeof e.source?e.source:y.get(e.source),n="object"==typeof e.target?e.target:y.get(e.target);if(!t||!n)continue;if(null==t.x||null==t.y)continue;if(null==n.x||null==n.y)continue;const o=c?c(Sa(e,"edgeStyle")):{},r={stroke:o.stroke||"#999",strokeWidth:null!==(a=o.strokeWidth)&&void 0!==a?a:1,opacity:null!==(s=o.opacity)&&void 0!==s?s:.6};f.push({type:"line",x1:t.x,y1:t.y,x2:n.x,y2:n.y,style:r,datum:e})}if(!1!==n.showLabels){const t=(m=n.nodeLabel)?"function"==typeof m?m:e=>e[m]||e.id:null;for(const n of e){if(null==n.x||null==n.y)continue;const e=t?t(n):n.id;if(!e)continue;const o=u(Sa(n,"nodeSize"));p.push({x:n.x,y:n.y-o-4,text:e+"",anchor:"middle",baseline:"auto",fontSize:11})}}var m;return{sceneNodes:g,sceneEdges:f,labels:p}}};function ja(e,t,n){const o=[];for(const r of t){const t="string"==typeof r.source?r.source:r.source.id,i="string"==typeof r.target?r.target:r.target.id;let a=null;if(t===e?a=i:i===e&&(a=t),a){const e=n.get(a);!e||0===e.x&&0===e.y||o.push({x:e.x,y:e.y})}}return o}function Ca(e){let t=0;for(let n=0;e.length>n;n++)t=(t<<5)-t+e.charCodeAt(n)|0;return Math.abs(t)}function Pa(e,t,n){var r,i;if(null==e)return()=>8;if("number"==typeof e)return()=>e;if("function"==typeof e)return t=>e(t)||8;const s=t||[5,20],l=n.map(t=>{var n;return null===(n=t.data)||void 0===n?void 0:n[e]}).filter(e=>null!=e&&"number"==typeof e);if(0===l.length)return()=>s[0];const c=null!==(r=a.min(l))&&void 0!==r?r:0,u=null!==(i=a.max(l))&&void 0!==i?i:1;if(c===u)return()=>(s[0]+s[1])/2;const d=o.scaleLinear().domain([c,u]).range(s).clamp(!0);return t=>{var n;const o=null===(n=t.data)||void 0===n?void 0:n[e];return null==o||"number"!=typeof o?s[0]:d(o)}}const _a=i.schemeCategory10,La={supportsStreaming:!1,hierarchical:!1,computeLayout(e,t,n,o){if(0===e.length)return;const{padAngle:r=.01,groupWidth:i=20,sortGroups:a}=n,s=Math.min(o[0],o[1])/2,c=s-i,u=o[0]/2,d=o[1]/2,g=(f=n.valueAccessor)?"function"==typeof f?f:e=>{var t;return null!==(t=e[f])&&void 0!==t?t:1}:e=>{var t;return null!==(t=e.value)&&void 0!==t?t:1};var f;const p=new Map;for(let t=0;e.length>t;t++)p.set(e[t].id,t);const y=e.length,m=Array.from({length:y},()=>Array.from({length:y},()=>0));for(const e of t){const t="string"==typeof e.target?e.target:e.target.id,n=p.get("string"==typeof e.source?e.source:e.source.id),o=p.get(t);if(void 0===n||void 0===o)continue;const r=g(e);m[n][o]=r}const v=h.chord().padAngle(r);a&&v.sortGroups(a);const b=v(m),x=b.groups,k=l.arc().innerRadius(c).outerRadius(s);for(const t of x){const n=e[t.index],o=k.centroid(t);n.x=o[0]+u,n.y=o[1]+d,n.arcData={startAngle:t.startAngle,endAngle:t.endAngle}}const w=new Map;for(const t of e)w.set(t.id,t);for(const e of t){const t="string"==typeof e.target?e.target:e.target.id,n=w.get("string"==typeof e.source?e.source:e.source.id),o=w.get(t);n&&(e.source=n),o&&(e.target=o)}const A=new Map;for(const e of t)A.set(`${"string"==typeof e.source?e.source:e.source.id}\0${"string"==typeof e.target?e.target:e.target.id}`,e);for(const t of b){const n=e[t.source.index].id,o=e[t.target.index].id,r=A.get(`${n}\0${o}`)||A.get(`${o}\0${n}`);r&&(r.chordData=t)}},buildScene(e,t,n,o){var r,i;const{groupWidth:a=20,edgeOpacity:s=.5}=n,l=Math.min(o[0],o[1])/2,c=l-a,u=o[0]/2,d=o[1]/2,g=n.nodeStyle,f=n.edgeStyle,p=n.edgeColorBy||"source",y=Array.isArray(n.colorScheme)?n.colorScheme:_a,m=new Map;e.forEach((e,t)=>{m.set(e.id,y[t%y.length])});const v=h.ribbon().radius(c),b=[],x=[],k=[];for(let t=0;e.length>t;t++){const n=e[t],o=n.arcData;if(!o)continue;let i;i=g?g(Sa(n,"nodeStyle")).fill||m.get(n.id)||y[t%y.length]:m.get(n.id)||y[t%y.length];const a=g?g(Sa(n,"nodeStyle")):{},s={fill:i,stroke:a.stroke||"black",strokeWidth:null!==(r=a.strokeWidth)&&void 0!==r?r:1,opacity:a.opacity};b.push({type:"arc",cx:u,cy:d,innerR:c,outerR:l,startAngle:o.startAngle-Math.PI/2,endAngle:o.endAngle-Math.PI/2,style:s,datum:n,id:n.id,label:n.id})}for(const e of t){const t=e.chordData;if(!t)continue;const n=v(t);if(!n)continue;const o=Ta(n,u,d);let r="#999";if(f)r=f(Sa(e,"edgeStyle")).fill||r;else{const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;"target"===p&&n?r=m.get(n.id)||r:t&&(r=m.get(t.id)||r)}const a=f?f(Sa(e,"edgeStyle")):{},l={fill:r,fillOpacity:null!==(i=a.fillOpacity)&&void 0!==i?i:s,stroke:a.stroke||"none",strokeWidth:a.strokeWidth,opacity:a.opacity};x.push({type:"ribbon",pathD:o,style:l,datum:e})}if(!1!==n.showLabels){const t=(w=n.nodeLabel)?"function"==typeof w?w:e=>e[w]||e.id:null,o=l+12;for(const n of e){const e=n.arcData;if(!e)continue;const r=t?t(n):n.id;if(!r)continue;const i=(e.startAngle+e.endAngle)/2,a=i-Math.PI/2;k.push({x:u+Math.cos(a)*o,y:d+Math.sin(a)*o,text:r+"",anchor:i>Math.PI?"end":"start",baseline:"middle",fontSize:11})}}var w;return{sceneNodes:b,sceneEdges:x,labels:k}}};function Ta(e,t,n){const o=e.match(/[a-zA-Z]|[-+]?\d*\.?\d+(?:[eE][-+]?\d+)?/g);if(!o)return e;const r=[];let i=0;for(;o.length>i;){const e=o[i];if("M"===e||"L"===e)for(r.push(e),i++;o.length>i&&!isNaN(Number(o[i]));)r.push(Number(o[i])+t+""),i++,o.length>i&&!isNaN(Number(o[i]))&&(r.push(Number(o[i])+n+""),i++);else if("C"===e)for(r.push(e),i++;o.length>i&&!isNaN(Number(o[i]));)for(let e=0;3>e&&o.length>i&&!isNaN(Number(o[i]));e++)r.push(Number(o[i])+t+""),i++,o.length>i&&!isNaN(Number(o[i]))&&(r.push(Number(o[i])+n+""),i++);else if("Q"===e)for(r.push(e),i++;o.length>i&&!isNaN(Number(o[i]));)for(let e=0;2>e&&o.length>i&&!isNaN(Number(o[i]));e++)r.push(Number(o[i])+t+""),i++,o.length>i&&!isNaN(Number(o[i]))&&(r.push(Number(o[i])+n+""),i++);else if("A"===e)for(r.push(e),i++;o.length>i&&!isNaN(Number(o[i]));)r.push(o[i++]),o.length>i&&r.push(o[i++]),o.length>i&&r.push(o[i++]),o.length>i&&r.push(o[i++]),o.length>i&&r.push(o[i++]),o.length>i&&(r.push(Number(o[i])+t+""),i++),o.length>i&&(r.push(Number(o[i])+n+""),i++);else"Z"===e||"z"===e?(r.push(e),i++):(r.push(o[i]),i++)}return r.join(" ")}const Ra=["#e8d5b7","#b8d4e3","#d4e3b8","#e3c4d4","#d4d4e3","#e3d4b8","#b8e3d4","#e3b8b8"];function Ba(e){const[t,n,o]=function(e){if(e.startsWith("#")){let t=e.slice(1);if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length)return[parseInt(t.slice(0,2),16),parseInt(t.slice(2,4),16),parseInt(t.slice(4,6),16)]}const t=e.match(/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return t?[+t[1],+t[2],+t[3]]:[128,128,128]}(e);return.299*t+.587*n+.114*o>150?"#222":"#fff"}function Da(e,t,n){const o=t.nodeIDAccessor;return"function"==typeof o?o(e.data)+"":"string"==typeof o&&void 0!==e.data[o]?e.data[o]+"":void 0!==e.data.name?e.data.name+"":void 0!==e.data.id?e.data.id+"":"node-"+n}function Ia(e){return e?"function"==typeof e?e:t=>{var n;return(null===(n=t.data)||void 0===n?void 0:n[e])||t[e]||t.id}:null}function Na(e){return Array.isArray(e.colorScheme)?e.colorScheme:Ra}function Ha(e){return Array.isArray(e.colorScheme)&&e.colorScheme.length>0?e.colorScheme[0]:"#4d430c"}function Wa(e,t,n,o,r){if("horizontal"===r){const r=(e+n)/2;return`M ${e},${t} C ${r},${t} ${r},${o} ${n},${o}`}if("radial"===r){const r=(e+n)/2;return`M ${e},${t} Q ${r},${t} ${r},${(t+o)/2} T ${n},${o}`}{const r=(t+o)/2;return`M ${e},${t} C ${e},${r} ${n},${r} ${n},${o}`}}const Fa={supportsStreaming:!1,hierarchical:!0,computeLayout(e,t,n,o){var r;const i=n.__hierarchyRoot;if(!i)return;const a=n.chartType,l=function(e){if(e)return"function"==typeof e?e:t=>t[e]}(n.childrenAccessor),c=n.hierarchySum,u="function"==typeof c?c:"string"==typeof c?e=>{var t;return null!==(t=e[c])&&void 0!==t?t:0}:e=>{var t;return null!==(t=e.value)&&void 0!==t?t:0},d=s.hierarchy(i,l);d.sum(u),d.sort((e,t)=>{var n,o;return(null!==(n=t.value)&&void 0!==n?n:0)-(null!==(o=e.value)&&void 0!==o?o:0)});const[h,g]=o;switch(a){case"tree":!function(e,t,n,o){const r=t.treeOrientation||"vertical",i=s.tree();i.size("horizontal"===r?[o,n]:"radial"===r?[2*Math.PI,Math.min(n,o)/2*.8]:[n,o]),i(e)}(d,n,h,g);break;case"cluster":!function(e,t,n,o){const r=t.treeOrientation||"vertical",i=s.cluster();i.size("horizontal"===r?[o,n]:"radial"===r?[2*Math.PI,Math.min(n,o)/2*.8]:[n,o]),i(e)}(d,n,h,g);break;case"treemap":!function(e,t,n,o){var r,i;const a=null!==(r=t.padding)&&void 0!==r?r:4,l=null!==(i=t.paddingTop)&&void 0!==i?i:0,c=s.treemap().size([n,o]).tile(s.treemapBinary).padding(a);l>0&&c.paddingTop(l),c(e)}(d,n,h,g);break;case"circlepack":!function(e,t,n,o){var r;const i=null!==(r=t.padding)&&void 0!==r?r:4;s.pack().size([n,o]).padding(i)(e)}(d,n,h,g);break;case"partition":!function(e,t,n,o){var r;s.partition().size([n,o]).padding(null!==(r=t.padding)&&void 0!==r?r:1)(e)}(d,n,h,g)}const f=d.descendants();e.length=0,t.length=0;const p=new Map;for(let t=0;f.length>t;t++){const o=f[t],i={id:Da(o,n,t),x:0,y:0,x0:0,x1:0,y0:0,y1:0,width:0,height:0,value:null!==(r=o.value)&&void 0!==r?r:0,depth:o.depth,data:o.data,createdByFrame:!0};"tree"===a||"cluster"===a?$a(i,o,n):"treemap"===a||"partition"===a?za(i,o):"circlepack"===a&&Ga(i,o),i.__hierarchyNode=o,e.push(i),p.set(o,i)}if("tree"===a||"cluster"===a)for(const e of f)if(e.parent){const n=p.get(e.parent),o=p.get(e);n&&o&&t.push({source:n,target:o,value:1,y0:0,y1:0,sankeyWidth:0,data:{depth:e.depth}})}},buildScene(e,t,n,o){const r=n.nodeStyle||(()=>({})),i=n.edgeStyle||(()=>({}));switch(n.chartType){case"tree":case"cluster":return function(e,t,n,o,r,i){var a,s,l,c,u;const d=[],h=[],g=[],f=n.treeOrientation||"vertical",p="radial"===f,y=o[0]/2,m=o[1]/2,v="number"==typeof(b=n.nodeSize)?b:5;var b;for(const t of e){let e=t.x,o=t.y;p&&(e+=y,o+=m);const i=r(Sa(t,"nodeStyle"));let s=i.fill||Ha(n);if(n.colorByDepth&&void 0!==t.depth){const e=Na(n);s=e[t.depth%e.length]}const l={fill:s,stroke:i.stroke||"#fff",strokeWidth:null!==(a=i.strokeWidth)&&void 0!==a?a:1,opacity:i.opacity};d.push({type:"circle",cx:e,cy:o,r:v,style:l,datum:t,id:t.id,label:t.id,depth:t.depth})}const x=null!==(s=n.edgeOpacity)&&void 0!==s?s:.5;for(const e of t){const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;if(!t||!n)continue;let o=t.x,r=t.y,a=n.x,s=n.y;p&&(o+=y,r+=m,a+=y,s+=m);const u=Wa(o,r,a,s,f),d=i(Sa(e,"edgeStyle")),g={fill:"none",stroke:d.stroke||"#999",strokeWidth:null!==(l=d.strokeWidth)&&void 0!==l?l:1.5,opacity:null!==(c=d.opacity)&&void 0!==c?c:x};h.push({type:"curved",pathD:u,style:g,datum:e})}if(!1!==n.showLabels){const t=Ia(n.nodeLabel);for(const n of e){const e=t?t(n):n.id;if(!e)continue;let o,r,i,a=n.x,s=n.y;if(p&&(a+=y,s+=m),p){const e=a-y,t=s-m,n=Math.sqrt(e*e+t*t);n>0?(o=a+e/n*10,r=s+t/n*10,i=0>e?"end":"start"):(o=a,r=s-12,i="middle")}else"horizontal"===f?((null===(u=n.data)||void 0===u?void 0:u.children)&&0!==n.data.children.length?(o=a-v-6,i="end"):(o=a+v+6,i="start"),r=s):(o=a,r=s+v+14,i="middle");g.push({x:o,y:r,text:e+"",anchor:i,baseline:"middle",fontSize:11})}}return{sceneNodes:d,sceneEdges:h,labels:g}}(e,t,n,o,r,i);case"treemap":case"partition":return function(e,t,n,o){var r,i;const a=[],s=[];for(const n of e){const e=n.x1-n.x0,i=n.y1-n.y0;if(0>=e||0>=i)continue;const s=o(Sa(n,"nodeStyle"));let l=s.fill||Ha(t);if(t.colorByDepth&&void 0!==n.depth){const e=Na(t);l=e[n.depth%e.length]}const c={fill:l,stroke:s.stroke||"#fff",strokeWidth:null!==(r=s.strokeWidth)&&void 0!==r?r:1,opacity:s.opacity};a.push({type:"rect",x:n.x0,y:n.y0,w:e,h:i,style:c,datum:n,id:n.id,label:n.id,depth:n.depth})}if(!1!==t.showLabels){const n=Ia(t.nodeLabel),r=t.labelMode||"leaf",a="partition"===t.chartType;for(const l of e){const e=l.x1-l.x0,c=l.y1-l.y0;if(0>=e||0>=c)continue;const u=!((null===(i=l.data)||void 0===i?void 0:i.children)&&l.data.children.length>0);if(!a){if("leaf"===r&&!u)continue;if("parent"===r&&u)continue}const d=n?n(l):l.id;if(!d)continue;if((u?30:40)>e||(u?16:14)>c)continue;let h=o(Sa(l,"nodeStyle")).fill||Ha(t);if(t.colorByDepth&&void 0!==l.depth){const e=Na(t);h=e[l.depth%e.length]}const g=Ba(h);s.push(u?{x:l.x0+e/2,y:l.y0+c/2,text:d+"",anchor:"middle",baseline:"middle",fontSize:Math.min(11,Math.max(8,Math.min(e,c)/6)),fill:g}:{x:l.x0+4,y:l.y0+12,text:d+"",anchor:"start",baseline:"auto",fontSize:11,fontWeight:600,fill:g})}}return{sceneNodes:a,sceneEdges:[],labels:s}}(e,n,0,r);case"circlepack":return function(e,t,n,o){var r,i,a,s,l;const c=[],u=[];for(const n of e){const e=null!==(r=n.__radius)&&void 0!==r?r:5;if(0>=e)continue;const s=o(Sa(n,"nodeStyle"));let l=s.fill||Ha(t);if(t.colorByDepth&&void 0!==n.depth){const e=Na(t);l=e[n.depth%e.length]}const u={fill:l,stroke:s.stroke||"#fff",strokeWidth:null!==(i=s.strokeWidth)&&void 0!==i?i:1,opacity:null!==(a=s.opacity)&&void 0!==a?a:.7};c.push({type:"circle",cx:n.x,cy:n.y,r:e,style:u,datum:n,id:n.id,label:n.id,depth:n.depth})}if(!1!==t.showLabels){const n=Ia(t.nodeLabel);for(const r of e){const e=null!==(s=r.__radius)&&void 0!==s?s:5,i=n?n(r):r.id;if(!i)continue;if(15>e)continue;const a=!((null===(l=r.data)||void 0===l?void 0:l.children)&&r.data.children.length>0);let c=o(Sa(r,"nodeStyle")).fill||Ha(t);if(t.colorByDepth&&void 0!==r.depth){const e=Na(t);c=e[r.depth%e.length]}if(a){const t=Ba(c);u.push({x:r.x,y:r.y,text:i+"",anchor:"middle",baseline:"middle",fontSize:Math.min(11,Math.max(8,e/3)),fill:t})}else u.push({x:r.x,y:r.y-e+14,text:i+"",anchor:"middle",baseline:"hanging",fontSize:Math.min(11,Math.max(8,e/3)),fill:"#000",stroke:"#fff",strokeWidth:3,paintOrder:"stroke"})}}return{sceneNodes:c,sceneEdges:[],labels:u}}(e,n,0,r);default:return{sceneNodes:[],sceneEdges:[],labels:[]}}}};function $a(e,t,n){const o=n.treeOrientation||"vertical";if("radial"===o){const n=t.x,o=t.y;e.x=o*Math.cos(n-Math.PI/2),e.y=o*Math.sin(n-Math.PI/2)}else"horizontal"===o?(e.x=t.y,e.y=t.x):(e.x=t.x,e.y=t.y);e.x0=e.x-5,e.x1=e.x+5,e.y0=e.y-5,e.y1=e.y+5,e.width=10,e.height=10}function za(e,t){e.x0=t.x0,e.x1=t.x1,e.y0=t.y0,e.y1=t.y1,e.x=(t.x0+t.x1)/2,e.y=(t.y0+t.y1)/2,e.width=t.x1-t.x0,e.height=t.y1-t.y0}function Ga(e,t){var n;const o=null!==(n=t.r)&&void 0!==n?n:0;e.x=t.x,e.y=t.y,e.x0=t.x-o,e.x1=t.x+o,e.y0=t.y-o,e.y1=t.y+o,e.width=2*o,e.height=2*o,e.__radius=o}function Ya(e){const t=e;return t.__orbitState||(t.__orbitState={metaMap:new Map,startTime:"undefined"!=typeof performance?performance.now():Date.now()}),t.__orbitState}const qa={supportsStreaming:!1,hierarchical:!0,supportsAnimation:!0,computeLayout(e,t,n,o){const r=n.__hierarchyRoot;r&&function(e,t,n,o,r){var i,a;const s=function(e){if("function"==typeof e)return e;const t=e||"children";return e=>e[t]||null}(n.childrenAccessor),c=function(e){if("function"==typeof e)return e;const t=e||"name";return e=>{var n;return(null!==(n=e[t])&&void 0!==n?n:"")+""}}(n.nodeIDAccessor),u=function(e){if(Array.isArray(e))return e;switch(e){case"solar":return[1];case"atomic":return[2,8];default:return[9999]}}(n.orbitMode),d=null!==(i=n.orbitSize)&&void 0!==i?i:2.95,h=null!==(a=n.orbitEccentricity)&&void 0!==a?a:1,g="number"==typeof d?()=>d:d,f="number"==typeof h?()=>h:h,p=Ya(n);p.metaMap.clear(),o.length=0,r.length=0;const y=new Map;function m(e){var t;const n=null!==(t=y.get(e))&&void 0!==t?t:0;return y.set(e,n+1),0===n?e:`${e}__${n}`}const v=t[0]/2,b=t[1]/2,x=Math.min(t[0],t[1])/2*.85,k=m(c(e));o.push({id:k,x:v,y:b,x0:v,x1:v,y0:b,y1:b,width:0,height:0,value:0,depth:0,data:e}),p.metaMap.set(k,{ring:x,angle:0,depth:0,parentId:null,eccentricity:1}),function e(t,n,i,a,d,h,y){const v=s(t);if(!(null==v?void 0:v.length))return;const b=v.length;let x=0,k=0,w=0;for(;b>k;)k+=u[Math.min(w,u.length-1)],w++,x++;let A=0;for(let b=0;x>b;b++){const k=u[Math.min(b,u.length-1)],w=v.slice(A,A+k);if(!w.length)break;const S=(b+1)/x,O={id:n,depth:h,data:t,parentId:n},E=y?d/g(O)*S:d*S,M=l.pie().value(e=>{var t;return(null===(t=s(e))||void 0===t?void 0:t.length)?4:1}).sort(null),j=M(w),C=f(O);for(let t=0;w.length>t;t++){const s=(j[t].startAngle+j[t].endAngle)/2,l=w[t],u=m(c(l)),d=i+E*Math.sin(s),g=a+E*Math.cos(s)*C;o.push({id:u,x:d,y:g,x0:d,x1:d,y0:g,y1:g,width:0,height:0,value:0,depth:h,data:l}),p.metaMap.set(u,{ring:E,angle:s,depth:h,parentId:n,eccentricity:C}),r.push({source:n,target:u,value:1,y0:0,y1:0,sankeyWidth:0,data:{source:n,target:u}}),e(l,u,d,g,E,h+1,!0)}A+=k}}(e,k,v,b,x,1,!1)}(r,o,n,e,t)},buildScene(e,t,n,o){var r,i,a,s,l;const c=n.nodeStyle,u=n.nodeSize,d="number"==typeof u?()=>u:"function"==typeof u?u:()=>6,h=[],g=[],f=[];if(!1!==n.orbitShowRings){const t=Ya(n),o=new Map;for(const t of e)o.set(t.id,t);const r=new Map;for(const[,e]of t.metaMap){if(!e.parentId)continue;const t=o.get(e.parentId);if(!t)continue;const n=`${e.parentId}:${e.ring}`;r.has(n)||r.set(n,{parentX:t.x,parentY:t.y,ring:e.ring,ecc:e.eccentricity})}const i=48,a={stroke:"rgba(128,128,128,0.35)",strokeWidth:.5,opacity:1};for(const[,{parentX:e,parentY:t,ring:n,ecc:o}]of r)for(let r=0;i>r;r++){const s=r/i*Math.PI*2,l=(r+1)/i*Math.PI*2;g.push({type:"line",x1:e+n*Math.sin(s),y1:t+n*Math.cos(s)*o,x2:e+n*Math.sin(l),y2:t+n*Math.cos(l)*o,style:a,datum:null})}}for(const t of e){if(null==t.x||null==t.y)continue;const e=d(Sa(t,"nodeSize")),n=c?c(Sa(t,"nodeStyle")):{},o={fill:n.fill||"#6366f1",stroke:n.stroke||"#fff",strokeWidth:null!==(r=n.strokeWidth)&&void 0!==r?r:1,opacity:null!==(i=n.opacity)&&void 0!==i?i:0===(null!==(a=t.depth)&&void 0!==a?a:0)?1:.85};h.push({type:"circle",cx:t.x,cy:t.y,r:e,style:o,datum:t,id:t.id,label:t.id,depth:t.depth})}const p=new Map;for(const t of e)p.set(t.id,t);for(const e of t){const t="object"==typeof e.source?e.source:p.get(e.source),n="object"==typeof e.target?e.target:p.get(e.target);t&&n&&(null!=t.x&&null!=n.x&&g.push({type:"line",x1:t.x,y1:t.y,x2:n.x,y2:n.y,style:{stroke:"rgba(128,128,128,0.35)",strokeWidth:.5,opacity:1},datum:e}))}if(n.showLabels){const t=n.nodeLabel;for(const n of e){const e=d(Sa(n,"nodeSize"));if(4>=e)continue;const o="function"==typeof t?t(n):t&&null!==(l=null===(s=n.data)||void 0===s?void 0:s[t])&&void 0!==l?l:n.id;f.push({x:n.x,y:n.y+e+12,text:o+"",anchor:"middle",fontSize:10,fill:"currentColor"})}}return{sceneNodes:h,sceneEdges:g,labels:f}},tick:(e,t,n,o,r)=>!1!==n.orbitAnimated&&(function(e,t){var n,o;const r=Ya(t),i=null!==(n=t.orbitSpeed)&&void 0!==n?n:.25,a=null!==(o=t.orbitRevolution)&&void 0!==o?o:function(e){switch(e){case"decay":return e=>{var t;return Math.pow(.6,null!==(t=e.depth)&&void 0!==t?t:0)};case"alternate":return e=>{var t;const n=null!==(t=e.depth)&&void 0!==t?t:0;return(n%2==0?1:-1)/(n+1)};default:return e=>{var t;return 1/((null!==(t=e.depth)&&void 0!==t?t:0)+1)}}}(t.orbitRevolutionStyle),s=(("undefined"!=typeof performance?performance.now():Date.now())-r.startTime)/1e3,l=i*(Math.PI/6),c=new Map;for(const t of e)c.set(t.id,t);for(const t of e){const e=r.metaMap.get(t.id);if(!e||!e.parentId)continue;const n=c.get(e.parentId);if(!n)continue;const o=e.angle+s*l*a({id:t.id,depth:e.depth,data:t.data,parentId:e.parentId});t.x=n.x+e.ring*Math.sin(o),t.y=n.y+e.ring*Math.cos(o)*e.eccentricity,t.x0=t.x,t.x1=t.x,t.y0=t.y,t.y1=t.y}}(e,n),!0)},Xa={sankey:Ea,force:Ma,chord:La,tree:Fa,cluster:Fa,treemap:Fa,circlepack:Fa,partition:Fa,orbit:qa};function Va(e){return Xa[e]}class Ua{constructor(e){this.nodes=new Map,this.edges=new Map,this.tension=0,this.layoutVersion=0,this.sceneNodes=[],this.sceneEdges=[],this.labels=[],this.particlePool=null,this.transition=null,this._hasRenderedOnce=!1,this._boundedPrevSnapshot=null,this._boundedEdgeSnapshot=null,this.lastIngestTime=0,this.nodeTimestamps=new Map,this.edgeTimestamps=new Map,this._decaySortedNodes=null,this.addedNodes=new Set,this.removedNodes=new Set,this.addedEdges=new Set,this.removedEdges=new Set,this.lastTopologyChangeTime=0,this.previousNodeIds=new Set,this.previousEdgeKeys=new Set,this._lastPositionSnapshot=null,this.config=e,this.tensionConfig=Object.assign(Object.assign({},Pi),e.tensionConfig),"sankey"===e.chartType&&e.showParticles&&(this.particlePool=new Li(2e3))}updateConfig(e){const t=this.config;t.__orbitState&&(e.__orbitState=t.__orbitState),t.__hierarchyRoot&&(e.__hierarchyRoot=t.__hierarchyRoot),this.config=e,this.tensionConfig=Object.assign(Object.assign({},Pi),e.tensionConfig),"sankey"===e.chartType&&e.showParticles&&!this.particlePool&&(this.particlePool=new Li(2e3))}ingestHierarchy(e,t){this._boundedPrevSnapshot=new Map;for(const[e,t]of this.nodes)0===t.x0&&0===t.x1&&0===t.y0&&0===t.y1||this._boundedPrevSnapshot.set(e,{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1});this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null,this.config.__hierarchyRoot=e,this.runLayout(t),this._boundedPrevSnapshot=null}ingestBounded(e,t,n){const{nodeIDAccessor:o="id",sourceAccessor:r="source",targetAccessor:i="target",valueAccessor:a="value"}=this.config,s="function"==typeof o?o:e=>e[o],l="function"==typeof r?r:e=>e[r],c="function"==typeof i?i:e=>e[i],u="function"==typeof a?a:e=>{var t;return null!==(t=e[a])&&void 0!==t?t:1};this._boundedPrevSnapshot=new Map;for(const[e,t]of this.nodes)0===t.x0&&0===t.x1&&0===t.y0&&0===t.y1||this._boundedPrevSnapshot.set(e,{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1});this._boundedEdgeSnapshot=new Map;for(const[,e]of this.edges)e.sankeyWidth>0&&this._boundedEdgeSnapshot.set(`${"string"==typeof e.source?e.source:e.source.id}\0${"string"==typeof e.target?e.target:e.target.id}`,{y0:e.y0,y1:e.y1,sankeyWidth:e.sankeyWidth});this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null;for(const t of e){const e=s(t)+"";this.nodes.set(e,Object.assign(Object.assign({},Ka(e)),{data:t}))}for(let e=0;t.length>e;e++){const n=t[e],o=l(n)+"",r=c(n)+"",i=Number(u(n))||1;this.nodes.has(o)||this.nodes.set(o,Object.assign(Object.assign({},Ka(o)),{data:n})),this.nodes.has(r)||this.nodes.set(r,Object.assign(Object.assign({},Ka(r)),{data:n}));const a=`${o}\0${r}\0${e}`;this.edges.set(a,{source:o,target:r,value:i,y0:0,y1:0,sankeyWidth:0,data:n,_edgeKey:a})}this.runLayout(n)}edgeKey(e,t){return`${e}\0${t}`}ingestEdge(e){const{source:t,target:n,value:o}=e,r=0===this.nodes.size;let i=!1;const a="undefined"!=typeof performance?performance.now():Date.now();this.lastIngestTime=a,this._decaySortedNodes=null,this.nodes.has(t)||(this.nodes.set(t,Ka(t)),this.nodeTimestamps.set(t,a),this.tension+=this.tensionConfig.newNode,i=!0),this.nodes.has(n)||(this.nodes.set(n,Ka(n)),this.nodeTimestamps.set(n,a),this.tension+=this.tensionConfig.newNode,i=!0);const s=this.edgeKey(t,n),l=this.edges.get(s);let c=!1;return l?(l.value+=o,this.edgeTimestamps.set(s,a),this.tension+=this.tensionConfig.weightChange,c=!0):(this.edges.set(s,{source:t,target:n,value:o,y0:0,y1:0,sankeyWidth:0}),this.edgeTimestamps.set(s,a),this.tension+=this.tensionConfig.newEdge,i=!0),r||i||c||this.tension>=this.tensionConfig.threshold}runLayout(e){var t,n,o,r,i,a,s,l;const c=Va(this.config.chartType);if(!c)return;let u=Array.from(this.nodes.values()),d=Array.from(this.edges.values());if(0===u.length&&!c.hierarchical)return;if(this.prepareForRelayout(),c.supportsStreaming&&!c.hierarchical){const e=new Map;for(const s of u)if(void 0!==s._prevX0){const l=(null!==(t=s._prevX1)&&void 0!==t?t:0)-(null!==(n=s._prevX0)&&void 0!==n?n:0),c=(null!==(o=s._prevY1)&&void 0!==o?o:0)-(null!==(r=s._prevY0)&&void 0!==r?r:0);e.set(s.id,{x:(null!==(i=s._prevX0)&&void 0!==i?i:0)+l/2,y:(null!==(a=s._prevY0)&&void 0!==a?a:0)+c/2})}else 0===s.x&&0===s.y||e.set(s.id,{x:s.x,y:s.y});if(this._lastPositionSnapshot)for(const[t,n]of this._lastPositionSnapshot)e.has(t)||e.set(t,n);this.config.__previousPositions=e.size>0?e:void 0}if(c.computeLayout(u,d,this.config,e),this.config.__previousPositions=void 0,c.hierarchical&&u.length>0){this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null;for(const e of u)this.nodes.set(e.id,e);for(let e=0;d.length>e;e++){const t=d[e],n=t._edgeKey||`${"string"==typeof t.source?t.source:t.source.id}\0${"string"==typeof t.target?t.target:t.target.id}\0${e}`;t._edgeKey=n,this.edges.set(n,t)}const e=this._boundedPrevSnapshot;if(e&&e.size>0)for(const t of this.nodes.values()){const n=e.get(t.id);n&&(t._prevX0=n.x0,t._prevX1=n.x1,t._prevY0=n.y0,t._prevY1=n.y1)}this._boundedPrevSnapshot=null,this._boundedEdgeSnapshot=null,u=Array.from(this.nodes.values())}this.finalizeLayout();const h=new Map;for(const e of this.nodes.values())0===e.x&&0===e.y||h.set(e.id,{x:e.x,y:e.y});this._lastPositionSnapshot=h,this.saveTargetPositions();const g=u.some(e=>void 0!==e._prevX0&&(0!==e._prevX0||0!==e._prevX1||0!==e._prevY0||0!==e._prevY1)),f=null!==(l=null===(s=this.config.transition)||void 0===s?void 0:s.duration)&&void 0!==l?l:this.tensionConfig.transitionDuration;if(!this._hasRenderedOnce&&this.config.introAnimation&&["sankey","tree","treemap","circlepack","partition"].includes(this.config.chartType)&&u.length>0&&f>0){const t=e[0]/2,n=e[1]/2;for(const e of this.nodes.values())e._prevX0=t,e._prevX1=t,e._prevY0=n,e._prevY1=n;for(const e of this.edges.values())e._prevY0=n,e._prevY1=n,e._prevSankeyWidth=0,e._introFromZero=!0;this.restorePreviousPositions(),this.transition={startTime:performance.now(),duration:f}}else g&&f>0&&(this.restorePreviousPositions(),this.transition={startTime:performance.now(),duration:f});this._hasRenderedOnce=!0;const p=new Set(this.nodes.keys()),y=new Set(this.edges.keys());this.addedNodes=new Set,this.removedNodes=new Set,this.addedEdges=new Set,this.removedEdges=new Set;for(const e of p)this.previousNodeIds.has(e)||this.addedNodes.add(e);for(const e of this.previousNodeIds)p.has(e)||this.removedNodes.add(e);for(const e of y)this.previousEdgeKeys.has(e)||this.addedEdges.add(e);for(const e of this.previousEdgeKeys)y.has(e)||this.removedEdges.add(e);(this.addedNodes.size>0||this.removedNodes.size>0||this.addedEdges.size>0||this.removedEdges.size>0)&&(this.lastTopologyChangeTime="undefined"!=typeof performance?performance.now():Date.now()),this.previousNodeIds=p,this.previousEdgeKeys=y,this.layoutVersion++}buildScene(e){const t=Va(this.config.chartType);if(!t)return;const n=Array.from(this.nodes.values()),o=Array.from(this.edges.values()),{sceneNodes:r,sceneEdges:i,labels:a}=t.buildScene(n,o,this.config,e);this.sceneNodes=r,this.sceneEdges=i,this.labels=a}get isAnimating(){const e=Va(this.config.chartType);return!!(null==e?void 0:e.supportsAnimation)&&!1!==this.config.orbitAnimated}tickAnimation(e,t){const n=Va(this.config.chartType);if(!(null==n?void 0:n.tick))return!1;const o=Array.from(this.nodes.values()),r=Array.from(this.edges.values());return n.tick(o,r,this.config,e,t)}advanceTransition(e){if(!this.transition)return!1;const t=H(e,this.transition),n=N(t);for(const e of this.nodes.values())void 0===e._targetX0||void 0===e._prevX0||0===e._prevX0&&0===e._prevX1||(e.x0=W(e._prevX0,e._targetX0,n),e.x1=W(e._prevX1,e._targetX1,n),e.y0=W(e._prevY0,e._targetY0,n),e.y1=W(e._prevY1,e._targetY1,n));for(const e of this.edges.values())void 0!==e._targetY0&&void 0!==e._prevY0&&void 0!==e._prevSankeyWidth&&(e._prevSankeyWidth>0||e._introFromZero)&&(e.y0=W(e._prevY0,e._targetY0,n),e.y1=W(e._prevY1,e._targetY1,n),e.sankeyWidth=W(e._prevSankeyWidth,e._targetSankeyWidth,n));return this.rebuildAllBeziers(),1>t||(this.snapToTargets(),this.transition=null,!1)}prepareForRelayout(){const e=this._boundedPrevSnapshot;for(const t of this.nodes.values()){const n=null==e?void 0:e.get(t.id);n&&0===t.x0&&0===t.x1&&0===t.y0&&0===t.y1?(t._prevX0=n.x0,t._prevX1=n.x1,t._prevY0=n.y0,t._prevY1=n.y1):(t._prevX0=t.x0,t._prevX1=t.x1,t._prevY0=t.y0,t._prevY1=t.y1)}const t=this._boundedEdgeSnapshot;for(const e of this.edges.values()){if(t&&0===e.sankeyWidth){const n=t.get(`${"string"==typeof e.source?e.source:e.source.id}\0${"string"==typeof e.target?e.target:e.target.id}`);if(n){e._prevY0=n.y0,e._prevY1=n.y1,e._prevSankeyWidth=n.sankeyWidth;continue}}e._prevY0=e.y0,e._prevY1=e.y1,e._prevSankeyWidth=e.sankeyWidth}this.nodes.size>0&&(this._boundedPrevSnapshot=null,this._boundedEdgeSnapshot=null)}finalizeLayout(){const e="vertical"===this.config.orientation?"down":"right";for(const e of this.nodes.values())if(0!==e.x0||0!==e.x1||0!==e.y0||0!==e.y1)e.width=e.x1-e.x0,e.height=e.y1-e.y0,e.x=e.x0+e.width/2,e.y=e.y0+e.height/2;else{const t=5;e.x0=e.x-t,e.x1=e.x+t,e.y0=e.y-t,e.y1=e.y+t,e.width=2*t,e.height=2*t}for(const t of this.edges.values())t.direction=e,this.updateEdgeBezier(t);this.tension=0}saveTargetPositions(){for(const e of this.nodes.values())e._targetX0=e.x0,e._targetX1=e.x1,e._targetY0=e.y0,e._targetY1=e.y1;for(const e of this.edges.values())e._targetY0=e.y0,e._targetY1=e.y1,e._targetSankeyWidth=e.sankeyWidth}restorePreviousPositions(){for(const e of this.nodes.values())void 0===e._prevX0||0===e._prevX0&&0===e._prevX1||(e.x0=e._prevX0,e.x1=e._prevX1,e.y0=e._prevY0,e.y1=e._prevY1);for(const e of this.edges.values())void 0!==e._prevY0&&void 0!==e._prevSankeyWidth&&e._prevSankeyWidth>0&&(e.y0=e._prevY0,e.y1=e._prevY1,e.sankeyWidth=e._prevSankeyWidth);this.rebuildAllBeziers()}snapToTargets(){for(const e of this.nodes.values())void 0!==e._targetX0&&(e.x0=e._targetX0,e.x1=e._targetX1,e.y0=e._targetY0,e.y1=e._targetY1);for(const e of this.edges.values())void 0!==e._targetY0&&(e.y0=e._targetY0,e.y1=e._targetY1,e.sankeyWidth=e._targetSankeyWidth),e._introFromZero=void 0;this.rebuildAllBeziers()}updateEdgeBezier(e){const t="string"==typeof e.source?this.nodes.get(e.source):e.source,n="string"==typeof e.target?this.nodes.get(e.target):e.target;t&&n&&(e.bezier=e.circular&&e.circularPathData?this.buildCircularBezier(e):this.buildStandardBezier(e,t,n))}buildStandardBezier(e,t,n){const o=(e.sankeyWidth||1)/2;if("down"===e.direction){const r=t.x1,i=n.x0,a=u.interpolateNumber(r,i);return{circular:!1,points:[{x:e.y0,y:r},{x:e.y0,y:a(.5)},{x:e.y1,y:a(.5)},{x:e.y1,y:i}],halfWidth:o}}const r=t.x1,i=n.x0,a=u.interpolateNumber(r,i);return{circular:!1,points:[{x:r,y:e.y0},{x:a(.5),y:e.y0},{x:a(.5),y:e.y1},{x:i,y:e.y1}],halfWidth:o}}buildCircularBezier(e){const t=(e._circularWidth||e.sankeyWidth||1)/2,n=e.circularPathData;if(e._circularStub){const e=Math.max(15,Math.min(40,.33*(n.rightFullExtent-n.sourceX))),o=Math.max(15,Math.min(40,.33*(n.targetX-n.leftFullExtent)));return{circular:!0,segments:[[{x:n.sourceX,y:n.sourceY},{x:n.sourceX+.33*e,y:n.sourceY},{x:n.sourceX+.66*e,y:n.sourceY},{x:n.sourceX+e,y:n.sourceY}],[{x:n.targetX-o,y:n.targetY},{x:n.targetX-.66*o,y:n.targetY},{x:n.targetX-.33*o,y:n.targetY},{x:n.targetX,y:n.targetY}]],halfWidth:t}}let o;o="down"===e.direction?[{x:n.sourceY,y:n.sourceX},{x:n.sourceY,y:n.rightFullExtent},{x:n.verticalFullExtent,y:n.rightFullExtent},{x:n.verticalFullExtent,y:n.leftFullExtent},{x:n.targetY,y:n.leftFullExtent},{x:n.targetY,y:n.targetX}]:[{x:n.sourceX,y:n.sourceY},{x:n.rightFullExtent,y:n.sourceY},{x:n.rightFullExtent,y:n.verticalFullExtent},{x:n.leftFullExtent,y:n.verticalFullExtent},{x:n.leftFullExtent,y:n.targetY},{x:n.targetX,y:n.targetY}];const r=[];for(let e=0;o.length-1>e;e++){const t=o[e],n=o[e+1],i=n.x-t.x,a=n.y-t.y;r.push([t,{x:t.x+i/3,y:t.y+a/3},{x:t.x+2*i/3,y:t.y+2*a/3},n])}return{circular:!0,segments:r,halfWidth:t}}rebuildAllBeziers(){for(const e of this.nodes.values())e.width=e.x1-e.x0,e.height=e.y1-e.y0,e.x=e.x0+e.width/2,e.y=e.y0+e.height/2;for(const e of this.edges.values())this.updateEdgeBezier(e)}applyPulse(e){var t,n,o,r,i;const a=this.config.pulse;if(!a)return;const s=null!==(t=a.duration)&&void 0!==t?t:500,l=null!==(n=a.color)&&void 0!==n?n:"rgba(255,255,255,0.6)",c=null!==(o=a.glowRadius)&&void 0!==o?o:4;for(const t of this.sceneNodes){const n=t.id;if(!n)continue;const o=this.nodeTimestamps.get(n);if(!o)continue;const r=e-o;s>r&&(t._pulseIntensity=1-r/s,t._pulseColor=l,t._pulseGlowRadius=c)}for(const t of this.sceneEdges){const n=t.datum;if(!n)continue;const o="object"==typeof n.source?null===(r=n.source)||void 0===r?void 0:r.id:n.source,a="object"==typeof n.target?null===(i=n.target)||void 0===i?void 0:i.id:n.target;if(!o||!a)continue;const c=this.edgeTimestamps.get(`${o}\0${a}`);if(!c)continue;const u=e-c;s>u&&(t._pulseIntensity=1-u/s,t._pulseColor=l)}}applyDecay(){var e,t;const n=this.config.decay;if(!n)return;const o=this.nodeTimestamps.size;if(1>=o)return;this._decaySortedNodes||(this._decaySortedNodes=Array.from(this.nodeTimestamps.entries()).sort((e,t)=>e[1]-t[1]));const r=this._decaySortedNodes,i=new Map;for(let e=0;r.length>e;e++)i.set(r[e][0],e);for(const r of this.sceneNodes){const a=r.id;if(!a)continue;const s=i.get(a);if(void 0===s)continue;const l=D(n,s,o),c=null!==(t=null===(e=r.style)||void 0===e?void 0:e.opacity)&&void 0!==t?t:1;r.style=Object.assign(Object.assign({},r.style),{opacity:c*l})}}applyTopologyDiff(e){var t;if(0===this.addedNodes.size)return;const n=e-this.lastTopologyChangeTime;if(n>=2e3)return;const o=1-n/2e3;for(const e of this.sceneNodes){const n=e.id;n&&this.addedNodes.has(n)&&(e._pulseIntensity=Math.max(null!==(t=e._pulseIntensity)&&void 0!==t?t:0,o),e._pulseColor="rgba(34, 197, 94, 0.7)",e._pulseGlowRadius=8)}}get hasActiveTopologyDiff(){return 0!==this.addedNodes.size&&2e3>("undefined"!=typeof performance?performance.now():Date.now())-this.lastTopologyChangeTime}applyThresholds(e){var t,n;const o=this.config.thresholds;if(!o)return;const r=null!==(t=o.warningColor)&&void 0!==t?t:"#f59e0b",i=null!==(n=o.criticalColor)&&void 0!==n?n:"#ef4444",a=!1!==o.pulse;for(const t of this.sceneNodes){const n=t.id;if(!n)continue;const s=this.nodes.get(n);if(!s)continue;const l=o.metric(s);let c=null;void 0===o.critical||o.critical>l?void 0===o.warning||o.warning>l||(c=r):c=i,c&&(t.style=Object.assign(Object.assign({},t.style),{fill:c}),a&&(t._pulseIntensity=.6+.4*Math.sin(e/300),t._pulseColor=c,t._pulseGlowRadius=6))}}get hasActiveThresholds(){const e=this.config.thresholds;if(!e)return!1;for(const t of this.nodes.values()){const n=e.metric(t);if(void 0!==e.warning&&n>=e.warning||void 0!==e.critical&&n>=e.critical)return!0}return!1}get hasActivePulses(){var e;const t=this.config.pulse;if(!t||0===this.lastIngestTime)return!1;const n="undefined"!=typeof performance?performance.now():Date.now();return(null!==(e=t.duration)&&void 0!==e?e:500)>n-this.lastIngestTime}getLayoutData(){return{nodes:Array.from(this.nodes.values()),edges:Array.from(this.edges.values())}}updateNode(e,t){var n;const o=this.nodes.get(e);if(!o)return null;const r=o.data?Object.assign({},o.data):{};return o.data=t(null!==(n=o.data)&&void 0!==n?n:{}),this.layoutVersion++,r}updateEdge(e,t,n){var o;const r=this.config.valueAccessor,i="function"==typeof r?r:r?e=>e[r]:e=>e.value,a=[];for(const[,r]of this.edges)if(("string"==typeof r.source?r.source:r.source.id)===e&&("string"==typeof r.target?r.target:r.target.id)===t){a.push(r.data?Object.assign({},r.data):{}),r.data=n(null!==(o=r.data)&&void 0!==o?o:{});const e=i(r.data);null!=e&&(r.value=Number(e))}return a.length>0&&this.layoutVersion++,a}removeNode(e){if(!this.nodes.has(e))return!1;this.nodes.delete(e),this.nodeTimestamps.delete(e);for(const[t,n]of this.edges)("string"==typeof n.source?n.source:n.source.id)!==e&&("string"==typeof n.target?n.target:n.target.id)!==e||(this.edges.delete(t),this.edgeTimestamps.delete(t));return this.layoutVersion++,!0}removeEdge(e,t){const n=[];if(void 0===t){const t=this.config.edgeIdAccessor;if(!t)throw Error("removeEdge(edgeId) requires edgeIdAccessor to be configured. Use removeEdge(sourceId, targetId) instead.");const o="function"==typeof t?t:e=>null==e?void 0:e[t];for(const[t,r]of this.edges)o(r.data)===e&&n.push(t)}else for(const[o,r]of this.edges)("string"==typeof r.source?r.source:r.source.id)===e&&("string"==typeof r.target?r.target:r.target.id)===t&&n.push(o);for(const e of n)this.edges.delete(e),this.edgeTimestamps.delete(e);return n.length>0&&this.layoutVersion++,n.length>0}clear(){this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null,this.tension=0,this.layoutVersion=0,this.sceneNodes=[],this.sceneEdges=[],this.labels=[],this.transition=null,this._hasRenderedOnce=!1,this.lastIngestTime=0,this._lastPositionSnapshot=null,this.nodeTimestamps.clear(),this.edgeTimestamps.clear(),this.particlePool&&this.particlePool.clear()}}function Ka(e){return{id:e,x0:0,x1:0,y0:0,y1:0,x:0,y:0,width:0,height:0,value:0,createdByFrame:!0}}function Qa(e,t,n,o,r=30){let i=null,a=r,s=1/0;for(const t of e){const e=Za(t,n,o,r);if(e)if("rect"===t.type){const n=t.w*t.h;s>n&&(i=e,s=n)}else a>e.distance&&(i=e,a=e.distance)}if(i)return i;for(const e of t){const t=os(e,n,o);t&&a>t.distance&&(i=t,a=t.distance)}return i}function Za(e,t,n,o=30){switch(e.type){case"circle":return function(e,t,n,o=30){const r=t-e.cx,i=n-e.cy,a=Math.sqrt(r*r+i*i);return a>ee(e.r,o)?null:{type:"node",datum:e.datum,x:e.cx,y:e.cy,distance:a}}(e,t,n,o);case"rect":return function(e,t,n){const o=J(t,n,e);return o.hit?{type:"node",datum:e.datum,x:o.cx,y:o.cy,distance:0}:null}(e,t,n);case"arc":return function(e,t,n){const o=t-e.cx,r=n-e.cy,i=Math.sqrt(o*o+r*r);if(e.innerR-2>i||i>e.outerR+2)return null;const a=oe(Math.atan2(r,o)),s=oe(e.startAngle),l=oe(e.endAngle);if(s>l?a>=s||l>=a:a>=s&&l>=a){const t=(e.startAngle+e.endAngle)/2,n=(e.innerR+e.outerR)/2;return{type:"node",datum:e.datum,x:e.cx+n*Math.cos(t),y:e.cy+n*Math.sin(t),distance:0}}return null}(e,t,n);default:return null}}let Ja=null,es=null;function ts(){return es||(Ja=document.createElement("canvas"),Ja.width=1,Ja.height=1,es=Ja.getContext("2d")),es}function ns(e){if(e._cachedPath2D&&e._cachedPath2DSource===e.pathD)return e._cachedPath2D;try{return e._cachedPath2D=new Path2D(e.pathD),e._cachedPath2DSource=e.pathD,e._cachedPath2D}catch(e){return null}}function os(e,t,n){switch(e.type){case"bezier":return function(e,t,n){var o,r;if(!e.pathD)return null;const i=ns(e),a=ts();if(!i||!a)return null;try{if(a.isPointInPath(i,t,n)){const i="object"==typeof(null===(o=e.datum)||void 0===o?void 0:o.source)?e.datum.source:null,a="object"==typeof(null===(r=e.datum)||void 0===r?void 0:r.target)?e.datum.target:null;return{type:"edge",datum:e.datum,x:i&&a?(i.x1+a.x0)/2:t,y:e.datum?(e.datum.y0+e.datum.y1)/2:n,distance:0}}const s=a.lineWidth;a.lineWidth=10;const l=a.isPointInStroke(i,t,n);if(a.lineWidth=s,l)return{type:"edge",datum:e.datum,x:t,y:n,distance:4}}catch(e){}return null}(e,t,n);case"line":return function(e,t,n){const o=e.x2-e.x1,r=e.y2-e.y1,i=o*o+r*r;if(0===i)return null;let a=((t-e.x1)*o+(n-e.y1)*r)/i;a=Math.max(0,Math.min(1,a));const s=e.x1+a*o,l=e.y1+a*r,c=Math.sqrt(Math.pow(t-s,2)+Math.pow(n-l,2));return c>5?null:{type:"edge",datum:e.datum,x:s,y:l,distance:c}}(e,t,n);case"ribbon":case"curved":return function(e,t,n){if(!e.pathD)return null;const o=ns(e),r=ts();if(!o||!r)return null;try{if(r.isPointInPath(o,t,n))return{type:"edge",datum:e.datum,x:t,y:n,distance:0};const i=r.lineWidth;r.lineWidth=10;const a=r.isPointInStroke(o,t,n);if(r.lineWidth=i,a)return{type:"edge",datum:e.datum,x:t,y:n,distance:4}}catch(e){}return null}(e,t,n);default:return null}}function rs(e){const{width:t,height:n,totalWidth:o,totalHeight:r,margin:i,labels:a,title:s,legend:l,legendHoverBehavior:c,legendClickBehavior:u,legendHighlightedCategory:d,legendIsolatedCategories:h,legendPosition:g="right",foregroundGraphics:f,sceneNodes:y,annotations:m,svgAnnotationRules:v}=e;return p.createElement(p.Fragment,null,p.createElement("svg",{role:"img",width:o,height:r,style:{position:"absolute",top:0,left:0,pointerEvents:"none"}},p.createElement("title",null,"string"==typeof s?s:"Network Chart"),p.createElement("desc",null,"string"==typeof s?s+" — network data visualization":"Network data visualization"),p.createElement("g",{transform:`translate(${i.left},${i.top})`},a.map((e,t)=>p.createElement("text",{key:"label-"+t,x:e.x,y:e.y,textAnchor:e.anchor||"start",dominantBaseline:e.baseline||"middle",fontSize:e.fontSize||11,fontWeight:e.fontWeight,fill:e.fill||"currentColor",stroke:e.stroke,strokeWidth:e.strokeWidth,paintOrder:e.paintOrder,style:{pointerEvents:"none"}},e.text)),m&&m.filter(e=>"widget"!==e.type).map((e,o)=>{if(v){const r=v(e,o,{width:t,height:n,sceneNodes:y});if(r)return p.createElement(p.Fragment,{key:"annotation-"+o},r)}return null}),f),s&&"string"==typeof s?p.createElement("text",{x:o/2,y:16,textAnchor:"middle",fontSize:14,fontWeight:600,fill:"currentColor"},s):s?p.createElement("foreignObject",{x:0,y:0,width:o,height:i.top},s):null,Me({legend:l,totalWidth:o,totalHeight:r,margin:i,legendPosition:g,title:s,legendHoverBehavior:c,legendClickBehavior:u,legendHighlightedCategory:d,legendIsolatedCategories:h})),null==m?void 0:m.filter(e=>"widget"===e.type&&e.nodeId&&y).map((e,t)=>{var n,o,r,a,s,l,c,u,d;const h=y.find(t=>{var n,o,r,i,a;return t.id===e.nodeId||(null===(n=t.datum)||void 0===n?void 0:n.id)===e.nodeId||(null===(r=null===(o=t.datum)||void 0===o?void 0:o.data)||void 0===r?void 0:r.id)===e.nodeId||(null===(a=null===(i=t.datum)||void 0===i?void 0:i.data)||void 0===a?void 0:a.name)===e.nodeId});if(!h)return null;const g=i.left+(null!==(n=h.cx)&&void 0!==n?n:null!=h.x&&null!=h.w?h.x+h.w/2:null!==(o=h.x)&&void 0!==o?o:0),f=i.top+(null!==(r=h.cy)&&void 0!==r?r:null!=h.y&&null!=h.h?h.y+h.h/2:null!==(a=h.y)&&void 0!==a?a:0),m=null!==(s=e.dx)&&void 0!==s?s:0,v=null!==(l=e.dy)&&void 0!==l?l:-16,b=null!==(c=e.width)&&void 0!==c?c:32,x=null!==(u=e.height)&&void 0!==u?u:32,k=null!==(d=e.content)&&void 0!==d?d:p.createElement("span",{style:{fontSize:18,cursor:"default"}},"ℹ️");return p.createElement("div",{key:"widget-"+t,style:{position:"absolute",left:g+m-b/2,top:f+v-x/2,width:b,height:x,display:"flex",alignItems:"center",justifyContent:"center",pointerEvents:"auto",zIndex:5}},k)}))}function is(e){return e._cachedPath2D&&e._cachedPath2DSource===e.pathD||(e._cachedPath2D=new Path2D(e.pathD),e._cachedPath2DSource=e.pathD),e._cachedPath2D}function as(e,t){var n,o,r,i,a,s;if(!t.pathD)return;e.save();const l=is(t);if(t.style.fill&&"none"!==t.style.fill){const a=t._gradient;if(a){const r=e.createLinearGradient(a.x0,0,a.x1,0),i=null!==(o=null!==(n=t.style.fillOpacity)&&void 0!==n?n:t.style.opacity)&&void 0!==o?o:.5,s="string"==typeof t.style.fill?t.style.fill:"#999";r.addColorStop(0,1===a.from?s:"transparent"),r.addColorStop(1,1===a.to?s:"transparent"),e.fillStyle=r,e.globalAlpha=i}else e.fillStyle=t.style.fill,e.globalAlpha=null!==(i=null!==(r=t.style.fillOpacity)&&void 0!==r?r:t.style.opacity)&&void 0!==i?i:.5;e.fill(l)}t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=null!==(a=t.style.strokeWidth)&&void 0!==a?a:.5,e.globalAlpha=.5*(null!==(s=t.style.opacity)&&void 0!==s?s:1),e.stroke(l)),t._pulseIntensity&&t._pulseIntensity>0&&(e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.globalAlpha=.2*t._pulseIntensity,e.fill(l)),e.restore()}function ss(e,t){var n,o;e.save(),e.strokeStyle=t.style.stroke||"#999",e.lineWidth=null!==(n=t.style.strokeWidth)&&void 0!==n?n:1,void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),t.style.strokeDasharray&&e.setLineDash(t.style.strokeDasharray.split(/[\s,]+/).map(Number)),e.beginPath(),e.moveTo(t.x1,t.y1),e.lineTo(t.x2,t.y2),e.stroke(),t._pulseIntensity&&t._pulseIntensity>0&&(e.setLineDash([]),e.strokeStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.lineWidth=(null!==(o=t.style.strokeWidth)&&void 0!==o?o:1)+3*t._pulseIntensity,e.globalAlpha=.4*t._pulseIntensity,e.beginPath(),e.moveTo(t.x1,t.y1),e.lineTo(t.x2,t.y2),e.stroke()),e.restore()}function ls(e,t){var n,o,r,i;if(!t.pathD)return;e.save();const a=is(t);t.style.fill&&"none"!==t.style.fill&&(e.fillStyle=t.style.fill,e.globalAlpha=null!==(o=null!==(n=t.style.fillOpacity)&&void 0!==n?n:t.style.opacity)&&void 0!==o?o:.5,e.fill(a)),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=null!==(r=t.style.strokeWidth)&&void 0!==r?r:.5,e.globalAlpha=.3*(null!==(i=t.style.opacity)&&void 0!==i?i:1),e.stroke(a)),t._pulseIntensity&&t._pulseIntensity>0&&(e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.globalAlpha=.25*t._pulseIntensity,e.fill(a)),e.restore()}function cs(e,t){var n,o;if(!t.pathD)return;e.save();const r=is(t);e.strokeStyle=t.style.stroke||"#999",e.lineWidth=null!==(n=t.style.strokeWidth)&&void 0!==n?n:1,void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),e.stroke(r),t.style.fill&&"none"!==t.style.fill&&(e.fillStyle=t.style.fill,e.globalAlpha=null!==(o=t.style.fillOpacity)&&void 0!==o?o:.1,e.fill(r)),e.restore()}rs.displayName="NetworkSVGOverlay";const us={top:20,right:80,bottom:20,left:80},ds={top:40,right:40,bottom:40,left:40},hs=new Set(["chord","force","circlepack","orbit"]),gs=[800,600],fs={background:"rgba(0, 0, 0, 0.85)",color:"white",padding:"6px 10px",borderRadius:4,fontSize:12,lineHeight:1.5,boxShadow:"0 2px 8px rgba(0, 0, 0, 0.15)",pointerEvents:"none",whiteSpace:"nowrap"};function ps({data:e}){var t,n,o,r,i,a;if("edge"===e.nodeOrEdge){const t=e.data;return p.createElement("div",{className:"semiotic-tooltip",style:fs},p.createElement("div",{style:{fontWeight:600}},"object"==typeof t.source?t.source.id:t.source," → ","object"==typeof t.target?t.target.id:t.target),null!=t.value&&p.createElement("div",{style:{marginTop:4,opacity:.8}},"Value:"," ","number"==typeof t.value?t.value.toLocaleString():t.value+""))}const s=e.data,l=null==s?void 0:s.__hierarchyNode;if(l){const e=[];let i=l;for(;i;){const a=null!==(r=null!==(n=null===(t=i.data)||void 0===t?void 0:t.name)&&void 0!==n?n:null===(o=i.data)||void 0===o?void 0:o.id)&&void 0!==r?r:s.id;null!=a&&e.unshift(a+""),i=i.parent}e.length>1&&e.shift();const a=e.length-1;return p.createElement("div",{className:"semiotic-tooltip",style:fs},p.createElement("div",null,e.map((e,t)=>p.createElement("span",{key:t},t>0&&p.createElement("span",{style:{margin:"0 3px",opacity:.5}}," → "),t===a?p.createElement("strong",null,e):p.createElement("span",{style:{opacity:.7}},e)))),null!=s.value&&s.value>0&&p.createElement("div",{style:{marginTop:4,opacity:.8}},"number"==typeof s.value?s.value.toLocaleString():s.value+""))}const c=((null===(i=s.sourceLinks)||void 0===i?void 0:i.length)||0)+((null===(a=s.targetLinks)||void 0===a?void 0:a.length)||0),u=(s.sourceLinks||[]).reduce((e,t)=>e+(t.value||0),0)+(s.targetLinks||[]).reduce((e,t)=>e+(t.value||0),0);return p.createElement("div",{className:"semiotic-tooltip",style:fs},p.createElement("div",{style:{fontWeight:600}},s.id),null!=s.value&&s.value>0&&p.createElement("div",{style:{marginTop:4,opacity:.8}},"Total:"," ","number"==typeof s.value?s.value.toLocaleString():s.value+""),c>0&&p.createElement("div",{style:{marginTop:4,opacity:.8}},"Connections: ",c,u!==c&&` (weighted: ${u.toLocaleString()})`))}const ys=e.forwardRef(function(t,n){var o,r,i,a,s,c,u,d,h,g,f,y,m,v;const{chartType:b,nodes:x,edges:k,data:w,initialEdges:A,nodeIDAccessor:S="id",sourceAccessor:O="source",targetAccessor:E="target",valueAccessor:M="value",edgeIdAccessor:j,childrenAccessor:P,hierarchySum:_,orientation:L="horizontal",nodeAlign:T="justify",nodePaddingRatio:R=.05,nodeWidth:B=15,iterations:D=300,forceStrength:I=.1,padAngle:N=.01,groupWidth:H=20,sortGroups:W,edgeSort:F,treeOrientation:$="vertical",edgeType:z="curve",padding:G,paddingTop:Y,tensionConfig:q,showParticles:X=!1,particleStyle:V,nodeStyle:U,edgeStyle:K,colorBy:Q,colorScheme:Z="category10",edgeColorBy:J="source",edgeOpacity:ee=.5,colorByDepth:te=!1,nodeSize:ne=8,nodeSizeRange:oe=[5,20],nodeLabel:re,showLabels:ie=!0,labelMode:ae,size:se=gs,responsiveWidth:le,responsiveHeight:ce,margin:ue,className:de,background:he,enableHover:ge=!0,tooltipContent:fe,customHoverBehavior:ve,customClickBehavior:be,onObservation:ke,chartId:we,onTopologyChange:Ae,annotations:Se,svgAnnotationRules:Oe,legend:Ee,legendPosition:Me,legendHoverBehavior:je,legendClickBehavior:Ce,legendHighlightedCategory:Pe,legendIsolatedCategories:_e,title:Le,foregroundGraphics:Te,backgroundGraphics:Re,decay:Be,pulse:De,transition:Ie,animate:Ne,staleness:He,thresholds:We,accessibleTable:Fe=!0,description:$e,summary:ze,orbitMode:Ge,orbitSize:Ye,orbitSpeed:qe,orbitRevolution:Xe,orbitRevolutionStyle:Ve,orbitEccentricity:Ue,orbitShowRings:Ke,orbitAnimated:Qe}=t,Ze=hs.has(b)?ds:us,Je=e.useRef(!0),et=qt({sizeProp:se,responsiveWidth:le,responsiveHeight:ce,userMargin:ue,marginDefault:Ze,foregroundGraphics:Te,backgroundGraphics:Re,animate:Ne,transitionProp:Ie,themeDirtyRef:Je}),{reducedMotionRef:tt,responsiveRef:rt,size:it,margin:at,adjustedWidth:st,adjustedHeight:lt,resolvedForeground:ut,resolvedBackground:dt,transition:ht,introEnabled:gt,tableId:ft,rafRef:pt,renderFnRef:yt,scheduleRender:mt}=et,vt=e.useMemo(()=>Object.assign(Object.assign({},Pi),q),[q]),At=e.useMemo(()=>Object.assign(Object.assign({},_i),V),[V]),Et=e.useMemo(()=>({chartType:b,nodeIDAccessor:S,sourceAccessor:O,targetAccessor:E,valueAccessor:M,edgeIdAccessor:j,childrenAccessor:P,hierarchySum:_,orientation:L,nodeAlign:T,nodePaddingRatio:R,nodeWidth:B,iterations:D,forceStrength:I,padAngle:N,groupWidth:H,sortGroups:W,edgeSort:F,treeOrientation:$,edgeType:z,padding:G,paddingTop:Y,tensionConfig:vt,showParticles:X,particleStyle:At,nodeStyle:U,edgeStyle:K,nodeLabel:re,showLabels:ie,labelMode:ae,colorBy:Q,colorScheme:Z,edgeColorBy:J,edgeOpacity:ee,colorByDepth:te,nodeSize:ne,nodeSizeRange:oe,decay:Be,pulse:De,transition:ht,introAnimation:gt,staleness:He,thresholds:We,orbitMode:Ge,orbitSize:Ye,orbitSpeed:qe,orbitRevolution:Xe,orbitRevolutionStyle:Ve,orbitEccentricity:Ue,orbitShowRings:Ke,orbitAnimated:Qe}),[b,S,O,E,M,P,_,L,T,R,B,D,I,N,H,W,F,$,z,G,Y,vt,X,At,U,K,re,ie,ae,Q,Z,J,ee,te,ne,oe,Be,De,null==ht?void 0:ht.duration,null==ht?void 0:ht.easing,gt,He,We,Ge,Ye,qe,Xe,Ve,Ue,Ke,Qe]),Mt=e.useRef(null),jt=e.useRef(0),Ct=e.useRef(null);Ct.current||(Ct.current=new Ua(Et));const[Pt,_t]=e.useState(null),[Lt,Tt]=e.useState(0),[Rt,Bt]=e.useState(0),[Dt,It]=e.useState(!1),Nt=e.useRef(null),Ht=e.useRef(new Map),Wt=e.useRef(0),Ft=e.useCallback(e=>{if("function"==typeof Q)return Q(e)+"";if("string"==typeof Q&&e.data){const t=e.data[Q];if(void 0!==t){if(!Ht.current.has(t+"")){const e=Array.isArray(Z)?Z:C;Ht.current.set(t+"",e[Wt.current++%e.length])}return Ht.current.get(t+"")}}if(Ht.current.has(e.id))return Ht.current.get(e.id);const t=Array.isArray(Z)?Z:C,n=Q?t[Wt.current++%t.length]:t[0];return Ht.current.set(e.id,n),n},[Q,Z]),$t=e.useCallback(e=>{if("function"==typeof J)return J(e);const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;return"target"===J&&n?Ft(n):t?Ft(t):"#999"},[J,Ft]),zt=e.useCallback(e=>{if(!(null==V?void 0:V.colorBy))return $t(e);const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;return"target"===At.colorBy&&n?Ft(n):t?Ft(t):"#999"},[null==V?void 0:V.colorBy,At.colorBy,Ft,$t]),Gt="sankey"===b&&X||!!De||null!==(r=null===(o=Ct.current)||void 0===o?void 0:o.isAnimating)&&void 0!==r&&r;e.useEffect(()=>{var e;null===(e=Ct.current)||void 0===e||e.updateConfig(Et),Je.current=!0,mt()},[Et,mt]);const Yt=e.useCallback(()=>{var e;const t=Ct.current;if(!t)return;t.runLayout([st,lt]),t.buildScene([st,lt]),Je.current=!0;for(const n of t.sceneNodes)n.id&&"string"==typeof(null===(e=n.style)||void 0===e?void 0:e.fill)&&Ht.current.set(n.id,n.style.fill);const n=Array.isArray(Z)?Z:C,o=Array.from(t.nodes.values());for(let e=0;o.length>e;e++){const t=o[e];Ht.current.has(t.id)||Ht.current.set(t.id,n[e%n.length])}if(Wt.current=o.length,Tt(t.layoutVersion),Ae){const{nodes:e,edges:n}=t.getLayoutData();Ae(e,n)}},[st,lt,Ae,Z]),Ut=e.useCallback(e=>{const t=Ct.current;t&&(t.ingestEdge(e)&&Yt(),mt())},[Yt,mt]),Kt=e.useCallback(e=>{const t=Ct.current;if(!t)return;let n=!1;for(const o of e)t.ingestEdge(o)&&(n=!0);n&&Yt(),mt()},[Yt,mt]),Qt=e.useCallback(()=>{var e;null===(e=Ct.current)||void 0===e||e.clear(),Ht.current.clear(),Wt.current=0,Tt(0),_t(null),Nt.current=null,Je.current=!0,mt()},[mt]),Zt=e.useCallback(()=>{const e=Ct.current;e&&(e.tension+=999,Yt(),mt())},[Yt,mt]);e.useImperativeHandle(n,()=>({push:Ut,pushMany:Kt,removeNode:e=>{var t,n,o;const r=null!==(n=null===(t=Ct.current)||void 0===t?void 0:t.removeNode(e))&&void 0!==n&&n;if(r){const t=(null===(o=Nt.current)||void 0===o?void 0:o.data)?"function"==typeof S?S(Nt.current.data):Nt.current.data[S]:void 0;Nt.current&&"node"===Nt.current.nodeOrEdge&&t===e&&(Nt.current=null,_t(null)),Ht.current.delete(e),Yt(),Je.current=!0,mt()}return r},removeEdge:(e,t)=>{var n,o;const r=null!==(o=null===(n=Ct.current)||void 0===n?void 0:n.removeEdge(e,t))&&void 0!==o&&o;if(r){if(Nt.current&&"edge"===Nt.current.nodeOrEdge){const n=Nt.current.data;let o;o=void 0!==t?("object"==typeof(null==n?void 0:n.source)?n.source.id:null==n?void 0:n.source)===e&&("object"==typeof(null==n?void 0:n.target)?n.target.id:null==n?void 0:n.target)===t:!j||!n||("function"==typeof j?j:e=>null==e?void 0:e[j])(n)===e,o&&(Nt.current=null,_t(null))}Yt(),Je.current=!0,mt()}return r},updateNode:(e,t)=>{var n,o;const r=null!==(o=null===(n=Ct.current)||void 0===n?void 0:n.updateNode(e,t))&&void 0!==o?o:null;return r&&(Je.current=!0,mt()),r},updateEdge:(e,t,n)=>{var o,r;const i=null!==(r=null===(o=Ct.current)||void 0===o?void 0:o.updateEdge(e,t,n))&&void 0!==r?r:[];return i.length>0&&(Yt(),Je.current=!0,mt()),i},clear:Qt,getTopology:()=>{var e,t;return null!==(t=null===(e=Ct.current)||void 0===e?void 0:e.getLayoutData())&&void 0!==t?t:{nodes:[],edges:[]}},getTopologyDiff:()=>{const e=Ct.current;return e?{addedNodes:Array.from(e.addedNodes),removedNodes:Array.from(e.removedNodes),addedEdges:Array.from(e.addedEdges),removedEdges:Array.from(e.removedEdges)}:{addedNodes:[],removedNodes:[],addedEdges:[],removedEdges:[]}},relayout:Zt,getTension:()=>{var e,t;return null!==(t=null===(e=Ct.current)||void 0===e?void 0:e.tension)&&void 0!==t?t:0}}),[Ut,Kt,Qt,Zt,Yt,mt]);const Jt=["tree","cluster","treemap","circlepack","partition","orbit"].includes(b),nn=Jt?w||(Array.isArray(k)?void 0:k):void 0;e.useEffect(()=>{var e;const t=Ct.current;if(t)if(Jt&&nn)t.ingestHierarchy(nn,[st,lt]),t.buildScene([st,lt]),Je.current=!0,mt();else{const n=x||[],o=Array.isArray(k)?k:[];if(0===n.length&&0===o.length)return;t.ingestBounded(n,o,[st,lt]),t.buildScene([st,lt]);for(const n of t.sceneNodes)n.id&&(null===(e=n.style)||void 0===e?void 0:e.fill)&&Ht.current.set(n.id,n.style.fill+"");const r=Array.isArray(Z)?Z:C,i=Array.from(t.nodes.values());for(let e=0;i.length>e;e++){const t=i[e];Ht.current.has(t.id)||Ht.current.set(t.id,r[e%r.length])}Wt.current=i.length,Je.current=!0,mt()}},[x,k,w,nn,Jt,st,lt,Et,mt,Z]),e.useEffect(()=>{A&&A.length>0&&Kt(A)},[]);const on=e.useCallback(e=>{if(ve&&ve(e),ke){const t=Date.now();ke(e?{type:"hover",datum:e.data||{},x:e.x,y:e.y,timestamp:t,chartType:"StreamNetworkFrame",chartId:we}:{type:"hover-end",timestamp:t,chartType:"StreamNetworkFrame",chartId:we})}},[ve,ke,we]),rn=e.useCallback(e=>{if(be&&be(e),ke){const t=Date.now();ke(e?{type:"click",datum:e.data||{},x:e.x,y:e.y,timestamp:t,chartType:"StreamNetworkFrame",chartId:we}:{type:"click-end",timestamp:t,chartType:"StreamNetworkFrame",chartId:we})}},[be,ke,we]),{hoverHandlerRef:an,hoverLeaveRef:sn,onPointerMove:ln,onPointerLeave:cn}=et;an.current=e=>{if(!ge)return;const t=Mt.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-at.left,r=e.clientY-n.top-at.top;if(0>o||o>st||0>r||r>lt)return void(Nt.current&&(Nt.current=null,_t(null),on&&(on(null),Je.current=!0),mt()));const i=Ct.current;if(!i)return;const a=Qa(i.sceneNodes,i.sceneEdges,o,r);if(!a)return void(Nt.current&&(Nt.current=null,_t(null),on&&(on(null),Je.current=!0),mt()));const s=dn(a.datum||{},a.x,a.y,{nodeOrEdge:a.type});Nt.current=s,_t(s),on&&(on(s),Je.current=!0),mt()},sn.current=()=>{Nt.current&&(Nt.current=null,_t(null),on&&(on(null),Je.current=!0),mt())};const un=e.useRef(()=>{});un.current=e=>{if(!be&&!ke)return;const t=Mt.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-at.left,r=e.clientY-n.top-at.top;if(0>o||o>st||0>r||r>lt)return;const i=Ct.current;if(!i)return;const a=Qa(i.sceneNodes,i.sceneEdges,o,r);rn(a?dn(a.datum||{},a.x,a.y,{nodeOrEdge:a.type}):null)};const hn=e.useCallback(e=>un.current(e),[]),gn=e.useRef(-1),fn=e.useRef(null),pn=e.useRef(-1),yn=e.useCallback(e=>{var t;const n=Ct.current;if(!n)return;const o=function(e){var t,n,o,r,i,a;const s=[];for(const l of e)"circle"===l.type&&null!=l.cx?s.push({x:l.cx,y:l.cy,datum:l.datum,shape:"circle",group:null!==(n=null===(t=l.datum)||void 0===t?void 0:t.id)&&void 0!==n?n:"_default"}):"rect"===l.type&&null!=l.x?s.push({x:l.x+l.w/2,y:l.y+l.h/2,datum:l.datum,shape:"rect",w:l.w,h:l.h,group:null!==(r=null===(o=l.datum)||void 0===o?void 0:o.id)&&void 0!==r?r:"_default"}):"arc"===l.type&&null!=l.cx&&s.push({x:l.cx,y:l.cy,datum:l.datum,shape:"circle",group:null!==(a=null===(i=l.datum)||void 0===i?void 0:i.id)&&void 0!==a?a:"_default"});return s.sort((e,t)=>e.x-t.x||e.y-t.y),s}(n.sceneNodes);if(0===o.length)return;const r=pe(o),i=gn.current;if(0>i){if("Escape"===e.key)return;if(!["ArrowRight","ArrowLeft","ArrowUp","ArrowDown","Home","End","PageUp","PageDown","Enter"].includes(e.key))return;e.preventDefault(),gn.current=0,pn.current=-1;const t=r.flat[0];fn.current={shape:t.shape,w:t.w,h:t.h};const n=dn(t.datum||{},t.x,t.y,{nodeOrEdge:"node"});return Nt.current=n,_t(n),on&&(on(n),Je.current=!0),void mt()}const a=ye(r,i),s=function(e,t,n,o,r){var i,a,s;const l=n.flat[t.flatIndex];if(!l)return me(e,t,n);const c=null===(i=l.datum)||void 0===i?void 0:i.id;switch(e){case"ArrowRight":case"ArrowLeft":case"ArrowDown":case"ArrowUp":{const o=null!==(a=function(e,t,n){let o=null,r=1/0;for(let i=0;e.flat.length>i;i++){const a=e.flat[i];if(a===t)continue;const s=a.x-t.x,l=a.y-t.y;let c=!1;switch(n){case"right":c=s>0&&Math.abs(s)>=Math.abs(l);break;case"left":c=0>s&&Math.abs(s)>=Math.abs(l);break;case"down":c=l>0&&Math.abs(l)>=Math.abs(s);break;case"up":c=0>l&&Math.abs(l)>=Math.abs(s)}if(!c)continue;const u=s*s+l*l;r>u&&(r=u,o=i)}return o}(n,l,"ArrowRight"===e?"right":"ArrowLeft"===e?"left":"ArrowDown"===e?"down":"up"))&&void 0!==a?a:t.flatIndex;return o!==t.flatIndex&&(r.current=-1),o}case"Enter":{if(null==c)return t.flatIndex;const e=function(e,t){var n,o,r;const i=e+"",a=[];for(const e of t){const t=null!==(n=e.datum)&&void 0!==n?n:e,s="object"==typeof t.source?null===(o=t.source)||void 0===o?void 0:o.id:t.source,l="object"==typeof t.target?null===(r=t.target)||void 0===r?void 0:r.id:t.target,c=null!=s,u=null!=l;c&&s+""===i&&u?a.push(l+""):u&&l+""===i&&c&&a.push(s+"")}return a}(c,o);if(0===e.length)return t.flatIndex;const i=null!==(s=n.idToIdx.get(e[(r.current+1)%e.length]))&&void 0!==s?s:-1;return 0>i?t.flatIndex:(r.current=-1,i)}default:{const o=me(e,t,n);return null!==o&&o!==t.flatIndex&&(r.current=-1),o}}}(e.key,a,r,null!==(t=n.sceneEdges)&&void 0!==t?t:[],pn);if(null===s)return;if(e.preventDefault(),0>s)return gn.current=-1,fn.current=null,pn.current=-1,Nt.current=null,_t(null),on&&(on(null),Je.current=!0),void mt();gn.current=s;const l=r.flat[s];fn.current={shape:l.shape,w:l.w,h:l.h};const c=l.datum||{},u=Object.assign(Object.assign({},"object"!=typeof c||null===c||Array.isArray(c)?{}:c),{data:c,x:l.x,y:l.y,time:l.x,value:l.y,nodeOrEdge:"node"});Nt.current=u,_t(u),on&&(on(u),Je.current=!0),mt()},[on,mt]),mn=e.useCallback(e=>{gn.current=-1,fn.current=null,ln(e)},[ln]);yt.current=()=>{var e,t,n,o,r,i,a;pt.current=0;const s=Mt.current;if(!s)return;const l=s.getContext("2d");if(!l)return;const c=Ct.current;if(!c)return;const u=performance.now(),d=jt.current?Math.min((u-jt.current)/1e3,.1):.016;jt.current=u;const h=c.advanceTransition(tt.current?u+1e6:u),g=!tt.current&&h,f=!tt.current&&c.tickAnimation([st,lt],d);(h||Je.current||f)&&c.buildScene([st,lt]);const p=Vt();if(!Xt(s,it,at,p))return;l.clearRect(-at.left,-at.top,it[0],it[1]),he&&(l.fillStyle=he,l.fillRect(0,0,st,lt)),Be&&c.applyDecay(),De&&c.applyPulse(u),We&&c.applyThresholds(u),c.applyTopologyDiff(u);const y=null!==(e=null==He?void 0:He.threshold)&&void 0!==e?e:5e3,m=He&&c.lastIngestTime>0&&u-c.lastIngestTime>y;if(m&&(l.globalAlpha=null!==(t=null==He?void 0:He.dimOpacity)&&void 0!==t?t:.5),function(e,t){for(const n of t)switch(n.type){case"bezier":as(e,n);break;case"line":ss(e,n);break;case"ribbon":ls(e,n);break;case"curved":cs(e,n)}}(l,c.sceneEdges),function(e,t){var n,o,r;for(const i of t){if("rect"!==i.type)continue;const t=i;t.w>0&&t.h>0&&(e.save(),void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),t.style.fill&&(e.fillStyle=t.style.fill,void 0!==t.style.fillOpacity&&(e.globalAlpha=(null!==(n=t.style.opacity)&&void 0!==n?n:1)*t.style.fillOpacity),e.fillRect(t.x,t.y,t.w,t.h)),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=null!==(o=t.style.strokeWidth)&&void 0!==o?o:1,e.globalAlpha=null!==(r=t.style.opacity)&&void 0!==r?r:1,e.strokeRect(t.x,t.y,t.w,t.h)),en(e,t),e.restore())}}(l,c.sceneNodes),function(e,t){var n,o,r;for(const i of t){if("circle"!==i.type)continue;const t=i;t.r>0&&(e.save(),void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),e.beginPath(),e.arc(t.cx,t.cy,t.r,0,2*Math.PI),t.style.fill&&(e.fillStyle=t.style.fill,void 0!==t.style.fillOpacity&&(e.globalAlpha=(null!==(n=t.style.opacity)&&void 0!==n?n:1)*t.style.fillOpacity),e.fill()),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=null!==(o=t.style.strokeWidth)&&void 0!==o?o:1,e.globalAlpha=null!==(r=t.style.opacity)&&void 0!==r?r:1,e.stroke()),tn(e,t),e.restore())}}(l,c.sceneNodes),function(e,t){var n,o,r;for(const i of t){if("arc"!==i.type)continue;const t=i;e.save(),void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),e.beginPath(),e.arc(t.cx,t.cy,t.outerR,t.startAngle,t.endAngle),e.arc(t.cx,t.cy,t.innerR,t.endAngle,t.startAngle,!0),e.closePath(),t.style.fill&&(e.fillStyle=t.style.fill,void 0!==t.style.fillOpacity&&(e.globalAlpha=(null!==(n=t.style.opacity)&&void 0!==n?n:1)*t.style.fillOpacity),e.fill()),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=null!==(o=t.style.strokeWidth)&&void 0!==o?o:1,e.globalAlpha=null!==(r=t.style.opacity)&&void 0!==r?r:1,e.stroke()),e.restore()}}(l,c.sceneNodes),X&&c.particlePool&&!m){const e=Array.from(c.edges.values());if(e.length>0){!function(e,t,n,o){var r,i;const a=null!==(r=o.spawnRate)&&void 0!==r?r:_i.spawnRate,s=null!==(i=o.maxPerEdge)&&void 0!==i?i:_i.maxPerEdge;for(let o=0;t.length>o;o++){const r=t[o];if(!r.bezier)continue;if(e.countForEdge(o)>=s)continue;const i=r.value*a*n*(r.bezier.circular?.3:1),l=Math.floor(i),c=i-l;let u=l;Math.random()<c&&u++;for(let t=0;u>t&&e.countForEdge(o)<s;t++)e.spawn(o)}}(c.particlePool,e,d,At);const t=.5*(null!==(n=At.speedMultiplier)&&void 0!==n?n:1);let o;if(At.proportionalSpeed){const t=e.reduce((e,t)=>Math.max(e,t.value||1),1);o=e.map(e=>.3+(e.value||1)/t*1.7)}c.particlePool.step(d,t,e,o),function(e,t,n,o,r){var i,a;const s=null!==(i=o.radius)&&void 0!==i?i:_i.radius,l=null!==(a=o.opacity)&&void 0!==a?a:_i.opacity;e.globalAlpha=l;for(let i=0;t.particles.length>i;i++){const a=t.particles[i];if(!a.active)continue;const l=n[a.edgeIndex];if(l){if("function"==typeof o.color){const t="object"==typeof l.source?l.source:null;e.fillStyle=t?o.color(l,t):"#666"}else e.fillStyle=o.color&&"inherit"!==o.color?o.color:r(l);e.beginPath(),e.arc(a.x,a.y,s,0,2*Math.PI),e.fill()}}e.globalAlpha=1}(l,c.particlePool,e,At,zt)}}m&&(l.globalAlpha=1);const v=Je.current;if(Je.current=!1,v||g||f){const e=Mt.current;e&&e.setAttribute("aria-label",ct(null!==(r=null===(o=c.sceneNodes)||void 0===o?void 0:o.length)&&void 0!==r?r:0,null!==(a=null===(i=c.sceneEdges)||void 0===i?void 0:i.length)&&void 0!==a?a:0,"Network chart"))}(v||g||f)&&Bt(e=>e+1),(Gt||g||null!=c.transition||f||c.hasActivePulses||c.hasActiveThresholds||c.hasActiveTopologyDiff)&&(pt.current=requestAnimationFrame(()=>yt.current()))},e.useEffect(()=>(mt(),()=>{}),[mt]),e.useEffect(()=>{Je.current=!0,mt()},[b,st,lt,he,mt]),xe(He,Ct,Je,mt,Dt,It);const vn=ge&&Pt?p.createElement(Ot,{x:Pt.x,y:Pt.y,containerWidth:st,containerHeight:lt,margin:at,className:"stream-network-tooltip",zIndex:2},fe?fe(Pt):p.createElement(ps,{data:Pt})):null;if(ot){const e=Ct.current;if(e){const t=["tree","cluster","treemap","circlepack","partition","orbit"].includes(b),n=t?w||(Array.isArray(k)?void 0:k):void 0;if(t&&n)e.ingestHierarchy(n,[st,lt]),e.buildScene([st,lt]);else{const t=x||[],n=Array.isArray(k)?k:[];(t.length>0||n.length>0)&&(e.ingestBounded(t,n,[st,lt]),e.buildScene([st,lt]))}}const t=null!==(i=null==e?void 0:e.sceneNodes)&&void 0!==i?i:[],n=null!==(a=null==e?void 0:e.sceneEdges)&&void 0!==a?a:[],o=null!==(s=null==e?void 0:e.labels)&&void 0!==s?s:[];return p.createElement("div",{className:"stream-network-frame"+(de?" "+de:""),role:"img","aria-label":$e||("string"==typeof Le?Le:"Network chart"),style:{position:"relative",width:it[0],height:it[1]}},p.createElement(xt,{summary:ze}),p.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:it[0],height:it[1],style:{position:"absolute",left:0,top:0}},dt&&p.createElement("g",{transform:`translate(${at.left},${at.top})`},dt),p.createElement("g",{transform:`translate(${at.left},${at.top})`},he&&p.createElement("rect",{x:0,y:0,width:st,height:lt,fill:he}),n.map((e,t)=>function(e,t){switch(e.type){case"line":return p.createElement("line",{key:"net-edge-"+t,x1:e.x1,y1:e.y1,x2:e.x2,y2:e.y2,stroke:e.style.stroke||"#999",strokeWidth:e.style.strokeWidth||1,opacity:e.style.opacity});case"bezier":{const n=e;return p.createElement("path",{key:"net-edge-"+t,d:n.pathD,fill:nt(n.style.fill,"#999"),fillOpacity:n.style.fillOpacity,stroke:n.style.stroke||"none",strokeWidth:n.style.strokeWidth,opacity:n.style.opacity})}case"ribbon":{const n=e;return p.createElement("path",{key:"net-edge-"+t,d:n.pathD,fill:nt(n.style.fill,"#999"),fillOpacity:n.style.fillOpacity,stroke:n.style.stroke||"none",strokeWidth:n.style.strokeWidth,opacity:n.style.opacity})}case"curved":{const n=e;return p.createElement("path",{key:"net-edge-"+t,d:n.pathD,fill:nt(n.style.fill,"none"),stroke:n.style.stroke||"#999",strokeWidth:n.style.strokeWidth||1,opacity:n.style.opacity})}default:return null}}(e,t)).filter(Boolean),t.map((e,t)=>function(e,t){switch(e.type){case"circle":{const n=e;return p.createElement("circle",{key:"net-circle-"+t,cx:n.cx,cy:n.cy,r:n.r,fill:nt(n.style.fill),stroke:n.style.stroke,strokeWidth:n.style.strokeWidth,opacity:n.style.opacity})}case"rect":{const n=e;return p.createElement("rect",{key:"net-rect-"+t,x:n.x,y:n.y,width:n.w,height:n.h,fill:nt(n.style.fill),stroke:n.style.stroke,strokeWidth:n.style.strokeWidth,opacity:n.style.opacity})}case"arc":{const n=e,o=l.arc().innerRadius(n.innerR).outerRadius(n.outerR).startAngle(n.startAngle+Math.PI/2).endAngle(n.endAngle+Math.PI/2)({})||"";return p.createElement("path",{key:"net-arc-"+t,d:o,transform:`translate(${n.cx},${n.cy})`,fill:nt(n.style.fill),stroke:n.style.stroke,strokeWidth:n.style.strokeWidth,opacity:n.style.opacity})}default:return null}}(e,t)).filter(Boolean),o.map((e,t)=>function(e,t){return p.createElement("text",{key:"net-label-"+t,x:e.x,y:e.y,textAnchor:e.anchor||"middle",dominantBaseline:e.baseline||"auto",fontSize:e.fontSize||11,fontWeight:e.fontWeight,fill:e.fill||"#333",stroke:e.stroke,strokeWidth:e.strokeWidth,paintOrder:e.paintOrder},e.text)}(e,t)).filter(Boolean))),p.createElement(rs,{width:st,height:lt,totalWidth:it[0],totalHeight:it[1],margin:at,labels:o,sceneNodes:t,title:Le,legend:Ee,legendPosition:Me,legendHoverBehavior:je,legendClickBehavior:Ce,legendHighlightedCategory:Pe,legendIsolatedCategories:_e,foregroundGraphics:ut,annotations:Se,svgAnnotationRules:Oe,annotationFrame:0}))}const bn=Ct.current;return p.createElement("div",{ref:rt,className:"stream-network-frame"+(de?" "+de:""),role:"group","aria-label":$e||("string"==typeof Le?Le:"Network chart"),tabIndex:0,style:{position:"relative",width:le?"100%":it[0],height:ce?"100%":it[1],overflow:"visible"},onKeyDown:yn},Fe&&p.createElement(kt,{tableId:ft}),Fe&&p.createElement(bt,{nodes:null!==(c=null==bn?void 0:bn.sceneNodes)&&void 0!==c?c:[],edges:null!==(u=null==bn?void 0:bn.sceneEdges)&&void 0!==u?u:[],chartType:"Network chart",tableId:ft,chartTitle:"string"==typeof Le?Le:void 0}),p.createElement(xt,{summary:ze}),p.createElement("div",{role:"img","aria-label":$e||("string"==typeof Le?Le:"Network chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:ge?mn:void 0,onMouseLeave:ge?cn:void 0,onClick:be||ke?hn:void 0},dt&&p.createElement("svg",{overflow:"visible",style:{position:"absolute",top:0,left:0,width:it[0],height:it[1],pointerEvents:"none",overflow:"visible"}},p.createElement("g",{transform:`translate(${at.left},${at.top})`},dt)),p.createElement("canvas",{ref:Mt,"aria-label":ct(null!==(h=null===(d=null==bn?void 0:bn.sceneNodes)||void 0===d?void 0:d.length)&&void 0!==h?h:0,null!==(f=null===(g=null==bn?void 0:bn.sceneEdges)||void 0===g?void 0:g.length)&&void 0!==f?f:0,"Network chart"),style:{position:"absolute",top:0,left:0}}),p.createElement(wt,{hoverPoint:Pt}),p.createElement(rs,{width:st,height:lt,totalWidth:it[0],totalHeight:it[1],margin:at,labels:(null==bn?void 0:bn.labels)||[],sceneNodes:null==bn?void 0:bn.sceneNodes,title:Le,legend:Ee,legendPosition:Me,legendHoverBehavior:je,legendClickBehavior:Ce,legendHighlightedCategory:Pe,legendIsolatedCategories:_e,foregroundGraphics:ut,annotations:Se,svgAnnotationRules:Oe,annotationFrame:Rt}),p.createElement(St,{active:gn.current>=0,hoverPoint:Pt,margin:at,size:it,shape:null===(y=fn.current)||void 0===y?void 0:y.shape,width:null===(m=fn.current)||void 0===m?void 0:m.w,height:null===(v=fn.current)||void 0===v?void 0:v.h}),vn,(null==He?void 0:He.showBadge)&&p.createElement("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===He.badgePosition?{top:4,left:4}:"bottom-left"===He.badgePosition?{bottom:4,left:4}:"bottom-right"===He.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{background:Dt?"#dc3545":"#28a745",color:"white",fontSize:10,fontWeight:700,padding:"2px 6px",borderRadius:3,letterSpacing:"0.05em",zIndex:3,pointerEvents:"none"})},Dt?"STALE":"LIVE")))});ys.displayName="StreamNetworkFrame";const ms=e.forwardRef(function(t,n){var o;const r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n,o,i,a;const s=Array.isArray(e)?e:[e],l=null!==(o=null===(n=null===(t=r.current)||void 0===t?void 0:t.getTopology())||void 0===n?void 0:n.nodes)&&void 0!==o?o:[],c=[];for(const e of s){const t=l.find(t=>t.id===e);t&&c.push(Object.assign(Object.assign({},null!==(i=t.data)&&void 0!==i?i:{}),{id:e})),null===(a=r.current)||void 0===a||a.removeNode(e)}return c},update:(e,t)=>(Array.isArray(e)?e:[e]).flatMap(e=>{var n;const o=null===(n=r.current)||void 0===n?void 0:n.updateNode(e,t);return o?[Object.assign(Object.assign({},o),{id:e})]:[]}),clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t,n,o;return null!==(o=null===(n=null===(t=null===(e=r.current)||void 0===e?void 0:e.getTopology())||void 0===t?void 0:t.nodes)||void 0===n?void 0:n.map(e=>e.data))&&void 0!==o?o:[]}}));const i=so(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLegend:t.showLegend,showLabels:t.showLabels,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary},{width:600,height:600}),{nodes:a,edges:s,margin:l,className:c,nodeIDAccessor:u="id",sourceAccessor:d="source",targetAccessor:h="target",nodeLabel:g,colorBy:f,colorScheme:y,nodeSize:m=8,nodeSizeRange:v=[5,20],edgeWidth:b=1,edgeColor:x="#999",edgeOpacity:k=.6,iterations:w=300,forceStrength:A=.1,tooltip:S,frameProps:O={},onObservation:E,onClick:M,chartId:P,selection:_,linkedHover:L,loading:R,emptyContent:B,legendInteraction:D,legendPosition:I}=t,N=i.width,H=i.height,W=i.enableHover,F=i.showLegend,$=null!==(o=i.showLabels)&&void 0!==o&&o,z=i.title,G=i.description,Y=i.summary,q=i.accessibleTable,X=Jo(R,N,H),V=X?null:Zo(a,N,H,B),U=a||[],K=s||[],Q=eo(U,f,y),Z=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of U){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[U,f]),J=io(D,f,Z),ee=Qn(),te=e.useMemo(()=>new Map,[]),ne=e.useMemo(()=>{if(Array.isArray(y))return y;if(ee&&ee.length>0)return ee;const e=j[y];return Array.isArray(e)?e:C},[y,ee]),oe=e.useMemo(()=>e=>{const t={};return t.fill=f?T(e.data||e,f,Q):Zn(void 0,ee,y,void 0,te),"number"==typeof m&&(t.r=m),t},[f,Q,m,ee,y,te]),re=e.useMemo(()=>e=>({stroke:x,strokeWidth:"number"==typeof b?b:"function"==typeof b?b(e):e[b]||1,opacity:k}),[b,x,k]),ie=e.useMemo(()=>{if($&&g)return"function"==typeof g?g:e=>{var t,n,o;return null!==(o=null!==(n=null===(t=e.data)||void 0===t?void 0:t[g])&&void 0!==n?n:e[g])&&void 0!==o?o:e.id}},[$,g]),{legend:ae,margin:se,legendPosition:le}=ro({data:U,colorBy:f,colorScale:Q,showLegend:F,legendPosition:I,userMargin:l,defaults:i.marginDefaults}),{customHoverBehavior:ce,customClickBehavior:ue}=no({selection:_,linkedHover:L,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:E,onClick:M,chartType:"ForceDirectedGraph",chartId:P}),de=Co({componentName:"ForceDirectedGraph",nodes:a,edges:s,nodesRequired:!0,edgesRequired:!0,accessors:{nodeIDAccessor:u}});return de?p.createElement(ko,{componentName:"ForceDirectedGraph",message:de,width:N,height:H}):X||V||p.createElement(Uo,{componentName:"ForceDirectedGraph",width:N,height:H},p.createElement(ys,Object.assign({ref:r,chartType:"force"},null!=a&&{nodes:U},null!=s&&{edges:K},{size:[N,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:se,nodeIDAccessor:u,sourceAccessor:d,targetAccessor:h,iterations:w,forceStrength:A,nodeStyle:oe,edgeStyle:re,colorBy:f,colorScheme:ne,nodeSize:m,nodeSizeRange:v,nodeLabel:ie,showLabels:$,enableHover:W,tooltipContent:!1===S?()=>null:fo(S)||void 0,customHoverBehavior:L||E||M?ce:void 0,customClickBehavior:E||M?ue:void 0,legend:ae,legendPosition:le},D&&"none"!==D&&{legendHoverBehavior:J.onLegendHover,legendClickBehavior:J.onLegendClick,legendHighlightedCategory:J.highlightedCategory,legendIsolatedCategories:J.isolatedCategories},{className:c,title:z,description:G,summary:Y,accessibleTable:q},null!=t.animate&&{animate:t.animate},O)))});function vs(e,t){if(!e)return[];const n=[],o=e=>{n.push(e);const r="function"==typeof t?t(e):e[t];r&&Array.isArray(r)&&r.forEach(o)};return o(e),n}function bs(e,t,n,o){if(e&&e.length>0)return e;const r=new Set;return t.forEach(e=>{const t="function"==typeof n?n(e):e[n],i="function"==typeof o?o(e):e[o];r.add(t),r.add(i)}),Array.from(r).map(e=>({id:e}))}function xs(e){return"function"==typeof e?e:t=>t[e]||1}function ks({edgeColorBy:e,colorBy:t,colorScale:n,nodeStyleFn:o,edgeOpacity:r,baseStyle:i={}}){return a=>{const s=Object.assign({fillOpacity:r},i);if("function"==typeof e)s.fill=e(a);else if("source"===e){const e="object"==typeof a.source?a.source:null;t&&e?s.fill=T(e.data||e,t,n):e&&(s.fill=o(e,e.index).fill)}else if("target"===e){const e="object"==typeof a.target?a.target:null;t&&e?s.fill=T(e.data||e,t,n):e&&(s.fill=o(e,e.index).fill)}else"gradient"===e&&(s.fill="#999",s.fillOpacity=.7*r);return s}}ms.displayName="ForceDirectedGraph";const ws=e.forwardRef(function(t,n){var o;const r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n,o,i,a;const s=Array.isArray(e)?e:[e],l=null!==(o=null===(n=null===(t=r.current)||void 0===t?void 0:t.getTopology())||void 0===n?void 0:n.nodes)&&void 0!==o?o:[],c=[];for(const e of s){const t=l.find(t=>t.id===e);t&&c.push(Object.assign(Object.assign({},null!==(i=t.data)&&void 0!==i?i:{}),{id:e})),null===(a=r.current)||void 0===a||a.removeNode(e)}return c},update:(e,t)=>(Array.isArray(e)?e:[e]).flatMap(e=>{var n;const o=null===(n=r.current)||void 0===n?void 0:n.updateNode(e,t);return o?[Object.assign(Object.assign({},o),{id:e})]:[]}),clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t,n,o;return null!==(o=null===(n=null===(t=null===(e=r.current)||void 0===e?void 0:e.getTopology())||void 0===t?void 0:t.edges)||void 0===n?void 0:n.map(e=>e.data))&&void 0!==o?o:[]}}));const i=so(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary},{width:600,height:600}),{nodes:a,edges:s,margin:l,className:c,sourceAccessor:u="source",targetAccessor:d="target",valueAccessor:h="value",nodeIdAccessor:g="id",colorBy:f,colorScheme:y,edgeColorBy:m="source",padAngle:v=.01,groupWidth:b=20,sortGroups:x,nodeLabel:k,edgeOpacity:w=.5,tooltip:A,frameProps:S={},onObservation:O,onClick:E,chartId:M,selection:P,linkedHover:_,loading:L,emptyContent:R,legendInteraction:B}=t,D=i.width,I=i.height,N=i.enableHover,H=null===(o=i.showLabels)||void 0===o||o,W=i.title,F=i.description,$=i.summary,z=i.accessibleTable,G=Jo(L,D,I),Y=G?null:Zo(s,D,I,R),q=s||[],X=e.useMemo(()=>bs(a,q,u,d),[a,q,u,d]),V=eo(X,f,y),U=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of X){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[X,f]),K=io(B,f,U),Q=Qn(),Z=e.useMemo(()=>new Map,[]),J=e.useMemo(()=>{if(Array.isArray(y))return y;if(Q&&Q.length>0)return Q;const e=j[y];return Array.isArray(e)?e:C},[y,Q]),ee=X.length>0,te=e.useMemo(()=>{if(ee)return(e,t)=>{var n,o;const r={stroke:"black",strokeWidth:1};if(f)r.fill=T(e.data||e,f,V);else{const i=Array.isArray(y)?y:j[y]||C,a=Array.isArray(i)?i:C,s=null!==(o=null!==(n=e.index)&&void 0!==n?n:t)&&void 0!==o?o:0;r.fill=a[s%a.length]}return r}},[ee,f,V,y]),ne=e.useMemo(()=>{if(ee)return ks({edgeColorBy:m,colorBy:f,colorScale:V,nodeStyleFn:te||(e=>({fill:Zn(void 0,Q,y,void 0,Z)})),edgeOpacity:w,baseStyle:{stroke:"black",strokeWidth:.5,strokeOpacity:w}})},[ee,m,f,V,te,w,Q,y,Z]),oe=e.useMemo(()=>{if(!H)return;const e=k||g;return"function"==typeof e?e:t=>{var n,o,r;return null!==(r=null!==(o=null===(n=t.data)||void 0===n?void 0:n[e])&&void 0!==o?o:t[e])&&void 0!==r?r:t.id}},[H,k,g]),re=Object.assign(Object.assign({},i.marginDefaults),l),{customHoverBehavior:ie,customClickBehavior:ae}=no({selection:P,linkedHover:_,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:O,onClick:E,chartType:"ChordDiagram",chartId:M}),se=Co({componentName:"ChordDiagram",edges:s,edgesRequired:!0});return se?p.createElement(ko,{componentName:"ChordDiagram",message:se,width:D,height:I}):G||Y||p.createElement(Uo,{componentName:"ChordDiagram",width:D,height:I},p.createElement(ys,Object.assign({ref:r,chartType:"chord"},X.length>0&&{nodes:X},null!=s&&{edges:q},{size:[D,I],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:re,nodeIDAccessor:g,sourceAccessor:u,targetAccessor:d,valueAccessor:h,padAngle:v,groupWidth:b,sortGroups:x,nodeStyle:te,edgeStyle:ne,colorBy:f,colorScheme:J,edgeColorBy:m,edgeOpacity:w,nodeLabel:oe,showLabels:H,enableHover:N,tooltipContent:!1===A?()=>null:fo(A)||void 0,customHoverBehavior:_||O||E?ie:void 0,customClickBehavior:O||E?ae:void 0},B&&"none"!==B&&{legendHoverBehavior:K.onLegendHover,legendClickBehavior:K.onLegendClick,legendHighlightedCategory:K.highlightedCategory,legendIsolatedCategories:K.isolatedCategories},{className:c,title:W,description:F,summary:$,accessibleTable:z},null!=t.animate&&{animate:t.animate},S)))});ws.displayName="ChordDiagram";const As=e.forwardRef(function(t,n){var o;const r=e.useRef(null);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n,o,i,a;const s=Array.isArray(e)?e:[e],l=null!==(o=null===(n=null===(t=r.current)||void 0===t?void 0:t.getTopology())||void 0===n?void 0:n.nodes)&&void 0!==o?o:[],c=[];for(const e of s){const t=l.find(t=>t.id===e);t&&c.push(Object.assign(Object.assign({},null!==(i=t.data)&&void 0!==i?i:{}),{id:e})),null===(a=r.current)||void 0===a||a.removeNode(e)}return c},update:(e,t)=>(Array.isArray(e)?e:[e]).flatMap(e=>{var n;const o=null===(n=r.current)||void 0===n?void 0:n.updateNode(e,t);return o?[Object.assign(Object.assign({},o),{id:e})]:[]}),clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t,n,o;return null!==(o=null===(n=null===(t=null===(e=r.current)||void 0===e?void 0:e.getTopology())||void 0===t?void 0:t.edges)||void 0===n?void 0:n.map(e=>e.data))&&void 0!==o?o:[]}}));const i=so(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary},{width:800,height:600}),{nodes:a,edges:s,margin:l,className:c,sourceAccessor:u="source",targetAccessor:d="target",valueAccessor:h="value",nodeIdAccessor:g="id",colorBy:f,colorScheme:y,edgeColorBy:m="source",orientation:v="horizontal",nodeAlign:b="justify",nodePaddingRatio:x=.05,nodeWidth:k=15,nodeLabel:w,edgeOpacity:A=.5,edgeSort:S,tooltip:O,frameProps:E={},onObservation:M,onClick:P,chartId:_,selection:L,linkedHover:R,loading:B,emptyContent:D,legendInteraction:I}=t,N=i.width,H=i.height,W=i.enableHover,F=null===(o=i.showLabels)||void 0===o||o,$=i.title,z=i.description,G=i.summary,Y=i.accessibleTable,q=Jo(B,N,H),X=q?null:Zo(s,N,H,D),V=s||[],U=e.useMemo(()=>bs(a,V,u,d),[a,V,u,d]),K=eo(U,f,y),Q=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of U){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[U,f]),Z=io(I,f,Q),J=Qn(),ee=e.useMemo(()=>new Map,[]),te=e.useMemo(()=>{if(Array.isArray(y))return y;if(J&&J.length>0)return J;const e=j[y];return Array.isArray(e)?e:C},[y,J]),ne=e.useMemo(()=>e=>{const t={stroke:"black",strokeWidth:1};return t.fill=f?T(e.data||e,f,K):Zn(void 0,J,y,void 0,ee),t},[f,K,J,y,ee]),oe=e.useMemo(()=>ks({edgeColorBy:m,colorBy:f,colorScale:K,nodeStyleFn:ne,edgeOpacity:A,baseStyle:{stroke:"none",strokeWidth:0}}),[m,f,K,ne,A]),re=e.useMemo(()=>{if(!F)return;const e=w||g;return"function"==typeof e?e:t=>{var n,o,r;return null!==(r=null!==(o=null===(n=t.data)||void 0===n?void 0:n[e])&&void 0!==o?o:t[e])&&void 0!==r?r:t.id}},[F,w,g]),ie=Object.assign(Object.assign({},i.marginDefaults),l),{customHoverBehavior:ae,customClickBehavior:se}=no({selection:L,linkedHover:R,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:M,onClick:P,chartType:"SankeyDiagram",chartId:_}),le=Co({componentName:"SankeyDiagram",edges:s,edgesRequired:!0});return le?p.createElement(ko,{componentName:"SankeyDiagram",message:le,width:N,height:H}):q||X||p.createElement(Uo,{componentName:"SankeyDiagram",width:N,height:H},p.createElement(ys,Object.assign({ref:r,chartType:"sankey"},U.length>0&&{nodes:U},null!=s&&{edges:V},{size:[N,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ie,nodeIDAccessor:g,sourceAccessor:u,targetAccessor:d,valueAccessor:h,orientation:v,nodeAlign:b,nodePaddingRatio:x,nodeWidth:k,nodeStyle:ne,edgeStyle:oe,colorBy:f,colorScheme:te,edgeColorBy:m,edgeOpacity:A,edgeSort:S,nodeLabel:re,showLabels:F,enableHover:W,tooltipContent:!1===O?()=>null:fo(O)||void 0,customHoverBehavior:R||M||P?ae:void 0,customClickBehavior:M||P?se:void 0},I&&"none"!==I&&{legendHoverBehavior:Z.onLegendHover,legendClickBehavior:Z.onLegendClick,legendHighlightedCategory:Z.highlightedCategory,legendIsolatedCategories:Z.isolatedCategories},{className:c,title:$,description:z,summary:G,accessibleTable:Y},null!=t.animate&&{animate:t.animate},E)))});function Ss(t){var n;const o=so(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary},{width:600,height:600}),{data:r,margin:i,className:a,layout:s="tree",orientation:l="vertical",childrenAccessor:c="children",valueAccessor:u="value",nodeIdAccessor:d="name",colorBy:h,colorScheme:g,colorByDepth:f=!1,edgeStyle:y="curve",nodeLabel:m,nodeSize:v=5,tooltip:b,frameProps:x={},onObservation:k,onClick:w,chartId:A,selection:S,linkedHover:O,loading:E,legendInteraction:M}=t,P=o.width,L=o.height,R=o.enableHover,B=null===(n=o.showLabels)||void 0===n||n,D=o.title,I=o.description,N=o.summary,H=o.accessibleTable,W=Jo(E,P,L),F=e.useMemo(()=>vs(null!=r?r:null,c),[r,c]),$=eo(F,f?void 0:h,g),z=e.useMemo(()=>{if(!h||f)return[];const e=new Set;for(const t of F){const n="function"==typeof h?h(t):t[h];null!=n&&e.add(n+"")}return Array.from(e)},[F,h,f]),G=io(M,f?void 0:h,z),Y=Qn(),q=e.useMemo(()=>new Map,[]),X=e.useMemo(()=>{if(Array.isArray(g))return g;if(Y&&Y.length>0)return Y;const e=j[g];return Array.isArray(e)?e:C},[g,Y]),V=e.useMemo(()=>e=>{const t={stroke:"black",strokeWidth:1};return t.fill=f?_[(e.depth||0)%_.length]:h?T(e.data||e,h,$):Zn(void 0,Y,g,void 0,q),t},[h,f,$,Y,g,q]),U=e.useMemo(()=>()=>({stroke:"#999",strokeWidth:1,fill:"none"}),[]),K=e.useMemo(()=>{if("treemap"===s||"circlepack"===s||"partition"===s)return xs(u)},[s,u]),Q=Object.assign(Object.assign({},o.marginDefaults),i),{customHoverBehavior:Z,customClickBehavior:J}=no({selection:S,linkedHover:O,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!0,onObservation:k,onClick:w,chartType:"TreeDiagram",chartId:A}),ee=jo({componentName:"TreeDiagram",data:r});return ee?p.createElement(ko,{componentName:"TreeDiagram",message:ee,width:P,height:L}):W||p.createElement(Uo,{componentName:"TreeDiagram",width:P,height:L},p.createElement(ys,Object.assign({chartType:s},null!=r&&{data:r},{size:[P,L],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Q,nodeIDAccessor:d,childrenAccessor:c,hierarchySum:K,treeOrientation:l,edgeType:y,nodeStyle:V,edgeStyle:U,colorBy:h,colorScheme:X,colorByDepth:f,nodeSize:v,nodeLabel:B?m||d:void 0,showLabels:B,enableHover:R,tooltipContent:!1===b?()=>null:fo(b)||void 0,customHoverBehavior:O||k||w?Z:void 0,customClickBehavior:k||w?J:void 0},M&&"none"!==M&&{legendHoverBehavior:G.onLegendHover,legendClickBehavior:G.onLegendClick,legendHighlightedCategory:G.highlightedCategory,legendIsolatedCategories:G.isolatedCategories},{className:a,title:D,description:I,summary:N,accessibleTable:H},null!=t.animate&&{animate:t.animate},x)))}function Os(t){var n;const o=so(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary,linkedHover:t.linkedHover},{width:600,height:600}),{data:r,margin:i,className:a,childrenAccessor:s="children",valueAccessor:l="value",nodeIdAccessor:c="name",colorBy:u,colorScheme:d,colorByDepth:h=!1,labelMode:g="leaf",nodeLabel:f,padding:y=4,paddingTop:m,tooltip:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:A,chartId:S,loading:O,legendInteraction:E}=t,M=o.width,P=o.height,L=o.enableHover,R=null===(n=o.showLabels)||void 0===n||n,B=o.title,D=o.description,I=o.summary,N=o.accessibleTable,H=Jo(O,M,P),{activeSelectionHook:W,customHoverBehavior:F,customClickBehavior:$}=no({selection:x,linkedHover:k,fallbackFields:u?["string"==typeof u?u:""]:[],onObservation:w,onClick:A,chartType:"Treemap",chartId:S}),z=tr(x),G=e.useCallback(e=>{if(!e)return F(null);const t=e.data||e;F({data:(null==t?void 0:t.data)||t})},[F]),Y=e.useMemo(()=>vs(null!=r?r:null,s),[r,s]),q=eo(Y,h?void 0:u,d),X=e.useMemo(()=>{if(!u||h)return[];const e=new Set;for(const t of Y){const n="function"==typeof u?u(t):t[u];null!=n&&e.add(n+"")}return Array.from(e)},[Y,u,h]),V=io(E,h?void 0:u,X),U=Qn(),K=e.useMemo(()=>new Map,[]),Q=e.useMemo(()=>{if(Array.isArray(d))return d;if(U&&U.length>0)return U;const e=j[d];return Array.isArray(e)?e:C},[d,U]),Z=e.useMemo(()=>e=>{const t={stroke:"#fff",strokeWidth:1,strokeOpacity:.8};return t.fill=h?_[(e.depth||0)%_.length]:u?T(e.data||e,u,q):Zn(void 0,U,d,void 0,K),t},[u,h,q,U,d,K]),J=e.useMemo(()=>W?e=>{var t;const n=Object.assign({},Z(e));if(W.isActive)if(W.predicate(e.data||e))(null==z?void 0:z.selectedStyle)&&Object.assign(n,z.selectedStyle);else{const e=null!==(t=null==z?void 0:z.unselectedOpacity)&&void 0!==t?t:.5;n.opacity=e,n.fillOpacity=e,n.strokeOpacity=e,(null==z?void 0:z.unselectedStyle)&&Object.assign(n,z.unselectedStyle)}return n}:Z,[Z,W,z]),ee=e.useMemo(()=>xs(l),[l]),te=void 0!==m?m:!R||"parent"!==g&&"all"!==g?void 0:18,ne=Object.assign(Object.assign({},o.marginDefaults),i),oe=jo({componentName:"Treemap",data:r});return oe?p.createElement(ko,{componentName:"Treemap",message:oe,width:M,height:P}):H||p.createElement(Uo,{componentName:"Treemap",width:M,height:P},p.createElement(ys,Object.assign({chartType:"treemap"},null!=r&&{data:r},{size:[M,P],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ne,nodeIDAccessor:c,childrenAccessor:s,hierarchySum:ee,padding:y,paddingTop:te,nodeStyle:J,colorBy:u,colorScheme:Q,colorByDepth:h,nodeLabel:R?f||c:void 0,showLabels:R,labelMode:g,enableHover:L,tooltipContent:!1===v?()=>null:fo(v)||void 0},(k||w||A)&&{customHoverBehavior:G},(w||A)&&{customClickBehavior:$},E&&"none"!==E&&{legendHoverBehavior:V.onLegendHover,legendClickBehavior:V.onLegendClick,legendHighlightedCategory:V.highlightedCategory,legendIsolatedCategories:V.isolatedCategories},{className:a,title:B,description:D,summary:I,accessibleTable:N},null!=t.animate&&{animate:t.animate},b)))}function Es(t){var n;const o=so(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary},{width:600,height:600}),{data:r,margin:i,className:a,childrenAccessor:s="children",valueAccessor:l="value",nodeIdAccessor:c="name",colorBy:u,colorScheme:d,colorByDepth:h=!1,nodeLabel:g,circleOpacity:f=.7,padding:y=4,tooltip:m,frameProps:v={},onObservation:b,onClick:x,chartId:k,selection:w,linkedHover:A,loading:S,legendInteraction:O}=t,E=o.width,M=o.height,P=o.enableHover,L=null===(n=o.showLabels)||void 0===n||n,R=o.title,B=o.description,D=o.summary,I=o.accessibleTable,N=Jo(S,E,M),H=e.useMemo(()=>vs(null!=r?r:null,s),[r,s]),W=eo(H,h?void 0:u,d),F=e.useMemo(()=>{if(!u||h)return[];const e=new Set;for(const t of H){const n="function"==typeof u?u(t):t[u];null!=n&&e.add(n+"")}return Array.from(e)},[H,u,h]),$=io(O,h?void 0:u,F),z=Qn(),G=e.useMemo(()=>new Map,[]),Y=e.useMemo(()=>{if(Array.isArray(d))return d;if(z&&z.length>0)return z;const e=j[d];return Array.isArray(e)?e:C},[d,z]),q=e.useMemo(()=>e=>{const t={stroke:"currentColor",strokeWidth:1,strokeOpacity:.3,fillOpacity:f};return t.fill=h?_[(e.depth||0)%_.length]:u?T(e.data||e,u,W):Zn(void 0,z,d,void 0,G),t},[u,h,W,f,z,d,G]),X=e.useMemo(()=>xs(l),[l]),V=Object.assign(Object.assign({},o.marginDefaults),i),{customHoverBehavior:U,customClickBehavior:K}=no({selection:w,linkedHover:A,fallbackFields:u?["string"==typeof u?u:""]:[],unwrapData:!0,onObservation:b,onClick:x,chartType:"CirclePack",chartId:k}),Q=jo({componentName:"CirclePack",data:r});return Q?p.createElement(ko,{componentName:"CirclePack",message:Q,width:E,height:M}):N||p.createElement(Uo,{componentName:"CirclePack",width:E,height:M},p.createElement(ys,Object.assign({chartType:"circlepack"},null!=r&&{data:r},{size:[E,M],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:V,nodeIDAccessor:c,childrenAccessor:s,hierarchySum:X,padding:y,nodeStyle:q,colorBy:u,colorScheme:Y,colorByDepth:h,nodeLabel:L?g||c:void 0,showLabels:L,enableHover:P,tooltipContent:!1===m?()=>null:fo(m)||void 0,customHoverBehavior:A||b||x?U:void 0,customClickBehavior:b||x?K:void 0},O&&"none"!==O&&{legendHoverBehavior:$.onLegendHover,legendClickBehavior:$.onLegendClick,legendHighlightedCategory:$.highlightedCategory,legendIsolatedCategories:$.isolatedCategories},{className:a,title:R,description:B,summary:D,accessibleTable:I},null!=t.animate&&{animate:t.animate},v)))}As.displayName="SankeyDiagram",Ss.displayName="TreeDiagram",Os.displayName="Treemap",Es.displayName="CirclePack";const Ms=_;function js(t){const n=so(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title,description:t.description,accessibleTable:t.accessibleTable,summary:t.summary},{width:600,height:600}),{data:o,margin:r,className:i,childrenAccessor:a="children",nodeIdAccessor:s="name",colorBy:l,colorScheme:c,colorByDepth:u=!1,orbitMode:d="flat",orbitSize:h=2.95,speed:g=.25,revolution:f,revolutionStyle:y,eccentricity:m=1,showRings:v=!0,nodeRadius:b=6,showLabels:x=!1,animated:k=!0,tooltip:w,foregroundGraphics:A,annotations:S,frameProps:O={},onObservation:E,onClick:M,chartId:P,selection:_,linkedHover:L,loading:R}=t,B=n.width,D=n.height,I=n.enableHover,N=n.title,H=n.description,W=n.summary,F=n.accessibleTable,$=Jo(R,B,D),z=eo(e.useMemo(()=>vs(o,a),[o,a]),u?void 0:l,c),G=Qn(),Y=e.useMemo(()=>new Map,[]),q=e.useMemo(()=>{if(Array.isArray(c))return c;if(G&&G.length>0)return G;const e=j[c];return Array.isArray(e)?e:C},[c,G]),X=e.useMemo(()=>{if(Array.isArray(c))return c;const e=j[c];return Array.isArray(e)?e:C},[c]),V=e.useMemo(()=>e=>{var t;const n={stroke:"#fff",strokeWidth:1},o=0===(null!==(t=e.depth)&&void 0!==t?t:0);return n.fill=u?o?X[0]:Ms[(e.depth||0)%Ms.length]:l?T(e.data||e,l,z):Zn(void 0,G,c,void 0,Y),n.opacity=o?1:.85,n},[l,u,z,X,G,c,Y]),U=e.useMemo(()=>()=>({stroke:"rgba(128,128,128,0.35)",strokeWidth:.5,opacity:1}),[]),K=Object.assign({top:10,right:10,bottom:10,left:10},r),{customHoverBehavior:Q,customClickBehavior:Z}=no({selection:_,linkedHover:L,fallbackFields:l?["string"==typeof l?l:""]:[],unwrapData:!0,onObservation:E,onClick:M,chartType:"OrbitDiagram",chartId:P}),J=e.useMemo(()=>{if(Q)return e=>{Q(e&&e.data&&void 0!==e.data.data?Object.assign(Object.assign({},e),{data:e.data.data}):e)}},[Q]),ee=e.useMemo(()=>{if(Z)return e=>{Z(e&&e.data&&void 0!==e.data.data?Object.assign(Object.assign({},e),{data:e.data.data}):e)}},[Z]),te=jo({componentName:"OrbitDiagram",data:o});return te?p.createElement(ko,{componentName:"OrbitDiagram",message:te,width:B,height:D}):$||p.createElement(Uo,{componentName:"OrbitDiagram",width:B,height:D},p.createElement(ys,Object.assign({chartType:"orbit"},null!=o&&{data:o},{size:[B,D],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:K,nodeIDAccessor:s,childrenAccessor:a,nodeStyle:V,edgeStyle:U,colorBy:l,colorScheme:q,colorByDepth:u,nodeSize:b,nodeLabel:x?s:void 0,showLabels:x,enableHover:!k&&I,tooltipContent:k?void 0:!1===w?()=>null:fo(w)||void 0,customHoverBehavior:L||E||M?J:void 0,customClickBehavior:E||M?ee:void 0,foregroundGraphics:A,annotations:S,className:i,title:N,description:H,summary:W,orbitMode:d,orbitSize:h,orbitSpeed:g,orbitRevolution:f,orbitRevolutionStyle:y,orbitEccentricity:m,orbitShowRings:v,orbitAnimated:k,accessibleTable:F},null!=t.animate&&{animate:t.animate},O)))}js.displayName="OrbitDiagram";const Cs=e.forwardRef(function(t,n){var o,r,i,a;const s=so(t.mode,{width:null!==(r=null===(o=t.size)||void 0===o?void 0:o[0])&&void 0!==r?r:t.width,height:null!==(a=null===(i=t.size)||void 0===i?void 0:i[1])&&void 0!==a?a:t.height,enableHover:null!=t.enableHover?!!t.enableHover:void 0}),{size:l,margin:c,className:u,arrowOfTime:d="right",windowMode:h="sliding",windowSize:g=200,data:f,timeAccessor:y,valueAccessor:m,timeExtent:v,valueExtent:b,extentPadding:x,stroke:k="#007bff",strokeWidth:w=2,strokeDasharray:A,background:S,tooltipContent:O,tooltip:E,onHover:M,annotations:j,svgAnnotationRules:C,tickFormatTime:P,tickFormatValue:_,decay:L,pulse:T,staleness:R,transition:B,linkedHover:D,selection:I,onObservation:N,chartId:H,loading:W,emptyContent:F,emphasis:$,legendPosition:z}=t,G=s.showAxes,Y=s.enableHover,q=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=O?O:E,U=e.useRef(null),{customHoverBehavior:K}=no({selection:I,linkedHover:D,unwrapData:!0,onObservation:N,chartType:"RealtimeLineChart",chartId:H}),Q=e.useCallback(e=>{M&&M(e),K(e)},[M,K]);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=U.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=U.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=U.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const Z=Jo(W,X[0],X[1]),J=Z?null:Zo(f,X[0],X[1],F),ee={stroke:k,strokeWidth:w,strokeDasharray:A};return Z||J||p.createElement(wn,{ref:U,chartType:"line",runtimeMode:"streaming",size:X,margin:q,className:$?`${u||""} semiotic-emphasis-${$}`.trim():u,arrowOfTime:d,windowMode:h,windowSize:g,data:f,timeAccessor:y,valueAccessor:m,xExtent:v,yExtent:b,extentPadding:x,lineStyle:ee,showAxes:G,background:S,hoverAnnotation:Y,tooltipContent:V,customHoverBehavior:Q,annotations:j,svgAnnotationRules:C,tickFormatTime:P,tickFormatValue:_,decay:L,pulse:T,staleness:R,transition:B,pointIdAccessor:t.pointIdAccessor,legendPosition:z})});Cs.displayName="RealtimeLineChart";const Ps=e.forwardRef(function(t,n){var o,r,i,a;const s=so(t.mode,{width:null!==(r=null===(o=t.size)||void 0===o?void 0:o[0])&&void 0!==r?r:t.width,height:null!==(a=null===(i=t.size)||void 0===i?void 0:i[1])&&void 0!==a?a:t.height,enableHover:null!=t.enableHover?!!t.enableHover:void 0}),{binSize:l,size:c,margin:u,className:d,arrowOfTime:h="right",windowMode:g="sliding",windowSize:f=200,data:y,timeAccessor:m,valueAccessor:v,timeExtent:b,valueExtent:x,extentPadding:k,categoryAccessor:w,colors:A,fill:S,stroke:O,strokeWidth:E,gap:M,background:j,tooltipContent:C,tooltip:P,onHover:_,annotations:L,svgAnnotationRules:T,tickFormatTime:R,tickFormatValue:B,linkedHover:D,selection:I,decay:N,pulse:H,staleness:W,transition:F,onObservation:$,chartId:z,loading:G,emptyContent:Y,emphasis:q,legendPosition:X,brush:V,onBrush:U,linkedBrush:K}=t,Q=s.showAxes,Z=s.enableHover,J=null!=u?u:s.marginDefaults,ee=null!=c?c:[s.width,s.height],te=null!=C?C:P,ne=e.useRef(null),{customHoverBehavior:oe}=no({selection:I,linkedHover:D,unwrapData:!0,onObservation:$,chartType:"RealtimeTemporalHistogram",chartId:z}),re=e.useCallback(e=>{_&&_(e),oe(e)},[_,oe]),ie=!0===V?{dimension:"x",snap:"bin"}:"x"===V?{dimension:"x"}:"object"==typeof V?V:void 0,ae=$n(K),se=Bn(Object.assign({name:(null==ae?void 0:ae.name)||"__unused_hist_brush__",xField:(null==ae?void 0:ae.xField)||("string"==typeof m?m:"time")},(null==ae?void 0:ae.yField)?{yField:ae.yField}:{})),le=e.useRef(se.brushInteraction);le.current=se.brushInteraction;const ce=e.useCallback(e=>{if(U&&U(e),$&&$(e?{type:"brush",extent:e,timestamp:Date.now(),chartType:"RealtimeTemporalHistogram",chartId:z}:{type:"brush-end",timestamp:Date.now(),chartType:"RealtimeTemporalHistogram",chartId:z}),ae){const t=le.current;t.end(e?"xBrush"===t.brush?e.x:"yBrush"===t.brush?e.y:[[e.x[0],e.y[0]],[e.x[1],e.y[1]]]:null)}},[U,$,z,ae]);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=ne.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=ne.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=ne.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=ne.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=ne.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=ne.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=ne.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const ue=Jo(G,ee[0],ee[1]),de=ue?null:Zo(y,ee[0],ee[1],Y),he={};return null!=S&&(he.fill=S),null!=O&&(he.stroke=O),null!=E&&(he.strokeWidth=E),null!=M&&(he.gap=M),ue||de||p.createElement(wn,{ref:ne,chartType:"bar",runtimeMode:"streaming",size:ee,margin:J,className:q?`${d||""} semiotic-emphasis-${q}`.trim():d,arrowOfTime:h,windowMode:g,windowSize:f,data:y,timeAccessor:m,valueAccessor:v,xExtent:b,yExtent:x,extentPadding:k,binSize:l,categoryAccessor:w,barColors:A,barStyle:he,showAxes:Q,background:j,hoverAnnotation:Z,tooltipContent:te,customHoverBehavior:re,annotations:L,svgAnnotationRules:T,tickFormatTime:R,tickFormatValue:B,decay:N,pulse:H,staleness:W,transition:F,pointIdAccessor:t.pointIdAccessor,legendPosition:X,brush:ie||(K?{dimension:"x"}:void 0),onBrush:ie||K?ce:void 0})});Ps.displayName="RealtimeTemporalHistogram";const _s=Ps,Ls=e.forwardRef(function(t,n){var o,r,i,a;const s=so(t.mode,{width:null!==(r=null===(o=t.size)||void 0===o?void 0:o[0])&&void 0!==r?r:t.width,height:null!==(a=null===(i=t.size)||void 0===i?void 0:i[1])&&void 0!==a?a:t.height,enableHover:null!=t.enableHover?!!t.enableHover:void 0}),{size:l,margin:c,className:u,arrowOfTime:d="right",windowMode:h="sliding",windowSize:g=200,data:f,timeAccessor:y,valueAccessor:m,timeExtent:v,valueExtent:b,extentPadding:x,categoryAccessor:k,colors:w,radius:A,fill:S,opacity:O,stroke:E,strokeWidth:M,background:j,tooltipContent:C,tooltip:P,onHover:_,annotations:L,svgAnnotationRules:T,tickFormatTime:R,tickFormatValue:B,linkedHover:D,selection:I,onObservation:N,chartId:H,loading:W,emptyContent:F,emphasis:$,legendPosition:z}=t,G=s.showAxes,Y=s.enableHover,q=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=C?C:P,U=e.useRef(null),{customHoverBehavior:K}=no({selection:I,linkedHover:D,unwrapData:!0,onObservation:N,chartType:"RealtimeSwarmChart",chartId:H}),Q=e.useCallback(e=>{_&&_(e),K(e)},[_,K]);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=U.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=U.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=U.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const Z=Jo(W,X[0],X[1]),J=Z?null:Zo(f,X[0],X[1],F),ee={};return null!=A&&(ee.radius=A),null!=S&&(ee.fill=S),null!=O&&(ee.opacity=O),null!=E&&(ee.stroke=E),null!=M&&(ee.strokeWidth=M),Z||J||p.createElement(wn,{ref:U,chartType:"swarm",runtimeMode:"streaming",size:X,margin:q,className:$?`${u||""} semiotic-emphasis-${$}`.trim():u,arrowOfTime:d,windowMode:h,windowSize:g,data:f,timeAccessor:y,valueAccessor:m,xExtent:v,yExtent:b,extentPadding:x,categoryAccessor:k,barColors:w,swarmStyle:ee,showAxes:G,background:j,hoverAnnotation:Y,tooltipContent:V,customHoverBehavior:Q,annotations:L,svgAnnotationRules:T,tickFormatTime:R,tickFormatValue:B,legendPosition:z,pointIdAccessor:t.pointIdAccessor})});Ls.displayName="RealtimeSwarmChart";const Ts=e.forwardRef(function(t,n){var o,r,i,a;const s=so(t.mode,{width:null!==(r=null===(o=t.size)||void 0===o?void 0:o[0])&&void 0!==r?r:t.width,height:null!==(a=null===(i=t.size)||void 0===i?void 0:i[1])&&void 0!==a?a:t.height,enableHover:null!=t.enableHover?!!t.enableHover:void 0}),{size:l,margin:c,className:u,arrowOfTime:d="right",windowMode:h="sliding",windowSize:g=200,data:f,timeAccessor:y,valueAccessor:m,timeExtent:v,valueExtent:b,extentPadding:x,positiveColor:k,negativeColor:w,connectorStroke:A,connectorWidth:S,gap:O,stroke:E,strokeWidth:M,background:j,tooltipContent:C,tooltip:P,onHover:_,annotations:L,svgAnnotationRules:T,tickFormatTime:R,tickFormatValue:B,linkedHover:D,selection:I,onObservation:N,chartId:H,loading:W,emptyContent:F,emphasis:$,legendPosition:z}=t,G=s.showAxes,Y=s.enableHover,q=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=C?C:P,U=e.useRef(null),{customHoverBehavior:K}=no({selection:I,linkedHover:D,unwrapData:!0,onObservation:N,chartType:"RealtimeWaterfallChart",chartId:H}),Q=e.useCallback(e=>{_&&_(e),K(e)},[_,K]);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=U.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=U.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=U.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const Z=Jo(W,X[0],X[1]),J=Z?null:Zo(f,X[0],X[1],F),ee={};return null!=k&&(ee.positiveColor=k),null!=w&&(ee.negativeColor=w),null!=A&&(ee.connectorStroke=A),null!=S&&(ee.connectorWidth=S),null!=O&&(ee.gap=O),null!=E&&(ee.stroke=E),null!=M&&(ee.strokeWidth=M),Z||J||p.createElement(wn,{ref:U,chartType:"waterfall",runtimeMode:"streaming",size:X,margin:q,className:$?`${u||""} semiotic-emphasis-${$}`.trim():u,arrowOfTime:d,windowMode:h,windowSize:g,data:f,timeAccessor:y,valueAccessor:m,xExtent:v,yExtent:b,extentPadding:x,waterfallStyle:ee,showAxes:G,background:j,hoverAnnotation:Y,tooltipContent:V,customHoverBehavior:Q,annotations:L,svgAnnotationRules:T,tickFormatTime:R,tickFormatValue:B,legendPosition:z,pointIdAccessor:t.pointIdAccessor})});Ts.displayName="RealtimeWaterfallChart";const Rs=e.forwardRef(function(t,n){var o,r,i,a;const s=so(t.mode,{width:null!==(r=null===(o=t.size)||void 0===o?void 0:o[0])&&void 0!==r?r:t.width,height:null!==(a=null===(i=t.size)||void 0===i?void 0:i[1])&&void 0!==a?a:t.height,enableHover:null!=t.enableHover?!!t.enableHover:void 0}),{size:l,margin:c,className:u,arrowOfTime:d="right",windowMode:h="sliding",windowSize:g=200,data:f,timeAccessor:y,valueAccessor:m,categoryAccessor:v,timeExtent:b,valueExtent:x,extentPadding:k,heatmapXBins:w=20,heatmapYBins:A=20,aggregation:S="count",background:O,tooltipContent:E,tooltip:M,onHover:j,annotations:C,svgAnnotationRules:P,tickFormatTime:_,tickFormatValue:L,decay:T,pulse:R,staleness:B,linkedHover:D,selection:I,onObservation:N,chartId:H,loading:W,emptyContent:F,emphasis:$,legendPosition:z}=t,G=s.showAxes,Y=s.enableHover,q=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=E?E:M,U=e.useRef(null),{customHoverBehavior:K}=no({selection:I,linkedHover:D,unwrapData:!0,onObservation:N,chartType:"RealtimeHeatmap",chartId:H}),Q=e.useCallback(e=>{j&&j(e),K(e)},[j,K]);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,n;return null!==(n=null===(t=U.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,o;return null!==(o=null===(n=U.current)||void 0===n?void 0:n.update(e,t))&&void 0!==o?o:[]},clear:()=>{var e;return null===(e=U.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const Z=Jo(W,X[0],X[1]),J=Z?null:Zo(f,X[0],X[1],F);return Z||J||p.createElement(wn,{ref:U,chartType:"heatmap",runtimeMode:"streaming",size:X,margin:q,className:$?`${u||""} semiotic-emphasis-${$}`.trim():u,arrowOfTime:d,windowMode:h,windowSize:g,data:f,timeAccessor:y,valueAccessor:m,categoryAccessor:v,xExtent:b,yExtent:x,extentPadding:k,heatmapXBins:w,heatmapYBins:A,heatmapAggregation:S,showAxes:G,background:O,hoverAnnotation:Y,tooltipContent:V,customHoverBehavior:Q,annotations:C,svgAnnotationRules:P,tickFormatTime:_,tickFormatValue:L,decay:T,pulse:R,staleness:B,legendPosition:z,pointIdAccessor:t.pointIdAccessor})});Rs.displayName="RealtimeHeatmap";let[Bs]=Et(e=>({tooltip:null,changeTooltip(t){e(()=>({tooltip:t}))}}));function Ds(e,t){return nr(this,void 0,void 0,function*(){const{format:n="png",filename:o="chart",scale:r=2,background:i="white"}=t||{},a=e.querySelector("svg");if(!a)throw Error("No SVG element found in the container");const s=a.cloneNode(!0),l=a.getBoundingClientRect();if(s.getAttribute("width")||s.setAttribute("width",l.width+""),s.getAttribute("height")||s.setAttribute("height",l.height+""),s.getAttribute("xmlns")||s.setAttribute("xmlns","http://www.w3.org/2000/svg"),Is(a,s),"svg"===n){const e=(new XMLSerializer).serializeToString(s);Ns(new Blob([e],{type:"image/svg+xml;charset=utf-8"}),o+".svg")}else{const t=l.width*r,n=l.height*r,a=document.createElement("canvas");a.width=t,a.height=n;const c=a.getContext("2d");c.fillStyle=i,c.fillRect(0,0,t,n),c.scale(r,r);const u=e.querySelector("canvas");u&&c.drawImage(u,0,0,l.width,l.height);const d=(new XMLSerializer).serializeToString(s),h=new Blob([d],{type:"image/svg+xml;charset=utf-8"}),g=URL.createObjectURL(h),f=new Image;f.width=l.width,f.height=l.height,yield new Promise((e,t)=>{f.onload=()=>{c.drawImage(f,0,0),a.toBlob(n=>{n?(Ns(n,o+".png"),e()):t(Error("Failed to create PNG blob"))},"image/png"),URL.revokeObjectURL(g)},f.onerror=()=>{URL.revokeObjectURL(g),t(Error("Failed to load SVG image"))},f.src=g})}})}function Is(e,t){var n;const o=e.children,r=t.children,i=window.getComputedStyle(e),a=["fill","stroke","stroke-width","stroke-dasharray","opacity","fill-opacity","stroke-opacity","font-family","font-size","font-weight","text-anchor","dominant-baseline"];for(const e of a){const o=i.getPropertyValue(e);o&&"none"!==o&&""!==o&&(null===(n=t.style)||void 0===n||n.setProperty(e,o))}for(let e=0;Math.min(o.length,r.length)>e;e++)Is(o[e],r[e])}function Ns(e,t){const n=URL.createObjectURL(e),o=document.createElement("a");o.href=n,o.download=t,document.body.appendChild(o),o.click(),document.body.removeChild(o),URL.revokeObjectURL(n)}const Hs=new Set(["tooltip","onObservation","xFormat","yFormat","valueFormat","svgAnnotationRules","tooltipContent","onHover","tickFormatTime","tickFormatValue","edgeSort","sortGroups","centerContent","frameProps","controls","oFormat","rFormat","oSort","pieceStyle","summaryStyle","nodeStyle","edgeStyle","customHoverBehavior","customClickBehavior","customDoubleClickBehavior","onBrush","onTopologyChange","backgroundGraphics","foregroundGraphics","legend"]),Ws=new Set(["data","nodes","edges"]),Fs="function"==typeof structuredClone?structuredClone:e=>JSON.parse(JSON.stringify(e));function $s(e){return nr(this,arguments,void 0,function*(e,t="json"){const n="jsx"===t?zs(e):JSON.stringify(e,null,2);if("undefined"==typeof navigator||!navigator.clipboard)throw Error("Clipboard API not available. copyConfig requires a browser environment.");yield navigator.clipboard.writeText(n)})}function zs(e){const{component:t,props:n}=e,o=["<"+t];for(const[e,t]of Object.entries(n))if("string"==typeof t)o.push(` ${e}="${t}"`);else if("boolean"==typeof t&&!0===t)o.push(" "+e);else if("boolean"==typeof t&&!1===t)o.push(` ${e}={false}`);else if("number"==typeof t)o.push(` ${e}={${t}}`);else{const n=JSON.stringify(t);o.push(80>n.length?` ${e}={${n}}`:` ${e}={${JSON.stringify(t,null,2)}}`)}return o.push("/>"),o.join("\n")}function Gs(){const e=function(){const e=p.useContext(rt);return e?()=>e.setVisible(e=>!e):null}();return e?p.createElement("button",{className:"semiotic-chart-action",onClick:e,title:"Data summary","aria-label":"Toggle data summary",style:Us},p.createElement("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("rect",{x:"1",y:"1",width:"12",height:"3",rx:"0.5"}),p.createElement("rect",{x:"1",y:"6",width:"8",height:"3",rx:"0.5"}),p.createElement("rect",{x:"1",y:"11",width:"5",height:"2",rx:"0.5"}))):null}const Ys={live:{bg:"#22c55e",color:"#fff"},stale:{bg:"#ef4444",color:"#fff"},paused:{bg:"#eab308",color:"#000"},error:{bg:"#ef4444",color:"#fff"},static:{bg:"#6b7280",color:"#fff"}};function qs({height:e}){return p.createElement("div",{role:"status","aria-busy":"true","aria-label":"Loading chart",style:{width:"100%",height:e,background:"linear-gradient(90deg, var(--semiotic-border, #e0e0e0) 25%, var(--semiotic-bg, #f5f5f5) 50%, var(--semiotic-border, #e0e0e0) 75%)",backgroundSize:"200% 100%",animation:"semiotic-skeleton-pulse 1.5s ease-in-out infinite",borderRadius:4}})}function Xs({error:e}){return p.createElement("div",{role:"alert",style:{display:"flex",alignItems:"center",justifyContent:"center",width:"100%",height:"100%",minHeight:120,padding:24,boxSizing:"border-box"}},p.createElement("div",{style:{textAlign:"center",maxWidth:400,fontSize:14,color:"var(--semiotic-text-secondary, #666)",lineHeight:1.5}},e))}const Vs=p.forwardRef(function({title:e,subtitle:t,children:n,width:o="100%",height:r=400,actions:i,chartConfig:a,controls:s,loading:l=!1,error:c,errorBoundary:u=!1,status:d,detailsPanel:h,className:g,style:f},y){const m=p.useRef(null),v=p.useRef(null),[b,x]=p.useState(!1),k=!1!==(null==i?void 0:i.export)&&void 0!==(null==i?void 0:i.export),w=!1!==(null==i?void 0:i.fullscreen)&&void 0!==(null==i?void 0:i.fullscreen),A=!1!==(null==i?void 0:i.copyConfig)&&void 0!==(null==i?void 0:i.copyConfig)&&a,S=!0===(null==i?void 0:i.dataSummary),O="object"==typeof(null==i?void 0:i.export)?i.export:{},E="object"==typeof(null==i?void 0:i.copyConfig)?i.copyConfig.format:"json",M=p.useCallback(e=>nr(this,void 0,void 0,function*(){v.current&&(yield Ds(v.current,Object.assign(Object.assign({},O),e)))}),[O]),j=p.useCallback(()=>{m.current&&(document.fullscreenElement?document.exitFullscreen().catch(()=>{}):m.current.requestFullscreen().catch(()=>{}))},[]),C=p.useCallback(e=>nr(this,void 0,void 0,function*(){a&&(yield $s(a,e||E||"json"))}),[a,E]);p.useEffect(()=>{const e=()=>{x(!!document.fullscreenElement)};return document.addEventListener("fullscreenchange",e),()=>document.removeEventListener("fullscreenchange",e)},[]),p.useImperativeHandle(y,()=>({export:M,toggleFullscreen:j,copyConfig:C,element:m.current}),[M,j,C]);const P=e||t||s||k||w||A||S||d,_=l?p.createElement(qs,{height:r}):c?p.createElement(Xs,{error:c}):u?p.createElement(wo,null,n):n;return L=p.createElement(p.Fragment,null,p.createElement("style",{dangerouslySetInnerHTML:{__html:"@keyframes semiotic-skeleton-pulse {\n 0% { background-position: 200% 0; }\n 100% { background-position: -200% 0; }\n}"}}),p.createElement("div",{ref:m,className:"semiotic-chart-container"+(g?" "+g:""),style:Object.assign(Object.assign({width:o,border:"1px solid var(--semiotic-border, #e0e0e0)",borderRadius:"var(--semiotic-border-radius, 8px)",overflow:"hidden",background:"var(--semiotic-bg, #fff)",fontFamily:"var(--semiotic-font-family, sans-serif)",position:"relative"},b?{display:"flex",flexDirection:"column",width:"100%",height:"100%"}:{}),f)},P&&p.createElement("div",{className:"semiotic-chart-header",style:{padding:"12px 16px",display:"flex",justifyContent:"space-between",alignItems:"flex-start",borderBottom:"1px solid var(--semiotic-border, #e0e0e0)"}},p.createElement("div",{className:"semiotic-chart-title-area"},e&&p.createElement("div",{className:"semiotic-chart-title",style:{fontSize:14,fontWeight:600,color:"var(--semiotic-text, #333)"}},e),t&&p.createElement("div",{className:"semiotic-chart-subtitle",style:{fontSize:12,color:"var(--semiotic-text-secondary, #666)",marginTop:e?2:0}},t)),p.createElement("div",{className:"semiotic-chart-toolbar",style:{display:"flex",alignItems:"center",gap:4}},s,k&&p.createElement("button",{className:"semiotic-chart-action",onClick:()=>M(),title:"Export chart","aria-label":"Export chart",style:Us},p.createElement("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M7 2v8M3.5 7L7 10.5 10.5 7"}),p.createElement("path",{d:"M2 12h10"}))),S&&p.createElement(Gs,null),w&&p.createElement("button",{className:"semiotic-chart-action",onClick:j,title:b?"Exit fullscreen":"Fullscreen","aria-label":b?"Exit fullscreen":"Enter fullscreen",style:Us},p.createElement("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},b?p.createElement(p.Fragment,null,p.createElement("path",{d:"M9 1v4h4"}),p.createElement("path",{d:"M5 13V9H1"}),p.createElement("path",{d:"M13 5H9V1"}),p.createElement("path",{d:"M1 9h4v4"})):p.createElement(p.Fragment,null,p.createElement("path",{d:"M1 5V1h4"}),p.createElement("path",{d:"M13 9v4H9"}),p.createElement("path",{d:"M9 1h4v4"}),p.createElement("path",{d:"M5 13H1V9"})))),A&&p.createElement("button",{className:"semiotic-chart-action",onClick:()=>C(),title:"Copy config","aria-label":"Copy chart configuration",style:Us},p.createElement("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("rect",{x:"5",y:"5",width:"8",height:"8",rx:"1"}),p.createElement("path",{d:"M9 5V2a1 1 0 00-1-1H2a1 1 0 00-1 1v6a1 1 0 001 1h3"}))),d&&p.createElement("div",{className:"semiotic-chart-status","aria-live":"polite","aria-atomic":"true",style:{padding:"2px 8px",borderRadius:4,fontSize:10,fontWeight:700,letterSpacing:"0.05em",textTransform:"uppercase",background:Ys[d].bg,color:Ys[d].color,lineHeight:"18px"}},d))),p.createElement("div",{className:"semiotic-chart-body",ref:v,style:Object.assign({position:"relative",overflow:"hidden",display:"flex",alignItems:"center",justifyContent:"center"},b?{flex:1}:{height:r})},_,h))),S?p.createElement(it,null,L):L;var L}),Us={width:24,height:24,display:"flex",alignItems:"center",justifyContent:"center",border:"none",background:"transparent",cursor:"pointer",borderRadius:4,color:"var(--semiotic-text-secondary, #666)",padding:0};function Ks({children:e,columns:t="auto",minCellWidth:n=300,gap:o=16,className:r,style:i}){const a="number"==typeof t?t:void 0;return p.createElement("div",{className:"semiotic-chart-grid"+(r?" "+r:""),style:Object.assign({display:"grid",gridTemplateColumns:"auto"===t?`repeat(auto-fill, minmax(${n}px, 1fr))`:`repeat(${t}, 1fr)`,gap:o,width:"100%"},i)},p.Children.map(e,e=>p.isValidElement(e)?"primary"!==e.props.emphasis||void 0!==a&&2>a?e:p.createElement("div",{style:{gridColumn:"span 2"}},e):e))}function Qs({children:e,context:t,position:n="right",contextSize:o=250,gap:r=12,className:i,style:a}){const s="left"===n||"right"===n,l="left"===n||"top"===n,c=Object.assign({display:"flex",flexDirection:s?l?"row-reverse":"row":l?"column-reverse":"column",gap:r,width:"100%"},a),u=s?{flex:`0 0 ${o}px`,width:o,minHeight:0}:{flex:`0 0 ${o}px`,height:o,minWidth:0};return p.createElement("div",{className:"semiotic-context-layout"+(i?" "+i:""),style:c},p.createElement("div",{style:{flex:"1 1 0%",minWidth:0,minHeight:0}},e),p.createElement("div",{style:u},t))}Ks.displayName="ChartGrid",Qs.displayName="ContextLayout";function Zs({children:t,position:n="right",size:o=300,trigger:r="click",chartId:i,observation:a,dismissOnEmpty:s=!0,showClose:l=!0,onToggle:c,className:u,style:d}){const[h,g]=e.useState(null),[f,y]=e.useState(null),[m,v]=e.useState(!1),[b,x]=e.useState(!1),k=e.useRef(null),w=e.useRef(),A="click"===r?["click","click-end"]:["hover","hover-end"],{latest:S}=Dn({types:A,chartId:i,limit:1}),O=void 0!==a?a:S;e.useEffect(()=>{if(O)if("click"===O.type||"hover"===O.type){const e=O;g(e.datum),y(e),m||(v(!0),x(!0),clearTimeout(w.current),w.current=setTimeout(()=>x(!1),200))}else!s||"click-end"!==O.type&&"hover-end"!==O.type||E()},[O]),e.useEffect(()=>{null==c||c(m)},[m,c]);const E=e.useCallback(()=>{x(!0),v(!1),clearTimeout(w.current),w.current=setTimeout(()=>{x(!1),g(null),y(null)},200)},[]);if(e.useEffect(()=>()=>clearTimeout(w.current),[]),!h&&!b)return null;const M=h&&f?t(h,f):null;if(null===M&&!b)return null;const j=function(e,t,n,o){const r={position:"absolute",background:"var(--semiotic-bg, #fff)",borderColor:"var(--semiotic-border, #e0e0e0)",borderStyle:"solid",borderWidth:0,boxSizing:"border-box",zIndex:10,display:"flex",flexDirection:"column",transition:o?"transform 200ms ease-out, opacity 200ms ease-out":void 0};return Object.assign(Object.assign({},r),"right"===e?{top:0,right:0,width:t,height:"100%",borderLeftWidth:1,padding:"12px 16px",transform:n?"translateX(0)":`translateX(${t}px)`,opacity:n?1:0}:"bottom"===e?{bottom:0,left:0,width:"100%",height:t,borderTopWidth:1,padding:"12px 16px",transform:n?"translateY(0)":`translateY(${t}px)`,opacity:n?1:0}:{top:"50%",left:"50%",transform:n?"translate(-50%, -50%) scale(1)":"translate(-50%, -50%) scale(0.95)",opacity:n?1:0,width:Math.min(t,400),maxHeight:"80%",borderWidth:1,borderRadius:8,padding:"16px 20px",boxShadow:"0 8px 32px rgba(0,0,0,0.12)"})}(n,o,m,b);return p.createElement("div",{ref:k,className:`semiotic-details-panel semiotic-details-${n}${u?" "+u:""}`,style:Object.assign(Object.assign({},j),d)},l&&p.createElement("button",{className:"semiotic-details-close",onClick:E,"aria-label":"Close details",style:Js},p.createElement("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"},p.createElement("path",{d:"M2 2l8 8M10 2l-8 8"}))),p.createElement("div",{className:"semiotic-details-content",style:{overflow:"auto",flex:1}},M))}const Js={position:"absolute",top:8,right:8,width:20,height:20,display:"flex",alignItems:"center",justifyContent:"center",border:"none",background:"transparent",cursor:"pointer",borderRadius:4,color:"var(--semiotic-text-secondary, #666)",padding:0,zIndex:1};function el(e){return"nominal"===e||"ordinal"===e}function tl(e){return"quantitative"===e||"temporal"===e}Zs.displayName="DetailsPanel";const nl={category10:"category10",category20:"category20",category20b:"category20",category20c:"category20",accent:"accent",dark2:"dark2",paired:"paired",pastel1:"pastel1",pastel2:"pastel2",set1:"set1",set2:"set2",set3:"set3",tableau10:"category10",tableau20:"category20"},ol={linear:"linear","monotone-x":"monotoneX","monotone-y":"monotoneY",monotone:"monotoneX",step:"step","step-after":"stepAfter","step-before":"stepBefore",basis:"basis",cardinal:"cardinal","catmull-rom":"catmullRom"},rl={sum:"sum",mean:"mean",average:"mean",count:"count",min:"min",max:"max",median:"mean"};function il(e,t,n,o,r){var i,a;(null==e?void 0:e.field)&&(n.xAccessor=o?"value":e.field),(null==t?void 0:t.field)&&(n.yAccessor=r?"value":t.field),(null===(i=null==e?void 0:e.axis)||void 0===i?void 0:i.title)&&(n.xLabel=e.axis.title),(null===(a=null==t?void 0:t.axis)||void 0===a?void 0:a.title)&&(n.yLabel=t.axis.title)}function al(e,t,n){const o={component:e,props:t,version:"1",createdAt:(new Date).toISOString()};if(n.length>0){o.warnings=n;for(const e of n)console.warn("[semiotic/fromVegaLite] "+e)}return o}function sl(e,t=.5){const n=/^#?([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i.exec(e);if(!n)return e;const o=Math.round(parseInt(n[1],16)*(1-t)),r=Math.round(parseInt(n[2],16)*(1-t)),i=Math.round(parseInt(n[3],16)*(1-t));return`#${o.toString(16).padStart(2,"0")}${r.toString(16).padStart(2,"0")}${i.toString(16).padStart(2,"0")}`}function ll(e,t=.5){const n=/^#?([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i.exec(e);if(!n)return e;const o=Math.round(parseInt(n[1],16)+(255-parseInt(n[1],16))*t),r=Math.round(parseInt(n[2],16)+(255-parseInt(n[2],16))*t),i=Math.round(parseInt(n[3],16)+(255-parseInt(n[3],16))*t);return`#${o.toString(16).padStart(2,"0")}${r.toString(16).padStart(2,"0")}${i.toString(16).padStart(2,"0")}`}const cl="__forecastSegment";function ul(e,t){return"function"==typeof t?t(e):!!e[t]}const dl=Object.freeze({__proto__:null,SEGMENT_FIELD:cl,buildAnomalyAnnotations:function(e){var t,n,o;return[{type:"anomaly-band",threshold:null!==(t=e.threshold)&&void 0!==t?t:2,showBand:!1!==e.showBand,fill:e.bandColor||"#6366f1",fillOpacity:null!==(n=e.bandOpacity)&&void 0!==n?n:.1,anomalyColor:e.anomalyColor||"#ef4444",anomalyRadius:null!==(o=e.anomalyRadius)&&void 0!==o?o:6,label:e.label}]},buildForecast:function(e,t,n,o,r){return(i=o).isTraining||i.isForecast||i.isAnomaly||i.upperBounds||i.lowerBounds?function(e,t,n,o,r){var i,a,s,l;const{isTraining:c,isForecast:u,isAnomaly:d,upperBounds:h,lowerBounds:g,color:f="#6366f1",bandOpacity:p=.15,anomalyColor:y="#ef4444",anomalyRadius:m=6,label:v}=o,b=e.map(e=>{let t="observed";return u&&ul(e,u)?t="forecast":c&&ul(e,c)&&(t="training"),Object.assign(Object.assign({},e),{[cl]:t})}),x=o._groupBy,k=[];if(x){const e=new Map;for(const t of b){const n=null!==(i=t[x])&&void 0!==i?i:"__default";e.has(n)||e.set(n,[]),e.get(n).push(t)}const t=[];for(const[,n]of e)for(let e=0;n.length-1>e;e++)n[e][cl]!==n[e+1][cl]&&(t.push(Object.assign(Object.assign({},n[e+1]),{[cl]:n[e][cl]})),t.push(Object.assign(Object.assign({},n[e]),{[cl]:n[e+1][cl]})));k.push(...b,...t)}else for(let e=0;b.length>e;e++)k.push(b[e]),b.length-1>e&&b[e][cl]!==b[e+1][cl]&&(k.push(Object.assign(Object.assign({},b[e+1]),{[cl]:b[e][cl]})),k.push(Object.assign(Object.assign({},b[e]),{[cl]:b[e+1][cl]})));if(o.trainUnderline){const e=[];for(const t of k)"training"===t[cl]&&e.push(Object.assign(Object.assign({},t),{[cl]:"training-base"}));k.unshift(...e)}const w=[];if(h&&g){const e="string"==typeof h?h:"__envUpper",t="string"==typeof g?g:"__envLower";if("function"==typeof h||"function"==typeof g)for(const n of k)"function"==typeof h&&(n[e]=h(n)),"function"==typeof g&&(n[t]=g(n));w.push({type:"envelope",upperAccessor:e,lowerAccessor:t,fill:f,fillOpacity:p,label:v})}if(d){const e=o.anomalyStyle,t={type:"highlight",filter:e=>ul(e,d)};e?(t.style=e,t.r=m):"function"==typeof y?(t.style=e=>{const t=y(e);return{stroke:t,strokeWidth:1.5,fill:t,fillOpacity:.7}},t.r=m):(t.color=y,t.r=m,t.style={stroke:y,strokeWidth:1.5,fill:y,fillOpacity:.7}),w.push(t)}return r&&w.push({type:"anomaly-band",threshold:null!==(a=r.threshold)&&void 0!==a?a:2,showBand:!1!==r.showBand,fill:r.bandColor||"#6366f1",fillOpacity:null!==(s=r.bandOpacity)&&void 0!==s?s:.1,anomalyColor:r.anomalyColor||"#ef4444",anomalyRadius:null!==(l=r.anomalyRadius)&&void 0!==l?l:6,label:r.label}),{processedData:k,annotations:w}}(e,0,0,o,r):function(e,t,n,o,r){var i,a,s;const{trainEnd:l,steps:c=10,confidence:u=.95,color:d="#6366f1",bandOpacity:h=.15,label:g}=o;if(null==l)return{processedData:e,annotations:[]};const f=[],p=[];for(const n of e)n[t]>l?p.push(Object.assign(Object.assign({},n),{[cl]:"observed"})):f.push(Object.assign(Object.assign({},n),{[cl]:"training"}));const y=f.map(e=>[e[t],e[n]]).filter(e=>null!=e[0]&&null!=e[1]&&isFinite(e[0])&&isFinite(e[1])).sort((e,t)=>e[0]-t[0]),m=[],v=[];if(y.length>=3){const o=y.length;let r=0,i=0,a=0,s=0;for(const[e,t]of y)r+=e,i+=t,a+=e*e,s+=e*t;const l=o*a-r*r;if(Math.abs(l)>1e-12){const a=(o*s-r*i)/l,f=(i-a*r)/o,p=e=>f+a*e,b=y.map(([e,t])=>t-p(e)).reduce((e,t)=>e+t*t,0),x=Math.sqrt(b/Math.max(o-2,1)),k=y.reduce((e,t)=>e+t[0],0)/o,w=y.reduce((e,t)=>e+Math.pow(t[0]-k,2),0),A=.99>u?.95>u?.9>u?1:1.645:1.96:2.576,S=e.map(e=>e[t]).filter(e=>null!=e&&isFinite(e)),O=Math.max(...S),E=y.length>1?(y[o-1][0]-y[0][0])/(o-1):1;for(let e=1;c>=e;e++){const r=O+e*E,i=p(r),a=x*Math.sqrt(1+1/o+(w>0?Math.pow(r-k,2)/w:0))*A;v.push({[t]:r,[n]:i,[cl]:"forecast",__forecastUpper:i+a,__forecastLower:i-a})}m.push({type:"envelope",upperAccessor:"__forecastUpper",lowerAccessor:"__forecastLower",fill:d,fillOpacity:h,label:g})}}m.push({type:"x-threshold",x:l,color:"#94a3b8",strokeWidth:1,strokeDasharray:"4,2",label:"Train / Forecast"}),r&&m.push({type:"anomaly-band",threshold:null!==(i=r.threshold)&&void 0!==i?i:2,showBand:!1!==r.showBand,fill:r.bandColor||"#6366f1",fillOpacity:null!==(a=r.bandOpacity)&&void 0!==a?a:.1,anomalyColor:r.anomalyColor||"#ef4444",anomalyRadius:null!==(s=r.anomalyRadius)&&void 0!==s?s:6,label:r.label});const b=[];if(b.push(...f),f.length>0&&p.length>0&&b.push(Object.assign(Object.assign({},f[f.length-1]),{[cl]:"observed"})),b.push(...p),v.length>0){const e=p.length>0?p[p.length-1]:f[f.length-1];e&&b.push(Object.assign(Object.assign({},e),{[cl]:"forecast"})),b.push(...v)}return{processedData:b,annotations:m}}(e,t,n,o,r);var i},createSegmentLineStyle:function(e,t){var n,o;const r=null!==(n=t.trainDasharray)&&void 0!==n?n:"8,4",i=null!==(o=t.forecastDasharray)&&void 0!==o?o:"4,4",a=t.color||"#6366f1",s=t.trainOpacity,l=t.forecastOpacity,c=t.trainStroke,u=t.trainLinecap,d=t.trainUnderline;return t=>{const n=e(t),o=t[cl];if("training"===o){let e=n.stroke;return"darken"===c?e=sl(n.stroke||"#666",.5):c&&(e=c),Object.assign(Object.assign(Object.assign(Object.assign({},n),{stroke:e,strokeDasharray:r}),u&&{strokeLinecap:u}),null!=s&&{strokeOpacity:s})}if("training-base"===o){let e=n.stroke||"#666";return"lighten"===d&&(e=ll(e,.4)),Object.assign(Object.assign({},n),{stroke:e,strokeDasharray:void 0})}return"forecast"===o?Object.assign(Object.assign(Object.assign({},n),{stroke:a,strokeDasharray:i}),null!=l&&{strokeOpacity:l}):n}},darkenColor:sl,lightenColor:ll});exports.AreaChart=sr,exports.BarChart=li,exports.BoxPlot=pi,exports.BubbleChart=fr,exports.CategoryColorProvider=Sn,exports.ChartContainer=Vs,exports.ChartGrid=Ks,exports.ChordDiagram=ws,exports.CirclePack=Es,exports.ConnectedScatterplot=gr,exports.ContextLayout=Qs,exports.DetailsPanel=Zs,exports.DonutChart=ki,exports.DotPlot=vi,exports.ForceDirectedGraph=ms,exports.FunnelChart=wi,exports.GroupedBarChart=di,exports.Heatmap=pr,exports.Histogram=yi,exports.LikertChart=Ci,exports.LineChart=ar,exports.LinkedCharts=Wn,exports.MultiAxisLineChart=Cr,exports.MultiLineTooltip=function(e={}){const{fields:t=[],title:n,format:o,style:r={},className:i="",showLabels:a=!0,separator:s=": "}=e;return e=>{if(!e||"object"!=typeof e)return null;const l=[];if(n){const t=uo(e,n);l.push({value:ho(t,o)})}t&&Array.isArray(t)&&t.length>0?t.forEach(t=>{let n,r,i;"string"==typeof t?(n=t,r=t,i=o):(n=t.label,r=t.accessor||t.key||"",i=t.format||o);const s=ho(uo(e,r),i);l.push({label:a?n:void 0,value:s})}):Object.keys(e).filter(e=>!e.startsWith("_")&&"data"!==e).forEach(t=>{l.push({label:a?t:void 0,value:ho(e[t],o)})});const c=Object.assign(Object.assign({},co),r);return Array.isArray(l)&&0!==l.length?p.createElement("div",{className:("semiotic-tooltip semiotic-tooltip-multiline "+i).trim(),style:c},l.map((e,t)=>p.createElement("div",{key:t,style:{marginBottom:l.length-1>t?"4px":0}},e.label&&p.createElement("strong",null,e.label,s),e.value))):null}},exports.OrbitDiagram=js,exports.PieChart=xi,exports.QuadrantChart=Sr,exports.RealtimeHeatmap=Rs,exports.RealtimeHistogram=_s,exports.RealtimeLineChart=Cs,exports.RealtimeSwarmChart=Ls,exports.RealtimeWaterfallChart=Ts,exports.RidgelinePlot=bi,exports.SankeyDiagram=As,exports.Scatterplot=dr,exports.ScatterplotMatrix=Ar,exports.StackedAreaChart=cr,exports.StackedBarChart=ui,exports.SwarmPlot=gi,exports.ThemeProvider=function({theme:e,children:t}){const n="string"==typeof e&&Yn(e)?e:void 0;return p.createElement(Tt,null,p.createElement(qn.Provider,{value:n},p.createElement(Xn,{theme:e}),p.createElement(Vn,null,t)))},exports.TooltipProvider=Bs,exports.TreeDiagram=Ss,exports.Treemap=Os,exports.ViolinPlot=mi,exports.configToJSX=zs,exports.copyConfig=$s,exports.deserializeSelections=function(e){const t=new Map;for(const[n,o]of Object.entries(e)){const e=new Map;for(const t of o.clauses){const n={};for(const[e,o]of Object.entries(t.fields))n[e]="point"===o.type?{type:"point",values:new Set(o.values)}:{type:"interval",range:o.range};e.set(t.clientId,{clientId:t.clientId,type:t.type,fields:n})}t.set(n,{name:o.name,resolution:o.resolution,clauses:e})}return t},exports.diagnoseConfig=qo,exports.exportChart=Ds,exports.fromConfig=function(e){if(!e.component||!e.props)throw Error("Invalid chart config: missing component or props");if(!Bo[e.component])throw Error(`Unknown component "${e.component}". This config may require a newer version of semiotic.`);return{componentName:e.component,props:Fs(e.props)}},exports.fromURL=function(e){const t=new URLSearchParams(e.includes("?")?e.split("?")[1]:e).get("sc");if(!t)throw Error("No chart config found in URL (missing 'sc' parameter)");const n=t.replace(/-/g,"+").replace(/_/g,"/"),o=decodeURIComponent(escape(atob(n)));return JSON.parse(o)},exports.fromVegaLite=function(e){var t,n,o,r,i,a,s,l,c,u,d,h,g,f;const p=[],{type:y,markProps:m}=function(e){if("string"==typeof e)return{type:e,markProps:{}};const{type:t}=e;return{type:t,markProps:function(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&0>t.indexOf(o)&&(n[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(o=Object.getOwnPropertySymbols(e);o.length>r;r++)0>t.indexOf(o[r])&&Object.prototype.propertyIsEnumerable.call(e,o[r])&&(n[o[r]]=e[o[r]])}return n}(e,["type"])}}(e.mark),v=e.encoding||{},b=v.x,x=v.y,k=v.color,w=v.size,A=v.theta,S=v.opacity;let O;(null===(t=e.data)||void 0===t?void 0:t.values)?O=e.data.values:(null===(n=e.data)||void 0===n?void 0:n.url)&&p.push("data.url is not supported — only inline data.values can be translated. Provide data manually."),e.transform&&e.transform.length>0&&p.push("Vega-Lite transforms are not supported. Pre-transform your data before passing to fromVegaLite()."),e.layer&&p.push('Layered specs ("layer") are not supported. Only single-mark specs can be translated.'),(e.hconcat||e.vconcat||e.concat)&&p.push('Concatenated views ("hconcat"/"vconcat"/"concat") are not supported. Translate each sub-spec individually.'),(e.facet||e.encoding&&e.encoding.facet||e.encoding&&(e.encoding.row||e.encoding.column))&&p.push("Faceted views are not supported. Use Semiotic's LinkedCharts or render multiple charts manually."),e.repeat&&p.push('Repeated views ("repeat") are not supported. Translate each field combination individually.'),(e.params||e.selection)&&p.push("Selections/params are not supported. Use Semiotic's LinkedCharts and selection props for interactivity.");const E={};e.width&&(E.width=e.width),e.height&&(E.height=e.height);const M=function(e){if(e)return"string"==typeof e?e:e.text}(e.title);if(M&&(E.title=M),(null==k?void 0:k.field)&&(E.colorBy=k.field,null===(o=k.scale)||void 0===o?void 0:o.scheme)){const e=nl[k.scale.scheme];e&&(E.colorScheme=e)}void 0!==(null==S?void 0:S.value)&&(E.pointOpacity=S.value);const j=null==b?void 0:b.aggregate,C=null==x?void 0:x.aggregate;if(O&&(j||C)){const e=C?x:b,t=C?b:x,n=rl[e.aggregate];if(n&&(null==t?void 0:t.field)&&e.field)O=function(e,t){const{groupBy:n,value:o,agg:r="sum"}=t,i=new Map;for(const t of e){const e=t[n]+"";i.has(e)||i.set(e,[]),i.get(e).push(Number(t[o]))}const a=[];for(const[e,t]of i){let o;switch(r){case"count":o=t.length;break;case"mean":o=t.reduce((e,t)=>e+t,0)/t.length;break;case"min":o=Math.min(...t);break;case"max":o=Math.max(...t);break;default:o=t.reduce((e,t)=>e+t,0)}a.push({[n]:e,value:o})}return a}(O,{groupBy:t.field,value:e.field,agg:n});else if(("count"===n||"count"===e.aggregate)&&(null==t?void 0:t.field)&&O){const e=new Map;for(const n of O){const o=n[t.field]+"";e.set(o,(e.get(o)||0)+1)}O=Array.from(e,([e,n])=>({[t.field]:e,value:n}))}}if((null==b?void 0:b.bin)||(null==x?void 0:x.bin)){const e="Histogram";O&&(E.data=O),(null==b?void 0:b.bin)?(E.valueAccessor=b.field,(null==x?void 0:x.field)&&(E.categoryAccessor=x.field),(null===(r=b.axis)||void 0===r?void 0:r.title)&&(E.valueLabel=b.axis.title)):(null==x?void 0:x.bin)&&(E.valueAccessor=x.field,(null==b?void 0:b.field)&&(E.categoryAccessor=b.field),(null===(i=x.axis)||void 0===i?void 0:i.title)&&(E.valueLabel=x.axis.title));const t="object"==typeof((null==b?void 0:b.bin)||(null==x?void 0:x.bin))?(null===(a=null==b?void 0:b.bin)||void 0===a?void 0:a.maxbins)||(null===(s=null==x?void 0:x.bin)||void 0===s?void 0:s.maxbins):void 0;return t&&(E.bins=t),al(e,E,p)}let P;switch(y){case"bar":P=function(e,t,n,o,r,i,a){var s,l,c,u,d,h;let g;return(null==n?void 0:n.field)&&!1!==(null==e?void 0:e.stack)&&!1!==(null==t?void 0:t.stack)&&null!==(null==e?void 0:e.stack)&&null!==(null==t?void 0:t.stack)?(g="StackedBarChart",o.stackBy=n.field):g="BarChart",el(null==e?void 0:e.type)&&tl(null==t?void 0:t.type)?(o.categoryAccessor=e.field,o.valueAccessor=a?"value":t.field,(null===(s=null==e?void 0:e.axis)||void 0===s?void 0:s.title)&&(o.categoryLabel=e.axis.title),(null===(l=null==t?void 0:t.axis)||void 0===l?void 0:l.title)&&(o.valueLabel=t.axis.title)):tl(null==e?void 0:e.type)&&el(null==t?void 0:t.type)?(o.categoryAccessor=t.field,o.valueAccessor=i?"value":e.field,o.orientation="horizontal",(null===(c=null==t?void 0:t.axis)||void 0===c?void 0:c.title)&&(o.categoryLabel=t.axis.title),(null===(u=null==e?void 0:e.axis)||void 0===u?void 0:u.title)&&(o.valueLabel=e.axis.title)):((null==e?void 0:e.field)&&(o.categoryAccessor=e.field),(null==t?void 0:t.field)&&(o.valueAccessor=a?"value":t.field),(null===(d=null==e?void 0:e.axis)||void 0===d?void 0:d.title)&&(o.categoryLabel=e.axis.title),(null===(h=null==t?void 0:t.axis)||void 0===h?void 0:h.title)&&(o.valueLabel=t.axis.title)),r&&(o.data=r),g}(b,x,k,E,O,j,C);break;case"line":if(P="LineChart",il(b,x,E,j,C),(null==k?void 0:k.field)&&(E.lineBy=k.field),m.interpolate){const e=ol[m.interpolate];e&&(E.curve=e)}!0===m.point&&(E.showPoints=!0),O&&(E.data=O);break;case"area":if((null==k?void 0:k.field)?(P="StackedAreaChart",E.areaBy=k.field):P="AreaChart",il(b,x,E,j,C),m.interpolate){const e=ol[m.interpolate];e&&(E.curve=e)}void 0!==m.opacity&&(E.areaOpacity=m.opacity),O&&(E.data=O);break;case"point":case"circle":case"square":(null==w?void 0:w.field)?(P="BubbleChart",E.sizeBy=w.field,(null===(l=w.scale)||void 0===l?void 0:l.range)&&(E.sizeRange=w.scale.range)):P="Scatterplot",il(b,x,E,j,C),O&&(E.data=O);break;case"rect":P="Heatmap",(null==b?void 0:b.field)&&(E.xAccessor=b.field),(null==x?void 0:x.field)&&(E.yAccessor=x.field),(null==k?void 0:k.field)&&(E.valueAccessor=k.field,delete E.colorBy),(null===(c=null==b?void 0:b.axis)||void 0===c?void 0:c.title)&&(E.xLabel=b.axis.title),(null===(u=null==x?void 0:x.axis)||void 0===u?void 0:u.title)&&(E.yLabel=x.axis.title),O&&(E.data=O);break;case"arc":m.innerRadius&&m.innerRadius>0?(P="DonutChart",E.innerRadius=m.innerRadius):P="PieChart",(null==A?void 0:A.field)?E.valueAccessor=A.field:(null==x?void 0:x.field)&&(E.valueAccessor=C?"value":x.field),(null==k?void 0:k.field)&&(E.categoryAccessor=k.field),(null==b?void 0:b.field)&&!(null==A?void 0:A.field)&&(E.categoryAccessor=b.field),O&&(E.data=O);break;case"tick":P="DotPlot",el(null==b?void 0:b.type)?(E.categoryAccessor=b.field,(null==x?void 0:x.field)&&(E.valueAccessor=C?"value":x.field),(null===(d=null==b?void 0:b.axis)||void 0===d?void 0:d.title)&&(E.categoryLabel=b.axis.title),(null===(h=null==x?void 0:x.axis)||void 0===h?void 0:h.title)&&(E.valueLabel=x.axis.title)):el(null==x?void 0:x.type)?(E.categoryAccessor=x.field,(null==b?void 0:b.field)&&(E.valueAccessor=j?"value":b.field),E.orientation="horizontal",(null===(g=null==x?void 0:x.axis)||void 0===g?void 0:g.title)&&(E.categoryLabel=x.axis.title),(null===(f=null==b?void 0:b.axis)||void 0===f?void 0:f.title)&&(E.valueLabel=b.axis.title)):((null==b?void 0:b.field)&&(E.categoryAccessor=b.field),(null==x?void 0:x.field)&&(E.valueAccessor=C?"value":x.field)),O&&(E.data=O);break;default:p.push(`Unsupported mark type "${y}". Defaulting to Scatterplot.`),P="Scatterplot",il(b,x,E,j,C),O&&(E.data=O)}return al(P,E,p)},exports.serializeSelections=function(e){const t={};for(const[n,o]of e){const e=[];for(const[,t]of o.clauses){const n={};for(const[e,o]of Object.entries(t.fields))n[e]="point"===o.type?{type:"point",values:Array.from(o.values)}:{type:"interval",range:o.range};e.push({clientId:t.clientId,type:t.type,fields:n})}t[n]={name:o.name,resolution:o.resolution,clauses:e}}return t},exports.toConfig=function(e,t,n){if(!Bo[e])throw Error(`Unknown component "${e}". Known components: ${Object.keys(Bo).join(", ")}`);const o=!1!==(null==n?void 0:n.includeData),r={};for(const[e,n]of Object.entries(t))null!=n&&(Hs.has(e)||!o&&Ws.has(e)||"function"!=typeof n&&((null==n?void 0:n.$$typeof)||(r[e]=Fs(n))));return Object.assign({component:e,props:r,version:"1",createdAt:(new Date).toISOString()},(null==n?void 0:n.selections)?{selections:n.selections}:{})},exports.toURL=function(e){const t=JSON.stringify(e);return"sc="+btoa(unescape(encodeURIComponent(t))).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")},exports.useBrushSelection=Bn,exports.useCategoryColors=On,exports.useChartObserver=Dn,exports.useFilteredData=function(t,n,o){const r=Pn(e=>e.selections.get(n));return e.useMemo(()=>{if(!r||0===r.clauses.size)return t;const e=Mn(r,o);return t.filter(e)},[t,r,o])},exports.useLinkedHover=Rn,exports.useSelection=Tn,exports.useTheme=Un,exports.validateProps=Io;
1
+ "use strict";const e=require("react/jsx-runtime"),t=require("react"),o=require("d3-selection"),n=require("d3-brush"),i=require("d3-scale"),r=require("d3-quadtree"),s=require("d3-scale-chromatic"),a=require("d3-array"),l=require("d3-hierarchy"),c=require("d3-shape"),u=require("regression"),d=require("d3-interpolate"),h=require("d3-force"),g=require("d3-chord");function f(e){return e&&e.__esModule?e:{default:e}}function p(e){if(e&&e.__esModule)return e;const t=Object.create(null);if(e)for(const o in e)if("default"!==o){const n=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(t,o,n.get?n:{enumerable:!0,get:function(){return e[o]}})}return t.default=e,Object.freeze(t)}const y=p(t),v=f(u);function m(e,t){let o=0,n=t.length-1;for(;n>o;){const i=o+n+1>>1;t[i]>e?n=i-1:o=i}return t[o]}function b(e,t){let o=0,n=t.length-1;for(;n>o;){const i=o+n>>1;e>t[i]?o=i+1:n=i}return t[o]}function x({width:i,height:r,totalWidth:s,totalHeight:a,margin:l,dimension:c,scales:u,onBrush:d,binSize:h,snap:g,binBoundaries:f,snapDuring:p,streaming:y}){const v=t.useRef(null),x=t.useRef(null),k=t.useRef(d);k.current=d;const w=t.useRef(u);w.current=u;const j=t.useMemo(()=>f?[...f].sort((e,t)=>e-t):void 0,[f]),A=t.useRef(j);A.current=j;const S=t.useRef(!1),O=t.useRef(null);return t.useEffect(()=>{if(!v.current)return;const e=o.select(v.current).select(".brush-g"),t="x"===c?n.brushX():"y"===c?n.brushY():n.brush();return t.extent([[0,0],[i,r]]),t.on("brush end",o=>{if(S.current)return;const n=w.current;if(!n)return;if(!o.selection)return O.current=null,void k.current(null);let s,a;if("x"===c){const[e,t]=o.selection;s=[n.x.invert(e),n.x.invert(t)],a=[n.y.invert(r),n.y.invert(0)]}else if("y"===c){const[e,t]=o.selection;s=[n.x.invert(0),n.x.invert(i)],a=[n.y.invert(t),n.y.invert(e)]}else{const[[e,t],[i,r]]=o.selection;s=[n.x.invert(e),n.x.invert(i)],a=[n.y.invert(r),n.y.invert(t)]}if("bin"===g&&"y"!==c&&("end"===o.type||"brush"===o.type&&p)){const i=A.current;i&&i.length>0?s=function(e,t){return 0===t.length?e:[m(e[0],t),b(e[1],t)]}(s,i):h&&h>0&&(s=[Math.floor(s[0]/h)*h,Math.ceil(s[1]/h)*h]);const r=n.x(s[0]),a=n.x(s[1]);if(S.current=!0,"x"===c)e.call(t.move,[r,a]);else if("xy"===c){const n=o.selection;e.call(t.move,[[r,n[0][1]],[a,n[1][1]]])}S.current=!1}const l={x:s,y:a};O.current=l,k.current(l)}),e.call(t),x.current=t,e.select(".selection").attr("fill","steelblue").attr("fill-opacity",.15).attr("stroke","steelblue").attr("stroke-width",1),()=>{t.on("brush end",null),x.current=null}},[i,r,c,g,h,p]),t.useEffect(()=>{if(!(y&&u&&x.current&&O.current))return;if(!v.current)return;if("y"===c)return;const e=O.current,t=u.x.domain()[0],n=o.select(v.current).select(".brush-g");if(t>=e.x[1])return S.current=!0,n.call(x.current.move,null),S.current=!1,O.current=null,void k.current(null);let i=e.x[0],r=!1;if(t>e.x[0]){if(i=t,"bin"===g){const e=A.current;e&&e.length>0?i=b(t,e):h&&h>0&&(i=Math.ceil(t/h)*h)}if(i>=e.x[1])return S.current=!0,n.call(x.current.move,null),S.current=!1,O.current=null,void k.current(null);r=!0}const s=u.x(i),a=u.x(e.x[1]);if(S.current=!0,"x"===c)n.call(x.current.move,[s,a]);else{const t=u.y(e.y[1]),o=u.y(e.y[0]);n.call(x.current.move,[[s,t],[a,o]])}if(S.current=!1,r){const t={x:[i,e.x[1]],y:e.y};O.current=t,k.current(t)}},[u,y,c,g,h]),e.jsx("svg",{ref:v,width:s,height:a,style:{position:"absolute",top:0,left:0,pointerEvents:"all"},children:e.jsx("g",{className:"brush-g",transform:`translate(${l.left},${l.top})`})})}class k{constructor(e,t){var o,n;this.lastBoundedData=null,this.chunkTimer=0,this.pushBuffer=[],this.flushScheduled=!1,this.callback=e,this.chunkThreshold=null!==(o=null==t?void 0:t.chunkThreshold)&&void 0!==o?o:5e3,this.chunkSize=null!==(n=null==t?void 0:t.chunkSize)&&void 0!==n?n:5e3}updateChunkOptions(e){null!=e.chunkThreshold&&(this.chunkThreshold=e.chunkThreshold),null!=e.chunkSize&&(this.chunkSize=e.chunkSize)}clearLastData(){this.lastBoundedData=null,this.pushBuffer=[],this.flushScheduled=!1,this.chunkTimer&&(cancelAnimationFrame(this.chunkTimer),this.chunkTimer=0)}setBoundedData(e){if(this.lastBoundedData=e,this.chunkTimer&&(cancelAnimationFrame(this.chunkTimer),this.chunkTimer=0),this.chunkThreshold>=e.length)return void this.callback({inserts:e,bounded:!0});this.callback({inserts:e.slice(0,this.chunkSize),bounded:!0,totalSize:e.length});let t=this.chunkSize;const o=()=>{if(t>=e.length)return void(this.chunkTimer=0);if(e!==this.lastBoundedData)return void(this.chunkTimer=0);const n=Math.min(t+this.chunkSize,e.length);this.callback({inserts:e.slice(t,n),bounded:!1}),t=n,this.chunkTimer=e.length>t?requestAnimationFrame(o):0};this.chunkTimer=requestAnimationFrame(o)}setReplacementData(e){if(this.lastBoundedData=e,this.chunkTimer&&(cancelAnimationFrame(this.chunkTimer),this.chunkTimer=0),this.pushBuffer=[],this.flushScheduled=!1,this.chunkThreshold>=e.length)return void this.callback({inserts:e,bounded:!0,preserveCategoryOrder:!0});this.callback({inserts:e.slice(0,this.chunkSize),bounded:!0,preserveCategoryOrder:!0,totalSize:e.length});let t=this.chunkSize;const o=()=>{if(t>=e.length)return void(this.chunkTimer=0);if(e!==this.lastBoundedData)return void(this.chunkTimer=0);const n=Math.min(t+this.chunkSize,e.length);this.callback({inserts:e.slice(t,n),bounded:!1}),t=n,this.chunkTimer=e.length>t?requestAnimationFrame(o):0};this.chunkTimer=requestAnimationFrame(o)}flushPushBuffer(){if(this.flushScheduled=!1,0===this.pushBuffer.length)return;const e=this.pushBuffer;this.pushBuffer=[],this.callback({inserts:e,bounded:!1})}scheduleFlush(){this.flushScheduled||(this.flushScheduled=!0,queueMicrotask(()=>this.flushPushBuffer()))}push(e){this.pushBuffer.push(e),this.scheduleFlush()}pushMany(e){if(0!==e.length){for(let t=0;e.length>t;t++)this.pushBuffer.push(e[t]);this.scheduleFlush()}}flush(){this.flushPushBuffer()}clear(){this.chunkTimer&&(cancelAnimationFrame(this.chunkTimer),this.chunkTimer=0),this.lastBoundedData=null,this.pushBuffer=[],this.flushScheduled=!1}}function w(o){const n=t.createContext(null),i=j(o);return[function({children:i}){const r=t.useMemo(()=>j(o),[]);return e.jsx(n.Provider,{value:r,children:i})},e=>{var o;const r=null!==(o=t.useContext(n))&&void 0!==o?o:i,s=t.useRef(e);s.current=e;const a=t.useCallback(()=>s.current(r.getState()),[r]),l=t.useCallback(()=>s.current(r.getState()),[r]);return t.useSyncExternalStore(r.subscribe,a,l)}]}function j(e){const t=new EventTarget;let o=e(function(e){o=Object.assign(Object.assign({},o),e(o)),t.dispatchEvent(new CustomEvent("update"))});return{getState:()=>o,subscribe:function(e){return t.addEventListener("update",e),()=>t.removeEventListener("update",e)}}}function A(e){if(!(null==e?void 0:e.colors))return;const t=e.colors;return{primary:t.primary,secondary:t.secondary||t.primary,surface:t.surface||t.background,success:t.success,danger:t.danger,warning:t.warning,error:t.error,info:t.info,text:t.text,textSecondary:t.textSecondary,border:t.border,grid:t.grid}}function S(e){if(!e.accessibility)return e;let t=e;if(e.accessibility.colorBlindSafe&&(t=Object.assign(Object.assign({},t),{colors:Object.assign(Object.assign({},t.colors),{categorical:O})})),e.accessibility.highContrast){const e="dark"===t.mode;t=Object.assign(Object.assign({},t),{colors:Object.assign(Object.assign({},t.colors),{text:e?"#ffffff":"#000000",textSecondary:e?"#cccccc":"#333333",grid:e?"#666666":"#999999",border:e?"#888888":"#000000"})})}return t}const O=["#0072B2","#E69F00","#009E73","#CC79A7","#56B4E9","#D55E00","#F0E442","#000000"],M={mode:"light",colors:{primary:"#00a2ce",secondary:"#6c757d",categorical:["#1f77b4","#ff7f0e","#2ca02c","#d62728","#9467bd","#8c564b","#e377c2","#7f7f7f","#bcbd22","#17becf"],sequential:"blues",diverging:"RdBu",background:"transparent",surface:"#ffffff",text:"#333",textSecondary:"#666",grid:"#e0e0e0",border:"#ccc",selection:"#00a2ce",selectionOpacity:.15,success:"#2ca02c",danger:"#d62728",warning:"#f0ad4e",error:"#b4181b",info:"#00a2ce"},typography:{fontFamily:"sans-serif",titleSize:16,labelSize:12,tickSize:10}},C={mode:"dark",colors:{primary:"#4fc3f7",secondary:"#90a4ae",categorical:["#4fc3f7","#ffb74d","#81c784","#ef5350","#ba68c8","#a1887f","#f06292","#90a4ae","#dce775","#4dd0e1"],sequential:"blues",diverging:"RdBu",background:"#1a1a2e",surface:"#252540",text:"#e0e0e0",textSecondary:"#aaa",grid:"#333",border:"#555",selection:"#4fc3f7",selectionOpacity:.15,success:"#81c784",danger:"#ef5350",warning:"#ffb74d",error:"#d84848",info:"#4fc3f7"},typography:{fontFamily:"sans-serif",titleSize:16,labelSize:12,tickSize:10}},_={mode:"light",colors:{primary:"#0000cc",secondary:"#333333",categorical:O,sequential:"blues",diverging:"RdBu",background:"#ffffff",surface:"#ffffff",text:"#000000",textSecondary:"#333333",grid:"#999999",border:"#000000",focus:"#0000cc",selection:"#0000cc",selectionOpacity:.1,success:"#006400",danger:"#cc0000",warning:"#b15a00",error:"#8b0000",info:"#0000cc"},typography:{fontFamily:"system-ui, sans-serif",titleSize:18,labelSize:14,tickSize:12},tooltip:{background:"#000000",text:"#ffffff",borderRadius:"4px",fontSize:"14px",shadow:"0 2px 8px rgba(0, 0, 0, 0.3)"},borderRadius:"4px"},[P,L]=w(e=>({theme:M,setTheme(t){e(e=>{if("light"===t)return{theme:M};if("dark"===t)return{theme:C};if("high-contrast"===t)return{theme:_};if(t.mode&&"auto"!==t.mode){const e="dark"===t.mode?C:M;return{theme:S(Object.assign(Object.assign(Object.assign({},e),t),{colors:Object.assign(Object.assign({},e.colors),t.colors||{}),typography:Object.assign(Object.assign({},e.typography),t.typography||{})}))}}return{theme:S(Object.assign(Object.assign(Object.assign({},e.theme),t),{colors:Object.assign(Object.assign({},e.theme.colors),t.colors||{}),typography:Object.assign(Object.assign({},e.theme.typography),t.typography||{})}))}})}}));class T{constructor(e){if(this._capacity=e,this.head=0,this._size=0,1>e)throw Error("RingBuffer capacity must be at least 1");this.buffer=Array(e)}push(e){let t;return this._size===this._capacity?t=this.buffer[this.head]:this._size++,this.buffer[this.head]=e,this.head=(this.head+1)%this._capacity,t}pushMany(e){const t=[];for(const o of e){const e=this.push(o);void 0!==e&&t.push(e)}return t}get(e){if(e>=0&&this._size>e)return this.buffer[(this.head-this._size+e+this._capacity)%this._capacity]}peek(){if(0!==this._size)return this.buffer[(this.head-1+this._capacity)%this._capacity]}peekOldest(){if(0!==this._size)return this.buffer[(this.head-this._size+this._capacity)%this._capacity]}[Symbol.iterator](){let e=0;return{next:()=>this._size>e?{done:!1,value:this.get(e++)}:{done:!0,value:void 0}}}forEach(e){const t=(this.head-this._size+this._capacity)%this._capacity;for(let o=0;this._size>o;o++)e(this.buffer[(t+o)%this._capacity],o)}toArray(){const e=Array(this._size),t=(this.head-this._size+this._capacity)%this._capacity;for(let o=0;this._size>o;o++)e[o]=this.buffer[(t+o)%this._capacity];return e}resize(e){if(1>e)throw Error("RingBuffer capacity must be at least 1");const t=this.toArray(),o=[];for(;t.length>e;)o.push(t.shift());this._capacity=e,this.buffer=Array(e),this.head=0,this._size=0;for(const e of t)this.push(e);return o}update(e,t){const o=[],n=(this.head-this._size+this._capacity)%this._capacity;for(let i=0;this._size>i;i++){const r=(n+i)%this._capacity,s=this.buffer[r];if(e(s)){let e;e="object"!=typeof s||null===s?s:Array.isArray(s)?[...s]:Object.assign({},s),o.push(e),this.buffer[r]=t(s)}}return o}remove(e){const t=[],o=[];if(this.forEach(n=>{e(n)?o.push(n):t.push(n)}),0===o.length)return o;this.buffer=Array(this._capacity),this.head=0,this._size=0;for(const e of t)this.push(e);return o}clear(){this.buffer=Array(this._capacity),this.head=0,this._size=0}get size(){return this._size}get capacity(){return this._capacity}get full(){return this._size===this._capacity}}class R{constructor(){this._min=1/0,this._max=-1/0,this._dirty=!1}push(e){Number.isNaN(e)||(this._min>e&&(this._min=e),e>this._max&&(this._max=e))}evict(e){e!==this._min&&e!==this._max||(this._dirty=!0)}recalculate(e,t){this._min=1/0,this._max=-1/0;for(const o of e){const e=t?t(o):o;Number.isNaN(e)||(this._min>e&&(this._min=e),e>this._max&&(this._max=e))}this._dirty=!1}clear(){this._min=1/0,this._max=-1/0,this._dirty=!1}get extent(){return[this._min,this._max]}get min(){return this._min}get max(){return this._max}get dirty(){return this._dirty}}function B(e,t,o,n,i){const r=new Map;for(const s of e){const e=t(s),a=o(s);if(null==e||null==a||Number.isNaN(e)||Number.isNaN(a))continue;const l=Math.floor(e/n)*n;let c=r.get(l);if(c||(c={start:l,end:l+n,total:0,categories:new Map},r.set(l,c)),c.total+=a,i){const e=i(s);c.categories.set(e,(c.categories.get(e)||0)+a)}}return r}function D(e,t){return e===t||typeof e==typeof t&&"function"==typeof e&&"function"==typeof t&&""+e==""+t}function I(e,t){if("function"==typeof e)return t=>+e(t);const o=e||t;return e=>+e[o]}function N(e,t){if("function"==typeof e)return e;const o=e||t;return e=>e[o]}function H(e,t){return"function"==typeof e?e:e?t=>t[e]+"":t?e=>e[t]+"":void 0}const W={category10:s.schemeCategory10,tableau10:s.schemeTableau10,set3:s.schemeSet3,blues:s.interpolateBlues,reds:s.interpolateReds,greens:s.interpolateGreens,oranges:s.interpolateOranges,purples:s.interpolatePurples,viridis:s.interpolateViridis,plasma:s.interpolatePlasma},E=s.schemeCategory10,F=["#4e79a7","#f28e2b","#e15759","#76b7b2","#59a14f","#edc948","#b07aa1","#ff9da7","#9c755f","#bab0ac"],$=["#f0f0f0","#b5d4ea","#f4c2a1","#b8dab2","#d4b5e0","#f9e0a2","#a8d8d8"],z=new Set(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","transparent","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"]);function Y(e,t,o){if("function"==typeof t){const n=t(e);return o&&n&&"string"==typeof n&&!function(e){const t=e.toLowerCase();return t.startsWith("#")||t.startsWith("rgb")||t.startsWith("hsl")||z.has(t)}(n)?o(n):n}const n=null==e?void 0:e[t];return o?o(n):E[Math.abs(function(e){let t=0;for(let o=0;e.length>o;o++)t=(t<<5)-t+e.charCodeAt(o),t&=t;return Math.abs(t)}(n+""))%E.length]}function G(e,t,o="category10"){const n=Array.from(new Set(e.map(e=>null==e?void 0:e[t]).filter(e=>null!=e))),r=n.every(e=>"number"==typeof e||!isNaN(Number(e)));if(Array.isArray(o))return i.scaleOrdinal().domain(n).range(o).unknown("#999");const s=W[o]||W.category10;if(r&&"function"==typeof s){let e=-1/0;for(const t of n){const o=Number(t);o>e&&(e=o)}return t=>s(Number(t)/e)}{const e=Array.isArray(s)?s:E;return i.scaleOrdinal().domain(n).range(e).unknown("#999")}}function q(e,t,o=[3,20],n){let i;if(i="function"==typeof t?t(e):null==e?void 0:e[t],!n)return i;const[r,s]=n,[a,l]=o;return s===r?(a+l)/2:a+(i-r)/(s-r)*(l-a)}function X(e,t,o){var n,i,r;if(1>=o)return 1;const s=null!==(n=e.minOpacity)&&void 0!==n?n:.1,a=o-1-t;switch(e.type){case"linear":return s+(1-a/(o-1))*(1-s);case"exponential":{const t=null!==(i=e.halfLife)&&void 0!==i?i:o/2;return s+Math.pow(.5,a/t)*(1-s)}case"step":return(null!==(r=e.stepThreshold)&&void 0!==r?r:.5*o)>a?1:s;default:return 1}}function V(e,t,o){var n;const i=null!==(n=e.duration)&&void 0!==n?n:500,r=o-t;return i>r?1-r/i:0}function U(e,t="ease-out-cubic"){return"linear"===t?e:1-Math.pow(1-e,3)}function K(e,t){return Math.min((e-t.startTime)/t.duration,1)}function Q(e,t,o){return e+(t-e)*o}function Z(){return"undefined"!=typeof performance?performance.now():Date.now()}function J(e,t,o){var n,i,r,s;if(t._transitionKey)return t._transitionKey;switch(t.type){case"point":if(t.pointId)return"p:"+t.pointId;if("streaming"===e.runtimeMode&&t.datum){const o=e.getX(t.datum),n=e.getY(t.datum);if(e.getCategory)return`p:${e.getCategory(t.datum)}:${o}:${n}`;if(null!=o&&null!=n)return`p:${o}:${n}`}return"p:"+o;case"rect":return`r:${t.group||""}:${null!==(s=null!==(i=null===(n=t.datum)||void 0===n?void 0:n.binStart)&&void 0!==i?i:null===(r=t.datum)||void 0===r?void 0:r.category)&&void 0!==s?s:o}`;case"heatcell":return`h:${t.x}_${t.y}`;case"candlestick":return null==t.datum?"c:"+o:"c:"+e.getX(t.datum);case"line":return"l:"+(t.group||"_default");case"area":return"a:"+(t.group||"_default");default:return null}}function ee(e,t,o,n,i,r){const s=[];for(const i of e){const e=o(i),r=n(i);null==e||null==r||Number.isNaN(e)||Number.isNaN(r)||s.push({px:t.x(e),py:t.y(r),rawY:r,d:i})}s.sort((e,t)=>e.px-t.px);const a=Array(s.length),l=Array(s.length),c=Array(s.length);for(let e=0;s.length>e;e++){const t=s[e];a[e]=[t.px,t.py],l[e]=t.rawY,c[e]=t.d}return{type:"line",path:a,rawValues:l,style:i,datum:c,group:r}}function te(e,t,o,n,i,r,s,a){const l=[];for(const r of e){const e=o(r),s=n(r);if(null==e||null==s||Number.isNaN(e)||Number.isNaN(s))continue;const c=t.x(e),u=a?a(r):i;l.push({px:c,topY:t.y(s),botY:t.y(u)})}l.sort((e,t)=>e.px-t.px);const c=Array(l.length),u=Array(l.length);for(let e=0;l.length>e;e++){const t=l[e];c[e]=[t.px,t.topY],u[e]=[t.px,t.botY]}return{type:"area",topPath:c,bottomPath:u,style:r,datum:e,group:s}}function oe(e,t,o,n,i,r,s){const a=o(e),l=n(e);if(null==a||null==l||Number.isNaN(a)||Number.isNaN(l))return null;const c={type:"point",x:t.x(a),y:t.y(l),r:i,style:r,datum:e};return void 0!==s&&(c.pointId=s),c}function ne(e,t,o,n,i,r,s){return{type:"rect",x:e,y:t,w:o,h:n,style:i,datum:r,group:s}}function ie(e,t,o,n,i,r,s){const a={type:"heatcell",x:e,y:t,w:o,h:n,fill:i,datum:r};return(null==s?void 0:s.showValues)&&(a.showValues=!0,a.value=s.value,s.valueFormat&&(a.valueFormat=s.valueFormat)),a}function re(e,t,o){if(!e.getBounds||!e.scales)return null;const n=[],i=[];for(const o of t){const t=e.getX(o),r=e.getY(o);if(null==t||null==r||Number.isNaN(t)||Number.isNaN(r))continue;const s=e.getBounds(o),a=e.scales.x(t);if(s&&0!==s)n.push([a,e.scales.y(r+s)]),i.push([a,e.scales.y(r-s)]);else{const t=e.scales.y(r);n.push([a,t]),i.push([a,t])}}return 2>n.length?null:{type:"area",topPath:n,bottomPath:i,style:e.resolveBoundsStyle(o,t[0]),datum:t,group:o,interactive:!1}}function se(e,t,o,n){var i;if(!e.config.pointStyle)return;const r=null!=n?n:e.getY;for(const n of t){const t=e.resolveGroupColor(n.key);for(const s of n.data){let n=e.config.pointStyle(s);!n.fill&&t&&(n=Object.assign(Object.assign({},n),{fill:t}));const a=null!==(i=n.r)&&void 0!==i?i:3,l=e.getPointId?e.getPointId(s)+"":void 0,c=oe(s,e.scales,e.getX,r,a,n,l);c&&o.push(c)}}}const ae={blues:s.interpolateBlues,reds:s.interpolateReds,greens:s.interpolateGreens,viridis:s.interpolateViridis,oranges:s.interpolateOranges,purples:s.interpolatePurples,greys:s.interpolateGreys,plasma:s.interpolatePlasma,inferno:s.interpolateInferno,magma:s.interpolateMagma,cividis:s.interpolateCividis,turbo:s.interpolateTurbo},le=new Map;class ce{constructor(e){if(this.xExtent=new R,this.yExtent=new R,this.timestampBuffer=null,this.activeTransition=null,this._hasRenderedOnce=!1,this.prevPositionMap=new Map,this.prevPathMap=new Map,this.exitNodes=[],this.lastIngestTime=0,this._colorMapCache=null,this._groupColorMap=new Map,this._groupColorCounter=0,this._barCategoryCache=null,this._binBoundaries=[],this._stackExtentCache=null,this._ingestVersion=0,this._bufferArrayCache=null,this._bufferDirty=!0,this.needsFullRebuild=!0,this.lastLayout=null,this.scales=null,this.scene=[],this.version=0,this.xIsDate=!1,this._quadtree=null,this._maxPointRadius=0,this.config=e,this.buffer=new T(e.windowSize),this.growingCap=e.windowSize,["bar","swarm","waterfall"].includes(e.chartType)||"streaming"===e.runtimeMode?(this.getX=I(e.timeAccessor||e.xAccessor,"time"),this.getY=I(e.valueAccessor||e.yAccessor,"value")):(this.getX=I(e.xAccessor,"x"),this.getY=I(e.yAccessor,"y")),this.getGroup=H(e.groupAccessor),this.getCategory=H(e.categoryAccessor),this.getSize=e.sizeAccessor?I(e.sizeAccessor,"size"):void 0,this.getColor=H(e.colorAccessor),this.getBounds=e.boundsAccessor?I(e.boundsAccessor,"bounds"):void 0,this.getY0=e.y0Accessor?I(e.y0Accessor,"y0"):void 0,this.getPointId=H(e.pointIdAccessor),"candlestick"===e.chartType){const t=null!=e.openAccessor,o=null!=e.closeAccessor;this.getOpen=t?I(e.openAccessor,"open"):void 0,this.getHigh=I(e.highAccessor,"high"),this.getLow=I(e.lowAccessor,"low"),this.getClose=o?I(e.closeAccessor,"close"):void 0,this.config.candlestickRangeMode=!t&&!o}e.pulse&&(this.timestampBuffer=new T(e.windowSize))}ingest(e){const t="undefined"!=typeof performance?performance.now():Date.now();if(this.lastIngestTime=t,this.needsFullRebuild=!0,this._bufferDirty=!0,this._ingestVersion++,e.bounded){if(this.buffer.clear(),this.xExtent.clear(),this.yExtent.clear(),this.timestampBuffer&&this.timestampBuffer.clear(),this.getX=["bar","swarm","waterfall"].includes(this.config.chartType)||"streaming"===this.config.runtimeMode?I(this.config.timeAccessor||this.config.xAccessor,"time"):I(this.config.xAccessor,"x"),this.xIsDate=!1,e.inserts.length>0){const t=e.inserts[0],o=this.config.xAccessor,n="function"==typeof o?o(t):t[o||"x"],i=n instanceof Date,r="string"==typeof n&&n.length>=10&&!isNaN(new Date(n).getTime())&&isNaN(Number(n));if(this.xIsDate=i||r,r){const e="string"==typeof o?o:void 0;this.getX=e?t=>+new Date(t[e]):e=>+(o(e)instanceof Date?o(e):new Date(o(e)))}}const o=e.totalSize||e.inserts.length;o>this.buffer.capacity&&(this.buffer.resize(o),this.timestampBuffer&&o>this.timestampBuffer.capacity&&this.timestampBuffer.resize(o));for(const o of e.inserts)this.buffer.push(o),this.timestampBuffer&&this.timestampBuffer.push(t),this.xExtent.push(this.getX(o)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.push(this.getHigh(o)),this.yExtent.push(this.getLow(o))):(this.yExtent.push(this.getY(o)),this.getY0&&this.yExtent.push(this.getY0(o)))}else for(const o of e.inserts){if("growing"===this.config.windowMode&&this.buffer.full){const e=this.config.maxCapacity||1e6;e>this.growingCap&&(this.growingCap=Math.min(2*this.growingCap,e),this.buffer.resize(this.growingCap),this.timestampBuffer&&this.timestampBuffer.resize(this.growingCap))}const e=this.buffer.push(o);this.timestampBuffer&&this.timestampBuffer.push(t),this.xExtent.push(this.getX(o)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.push(this.getHigh(o)),this.yExtent.push(this.getLow(o))):(this.yExtent.push(this.getY(o)),this.getY0&&this.yExtent.push(this.getY0(o))),null!=e&&(this.xExtent.evict(this.getX(e)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.evict(this.getHigh(e)),this.yExtent.evict(this.getLow(e))):this.yExtent.evict(this.getY(e)))}return!0}computeScene(e){var t,o,n,r,s,a,l;const{config:c,buffer:u}=this;if(!this.needsFullRebuild&&this.lastLayout&&this.scene.length>0&&this.scales&&0>=(null!==(t=this.config.scalePadding)&&void 0!==t?t:0)&&(this.lastLayout.width!==e.width||this.lastLayout.height!==e.height))return void this.remapScene(e);if(this.xExtent.dirty&&this.xExtent.recalculate(u,this.getX),this.yExtent.dirty)if("candlestick"===c.chartType&&this.getHigh&&this.getLow){this.yExtent.clear();for(const e of u)this.yExtent.push(this.getHigh(e)),this.yExtent.push(this.getLow(e))}else this.yExtent.recalculate(u,this.getY);const d=this.getBufferArray(),h=this.xExtent.extent,g=this.yExtent.extent;let f=c.xExtent?[null!==(o=c.xExtent[0])&&void 0!==o?o:h[0],null!==(n=c.xExtent[1])&&void 0!==n?n:h[1]]:h,p=c.yExtent?[null!==(r=c.yExtent[0])&&void 0!==r?r:g[0],null!==(s=c.yExtent[1])&&void 0!==s?s:g[1]]:g;const y=c.yExtent&&null!=c.yExtent[0]&&null!=c.yExtent[1];if("stackedarea"===c.chartType&&!y&&u.size>0)if(c.normalize)p=[0,1+c.extentPadding];else{const e=`${u.size}:${this._ingestVersion}`;if(this._stackExtentCache&&this._stackExtentCache.key===e)p=this._stackExtentCache.yDomain;else{const t=this.groupData(d),o=new Map;let n=0;for(const e of t)for(const t of e.data){const e=this.getX(t),i=this.getY(t);if(null==e||null==i||Number.isNaN(e)||Number.isNaN(i))continue;const r=(o.get(e)||0)+i;o.set(e,r),r>n&&(n=r)}p=[0,n+(n>0?n*c.extentPadding:1)],this._stackExtentCache={key:e,yDomain:p}}}else if("bar"===c.chartType&&c.binSize&&!y&&u.size>0){const[,e]=function(e,t,o,n,i){const r=B(e,t,o,n,i);if(0===r.size)return[0,0];let s=0;for(const e of r.values())e.total>s&&(s=e.total);return[0,s]}(u,this.getX,this.getY,c.binSize,this.getCategory);p=[0,e+e*c.extentPadding]}else if("waterfall"===c.chartType&&!y&&u.size>0){const[e,t]=function(e,t){let o=0,n=0,i=0;for(const r of e){const e=t(r);null==e||Number.isNaN(e)||(i+=e,o>i&&(o=i),i>n&&(n=i))}return[o,n]}(u,this.getY),o=t-e,n=o>0?o*c.extentPadding:1;p=[Math.min(0,e-Math.abs(n)),Math.max(0,t+Math.abs(n))]}else if(!y&&p[0]!==1/0){if(this.getBounds)for(const e of d){const t=this.getY(e),o=this.getBounds(e);null!=t&&!Number.isNaN(t)&&o&&(t+o>p[1]&&(p[1]=t+o),p[0]>t-o&&(p[0]=t-o))}const e=p[1]-p[0],t=e>0?e*c.extentPadding:1,o=null===(a=c.yExtent)||void 0===a?void 0:a[0],n=null===(l=c.yExtent)||void 0===l?void 0:l[1];p=[null!=o?p[0]:p[0]-t,null!=n?p[1]:p[1]+t],"log"===c.yScaleType&&0>=p[0]&&g[0]>0&&(p[0]=null!=o?p[0]:g[0]/(1+c.extentPadding))}if(f[0]===1/0||f[1]===-1/0)if("time"===c.xScaleType){const e=Date.now();f=[e-864e5,e]}else f=[0,1];p[0]!==1/0&&p[1]!==-1/0||(p=[0,1]);const v="streaming"===c.runtimeMode,m=Math.max(0,Math.min(c.scalePadding||0,Math.min(e.width,e.height)/2-1));if(v)if("x"==("up"===(b=c.arrowOfTime)||"down"===b?"y":"x")){const t="right"===c.arrowOfTime?[m,e.width-m]:[e.width-m,m];this.scales={x:i.scaleLinear().domain(f).range(t),y:i.scaleLinear().domain(p).range([e.height-m,m])}}else{const t="down"===c.arrowOfTime?[m,e.height-m]:[e.height-m,m];this.scales={x:i.scaleLinear().domain(p).range([m,e.width-m]),y:i.scaleLinear().domain(f).range(t)}}else{const t=(e,t,o)=>{if("log"===e){const e=[Math.max(t[0],1e-6),Math.max(t[1],1e-6)];return i.scaleLog().domain(e).range(o).clamp(!0)}return"time"===e?i.scaleTime().domain([new Date(t[0]),new Date(t[1])]).range(o):i.scaleLinear().domain(t).range(o)};this.scales={x:t(c.xScaleType,f,[m,e.width-m]),y:t(c.yScaleType,p,[e.height-m,m])}}var b;this.config.transition&&this.scene.length>0&&this.snapshotPositions(),this.scene=this.buildSceneNodes(e,d),this.config.decay&&this.applyDecay(this.scene,d),this.config.pulse&&this.applyPulse(this.scene,d),this.config.transition&&!this._hasRenderedOnce&&this.scene.length>0&&(this.config.introAnimation&&this.synthesizeIntroPositions(),this._hasRenderedOnce=!0),this.config.transition&&(this.prevPositionMap.size>0||this.prevPathMap.size>0)&&this.startTransition(),this.rebuildQuadtree(),this.needsFullRebuild=!1,this.lastLayout={width:e.width,height:e.height},this.version++}rebuildQuadtree(){const e=this.config.chartType;if("scatter"!==e&&"bubble"!==e)return this._quadtree=null,void(this._maxPointRadius=0);let t=0,o=0;for(const e of this.scene)"point"===e.type&&(t++,e.r>o&&(o=e.r));if(this._maxPointRadius=o,ce.QUADTREE_THRESHOLD>=t)return void(this._quadtree=null);const n=Array(t);let i=0;for(const e of this.scene)"point"===e.type&&(n[i++]=e);this._quadtree=r.quadtree().x(e=>e.x).y(e=>e.y).addAll(n)}get quadtree(){return this._quadtree}get maxPointRadius(){return this._maxPointRadius}remapScene(e){const t=e.width/this.lastLayout.width,o=e.height/this.lastLayout.height;for(const e of this.scene)switch(e.type){case"line":for(const n of e.path)n[0]*=t,n[1]*=o;break;case"area":for(const n of e.topPath)n[0]*=t,n[1]*=o;for(const n of e.bottomPath)n[0]*=t,n[1]*=o;break;case"point":e.x*=t,e.y*=o;break;case"rect":case"heatcell":e.x*=t,e.y*=o,e.w*=t,e.h*=o;break;case"candlestick":e.x*=t,e.openY*=o,e.closeY*=o,e.highY*=o,e.lowY*=o}const n=this.scales.x.domain(),r=this.scales.y.domain(),s=this.scales.x.range(),a=this.scales.y.range(),l=(e,t,o)=>{if("log"===e){const e=[Math.max(t[0],1e-6),Math.max(t[1],1e-6)];return i.scaleLog().domain(e).range(o).clamp(!0)}return"time"===e?i.scaleTime().domain([new Date(t[0]),new Date(t[1])]).range(o):i.scaleLinear().domain(t).range(o)},c=Math.max(0,Math.min(this.config.scalePadding||0,Math.min(e.width,e.height)/2-1)),u=a[1]>a[0];this.scales={x:l(this.config.xScaleType,n,s[0]>s[1]?[e.width-c,c]:[c,e.width-c]),y:l(this.config.yScaleType,r,u?[c,e.height-c]:[e.height-c,c])},this.lastLayout={width:e.width,height:e.height},this.rebuildQuadtree(),this.version++}buildSceneNodes(e,t){var o;const{config:n,scales:i}=this;if(!i||0===t.length)return[];const r={scales:i,config:n,getX:this.getX,getY:this.getY,getY0:this.getY0,getSize:this.getSize,getColor:this.getColor,getGroup:this.getGroup,getCategory:this.getCategory,getPointId:this.getPointId,getBounds:this.getBounds,getOpen:this.getOpen,getHigh:this.getHigh,getLow:this.getLow,getClose:this.getClose,resolveLineStyle:(e,t)=>this.resolveLineStyle(e,t),resolveAreaStyle:(e,t)=>this.resolveAreaStyle(e,t),resolveBoundsStyle:(e,t)=>this.resolveBoundsStyle(e,t),resolveColorMap:e=>this.resolveColorMap(e),resolveGroupColor:e=>this.resolveGroupColor(e),groupData:e=>this.groupData(e),barCategoryCache:this._barCategoryCache};switch(n.chartType){case"line":return function(e,t){var o;const n=e.groupData(t),i=[],r=null===(o=e.config.annotations)||void 0===o?void 0:o.filter(e=>"threshold"===e.type&&e.color).map(e=>({value:e.value,color:e.color,thresholdType:e.thresholdType||"greater"}));if(e.getBounds)for(const t of n){const o=re(e,t.data,t.key);o&&i.push(o)}for(const t of n){const o=e.resolveLineStyle(t.key,t.data[0]),n=ee(t.data,e.scales,e.getX,e.getY,o,t.key);r&&r.length>0&&(n.colorThresholds=r),e.config.curve&&"linear"!==e.config.curve&&(n.curve=e.config.curve),e.config.lineGradient&&(n.strokeGradient=e.config.lineGradient),i.push(n)}return se(e,n,i),i}(r,t);case"area":return function(e,t){const o=e.groupData(t),n=[],i=e.scales.y.domain()[0],r=e.getY0?t=>{const o=e.getY0(t);return null==o?i:o}:void 0;for(const t of o){const o=e.resolveAreaStyle(t.key,t.data[0]),s=te(t.data,e.scales,e.getX,e.getY,i,o,t.key,r);e.config.gradientFill&&(s.fillGradient=e.config.gradientFill),e.config.curve&&"linear"!==e.config.curve&&(s.curve=e.config.curve),e.config.lineGradient&&(s.strokeGradient=e.config.lineGradient),n.push(s)}return se(e,o,n),n}(r,t);case"mixed":return function(e,t){const o=e.groupData(t),n=[],i=e.config.areaGroups||new Set,r=e.scales.y.domain()[0],s=e.getY0?t=>{const o=e.getY0(t);return null==o?r:o}:void 0;for(const t of o)if(i.has(t.key)){const o=e.resolveAreaStyle(t.key,t.data[0]),i=te(t.data,e.scales,e.getX,e.getY,r,o,t.key,s);e.config.gradientFill&&(i.fillGradient=e.config.gradientFill),e.config.curve&&"linear"!==e.config.curve&&(i.curve=e.config.curve),e.config.lineGradient&&(i.strokeGradient=e.config.lineGradient),n.push(i)}else{const o=e.resolveLineStyle(t.key,t.data[0]),i=ee(t.data,e.scales,e.getX,e.getY,o,t.key);e.config.curve&&"linear"!==e.config.curve&&(i.curve=e.config.curve),e.config.lineGradient&&(i.strokeGradient=e.config.lineGradient),n.push(i)}return se(e,o,n),n}(r,t);case"stackedarea":return function(e,t){const o=e.groupData(t);o.sort((e,t)=>t.key>e.key?-1:e.key>t.key?1:0);const n=e.config.curve&&"linear"!==e.config.curve?e.config.curve:void 0,{nodes:i,stackedTops:r}=function(e,t,o,n,i,r,s){var a;const l=new Set;for(const t of e)for(const e of t.data){const t=o(e);null==t||Number.isNaN(t)||l.add(t)}const c=Array.from(l).sort((e,t)=>e-t),u=new Map;for(const t of e){const e=new Map;for(const i of t.data){const t=o(i),r=n(i);null==t||null==r||Number.isNaN(t)||Number.isNaN(r)||e.set(t,(e.get(t)||0)+r)}u.set(t.key,e)}let d;if(r){d=new Map;for(const t of c){let o=0;for(const n of e)o+=(null===(a=u.get(n.key))||void 0===a?void 0:a.get(t))||0;d.set(t,o||1)}}const h=[],g=new Map,f=new Map;for(const e of c)f.set(e,0);for(const o of e){const e=u.get(o.key),n=[],a=[],l=new Map;for(const o of c){let i=e.get(o)||0;const s=f.get(o);r&&(i/=d.get(o));const c=s+i,u=t.x(o);a.push([u,t.y(s)]),n.push([u,t.y(c)]),f.set(o,c),l.set(o,c)}g.set(o.key,l);const p={type:"area",topPath:n,bottomPath:a,style:i(o.key,o.data[0]),datum:o.data,group:o.key};s&&(p.curve=s),h.push(p)}return{nodes:h,stackedTops:g}}(o,e.scales,e.getX,e.getY,(t,o)=>e.resolveAreaStyle(t,o),e.config.normalize,n),s=i;if(e.config.pointStyle){const t=new WeakMap;for(const n of o){const o=r.get(n.key);if(o)for(const i of n.data){const n=e.getX(i),r=e.getY(i);null==n||Number.isNaN(n)||null==r||Number.isNaN(r)||!o.has(n)||t.set(i,o.get(n))}}const n=o=>{var n;return null!==(n=t.get(o))&&void 0!==n?n:e.getY(o)};se(e,o,s,n)}return s}(r,t);case"scatter":case"bubble":return function(e,t){var o;const n=[],i="bubble"===e.config.chartType?10:5,r=e.config.sizeRange||[3,15];let s=null;if(e.getSize&&!e.config.pointStyle){const o=t.map(t=>e.getSize(t)).filter(e=>null!=e&&!Number.isNaN(e));if(o.length>0){let e=1/0,t=-1/0;for(const n of o)e>n&&(e=n),n>t&&(t=n);s=o=>e===t?(r[0]+r[1])/2:r[0]+(o-e)/(t-e)*(r[1]-r[0])}}const a=e.getColor?e.resolveColorMap(t):null,l=(null===(o=e.config.themeSemantic)||void 0===o?void 0:o.primary)||"#4e79a7";for(const o of t){let t=e.config.pointStyle?e.config.pointStyle(o):{fill:l,opacity:.8},r=t.r||i;if(s&&e.getSize){const t=e.getSize(o);null==t||Number.isNaN(t)||(r=s(t))}if(a&&e.getColor&&!t.fill){const n=e.getColor(o);n&&a.has(n)&&(t=Object.assign(Object.assign({},t),{fill:a.get(n)}))}const c=e.getPointId?e.getPointId(o)+"":void 0,u=oe(o,e.scales,e.getX,e.getY,r,t,c);u&&n.push(u)}return n}(r,t);case"heatmap":return function(e,t,o){if(e.config.heatmapAggregation)return function(e,t,o){var n,i,r;const s=Math.max(1,Math.floor(null!==(n=e.config.heatmapXBins)&&void 0!==n?n:20)),a=Math.max(1,Math.floor(null!==(i=e.config.heatmapYBins)&&void 0!==i?i:20)),l=null!==(r=e.config.heatmapAggregation)&&void 0!==r?r:"count",c=I(e.config.valueAccessor,"value");if(!e.scales||0===t.length)return[];const[u,d]=e.scales.x.domain(),[h,g]=e.scales.y.domain(),f=(d-u||1)/s,p=(g-h||1)/a,y=s*a;if(y>1e6)return[];const v=new Int32Array(y),m=new Float64Array(y);for(let o=0;t.length>o;o++){const n=t[o],i=e.getX(n),r=e.getY(n);if(!isFinite(i)||!isFinite(r))continue;const l=Math.min(Math.floor((i-u)/f),s-1),d=Math.min(Math.floor((r-h)/p),a-1);if(0>l||0>d)continue;const g=d*s+l;v[g]++;const y=c(n);m[g]+=isFinite(y)?y:0}let b=1/0,x=-1/0;for(let e=0;y>e;e++){if(0===v[e])continue;let t;switch(l){case"sum":t=m[e];break;case"mean":t=m[e]/v[e];break;default:t=v[e]}b>t&&(b=t),t>x&&(x=t)}if(!isFinite(b))return[];const k=x-b||1,w=o.width/s,j=o.height/a,A=e.config.showValues,S=e.config.heatmapValueFormat,O=[];for(let e=0;a>e;e++){const t=e*s;for(let o=0;s>o;o++){const n=t+o;if(0===v[n])continue;let i;switch(l){case"sum":i=m[n];break;case"mean":i=m[n]/v[n];break;default:i=v[n]}const r=(i-b)/k;O.push(ie(o*w,(a-1-e)*j,w,j,`rgb(${220-(180*r+.5)|0},${220-(100*r+.5)|0},${255-(50*r+.5)|0})`,{xi:o,yi:e,value:i,count:v[n],sum:m[n]},A?{value:i,showValues:!0,valueFormat:S}:void 0))}}return O}(e,t,o);if(0===t.length)return[];const n=I(e.config.valueAccessor,"value"),i=N(e.config.xAccessor,"x"),r=N(e.config.yAccessor,"y"),a=new Map,l=new Map,c=Array(t.length),u=Array(t.length);for(let e=0;t.length>e;e++){const o=t[e],n=i(o),s=r(o);c[e]=n,u[e]=s,a.has(n)||a.set(n,a.size),l.has(s)||l.set(s,l.size)}const d=a.size,h=l.size;if(0===d||0===h)return[];const g=Array.from(a.keys()),f=Array.from(l.keys()),p=g.every(e=>"number"==typeof e&&!isNaN(e)),y=f.every(e=>"number"==typeof e&&!isNaN(e));if(p){g.sort((e,t)=>e-t),a.clear();for(let e=0;g.length>e;e++)a.set(g[e],e)}if(y){f.sort((e,t)=>e-t),l.clear();for(let e=0;f.length>e;e++)l.set(f[e],e)}const v=new Float64Array(t.length),m=new Float64Array(t.length),b=Array(t.length),x=new Map;let k=0;for(let e=0;t.length>e;e++){const o=t[e],i=a.get(c[e]),r=l.get(u[e]);if(void 0===i||void 0===r)continue;const s=n(o),h=r*d+i,g=x.get(h);let f;void 0!==g?f=g:(f=k++,x.set(h,f)),v[f]=h,m[f]=s,b[f]=o}let w=1/0,j=-1/0;for(let e=0;k>e;e++){const t=m[e];isFinite(t)&&(w>t&&(w=t),t>j&&(j=t))}if(!isFinite(w)||!isFinite(j))return[];const A=function(e){const t=e in ae?e:"blues";let o=le.get(t);if(o)return o;o=Array(256);const n=ae[t]||s.interpolateBlues;for(let e=0;256>e;e++)o[e]=n(e/255);return le.set(t,o),o}("string"==typeof e.config.colorScheme?e.config.colorScheme:e.config.themeSequential||"blues"),S=255/(j-w||1),O=o.width/d,M=o.height/h,C=e.config.showValues,_=e.config.heatmapValueFormat,P=[];for(let e=0;k>e;e++){const t=m[e];if(!isFinite(t))continue;const o=v[e],n=o%d;P.push(ie(n*O,(h-1-(o-n)/d)*M,O,M,A[Math.min((t-w)*S+.5|0,255)],b[e],C?{value:t,showValues:!0,valueFormat:_}:void 0))}return P}(r,t,e);case"bar":{const e=function(e,t){var o,n;if(!e.config.binSize)return{nodes:[],binBoundaries:[]};const i=B(t,e.getX,e.getY,e.config.binSize,e.getCategory);if(0===i.size)return{nodes:[],binBoundaries:[]};let r=null;if(e.getCategory){const t=new Set;for(const e of i.values())for(const o of e.categories.keys())t.add(o);const o=e.config.barColors?Object.keys(e.config.barColors):[],n=new Set(o),s=Array.from(t).filter(e=>!n.has(e)).sort(),a=o.filter(e=>t.has(e)),l=a.join("\0")+""+s.join("\0");e.barCategoryCache&&e.barCategoryCache.key===l?r=e.barCategoryCache.order:(r=[...a,...s],e.barCategoryCache={key:l,order:r})}const s=[],a=e.scales,[l,c]=a.x.domain(),u=e.config.barStyle,d=null===(o=e.config.themeSemantic)||void 0===o?void 0:o.primary,h=null==u?void 0:u.gap,g="number"!=typeof h||0>h?1:h,f={};(null==u?void 0:u.stroke)&&(f.stroke=u.stroke),"number"==typeof(null==u?void 0:u.strokeWidth)&&(f.strokeWidth=u.strokeWidth),"number"==typeof(null==u?void 0:u.opacity)&&(f.opacity=u.opacity);for(const t of i.values()){const o=Math.max(t.start,l),i=Math.min(t.end,c);if(o>=i)continue;const h=a.x(o),p=a.x(i),y=Math.abs(p-h),v=y>g+1?g:0,m=Math.min(h,p)+v/2,b=Math.max(y-v,1);if(b>0)if(r&&t.categories.size>0){let o=0;for(const i of r){const r=t.categories.get(i)||0;if(0===r)continue;const l=a.y(o),c=a.y(o+r),h=(null===(n=e.config.barColors)||void 0===n?void 0:n[i])||(null==u?void 0:u.fill)||d||"#4e79a7";s.push(ne(m,Math.min(l,c),b,Math.abs(l-c),Object.assign({fill:h},f),{binStart:t.start,binEnd:t.end,total:t.total,category:i,categoryValue:r},i)),o+=r}}else{const e=a.y(0),o=a.y(t.total);s.push(ne(m,Math.min(e,o),b,Math.abs(e-o),Object.assign({fill:(null==u?void 0:u.fill)||d||"#007bff"},f),{binStart:t.start,binEnd:t.end,total:t.total}))}}const p=new Set;for(const e of i.values())p.add(e.start),p.add(e.end);return{nodes:s,binBoundaries:Array.from(p).sort((e,t)=>e-t)}}(r,t);return this._barCategoryCache=null!==(o=r.barCategoryCache)&&void 0!==o?o:null,this._binBoundaries=e.binBoundaries,e.nodes}case"swarm":return function(e,t){var o,n,i,r,s,a;const l=[],c=e.config.swarmStyle||{},u=null!==(o=c.radius)&&void 0!==o?o:3,d=null!==(r=null!==(n=c.fill)&&void 0!==n?n:null===(i=e.config.themeSemantic)||void 0===i?void 0:i.primary)&&void 0!==r?r:"#007bff",h=null!==(s=c.opacity)&&void 0!==s?s:.7,g=c.stroke,f=c.strokeWidth;for(const o of t){const t=e.getX(o),n=e.getY(o);if(null==n||Number.isNaN(n))continue;const i=e.scales.x(t),r=e.scales.y(n);let s=d;if(e.getCategory){const t=e.getCategory(o);s=(null===(a=e.config.barColors)||void 0===a?void 0:a[t])||s}const c={type:"point",x:i,y:r,r:u,style:{fill:s,opacity:h,stroke:g,strokeWidth:f},datum:o};e.getPointId&&(c.pointId=e.getPointId(o)+""),l.push(c)}return l}(r,t);case"waterfall":return function(e,t,o){var n,i,r,s,a,l,c;const u=[],d=e.scales,h=e.config.waterfallStyle,g=t.filter(t=>{const o=e.getY(t),n=e.getX(t);return null!=o&&!Number.isNaN(o)&&null!=n&&isFinite(n)});if(0===g.length)return u;const f=null!==(r=null!==(n=null==h?void 0:h.positiveColor)&&void 0!==n?n:null===(i=e.config.themeSemantic)||void 0===i?void 0:i.success)&&void 0!==r?r:"#28a745",p=null!==(l=null!==(s=null==h?void 0:h.negativeColor)&&void 0!==s?s:null===(a=e.config.themeSemantic)||void 0===a?void 0:a.danger)&&void 0!==l?l:"#dc3545",y=null!==(c=null==h?void 0:h.gap)&&void 0!==c?c:1,v=null==h?void 0:h.stroke,m=null==h?void 0:h.strokeWidth,b=null==h?void 0:h.opacity;let x=0;for(let t=0;g.length>t;t++){const n=g[t],i=e.getX(n),r=e.getY(n),s=x+r;let a;a=g.length-1>t?e.getX(g[t+1])-i:t>0?i-e.getX(g[t-1]):0;const l=d.x(i),c=0!==a?d.x(i+a):l+o.width/10,k=Math.min(l,c)+y/2,w=Math.max(l,c)-y/2-k;if(0>=w){x=s;continue}const j=d.y(x),A=d.y(s),S=Math.min(j,A),O=Math.abs(j-A),M={fill:0>r?p:f,stroke:v,strokeWidth:m};null!=b&&(M.opacity=b),u.push(ne(k,S,w,O,M,Object.assign(Object.assign({},n),{baseline:x,cumEnd:s,delta:r,_connectorStroke:null==h?void 0:h.connectorStroke,_connectorWidth:null==h?void 0:h.connectorWidth}))),x=s}return u}(r,t,e);case"candlestick":return function(e,t){var o,n;if(!e.getHigh||!e.getLow||!e.scales)return[];const i=null!==(o=e.config.candlestickRangeMode)&&void 0!==o&&o;if(!(i||e.getOpen&&e.getClose))return[];const r=[],s=e.config.candlestickStyle||{},a=s.rangeColor||"#6366f1",l=i?a:s.upColor||"#28a745",c=i?a:s.downColor||"#dc3545",u=i?a:s.wickColor||"#333",d=s.wickWidth||(i?2:1),h=t.map(t=>e.getX(t)).filter(e=>null!=e&&!Number.isNaN(e)).sort((e,t)=>e-t);let g=null!==(n=s.bodyWidth)&&void 0!==n?n:0;if(null==s.bodyWidth)if(h.length>1){let t=1/0;for(let o=1;h.length>o;o++){const n=Math.abs(e.scales.x(h[o])-e.scales.x(h[o-1]));n>0&&t>n&&(t=n)}g=t!==1/0?Math.max(2,Math.min(.6*t,20)):6}else g=6;for(const o of t){const t=e.getX(o);if(null==t||Number.isNaN(t))continue;const n=e.getHigh(o),s=e.getLow(o);if(null==n||Number.isNaN(n)||null==s||Number.isNaN(s))continue;const a=i?n:e.getOpen(o),h=i?s:e.getClose(o);if(!i&&[a,h].some(e=>null==e||Number.isNaN(e)))continue;const f=h>=a,p={type:"candlestick",x:e.scales.x(t),openY:e.scales.y(a),closeY:e.scales.y(h),highY:e.scales.y(n),lowY:e.scales.y(s),bodyWidth:g,upColor:l,downColor:c,wickColor:u,wickWidth:d,isUp:f,datum:o};i&&(p.isRange=!0),r.push(p)}return r}(r,t);default:return[]}}resolveBoundsStyle(e,t){var o;const n=this.config.boundsStyle;return"function"==typeof n?n(t||{},e):n&&"object"==typeof n?n:{fill:this.resolveLineStyle(e,t).stroke||(null===(o=this.config.themeSemantic)||void 0===o?void 0:o.primary)||"#4e79a7",fillOpacity:.2,stroke:"none"}}computeDecayOpacity(e,t){const o=this.config.decay;return o&&t>1?X(o,e,t):1}applyDecay(e,t){this.config.decay&&function(e,t,o){var n,i;const r=o.length;if(1>=r)return;const s=new Map;for(let e=0;o.length>e;e++)s.set(o[e],e);for(const o of t){if("line"===o.type){const t=Array.isArray(o.datum)?o.datum:[];if(2>t.length)continue;const n=Array(t.length);let i=!1;for(let o=0;t.length>o;o++){const a=s.get(t[o]);null!=a?(n[o]=X(e,a,r),1>n[o]&&(i=!0)):n[o]=1}i&&(o._decayOpacities=n);continue}if("area"===o.type){const t=Array.isArray(o.datum)?o.datum:[],n=o.topPath?o.topPath.length:t.length;if(2>n)continue;if(t.length===n){const i=Array(n);let a=!1;for(let o=0;t.length>o;o++){const n=s.get(t[o]);null!=n?(i[o]=X(e,n,r),1>i[o]&&(a=!0)):i[o]=1}a&&(o._decayOpacities=i)}else{let i=1;for(const o of t){const t=s.get(o);if(null!=t){const o=X(e,t,r);i>o&&(i=o)}}if(1>i){const e=Array(n);e.fill(i),o._decayOpacities=e}}continue}const t=s.get(o.datum);if(null==t)continue;const a=X(e,t,r);if("heatcell"===o.type)o.style={opacity:a};else if("candlestick"===o.type)o._decayOpacity=a;else{const e=null!==(i=null===(n=o.style)||void 0===n?void 0:n.opacity)&&void 0!==i?i:1;o.style=Object.assign(Object.assign({},o.style),{opacity:e*a})}}}(this.config.decay,e,t)}applyPulse(e,t){this.config.pulse&&this.timestampBuffer&&function(e,t,o,n){var i,r;const s="undefined"!=typeof performance?performance.now():Date.now(),a=null!==(i=e.color)&&void 0!==i?i:"rgba(255,255,255,0.6)",l=null!==(r=e.glowRadius)&&void 0!==r?r:4,c=new Map;for(let e=0;o.length>e;e++)c.set(o[e],e);for(const o of t){if("line"===o.type)continue;if("area"===o.type){const t=Array.isArray(o.datum)?o.datum:[o.datum];let i=0;for(const o of t){const t=c.get(o);if(null==t)continue;const r=n.get(t);if(null==r)continue;const a=V(e,r,s);a>i&&(i=a)}i>0&&(o._pulseIntensity=i,o._pulseColor=a);continue}const t=c.get(o.datum);if(null==t)continue;const i=n.get(t);if(null==i)continue;const r=V(e,i,s);r>0&&(o._pulseIntensity=r,o._pulseColor=a,o._pulseGlowRadius=l)}}(this.config.pulse,e,t,this.timestampBuffer)}get hasActivePulses(){return!!this.config.pulse&&function(e,t){var o;if(!t||0===t.size)return!1;const n="undefined"!=typeof performance?performance.now():Date.now(),i=null!==(o=e.duration)&&void 0!==o?o:500,r=t.peek();return null!=r&&i>n-r}(this.config.pulse,this.timestampBuffer)}get transitionContext(){return{runtimeMode:this.config.runtimeMode,getX:this.getX,getY:this.getY,getCategory:this.getCategory}}snapshotPositions(){!function(e,t,o,n){var i,r,s,a;o.clear(),n.clear();for(let l=0;t.length>l;l++){const c=t[l],u=J(e,c,l);u&&("point"===c.type?o.set(u,{x:c.x,y:c.y,r:c.r,opacity:c.style.opacity}):"rect"===c.type?o.set(u,{x:c.x,y:c.y,w:c.w,h:c.h,opacity:c.style.opacity}):"heatcell"===c.type?o.set(u,{x:c.x,y:c.y,w:c.w,h:c.h,opacity:null===(i=c.style)||void 0===i?void 0:i.opacity}):"candlestick"===c.type?o.set(u,{x:c.x,y:c.openY,w:c.bodyWidth,openY:c.openY,closeY:c.closeY,highY:c.highY,lowY:c.lowY,opacity:null===(r=c.style)||void 0===r?void 0:r.opacity}):"line"===c.type?n.set(u,{path:c.path.map(e=>[e[0],e[1]]),opacity:null===(s=c.style)||void 0===s?void 0:s.opacity}):"area"===c.type&&n.set(u,{topPath:c.topPath.map(e=>[e[0],e[1]]),bottomPath:c.bottomPath.map(e=>[e[0],e[1]]),opacity:null===(a=c.style)||void 0===a?void 0:a.opacity}))}}(this.transitionContext,this.scene,this.prevPositionMap,this.prevPathMap)}synthesizeIntroPositions(){var e,t,o;this.prevPositionMap.clear(),this.prevPathMap.clear();const n=null!==(t=null===(e=this.scales)||void 0===e?void 0:e.y(0))&&void 0!==t?t:0;for(let e=0;this.scene.length>e;e++){const t=this.scene[e],i=J(this.transitionContext,t,e);i&&("point"===t.type?this.prevPositionMap.set(i,{x:t.x,y:t.y,r:0,opacity:0}):"rect"===t.type?this.prevPositionMap.set(i,{x:t.x,y:n,w:t.w,h:0,opacity:null!==(o=t.style.opacity)&&void 0!==o?o:1}):"heatcell"===t.type?this.prevPositionMap.set(i,{x:t.x,y:t.y,w:t.w,h:t.h,opacity:0}):"line"===t.type?(t._introClipFraction=0,this.prevPathMap.set(i,{path:t.path.map(e=>[e[0],e[1]]),opacity:t.style.opacity})):"area"===t.type&&(t._introClipFraction=0,this.prevPathMap.set(i,{topPath:t.topPath.map(e=>[e[0],e[1]]),bottomPath:t.bottomPath.map(e=>[e[0],e[1]]),opacity:t.style.opacity})))}}startTransition(){if(!this.config.transition)return;const e=function(e,t,o,n,i){var r,s,a,l,c,u,d,h,g,f,p,y,v,m,b,x,k,w,j,A,S,O,M,C,_,P,L,T,R,B,D,I,N,H,W,E,F,$,z,Y,G;if(0===n.size&&0===i.size)return o;const q=null!==(r=t.duration)&&void 0!==r?r:300;if(o.exitNodes.length>0){const e=new Set(o.exitNodes);o.scene=o.scene.filter(t=>!e.has(t)),o.exitNodes=[]}let X=!1;const V=new Set,U=new Set;for(let t=0;o.scene.length>t;t++){const r=o.scene[t],P=J(e,r,t);if(!P)continue;if(r._transitionKey=P,"line"===r.type||"area"===r.type){const e=i.get(P);if(e){if(U.add(P),"line"===r.type&&e.path&&e.path.length===r.path.length){r._targetPath=r.path.map(e=>[e[0],e[1]]),r._prevPath=e.path;for(let t=0;r.path.length>t;t++)r.path[t]=[e.path[t][0],e.path[t][1]];X=!0}else if("area"===r.type&&e.topPath&&e.bottomPath&&e.topPath.length===r.topPath.length&&e.bottomPath.length===r.bottomPath.length){r._targetTopPath=r.topPath.map(e=>[e[0],e[1]]),r._targetBottomPath=r.bottomPath.map(e=>[e[0],e[1]]),r._prevTopPath=e.topPath,r._prevBottomPath=e.bottomPath;for(let t=0;r.topPath.length>t;t++)r.topPath[t]=[e.topPath[t][0],e.topPath[t][1]];for(let t=0;r.bottomPath.length>t;t++)r.bottomPath[t]=[e.bottomPath[t][0],e.bottomPath[t][1]];X=!0}r._targetOpacity=null!==(s=r.style.opacity)&&void 0!==s?s:1,r._startOpacity=null!==(l=null!==(a=e.opacity)&&void 0!==a?a:r.style.opacity)&&void 0!==l?l:1}else r._targetOpacity=null!==(c=r.style.opacity)&&void 0!==c?c:1,r._startOpacity=0,r.style=Object.assign(Object.assign({},r.style),{opacity:0}),X=!0;continue}const L=n.get(P);if("point"===r.type)if(L){V.add(P);const e={x:r.x,y:r.y,r:r.r};r._targetOpacity=null!==(u=r.style.opacity)&&void 0!==u?u:1,L.x===e.x&&L.y===e.y&&L.r===e.r||(r._targetX=e.x,r._targetY=e.y,r._targetR=e.r,r.x=L.x,r.y=L.y,r.r=null!==(d=L.r)&&void 0!==d?d:r.r,X=!0)}else r._targetOpacity=null!==(h=r.style.opacity)&&void 0!==h?h:1,r.style=Object.assign(Object.assign({},r.style),{opacity:0}),X=!0;else if("rect"===r.type)if(L){V.add(P);const e={x:r.x,y:r.y,w:r.w,h:r.h};r._targetOpacity=null!==(g=r.style.opacity)&&void 0!==g?g:1,L.x===e.x&&L.y===e.y&&L.w===e.w&&L.h===e.h||(r._targetX=e.x,r._targetY=e.y,r._targetW=e.w,r._targetH=e.h,r.x=L.x,r.y=L.y,r.w=null!==(f=L.w)&&void 0!==f?f:r.w,r.h=null!==(p=L.h)&&void 0!==p?p:r.h,X=!0)}else r._targetOpacity=null!==(y=r.style.opacity)&&void 0!==y?y:1,r.style=Object.assign(Object.assign({},r.style),{opacity:0}),X=!0;else if("heatcell"===r.type)if(L){V.add(P);const e={x:r.x,y:r.y,w:r.w,h:r.h};r._targetOpacity=null!==(m=null===(v=r.style)||void 0===v?void 0:v.opacity)&&void 0!==m?m:1,L.x===e.x&&L.y===e.y&&L.w===e.w&&L.h===e.h||(r._targetX=e.x,r._targetY=e.y,r._targetW=e.w,r._targetH=e.h,r.x=L.x,r.y=L.y,r.w=null!==(b=L.w)&&void 0!==b?b:r.w,r.h=null!==(x=L.h)&&void 0!==x?x:r.h,X=!0)}else r._targetOpacity=null!==(w=null===(k=r.style)||void 0===k?void 0:k.opacity)&&void 0!==w?w:1,r.style=Object.assign(Object.assign({},r.style||{}),{opacity:0}),X=!0;else if("candlestick"===r.type)if(L&&null!=L.openY){V.add(P);const e={x:r.x,openY:r.openY,closeY:r.closeY,highY:r.highY,lowY:r.lowY};r._targetOpacity=null!==(A=null===(j=r.style)||void 0===j?void 0:j.opacity)&&void 0!==A?A:1,(L.x!==e.x||L.openY!==e.openY||L.closeY!==e.closeY||L.highY!==e.highY||L.lowY!==e.lowY)&&(r._targetX=e.x,r._targetOpenY=e.openY,r._targetCloseY=e.closeY,r._targetHighY=e.highY,r._targetLowY=e.lowY,r.x=L.x,r.openY=L.openY,r.closeY=null!==(S=L.closeY)&&void 0!==S?S:r.closeY,r.highY=null!==(O=L.highY)&&void 0!==O?O:r.highY,r.lowY=null!==(M=L.lowY)&&void 0!==M?M:r.lowY,X=!0)}else r._targetOpacity=null!==(_=null===(C=r.style)||void 0===C?void 0:C.opacity)&&void 0!==_?_:1,r.style=Object.assign(Object.assign({},r.style||{}),{opacity:0}),X=!0}for(const[e,t]of i)if(!U.has(e))if(e.startsWith("l:")&&t.path){const n={type:"line",path:t.path.map(e=>[e[0],e[1]]),group:e.slice(2),style:{stroke:"#999",strokeWidth:1,opacity:null!==(P=t.opacity)&&void 0!==P?P:1},_targetOpacity:0,_transitionKey:e,datum:null};o.exitNodes.push(n),X=!0}else if(e.startsWith("a:")&&t.topPath&&t.bottomPath){const n={type:"area",topPath:t.topPath.map(e=>[e[0],e[1]]),bottomPath:t.bottomPath.map(e=>[e[0],e[1]]),group:e.slice(2),style:{fill:"#999",opacity:null!==(L=t.opacity)&&void 0!==L?L:1},_targetOpacity:0,_transitionKey:e,datum:null};o.exitNodes.push(n),X=!0}for(const[e,t]of n)if(!V.has(e)){if(e.startsWith("p:")){const n={type:"point",x:t.x,y:t.y,r:null!==(T=t.r)&&void 0!==T?T:3,style:{opacity:null!==(R=t.opacity)&&void 0!==R?R:1},datum:null,_targetOpacity:0,_transitionKey:e};o.exitNodes.push(n)}else if(e.startsWith("r:")){const n={type:"rect",x:t.x,y:t.y,w:null!==(B=t.w)&&void 0!==B?B:0,h:null!==(D=t.h)&&void 0!==D?D:0,style:{opacity:null!==(I=t.opacity)&&void 0!==I?I:1,fill:"#999"},datum:null,_targetOpacity:0,_transitionKey:e};o.exitNodes.push(n)}else if(e.startsWith("h:")){const n={type:"heatcell",x:t.x,y:t.y,w:null!==(N=t.w)&&void 0!==N?N:0,h:null!==(H=t.h)&&void 0!==H?H:0,fill:"#999",datum:null,style:{opacity:null!==(W=t.opacity)&&void 0!==W?W:1},_targetOpacity:0,_transitionKey:e};o.exitNodes.push(n)}else if(e.startsWith("c:")){const n=null!==(E=t.openY)&&void 0!==E?E:t.y,i={type:"candlestick",x:t.x,openY:n,closeY:null!==(F=t.closeY)&&void 0!==F?F:n,highY:null!==($=t.highY)&&void 0!==$?$:n,lowY:null!==(z=t.lowY)&&void 0!==z?z:n,bodyWidth:null!==(Y=t.w)&&void 0!==Y?Y:6,upColor:"#999",downColor:"#999",wickColor:"#999",wickWidth:1,isUp:!0,datum:null,style:{opacity:null!==(G=t.opacity)&&void 0!==G?G:1},_targetOpacity:0,_transitionKey:e};o.exitNodes.push(i)}X=!0}return o.exitNodes.length>0&&(o.scene=[...o.scene,...o.exitNodes]),X&&(o.activeTransition={startTime:Z(),duration:q}),o}(this.transitionContext,this.config.transition,{scene:this.scene,exitNodes:this.exitNodes,activeTransition:this.activeTransition},this.prevPositionMap,this.prevPathMap);this.scene=e.scene,this.exitNodes=e.exitNodes,this.activeTransition=e.activeTransition}advanceTransition(e){if(!this.activeTransition||!this.config.transition)return!1;const t={scene:this.scene,exitNodes:this.exitNodes,activeTransition:this.activeTransition},o=function(e,t,o,n){var i,r,s,a,l,c;if(!o.activeTransition)return!1;const u=K(e,o.activeTransition),d=U(u,"linear"===t.easing?"linear":"ease-out-cubic");for(const e of o.scene){const t=e._transitionKey;if("point"===e.type){if(void 0!==e._targetOpacity){const o=t?n.get(t):void 0,r=o?null!==(i=o.opacity)&&void 0!==i?i:1:0;e.style.opacity=Q(r,e._targetOpacity,d)}if(void 0===e._targetX)continue;if(!t)continue;const o=n.get(t);if(!o)continue;e.x=Q(o.x,e._targetX,d),e.y=Q(o.y,e._targetY,d),void 0!==e._targetR&&void 0!==o.r&&(e.r=Q(o.r,e._targetR,d))}else if("rect"===e.type){if(void 0!==e._targetOpacity){const o=t?n.get(t):void 0,i=o?null!==(r=o.opacity)&&void 0!==r?r:1:0;e.style.opacity=Q(i,e._targetOpacity,d)}if(void 0===e._targetX)continue;if(!t)continue;const o=n.get(t);if(!o)continue;e.x=Q(o.x,e._targetX,d),e.y=Q(o.y,e._targetY,d),void 0!==o.w&&(e.w=Q(o.w,e._targetW,d)),void 0!==o.h&&(e.h=Q(o.h,e._targetH,d))}else if("heatcell"===e.type){if(void 0!==e._targetOpacity){const o=t?n.get(t):void 0,i=o?null!==(s=o.opacity)&&void 0!==s?s:1:0;e.style=Object.assign(Object.assign({},e.style||{}),{opacity:Q(i,e._targetOpacity,d)})}if(void 0===e._targetX)continue;if(!t)continue;const o=n.get(t);if(!o)continue;e.x=Q(o.x,e._targetX,d),e.y=Q(o.y,e._targetY,d),void 0!==o.w&&(e.w=Q(o.w,e._targetW,d)),void 0!==o.h&&(e.h=Q(o.h,e._targetH,d))}else if("candlestick"===e.type){if(void 0!==e._targetOpacity){const o=t?n.get(t):void 0,i=o?null!==(a=o.opacity)&&void 0!==a?a:1:0;e.style=Object.assign(Object.assign({},e.style||{}),{opacity:Q(i,e._targetOpacity,d)})}if(void 0===e._targetX)continue;if(!t)continue;const o=n.get(t);if(!o)continue;e.x=Q(o.x,e._targetX,d),void 0!==o.openY&&(e.openY=Q(o.openY,e._targetOpenY,d)),void 0!==o.closeY&&(e.closeY=Q(o.closeY,e._targetCloseY,d)),void 0!==o.highY&&(e.highY=Q(o.highY,e._targetHighY,d)),void 0!==o.lowY&&(e.lowY=Q(o.lowY,e._targetLowY,d))}else if("line"===e.type){if(void 0!==e._targetOpacity){const t=null!==(l=e._startOpacity)&&void 0!==l?l:0;e.style=Object.assign(Object.assign({},e.style),{opacity:Q(t,e._targetOpacity,d)})}void 0!==e._introClipFraction&&(e._introClipFraction=d);const t=e._prevPath,o=e._targetPath;if(t&&o&&t.length===e.path.length)for(let n=0;e.path.length>n;n++)e.path[n][0]=Q(t[n][0],o[n][0],d),e.path[n][1]=Q(t[n][1],o[n][1],d)}else if("area"===e.type){if(void 0!==e._targetOpacity){const t=null!==(c=e._startOpacity)&&void 0!==c?c:0;e.style=Object.assign(Object.assign({},e.style),{opacity:Q(t,e._targetOpacity,d)})}void 0!==e._introClipFraction&&(e._introClipFraction=d);const t=e._prevTopPath,o=e._prevBottomPath,n=e._targetTopPath,i=e._targetBottomPath;if(t&&n&&t.length===e.topPath.length)for(let o=0;e.topPath.length>o;o++)e.topPath[o][0]=Q(t[o][0],n[o][0],d),e.topPath[o][1]=Q(t[o][1],n[o][1],d);if(o&&i&&o.length===e.bottomPath.length)for(let t=0;e.bottomPath.length>t;t++)e.bottomPath[t][0]=Q(o[t][0],i[t][0],d),e.bottomPath[t][1]=Q(o[t][1],i[t][1],d)}}if(u>=1){for(const e of o.scene){if(void 0!==e._targetOpacity){const t=e._targetOpacity;e.style=Object.assign(Object.assign({},"line"===e.type||"area"===e.type?e.style:e.style||{}),{opacity:0===t?0:t}),e._targetOpacity=void 0}if("point"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,e.y=e._targetY,void 0!==e._targetR&&(e.r=e._targetR),e._targetX=void 0,e._targetY=void 0,e._targetR=void 0}else if("rect"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,e.y=e._targetY,e.w=e._targetW,e.h=e._targetH,e._targetX=void 0,e._targetY=void 0,e._targetW=void 0,e._targetH=void 0}else if("heatcell"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,e.y=e._targetY,e.w=e._targetW,e.h=e._targetH,e._targetX=void 0,e._targetY=void 0,e._targetW=void 0,e._targetH=void 0}else if("candlestick"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,void 0!==e._targetOpenY&&(e.openY=e._targetOpenY),void 0!==e._targetCloseY&&(e.closeY=e._targetCloseY),void 0!==e._targetHighY&&(e.highY=e._targetHighY),void 0!==e._targetLowY&&(e.lowY=e._targetLowY),e._targetX=void 0,e._targetOpenY=void 0,e._targetCloseY=void 0,e._targetHighY=void 0,e._targetLowY=void 0}else if("line"===e.type){const t=e._targetPath;if(t)for(let o=0;e.path.length>o;o++)e.path[o]=t[o];e._prevPath=void 0,e._targetPath=void 0,e._introClipFraction=void 0}else if("area"===e.type){const t=e._targetTopPath,o=e._targetBottomPath;if(t)for(let o=0;e.topPath.length>o;o++)e.topPath[o]=t[o];if(o)for(let t=0;e.bottomPath.length>t;t++)e.bottomPath[t]=o[t];e._prevTopPath=void 0,e._prevBottomPath=void 0,e._targetTopPath=void 0,e._targetBottomPath=void 0,e._introClipFraction=void 0}}if(o.exitNodes.length>0){const e=new Set(o.exitNodes);o.scene=o.scene.filter(t=>!e.has(t)),o.exitNodes=[]}return o.activeTransition=null,!1}return!0}(e,this.config.transition,t,this.prevPositionMap);return this.scene=t.scene,this.exitNodes=t.exitNodes,this.activeTransition=t.activeTransition,o}groupData(e){if(!this.getGroup)return[{key:"_default",data:e}];const t=new Map;for(const o of e){const e=this.getGroup(o);t.has(e)||t.set(e,[]),t.get(e).push(o)}return Array.from(t.entries()).map(([e,t])=>({key:e,data:t}))}resolveColorMap(e){if(this._colorMapCache&&this._colorMapCache.version===this._ingestVersion)return this._colorMapCache.map;const t=new Set;for(const o of e){const e=this.getColor(o);e&&t.add(e)}const o=Array.from(t).sort(),n=o.join("\0");if(this._colorMapCache&&this._colorMapCache.key===n)return this._colorMapCache.version=this._ingestVersion,this._colorMapCache.map;const i=Array.isArray(this.config.colorScheme)?this.config.colorScheme:this.config.themeCategorical||F,r=new Map;for(let e=0;o.length>e;e++)r.set(o[e],i[e%i.length]);return this._colorMapCache={key:n,map:r,version:this._ingestVersion},r}resolveLineStyle(e,t){var o;const n=this.config.lineStyle;if("function"==typeof n){const o=n(t||{},e);if(o&&!o.stroke&&e){const t=this.resolveGroupColor(e);if(t)return Object.assign(Object.assign({},o),{stroke:t})}return o}const i=null===(o=this.config.themeSemantic)||void 0===o?void 0:o.primary;return n&&"object"==typeof n?{stroke:n.stroke||i||"#007bff",strokeWidth:n.strokeWidth||2,strokeDasharray:n.strokeDasharray,fill:n.fill,fillOpacity:n.fillOpacity,opacity:n.opacity}:{stroke:this.resolveGroupColor(e)||i||"#007bff",strokeWidth:2}}resolveAreaStyle(e,t){var o,n;if(this.config.areaStyle){const o=this.config.areaStyle(t||{});if(o&&!o.fill&&e){const t=this.resolveGroupColor(e);if(t)return Object.assign(Object.assign({},o),{fill:t,stroke:o.stroke||t})}return o}const i=this.config.lineStyle;if("function"==typeof i){const o=i(t||{},e);if(o&&!o.fill&&e){const t=this.resolveGroupColor(e);if(t)return Object.assign(Object.assign({},o),{fill:t,stroke:o.stroke||t})}return o}const r=null===(o=this.config.themeSemantic)||void 0===o?void 0:o.primary;if(i&&"object"==typeof i)return{fill:i.fill||i.stroke||r||"#4e79a7",fillOpacity:null!==(n=i.fillOpacity)&&void 0!==n?n:.7,stroke:i.stroke||r||"#4e79a7",strokeWidth:i.strokeWidth||2};const s=this.resolveGroupColor(e)||r||"#4e79a7";return{fill:s,fillOpacity:.7,stroke:s,strokeWidth:2}}resolveGroupColor(e){if(this._colorMapCache){const t=this._colorMapCache.map.get(e);if(t)return t}const t=this._groupColorMap.get(e);if(t)return t;const o=(Array.isArray(this.config.colorScheme)&&this.config.colorScheme.length>0?this.config.colorScheme:null)||(Array.isArray(this.config.themeCategorical)&&this.config.themeCategorical.length>0?this.config.themeCategorical:null)||F;if(0===o.length)return null;const n=o[this._groupColorCounter%o.length];if(this._groupColorCounter++,this._groupColorMap.set(e,n),this._groupColorMap.size>ce.GROUP_COLOR_MAP_CAP){const e=this._groupColorMap.keys().next().value;void 0!==e&&this._groupColorMap.delete(e)}return n}getBufferArray(){return!this._bufferDirty&&this._bufferArrayCache||(this._bufferArrayCache=this.buffer.toArray(),this._bufferDirty=!1),this._bufferArrayCache}getData(){return this.getBufferArray()}remove(e){if(!this.getPointId)throw Error("remove() requires pointIdAccessor to be configured");this.config.transition&&this.scene.length>0&&this.snapshotPositions();const t=new Set(Array.isArray(e)?e:[e]),o=this.getPointId,n=e=>t.has(o(e));if(this.timestampBuffer&&this.timestampBuffer.size>0){const e=this.timestampBuffer.toArray(),t=new Set;this.buffer.forEach((e,o)=>{n(e)&&t.add(o)}),this.timestampBuffer.clear();for(let o=0;e.length>o;o++)t.has(o)||this.timestampBuffer.push(e[o])}const i=this.buffer.remove(n);if(0===i.length)return i;for(const e of i)this.xExtent.evict(this.getX(e)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.evict(this.getHigh(e)),this.yExtent.evict(this.getLow(e))):(this.yExtent.evict(this.getY(e)),this.getY0&&this.yExtent.evict(this.getY0(e)));return this.needsFullRebuild=!0,this._bufferDirty=!0,this._ingestVersion++,i}update(e,t){if(!this.getPointId)throw Error("update() requires pointIdAccessor to be configured");const o=new Set(Array.isArray(e)?e:[e]),n=this.getPointId,i=new Set;this.buffer.forEach((e,t)=>{o.has(n(e))&&i.add(t)});const r=this.buffer.update(e=>o.has(n(e)),t);if(0===r.length)return r;for(const e of r)this.xExtent.evict(this.getX(e)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.evict(this.getHigh(e)),this.yExtent.evict(this.getLow(e))):(this.yExtent.evict(this.getY(e)),this.getY0&&this.yExtent.evict(this.getY0(e)));return this.buffer.forEach((e,t)=>{i.has(t)&&(this.xExtent.push(this.getX(e)),"candlestick"===this.config.chartType&&this.getHigh&&this.getLow?(this.yExtent.push(this.getHigh(e)),this.yExtent.push(this.getLow(e))):(this.yExtent.push(this.getY(e)),this.getY0&&this.yExtent.push(this.getY0(e))))}),this.needsFullRebuild=!0,this._bufferDirty=!0,this._ingestVersion++,r}getBinBoundaries(){return this._binBoundaries}getExtents(){return this.xExtent.min===1/0?null:{x:this.xExtent.extent,y:this.yExtent.extent}}clear(){this.buffer.clear(),this.xExtent.clear(),this.yExtent.clear(),this._hasRenderedOnce=!1,this.timestampBuffer&&this.timestampBuffer.clear(),this.prevPositionMap.clear(),this.prevPathMap.clear(),this.exitNodes=[],this.activeTransition=null,this.lastIngestTime=0,this.needsFullRebuild=!0,this._bufferDirty=!0,this._bufferArrayCache=null,this.lastLayout=null,this.scales=null,this.scene=[],this._quadtree=null,this._maxPointRadius=0,this._colorMapCache=null,this._groupColorMap=new Map,this._groupColorCounter=0,this._barCategoryCache=null,this._binBoundaries=[],this._stackExtentCache=null,this.version++}get size(){return this.buffer.size}getBuffer(){return this.buffer}getXAccessor(){return this.getX}getYAccessor(){return this.getY}getCategoryAccessor(){return this.getCategory}updateConfig(e){var t,o,n,i;const r=Object.assign({},this.config);("colorScheme"in e||"themeCategorical"in e||"colorAccessor"in e)&&(this._colorMapCache=null,this._groupColorMap=new Map,this._groupColorCounter=0),("barColors"in e||"colorScheme"in e)&&(this._barCategoryCache=null),("normalize"in e||"extentPadding"in e||"xAccessor"in e||"yAccessor"in e||"timeAccessor"in e||"valueAccessor"in e||"groupAccessor"in e||"categoryAccessor"in e||"chartType"in e||"runtimeMode"in e)&&(this._stackExtentCache=null);let s=!1;Object.assign(this.config,e);const a="chartType"in e&&e.chartType!==r.chartType||"runtimeMode"in e&&e.runtimeMode!==r.runtimeMode;if(a||"xAccessor"in e||"yAccessor"in e||"timeAccessor"in e||"valueAccessor"in e){const l=a||!D(null!==(t=e.xAccessor)&&void 0!==t?t:e.timeAccessor,null!==(o=r.xAccessor)&&void 0!==o?o:r.timeAccessor),c=a||!D(null!==(n=e.yAccessor)&&void 0!==n?n:e.valueAccessor,null!==(i=r.yAccessor)&&void 0!==i?i:r.valueAccessor);(l||c)&&(["bar","swarm","waterfall"].includes(this.config.chartType)||"streaming"===this.config.runtimeMode?(this.getX=I(this.config.timeAccessor||this.config.xAccessor,"time"),this.getY=I(this.config.valueAccessor||this.config.yAccessor,"value")):(this.getX=I(this.config.xAccessor,"x"),this.getY=I(this.config.yAccessor,"y")),s=!0)}if("groupAccessor"in e&&!D(e.groupAccessor,r.groupAccessor)&&(this.getGroup=null!=this.config.groupAccessor?H(this.config.groupAccessor):void 0,s=!0),"categoryAccessor"in e&&!D(e.categoryAccessor,r.categoryAccessor)&&(this.getCategory=null!=this.config.categoryAccessor?H(this.config.categoryAccessor):void 0,s=!0),"sizeAccessor"in e&&!D(e.sizeAccessor,r.sizeAccessor)&&(this.getSize=this.config.sizeAccessor?I(this.config.sizeAccessor,"size"):void 0,s=!0),"colorAccessor"in e&&!D(e.colorAccessor,r.colorAccessor)&&(this.getColor=null!=this.config.colorAccessor?H(this.config.colorAccessor):void 0,s=!0),"y0Accessor"in e&&!D(e.y0Accessor,r.y0Accessor)&&(this.getY0=this.config.y0Accessor?I(this.config.y0Accessor,"y0"):void 0,s=!0),"pointIdAccessor"in e&&!D(e.pointIdAccessor,r.pointIdAccessor)&&(this.getPointId=null!=this.config.pointIdAccessor?H(this.config.pointIdAccessor):void 0,s=!0),"candlestick"===this.config.chartType&&("openAccessor"in e&&!D(e.openAccessor,r.openAccessor)||"closeAccessor"in e&&!D(e.closeAccessor,r.closeAccessor)||"highAccessor"in e&&!D(e.highAccessor,r.highAccessor)||"lowAccessor"in e&&!D(e.lowAccessor,r.lowAccessor))){const e=null!=this.config.openAccessor,t=null!=this.config.closeAccessor;this.getOpen=e?I(this.config.openAccessor,"open"):void 0,this.getHigh=I(this.config.highAccessor,"high"),this.getLow=I(this.config.lowAccessor,"low"),this.getClose=t?I(this.config.closeAccessor,"close"):void 0,this.config.candlestickRangeMode=!e&&!t,s=!0}if(!s){const t=Object.keys(e).filter(e=>!e.endsWith("Accessor")&&"timeAccessor"!==e&&"valueAccessor"!==e);for(const o of t)if(e[o]!==r[o]){s=!0;break}}s&&(this.needsFullRebuild=!0)}}function ue(e,t,o){return o.x>e||e>o.x+o.w||o.y>t||t>o.y+o.h?{hit:!1,cx:0,cy:0}:{hit:!0,cx:o.x+o.w/2,cy:o.y+o.h/2}}function de(e,t=30){return Math.max((null!=e?e:4)+5,12,t)}function he(e){return e instanceof Date?e:"number"==typeof e&&e>1e9?new Date(e):null}function ge(e,t){const o=he(e);if(!o)return!1;const n=he(t);return!n||o.getFullYear()!==n.getFullYear()||o.getMonth()!==n.getMonth()}function fe(e){let t=e%(2*Math.PI);return 0>t&&(t+=2*Math.PI),t}function pe(e,t,o,n,i){const r=Math.max(n,i+5,12),s=t-r,a=t+r,l=o-r,c=o+r;let u=null,d=1/0;return e.visit((e,i,r,h,g)=>{if(i>a||s>h||r>c||l>g)return!0;if(!e.length){let i=e;do{const e=i.data,r=e.x-t,s=e.y-o,a=Math.sqrt(r*r+s*s);de(e.r,n)>=a&&d>a&&(u=e,d=a),i=i.next}while(i)}return!1}),u?{node:u,distance:d}:null}function ye(e,t,o,n=30,i,r=0){let s=null;if(i){const e=pe(i,t,o,n,r);e&&(s={node:e.node,datum:e.node.datum,x:e.node.x,y:e.node.y,distance:e.distance})}for(const r of e){let e=null;switch(r.type){case"point":if(i)break;e=me(r,t,o,n);break;case"line":e=be(r,t,o,n);break;case"rect":e=ke(r,t,o);break;case"heatcell":e=we(r,t,o);break;case"area":if(!1===r.interactive)break;e=Ae(r,t,o);break;case"candlestick":e=je(r,t,o)}e&&n>e.distance&&(s&&e.distance>=s.distance||(s=e))}return s}function ve(e,t,o){if(0===e.length)return null;const n=Se(e,t);if(0>n)return null;if(Math.abs(e[n][0]-t)>o)return null;let i=n,r=n;n>0&&e[n][0]>=t?(i=n-1,r=n):e.length-1>n&&(i=n,r=n+1);const[s,a]=e[i],[l,c]=e[r];return l===s?a:a+Math.max(0,Math.min(1,(t-s)/(l-s)))*(c-a)}function me(e,t,o,n=30){const i=t-e.x,r=o-e.y,s=Math.sqrt(i*i+r*r);return s>de(e.r,n)?null:{node:e,datum:e.datum,x:e.x,y:e.y,distance:s}}function be(e,t,o,n=30){var i,r,s,a;if(0===e.path.length)return null;const l=Se(e.path,t);if(0>l)return null;const[c,u]=e.path[l];let d;if(e.path.length>1){let n=1/0;const i=Math.max(0,l-1),r=Math.min(e.path.length-2,l);for(let s=i;r>=s;s++){const[i,r]=e.path[s],[a,l]=e.path[s+1],c=xe(t,o,i,r,a,l);n>c&&(n=c)}d=n}else{const e=t-c,n=o-u;d=Math.sqrt(e*e+n*n)}const h=null!==(a=null!==(r=null===(i=e.style)||void 0===i?void 0:i.strokeWidth)&&void 0!==r?r:null===(s=e.style)||void 0===s?void 0:s.lineWidth)&&void 0!==a?a:1;return d>Math.max(5,h/2+2,n)?null:{node:e,datum:Array.isArray(e.datum)&&e.datum[l]?e.datum[l]:e.datum,x:c,y:u,distance:d}}function xe(e,t,o,n,i,r){const s=i-o,a=r-n,l=s*s+a*a;if(0===l)return Math.sqrt(Math.pow(e-o,2)+Math.pow(t-n,2));let c=((e-o)*s+(t-n)*a)/l;c=Math.max(0,Math.min(1,c));const u=n+c*a;return Math.sqrt(Math.pow(e-(o+c*s),2)+Math.pow(t-u,2))}function ke(e,t,o){const n=ue(t,o,e);return n.hit?{node:e,datum:e.datum,x:n.cx,y:n.cy,distance:0}:null}function we(e,t,o){const n=ue(t,o,e);return n.hit?{node:e,datum:e.datum,x:n.cx,y:n.cy,distance:0}:null}function je(e,t,o){const n=e.bodyWidth/2,i=Math.min(e.openY,e.closeY);if(!(e.x-n-3>t||t>e.x+n+3||e.highY-3>o||o>e.lowY+3)){const n=i+Math.max(Math.max(e.openY,e.closeY)-i,1)/2,r=t-e.x,s=o-n;return{node:e,datum:e.datum,x:e.x,y:n,distance:Math.sqrt(r*r+s*s)}}return null}function Ae(e,t,o){if(0===e.topPath.length)return null;const n=Se(e.topPath,t);if(0>n)return null;const[i,r]=e.topPath[n],s=t-i,a=o-r,l=Math.sqrt(s*s+a*a);return{node:e,datum:Array.isArray(e.datum)&&e.datum[n]?e.datum[n]:e.datum,x:i,y:r,distance:l}}function Se(e,t){if(0===e.length)return-1;let o=0,n=e.length-1;for(;n>o;){const i=o+n>>1;t>e[i][0]?o=i+1:n=i}return o>0&&Math.abs(e[o][0]-t)>=Math.abs(e[o-1][0]-t)?o-1:o}function Oe(e){var t,o;const n=new Map;for(const o of e){const e=null!==(t=o.group)&&void 0!==t?t:"_default";let i=n.get(e);i||(i=[],n.set(e,i)),i.push(o)}for(const e of n.values()){e.sort((e,t)=>e.x-t.x||e.y-t.y);for(let t=0;e.length>t;t++)e[t]._groupIndex=t}const i=Array.from(n.keys()).sort((e,t)=>{const o=n.get(e),i=n.get(t);return(o.length>0?o[0].y:0)-(i.length>0?i[0].y:0)}),r=Array.from(n.values()).flat();r.sort((e,t)=>e.x-t.x||e.y-t.y);const s=new Map;for(let e=0;r.length>e;e++){r[e]._flatIndex=e;const t=null===(o=r[e].datum)||void 0===o?void 0:o.id;null!=t&&s.set(t+"",e)}return{flat:r,groups:i,byGroup:n,idToIdx:s}}function Me(e,t){var o,n;if(0===e.flat.length)return{flatIndex:-1,group:"_default",indexInGroup:-1};const i=Math.max(0,Math.min(t,e.flat.length-1)),r=e.flat[i];return{flatIndex:i,group:null!==(o=r.group)&&void 0!==o?o:"_default",indexInGroup:null!==(n=r._groupIndex)&&void 0!==n?n:0}}function Ce(e,t,o){const{group:n,indexInGroup:i}=t,r=o.byGroup.get(n);switch(e){case"ArrowRight":return r.length-1>i?r[i+1]._flatIndex:t.flatIndex;case"ArrowLeft":return i>0?r[i-1]._flatIndex:t.flatIndex;case"ArrowDown":{const e=o.groups.indexOf(n);return o.groups.length-1>e?_e(o,o.groups[e+1],r[i]):t.flatIndex}case"ArrowUp":{const e=o.groups.indexOf(n);return e>0?_e(o,o.groups[e-1],r[i]):t.flatIndex}case"PageDown":return Math.min(t.flatIndex+Math.max(1,Math.floor(.1*o.flat.length)),o.flat.length-1);case"PageUp":return Math.max(t.flatIndex-Math.max(1,Math.floor(.1*o.flat.length)),0);case"Home":return 0;case"End":return o.flat.length-1;case"Escape":return-1;default:return null}}function _e(e,t,o){const n=e.byGroup.get(t);let i=0,r=Math.abs(n[0].x-o.x);for(let e=1;n.length>e;e++){const t=Math.abs(n[e].x-o.x);r>t&&(r=t,i=e)}return n[i]._flatIndex}function Pe(e){const t=e.datum||{};return Object.assign(Object.assign({},"object"!=typeof t||null===t||Array.isArray(t)?{}:t),{data:t,x:e.x,y:e.y,time:e.x,value:e.y})}function Le(e,o,n,i,r,s){t.useEffect(()=>{if(!e)return;const t=setInterval(()=>{var t;const a=o.current;if(!a||0===a.lastIngestTime)return;const l="undefined"!=typeof performance?performance.now():Date.now(),c=null!==(t=e.threshold)&&void 0!==t?t:5e3,u=l-a.lastIngestTime>c;u!==r&&(s(u),n.current=!0,i())},1e3);return()=>clearInterval(t)},[e,r,i])}ce.GROUP_COLOR_MAP_CAP=1e3,ce.QUADTREE_THRESHOLD=500;const Te={fill:t=>e.jsx("rect",{style:t,width:16,height:16}),line:t=>e.jsx("line",{style:t,x1:0,y1:0,x2:16,y2:16})};function Re(e,t,o,n){let i;return i="function"==typeof o?o(e):(0,Te[o])(n(e,t)),i}function Be(){return e.jsx("path",{d:"M4,8.8 L7.2,12 L12.8,4.8",fill:"none",stroke:"white",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}function De(e,t,o){return o&&o.size>0?o.has(e.label)?1:.3:null!=t?e.label===t?1:.3:1}const Ie=(t,o,n,i,r,s,a,l,c,u)=>{const{type:d="fill",styleFn:h,items:g}=t,f=[];let p=0;const y=!(!o&&!n),v="isolate"===u||void 0===u&&null!=r;return g.forEach((t,u)=>{const m=Re(t,u,d,h),b=De(t,i,r),x=r&&r.size>0&&r.has(t.label);f.push(e.jsxs("g",{transform:`translate(0,${p})`,onClick:o?()=>o(t):void 0,onMouseEnter:n?()=>n(t):void 0,onMouseLeave:n?()=>n(null):void 0,tabIndex:y?l===s&&u===a?0:-1:void 0,role:y?"option":void 0,"aria-selected":y&&v?x||!1:void 0,"aria-current":y&&!v&&null!=i&&t.label===i||void 0,"aria-label":t.label,onKeyDown:y?e=>{var n;if("Enter"!==e.key&&" "!==e.key||(e.preventDefault(),o&&o(t)),"ArrowDown"===e.key||"ArrowUp"===e.key){e.preventDefault();const t=(u+("ArrowDown"===e.key?1:-1)+g.length)%g.length;c(l,t);const o=null===(n=e.currentTarget.parentElement)||void 0===n?void 0:n.children[t];o instanceof SVGElement&&o.focus()}}:void 0,onFocus:y?e=>{c(l,u),n&&n(t);const o=e.currentTarget.querySelector(".semiotic-legend-focus-ring");o&&o.setAttribute("visibility","visible")}:void 0,onBlur:y?e=>{n&&n(null);const t=e.currentTarget.querySelector(".semiotic-legend-focus-ring");t&&t.setAttribute("visibility","hidden")}:void 0,style:{cursor:y?"pointer":"default",opacity:b,transition:"opacity 150ms ease",pointerEvents:"all",outline:"none"},children:[y&&e.jsx("rect",{className:"semiotic-legend-focus-ring",x:-2,y:-2,width:24+7*t.label.length,height:20,fill:"none",stroke:"var(--semiotic-focus, #005fcc)",strokeWidth:2,rx:3,visibility:"hidden"}),m,x&&e.jsx(Be,{}),e.jsx("text",{y:8,x:22,dominantBaseline:"central",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)",children:t.label})]},"legend-item-"+u)),p+=22}),f};function Ne({config:t,orientation:o="vertical",width:n=100}){const{colorFn:i,domain:r,label:s,format:a}=t,l=a||(e=>Math.round(100*e)/100+""),c="grad-legend-"+y.useId();if("horizontal"===o){const t=12,o=Math.min(n,200),a=Math.max(0,(n-o)/2),u=[];for(let t=0;64>=t;t++){const o=t/64;u.push(e.jsx("stop",{offset:100*o+"%",stopColor:i(r[0]+o*(r[1]-r[0]))},t))}return e.jsxs("g",{"aria-label":s||"Gradient legend",children:[e.jsx("defs",{children:e.jsx("linearGradient",{id:c,x1:"0%",y1:"0%",x2:"100%",y2:"0%",children:u})}),s&&e.jsx("text",{x:a+o/2,y:-4,textAnchor:"middle",fontSize:11,fill:"var(--semiotic-text, #333)",children:s}),e.jsx("rect",{x:a,y:0,width:o,height:t,fill:`url(#${c})`,rx:2}),e.jsx("text",{x:a,y:t+12,textAnchor:"start",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",children:l(r[0])}),e.jsx("text",{x:a+o,y:t+12,textAnchor:"end",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",children:l(r[1])})]})}const u=[];for(let t=0;64>=t;t++){const o=t/64;u.push(e.jsx("stop",{offset:100*o+"%",stopColor:i(r[1]-o*(r[1]-r[0]))},t))}return e.jsxs("g",{"aria-label":s||"Gradient legend",children:[s&&e.jsx("text",{x:7,y:-6,textAnchor:"middle",fontSize:11,fill:"var(--semiotic-text, #333)",children:s}),e.jsx("defs",{children:e.jsx("linearGradient",{id:c,x1:"0%",y1:"0%",x2:"0%",y2:"100%",children:u})}),e.jsx("rect",{x:0,y:0,width:14,height:100,fill:`url(#${c})`,rx:2}),e.jsx("text",{x:19,y:10,fontSize:10,fill:"var(--semiotic-text-secondary, #666)",children:l(r[1])}),e.jsx("text",{x:19,y:100,fontSize:10,fill:"var(--semiotic-text-secondary, #666)",children:l(r[0])})]})}function He(t){const{legendGroups:o,customClickBehavior:n,customHoverBehavior:i,highlightedCategory:r,isolatedCategories:s,legendInteraction:a,title:l="Legend",width:c=100,height:u=20,orientation:d="vertical"}=t,[h,g]=y.useState(0),[f,p]=y.useState(0),v=y.useCallback((e,t)=>{g(e),p(t)},[]),m="vertical"===d?(({legendGroups:t,width:o,customClickBehavior:n,customHoverBehavior:i,highlightedCategory:r,isolatedCategories:s,focusedGroupIndex:a,focusedItemIndex:l,onFocusedIndexChange:c,legendInteraction:u})=>{let d=24;const h=[];return t.forEach((t,g)=>{d+=5,h.push(e.jsx("line",{stroke:"gray",x1:0,y1:d,x2:o,y2:d},"legend-top-line legend-symbol-"+g)),d+=8,t.label&&(d+=16,h.push(e.jsx("text",{y:d,className:"legend-group-label",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)",children:t.label},"legend-text-"+g)),d+=8),h.push(e.jsx("g",{className:"legend-item",transform:`translate(0,${d})`,children:Ie(t,n,i,r,s,a,l,g,c,u)},"legend-group-"+g)),d+=22*t.items.length+8}),h})({legendGroups:o||[],width:c,customClickBehavior:n,customHoverBehavior:i,highlightedCategory:r,isolatedCategories:s,focusedGroupIndex:h,focusedItemIndex:f,onFocusedIndexChange:v,legendInteraction:a}):(({legendGroups:t,height:o,width:n,customClickBehavior:i,customHoverBehavior:r,highlightedCategory:s,isolatedCategories:a,focusedGroupIndex:l,focusedItemIndex:c,onFocusedIndexChange:u,legendInteraction:d})=>{let h=0;const g=[];t.forEach((t,o)=>{let f=0;t.label&&(f+=16);const p=((t,o,n,i,r,s,a,l,c,u,d)=>{const{type:h="fill",styleFn:g,items:f}=t,p=[];let y=0,v=0;const m=!(!o&&!n),b="isolate"===u||void 0===u&&null!=r;f.forEach((t,u)=>{const x=Re(t,u,h,g),k=De(t,i,r),w=r&&r.size>0&&r.has(t.label),j=26+7*t.label.length;d&&d>0&&y>0&&y+j>d&&(v++,y=0),p.push(e.jsxs("g",{transform:`translate(${y},${22*v})`,onClick:o?()=>o(t):void 0,onMouseEnter:n?()=>n(t):void 0,onMouseLeave:n?()=>n(null):void 0,tabIndex:m?l===s&&u===a?0:-1:void 0,role:m?"option":void 0,"aria-selected":m&&b?w||!1:void 0,"aria-current":m&&!b&&null!=i&&t.label===i||void 0,"aria-label":t.label,onKeyDown:m?e=>{var n;if("Enter"!==e.key&&" "!==e.key||(e.preventDefault(),o&&o(t)),"ArrowRight"===e.key||"ArrowLeft"===e.key){e.preventDefault();const t=(u+("ArrowRight"===e.key?1:-1)+f.length)%f.length;c(l,t);const o=null===(n=e.currentTarget.parentElement)||void 0===n?void 0:n.children[t];o instanceof SVGElement&&o.focus()}}:void 0,onFocus:m?e=>{c(l,u),n&&n(t);const o=e.currentTarget.querySelector(".semiotic-legend-focus-ring");o&&o.setAttribute("visibility","visible")}:void 0,onBlur:m?e=>{n&&n(null);const t=e.currentTarget.querySelector(".semiotic-legend-focus-ring");t&&t.setAttribute("visibility","hidden")}:void 0,style:{cursor:m?"pointer":"default",opacity:k,transition:"opacity 150ms ease",pointerEvents:"all",outline:"none"},children:[m&&e.jsx("rect",{className:"semiotic-legend-focus-ring",x:-2,y:-2,width:24+7*t.label.length,height:20,fill:"none",stroke:"var(--semiotic-focus, #005fcc)",strokeWidth:2,rx:3,visibility:"hidden"}),x,w&&e.jsx(Be,{}),e.jsx("text",{y:8,x:22,dominantBaseline:"central",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)",children:t.label})]},"legend-item-"+u)),y+=j});let x=0,k=0;for(const e of f){const t=26+7*e.label.length;d&&d>0&&k>0&&k+t>d?(x=Math.max(x,k),k=t):k+=t}x=Math.max(x,k);const w=v+1;return{items:p,offset:x,totalRows:w,totalHeight:22*w}})(t,i,r,s,a,l,c,o,u,d,n);f+=p.offset+5,g.push(Object.assign(Object.assign({label:t.label},p),{offset:f,totalRows:p.totalRows,totalHeight:p.totalHeight})),h+=f+12});let f=h>n?0:Math.max(0,(n-h)/2);const p=[];return g.forEach((n,i)=>{const r=t[i];r.label&&(p.push(e.jsx("text",{transform:`translate(${f},0) rotate(90)`,textAnchor:"start",className:"legend-group-label",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)",children:r.label},"legend-text-"+i)),f+=16),p.push(e.jsx("g",{className:"legend-item",transform:`translate(${f},0)`,children:n.items},"legend-group-"+i)),f+=n.offset+5,t[i+1]&&p.push(e.jsx("line",{stroke:"gray",x1:f,y1:-8,x2:f,y2:(n.totalHeight||o)+0+8},"legend-top-line legend-symbol-"+i)),f+=12}),e.jsx("g",{children:p})})({legendGroups:o||[],title:l,height:u,width:c,customClickBehavior:n,customHoverBehavior:i,highlightedCategory:r,isolatedCategories:s,focusedGroupIndex:h,focusedItemIndex:f,onFocusedIndexChange:v,legendInteraction:a}),b=!(!n&&!i);return e.jsxs("g",{role:b?"listbox":void 0,"aria-multiselectable":!(!b||"isolate"!==a&&(void 0!==a||null==s))||void 0,"aria-label":"Chart legend",style:{fontFamily:"var(--semiotic-font-family, sans-serif)"},children:[void 0!==l&&""!==l&&"vertical"===d&&e.jsx("text",{className:"legend-title",y:16,x:c/2,textAnchor:"middle",style:{fontSize:"var(--semiotic-legend-font-size, 12px)"},fill:"var(--semiotic-text, #333)",children:l}),m]})}function We(e){return"object"==typeof e&&null!==e&&"legendGroups"in e}function Ee(e){return"object"==typeof e&&null!==e&&"gradient"in e}function Fe(t){const{legend:o,totalWidth:n,totalHeight:i,margin:r,legendPosition:s="right",title:a,legendHoverBehavior:l,legendClickBehavior:c,legendHighlightedCategory:u,legendIsolatedCategories:d,legendInteraction:h}=t;if(!o)return null;const g="top"===s||"bottom"===s;let f,p;return"left"===s?(f=4,p=r.top):"top"===s?(f=0,p=a?32:8):"bottom"===s?(f=0,p=i-r.bottom+50):(f=n-r.right+10,p=r.top),e.jsx("g",{transform:`translate(${f}, ${p})`,children:Ee(o)?e.jsx(Ne,{config:o.gradient,orientation:g?"horizontal":"vertical",width:g?n:100}):We(o)?e.jsx(He,{legendGroups:o.legendGroups,title:"",width:g?n:100,orientation:g?"horizontal":"vertical",customHoverBehavior:l,customClickBehavior:c,highlightedCategory:u,isolatedCategories:d,legendInteraction:h}):o})}function $e(e){return"string"==typeof e?{type:e}:e}function ze({orient:o,config:n,values:i,scale:r,size:s,length:l}){const c=function(e){var t,o,n,i,r;return{type:e.type,bins:null!==(t=e.bins)&&void 0!==t?t:20,fill:null!==(o=e.fill)&&void 0!==o?o:"#4e79a7",fillOpacity:null!==(n=e.fillOpacity)&&void 0!==n?n:.5,stroke:null!==(i=e.stroke)&&void 0!==i?i:"none",strokeWidth:null!==(r=e.strokeWidth)&&void 0!==r?r:1}}(n),u="top"===o||"bottom"===o,d=t.useMemo(()=>{if(0===i.length)return null;const t=r.domain(),n=s-8;if("boxplot"===c.type){const t=function(e){const t=[...e].sort((e,t)=>e-t),o=t.length;if(0===o)return null;const n=t[Math.floor(.25*o)],i=t[Math.floor(.5*o)],r=t[Math.floor(.75*o)],s=r-n;return{q1:n,median:i,q3:r,whiskerLow:Math.max(t[0],n-1.5*s),whiskerHigh:Math.min(t[o-1],r+1.5*s)}}(i);if(!t)return null;const{q1:s,median:a,q3:l,whiskerLow:d,whiskerHigh:h}=t,g=Math.min(.5*n,20),f=(n-g)/2+4;if(u){const t=r(s),n=r(l),i=r(a),u=r(d),p=r(h),y="top"===o?-1:1,v=0;return e.jsxs("g",{"data-testid":"marginal-boxplot-"+o,children:[e.jsx("line",{x1:u,y1:v+y*(f+g/2),x2:p,y2:v+y*(f+g/2),stroke:c.fill,strokeWidth:c.strokeWidth}),e.jsx("line",{x1:u,y1:v+y*f,x2:u,y2:v+y*(f+g),stroke:c.fill,strokeWidth:c.strokeWidth}),e.jsx("line",{x1:p,y1:v+y*f,x2:p,y2:v+y*(f+g),stroke:c.fill,strokeWidth:c.strokeWidth}),e.jsx("rect",{x:Math.min(t,n),y:"top"===o?v-f-g:v+f,width:Math.abs(n-t),height:g,fill:c.fill,fillOpacity:c.fillOpacity,stroke:"none"===c.stroke?c.fill:c.stroke,strokeWidth:c.strokeWidth}),e.jsx("line",{x1:i,y1:"top"===o?v-f-g:v+f,x2:i,y2:"top"===o?v-f:v+f+g,stroke:c.fill,strokeWidth:2})]})}{const t=r(s),n=r(l),i=r(a),u=r(d),p=r(h),y="left"===o?-1:1,v=0;return e.jsxs("g",{"data-testid":"marginal-boxplot-"+o,children:[e.jsx("line",{x1:v+y*(f+g/2),y1:u,x2:v+y*(f+g/2),y2:p,stroke:c.fill,strokeWidth:c.strokeWidth}),e.jsx("line",{x1:v+y*f,y1:u,x2:v+y*(f+g),y2:u,stroke:c.fill,strokeWidth:c.strokeWidth}),e.jsx("line",{x1:v+y*f,y1:p,x2:v+y*(f+g),y2:p,stroke:c.fill,strokeWidth:c.strokeWidth}),e.jsx("rect",{x:"left"===o?v-f-g:v+f,y:Math.min(t,n),width:g,height:Math.abs(n-t),fill:c.fill,fillOpacity:c.fillOpacity,stroke:"none"===c.stroke?c.fill:c.stroke,strokeWidth:c.strokeWidth}),e.jsx("line",{x1:"left"===o?v-f-g:v+f,y1:i,x2:"left"===o?v-f:v+f+g,y2:i,stroke:c.fill,strokeWidth:2})]})}}const d=a.bin().domain(t).thresholds(c.bins)(i);if(0===d.length)return null;const h=Math.max(...d.map(e=>e.length));if(0===h)return null;if("histogram"===c.type)return e.jsx("g",{"data-testid":"marginal-histogram-"+o,children:d.map((t,i)=>{if(null==t.x0||null==t.x1)return null;const s=t.length/h*n;if(u){const n=r(t.x0),a=r(t.x1)-r(t.x0);return e.jsx("rect",{x:n,y:"top"===o?-4-s:4,width:Math.max(a,.5),height:s,fill:c.fill,fillOpacity:c.fillOpacity,stroke:c.stroke,strokeWidth:c.strokeWidth},i)}{const n=r(t.x0),a=r(t.x1)-r(t.x0);return e.jsx("rect",{x:"left"===o?-4-s:4,y:Math.min(n,n+a),width:s,height:Math.abs(a),fill:c.fill,fillOpacity:c.fillOpacity,stroke:c.stroke,strokeWidth:c.strokeWidth},i)}})});if("violin"===c.type){const t=n/2+4,i=[];for(const e of d){if(null==e.x0||null==e.x1)continue;const s=e.length/h*(n/2),a=r((e.x0+e.x1)/2);i.push(u?`${a},${"top"===o?-(t-s):t-s}`:`${"left"===o?-(t-s):t-s},${a}`)}for(let e=d.length-1;e>=0;e--){const s=d[e];if(null==s.x0||null==s.x1)continue;const a=s.length/h*(n/2),l=r((s.x0+s.x1)/2);i.push(u?`${l},${"top"===o?-(t+a):t+a}`:`${"left"===o?-(t+a):t+a},${l}`)}return e.jsx("g",{"data-testid":"marginal-violin-"+o,children:e.jsx("polygon",{points:i.join(" "),fill:c.fill,fillOpacity:c.fillOpacity,stroke:"none"===c.stroke?c.fill:c.stroke,strokeWidth:c.strokeWidth})})}if("ridgeline"===c.type){const t=[];if(u){const e=0,i=null!=d[0].x0?r(d[0].x0):0;t.push(`M${i},${e}`);for(const e of d){if(null==e.x0||null==e.x1)continue;const i=e.length/h*n,s=r((e.x0+e.x1)/2);t.push(`L${s},${"top"===o?-i-4:i+4}`)}const s=null!=d[d.length-1].x1?r(d[d.length-1].x1):l;t.push(`L${s},${e}`),t.push("Z")}else{const e=0,i=null!=d[0].x0?r(d[0].x0):0;t.push(`M${e},${i}`);for(const e of d){if(null==e.x0||null==e.x1)continue;const i=e.length/h*n,s=r((e.x0+e.x1)/2);t.push(`L${"left"===o?-i-4:i+4},${s}`)}const s=null!=d[d.length-1].x1?r(d[d.length-1].x1):l;t.push(`L${e},${s}`),t.push("Z")}return e.jsx("g",{"data-testid":"marginal-ridgeline-"+o,children:e.jsx("path",{d:t.join(" "),fill:c.fill,fillOpacity:c.fillOpacity,stroke:"none"===c.stroke?c.fill:c.stroke,strokeWidth:c.strokeWidth})})}return null},[i,r,c,s,l,o,u,4]);return d?e.jsx("g",{className:"marginal-"+o,"data-testid":"marginal-"+o,children:d}):null}function Ye(e,t=120,o=8){if(!e)return[];const n=Math.max(1,Math.floor(t/o)),i=e.split(/\s+/),r=[];let s="";for(const e of i)s&&s.length+1+e.length>n?(r.push(s),s=e):s=s?`${s} ${e}`:e;return s&&r.push(s),r}function Ge(e,t,o,n){return"curly"===e?n?`M0,0 C${.6*o},0 ${.4*o},${t/2} ${o},${t/2} C${.4*o},${t/2} ${.6*o},${t} 0,${t}`:`M0,0 C0,${.6*o} ${t/2},${.4*o} ${t/2},${o} C${t/2},${.4*o} ${t},${.6*o} ${t},0`:n?`M0,0 L${o},0 L${o},${t} L0,${t}`:`M0,0 L0,${o} L${t},${o} L${t},0`}function qe(t,o,n,i){if(!t)return e.jsx("g",{className:"annotation-note"});const{label:r,title:s,orientation:a,align:l,wrap:c=120,noWrap:u}=t;if(!r&&!s)return e.jsx("g",{className:"annotation-note"});let d=a;d||(d=Math.abs(o)>Math.abs(n)?"leftRight":"topBottom");let h=l;h&&"dynamic"!==h||(h="topBottom"===d?0>o?"right":"left":0>n?"bottom":"top");let g="start";"topBottom"===d?"right"===h?g="end":"middle"===h&&(g="middle"):g=0>o?"end":"start";const f=16,p=s?u?[s]:Ye(s,c):[],y=r?u?[r]:Ye(r,c):[],v="leftRight"===d?"end"===g?-4:4:0;let m=0;const b=[],x=i||"var(--semiotic-annotation-color, var(--semiotic-text, #333))";p.length>0&&(b.push(e.jsx("text",{className:"annotation-note-title",fill:x,textAnchor:g,fontWeight:"bold",children:p.map((t,o)=>e.jsx("tspan",{x:v,dy:0===o?0:f,children:t},o))},"annotation-note-title")),m=p.length*f),y.length>0&&b.push(e.jsx("text",{className:"annotation-note-label",fill:x,textAnchor:g,y:m,children:y.map((t,o)=>e.jsx("tspan",{x:v,dy:0===o?0:f,children:t},o))},"annotation-note-label"));let k=null;if((s||r)&&(0!==o||0!==n))if("topBottom"===d){const t=Math.min(c,120);let o=0,n=t;"end"===g?(o=-t,n=0):"middle"===g&&(o=-t/2,n=t/2),k=e.jsx("line",{className:"note-line",x1:o,x2:n,y1:0,y2:0,stroke:i||"var(--semiotic-text-secondary, currentColor)"})}else{const t=(p.length+y.length)*f+(y.length>0?f:0);let o=0,n=t;"bottom"===h?(o=-t,n=0):"middle"===h&&(o=-t/2,n=t/2),k=e.jsx("line",{className:"note-line",x1:0,x2:0,y1:o,y2:n,stroke:i||"var(--semiotic-text-secondary, currentColor)"})}const w=Math.max(0,p.length+y.length-1)*f;let j=0;return"topBottom"===d?j=0>n?-(w+2):18:"leftRight"===d&&(j="middle"===h?-(w+f+(y.length>0&&p.length>0?2:0))/2+8:"bottom"===h||0>n?-(w+2):18),e.jsxs("g",{className:"annotation-note",transform:`translate(${o},${n})`,children:[e.jsx("g",{className:"annotation-note-content",transform:0!==j?`translate(0,${j})`:void 0,children:b}),k]})}function Xe(t,o,n,i,r){var s;const a=[];switch(t){case"callout-circle":{const t=((null==o?void 0:o.radius)||0)+((null==o?void 0:o.radiusPadding)||0);t>0&&a.push(e.jsx("circle",{r:t,fill:"none",stroke:n||"var(--semiotic-text-secondary, currentColor)"},"subject-circle"));break}case"callout-rect":{const t=(null==o?void 0:o.width)||0,i=(null==o?void 0:o.height)||0;(t>0||i>0)&&a.push(e.jsx("rect",{width:t,height:i,fill:"none",stroke:n||"var(--semiotic-text-secondary, currentColor)"},"subject-rect"));break}case"callout-custom":(null==o?void 0:o.custom)&&a.push(...Array.isArray(o.custom)?o.custom:[o.custom]);break;case"xy-threshold":{const t=i||0,s=r||0;if(void 0!==(null==o?void 0:o.x)){const i=(o.x||0)-t;a.push(e.jsx("line",{x1:i,y1:(o.y1||0)-s,x2:i,y2:(o.y2||0)-s,stroke:n||"var(--semiotic-text-secondary, currentColor)",strokeDasharray:"5,5"},"threshold-line"))}else if(void 0!==(null==o?void 0:o.y)){const i=(o.y||0)-s;a.push(e.jsx("line",{x1:(o.x1||0)-t,y1:i,x2:(o.x2||0)-t,y2:i,stroke:n||"var(--semiotic-text-secondary, currentColor)",strokeDasharray:"5,5"},"threshold-line"))}else void 0!==(null==o?void 0:o.x1)||void 0!==(null==o?void 0:o.x2)?a.push(e.jsx("line",{x1:(o.x1||0)-t,y1:0,x2:(o.x2||0)-t,y2:0,stroke:n||"var(--semiotic-text-secondary, currentColor)",strokeDasharray:"5,5"},"threshold-line")):void 0===(null==o?void 0:o.y1)&&void 0===(null==o?void 0:o.y2)||a.push(e.jsx("line",{x1:0,y1:(o.y1||0)-s,x2:0,y2:(o.y2||0)-s,stroke:n||"var(--semiotic-text-secondary, currentColor)",strokeDasharray:"5,5"},"threshold-line"));break}case"bracket":{const t=null!==(s=null==o?void 0:o.width)&&void 0!==s?s:null==o?void 0:o.height;void 0!==t&&a.push(e.jsx("path",{d:Ge((null==o?void 0:o.type)||"curly",t,(null==o?void 0:o.depth)||30,void 0===(null==o?void 0:o.width)),fill:"none",stroke:n||"var(--semiotic-text-secondary, currentColor)"},"bracket-path"));break}}return e.jsx("g",{className:"annotation-subject",children:a})}function Ve(t,o,n,i,r,s){const a=[];let l=0,c=0;if("callout-circle"!==r&&"label"!==r||!(null==s?void 0:s.radius)){if("callout-rect"===r&&s){const e=s.width||0,n=s.height||0;if(e>0||n>0){const i=e/2,r=n/2,s=t-i,a=o-r;if(0!==s||0!==a){const t=Math.abs(s),o=Math.abs(a),u=e/2,d=n/2,h=t*d>o*u?u/t:d/o;l=i+s*h,c=r+a*h}}}else if("bracket"===r&&s){const e=s.width,t=s.height,o=s.depth||30;void 0!==e?(l=e/2,c=o):void 0!==t&&(l=o,c=t/2)}}else{const e=(s.radius||0)+(s.radiusPadding||0);if(e>0&&(0!==t||0!==o)){const n=Math.atan2(o,t);l=Math.cos(n)*e,c=Math.sin(n)*e}}if(Math.sqrt(Math.pow(t-l,2)+Math.pow(o-c,2))>.5&&(a.push(e.jsx("line",{x1:l,y1:c,x2:t,y2:o,stroke:i||"var(--semiotic-text-secondary, currentColor)"},"connector-line")),"arrow"===(null==n?void 0:n.end))){const n=10,r=16/180*Math.PI,s=Math.atan2(o-c,t-l);a.push(e.jsx("path",{d:`M${l},${c}L${l+n*Math.cos(s+r)},${c+n*Math.sin(s+r)}L${l+n*Math.cos(s-r)},${c+n*Math.sin(s-r)}Z`,fill:i||"var(--semiotic-text-secondary, currentColor)",stroke:"none"},"connector-arrow"))}return e.jsx("g",{className:"annotation-connector",children:a})}function Ue(t){const{x:o=0,y:n=0,dx:i,dy:r,nx:s,ny:a,note:l,connector:c,subject:u,type:d,color:h,className:g,disable:f,events:p={},"data-testid":y}=t,v=new Set(Array.isArray(f)?f:[]);let m=i||0,b=r||0;null!=s&&(m=s-o),null!=a&&(b=a-n);const x="string"==typeof d?d:"label";if("bracket"===x&&u&&0===m&&0===b)if(void 0!==u.width){m=u.width/2;const e=u.depth||30;b=e+(0>e?-5:5)}else if(void 0!==u.height){const e=u.depth||30;m=e+(0>e?-5:5),b=u.height/2}return e.jsxs("g",Object.assign({className:("annotation "+(g||"")).trim(),transform:`translate(${o},${n})`,"data-testid":y},p,{children:[!v.has("connector")&&Ve(m,b,c,h,x,u),!v.has("subject")&&Xe(x,u,h,o,n),!v.has("note")&&qe(l,m,b,h)]}))}function Ke(t){var o,n;const{noteData:i}=t,{screenCoordinates:r}=i,s="string"==typeof i.type?i.type:"label",a=i.eventListeners||i.events||{};if(i.coordinates&&r){const t=i.nx||r[0][0]+(null!==(o=i.dx)&&void 0!==o?o:0),a=i.ny||r[0][1]+(null!==(n=i.dy)&&void 0!==n?n:0),l=r.map((o,n)=>{const r=Object.assign({},i,{note:0===n?i.note:{label:""},x:o[0],y:o[1],nx:t,ny:a});return e.jsx(Ue,Object.assign({"data-testid":"semiotic-annotation"},r,{type:s}),"multi-annotation-"+n)});return e.jsx("g",{children:l})}const l=i.note||{title:"none",label:i.label},c=`${l.label}-${l.title}-${i.i}`;return e.jsx(Ue,Object.assign({"data-testid":"semiotic-annotation",events:a},i,{type:s}),c)}function Qe(e,t){var o,n,i;const r=null!==(n=null===(o=t.scales)||void 0===o?void 0:o.x)&&void 0!==n?n:null===(i=t.scales)||void 0===i?void 0:i.time;return r?null!=e.x?r(e.x):t.xAccessor&&null!=e[t.xAccessor]?r(e[t.xAccessor]):null:null}function Ze(e,t){var o,n,i;const r=null!==(n=null===(o=t.scales)||void 0===o?void 0:o.y)&&void 0!==n?n:null===(i=t.scales)||void 0===i?void 0:i.value;return r?null!=e.y?r(e.y):t.yAccessor&&null!=e[t.yAccessor]?r(e[t.yAccessor]):null:null}function Je(e,t,o){var n,i,r,s;const a=e.anchor||"fixed";if("latest"===a){if(null!=e.pointId&&o.pointNodes&&o.pointNodes.length>0)for(let i=o.pointNodes.length-1;i>=0;i--){const r=o.pointNodes[i];if(r.pointId===e.pointId){const e={x:r.x,y:r.y};return null===(n=o.stickyPositionCache)||void 0===n||n.set(t,e),e}}const r=function(e){var t,o,n,i,r,s;const a=e.data;if(!a||0===a.length)return null;const l=a[a.length-1],c=null!==(o=null===(t=e.scales)||void 0===t?void 0:t.x)&&void 0!==o?o:null===(n=e.scales)||void 0===n?void 0:n.time,u=null!==(r=null===(i=e.scales)||void 0===i?void 0:i.y)&&void 0!==r?r:null===(s=e.scales)||void 0===s?void 0:s.value;if(!c||!u)return null;const d=l[e.xAccessor||"x"],h=l[e.yAccessor||"y"];return null==d||null==h?null:{x:c(d),y:u(h)}}(o);return r&&(null===(i=o.stickyPositionCache)||void 0===i||i.set(t,r)),r}let l=null,c=null;if(null!=e.pointId&&o.pointNodes){const t=o.pointNodes.find(t=>t.pointId===e.pointId);t&&(l=t.x,c=t.y)}if(null!=l&&null!=c||(l=Qe(e,o),c=Ze(e,o)),null!=l&&null!=c)return null===(r=o.stickyPositionCache)||void 0===r||r.set(t,{x:l,y:c}),{x:l,y:c};if("sticky"===a){const e=null===(s=o.stickyPositionCache)||void 0===s?void 0:s.get(t);if(e)return e}return null}function et(e,t,o,n=50){return!(-n>e||e>(o.width||0)+n||-n>t||t>(o.height||0)+n)}const tt={linear:c.curveLinear,monotoneX:c.curveMonotoneX,monotoneY:c.curveMonotoneY,step:c.curveStep,stepAfter:c.curveStepAfter,stepBefore:c.curveStepBefore,basis:c.curveBasis,cardinal:c.curveCardinal,catmullRom:c.curveCatmullRom};function ot(t){return function(t,o,n){var i,r,s,a,u,d,h,g,f,p,y,m,b,x,k,w,j,A,S,O,M,C,_,P,L,T,R,B,D,I,N,H,W,E,F,$,z,Y,G,q,X,V,U,K,Q,Z,J,ee;switch(t.type){case"label":{const i=Je(t,o,n);if(!i)return null;const{x:r,y:s}=i;return et(r,s,n)?e.jsx(Ke,{noteData:{x:r,y:s,dx:t.dx||30,dy:t.dy||-30,note:{label:t.label,title:t.title,wrap:t.wrap||120},type:"label",connector:t.connector||{end:"arrow"},color:t.color}},"ann-"+o):null}case"callout":{const i=Je(t,o,n);if(!i)return null;const{x:r,y:s}=i;return et(r,s,n)?e.jsx(Ke,{noteData:{x:r,y:s,dx:t.dx||30,dy:t.dy||-30,note:{label:t.label,title:t.title,wrap:t.wrap||120},type:"callout-circle",subject:{radius:t.radius||12},connector:t.connector||{end:"arrow"},color:t.color}},"ann-"+o):null}case"x-threshold":{const i=Qe(t,n);if(null==i)return null;const r=t.color||"#f97316",s=t.labelPosition||"top";let a;return a="bottom"===s?(n.height||0)-4:"center"===s?(n.height||0)/2:12,e.jsxs("g",{children:[e.jsx("line",{x1:i,y1:0,x2:i,y2:n.height||0,stroke:r,strokeWidth:t.strokeWidth||1.5,strokeDasharray:t.strokeDasharray||"6,3"}),t.label&&e.jsx("text",{x:i+4,y:a,fill:r,fontSize:12,fontWeight:"bold",children:t.label})]},"ann-"+o)}case"y-threshold":{const i=Ze(t,n);if(null==i)return null;const r=t.color||"#f97316",s=t.labelPosition||"right";let a,l;return"left"===s?(a=4,l="start"):"center"===s?(a=(n.width||0)/2,l="middle"):(a=(n.width||0)-4,l="end"),e.jsxs("g",{children:[e.jsx("line",{x1:0,y1:i,x2:n.width||0,y2:i,stroke:r,strokeWidth:t.strokeWidth||1.5,strokeDasharray:t.strokeDasharray||"6,3"}),t.label&&e.jsx("text",{x:a,y:i-4,textAnchor:l,fill:r,fontSize:12,fontWeight:"bold",children:t.label})]},"ann-"+o)}case"enclose":{const i=(t.coordinates||[]).map(e=>({x:Qe(Object.assign(Object.assign({},e),{type:"point"}),n),y:Ze(Object.assign(Object.assign({},e),{type:"point"}),n),r:1})).filter(e=>null!=e.x&&null!=e.y);if(2>i.length)return null;const r=l.packEnclose(i),s=t.padding||10;return e.jsxs("g",{children:[e.jsx("circle",{cx:r.x,cy:r.y,r:r.r+s,fill:t.fill||"none",fillOpacity:t.fillOpacity||.1,stroke:t.color||"var(--semiotic-text-secondary, #666)",strokeWidth:1.5,strokeDasharray:"4,2"}),t.label&&e.jsx("text",{x:r.x,y:r.y-r.r-s-4,textAnchor:"middle",fill:t.color||"var(--semiotic-text-secondary, #666)",fontSize:12,children:t.label})]},"ann-"+o)}case"rect-enclose":{const i=(t.coordinates||[]).map(e=>({x:Qe(Object.assign(Object.assign({},e),{type:"point"}),n),y:Ze(Object.assign(Object.assign({},e),{type:"point"}),n)})).filter(e=>null!=e.x&&null!=e.y);if(2>i.length)return null;const r=t.padding||10,s=i.map(e=>e.x),a=i.map(e=>e.y),l=Math.min(...s)-r,c=Math.max(...s)+r,u=Math.min(...a)-r,d=Math.max(...a)+r;return e.jsxs("g",{children:[e.jsx("rect",{x:l,y:u,width:c-l,height:d-u,fill:t.fill||"none",fillOpacity:t.fillOpacity||.1,stroke:t.color||"var(--semiotic-text-secondary, #666)",strokeWidth:1.5,strokeDasharray:"4,2"}),t.label&&e.jsx("text",{x:(l+c)/2,y:u-4,textAnchor:"middle",fill:t.color||"var(--semiotic-text-secondary, #666)",fontSize:12,children:t.label})]},"ann-"+o)}case"highlight":{const i=n.data||[],r="function"==typeof t.filter?i.filter(t.filter):t.field&&null!=t.value?i.filter(e=>e[t.field]===t.value):[],s={stroke:t.color||"#f97316",strokeWidth:2,fill:"none"};return e.jsx("g",{children:r.map((o,i)=>{const r=Qe(o,n),a=Ze(o,n);if(null==r||null==a)return null;const l="function"==typeof t.r?t.r(o):t.r||6,c="function"==typeof t.style?t.style(o):t.style||s;return e.jsx("circle",Object.assign({cx:r,cy:a,r:l},c),"hl-"+i)})},"ann-"+o)}case"bracket":{const i=Qe(t,n),r=Ze(t,n);return e.jsx(Ke,{noteData:{x:null!=i?i:0,y:null!=r?r:0,dx:t.dx||0,dy:t.dy||0,note:{label:t.label,title:t.title,wrap:t.wrap||120},type:"bracket",subject:{type:t.bracketType||"curly",width:t.width,height:t.height,depth:t.depth||30},color:t.color}},"ann-"+o)}case"trend":{const l=n.data||[];if(2>l.length)return null;const c=n.xAccessor||"x",g=n.yAccessor||"y",f=l.map(e=>[e[c],e[g]]).filter(e=>null!=e[0]&&null!=e[1]);if(2>f.length)return null;const p=null!==(r=null===(i=n.scales)||void 0===i?void 0:i.x)&&void 0!==r?r:null===(s=n.scales)||void 0===s?void 0:s.time,y=null!==(u=null===(a=n.scales)||void 0===a?void 0:a.y)&&void 0!==u?u:null===(d=n.scales)||void 0===d?void 0:d.value;if(!p||!y)return null;const m=t.method||"linear";let b;b="loess"===m?function(e,t=.3){const o=e.length;if(2>o)return e.slice();const n=e.slice().sort((e,t)=>e[0]-t[0]),i=n.map(e=>e[0]),r=n.map(e=>e[1]),s=Math.max(2,Math.ceil(t*o)),a=[];for(let e=0;o>e;e++){const t=i[e],n=i.map(e=>Math.abs(e-t)),l=n.slice().sort((e,t)=>e-t)[Math.min(s-1,o-1)]||1,c=[];for(let e=0;o>e;e++){const t=0===l?0:n[e]/l;c[e]=1>t?Math.pow(1-Math.pow(t,3),3):0}let u=0,d=0,h=0,g=0,f=0;for(let e=0;o>e;e++){const t=c[e];0!==t&&(u+=t,d+=t*i[e],h+=t*r[e],g+=t*i[e]*i[e],f+=t*i[e]*r[e])}if(0===u){a.push([t,r[e]]);continue}const p=u*g-d*d;if(1e-12>Math.abs(p))a.push([t,h/u]);else{const e=(u*f-d*h)/p;a.push([t,(h-e*d)/u+e*t])}}return a}(f,null!==(h=t.bandwidth)&&void 0!==h?h:.3):("polynomial"===m?v.default.polynomial(f,{order:t.order||2}):v.default.linear(f)).points;const x=b.map(([e,t])=>`${p(e)},${y(t)}`).join(" "),k=t.color||"#6366f1";return e.jsxs("g",{children:[e.jsx("polyline",{points:x,fill:"none",stroke:k,strokeWidth:t.strokeWidth||2,strokeDasharray:t.strokeDasharray||"6,3"}),t.label&&e.jsx("text",{x:p(b[b.length-1][0])+4,y:y(b[b.length-1][1])-4,fill:k,fontSize:11,children:t.label})]},"ann-"+o)}case"band":{const i=null!==(f=null===(g=n.scales)||void 0===g?void 0:g.y)&&void 0!==f?f:null===(p=n.scales)||void 0===p?void 0:p.value,r=null!==(y=null==i?void 0:i(t.y0))&&void 0!==y?y:0,s=null!==(m=null==i?void 0:i(t.y1))&&void 0!==m?m:n.height||0;return e.jsxs("g",{children:[e.jsx("rect",{x:0,y:Math.min(r,s),width:n.width||0,height:Math.abs(s-r),fill:t.fill||"var(--semiotic-primary, #6366f1)",fillOpacity:t.fillOpacity||.1}),t.label&&e.jsx("text",{x:(n.width||0)-4,y:Math.min(r,s)-4,textAnchor:"end",fill:t.color||"var(--semiotic-primary, #6366f1)",fontSize:11,children:t.label})]},"ann-"+o)}case"envelope":{const i=n.data||[];if(2>i.length)return null;const r=n.xAccessor||"x",s=null!==(x=null===(b=n.scales)||void 0===b?void 0:b.x)&&void 0!==x?x:null===(k=n.scales)||void 0===k?void 0:k.time,a=null!==(j=null===(w=n.scales)||void 0===w?void 0:w.y)&&void 0!==j?j:null===(A=n.scales)||void 0===A?void 0:A.value;if(!s||!a)return null;const l=t.upperAccessor||"upperBounds",u=t.lowerAccessor||"lowerBounds",d=t.filter,h=i.filter(e=>null!=e[l]&&null!=e[u]&&!(d&&!d(e))).sort((e,t)=>e[r]-t[r]);if(2>h.length)return null;const g=tt[n.curve||"linear"]||c.curveLinear,f=c.area().x(e=>s(e[r])).y0(e=>a(e[u])).y1(e=>a(e[l])).curve(g)(h);if(!f)return null;const p=t.fill||"#6366f1";return e.jsxs("g",{children:[e.jsx("path",{d:f,fill:p,fillOpacity:null!==(S=t.fillOpacity)&&void 0!==S?S:.15,stroke:"none"}),t.label&&h.length>0&&e.jsx("text",{x:s(h[h.length-1][r])+4,y:a(h[h.length-1][l])-4,fill:p,fontSize:11,children:t.label})]},"ann-"+o)}case"anomaly-band":{const i=n.data||[];if(2>i.length)return null;const r=n.yAccessor||"y",s=null!==(M=null===(O=n.scales)||void 0===O?void 0:O.x)&&void 0!==M?M:null===(C=n.scales)||void 0===C?void 0:C.time,a=null!==(P=null===(_=n.scales)||void 0===_?void 0:_.y)&&void 0!==P?P:null===(L=n.scales)||void 0===L?void 0:L.value;if(!s||!a)return null;const l=i.map(e=>e[r]).filter(e=>null!=e&&isFinite(e));if(2>l.length)return null;const c=l.reduce((e,t)=>e+t,0)/l.length,u=l.reduce((e,t)=>e+Math.pow(t-c,2),0)/l.length,d=Math.sqrt(u),h=null!==(T=t.threshold)&&void 0!==T?T:2,g=c-h*d,f=!1!==t.showBand,p=t.fill||"#6366f1",y=null!==(R=t.fillOpacity)&&void 0!==R?R:.1,v=t.anomalyColor||"#ef4444",m=null!==(B=t.anomalyRadius)&&void 0!==B?B:6,b=a(c+h*d),x=a(g),k=i.filter(e=>{const t=e[r];return null!=t&&Math.abs(t-c)>h*d});return e.jsxs("g",{children:[f&&e.jsx("rect",{x:0,y:Math.min(b,x),width:n.width||0,height:Math.abs(x-b),fill:p,fillOpacity:y}),k.map((t,o)=>{const i=Qe(t,n),r=Ze(t,n);return null==i||null==r?null:e.jsx("circle",{cx:i,cy:r,r:m,fill:v,fillOpacity:.7,stroke:v,strokeWidth:1.5},"anomaly-"+o)}),t.label&&e.jsx("text",{x:(n.width||0)-4,y:Math.min(b,x)-4,textAnchor:"end",fill:p,fontSize:11,children:t.label})]},"ann-"+o)}case"forecast":{const i=n.data||[];if(3>i.length)return null;const r=n.xAccessor||"x",s=n.yAccessor||"y",a=null!==(I=null===(D=n.scales)||void 0===D?void 0:D.x)&&void 0!==I?I:null===(N=n.scales)||void 0===N?void 0:N.time,l=null!==(W=null===(H=n.scales)||void 0===H?void 0:H.y)&&void 0!==W?W:null===(E=n.scales)||void 0===E?void 0:E.value;if(!a||!l)return null;const c=i.map(e=>[e[r],e[s]]).filter(e=>null!=e[0]&&null!=e[1]&&isFinite(e[0])&&isFinite(e[1])).sort((e,t)=>e[0]-t[0]);if(3>c.length)return null;let u;if("polynomial"===(t.method||"linear")){const e=v.default.polynomial(c,{order:t.order||2}).equation;u=t=>e.reduce((e,o,n)=>e+o*Math.pow(t,n),0)}else{const e=c.length;let t=0,o=0,n=0,i=0;for(const[e,r]of c)t+=e,o+=r,n+=e*e,i+=e*r;const r=e*n-t*t;if(1e-12>Math.abs(r))return null;const s=(e*i-t*o)/r,a=(o-s*t)/e;u=e=>a+s*e}const d=c.length,h=c.map(([e,t])=>t-u(e)).reduce((e,t)=>e+t*t,0),g=Math.sqrt(h/Math.max(d-2,1)),f=c.reduce((e,t)=>e+t[0],0)/d,p=c.reduce((e,t)=>e+Math.pow(t[0]-f,2),0),y=null!==(F=t.confidence)&&void 0!==F?F:.95,m=.99>y?.95>y?.9>y?1:1.645:1.96:2.576,b=null!==($=t.steps)&&void 0!==$?$:5,x=c[d-1][0],k=(x-c[0][0])/Math.max(d-1,1),w=[];for(let e=1;b>=e;e++)w.push(x+e*k);const j=[];for(const e of w){const t=u(e),o=g*Math.sqrt(1+1/d+(p>0?Math.pow(e-f,2)/p:0))*m;j.push({x:e,yCenter:t,yUpper:t+o,yLower:t-o})}const A=`M${j.map(e=>`${a(e.x)},${l(e.yUpper)}`).join(" L")} L${j.slice().reverse().map(e=>`${a(e.x)},${l(e.yLower)}`).join(" L")} Z`,S=j.map(e=>`${a(e.x)},${l(e.yCenter)}`).join(" "),O=`${a(x)},${l(u(x))}`,M=t.strokeColor||"#6366f1";return e.jsxs("g",{children:[e.jsx("path",{d:A,fill:t.fill||"#6366f1",fillOpacity:null!==(z=t.fillOpacity)&&void 0!==z?z:.15,stroke:"none"}),e.jsx("polyline",{points:`${O} ${S}`,fill:"none",stroke:M,strokeWidth:null!==(Y=t.strokeWidth)&&void 0!==Y?Y:2,strokeDasharray:null!==(G=t.strokeDasharray)&&void 0!==G?G:"6,3"}),t.label&&j.length>0&&e.jsx("text",{x:a(j[j.length-1].x)+4,y:l(j[j.length-1].yCenter)-4,fill:M,fontSize:11,children:t.label})]},"ann-"+o)}case"widget":{let i=null,r=null;if(null!=t.px&&null!=t.py)i=t.px,r=t.py;else{const e=Je(t,o,n);if(!e)return null;i=e.x,r=e.y}if(null==i||null==r)return null;if(!et(i,r,n))return null;const s=null!==(q=t.dx)&&void 0!==q?q:0,a=null!==(X=t.dy)&&void 0!==X?X:0,l=null!==(V=t.width)&&void 0!==V?V:32,c=null!==(U=t.height)&&void 0!==U?U:32,u=null!==(K=t.content)&&void 0!==K?K:e.jsx("span",{style:{fontSize:18,cursor:"default"},title:t.label||"Info",children:"ℹ️"});return e.jsx("foreignObject",{x:i+s-l/2,y:r+a-c/2,width:l,height:c,style:{overflow:"visible",pointerEvents:"auto"},children:e.jsx("div",{style:{width:l,height:c,display:"flex",alignItems:"center",justifyContent:"center"},children:u})},"ann-"+o)}case"text":{const i=Je(t,o,n);if(!i)return null;const{x:r,y:s}=i;return e.jsx("text",{x:r+(t.dx||0),y:s+(t.dy||0),fill:t.color||"var(--semiotic-text, #333)",fontSize:t.fontSize||11,dominantBaseline:"middle",style:{fontFamily:"inherit"},children:t.label},"ann-text-"+o)}case"category-highlight":{const i=t.category;if(null==i)return null;const r=null===(Q=n.scales)||void 0===Q?void 0:Q.o,s=null===(Z=n.scales)||void 0===Z?void 0:Z.x,a=null===(J=n.scales)||void 0===J?void 0:J.y,l=(null==r?void 0:r.bandwidth)?r:(null==s?void 0:s.bandwidth)?s:(null==a?void 0:a.bandwidth)?a:null;if(!l)return null;const c=l(i);if(null==c)return null;const u=l.bandwidth(),d=t.color||"var(--semiotic-primary, #4589ff)",h=null!==(ee=t.opacity)&&void 0!==ee?ee:.15,g=t.label;return e.jsxs("g",(n.projection?"vertical"===n.projection:l===s)?{children:[e.jsx("rect",{x:c,y:0,width:u,height:n.height||0,fill:d,fillOpacity:h}),g&&e.jsx("text",{x:c+u/2,y:12,textAnchor:"middle",fill:d,fontSize:12,fontWeight:"bold",children:g})]}:{children:[e.jsx("rect",{x:0,y:c,width:n.width||0,height:u,fill:d,fillOpacity:h}),g&&e.jsx("text",{x:12,y:c+u/2,dominantBaseline:"middle",fill:d,fontSize:12,fontWeight:"bold",children:g})]},"ann-"+o)}default:return null}}}let nt={positions:new Map};const it=new Set;function rt(){for(const e of it)e()}function st(e,t){const o=nt.positions.get(e);if(null==o?void 0:o.locked)return;if(!o||o.sourceId!==t)return;const n=new Map(nt.positions);n.delete(e),nt={positions:n},rt()}function at(e,t){const o=nt.positions.get(e);if(!(null==o?void 0:o.locked))return;if(t&&o.sourceId!==t)return;const n=new Map(nt.positions);n.delete(e),nt={positions:n},rt()}function lt(){return nt}function ct(e){return it.add(e),()=>it.delete(e)}const ut={positions:new Map};function dt(){return()=>{}}function ht(){return ut}function gt(e){if(e)return"dashed"===e?"6,4":"dotted"===e?"2,4":e}function ft(e,t,o){if("left"===e||"right"===e){const n="left"===e?o:0,i="left"===e?-1:1,r=Math.ceil(t/8);let s="M0,"+n;for(let e=0;r>e;e++){const o=8*(e+1);s+=`L${Math.min(8*e+4,t)},${n+4*i}`,s+=`L${Math.min(o,t)},${n}`}return s}{const n="bottom"===e?0:t,i="bottom"===e?1:-1,r=Math.ceil(o/8);let s=`M${n},0`;for(let e=0;r>e;e++){const t=8*(e+1);s+=`L${n+4*i},${Math.min(8*e+4,o)}`,s+=`L${n},${Math.min(t,o)}`}return s}}function pt(o){const{width:n,height:i,totalWidth:r,totalHeight:s,margin:a,scales:l,showAxes:c,axes:u,showGrid:d,xFormat:h,yFormat:g}=o,f=t.useMemo(()=>{var e;if(!l)return[];const t=null==u?void 0:u.find(e=>"bottom"===e.orient),o=(null==t?void 0:t.tickFormat)||h||yt,i=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5,r=l.x.ticks(Math.min(i,Math.max(2,Math.floor(n/70)))),s=r.map(e=>e.valueOf()),a=r.map((e,t)=>({value:e,pixel:l.x(e),label:o(e,t,s)})),c=a.reduce((e,t)=>Math.max(e,"string"==typeof t.label?6.5*t.label.length:"number"==typeof t.label?6.5*(t.label+"").length:60),0);return vt(a,Math.max(55,c+8))},[l,u,h,n]),p=t.useMemo(()=>{var e;if(!l)return[];const t=null==u?void 0:u.find(e=>"left"===e.orient),o=(null==t?void 0:t.tickFormat)||g||yt,n=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5;return vt(l.y.ticks(Math.min(n,Math.max(2,Math.floor(i/30)))).map(e=>({value:e,pixel:l.y(e),label:o(e)})),22)},[l,u,g,i]),y=d&&l,v=c&&l;if(!y&&!v)return null;const m=null==u?void 0:u.find(e=>"bottom"===e.orient),b=null==u?void 0:u.find(e=>"left"===e.orient),x=v&&(!m||!1!==m.baseline),k=v&&(!b||!1!==b.baseline),w=(null==m?void 0:m.jaggedBase)||!1,j=(null==b?void 0:b.jaggedBase)||!1,A="var(--semiotic-border, #ccc)";return e.jsx("svg",{width:r,height:s,style:{position:"absolute",top:0,left:0,pointerEvents:"none"},children:e.jsxs("g",{transform:`translate(${a.left},${a.top})`,children:[y&&(()=>{var t,o;const r=gt(null===(t=null==u?void 0:u.find(e=>"bottom"===e.orient))||void 0===t?void 0:t.gridStyle),s=gt(null===(o=null==u?void 0:u.find(e=>"left"===e.orient))||void 0===o?void 0:o.gridStyle);return e.jsxs("g",{className:"stream-grid",children:[f.map((t,o)=>e.jsx("line",{x1:t.pixel,y1:0,x2:t.pixel,y2:i,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1,strokeDasharray:r},"xgrid-"+o)),p.map((t,o)=>e.jsx("line",{x1:0,y1:t.pixel,x2:n,y2:t.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1,strokeDasharray:s},"ygrid-"+o))]})})(),x&&!w&&e.jsx("line",{x1:0,y1:i,x2:n,y2:i,stroke:A,strokeWidth:1}),w&&e.jsx("path",{d:ft("bottom",n,i),fill:"none",stroke:A,strokeWidth:1}),k&&!j&&e.jsx("line",{x1:0,y1:0,x2:0,y2:i,stroke:A,strokeWidth:1}),j&&e.jsx("path",{d:ft("left",n,i),fill:"none",stroke:A,strokeWidth:1})]})})}function yt(e,t,o){return e instanceof Date?`${e.toLocaleString("en",{month:"short"})} ${e.getDate()}`:"number"==typeof e?Math.round(100*e)/100+"":e+""}function vt(e,t){if(2>=e.length)return e;const o=[e[0]];for(let n=1;e.length-1>n;n++)t>Math.abs(e[n].pixel-o[o.length-1].pixel)||o.push(e[n]);const n=e[e.length-1];return t>Math.abs(n.pixel-o[o.length-1].pixel)?o[o.length-1]=n:o.push(n),o}function mt(o){var n,i;const{width:r,height:s,totalWidth:a,totalHeight:l,margin:c,scales:u,showAxes:d,axes:h,xLabel:g,yLabel:f,yLabelRight:p,xFormat:y,yFormat:v,showGrid:m,title:b,legend:x,legendHoverBehavior:k,legendClickBehavior:w,legendHighlightedCategory:j,legendIsolatedCategories:A,legendPosition:S="right",foregroundGraphics:O,marginalGraphics:M,xValues:C,yValues:_,annotations:P,svgAnnotationRules:L,xAccessor:T,yAccessor:R,annotationData:B,pointNodes:D,curve:I,underlayRendered:N,linkedCrosshairName:H,linkedCrosshairSourceId:W,children:E}=o,F=t.useMemo(()=>{var e;if(!d||!u)return[];const t=null==h?void 0:h.find(e=>"bottom"===e.orient),o=(null==t?void 0:t.tickFormat)||y||yt,n=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5,i=u.x.ticks(Math.min(n,Math.max(2,Math.floor(r/70)))),s=i.map(e=>e.valueOf()),a=i.map((e,t)=>({value:e,pixel:u.x(e),label:o(e,t,s)})),l=a.reduce((e,t)=>Math.max(e,"string"==typeof t.label?6.5*t.label.length:"number"==typeof t.label?6.5*(t.label+"").length:60),0),c=(null==t?void 0:t.autoRotate)?Math.max(20,Math.min(l+8,55)):Math.max(55,l+8);let g=vt(a,c);if(g.length>1&&(g=g.filter((e,t)=>0===t||e.label+""!=g[t-1].label+"")),(null==t?void 0:t.includeMax)&&g.length>0){const e=u.x.domain()[1],t=u.x(e),n=g[g.length-1].pixel;if(Math.abs(t-n)>1){const i=o(e,g.length,s);c>t-n&&g.length>1&&(g=g.slice(0,-1)),g.push({value:e,pixel:t,label:i})}}return g},[d,u,h,y,r]),$=t.useMemo(()=>{var e;if(!d||!u)return[];const t=null==h?void 0:h.find(e=>"left"===e.orient),o=(null==t?void 0:t.tickFormat)||v||yt,n=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5;let i=vt(u.y.ticks(Math.min(n,Math.max(2,Math.floor(s/30)))).map(e=>({value:e,pixel:u.y(e),label:o(e)})),22);if(i.length>1&&(i=i.filter((e,t)=>0===t||e.label+""!=i[t-1].label+"")),(null==t?void 0:t.includeMax)&&i.length>0){const e=u.y.domain()[1],t=u.y(e),n=i[i.length-1].pixel;if(Math.abs(t-n)>1){const r=o(e);22>Math.abs(t-n)&&i.length>1&&(i=i.slice(0,-1)),i.push({value:e,pixel:t,label:r})}}return i},[d,u,h,v,s]),z=t.useMemo(()=>{var e;if(!d||!u)return[];const t=null==h?void 0:h.find(e=>"right"===e.orient);if(!t)return[];const o=t.tickFormat||v||yt,n=null!==(e=t.ticks)&&void 0!==e?e:5;return vt(u.y.ticks(Math.min(n,Math.max(2,Math.floor(s/30)))).map(e=>({value:e,pixel:u.y(e),label:o(e)})),22)},[d,u,h,v,s]),Y=t.useRef(new Map),G=t.useRef(null!==(n=null==P?void 0:P.length)&&void 0!==n?n:0),q=null!==(i=null==P?void 0:P.length)&&void 0!==i?i:0;G.current!==q&&(G.current=q,Y.current=new Map);const X=t.useMemo(()=>{if(!P||0===P.length)return null;const e=ot(),t={scales:u?{x:u.x,y:u.y,time:u.x,value:u.y}:null,timeAxis:"x",xAccessor:T,yAccessor:R,width:r,height:s,data:B,frameType:"xy",pointNodes:D,curve:I,stickyPositionCache:Y.current};return P.map((o,n)=>{if(L){const i=L(o,n,t);return null!=i?i:e(o,n,t)}return e(o,n,t)}).filter(Boolean)},[P,L,r,s,T,R,B,u,D,I]),V=function(e){var o;const n=t.useSyncExternalStore(e?ct:dt,e?lt:ht,e?lt:ht);return e&&null!==(o=n.positions.get(e))&&void 0!==o?o:null}(H);return t.useEffect(()=>{if(!(null==V?void 0:V.locked)||!H)return;const e=e=>{"Escape"===e.key&&at(H)};return document.addEventListener("keydown",e),()=>document.removeEventListener("keydown",e)},[null==V?void 0:V.locked,H]),d||b||x||O||M||X&&X.length>0||m||E||V?e.jsxs("svg",{role:"img",width:a,height:l,overflow:"visible",style:{position:"absolute",top:0,left:0,pointerEvents:"none",overflow:"visible"},children:[e.jsx("title",{children:"string"==typeof b?b:"XY Chart"}),e.jsx("desc",{children:"string"==typeof b?b+" — XY data visualization":"XY data visualization"}),e.jsxs("g",{transform:`translate(${c.left},${c.top})`,children:[m&&u&&!N&&(()=>{var t,o;const n=gt(null===(t=null==h?void 0:h.find(e=>"bottom"===e.orient))||void 0===t?void 0:t.gridStyle),i=gt(null===(o=null==h?void 0:h.find(e=>"left"===e.orient))||void 0===o?void 0:o.gridStyle);return e.jsxs("g",{className:"stream-grid",children:[F.map((t,o)=>e.jsx("line",{x1:t.pixel,y1:0,x2:t.pixel,y2:s,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1,strokeDasharray:n},"xgrid-"+o)),$.map((t,o)=>e.jsx("line",{x1:0,y1:t.pixel,x2:r,y2:t.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1,strokeDasharray:i},"ygrid-"+o))]})})(),d&&u&&(()=>{const t=null==h?void 0:h.find(e=>"left"===e.orient),o=null==h?void 0:h.find(e=>"bottom"===e.orient),n=!t||!1!==t.baseline,i=!o||!1!==o.baseline,a=(null==t?void 0:t.jaggedBase)||!1,l=(null==o?void 0:o.jaggedBase)||!1,u=null==o?void 0:o.landmarkTicks,d=null==t?void 0:t.landmarkTicks,y="var(--semiotic-border, #ccc)",v="var(--semiotic-text-secondary, var(--semiotic-text, #666))",m="var(--semiotic-text, #333)",b=!!(null==o?void 0:o.autoRotate)&&F.length>1&&(()=>{const e=r/Math.max(F.length-1,1);return F.reduce((e,t)=>Math.max(e,"string"==typeof t.label?6.5*t.label.length:60),0)+8>e})();return e.jsxs("g",{className:"stream-axes",style:{fontFamily:"var(--semiotic-font-family, sans-serif)"},children:[!N&&i&&!l&&e.jsx("line",{x1:0,y1:s,x2:r,y2:s,stroke:y,strokeWidth:1}),!N&&l&&e.jsx("path",{d:ft("bottom",r,s),fill:"none",stroke:y,strokeWidth:1}),F.map((t,o)=>{const n=!!u&&("function"==typeof u?u(t.value,o):ge(t.value,o>0?F[o-1].value:void 0));return e.jsxs("g",{transform:`translate(${t.pixel},${s})`,children:[e.jsx("line",{y2:5,stroke:y,strokeWidth:1}),"string"==typeof t.label||"number"==typeof t.label?e.jsx("text",{y:b?10:18,textAnchor:b?"end":"middle",fontSize:n?11:10,fontWeight:n?600:400,fill:v,style:{userSelect:"none"},transform:b?"rotate(-45)":void 0,children:t.label}):e.jsx("foreignObject",{x:-30,y:6,width:60,height:24,style:{overflow:"visible"},children:e.jsx("div",{style:{textAlign:"center",fontSize:10,userSelect:"none"},children:t.label})})]},"xtick-"+o)}),g&&e.jsx("text",{x:r/2,y:s+40,textAnchor:"middle",fontSize:12,fill:m,style:{userSelect:"none"},children:g}),!N&&n&&!a&&e.jsx("line",{x1:0,y1:0,x2:0,y2:s,stroke:y,strokeWidth:1}),!N&&a&&e.jsx("path",{d:ft("left",r,s),fill:"none",stroke:y,strokeWidth:1}),$.map((t,o)=>{const n=!!d&&("function"==typeof d?d(t.value,o):ge(t.value,o>0?$[o-1].value:void 0));return e.jsxs("g",{transform:`translate(0,${t.pixel})`,children:[e.jsx("line",{x2:-5,stroke:y,strokeWidth:1}),"string"==typeof t.label||"number"==typeof t.label?e.jsx("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:n?11:10,fontWeight:n?600:400,fill:v,style:{userSelect:"none"},children:t.label}):e.jsx("foreignObject",{x:-68,y:-12,width:60,height:24,style:{overflow:"visible"},children:e.jsx("div",{style:{textAlign:"right",fontSize:10,userSelect:"none"},children:t.label})})]},"ytick-"+o)}),(()=>{const o=(null==t?void 0:t.label)||f;return o?e.jsx("text",{x:15-c.left,y:s/2,textAnchor:"middle",fontSize:12,fill:m,transform:`rotate(-90, ${15-c.left}, ${s/2})`,style:{userSelect:"none"},children:o}):null})(),(()=>{const t=null==h?void 0:h.find(e=>"right"===e.orient);if(!t||0===z.length)return null;const o=t.landmarkTicks,n=t.label||p;return e.jsxs(e.Fragment,{children:[!1!==t.baseline&&e.jsx("line",{x1:r,y1:0,x2:r,y2:s,stroke:y,strokeWidth:1}),z.map((t,n)=>{const i=!!o&&("function"==typeof o?o(t.value,n):ge(t.value,n>0?z[n-1].value:void 0));return e.jsxs("g",{transform:`translate(${r},${t.pixel})`,children:[e.jsx("line",{x2:5,stroke:y,strokeWidth:1}),"string"==typeof t.label||"number"==typeof t.label?e.jsx("text",{x:8,textAnchor:"start",dominantBaseline:"middle",fontSize:i?11:10,fontWeight:i?600:400,fill:v,style:{userSelect:"none"},children:t.label}):e.jsx("foreignObject",{x:8,y:-12,width:60,height:24,style:{overflow:"visible"},children:e.jsx("div",{style:{textAlign:"left",fontSize:10,userSelect:"none"},children:t.label})})]},"ytick-r-"+n)}),n&&e.jsx("text",{x:r+c.right-15,y:s/2,textAnchor:"middle",fontSize:12,fill:m,transform:`rotate(90, ${r+c.right-15}, ${s/2})`,style:{userSelect:"none"},children:n})]})})()]})})(),X,M&&u&&C&&_&&e.jsxs(e.Fragment,{children:[M.top&&e.jsx("g",{transform:"translate(0, 0)",children:e.jsx(ze,{orient:"top",config:$e(M.top),values:C,scale:u.x,size:c.top,length:r})}),M.bottom&&e.jsx("g",{transform:`translate(0, ${s})`,children:e.jsx(ze,{orient:"bottom",config:$e(M.bottom),values:C,scale:u.x,size:c.bottom,length:r})}),M.left&&e.jsx("g",{transform:"translate(0, 0)",children:e.jsx(ze,{orient:"left",config:$e(M.left),values:_,scale:u.y,size:c.left,length:s})}),M.right&&e.jsx("g",{transform:`translate(${r}, 0)`,children:e.jsx(ze,{orient:"right",config:$e(M.right),values:_,scale:u.y,size:c.right,length:s})})]}),O,V&&V.sourceId!==W&&(null==u?void 0:u.x)&&(()=>{const t=u.x(V.xValue);if(null==t||0>t||t>r)return null;const o=V.locked;return e.jsx("line",{x1:t,y1:0,x2:t,y2:s,stroke:o?"white":"var(--semiotic-text-secondary, rgba(0,0,0,0.25))",strokeWidth:o?1.5:1,strokeDasharray:o?"6,3":"4,4",pointerEvents:"none"})})(),E]}),b&&e.jsx("text",{x:a/2,y:20,textAnchor:"middle",fontSize:14,fontWeight:"bold",fill:"var(--semiotic-text, #333)",style:{userSelect:"none"},children:"string"==typeof b?b:null}),Fe({legend:x,totalWidth:a,totalHeight:l,margin:c,legendPosition:S,title:b,legendHoverBehavior:k,legendClickBehavior:w,legendHighlightedCategory:j,legendIsolatedCategories:A})]}):null}function bt(e,t="#4e79a7"){return e&&"string"==typeof e?e:t}const xt="undefined"==typeof window||"undefined"==typeof document,kt=y.createContext(null);function wt({children:t}){const[o,n]=y.useState(!1),i=y.useMemo(()=>({visible:o,setVisible:n}),[o]);return e.jsx(kt.Provider,{value:i,children:t})}function jt(){return y.useContext(kt)}const At={position:"absolute",width:1,height:1,overflow:"hidden",clip:"rect(0,0,0,0)",whiteSpace:"nowrap",border:0};function St(e,t){if(!e||0===e.length)return t+", empty";const o={};for(const t of e)o[t.type]=(o[t.type]||0)+1;const n=[],i={point:"points",line:"lines",area:"areas",rect:"bars",heatcell:"cells",circle:"nodes",candlestick:"candlesticks",wedge:"wedges",arc:"arcs",geoarea:"regions"},r=["point","line","area","rect","heatcell","circle","candlestick","wedge","arc","geoarea"],s=Object.keys(o).sort((e,t)=>{const o=r.indexOf(e),n=r.indexOf(t);return(-1===o?999:o)-(-1===n?999:n)});for(const e of s)n.push(`${o[e]} ${i[e]||e}`);return`${t}, ${n.join(", ")}`}function Ot(e,t,o){const n=[];return e>0&&n.push(e+" nodes"),t>0&&n.push(t+" edges"),0===n.length?o+", empty":`${o}, ${n.join(", ")}`}const Mt=e=>{if(null==e)return"";const t=Math.round(100*e)/100;return Number.isNaN(t)?"":t+""},Ct={position:"absolute",top:0,left:0,right:0,zIndex:5,padding:"14px 16px 12px",borderBottom:"1px solid var(--semiotic-border, #e0e0e0)",fontFamily:"var(--semiotic-font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif)",fontSize:13,lineHeight:1.5,color:"var(--semiotic-text, #333)",background:"var(--semiotic-bg, #fff)",borderRadius:"var(--semiotic-border-radius, 0px) var(--semiotic-border-radius, 0px) 0 0"},_t={marginBottom:8,paddingRight:28,color:"var(--semiotic-text-secondary, #666)",fontSize:12,letterSpacing:"0.01em"},Pt={position:"absolute",top:10,right:10,width:22,height:22,display:"flex",alignItems:"center",justifyContent:"center",border:"1px solid var(--semiotic-border, #e0e0e0)",background:"var(--semiotic-bg, #fff)",cursor:"pointer",color:"var(--semiotic-text-secondary, #666)",fontSize:13,lineHeight:1,padding:0,borderRadius:"var(--semiotic-border-radius, 4px)"},Lt={width:"100%",borderCollapse:"collapse",fontSize:12,marginTop:4,fontVariantNumeric:"tabular-nums"},Tt={textAlign:"left",padding:"5px 10px",borderBottom:"2px solid var(--semiotic-border, #e0e0e0)",fontWeight:600,fontSize:11,textTransform:"uppercase",letterSpacing:"0.04em",color:"var(--semiotic-text-secondary, #666)"},Rt={padding:"4px 10px",borderBottom:"1px solid var(--semiotic-border, #e0e0e0)"},Bt={textAlign:"left",fontSize:11,color:"var(--semiotic-text-secondary, #999)",marginBottom:4,fontStyle:"italic"};function Dt({scene:t,chartType:o,tableId:n,chartTitle:i}){var r;const[s,a]=y.useState(!1),l=jt(),c=null!==(r=null==l?void 0:l.visible)&&void 0!==r&&r,u=s||c,d=y.useRef(null),h=i?"Data summary for "+i:n?`Data summary for ${o} ${n}`:"Data summary for "+o,g=y.useCallback(()=>{s||c||a(!0)},[s,c]),f=y.useCallback(e=>{var t;c||(null===(t=d.current)||void 0===t?void 0:t.contains(e.relatedTarget))||a(!1)},[c]);if(!t||0===t.length)return n?e.jsx("span",{id:n,tabIndex:-1,style:At}):null;if(!u)return e.jsx("div",{id:n,tabIndex:-1,onFocus:g,style:At,role:"region","aria-label":h,children:e.jsxs("button",{type:"button",onClick:()=>a(!0),children:["View data summary (",t.length," elements)"]})});const p=function(e){var t,o,n,i,r,s,a,l,c,u,d,h,g,f,p,y,v,m,b,x,k,w,j,A,S;const O=[];if(!Array.isArray(e))return O;for(const M of e)if(M&&"object"==typeof M)try{switch(M.type){case"point":O.push({label:"Point",values:{x:M.x,y:M.y}});break;case"line":{const e=M.path,t=Array.isArray(M.datum)?M.datum:[];if(!Array.isArray(e))break;for(let o=0;e.length>o&&t.length>o;o++){const t=e[o];Array.isArray(t)&&O.push({label:"Line point",values:{x:t[0],y:t[1]}})}break}case"area":{const e=M.topPath,t=Array.isArray(M.datum)?M.datum:[];if(!Array.isArray(e))break;for(let o=0;e.length>o&&t.length>o;o++){const t=e[o];Array.isArray(t)&&O.push({label:"Area point",values:{x:t[0],y:t[1]}})}break}case"rect":{const e=null!=M.datum&&"object"==typeof M.datum?M.datum:{},r=null!==(o=null!==(t=e.category)&&void 0!==t?t:M.group)&&void 0!==o?o:"",s=null!==(i=null!==(n=e.value)&&void 0!==n?n:e.__aggregateValue)&&void 0!==i?i:e.total;O.push({label:"Bar",values:{category:r,value:null!=s?s:""}});break}case"heatcell":O.push({label:"Cell",values:{x:M.x,y:M.y,value:M.value}});break;case"wedge":O.push({label:"Wedge",values:{category:null!==(l=null!==(s=null===(r=M.datum)||void 0===r?void 0:r.category)&&void 0!==s?s:null===(a=M.datum)||void 0===a?void 0:a.label)&&void 0!==l?l:"",value:null!==(u=null===(c=M.datum)||void 0===c?void 0:c.value)&&void 0!==u?u:""}});break;case"circle":O.push({label:"Node",values:{id:null!==(h=null===(d=M.datum)||void 0===d?void 0:d.id)&&void 0!==h?h:"",x:null!==(g=M.cx)&&void 0!==g?g:M.x,y:null!==(f=M.cy)&&void 0!==f?f:M.y}});break;case"arc":O.push({label:"Arc",values:{id:null!==(y=null===(p=M.datum)||void 0===p?void 0:p.id)&&void 0!==y?y:"",x:null!==(v=M.cx)&&void 0!==v?v:M.x,y:null!==(m=M.cy)&&void 0!==m?m:M.y}});break;case"candlestick":O.push({label:"Candlestick",values:{x:M.x,open:M.open,high:M.high,low:M.low,close:M.close}});break;case"geoarea":O.push({label:"Region",values:{name:null!==(j=null!==(k=null===(x=null===(b=M.datum)||void 0===b?void 0:b.properties)||void 0===x?void 0:x.name)&&void 0!==k?k:null===(w=M.datum)||void 0===w?void 0:w.name)&&void 0!==j?j:"",value:null!==(S=null===(A=M.datum)||void 0===A?void 0:A.value)&&void 0!==S?S:""}})}}catch(e){}return O}(t),v=function(e){if(!e||0===e.length)return[];const t=new Set;for(const o of e)if(o&&o.values)for(const e of Object.keys(o.values))t.add(e);const o=[];for(const n of t){const t=[],i=new Set;for(const o of e){if(!o||!o.values)continue;const e=o.values[n];null!=e&&""!==e&&("number"==typeof e&&!Number.isNaN(e)&&Number.isFinite(e)?t.push(e):"number"==typeof e||"object"!=typeof e&&"function"!=typeof e&&i.add(e+""))}if(t.length>0){let e=t[0],i=t[0],r=0;for(const o of t)e>o&&(e=o),o>i&&(i=o),r+=o;o.push({name:n,count:t.length,numeric:!0,min:e,max:i,mean:r/t.length})}else if(i.size>0){const e=Array.from(i);o.push({name:n,count:e.length,numeric:!1,uniqueValues:e.slice(0,5)})}}return o}(p),m=function(e,t){const o=[e+" data points."];for(const e of t)if(e.numeric)o.push(`${e.name}: ${Mt(e.min)} to ${Mt(e.max)}, mean ${Mt(e.mean)}.`);else{const t=e.uniqueValues,n=t.length>3?`${t.slice(0,3).join(", ")}… (${e.count} unique)`:t.join(", ");o.push(`${e.name}: ${n}.`)}return o.join(" ")}(p.length,v),b=p.slice(0,5),x=new Set;for(const e of b)for(const t of Object.keys(e.values))x.add(t);const k=Array.from(x);return e.jsxs("div",{ref:d,id:n,tabIndex:-1,onBlur:f,style:Ct,role:"region","aria-label":h,children:[e.jsx("button",{type:"button",onClick:()=>{c&&l&&l.setVisible(!1),a(!1)},"aria-label":"Close data summary",style:Pt,children:"×"}),e.jsx("div",{role:"note",style:_t,children:m}),e.jsxs("table",{role:"table","aria-label":"Sample data for "+o,style:Lt,children:[e.jsxs("caption",{style:Bt,children:["First ",b.length," of ",p.length," data points"]}),e.jsx("thead",{children:e.jsxs("tr",{children:[e.jsx("th",{style:Tt,children:"type"}),k.map(t=>e.jsx("th",{style:Tt,children:t},t))]})}),e.jsx("tbody",{children:b.map((t,o)=>e.jsxs("tr",{children:[e.jsx("td",{style:Rt,children:t.label}),k.map(o=>{return e.jsx("td",{style:Rt,children:(n=t.values[o],null==n||""===n?"—":"number"==typeof n?Number.isNaN(n)?"—":Mt(n):"boolean"==typeof n?n?"true":"false":"object"==typeof n?"—":n+"")},o);var n})]},o))})]})]})}function It({nodes:t,edges:o,chartType:n,tableId:i,chartTitle:r}){var s,a,l,c,u,d,h,g,f,p,v,m,b,x;const[k,w]=y.useState(!1),j=jt(),A=null!==(s=null==j?void 0:j.visible)&&void 0!==s&&s,S=k||A,O=r?"Data summary for "+r:i?`Data summary for ${n} ${i}`:"Data summary for "+n,M=y.useRef(null),C=y.useCallback(()=>{k||A||w(!0)},[k,A]),_=y.useCallback(e=>{var t;A||(null===(t=M.current)||void 0===t?void 0:t.contains(e.relatedTarget))||w(!1)},[A]);if(!t||0===t.length)return i?e.jsx("span",{id:i,tabIndex:-1,style:At}):null;if(!S)return e.jsx("div",{id:i,tabIndex:-1,onFocus:C,style:At,role:"region","aria-label":O,children:e.jsxs("button",{type:"button",onClick:()=>w(!0),children:["View data summary (",t.length," nodes, ",o.length," edges)"]})});const P=Array.isArray(t)?t:[],L=Array.isArray(o)?o:[],T=new Map,R=new Map,B=new Map,D=new Map;for(const e of L){if(!e||"object"!=typeof e)continue;const t=null!==(a=e.datum)&&void 0!==a?a:e,o="object"==typeof t.source?null===(l=t.source)||void 0===l?void 0:l.id:t.source,n="object"==typeof t.target?null===(c=t.target)||void 0===c?void 0:c.id:t.target,i="number"==typeof t.value&&Number.isFinite(t.value)?t.value:0;if(null!=o&&""!==o){const e=o+"";R.set(e,(null!==(u=R.get(e))&&void 0!==u?u:0)+1),D.set(e,(null!==(d=D.get(e))&&void 0!==d?d:0)+i)}if(null!=n&&""!==n){const e=n+"";T.set(e,(null!==(h=T.get(e))&&void 0!==h?h:0)+1),B.set(e,(null!==(g=B.get(e))&&void 0!==g?g:0)+i)}}const I=[];for(let e=0;P.length>e;e++){const t=P[e];if(!t||"object"!=typeof t)continue;const o=null!==(p=null===(f=t.datum)||void 0===f?void 0:f.id)&&void 0!==p?p:t.id,n=null!=o?o+"":"node-"+e,i=null!==(v=T.get(n))&&void 0!==v?v:0,r=null!==(m=R.get(n))&&void 0!==m?m:0,s=null!==(b=B.get(n))&&void 0!==b?b:0,a=null!==(x=D.get(n))&&void 0!==x?x:0;I.push({id:n,degree:i+r,inDeg:i,outDeg:r,wDegree:s+a,wInDeg:s,wOutDeg:a})}I.sort((e,t)=>t.degree-e.degree);let N=0,H=0;if(I.length>0){let e=0;for(const t of I)e+=t.degree,t.degree>H&&(H=t.degree);N=e/I.length}const W=L.some(e=>{var t;const o=null!==(t=null==e?void 0:e.datum)&&void 0!==t?t:e;return"number"==typeof(null==o?void 0:o.value)&&Number.isFinite(o.value)}),E=[`${I.length} nodes, ${L.length} edges.`];I.length>0&&E.push(`Mean degree: ${Mt(N)}, max degree: ${H}.`);const F=I.slice(0,5);return e.jsxs("div",{ref:M,id:i,tabIndex:-1,onBlur:_,style:Ct,role:"region","aria-label":O,children:[e.jsx("button",{type:"button",onClick:()=>{A&&j&&j.setVisible(!1),w(!1)},"aria-label":"Close data summary",style:Pt,children:"×"}),e.jsx("div",{role:"note",style:_t,children:E.join(" ")}),e.jsxs("table",{role:"table","aria-label":"Node degree summary for "+n,style:Lt,children:[e.jsxs("caption",{style:Bt,children:["Top ",F.length," of ",I.length," nodes by degree"]}),e.jsx("thead",{children:e.jsxs("tr",{children:[e.jsx("th",{style:Tt,children:"id"}),e.jsx("th",{style:Tt,children:"degree"}),e.jsx("th",{style:Tt,children:"in"}),e.jsx("th",{style:Tt,children:"out"}),W&&e.jsx("th",{style:Tt,children:"w. degree"}),W&&e.jsx("th",{style:Tt,children:"w. in"}),W&&e.jsx("th",{style:Tt,children:"w. out"})]})}),e.jsx("tbody",{children:F.map((t,o)=>e.jsxs("tr",{children:[e.jsx("td",{style:Rt,children:t.id}),e.jsx("td",{style:Rt,children:t.degree}),e.jsx("td",{style:Rt,children:t.inDeg}),e.jsx("td",{style:Rt,children:t.outDeg}),W&&e.jsx("td",{style:Rt,children:Mt(t.wDegree)}),W&&e.jsx("td",{style:Rt,children:Mt(t.wInDeg)}),W&&e.jsx("td",{style:Rt,children:Mt(t.wOutDeg)})]},o))})]})]})}function Nt({summary:t}){return t?e.jsx("div",{role:"note",style:At,children:t}):null}function Ht({tableId:t}){return e.jsx("a",{href:"#"+t,style:At,onClick:e=>{e.preventDefault();const o=document.getElementById(t);o&&requestAnimationFrame(()=>o.focus())},onFocus:e=>{Object.assign(e.currentTarget.style,{position:"absolute",width:"auto",height:"auto",overflow:"visible",clip:"auto",whiteSpace:"normal",padding:"4px 8px",background:"var(--semiotic-bg, #fff)",color:"var(--semiotic-text, #000)",border:"2px solid var(--semiotic-focus, #005fcc)",borderRadius:"4px",zIndex:"10",fontSize:"12px",top:"4px",left:"4px"})},onBlur:e=>{const t=e.currentTarget;t.removeAttribute("style"),Object.assign(t.style,At)},children:"Skip to data table"})}function Wt({hoverPoint:t}){let o="";if(t){const e=t.data||t;o="object"==typeof e?"Focused on data point: "+Object.entries(e).filter(([,e])=>"object"!=typeof e&&"function"!=typeof e).map(([e,t])=>`${e}: ${t}`).join(", "):"Focused on data point: "+e}return e.jsx("div",{"aria-live":"polite","aria-atomic":"true",style:At,children:o})}const Et="var(--semiotic-focus, #005fcc)";function Ft({active:t,hoverPoint:o,margin:n,size:i,shape:r="circle",width:s,height:a}){if(!t||!o)return null;const l=o.x+n.left,c=o.y+n.top;let u;if("rect"===r&&null!=s&&null!=a){const t=Math.max(s,4),o=Math.max(a,4);u=e.jsx("rect",{x:l-t/2-3,y:c-o/2-3,width:t+6,height:o+6,rx:3,fill:"none",stroke:Et,strokeWidth:2,strokeDasharray:"4,2"})}else u=e.jsx("circle","wedge"===r?{cx:l,cy:c,r:12,fill:"none",stroke:Et,strokeWidth:2.5,strokeDasharray:"6,3"}:{cx:l,cy:c,r:8,fill:"none",stroke:Et,strokeWidth:2,strokeDasharray:"4,2"});return e.jsx("svg",{style:{position:"absolute",left:0,top:0,width:i[0],height:i[1],pointerEvents:"none",zIndex:2},"aria-hidden":"true",children:u})}function $t({x:t,y:o,containerWidth:n,containerHeight:i,margin:r,children:s,className:a="stream-frame-tooltip",zIndex:l=1}){const c=y.useRef(null),[u,d]=y.useState(null);y.useLayoutEffect(()=>{const e=c.current;if(!e)return;const t=e.getBoundingClientRect();d(e=>e&&e.width===t.width&&e.height===t.height?e:{width:t.width,height:t.height})},[s,a,n,i]);let h;return h=u?`translate(${u.width+12>n-t?"calc(-100% - 12px)":"12px"}, ${u.height+12>i-o?"calc(-100% - 4px)":"4px"})`:`translate(${t>.7*n?"calc(-100% - 12px)":"12px"}, ${.3*i>o?"4px":"calc(-100% - 4px)"})`,e.jsx("div",{ref:c,className:a,style:{position:"absolute",left:r.left+t,top:r.top+o,transform:h,pointerEvents:"none",zIndex:l,width:"max-content"},children:s})}function zt(e,t){return"function"==typeof e.addEventListener?(e.addEventListener("change",t),()=>e.removeEventListener("change",t)):(e.addListener(t),()=>e.removeListener(t))}function Yt(e,o,n){const i=t.useRef(null),[r,s]=t.useState(null);return t.useEffect(()=>{if(!o&&!n)return;const e=i.current;if(!e)return;const t=new ResizeObserver(e=>{for(const t of e){const{width:e,height:o}=t.contentRect;s(t=>t&&t.w===e&&t.h===o?t:{w:e,h:o})}});return t.observe(e),()=>t.disconnect()},[o,n]),[i,[o&&r?r.w:e[0],n&&r?r.h:e[1]]]}const Gt=/^var\(\s*(--[^,)]+)(?:\s*,\s*([^)]+))?\s*\)$/,qt=new WeakMap;let Xt=0,Vt=!1,Ut=null,Kt=null,Qt=null;function Zt(e,t){var o,n;if(!t)return t;const i=Gt.exec(t);if(!i)return t;const r=e.canvas;if(!r)return(null===(o=i[2])||void 0===o?void 0:o.trim())||t;!function(){if(Vt)return;if("undefined"==typeof window||"undefined"==typeof document)return;Vt=!0;const e=()=>{Xt++};if("undefined"!=typeof MutationObserver&&document.documentElement&&(Ut=new MutationObserver(e),Ut.observe(document.documentElement,{attributes:!0,attributeFilter:["class","style","data-theme","data-semiotic-theme"]})),"function"==typeof window.matchMedia)try{Kt=window.matchMedia("(prefers-color-scheme: dark)"),Qt=e,"function"==typeof Kt.addEventListener?Kt.addEventListener("change",Qt):"function"==typeof Kt.addListener&&Kt.addListener(Qt)}catch(e){}}();let s=qt.get(r);s&&s.version===Xt||(s={version:Xt,map:new Map},qt.set(r,s));const a=s.map.get(t);if(void 0!==a)return a;const l=getComputedStyle(r).getPropertyValue(i[1]).trim()||(null===(n=i[2])||void 0===n?void 0:n.trim())||t;return s.map.set(t,l),l}function Jt(e,t,o){return"function"==typeof e?e({size:t,margin:o}):e}function eo(e){const o=function(){const[e,o]=t.useState(()=>!("undefined"==typeof window||!window.matchMedia)&&window.matchMedia("(prefers-reduced-motion: reduce)").matches);return t.useEffect(()=>{if("undefined"==typeof window||!window.matchMedia)return;const e=window.matchMedia("(prefers-reduced-motion: reduce)");return o(e.matches),zt(e,e=>o(e.matches))},[]),e}(),n=t.useRef(o);n.current=o;const[i,r]=Yt(e.sizeProp,e.responsiveWidth,e.responsiveHeight),s=t.useMemo(()=>Object.assign(Object.assign({},e.marginDefault),e.userMargin),[e.marginDefault,e.userMargin]),a=r[0]-s.left-s.right,l=r[1]-s.top-s.bottom,c=Jt(e.foregroundGraphics,r,s),u=Jt(e.backgroundGraphics,r,s),d=L(e=>e.theme),{transition:h,introEnabled:g}=function(e,t){var o,n;if(!1===e)return{transition:void 0,introEnabled:!1};const i="undefined"!=typeof window&&(null===(o=window.matchMedia)||void 0===o?void 0:o.call(window,"(prefers-reduced-motion: reduce)").matches);return{transition:e?!0===e?{duration:300}:{duration:null!==(n=e.duration)&&void 0!==n?n:300,easing:"linear"===e.easing?"linear":"ease-out"}:t,introEnabled:!(i||!e||!0!==e&&!1===e.intro)}}(e.animate,e.transitionProp),f="semiotic-table-"+y.useId(),p=t.useRef(0),v=t.useRef(()=>{}),m=t.useCallback(()=>{p.current||(p.current=requestAnimationFrame(()=>v.current()))},[]);t.useEffect(()=>()=>{p.current&&(cancelAnimationFrame(p.current),p.current=0)},[]);const b=t.useRef(()=>{}),x=t.useRef(()=>{}),k=t.useRef(null),w=t.useRef(0),j=t.useCallback(()=>{w.current=0;const e=k.current;k.current=null,e&&b.current(e)},[]),A=t.useCallback(e=>{k.current={clientX:e.clientX,clientY:e.clientY},0===w.current&&(w.current=requestAnimationFrame(j))},[j]),S=t.useCallback(()=>{k.current=null,0!==w.current&&(cancelAnimationFrame(w.current),w.current=0),x.current()},[]);t.useEffect(()=>()=>{k.current=null,0!==w.current&&(cancelAnimationFrame(w.current),w.current=0)},[]);const O=e.themeDirtyRef;return t.useEffect(()=>{O&&(Xt++,O.current=!0,m())},[d,m,O]),{reducedMotion:o,reducedMotionRef:n,responsiveRef:i,size:r,margin:s,adjustedWidth:a,adjustedHeight:l,resolvedForeground:c,resolvedBackground:u,currentTheme:d,transition:h,introEnabled:g,tableId:f,rafRef:p,renderFnRef:v,scheduleRender:m,hoverHandlerRef:b,hoverLeaveRef:x,onPointerMove:A,onPointerLeave:S}}function to(e,t,o,n){const i=e.getContext("2d");if(!i)return null;const r=t[0]*n,s=t[1]*n,a=t[0]+"px",l=t[1]+"px";return e.style.width!==a&&(e.style.width=a),e.style.height!==l&&(e.style.height=l),e.width===r&&e.height===s||(e.width=r,e.height=s),i.setTransform(n,0,0,n,0,0),i.translate(o.left,o.top),i}function oo(){return"undefined"!=typeof window&&window.devicePixelRatio||1}function no(e){switch(e){case"monotoneX":return c.curveMonotoneX;case"monotoneY":return c.curveMonotoneY;case"cardinal":return c.curveCardinal;case"catmullRom":return c.curveCatmullRom;case"step":return c.curveStep;case"stepBefore":return c.curveStepBefore;case"stepAfter":return c.curveStepAfter;case"basis":return c.curveBasis;case"natural":return c.curveNatural;default:return null}}function io(e,t,o){let n=o;for(const o of t)"lesser"===o.thresholdType?o.value>e&&(n=o.color):e>o.value&&(n=o.color);return n}function ro(e,t,o,n,i,r){if(2>t.length)return;const s=[0];for(let e=1;t.length>e;e++){const o=t[e][0]-t[e-1][0],n=t[e][1]-t[e-1][1];s.push(s[e-1]+Math.sqrt(o*o+n*n))}const a=s[s.length-1];if(0===a)return;const l=Math.min(.2*a,40);e.strokeStyle=o,e.lineWidth=n,e.lineCap=r;for(let o=0;t.length-1>o;o++){const n=(s[o]+s[o+1])/2;let r=i;l>n&&(r*=n/l),l>a-n&&(r*=(a-n)/l),e.globalAlpha=Math.max(0,r),e.beginPath(),e.moveTo(t[o][0],t[o][1]),e.lineTo(t[o+1][0],t[o+1][1]),e.stroke()}}const so=(e,t,o,n)=>{var i,r;const s=t.filter(e=>"line"===e.type);for(const a of s){if(2>a.path.length)continue;const l=a._introClipFraction;void 0!==l&&1>l&&(e.save(),e.beginPath(),e.rect(0,0,n.width*l,n.height),e.clip());const u=a.style.stroke||"#007bff",d=Zt(e,u)||u,h=a.style.strokeWidth||2,g=a.colorThresholds,f=a.rawValues;if(e.setLineDash(a.style.strokeDasharray?a.style.strokeDasharray.split(/[\s,]+/).map(Number):[]),null!=a.style.opacity&&(e.globalAlpha=a.style.opacity),e.lineWidth=h,e.lineCap=a.style.strokeLinecap||"butt",a.style._edgeFade){const m=null!==(i=a.style.opacity)&&void 0!==i?i:1;ro(e,a.path,d,h,m,a.style.strokeLinecap||"butt"),e.globalAlpha=1,e.setLineDash([]),e.lineCap="butt";continue}const p=no(a.curve),y=g&&g.length>0&&f&&f.length===a.path.length,v=a._decayOpacities;if(v&&v.length===a.path.length&&!y){e.strokeStyle=d;const b=null!==(r=a.style.opacity)&&void 0!==r?r:1;for(let x=0;a.path.length-1>x;x++)e.globalAlpha=.5*(v[x]+v[x+1])*b,e.beginPath(),e.moveTo(a.path[x][0],a.path[x][1]),e.lineTo(a.path[x+1][0],a.path[x+1][1]),e.stroke()}else if(y){let k=null,w=null,j=null,A=null,S=!1;function O(t,o,n){e.beginPath(),e.strokeStyle=t,e.moveTo(o,n),S=!0}function M(){S&&(e.stroke(),S=!1)}for(let C=0;a.path.length>C;C++){const[_,P]=a.path[C],L=f[C],T=io(L,g,d);if(null!==k&&null!==A&&null!==j){if(T===A)e.lineTo(_,P);else{const R=[];for(const B of g){const D=B.value;(j>D||D>L)&&(D>j||L>D)||j===D||L===D||R.push({t:(D-j)/(L-j)})}R.sort((e,t)=>e.t-t.t);for(const I of R){const N=k+(_-k)*I.t,H=w+(P-w)*I.t,W=io(j+(L-j)*Math.min(I.t+1e-4,1),g,d);e.lineTo(N,H),M(),O(W,N,H)}e.lineTo(_,P)}k=_,w=P,j=L,A=T}else O(T,_,P),k=_,w=P,j=L,A=T}M()}else{if(e.beginPath(),!a.strokeGradient||2>a.strokeGradient.colorStops.length||2>a.path.length)e.strokeStyle=d;else{const E=e.createLinearGradient(a.path[0][0],0,a.path[a.path.length-1][0],0);for(const F of a.strokeGradient.colorStops)E.addColorStop(Math.max(0,Math.min(1,F.offset)),F.color);e.strokeStyle=E}if(p)c.line().x(e=>e[0]).y(e=>e[1]).curve(p).context(e)(a.path);else{const[$,z]=a.path[0];e.moveTo($,z);for(let Y=1;a.path.length>Y;Y++)e.lineTo(a.path[Y][0],a.path[Y][1])}e.stroke()}if(a.style.fill&&a.style.fillOpacity&&a.style.fillOpacity>0){if(e.beginPath(),e.globalAlpha=a.style.fillOpacity,e.fillStyle=("string"==typeof a.style.fill?Zt(e,a.style.fill):a.style.fill)||a.style.fill,p&&!y)c.line().x(e=>e[0]).y(e=>e[1]).curve(p).context(e)(a.path);else{const[q,X]=a.path[0];e.moveTo(q,X);for(let V=1;a.path.length>V;V++)e.lineTo(a.path[V][0],a.path[V][1])}const G=a.path[0][0];e.lineTo(a.path[a.path.length-1][0],n.height),e.lineTo(G,n.height),e.closePath(),e.fill()}void 0!==l&&1>l&&e.restore(),e.globalAlpha=1,e.setLineDash([]),e.lineCap="butt"}};function ao(e,t){const o=e.fillStyle,n="#010203";try{e.fillStyle=n,e.fillStyle=t}catch(t){return e.fillStyle=o,[78,121,167]}const i=e.fillStyle;if(e.fillStyle=o,"string"!=typeof i)return[78,121,167];if(i.toLowerCase()===n&&t.trim().toLowerCase()!==n)return[78,121,167];if(i.startsWith("#"))return[parseInt(i.slice(1,3),16),parseInt(i.slice(3,5),16),parseInt(i.slice(5,7),16)];const r=i.match(/(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return r?[+r[1],+r[2],+r[3]]:[78,121,167]}function lo(e){return!(!e._pulseIntensity||0>=e._pulseIntensity)}function co(e,t,o=.3){lo(t)&&(e.globalAlpha=t._pulseIntensity*o,e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.fillRect(t.x,t.y,t.w,t.h))}function uo(e,t,o=.6){var n,i,r,s,a;if(!lo(t))return;const l=null!==(n=t._pulseGlowRadius)&&void 0!==n?n:4,c=t.r+l*t._pulseIntensity,u=null!==(r=null!==(i=t.cx)&&void 0!==i?i:t.x)&&void 0!==r?r:0,d=null!==(a=null!==(s=t.cy)&&void 0!==s?s:t.y)&&void 0!==a?a:0;e.beginPath(),e.arc(u,d,c,0,2*Math.PI),e.strokeStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.lineWidth=2*t._pulseIntensity,e.globalAlpha=t._pulseIntensity*o,e.stroke()}function ho(e,t,o,n=.35){lo(t)&&(e.globalAlpha=t._pulseIntensity*n,e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.fill())}function go(e){switch(e){case"monotoneX":return c.curveMonotoneX;case"monotoneY":return c.curveMonotoneY;case"cardinal":return c.curveCardinal;case"catmullRom":return c.curveCatmullRom;case"step":return c.curveStep;case"stepBefore":return c.curveStepBefore;case"stepAfter":return c.curveStepAfter;case"basis":return c.curveBasis;case"natural":return c.curveNatural;default:return null}}function fo(e,t){const o=go(t.curve);if(!o||2>t.topPath.length||2>t.bottomPath.length){e.beginPath(),e.moveTo(t.topPath[0][0],t.topPath[0][1]);for(let o=1;t.topPath.length>o;o++)e.lineTo(t.topPath[o][0],t.topPath[o][1]);for(let o=t.bottomPath.length-1;o>=0;o--)e.lineTo(t.bottomPath[o][0],t.bottomPath[o][1]);e.closePath()}else{const n=c.area().x(e=>e[0]).y0((e,o)=>t.bottomPath[o][1]).y1(e=>e[1]).curve(o).context(e);e.beginPath(),n(t.topPath)}}const po=(e,t,o,n)=>{var i,r,s;const a=t.filter(e=>"area"===e.type);for(const t of a){if(2>t.topPath.length)continue;const o=t._introClipFraction;void 0!==o&&1>o&&(e.save(),e.beginPath(),e.rect(0,0,n.width*o,n.height),e.clip());const a=t.style.fill||"#4e79a7",l=t._decayOpacities;if(l&&l.length===t.topPath.length){const o=null!==(i=t.style.fillOpacity)&&void 0!==i?i:.7;e.fillStyle=a;for(let n=0;t.topPath.length-1>n;n++)e.globalAlpha=.5*(l[n]+l[n+1])*o,e.beginPath(),e.moveTo(t.topPath[n][0],t.topPath[n][1]),e.lineTo(t.topPath[n+1][0],t.topPath[n+1][1]),e.lineTo(t.bottomPath[n+1][0],t.bottomPath[n+1][1]),e.lineTo(t.bottomPath[n][0],t.bottomPath[n][1]),e.closePath(),e.fill();if(t.style.stroke&&"none"!==t.style.stroke){e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||2,e.setLineDash([]);for(let o=0;t.topPath.length-1>o;o++)e.globalAlpha=.5*(l[o]+l[o+1]),e.beginPath(),e.moveTo(t.topPath[o][0],t.topPath[o][1]),e.lineTo(t.topPath[o+1][0],t.topPath[o+1][1]),e.stroke()}e.globalAlpha=1;continue}const u=null!==(r=t.style.opacity)&&void 0!==r?r:1;if(fo(e,t),t.fillGradient&&("colorStops"in t.fillGradient&&t.fillGradient.colorStops.length>=2||"topOpacity"in t.fillGradient)&&t.fillGradient){let o=1/0;for(const e of t.topPath)o>e[1]&&(o=e[1]);let n=-1/0;for(const e of t.bottomPath)e[1]>n&&(n=e[1]);const i=e.createLinearGradient(0,o,0,n);if("colorStops"in t.fillGradient)for(const e of t.fillGradient.colorStops){const t=Math.max(0,Math.min(1,e.offset));isNaN(t)||i.addColorStop(t,e.color)}else if("topOpacity"in t.fillGradient){const[o,n,r]=ao(e,"string"==typeof a?a:"#4e79a7");i.addColorStop(0,`rgba(${o},${n},${r},${t.fillGradient.topOpacity})`),i.addColorStop(1,`rgba(${o},${n},${r},${t.fillGradient.bottomOpacity})`)}e.fillStyle=i,e.globalAlpha=u}else{const o=null!==(s=t.style.fillOpacity)&&void 0!==s?s:.7;e.globalAlpha=o*u,e.fillStyle=a}if(e.fill(),t._pulseIntensity&&t._pulseIntensity>0&&(fo(e,t),ho(e,t)),t.style.stroke&&"none"!==t.style.stroke){if(e.globalAlpha=u,!t.strokeGradient||2>t.strokeGradient.colorStops.length||2>t.topPath.length)e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke;else{const o=e.createLinearGradient(t.topPath[0][0],0,t.topPath[t.topPath.length-1][0],0);for(const e of t.strokeGradient.colorStops)o.addColorStop(Math.max(0,Math.min(1,e.offset)),e.color);e.strokeStyle=o}e.lineWidth=t.style.strokeWidth||2,e.setLineDash([]);const o=go(t.curve);if(e.beginPath(),o)c.line().x(e=>e[0]).y(e=>e[1]).curve(o).context(e)(t.topPath);else{e.moveTo(t.topPath[0][0],t.topPath[0][1]);for(let o=1;t.topPath.length>o;o++)e.lineTo(t.topPath[o][0],t.topPath[o][1])}e.stroke()}void 0!==o&&1>o&&e.restore(),e.globalAlpha=1}},yo=(e,t,o,n)=>{var i;const r=t.filter(e=>"point"===e.type);if(0!==r.length){e.save();try{for(const t of r){e.beginPath(),e.arc(t.x,t.y,t.r,0,2*Math.PI);const o=null!==(i=t.style.opacity)&&void 0!==i?i:t.style.fillOpacity;null!=o&&(e.globalAlpha=o),e.fillStyle=("string"==typeof t.style.fill?Zt(e,t.style.fill):t.style.fill)||"#4e79a7",e.fill(),t.style.stroke&&(e.strokeStyle=("string"==typeof t.style.stroke?Zt(e,t.style.stroke):t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke()),uo(e,t),e.globalAlpha=1}}finally{e.restore()}}};function vo(e,t,o){const n=t.fillGradient;if(!n)return null;const i=t.roundedEdge;let r=t.x,s=t.y,a=t.x,l=t.y+t.h;if("bottom"===i?(s=t.y+t.h,l=t.y):"right"===i?(r=t.x+t.w,s=t.y,a=t.x,l=t.y):"left"===i&&(r=t.x,s=t.y,a=t.x+t.w,l=t.y),"colorStops"in n){const t=n.colorStops.filter(e=>Number.isFinite(e.offset)).map(e=>({offset:Math.max(0,Math.min(1,e.offset)),color:e.color}));if(2>t.length)return null;const o=e.createLinearGradient(r,s,a,l);for(const e of t)o.addColorStop(e.offset,e.color);return o}const c=e.createLinearGradient(r,s,a,l),[u,d,h]=ao(e,o);return c.addColorStop(0,`rgba(${u},${d},${h},${n.topOpacity})`),c.addColorStop(1,`rgba(${u},${d},${h},${n.bottomOpacity})`),c}const mo=(e,t,o,n)=>{const i=t.filter(e=>"rect"===e.type);for(const t of i){if(null!=t.style.opacity&&(e.globalAlpha=t.style.opacity),t.style.icon)bo(e,t);else if(t.roundedTop&&t.roundedTop>0){const o=("string"==typeof t.style.fill?Zt(e,t.style.fill):t.style.fill)||Zt(e,"var(--semiotic-primary, #007bff)"),n="string"==typeof o?vo(e,t,o):null;e.fillStyle=n||o;const i=Math.min(t.roundedTop,t.w/2,t.h/2);e.beginPath();const{x:r,y:s,w:a,h:l}=t;switch(t.roundedEdge){case"right":e.moveTo(r,s),e.lineTo(r+a-i,s),e.arcTo(r+a,s,r+a,s+i,i),e.lineTo(r+a,s+l-i),e.arcTo(r+a,s+l,r+a-i,s+l,i),e.lineTo(r,s+l);break;case"left":e.moveTo(r+a,s),e.lineTo(r+i,s),e.arcTo(r,s,r,s+i,i),e.lineTo(r,s+l-i),e.arcTo(r,s+l,r+i,s+l,i),e.lineTo(r+a,s+l);break;case"bottom":e.moveTo(r,s),e.lineTo(r+a,s),e.lineTo(r+a,s+l-i),e.arcTo(r+a,s+l,r+a-i,s+l,i),e.lineTo(r+i,s+l),e.arcTo(r,s+l,r,s+l-i,i);break;default:e.moveTo(r,s+l),e.lineTo(r,s+i),e.arcTo(r,s,r+i,s,i),e.lineTo(r+a-i,s),e.arcTo(r+a,s,r+a,s+i,i),e.lineTo(r+a,s+l)}e.closePath(),e.fill(),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke())}else{const o=("string"==typeof t.style.fill?Zt(e,t.style.fill):t.style.fill)||Zt(e,"var(--semiotic-primary, #007bff)"),n="string"==typeof o?vo(e,t,o):null;e.fillStyle=n||o,e.fillRect(t.x,t.y,t.w,t.h),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.strokeRect(t.x,t.y,t.w,t.h))}co(e,t),e.globalAlpha=1}};function bo(e,t){const o=t.style.icon,n=t.style.iconPadding||2,i=Math.min(t.w,t.h)-n;if(0>=i)return;const r=t.h>t.w;if(e.save(),e.beginPath(),e.rect(t.x,t.y,t.w,t.h),e.clip(),r){const r=i+n,s=t.x+(t.w-i)/2;for(let n=t.y+t.h-i;n>=t.y-i;n-=r)e.drawImage(o,s,n,i,i)}else{const r=i+n,s=t.y+(t.h-i)/2;for(let n=t.x;t.x+t.w>n;n+=r)e.drawImage(o,n,s,i,i)}e.restore()}function xo(e,t,o,n){return Object.assign(Object.assign(Object.assign({},function(e){return"object"!=typeof e||null===e||Array.isArray(e)?{}:e}(e)),{data:e,x:t,y:o,time:t,value:o}),n)}function ko(e){const[t,o,n]=function(e){if(e.startsWith("#")){let t=e.slice(1);if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length)return[parseInt(t.slice(0,2),16),parseInt(t.slice(2,4),16),parseInt(t.slice(4,6),16)]}const t=e.match(/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return t?[+t[1],+t[2],+t[3]]:[128,128,128]}(e);return.299*t+.587*o+.114*n>128?"#000":"#fff"}function wo(e){return Number.isInteger(e)?e+"":100>Math.abs(e)?1>Math.abs(e)?e.toPrecision(3):e.toFixed(1):e.toFixed(0)}const jo=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function Ao(e){const t=e[1]-e[0],o=3156e7;return 864e5>t?e=>{const t=new Date(e);return`${(t.getUTCHours()+"").padStart(2,"0")}:${(t.getUTCMinutes()+"").padStart(2,"0")}`}:o>t?e=>{const t=new Date(e);return`${jo[t.getUTCMonth()]} ${t.getUTCDate()}`}:5*o>t?e=>{const t=new Date(e);return`${jo[t.getUTCMonth()]} ${t.getUTCFullYear()}`}:e=>new Date(e).getUTCFullYear()+""}const So={line:[po,so,yo],area:[po,yo],stackedarea:[po,yo],scatter:[yo],bubble:[yo],heatmap:[(e,t,o,n)=>{const i=t.filter(e=>"heatcell"===e.type);e.save();try{for(const t of i){const o=t.style;if(null!=(null==o?void 0:o.opacity)&&(e.globalAlpha=o.opacity),e.fillStyle=t.fill,e.fillRect(t.x,t.y,t.w,t.h),e.strokeStyle=Zt(e,"var(--semiotic-surface, #fff)"),e.lineWidth=1,e.strokeRect(t.x,t.y,t.w,t.h),co(e,t),e.globalAlpha=1,t.showValues&&null!=t.value){if(20>t.w||20>t.h)continue;const o=t.valueFormat?t.valueFormat(t.value):wo(t.value),n=Math.max(10,Math.min(16,.3*Math.min(t.w,t.h))),i=t.x+t.w/2,r=t.y+t.h/2;e.fillStyle=ko(t.fill),e.font=n+"px sans-serif",e.textAlign="center",e.textBaseline="middle",e.fillText(o,i,r)}}}finally{e.restore()}}],bar:[mo],swarm:[yo],waterfall:[(e,t,o,n)=>{var i,r,s;mo(e,t);const a=t.filter(e=>"rect"===e.type);if(2>a.length)return;const l=a[0].datum,c=null==l?void 0:l._connectorStroke;if(c){e.save(),e.strokeStyle=Zt(e,c)||c,e.lineWidth=null!==(i=null==l?void 0:l._connectorWidth)&&void 0!==i?i:1,e.setLineDash([]);for(let t=0;a.length-1>t;t++){const n=a[t],i=a[t+1];if(!(null===(r=n.datum)||void 0===r?void 0:r.cumEnd)||!(null===(s=i.datum)||void 0===s?void 0:s.baseline))continue;const l=o.y(n.datum.cumEnd),c=n.x+n.w,u=i.x;e.beginPath(),e.moveTo(c,l),e.lineTo(u,l),e.stroke()}e.restore()}}],candlestick:[(e,t,o,n)=>{var i,r,s;for(const o of t){if("candlestick"!==o.type)continue;const t=o;e.save();const a=(null!==(i=t._decayOpacity)&&void 0!==i?i:1)*(null!==(s=null===(r=t.style)||void 0===r?void 0:r.opacity)&&void 0!==s?s:1);1!==a&&(e.globalAlpha=a);const l=Zt(e,t.wickColor)||t.wickColor,c=60>n.height,u=c?Math.max(t.wickWidth,2):t.wickWidth,d=()=>{e.beginPath(),e.moveTo(t.x,t.highY),e.lineTo(t.x,t.lowY),e.strokeStyle=l,e.lineWidth=u,e.stroke()};if(c||d(),t.isRange){const o=Math.max(2,Math.min(t.bodyWidth/2,.12*n.height));e.fillStyle=l,e.beginPath(),e.arc(t.x,t.highY,o,0,2*Math.PI),e.fill(),e.beginPath(),e.arc(t.x,t.lowY,o,0,2*Math.PI),e.fill()}else if(t.bodyWidth>0){const o=Math.min(t.openY,t.closeY),n=Math.abs(t.openY-t.closeY),i=t.isUp?t.upColor:t.downColor,r=Zt(e,i)||i;e.fillStyle=r,e.fillRect(t.x-t.bodyWidth/2,o,t.bodyWidth,Math.max(n,1)),e.strokeStyle=r,e.lineWidth=1,e.strokeRect(t.x-t.bodyWidth/2,o,t.bodyWidth,Math.max(n,1))}c&&d(),e.restore()}}],mixed:[po,so,yo]},Oo={top:20,right:20,bottom:30,left:40},Mo={axisStroke:"#ccc",tickText:"#666",crosshair:"rgba(0, 0, 0, 0.25)",hoverFill:"rgba(255, 255, 255, 0.3)",hoverStroke:"rgba(0, 0, 0, 0.4)",pointRing:"white",primary:"#007bff"};function Co(e,t){const o=e.trim();if(/^#[0-9a-f]{3}$/i.test(o)){const e=o[1],n=o[2],i=o[3];return`#${e}${e}${n}${n}${i}${i}${t}`}if(/^#[0-9a-f]{6}$/i.test(o))return`${o}${t}`;const n=o.match(/^rgb\s*\(\s*([^)]+?)\s*\)$/i);return n?`rgba(${n[1]}, ${(parseInt(t,16)/255).toFixed(3)})`:o}const _o={background:"rgba(0, 0, 0, 0.85)",color:"white",padding:"6px 10px",borderRadius:4,fontSize:12,lineHeight:1.5,boxShadow:"0 2px 8px rgba(0, 0, 0, 0.15)",pointerEvents:"none",whiteSpace:"nowrap"};function Po({hover:t}){const o=e=>Number.isInteger(e)?e+"":e.toFixed(2);return e.jsxs("div",{className:"semiotic-tooltip",style:_o,children:[e.jsx("div",{style:{fontWeight:600,marginBottom:2},children:o(t.value)}),e.jsx("div",{style:{opacity:.7,fontSize:11},children:o(t.time)})]})}const Lo=t.forwardRef(function(o,n){var i,r,s,a,l,c,u,d,h,g,f;const{chartType:p,runtimeMode:v,data:m,chunkThreshold:b,chunkSize:w,xAccessor:j,yAccessor:S,colorAccessor:O,sizeAccessor:M,groupAccessor:C,lineDataAccessor:_,curve:P,normalize:L,binSize:T,valueAccessor:R,arrowOfTime:B="right",windowMode:D="sliding",windowSize:I=200,timeAccessor:N,xExtent:H,yExtent:W,extentPadding:E=.1,scalePadding:F,sizeRange:$,size:z=[500,300],responsiveWidth:Y,responsiveHeight:G,margin:q,className:X,background:V,lineStyle:U,pointStyle:K,areaStyle:Q,barStyle:Z,waterfallStyle:J,swarmStyle:ee,barColors:te,colorScheme:oe,boundsAccessor:ne,boundsStyle:ie,y0Accessor:re,gradientFill:se,lineGradient:ae,areaGroups:le,openAccessor:ue,highAccessor:de,lowAccessor:he,closeAccessor:ge,candlestickStyle:fe,showAxes:pe=!0,axes:me,xLabel:be,yLabel:xe,yLabelRight:ke,xFormat:we,yFormat:je,tickFormatTime:Ae,tickFormatValue:_e,hoverAnnotation:Te,tooltipContent:Re,customHoverBehavior:Be,customClickBehavior:De,enableHover:Ie,hoverRadius:Ne=30,tooltipMode:He,annotations:We,svgAnnotationRules:Ee,showGrid:Fe,legend:$e,legendHoverBehavior:ze,legendClickBehavior:Ye,legendHighlightedCategory:Ge,legendIsolatedCategories:qe,legendPosition:Xe,backgroundGraphics:Ve,foregroundGraphics:Ue,canvasPreRenderers:Ke,svgPreRenderers:Qe,title:Ze,categoryAccessor:Je,brush:et,onBrush:tt,decay:ot,pulse:nt,transition:it,animate:rt,staleness:st,heatmapAggregation:at,heatmapXBins:lt,heatmapYBins:ct,showValues:ut,heatmapValueFormat:dt,marginalGraphics:ht,pointIdAccessor:gt,xScaleType:ft,yScaleType:yt,accessibleTable:vt=!0,description:kt,summary:wt,linkedCrosshairName:jt,linkedCrosshairSourceId:At}=o,Ot=t.useRef(!1),Mt=eo({sizeProp:z,responsiveWidth:Y,responsiveHeight:G,userMargin:q,marginDefault:Oo,animate:rt,transitionProp:it,themeDirtyRef:Ot}),{reducedMotionRef:Ct,responsiveRef:_t,size:Pt,currentTheme:Lt,transition:Tt,introEnabled:Rt,tableId:Bt,rafRef:It,renderFnRef:Et,scheduleRender:zt}=Mt;let Yt=Mt.margin;if(ht){const e=60,t=Object.assign({},Mt.margin);ht.top&&e>t.top&&(t.top=e),ht.bottom&&e>t.bottom&&(t.bottom=e),ht.left&&e>t.left&&(t.left=e),ht.right&&e>t.right&&(t.right=e),Yt=t}const Gt="function"==typeof Ue?Ue({size:Pt,margin:Yt}):Ue,qt="function"==typeof Ve?Ve({size:Pt,margin:Yt}):Ve,Xt=Pt[0]-Yt.left-Yt.right,Vt=Pt[1]-Yt.top-Yt.bottom,Ut=null!=Te?Te:Ie,Kt=t.useRef(null),Qt=t.useRef(null),[Zt,Jt]=t.useState(0),[no,io]=t.useState(null),ro=t.useRef(null),so=t.useRef(null),[ao,lo]=t.useState(null),co=t.useRef(Mo.primary),[uo,ho]=t.useState(!1),[go,fo]=t.useState([]),[po,yo]=t.useState([]),vo="streaming"===v||["bar","swarm","waterfall"].includes(p),mo=t.useMemo(()=>{var e,t,o;return{chartType:p,runtimeMode:vo?"streaming":"bounded",windowSize:I,windowMode:D,arrowOfTime:vo?B:"right",extentPadding:E,scalePadding:F,xAccessor:vo?void 0:j,yAccessor:vo?void 0:S,timeAccessor:vo?N:void 0,valueAccessor:R,colorAccessor:O,sizeAccessor:M,groupAccessor:C||(_?"_lineGroup":void 0),categoryAccessor:Je,lineDataAccessor:_,xScaleType:ft,yScaleType:yt,xExtent:H,yExtent:W,sizeRange:$,binSize:T,normalize:L,boundsAccessor:ne,boundsStyle:ie,y0Accessor:re,gradientFill:!0===se?{topOpacity:.8,bottomOpacity:.05}:!1===se?void 0:se,areaGroups:le?new Set(le):void 0,lineGradient:ae,openAccessor:ue,highAccessor:de,lowAccessor:he,closeAccessor:ge,candlestickStyle:fe,lineStyle:U,pointStyle:K,areaStyle:Q,swarmStyle:ee,waterfallStyle:J,colorScheme:oe,barColors:te,barStyle:Z,annotations:We,decay:ot,pulse:nt,transition:Tt,introAnimation:Rt,staleness:st,heatmapAggregation:at,heatmapXBins:lt,heatmapYBins:ct,showValues:ut,heatmapValueFormat:dt,pointIdAccessor:gt,curve:P,themeCategorical:null===(e=null==Lt?void 0:Lt.colors)||void 0===e?void 0:e.categorical,themeSemantic:A(Lt),themeSequential:null===(t=null==Lt?void 0:Lt.colors)||void 0===t?void 0:t.sequential,themeDiverging:null===(o=null==Lt?void 0:Lt.colors)||void 0===o?void 0:o.diverging}},[p,I,D,B,E,F,j,S,N,R,ft,yt,O,M,C,Je,_,H,W,$,T,L,ne,ie,re,se,ae,le,ue,de,he,ge,fe,U,K,Q,ee,J,Z,oe,te,We,ot,nt,null==Tt?void 0:Tt.duration,null==Tt?void 0:Tt.easing,Rt,st,at,lt,ct,ut,dt,vo,gt,P,Lt]),bo=t.useRef(null);bo.current||(bo.current=new ce(mo)),t.useEffect(()=>{var e;null===(e=bo.current)||void 0===e||e.updateConfig(mo),Ot.current=!0,zt()},[mo,zt]);const ko=t.useRef(null);ko.current||(ko.current=new k(e=>{const t=bo.current;t&&t.ingest(e)&&(Ot.current=!0,zt())},{chunkThreshold:b,chunkSize:w})),t.useEffect(()=>{var e;null===(e=ko.current)||void 0===e||e.updateChunkOptions({chunkThreshold:b,chunkSize:w})},[b,w]);const wo=t.useCallback(e=>{var t;null===(t=ko.current)||void 0===t||t.push(e)},[]),jo=t.useCallback(e=>{var t;null===(t=ko.current)||void 0===t||t.pushMany(e)},[]),_o=t.useCallback(()=>{var e,t;null===(e=ko.current)||void 0===e||e.clear(),null===(t=bo.current)||void 0===t||t.clear(),Ot.current=!0,zt()},[zt]);t.useImperativeHandle(n,()=>({push:wo,pushMany:jo,remove:e=>{var t,o,n;null===(t=ko.current)||void 0===t||t.flush();const i=null!==(n=null===(o=bo.current)||void 0===o?void 0:o.remove(e))&&void 0!==n?n:[];return i.length>0&&(ro.current&&i.some(e=>{var t;return e===(null===(t=ro.current)||void 0===t?void 0:t.data)})&&(ro.current=null,lo(null)),Ot.current=!0,zt()),i},update:(e,t)=>{var o,n,i;null===(o=ko.current)||void 0===o||o.flush();const r=null!==(i=null===(n=bo.current)||void 0===n?void 0:n.update(e,t))&&void 0!==i?i:[];return r.length>0&&(Ot.current=!0,zt()),r},clear:_o,getData:()=>{var e,t,o;return null===(e=ko.current)||void 0===e||e.flush(),null!==(o=null===(t=bo.current)||void 0===t?void 0:t.getData())&&void 0!==o?o:[]},getScales:()=>{var e,t;return null!==(t=null===(e=bo.current)||void 0===e?void 0:e.scales)&&void 0!==t?t:null},getExtents:()=>{var e,t;return null!==(t=null===(e=bo.current)||void 0===e?void 0:e.getExtents())&&void 0!==t?t:null}}),[wo,jo,_o,zt]),t.useEffect(()=>{var e,t;if(m){if(_&&m.length>0&&"object"==typeof m[0]&&null!==m[0]){const t="string"==typeof _?_:"coordinates";if(Array.isArray(m[0][t])){const o=[];for(const e of m){const n=e[t];if(Array.isArray(n)){const t=e.label||e.id||e.key;if(null!=t)for(const e of n)o.push(Object.assign(Object.assign({},e),{_lineGroup:t}));else for(const e of n)o.push(e)}}return void(null===(e=ko.current)||void 0===e||e.setBoundedData(o))}}null===(t=ko.current)||void 0===t||t.setBoundedData(m)}},[m,_]);const{hoverHandlerRef:Lo,hoverLeaveRef:To,onPointerMove:Ro,onPointerLeave:Bo}=Mt;Lo.current=e=>{if(!Ut)return;const t=Kt.current;if(!t)return;const o=t.getBoundingClientRect(),n=e.clientX-o.left-Yt.left,i=e.clientY-o.top-Yt.top;if(0>n||n>Xt||0>i||i>Vt)return void(ro.current&&(ro.current=null,so.current=null,lo(null),Be&&(Be(null),Ot.current=!0),zt()));const r=bo.current;if(!r||0===r.scene.length)return;const s=ye(r.scene,n,i,Ne,r.quadtree,r.maxPointRadius);if(!s)return void(ro.current&&(ro.current=null,so.current=null,lo(null),Be&&Be(null),zt()));const a=xo(s.datum||{},s.x,s.y);if("multi"===He&&r.scene.length>0&&r.scales){const e=function(e,t,o=30){const n=[];for(const i of e)if("line"===i.type){const e=i;if(2>e.path.length)continue;const r=ve(e.path,t,o);if(null===r)continue;const s=Se(e.path,t);n.push({node:i,datum:Array.isArray(e.datum)&&e.datum[s]?e.datum[s]:e.datum,x:e.path[s][0],y:r,group:e.group,color:e.style.stroke})}else if("area"===i.type){const e=i;if(!1===e.interactive)continue;if(2>e.topPath.length)continue;const r=ve(e.topPath,t,o);if(null===r)continue;const s=Se(e.topPath,t);n.push({node:i,datum:Array.isArray(e.datum)&&e.datum[s]?e.datum[s]:e.datum,x:e.topPath[s][0],y:r,group:e.group,color:"string"==typeof e.style.stroke?e.style.stroke:"string"==typeof e.style.fill?e.style.fill:void 0})}return n}(r.scene,s.x,Ne),t=r.scales.y.invert,o=r.scales.x.invert;if(e.length>0){const n=o?o(s.x):s.x;a.xValue=n,a.xPx=s.x;const i=co.current;a.allSeries=e.map(e=>({group:e.group||"",value:t?t(e.y):e.y,valuePx:e.y,color:e.color||i,datum:e.datum}))}}ro.current=a,so.current=s.node,lo(a),Be&&(Be(a),Ot.current=!0),zt()},To.current=()=>{ro.current&&(ro.current=null,so.current=null,lo(null),Be&&(Be(null),Ot.current=!0),zt())};const Do=t.useRef(()=>{});Do.current=e=>{if(!De)return;const t=Kt.current;if(!t)return;const o=t.getBoundingClientRect(),n=e.clientX-o.left-Yt.left,i=e.clientY-o.top-Yt.top;if(0>n||n>Xt||0>i||i>Vt)return void De(null);const r=bo.current;if(!r||0===r.scene.length)return void De(null);const s=ye(r.scene,n,i,Ne,r.quadtree,r.maxPointRadius);De(s?xo(s.datum||{},s.x,s.y):null)};const Io=t.useCallback(e=>Do.current(e),[]),No=t.useRef(-1),Ho=t.useRef(null),Wo=t.useRef(null),Eo=t.useCallback(e=>{const t=bo.current;if(!t||0===t.scene.length)return;const o=t.version;let n;if(Wo.current&&Wo.current.version===o)n=Wo.current.graph;else{const e=function(e){var t,o,n,i;const r=[];for(const s of e)switch(s.type){case"point":r.push({x:s.x,y:s.y,datum:s.datum,shape:"circle",group:null!==(t=s.group)&&void 0!==t?t:"_default"});break;case"line":{const e=s,t=Array.isArray(e.datum)?e.datum:[],n=null!==(o=e.group)&&void 0!==o?o:"_default";for(let o=0;e.path.length>o&&t.length>o;o++)r.push({x:e.path[o][0],y:e.path[o][1],datum:t[o],shape:"circle",group:n});break}case"area":{const e=s,t=Array.isArray(e.datum)?e.datum:[],o=null!==(n=e.group)&&void 0!==n?n:"_default";for(let n=0;e.topPath.length>n&&t.length>n;n++)r.push({x:e.topPath[n][0],y:e.topPath[n][1],datum:t[n],shape:"circle",group:o});break}case"rect":r.push({x:s.x+s.w/2,y:s.y+s.h/2,datum:s.datum,shape:"rect",w:s.w,h:s.h,group:null!==(i=s.group)&&void 0!==i?i:"_default"});break;case"heatcell":r.push({x:s.x+s.w/2,y:s.y+s.h/2,datum:s.datum,shape:"rect",w:s.w,h:s.h,group:"_default"})}return r.sort((e,t)=>e.x-t.x||e.y-t.y),r}(t.scene);if(0===e.length)return;n=Oe(e),Wo.current={version:o,graph:n}}const i=No.current;if(0>i){if("Escape"===e.key)return;if(!["ArrowRight","ArrowLeft","ArrowUp","ArrowDown","Home","End","PageUp","PageDown"].includes(e.key))return;e.preventDefault(),No.current=0;const t=n.flat[0];Ho.current={shape:t.shape,w:t.w,h:t.h};const o=Pe(t);return ro.current=o,lo(o),Be&&Be(o),void zt()}const r=Me(n,i),s=Ce(e.key,r,n);if(null===s)return;if(e.preventDefault(),0>s)return No.current=-1,Ho.current=null,ro.current=null,so.current=null,lo(null),Be&&Be(null),void zt();No.current=s;const a=n.flat[s];Ho.current={shape:a.shape,w:a.w,h:a.h};const l=Pe(a);ro.current=l,lo(l),Be&&Be(l),zt()},[Be,zt]),Fo=t.useCallback(e=>{No.current=-1,Ho.current=null,Ro(e)},[Ro]);Et.current=()=>{var e,t;It.current=0;const o=Kt.current,n=Qt.current;if(!o||!n)return;const i=bo.current;if(!i)return;const r="undefined"!=typeof performance?performance.now():Date.now(),s=i.advanceTransition(Ct.current?r+1e6:r),a=!Ct.current&&s,l=Ot.current||s;l&&!a&&i.computeScene({width:Xt,height:Vt});const c=oo(),u=function(e){if(!e)return Mo;const t=getComputedStyle(e),o=t.getPropertyValue("--semiotic-border").trim(),n=t.getPropertyValue("--semiotic-text-secondary").trim(),i=t.getPropertyValue("--semiotic-bg").trim(),r=t.getPropertyValue("--semiotic-primary").trim(),s=n||t.getPropertyValue("--text-secondary").trim(),a=t.getPropertyValue("--text-primary").trim(),l=o||t.getPropertyValue("--surface-3").trim(),c=i||t.getPropertyValue("--surface-0").trim();return s||a||o||r?{axisStroke:l||Mo.axisStroke,tickText:s||Mo.tickText,crosshair:s?Co(s,"66"):Mo.crosshair,hoverFill:c?Co(c,"4D"):Mo.hoverFill,hoverStroke:s?Co(s,"99"):Mo.hoverStroke,pointRing:c||Mo.pointRing,primary:r||Mo.primary}:Mo}(o);co.current=u.primary;const d=null!==(e=null==st?void 0:st.threshold)&&void 0!==e?e:5e3,h=st&&i.lastIngestTime>0&&r-i.lastIngestTime>d;if(l){const e=to(o,Pt,Yt,c);if(e){if(e.clearRect(-Yt.left,-Yt.top,Pt[0],Pt[1]),h&&(e.globalAlpha=null!==(t=null==st?void 0:st.dimOpacity)&&void 0!==t?t:.5),"transparent"!==V&&!Ve){const t=getComputedStyle(o).getPropertyValue("--semiotic-bg").trim(),n=V||(t&&"transparent"!==t?t:null);n&&(e.fillStyle=n,e.fillRect(-Yt.left,-Yt.top,Pt[0],Pt[1]))}if(e.save(),"function"==typeof e.rect&&(e.beginPath(),e.rect(0,0,Xt,Vt),e.clip()),Ke&&i.scales)for(const t of Ke)e.save(),t(e,i.scene,i.scales,{width:Xt,height:Vt}),e.restore();const n=So[p];if(n&&i.scales)for(const t of n)t(e,i.scene,i.scales,{width:Xt,height:Vt});e.restore(),h&&(e.globalAlpha=1)}}{const e=to(n,Pt,Yt,c);if(e&&(e.clearRect(-Yt.left,-Yt.top,Pt[0],Pt[1]),Ut&&ro.current&&i.scales&&function(e,t,o,n,i,r,s){var a;if(!1===i.crosshair)return;const l=t.allSeries,c=l&&l.length>0,u=null!==(a=t.xPx)&&void 0!==a?a:t.x;e.save();const d="object"==typeof i.crosshair?i.crosshair:{};if(e.strokeStyle=d.stroke||s.crosshair,e.lineWidth=d.strokeWidth||1,e.setLineDash(d.strokeDasharray?d.strokeDasharray.split(/[\s,]+/).map(Number):[4,4]),e.beginPath(),e.moveTo(c?u:t.x,0),e.lineTo(c?u:t.x,n),e.stroke(),c||(e.beginPath(),e.moveTo(0,t.y),e.lineTo(o,t.y),e.stroke()),e.restore(),c){e.lineWidth=2,e.strokeStyle=s.pointRing;for(const t of l)null!=t.valuePx&&(e.beginPath(),e.arc(u,t.valuePx,4,0,2*Math.PI),e.fillStyle=t.color||s.primary,e.fill(),e.stroke())}else{const o=i.pointColor||function(e){if(!e)return null;if("heatcell"===e.type)return e.fill||null;if("candlestick"===e.type)return e.isUp?e.upColor:e.downColor;const{style:t}=e;if(!t)return null;const o="string"==typeof t.fill?t.fill:null;return"line"===e.type||"area"===e.type?t.stroke||o||null:o||t.stroke||null}(r)||s.primary;e.beginPath(),e.arc(t.x,t.y,4,0,2*Math.PI),e.fillStyle=o,e.fill(),e.strokeStyle=s.pointRing,e.lineWidth=2,e.stroke()}}(e,ro.current,Xt,Vt,"object"==typeof Ut?Ut:{},so.current,u),so.current&&Array.isArray(Te))){const t=Te.find(e=>e&&"object"==typeof e&&"highlight"===e.type);t&&function(e,t,o,n,i){var r;if(!o)return;const s=o.group;if(void 0!==s)for(const o of t){if("line"!==o.type)continue;if(o.group!==s)continue;if(2>o.path.length)continue;const t="function"==typeof n.style?n.style(o.datum):n.style||{};e.save(),e.beginPath(),e.moveTo(o.path[0][0],o.path[0][1]);for(let t=1;o.path.length>t;t++)e.lineTo(o.path[t][0],o.path[t][1]);e.strokeStyle=t.stroke||o.style.stroke||i.primary,e.lineWidth=t.strokeWidth||(o.style.strokeWidth||2)+2,e.globalAlpha=null!==(r=t.opacity)&&void 0!==r?r:1,e.stroke(),e.restore()}}(e,i.scene,so.current,t,u)}}l&&o&&o.setAttribute("aria-label",St(i.scene,p+" chart"));const g=Ot.current;if(Ot.current=!1,g&&i.scales){const e=e=>"object"==typeof e&&null!==e&&"function"==typeof e.valueOf?e.valueOf():e;if((!no||e(no.x.domain()[0])!==e(i.scales.x.domain()[0])||e(no.x.domain()[1])!==e(i.scales.x.domain()[1])||e(no.y.domain()[0])!==e(i.scales.y.domain()[0])||e(no.y.domain()[1])!==e(i.scales.y.domain()[1])||no.x.range()[0]!==i.scales.x.range()[0]||no.x.range()[1]!==i.scales.x.range()[1]||no.y.range()[0]!==i.scales.y.range()[0]||no.y.range()[1]!==i.scales.y.range()[1])&&io(i.scales),ht){const e=i.getData(),t="function"==typeof j?j:e=>e[j||"x"],o="function"==typeof S?S:e=>e[S||"y"];fo(e.map(e=>t(e)).filter(e=>"number"==typeof e&&isFinite(e))),yo(e.map(e=>o(e)).filter(e=>"number"==typeof e&&isFinite(e)))}}g&&We&&We.length>0&&Jt(e=>e+1),(null==st?void 0:st.showBadge)&&ho(!!h),(a||null!=i.activeTransition||i.hasActivePulses)&&(It.current=requestAnimationFrame(()=>Et.current()))},t.useEffect(()=>(zt(),()=>{var e;null===(e=ko.current)||void 0===e||e.clear()}),[zt]),t.useEffect(()=>{Ot.current=!0,zt()},[p,Xt,Vt,pe,V,U,Ke,zt]),Le(st,bo,Ot,zt,uo,ho);const $o=t.useMemo(()=>{if(we||Ae)return;const e=bo.current;return(null==e?void 0:e.xIsDate)&&no?Ao(no.x.domain()):void 0},[we,Ae,no]),zo=we||Ae||$o,Yo=Ut&&ao?Re?Re(ao):e.jsx(Po,{hover:ao}):null,Go=Yo?e.jsx($t,{x:ao.x,y:ao.y,containerWidth:Xt,containerHeight:Vt,margin:Yt,className:"stream-frame-tooltip",children:Yo}):null,qo=Ho.current,Xo=e.jsx(Ft,{active:No.current>=0,hoverPoint:ao,margin:Yt,size:Pt,shape:null==qo?void 0:qo.shape,width:null==qo?void 0:qo.w,height:null==qo?void 0:qo.h}),Vo=(e,t,o,n)=>"string"==typeof e?{key:e,fn:null}:"function"==typeof e?{key:o,fn:e}:"string"==typeof t?{key:t,fn:null}:"function"==typeof t?{key:n,fn:t}:{key:void 0,fn:null},Uo=Vo(j,N,"__semiotic_resolvedX","__semiotic_resolvedTime"),Ko=Vo(S,R,"__semiotic_resolvedY","__semiotic_resolvedValue"),Qo=Uo.key,Zo=Ko.key,Jo=We&&We.length>0,en=e=>{if(!e||!Jo||!Uo.fn&&!Ko.fn)return e;let t=!1;const o=e.map(e=>{const o=Uo.fn&&Uo.key&&!(Uo.key in e),n=Ko.fn&&Ko.key&&!(Ko.key in e);if(!o&&!n)return e;t=!0;const i=Object.assign({},e);return o&&(i[Uo.key]=Uo.fn(e)),n&&(i[Ko.key]=Ko.fn(e)),i});return t?o:e};if(xt){const t=bo.current;t&&m&&(t.ingest({inserts:m,bounded:!0}),t.computeScene({width:Xt,height:Vt}));const o=null!==(i=null==t?void 0:t.scene)&&void 0!==i?i:[],n=null!==(r=null==t?void 0:t.scales)&&void 0!==r?r:null,s=zo||(()=>{if((null==t?void 0:t.xIsDate)&&n)return Ao(n.x.domain())})();return e.jsxs("div",{className:"stream-xy-frame"+(X?" "+X:""),role:"img","aria-label":kt||("string"==typeof Ze?Ze:"XY chart"),style:{position:"relative",width:Pt[0],height:Pt[1]},children:[e.jsx(Nt,{summary:wt}),e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:Pt[0],height:Pt[1],style:{position:"absolute",left:0,top:0},children:[e.jsx("g",{transform:`translate(${Yt.left},${Yt.top})`,children:qt}),e.jsxs("g",{transform:`translate(${Yt.left},${Yt.top})`,children:[V&&e.jsx("rect",{x:0,y:0,width:Xt,height:Vt,fill:V}),Qe&&n&&Qe.map((t,i)=>e.jsx(y.Fragment,{children:t(o,n,{width:Xt,height:Vt})},"svgpre-"+i)),o.map((t,o)=>function(t,o){var n,i,r;switch(t.type){case"line":{const n=t;if(0===n.path.length)return null;const i="M"+n.path.map(([e,t])=>`${e},${t}`).join("L");return e.jsx("path",{d:i,fill:"none",stroke:n.style.stroke||"#4e79a7",strokeWidth:n.style.strokeWidth||2,strokeDasharray:n.style.strokeDasharray,opacity:n.style.opacity},"line-"+o)}case"area":{const r=t;if(0===r.topPath.length)return null;const s=r.topPath.map(([e,t])=>`${e},${t}`).join("L"),a=[...r.bottomPath].reverse().map(([e,t])=>`${e},${t}`).join("L");return e.jsx("path",{d:`M${s}L${a}Z`,fill:bt(r.style.fill),fillOpacity:null!==(i=null!==(n=r.style.fillOpacity)&&void 0!==n?n:r.style.opacity)&&void 0!==i?i:.7,stroke:r.style.stroke,strokeWidth:r.style.strokeWidth},"area-"+o)}case"point":{const n=t;return e.jsx("circle",{cx:n.x,cy:n.y,r:n.r,fill:bt(n.style.fill),opacity:null!==(r=n.style.opacity)&&void 0!==r?r:.8,stroke:n.style.stroke,strokeWidth:n.style.strokeWidth},"point-"+o)}case"rect":{const n=t;return e.jsx("rect",{x:n.x,y:n.y,width:n.w,height:n.h,fill:bt(n.style.fill),opacity:n.style.opacity,stroke:n.style.stroke,strokeWidth:n.style.strokeWidth},"rect-"+o)}case"heatcell":{const n=t;if(n.showValues&&null!=n.value&&n.w>=20&&n.h>=20){const t=n.valueFormat?n.valueFormat(n.value):Number.isInteger(n.value)?n.value+"":100>Math.abs(n.value)?1>Math.abs(n.value)?n.value.toPrecision(3):n.value.toFixed(1):n.value.toFixed(0),[i,r,s]=function(e){if(e.startsWith("#")){let t=e.slice(1);if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length)return[parseInt(t.slice(0,2),16),parseInt(t.slice(2,4),16),parseInt(t.slice(4,6),16)]}const t=e.match(/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return t?[+t[1],+t[2],+t[3]]:[128,128,128]}(n.fill),a=.299*i+.587*r+.114*s>128?"#000":"#fff",l=Math.max(10,Math.min(16,.3*Math.min(n.w,n.h)));return e.jsxs("g",{children:[e.jsx("rect",{x:n.x,y:n.y,width:n.w,height:n.h,fill:n.fill}),e.jsx("text",{x:n.x+n.w/2,y:n.y+n.h/2,textAnchor:"middle",dominantBaseline:"middle",fill:a,fontSize:l+"px",children:t})]},"heatcell-"+o)}return e.jsx("rect",{x:n.x,y:n.y,width:n.w,height:n.h,fill:n.fill},"heatcell-"+o)}case"candlestick":{const n=t,i=Math.min(n.openY,n.closeY),r=Math.max(Math.abs(n.openY-n.closeY),1),s=n.isUp?n.upColor:n.downColor;return e.jsxs("g",{children:[e.jsx("line",{x1:n.x,y1:n.highY,x2:n.x,y2:n.lowY,stroke:n.wickColor,strokeWidth:n.wickWidth}),e.jsx("rect",{x:n.x-n.bodyWidth/2,y:i,width:n.bodyWidth,height:r,fill:s,stroke:s,strokeWidth:1})]},"candle-"+o)}default:return null}}(t,o)).filter(Boolean)]})]}),e.jsx(mt,{width:Xt,height:Vt,totalWidth:Pt[0],totalHeight:Pt[1],margin:Yt,scales:n,showAxes:pe,axes:me,xLabel:be,yLabel:xe,yLabelRight:ke,xFormat:s,yFormat:je||_e,showGrid:Fe,title:Ze,legend:$e,legendHoverBehavior:ze,legendClickBehavior:Ye,legendHighlightedCategory:Ge,legendIsolatedCategories:qe,legendPosition:Xe,foregroundGraphics:Gt,marginalGraphics:ht,xValues:[],yValues:[],annotations:We,svgAnnotationRules:Ee,annotationFrame:0,xAccessor:Qo,yAccessor:Zo,annotationData:en(null==t?void 0:t.getData()),pointNodes:null==t?void 0:t.scene.filter(e=>"point"===e.type),curve:"string"==typeof P?P:void 0,linkedCrosshairName:jt,linkedCrosshairSourceId:At})]})}return e.jsxs("div",{ref:_t,className:"stream-xy-frame"+(X?" "+X:""),role:"group","aria-label":kt||("string"==typeof Ze?Ze:"XY chart"),tabIndex:0,style:{position:"relative",width:Y?"100%":Pt[0],height:G?"100%":Pt[1],overflow:"visible"},onKeyDown:Eo,children:[vt&&e.jsx(Ht,{tableId:Bt}),vt&&e.jsx(Dt,{scene:null!==(a=null===(s=bo.current)||void 0===s?void 0:s.scene)&&void 0!==a?a:[],chartType:p+" chart",tableId:Bt,chartTitle:"string"==typeof Ze?Ze:void 0}),e.jsx(Nt,{summary:wt}),e.jsxs("div",{role:"img","aria-label":kt||("string"==typeof Ze?Ze:"XY chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:Ut?Fo:void 0,onMouseLeave:Ut?Bo:void 0,onClick:De?Io:void 0,children:[qt&&e.jsx("svg",{style:{position:"absolute",left:0,top:0,width:Pt[0],height:Pt[1],pointerEvents:"none"},children:e.jsx("g",{transform:`translate(${Yt.left},${Yt.top})`,children:qt})}),e.jsx(pt,{width:Xt,height:Vt,totalWidth:Pt[0],totalHeight:Pt[1],margin:Yt,scales:no,showAxes:pe,axes:me,showGrid:Fe,xFormat:zo,yFormat:je||_e}),e.jsx("canvas",{ref:Kt,"aria-label":St(null!==(c=null===(l=bo.current)||void 0===l?void 0:l.scene)&&void 0!==c?c:[],p+" chart"),style:{position:"absolute",left:0,top:0}}),e.jsx("canvas",{ref:Qt,style:{position:"absolute",left:0,top:0,pointerEvents:"none"}}),e.jsx(Wt,{hoverPoint:ao}),e.jsx(mt,{width:Xt,height:Vt,totalWidth:Pt[0],totalHeight:Pt[1],margin:Yt,scales:no,showAxes:pe,axes:me,xLabel:be,yLabel:xe,yLabelRight:ke,xFormat:zo,yFormat:je||_e,showGrid:Fe,title:Ze,legend:$e,legendHoverBehavior:ze,legendClickBehavior:Ye,legendHighlightedCategory:Ge,legendIsolatedCategories:qe,legendPosition:Xe,foregroundGraphics:Gt,marginalGraphics:ht,xValues:go,yValues:po,annotations:We,svgAnnotationRules:Ee,annotationFrame:Zt,xAccessor:Qo,yAccessor:Zo,annotationData:en(null===(u=bo.current)||void 0===u?void 0:u.getData()),pointNodes:null===(d=bo.current)||void 0===d?void 0:d.scene.filter(e=>"point"===e.type),curve:"string"==typeof P?P:void 0,underlayRendered:!0,linkedCrosshairName:jt,linkedCrosshairSourceId:At}),(et||tt)&&e.jsx(x,{width:Xt,height:Vt,totalWidth:Pt[0],totalHeight:Pt[1],margin:Yt,dimension:null!==(h=null==et?void 0:et.dimension)&&void 0!==h?h:"xy",scales:no,onBrush:null!=tt?tt:()=>{},binSize:T,snap:null==et?void 0:et.snap,binBoundaries:null!==(g=null==et?void 0:et.binBoundaries)&&void 0!==g?g:"bar"===p?null===(f=bo.current)||void 0===f?void 0:f.getBinBoundaries():void 0,snapDuring:null==et?void 0:et.snapDuring,streaming:"streaming"===v}),(null==st?void 0:st.showBadge)&&e.jsx("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===st.badgePosition?{top:4,left:4}:"bottom-left"===st.badgePosition?{bottom:4,left:4}:"bottom-right"===st.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{padding:"2px 8px",borderRadius:4,fontSize:11,fontWeight:600,pointerEvents:"none",background:uo?"#dc3545":"#28a745",color:"white"}),children:uo?"STALE":"LIVE"}),Xo,Go]})]})});Lo.displayName="StreamXYFrame";const To=t.createContext(null);function Ro({colors:o,categories:n,colorScheme:i="category10",children:r}){const s=t.useMemo(()=>{if(o)return o;if(n){const e=Array.isArray(i)?i:W[i]||E,t={};for(let o=0;n.length>o;o++)t[n[o]]=e[o%e.length];return t}return{}},[o,n,i]);return e.jsx(To.Provider,{value:s,children:r})}function Bo(){return t.useContext(To)}function Do(e){const t=[];for(const[o,n]of Object.entries(e.fields))if("point"===n.type)t.push(e=>n.values.has(e[o]));else{const[e,i]=n.range;t.push(t=>{const n=t[o];return n>=e&&i>=n})}return e=>t.every(t=>t(e))}function Io(e,t){const o=[];for(const[n,i]of e.clauses)"crossfilter"===e.resolution&&n===t||o.push(Do(i));return 0===o.length?()=>!0:"intersect"===e.resolution?e=>o.every(t=>t(e)):e=>o.some(t=>t(e))}function No(e,t){let o=e.get(t);return o||(o={name:t,resolution:"union",clauses:new Map},e.set(t,o)),o}Ro.displayName="CategoryColorProvider";const[Ho,Wo]=w(e=>({selections:new Map,setClause(t,o){e(e=>{const n=new Map(e.selections),i=No(n,t),r=new Map(i.clauses);return r.set(o.clientId,o),n.set(t,Object.assign(Object.assign({},i),{clauses:r})),{selections:n}})},clearClause(t,o){e(e=>{const n=e.selections.get(t);if(!n)return{};const i=new Map(e.selections),r=new Map(n.clauses);return r.delete(o),i.set(t,Object.assign(Object.assign({},n),{clauses:r})),{selections:i}})},setResolution(t,o){e(e=>{const n=new Map(e.selections),i=No(n,t);return n.set(t,Object.assign(Object.assign({},i),{resolution:o})),{selections:n}})},clearSelection(t){e(e=>{const o=new Map(e.selections),n=o.get(t);return n&&o.set(t,Object.assign(Object.assign({},n),{clauses:new Map})),{selections:o}})}})),[Eo,Fo]=w(e=>({observations:[],maxObservations:100,version:0,pushObservation(t){e(e=>{const o=e.observations;return o.push(t),o.length>e.maxObservations&&o.shift(),{version:e.version+1}})},clearObservations(){e(()=>({observations:[],version:0}))}}));function $o(e){const o=t.useId(),n=e.clientId||o,{name:i}=e,r=Wo(e=>e.selections.get(i)),s=Wo(e=>e.setClause),a=Wo(e=>e.clearClause),l=t.useMemo(()=>!!r&&r.clauses.size>0,[r]);return{predicate:t.useMemo(()=>r&&0!==r.clauses.size?Io(r,n):()=>!0,[r,n]),isActive:l,selectPoints:t.useCallback(e=>{const t={};for(const[o,n]of Object.entries(e))t[o]={type:"point",values:new Set(n)};s(i,{clientId:n,type:"point",fields:t})},[n,i,s]),selectInterval:t.useCallback(e=>{const t={};for(const[o,n]of Object.entries(e))t[o]={type:"interval",range:n};s(i,{clientId:n,type:"interval",fields:t})},[n,i,s]),clear:t.useCallback(()=>{a(i,n)},[a,i,n]),clientId:n}}function zo(e){const o=e.name||"hover",{fields:n}=e,{predicate:i,isActive:r,selectPoints:s,clear:a}=$o({name:o});return{onHover:t.useCallback(e=>{if(!e)return void a();const t={};for(const o of n){const n=e[o];void 0!==n&&(t[o]=[n])}Object.keys(t).length>0&&s(t)},[n,s,a,o]),predicate:i,isActive:r}}function Yo(e){const{name:o,xField:n,yField:i}=e,{predicate:r,isActive:s,selectInterval:a,clear:l}=$o({name:o}),c=n&&i?"xyBrush":n?"xBrush":"yBrush",u=t.useCallback(e=>{if(!e)return void l();const t={};"xyBrush"===c&&Array.isArray(e)&&2===e.length?(n&&(t[n]=[Math.min(e[0][0],e[1][0]),Math.max(e[0][0],e[1][0])]),i&&(t[i]=[Math.min(e[0][1],e[1][1]),Math.max(e[0][1],e[1][1])])):"xBrush"===c&&Array.isArray(e)?n&&(t[n]=[Math.min(...e),Math.max(...e)]):"yBrush"===c&&Array.isArray(e)&&i&&(t[i]=[Math.min(...e),Math.max(...e)]),Object.keys(t).length>0&&a(t)},[c,n,i,a,l]);return{brushInteraction:t.useMemo(()=>({brush:c,during:u,end:u}),[c,u]),predicate:r,isActive:s,clear:l}}function Go(e={}){const{limit:o=50,types:n,chartId:i}=e,r=Fo(e=>e.version),s=Fo(e=>e.observations),a=Fo(e=>e.clearObservations),l=t.useMemo(()=>{let e=s;if(n&&n.length>0){const t=new Set(n);e=e.filter(e=>t.has(e.type))}return i&&(e=e.filter(e=>e.chartId===i)),e.length>o&&(e=e.slice(e.length-o)),e},[s,n,i,o,r]);return{observations:l,latest:l.length>0?l[l.length-1]:null,clear:a}}const qo=t.createContext(!1);function Xo({selections:e}){const o=Wo(e=>e.setResolution);return t.useEffect(()=>{for(const[t,n]of Object.entries(e))n.resolution&&o(t,n.resolution)},[e,o]),null}function Vo({categoryColors:o,interaction:n,selectionName:i,field:r}){const s=Object.entries(o);if(0===s.length)return null;const a=s.map(([e])=>e),l=[{styleFn:e=>({fill:e.color||"#333",stroke:e.color||"#333"}),type:"fill",items:s.map(([e,t])=>({label:e,color:t})),label:""}],c=zo({name:i,fields:[r]}),u=$o({name:i,clientId:"__linked-legend-isolate__"}),[d,h]=t.useState(new Set),[g,f]=t.useState(null),p=t.useRef(u.selectPoints);p.current=u.selectPoints;const y=t.useRef(u.clear);y.current=u.clear,t.useEffect(()=>{"isolate"===n&&(d.size>0?p.current({[r]:Array.from(d)}):y.current())},[n,d,r]);const v=t.useCallback(e=>{"highlight"===n&&(e?(f(e.label),c.onHover({[r]:e.label})):(f(null),c.onHover(null)))},[n,r,c]),m=t.useCallback(e=>{"isolate"===n&&h(t=>{const o=new Set(t);return o.has(e.label)?o.delete(e.label):o.add(e.label),o.size===a.length?new Set:o})},[n,a.length]),[b,[x]]=Yt([0,0],!0,!1),k=t.useMemo(()=>function(e,t){if(!t||0===e.length)return 1;let o=0,n=1;for(const i of e){const e=26+7*i.length;o>0&&o+e>t&&(n++,o=0),o+=e}return n}(s.map(([e])=>e),x),[s,x]);return e.jsx("div",{ref:b,style:{width:"100%",display:"block"},children:e.jsx("svg",{width:"100%",height:Math.max(30,22*k+8),style:{display:"block",overflow:"visible"},children:e.jsx(He,{legendGroups:l,title:!1,orientation:"horizontal",width:x,height:20,customHoverBehavior:"highlight"===n?v:void 0,customClickBehavior:"isolate"===n?m:void 0,highlightedCategory:g,isolatedCategories:d})})})}function Uo({children:t,selections:o,showLegend:n,legendPosition:i="top",legendInteraction:r="none",legendSelectionName:s="legend",legendField:a="category"}){const l=Bo(),c=void 0!==n?n:!(!l||0>=Object.keys(l).length);return e.jsx(Ho,{children:e.jsxs(Eo,{children:[o&&e.jsx(Xo,{selections:o}),e.jsxs(qo.Provider,{value:c,children:[c&&"top"===i&&l&&e.jsx(Vo,{categoryColors:l,interaction:r,selectionName:s,field:a}),t,c&&"bottom"===i&&l&&e.jsx(Vo,{categoryColors:l,interaction:r,selectionName:s,field:a})]})]})})}function Ko({data:e,colorBy:t,colorScale:o,getColor:n,strokeColor:i,strokeWidth:r,categories:s}){const a=(s&&s.length>0?s:Array.from(new Set(e.map(e=>"function"==typeof t?t(e):e[t])))).map((i,r)=>{const s=e.find("function"==typeof t?e=>t(e)===i:e=>e[t]===i),a=s?n(s,t,o):o?o(i):F[r%F.length];return{label:i+"",color:a}});return{legendGroups:[{styleFn:e=>{const t=e.color||"#333",o={fill:t,stroke:t};return void 0!==i&&(o.stroke=i),void 0!==r&&(o.strokeWidth=r),o},type:"fill",items:a,label:""}]}}function Qo(e){return e?"string"==typeof e?{name:e}:e:null}function Zo(e,t,o){return t?n=>{var i;const r=Object.assign({},e(n));if(t.isActive)if(t.predicate(n))(null==o?void 0:o.selectedStyle)&&Object.assign(r,o.selectedStyle);else{const e=null!==(i=null==o?void 0:o.unselectedOpacity)&&void 0!==i?i:.5;r.opacity=e,r.fillOpacity=e,r.strokeOpacity=e,(null==o?void 0:o.unselectedStyle)&&Object.assign(r,o.unselectedStyle)}return r}:e}const Jo={light:M,dark:C,"high-contrast":_,pastels:{mode:"light",colors:{primary:"#c9a0dc",secondary:"#b8a8c8",categorical:["#f0a0c0","#88d4ab","#b0a0e8","#f0c888"],sequential:"purples",background:"#fdf6f0",surface:"#fff5ee",text:"#4a3728",textSecondary:"#8b7355",grid:"#e8d5c4",border:"#e8d5c4",focus:"#c9a0dc",annotation:"#c9a0dc",success:"#9ad4a3",danger:"#e8869a",warning:"#f0c888",error:"#c86070",info:"#9cb8e0"},typography:{fontFamily:"Inter, system-ui, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#fff5ee",text:"#4a3728",borderRadius:"8px",shadow:"0 2px 8px rgba(0, 0, 0, 0.12)"},borderRadius:"10px"},"pastels-dark":{mode:"dark",colors:{primary:"#c9a0dc",secondary:"#a899c0",categorical:["#f0a0c0","#88d4ab","#b0a0e8","#f0c888"],sequential:"purples",background:"#1a1525",surface:"#251e35",text:"#e8ddf0",textSecondary:"#a899c0",grid:"#3d3455",border:"#3d3455",focus:"#c9a0dc",annotation:"#c9a0dc",success:"#88d4ab",danger:"#f0a0c0",warning:"#f0c888",error:"#e87690",info:"#9cb8e0"},typography:{fontFamily:"Inter, system-ui, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#251e35",text:"#e8ddf0",borderRadius:"8px",shadow:"0 4px 12px rgba(0, 0, 0, 0.4)"},borderRadius:"10px"},"bi-tool":{mode:"light",colors:{primary:"#2563eb",secondary:"#6b7280",categorical:["#2563eb","#0d9488","#ea580c","#6b7280"],sequential:"blues",background:"#f5f6f8",surface:"#ffffff",text:"#2c3e50",textSecondary:"#7f8c9b",grid:"#d8dce3",border:"#d8dce3",focus:"#2563eb",annotation:"#2563eb",success:"#10b981",danger:"#ef4444",warning:"#f59e0b",error:"#dc2626",info:"#2563eb"},typography:{fontFamily:"'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#ffffff",text:"#2c3e50",borderRadius:"6px",shadow:"0 2px 8px rgba(0, 0, 0, 0.12)"},borderRadius:"8px"},"bi-tool-dark":{mode:"dark",colors:{primary:"#3b82f6",secondary:"#9ca3af",categorical:["#3b82f6","#14b8a6","#f97316","#9ca3af"],sequential:"blues",background:"#111827",surface:"#1f2937",text:"#f3f4f6",textSecondary:"#9ca3af",grid:"#374151",border:"#374151",focus:"#3b82f6",annotation:"#3b82f6",success:"#34d399",danger:"#f87171",warning:"#fbbf24",error:"#ef4444",info:"#60a5fa"},typography:{fontFamily:"'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#1f2937",text:"#f3f4f6",borderRadius:"6px",shadow:"0 4px 12px rgba(0, 0, 0, 0.4)"},borderRadius:"8px"},italian:{mode:"light",colors:{primary:"#cc0000",secondary:"#666666",categorical:["#cc0000","#333333","#c8a415","#4682b4"],sequential:"reds",background:"#fafafa",surface:"#ffffff",text:"#1a1a1a",textSecondary:"#666666",grid:"#e0e0e0",border:"#e0e0e0",focus:"#cc0000",annotation:"#cc0000",success:"#556b2f",danger:"#cc0000",warning:"#c8a415",error:"#8b0000",info:"#4682b4"},typography:{fontFamily:"'Helvetica Neue', Helvetica, Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#ffffff",text:"#1a1a1a",borderRadius:"2px",shadow:"0 2px 4px rgba(0, 0, 0, 0.15)"},borderRadius:"2px"},"italian-dark":{mode:"dark",colors:{primary:"#ff3333",secondary:"#aaaaaa",categorical:["#ff3333","#aaaaaa","#d4a843","#6aa4d4"],sequential:"reds",background:"#0a0a0a",surface:"#1a1a1a",text:"#f5f5f5",textSecondary:"#aaaaaa",grid:"#333333",border:"#333333",focus:"#ff3333",annotation:"#ff3333",success:"#7a8b5a",danger:"#ff3333",warning:"#d4a843",error:"#cc0000",info:"#6aa4d4"},typography:{fontFamily:"'Helvetica Neue', Helvetica, Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#1a1a1a",text:"#f5f5f5",borderRadius:"2px",shadow:"0 2px 8px rgba(0, 0, 0, 0.5)"},borderRadius:"2px"},tufte:{mode:"light",colors:{primary:"#8b0000",secondary:"#555555",categorical:["#8b4513","#556b2f","#4a5568","#800020"],sequential:"oranges",background:"#fffff8",surface:"#fffff8",text:"#111111",textSecondary:"#555555",grid:"#e0ddd0",border:"#e0ddd0",focus:"#8b0000",annotation:"#8b0000",success:"#556b2f",danger:"#8b0000",warning:"#b88700",error:"#6b0000",info:"#4a5568"},typography:{fontFamily:"Georgia, 'Times New Roman', serif",titleSize:16,labelSize:12,tickSize:10,tickFontFamily:"'Courier New', Courier, monospace",legendSize:11},tooltip:{background:"#fffff8",text:"#111111",borderRadius:"2px",shadow:"0 1px 3px rgba(0, 0, 0, 0.1)"},borderRadius:"0px"},"tufte-dark":{mode:"dark",colors:{primary:"#c05050",secondary:"#a09880",categorical:["#c08050","#7a8b5a","#8090a0","#a05060"],sequential:"oranges",background:"#1c1b18",surface:"#262520",text:"#e8e4d8",textSecondary:"#a09880",grid:"#3d3c35",border:"#3d3c35",focus:"#c05050",annotation:"#c05050",success:"#7a8b5a",danger:"#c05050",warning:"#c8a060",error:"#a04040",info:"#8090a0"},typography:{fontFamily:"Georgia, 'Times New Roman', serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#262520",text:"#e8e4d8",borderRadius:"2px",shadow:"0 2px 6px rgba(0, 0, 0, 0.4)"},borderRadius:"0px"},journalist:{mode:"light",colors:{primary:"#e45050",secondary:"#666666",categorical:["#3a86c8","#e45050","#d4a843","#888888"],sequential:"blues",background:"#ffffff",surface:"#f8f8f8",text:"#222222",textSecondary:"#666666",grid:"#d4d4d4",border:"#d4d4d4",focus:"#e45050",annotation:"#e45050",success:"#2d7a3d",danger:"#c8303a",warning:"#d4a843",error:"#a02028",info:"#3a86c8"},typography:{fontFamily:"'Franklin Gothic Medium', 'Libre Franklin', Arial, sans-serif",titleSize:18,labelSize:12,tickSize:10,tickFontFamily:"'Courier New', Courier, monospace",legendSize:11},tooltip:{background:"#f8f8f8",text:"#222222",borderRadius:"4px",shadow:"0 2px 6px rgba(0, 0, 0, 0.12)"},borderRadius:"4px"},"journalist-dark":{mode:"dark",colors:{primary:"#ff6b6b",secondary:"#a0a0a0",categorical:["#5a9fd8","#ff6b6b","#e0c060","#aaaaaa"],sequential:"blues",background:"#141414",surface:"#1e1e1e",text:"#ededed",textSecondary:"#a0a0a0",grid:"#383838",border:"#383838",focus:"#ff6b6b",annotation:"#ff6b6b",success:"#6fba78",danger:"#ff6b6b",warning:"#e0c060",error:"#d04040",info:"#5a9fd8"},typography:{fontFamily:"'Franklin Gothic Medium', 'Libre Franklin', Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#1e1e1e",text:"#ededed",borderRadius:"4px",shadow:"0 4px 12px rgba(0, 0, 0, 0.4)"},borderRadius:"4px"},playful:{mode:"light",colors:{primary:"#8b5cf6",secondary:"#7c5a9e",categorical:["#8b5cf6","#ec4899","#06b6d4","#84cc16"],sequential:"viridis",background:"#fdf8ff",surface:"#ffffff",text:"#2d1b4e",textSecondary:"#7c5a9e",grid:"#e8d0f8",border:"#e8d0f8",focus:"#8b5cf6",annotation:"#8b5cf6",success:"#10d870",danger:"#ff4b6e",warning:"#ffaa33",error:"#e11d48",info:"#06b6d4"},typography:{fontFamily:"'Nunito', 'Poppins', system-ui, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#ffffff",text:"#2d1b4e",borderRadius:"12px",shadow:"0 4px 12px rgba(139, 92, 246, 0.15)"},borderRadius:"12px"},"playful-dark":{mode:"dark",colors:{primary:"#a78bfa",secondary:"#b8a0d8",categorical:["#a78bfa","#f472b6","#22d3ee","#a3e635"],sequential:"viridis",background:"#150a28",surface:"#1f1138",text:"#f0e8ff",textSecondary:"#b8a0d8",grid:"#3a2560",border:"#3a2560",focus:"#a78bfa",annotation:"#a78bfa",success:"#4ade80",danger:"#fb7185",warning:"#fbbf24",error:"#f43f5e",info:"#22d3ee"},typography:{fontFamily:"'Nunito', 'Poppins', system-ui, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#1f1138",text:"#f0e8ff",borderRadius:"12px",shadow:"0 4px 12px rgba(0, 0, 0, 0.4)"},borderRadius:"12px"},carbon:{mode:"light",colors:{primary:"#0f62fe",secondary:"#525252",categorical:["#6929c4","#1192e8","#005d5d","#9f1853"],sequential:"blues",diverging:"RdBu",background:"#ffffff",surface:"#ffffff",text:"#161616",textSecondary:"#525252",grid:"#e0e0e0",border:"#e0e0e0",focus:"#0f62fe",annotation:"#0f62fe",success:"#24a148",danger:"#da1e28",warning:"#f1c21b",error:"#a2191f",info:"#0043ce"},typography:{fontFamily:"'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#ffffff",text:"#161616",borderRadius:"2px",shadow:"0 2px 6px rgba(0, 0, 0, 0.2)"},borderRadius:"0px"},"carbon-dark":{mode:"dark",colors:{primary:"#4589ff",secondary:"#a8a8a8",categorical:["#a56eff","#33b1ff","#08bdba","#ff7eb6"],sequential:"blues",diverging:"RdBu",background:"#161616",surface:"#262626",text:"#f4f4f4",textSecondary:"#a8a8a8",grid:"#393939",border:"#393939",focus:"#4589ff",annotation:"#4589ff",success:"#42be65",danger:"#fa4d56",warning:"#f1c21b",error:"#da1e28",info:"#4589ff"},typography:{fontFamily:"'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},tooltip:{background:"#262626",text:"#f4f4f4",borderRadius:"2px",shadow:"0 4px 12px rgba(0, 0, 0, 0.5)"},borderRadius:"0px"}};function en(e){return Jo[e]}const tn=y.createContext(void 0);function on({theme:e}){const t=L(e=>e.setTheme),o=L(e=>e.theme),n=y.useRef(o);n.current=o;const i=y.useRef(null);return y.useEffect(()=>{if(void 0!==e)return;if("undefined"==typeof window||!window.matchMedia)return;const o=window.matchMedia("(forced-colors: active)");return o.matches&&(i.current=n.current,t(_)),zt(o,e=>{var o;e.matches?(i.current=n.current,t(_)):(t(null!==(o=i.current)&&void 0!==o?o:M),i.current=null)})},[e,t]),y.useEffect(()=>{if(void 0!==e)if("string"==typeof e){const o=en(e);t(o||e)}else t(e)},[e,t]),null}function nn({children:t}){var o,n,i,r,s;const a=L(e=>e.theme),l=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({position:"relative","--semiotic-bg":a.colors.background,"--semiotic-text":a.colors.text,"--semiotic-text-secondary":a.colors.textSecondary,"--semiotic-grid":a.colors.grid,"--semiotic-border":a.colors.border,"--semiotic-primary":a.colors.primary,"--semiotic-font-family":a.typography.fontFamily},a.colors.focus?{"--semiotic-focus":a.colors.focus}:{}),(null===(o=a.tooltip)||void 0===o?void 0:o.background)?{"--semiotic-tooltip-bg":a.tooltip.background}:{}),(null===(n=a.tooltip)||void 0===n?void 0:n.text)?{"--semiotic-tooltip-text":a.tooltip.text}:{}),(null===(i=a.tooltip)||void 0===i?void 0:i.borderRadius)?{"--semiotic-tooltip-radius":a.tooltip.borderRadius}:{}),(null===(r=a.tooltip)||void 0===r?void 0:r.fontSize)?{"--semiotic-tooltip-font-size":a.tooltip.fontSize}:{}),(null===(s=a.tooltip)||void 0===s?void 0:s.shadow)?{"--semiotic-tooltip-shadow":a.tooltip.shadow}:{}),a.borderRadius?{"--semiotic-border-radius":a.borderRadius}:{}),a.colors.selection?{"--semiotic-selection-color":a.colors.selection}:{}),null!=a.colors.selectionOpacity?{"--semiotic-selection-opacity":a.colors.selectionOpacity+""}:{}),a.colors.diverging?{"--semiotic-diverging":a.colors.diverging}:{}),a.colors.annotation?{"--semiotic-annotation-color":a.colors.annotation}:{}),null!=a.typography.legendSize?{"--semiotic-legend-font-size":a.typography.legendSize+"px"}:{}),null!=a.typography.titleFontSize?{"--semiotic-title-font-size":a.typography.titleFontSize+"px"}:{}),null!=a.typography.tickFontFamily?{"--semiotic-tick-font-family":a.typography.tickFontFamily}:{}),{"--semiotic-secondary":a.colors.secondary||a.colors.primary,"--semiotic-surface":a.colors.surface||a.colors.background}),a.colors.success?{"--semiotic-success":a.colors.success}:{}),a.colors.danger?{"--semiotic-danger":a.colors.danger}:{}),a.colors.warning?{"--semiotic-warning":a.colors.warning}:{}),a.colors.error?{"--semiotic-error":a.colors.error}:{}),a.colors.info?{"--semiotic-info":a.colors.info}:{}),c=y.useContext(tn),u={};return c&&(u["data-semiotic-theme"]=c),e.jsx("div",Object.assign({style:l},u,{children:t}))}function rn(){return L(e=>e.theme)}const sn="#007bff";function an(){var e;const t=rn(),o=null===(e=null==t?void 0:t.colors)||void 0===e?void 0:e.categorical;return o&&o.length>0?o:void 0}function ln(e,t,o,n,i){if(e)return e;let r;if(Array.isArray(o))r=o;else if(t&&t.length>0)r=t;else if("string"==typeof o){const e=W[o];Array.isArray(e)&&(r=e)}return r&&0!==r.length?null!=n?(i.has(n)||i.set(n,i.size),r[i.get(n)%r.length]):r[0]:sn}function cn(e,o,n){const i=Bo(),r=an();return t.useMemo(()=>{var t;if(!o)return;const s=null!==(t=null!=n?n:r&&r.length>0?r:void 0)&&void 0!==t?t:"category10";if(0!==e.length){if("function"==typeof o){const t=Array.from(new Set(e.map(e=>o(e)+"")));if(i&&Object.keys(i).length>0){const e=G(t.map(e=>({_cat:e})),"_cat",s);return t=>i[t]||e(t)}return G(t.map(e=>({_cat:e})),"_cat",s)}if(i&&Object.keys(i).length>0){const t=G(e,o,s);return e=>i[e]||t(e)}return G(e,o,s)}if(i&&Object.keys(i).length>0){const e=G([{_:"a"}],"_",s);return t=>i[t]||e(t)}},[e,o,n,i,r])}function un(e,o,n){return t.useMemo(()=>{if(!o||"auto"===o||"function"==typeof o)return e;const t=[...e],i="function"==typeof(r=n)?r:e=>e[r];var r;return t.sort("asc"===o?(e,t)=>i(e)-i(t):(e,t)=>i(t)-i(e))},[e,o,n])}function dn({selection:e,linkedHover:o,fallbackFields:n=[],unwrapData:i=!1,onObservation:r,chartType:s,chartId:a,onClick:l,hoverHighlight:c,colorByField:u}){const d=t.useId(),h=function(e,t){return e?!0===e?{name:"hover",fields:t||[]}:"string"==typeof e?{name:e,fields:t||[]}:{name:e.name||"hover",fields:e.fields||t||[],mode:e.mode,xField:e.xField}:null}(o,n),g=$o({name:(null==e?void 0:e.name)||"__unused__"}),f=zo({name:(null==h?void 0:h.name)||"hover",fields:(null==h?void 0:h.fields)||n||[]}),p=Fo(e=>e.pushObservation),y=e?{isActive:g.isActive,predicate:g.predicate}:null,[v,m]=t.useState(null),b=u||n[0],x=t.useMemo(()=>{if(!c||null==v||!b)return null;const e=v,t=b;return{isActive:!0,predicate:o=>{var n;return("string"==typeof o[t]?o[t]:(null!==(n=o[t])&&void 0!==n?n:"")+"")===e}}},[c,v,b]),k=t.useCallback(e=>{var t,n;if(o)if(e){let t=e.data||e.datum||e;if(Array.isArray(t)&&(t=t[0]),"x-position"===(null==h?void 0:h.mode)&&h.xField){const e=null==t?void 0:t[h.xField];null!=e&&Number.isFinite(Number(e))&&function(e,t,o){const n=nt.positions.get(e);(null==n?void 0:n.locked)||n&&n.xValue===t&&n.sourceId===o||(nt={positions:new Map(nt.positions).set(e,{xValue:t,sourceId:o})},rt())}(h.name||"hover",Number(e),d)}"x-position"!==(null==h?void 0:h.mode)&&f.onHover(t)}else"x-position"===(null==h?void 0:h.mode)&&st(h.name||"hover",d),"x-position"!==(null==h?void 0:h.mode)&&f.onHover(null);if(c&&b)if(e){let t=e.data||e.datum||e;Array.isArray(t)&&(t=t[0]);const o=null==t?void 0:t[b];m(null!=o?o+"":null)}else m(null);if(r||p){const o={timestamp:Date.now(),chartType:s||"unknown",chartId:a};if(e){let i=e.data||e.datum||e;Array.isArray(i)&&(i=i[0]);const s=Object.assign(Object.assign({},o),{type:"hover",datum:i||{},x:null!==(t=e.x)&&void 0!==t?t:0,y:null!==(n=e.y)&&void 0!==n?n:0});r&&r(s),p&&p(s)}else{const e=Object.assign(Object.assign({},o),{type:"hover-end"});r&&r(e),p&&p(e)}}},[o,f,h,d,r,s,a,p,c,b]),w=t.useCallback(e=>{var t,o,n,i;if("x-position"===(null==h?void 0:h.mode)&&h.xField&&e){let t=e.data||e.datum||e;Array.isArray(t)&&(t=t[0]);const o=null==t?void 0:t[h.xField];null!=o&&Number.isFinite(Number(o))&&function(e,t,o){const n=nt.positions.get(e);if(null==n?void 0:n.locked){const t=new Map(nt.positions);return t.delete(e),nt={positions:t},rt(),!1}nt={positions:new Map(nt.positions).set(e,{xValue:t,sourceId:o,locked:!0})},rt()}(h.name||"hover",Number(o),d)}if(e&&l){let n=e.data||e.datum||e;Array.isArray(n)&&(n=n[0]),l(n,{x:null!==(t=e.x)&&void 0!==t?t:0,y:null!==(o=e.y)&&void 0!==o?o:0})}if(r||p){const t={timestamp:Date.now(),chartType:s||"unknown",chartId:a};if(e){let o=e.data||e.datum||e;Array.isArray(o)&&(o=o[0]);const s=Object.assign(Object.assign({},t),{type:"click",datum:o||{},x:null!==(n=e.x)&&void 0!==n?n:0,y:null!==(i=e.y)&&void 0!==i?i:0});r&&r(s),p&&p(s)}else{const e=Object.assign(Object.assign({},t),{type:"click-end"});r&&r(e),p&&p(e)}}},[l,r,p,s,a,h,d]);return t.useEffect(()=>{if("x-position"!==(null==h?void 0:h.mode))return;const e=h.name||"hover";return()=>{at(e,d),st(e,d)}},[null==h?void 0:h.mode,null==h?void 0:h.name,d]),{activeSelectionHook:y,hoverSelectionHook:x,customHoverBehavior:k,customClickBehavior:w,crosshairSourceId:d}}function hn(e,t){const o="object"==typeof e&&null!==e?e:void 0;if("x-position"===(null==o?void 0:o.mode))return{linkedCrosshairName:o.name||"hover",linkedCrosshairSourceId:t}}function gn({data:e,colorBy:o,colorScale:n,showLegend:i,legendPosition:r="right",userMargin:s,defaults:a={top:50,bottom:60,left:70,right:40},categories:l}){const c=t.useContext(qo),u=void 0!==i?i:!c&&!!o,d=t.useMemo(()=>{if(!u||!o)return;const t=Ko({data:e,colorBy:o,colorScale:n,getColor:Y,categories:l});return 0!==t.legendGroups.reduce((e,t)=>e+t.items.length,0)?t:void 0},[u,o,e,n,l]),h=t.useMemo(()=>{const e="number"==typeof s?{top:s,bottom:s,left:s,right:s}:null!=s?s:{},t=Object.assign(Object.assign({},a),e);return d&&("right"===r&&110>t.right?t.right=110:"left"===r&&110>t.left?t.left=110:"top"===r&&50>t.top?t.top=50:"bottom"===r&&80>t.bottom&&(t.bottom=80)),t},[a,s,d,r]);return{legend:d,margin:h,legendPosition:r}}function fn(e,o,n){const[i,r]=t.useState(null),[s,a]=t.useState(new Set),l=t.useCallback(t=>{"highlight"===e&&r(t?t.label:null)},[e]),c=t.useCallback(t=>{"isolate"===e&&a(e=>{const o=new Set(e);return o.has(t.label)?o.delete(t.label):o.add(t.label),o.size===n.length?new Set:o})},[e,n.length]),u=t.useMemo(()=>{if(!e||"none"===e||!o)return null;const t="string"==typeof o?o:null;return"highlight"===e&&null!=i?{isActive:!0,predicate:e=>(t?e[t]:"function"==typeof o?o(e):null)===i}:"isolate"===e&&s.size>0?{isActive:!0,predicate:e=>{const n=t?e[t]:"function"==typeof o?o(e):null;return s.has(n)}}:null},[e,o,i,s]);return{highlightedCategory:"highlight"===e?i:null,isolatedCategories:"isolate"===e?s:new Set,onLegendHover:l,onLegendClick:c,legendSelectionHook:u}}const pn={primary:{width:600,height:400,showAxes:!0,showGrid:!1,enableHover:!0,showLegend:void 0,showLabels:void 0,marginDefaults:{top:50,bottom:60,left:70,right:40}},context:{width:400,height:250,showAxes:!1,showGrid:!1,enableHover:!1,showLegend:!1,showLabels:!1,marginDefaults:{top:10,bottom:10,left:10,right:10}},sparkline:{width:120,height:24,showAxes:!1,showGrid:!1,enableHover:!1,showLegend:!1,showLabels:!1,marginDefaults:{top:2,bottom:2,left:0,right:0}}};function yn(e,t,o){var n,i,r,s,a,l,c;const u=pn[e||"primary"],d="context"===e||"sparkline"===e;return{width:null!==(n=t.width)&&void 0!==n?n:e&&"primary"!==e||!(null==o?void 0:o.width)?u.width:o.width,height:null!==(i=t.height)&&void 0!==i?i:e&&"primary"!==e||!(null==o?void 0:o.height)?u.height:o.height,showAxes:null!==(r=t.showAxes)&&void 0!==r?r:u.showAxes,showGrid:null!==(s=t.showGrid)&&void 0!==s?s:u.showGrid,enableHover:null!==(a=t.enableHover)&&void 0!==a?a:!!t.linkedHover||u.enableHover,showLegend:null!==(l=t.showLegend)&&void 0!==l?l:u.showLegend,showLabels:null!==(c=t.showLabels)&&void 0!==c?c:u.showLabels,title:d?void 0:t.title,description:t.description,summary:t.summary,accessibleTable:t.accessibleTable,xLabel:d?void 0:t.xLabel,yLabel:d?void 0:t.yLabel,categoryLabel:d?void 0:t.categoryLabel,valueLabel:d?void 0:t.valueLabel,marginDefaults:vn(u.marginDefaults,t.showCategoryTicks,t.orientation),compactMode:d}}function vn(e,t,o){if(!1!==t)return e;const n=Object.assign({},e);return"horizontal"===o?n.left=Math.min(n.left,15):n.bottom=Math.min(n.bottom,15),n}function mn(e,t){if(!function(e){return void 0!==e.stroke||void 0!==e.strokeWidth||void 0!==e.opacity}(t))return null!=e?e:()=>({});const o={};return void 0!==t.stroke&&(o.stroke=t.stroke),void 0!==t.strokeWidth&&(o.strokeWidth=t.strokeWidth),void 0!==t.opacity&&(o.opacity=t.opacity),e?(...t)=>{const n=e(...t)||{};return Object.assign(Object.assign({},n),o)}:(...e)=>Object.assign({},o)}const bn={background:"var(--semiotic-tooltip-bg, rgba(0, 0, 0, 0.85))",color:"var(--semiotic-tooltip-text, white)",padding:"8px 12px",borderRadius:"var(--semiotic-tooltip-radius, 6px)",fontSize:"var(--semiotic-tooltip-font-size, 14px)",fontFamily:"var(--semiotic-font-family, inherit)",lineHeight:"1.5",boxShadow:"var(--semiotic-tooltip-shadow, 0 2px 8px rgba(0, 0, 0, 0.15))",pointerEvents:"none",maxWidth:"300px",wordWrap:"break-word"};function xn(e,t){return"function"==typeof t?t(e):e[t]}function kn(e,t){if(t)return t(e);if(null==e)return"";if("number"==typeof e){if(!Number.isFinite(e))return e+"";const t=Number.isInteger(e)?e:parseFloat(e.toPrecision(6));return Math.abs(t)>9999?t.toLocaleString():t+""}return e instanceof Date?e.toLocaleDateString():"object"==typeof e&&null!==e?void 0!==e.id?e.id+"":void 0!==e.name?e.name+"":JSON.stringify(e):e+""}function wn(t={}){const{fields:o,title:n,format:i,style:r={},className:s=""}=t;return t=>{if(!t||"object"!=typeof t)return null;let a;const l=[];if(n){const e=xn(t,n);a=kn(e,i)}if(o&&o.length>0)o.forEach(e=>{let o,n,r;"string"==typeof e?(o=e,n=e,r=i):(o=e.label,n=e.accessor||e.key||"",r=e.format||i);const s=xn(t,n);l.push({label:o,value:kn(s,r)})});else if(!n){const e=["value","y","name","id","label"];for(const o of e)if(void 0!==t[o]){a=kn(t[o],i);break}if(!a){const e=Object.keys(t).filter(e=>!e.startsWith("_"));e.length>0&&(a=kn(t[e[0]],i))}}const c=Object.assign(Object.assign({},bn),r);return e.jsxs("div",{className:("semiotic-tooltip "+s).trim(),style:c,children:[a&&e.jsx("div",{style:{fontWeight:l.length>0?"bold":"normal"},children:a}),l.map((t,o)=>e.jsxs("div",{style:{marginTop:0===o&&a?"4px":0},children:[t.label&&e.jsxs("span",{children:[t.label,": "]}),t.value]},o))]})}}function jn(t){if(!0===t)return wn();if("function"==typeof t){const o=t;return t=>{const n=o(!t||"object"!=typeof t.data||null===t.data||"node"!==t.type&&"edge"!==t.type?t:t.data);return null==n?null:e.jsx("div",{className:"semiotic-tooltip",style:bn,children:n})}}return!1!==t&&void 0!==t&&("object"==typeof t&&null!==t&&("fields"in t||"title"in t)?wn(t):wn())}function An(e){return"string"==typeof e?e:"value"}function Sn(e){return null==e?"–":"number"==typeof e?Math.abs(e)>9999?e.toLocaleString():e+"":e instanceof Date?e.toLocaleDateString():e+""}function On(e,t){if(!t)return Sn(e);try{const o=t(e);return null==o?Sn(e):o}catch(t){return Sn(e)}}function Mn(e,t){return"function"==typeof t?t(e):e[t]}function Cn(t){const o=t.find(e=>"title"===e.role),n=t.filter(e=>"title"!==e.role);return t=>{const i=t.data;if(!i)return null;const r=o?On(Mn(i,o.accessor),o.format):null;return e.jsxs("div",{className:"semiotic-tooltip",style:bn,children:[null!=r&&e.jsx("div",{style:{fontWeight:"bold",marginBottom:n.length>0?4:0},children:r}),n.map((t,o)=>{const n=On(Mn(i,t.accessor),t.format);return e.jsxs("div",{style:o>0?{marginTop:2}:void 0,children:[e.jsxs("span",{style:{opacity:.7},children:[t.label,": "]}),e.jsx("span",{children:n})]},o)})]})}}function _n({categoryAccessor:t,valueAccessor:o,groupAccessor:n,groupLabel:i,pieData:r=!1,valueFormat:s}){return a=>{var l;const c=r?(null===(l=a.data)||void 0===l?void 0:l[0])||a.data||a:a.data||a,u=Mn(c,t),d=Mn(c,o),h=n?Mn(c,n):void 0;return e.jsxs("div",{className:"semiotic-tooltip",style:bn,children:[e.jsx("div",{style:{fontWeight:"bold"},children:Sn(u)}),e.jsx("div",{style:{marginTop:4},children:On(d,s)}),null!=h&&e.jsxs("div",{style:{marginTop:2,opacity:.8},children:[i||An(n),": ",Sn(h)]})]})}}function Pn({componentName:t,message:o,diagnosticHint:n,width:i,height:r}){return e.jsx("div",{role:"alert",style:{width:i,height:Math.max(r,120),display:"flex",alignItems:"center",justifyContent:"center",border:"1px dashed rgba(128, 128, 128, 0.4)",borderRadius:8,background:"rgba(128, 128, 128, 0.04)",padding:24,boxSizing:"border-box"},children:e.jsxs("div",{style:{textAlign:"center",maxWidth:400},children:[e.jsx("div",{style:{fontSize:13,fontWeight:600,color:"rgba(128, 128, 128, 0.7)",marginBottom:6,fontFamily:"monospace"},children:t}),e.jsx("div",{style:{fontSize:14,color:"rgba(128, 128, 128, 0.9)",lineHeight:1.5},children:o}),n&&e.jsx("div",{"data-testid":"semiotic-diagnostic-hint",style:{marginTop:10,padding:"8px 12px",background:"rgba(128, 128, 128, 0.06)",borderRadius:4,fontSize:12,color:"rgba(128, 128, 128, 0.8)",fontFamily:"monospace",textAlign:"left",whiteSpace:"pre-wrap",lineHeight:1.6},children:n})]})})}class Ln extends y.Component{constructor(e){super(e),this.state={error:null}}static getDerivedStateFromError(e){return{error:e}}componentDidCatch(e,t){var o,n;null===(n=(o=this.props).onError)||void 0===n||n.call(o,e,t)}render(){if(this.state.error){const{fallback:t}=this.props,o=this.state.error;return"function"==typeof t?t(o):void 0!==t?t:e.jsx(Pn,{componentName:"ChartErrorBoundary",message:o.message||"An unexpected error occurred while rendering this chart.",width:600,height:400})}return this.props.children}}function Tn(e,t){const o=e.length,n=t.length,i=Array(n+1);for(let e=0;n>=e;e++)i[e]=e;for(let r=1;o>=r;r++){let o=i[0];i[0]=r;for(let s=1;n>=s;s++){const n=i[s];i[s]=e[r-1]===t[s-1]?o:1+Math.min(o,i[s],i[s-1]),o=n}}return i[n]}function Rn(e,t,o=3){let n,i=o+1;for(const o of t){const t=Tn(e.toLowerCase(),o.toLowerCase());i>t&&(i=t,n=o)}return i>o?void 0:n}function Bn(e){return e.length>3?[e[0],e[Math.floor(e.length/2)],e[e.length-1]]:e}function Dn(e,t){var o;if(0===t.length)return null;const n=e.toLowerCase();return t.find(e=>e.toLowerCase().includes(n)||n.includes(e.toLowerCase()))||(null!==(o=Rn(e,t,3))&&void 0!==o?o:null)}function In({componentName:e,data:t,accessors:o,requiredProps:n}){if(n)for(const[t,o]of Object.entries(n))if(null==o)return`${e}: ${t} is required. Provide a field name or function.`;if(null==t)return null;if(!Array.isArray(t)||0===t.length)return e+": No data provided. Pass a non-empty array to the data prop.";if(!Array.isArray(t)&&"object"==typeof t)return e+": data should be an array, but received an object. If this is hierarchical data, use TreeDiagram, Treemap, or CirclePack instead.";if(o){const n=Bn(t).find(e=>e&&"object"==typeof e);if(n){const t=Object.keys(n);for(const[i,r]of Object.entries(o))if(r&&"string"==typeof r&&!(r in n)){const o=Dn(r,t),n=o?` Try ${i}="${o}".`:"";return`${e}: ${i} "${r}" not found in data. Available fields: ${t.join(", ")}.${n}`}}}return null}function Nn({componentName:e,data:t,dataLabel:o="data"}){return null==t?`${e}: No ${o} provided. Pass a hierarchical object with children: { name: "root", children: [...] }.`:Array.isArray(t)?`${e}: ${o} should be a single root object, not an array. Expected: { name: "root", children: [...] }. If you have flat data, use LineChart, BarChart, or Scatterplot instead.`:null}function Hn({componentName:e,nodes:t,edges:o,nodesRequired:n=!1,edgesRequired:i=!0,accessors:r}){if(null==t&&null==o)return null;if(i&&(!o||!Array.isArray(o)||0===o.length))return e+': No edges provided. Pass a non-empty array: edges={[{ source: "A", target: "B", value: 10 }, ...]}.';if(n&&(!t||!Array.isArray(t)||0===t.length))return e+': No nodes provided. Pass a non-empty array: nodes={[{ id: "A" }, { id: "B" }, ...]}.';if(r&&t&&t.length>0){const o=Bn(t).find(e=>e&&"object"==typeof e);if(o){const t=Object.keys(o);for(const[n,i]of Object.entries(r))if(i&&"string"==typeof i&&!(i in o)){const o=Dn(i,t),r=o?` Try ${n}="${o}".`:"";return`${e}: ${n} "${i}" not found in node data. Available fields: ${t.join(", ")}.${r}`}}}return null}const Wn={width:{type:"number"},height:{type:"number"},margin:{type:"object"},className:{type:"string"},title:{type:"string"},enableHover:{type:"boolean"},showLegend:{type:"boolean"},showGrid:{type:"boolean"},colorBy:{type:["string","function"]},colorScheme:{type:["string","array"]},tooltip:{type:["boolean","function","object"]},annotations:{type:"array"},frameProps:{type:"object"},onClick:{type:"function"}},En={xLabel:{type:"string"},yLabel:{type:"string"},xFormat:{type:"function"},yFormat:{type:"function"}},Fn={categoryLabel:{type:"string"},valueLabel:{type:"string"},valueFormat:{type:"function"},categoryFormat:{type:"function"}},$n=["linear","monotoneX","monotoneY","step","stepAfter","stepBefore","basis","cardinal","catmullRom"],zn=["vertical","horizontal"],Yn={LineChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},lineBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:$n},lineWidth:{type:"number"},showPoints:{type:"boolean"},pointRadius:{type:"number"},fillArea:{type:"boolean"},areaOpacity:{type:"number"}})},AreaChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},areaBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:$n},areaOpacity:{type:"number"},showLine:{type:"boolean"},lineWidth:{type:"number"}})},StackedAreaChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},areaBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:$n},areaOpacity:{type:"number"},showLine:{type:"boolean"},lineWidth:{type:"number"},normalize:{type:"boolean"}})},Scatterplot:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},pointRadius:{type:"number"},pointOpacity:{type:"number"}})},BubbleChart:{required:["data","sizeBy"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},bubbleOpacity:{type:"number"},bubbleStrokeWidth:{type:"number"},bubbleStrokeColor:{type:"string"}})},Heatmap:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},colorScheme:{type:"string",enum:["blues","reds","greens","viridis","custom"]},customColorScale:{type:["object","function"]},showValues:{type:"boolean"},valueFormat:{type:"function"},cellBorderColor:{type:"string"},cellBorderWidth:{type:"number"},showLegend:{type:"boolean"},legendPosition:{type:"string",enum:["right","left","top","bottom"]}})},QuadrantChart:{required:["quadrants"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},quadrants:{type:"object"},xCenter:{type:"number"},yCenter:{type:"number"},centerlineStyle:{type:"object"},showQuadrantLabels:{type:"boolean"},quadrantLabelSize:{type:"number"},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},pointRadius:{type:"number"},pointOpacity:{type:"number"}})},MultiAxisLineChart:{required:["series"],dataShape:"array",dataAccessors:["xAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},series:{type:"array"},colorScheme:{type:["string","array"]},curve:{type:"string"},lineWidth:{type:"number"},annotations:{type:"array"}})},CandlestickChart:{required:["highAccessor","lowAccessor"],dataShape:"array",dataAccessors:["xAccessor","highAccessor","lowAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},highAccessor:{type:["string","function"]},lowAccessor:{type:["string","function"]},openAccessor:{type:["string","function"]},closeAccessor:{type:["string","function"]},candlestickStyle:{type:"object"},mode:{type:"string",enum:["primary","context","sparkline"]},annotations:{type:"array"}})},ConnectedScatterplot:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),En),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},orderAccessor:{type:["string","function"]},orderLabel:{type:"string"},pointRadius:{type:"number"},pointIdAccessor:{type:["string","function"]},annotations:{type:"array"}})},BarChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:zn},sort:{type:["boolean","string","function"]},barPadding:{type:"number"},roundedTop:{type:"number"}})},StackedBarChart:{required:["data","stackBy"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},stackBy:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:zn},normalize:{type:"boolean"},sort:{type:["boolean","string","function"]},barPadding:{type:"number"},roundedTop:{type:"number"}})},LikertChart:{required:["levels"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor","levelAccessor","countAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},levelAccessor:{type:["string","function"]},countAccessor:{type:["string","function"]},levels:{type:"array"},orientation:{type:"string",enum:zn},barPadding:{type:"number"}})},GroupedBarChart:{required:["data","groupBy"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},groupBy:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:zn},sort:{type:["boolean","string","function"]},barPadding:{type:"number"},roundedTop:{type:"number"}})},SwarmPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:zn},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},pointRadius:{type:"number"},pointOpacity:{type:"number"},categoryPadding:{type:"number"},brush:{type:"boolean"},onBrush:{type:"function"},linkedBrush:{type:["string","object"]}})},BoxPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:zn},showOutliers:{type:"boolean"},outlierRadius:{type:"number"},categoryPadding:{type:"number"}})},Histogram:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},bins:{type:"number"},relative:{type:"boolean"},categoryPadding:{type:"number"},brush:{type:"boolean"},onBrush:{type:"function"},linkedBrush:{type:["string","object"]}})},ViolinPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:zn},bins:{type:"number"},curve:{type:"string"},showIQR:{type:"boolean"},categoryPadding:{type:"number"},brush:{type:"boolean"},onBrush:{type:"function"},linkedBrush:{type:["string","object"]}})},RidgelinePlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},bins:{type:"number"},amplitude:{type:"number"},categoryPadding:{type:"number"}})},DotPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:zn},sort:{type:["boolean","string","function"]},dotRadius:{type:"number"},categoryPadding:{type:"number"}})},PieChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign({},Wn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},startAngle:{type:"number"},cornerRadius:{type:"number"}})},DonutChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign({},Wn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},innerRadius:{type:"number"},centerContent:{type:["object","string","number"]},startAngle:{type:"number"},cornerRadius:{type:"number"}})},GaugeChart:{required:["value"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{value:{type:"number"},min:{type:"number"},max:{type:"number"},thresholds:{type:"array"},arcWidth:{type:"number"},sweep:{type:"number"},showNeedle:{type:"boolean"},needleColor:{type:"string"},centerContent:{type:["object","string","number","function"]},valueFormat:{type:"function"},showScaleLabels:{type:"boolean"},backgroundColor:{type:"string"}})},FunnelChart:{required:["data"],dataShape:"array",dataAccessors:["stepAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},stepAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},categoryAccessor:{type:["string","function"]},orientation:{type:"string",enum:["horizontal","vertical"]},connectorOpacity:{type:"number"},showCategoryTicks:{type:"boolean"},responsiveWidth:{type:"boolean"},legendPosition:{type:"string",enum:["right","left","top","bottom"]}})},SwimlaneChart:{required:["subcategoryAccessor"],dataShape:"array",dataAccessors:["categoryAccessor","subcategoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},Wn),Fn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},subcategoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:["horizontal","vertical"]},barPadding:{type:"number"},showCategoryTicks:{type:"boolean"},brush:{type:"boolean"},onBrush:{type:"function"},linkedBrush:{type:["string","object"]},responsiveWidth:{type:"boolean"},legendPosition:{type:"string",enum:["right","left","top","bottom"]}})},ForceDirectedGraph:{required:["nodes","edges"],dataShape:"network",dataAccessors:["nodeIDAccessor","sourceAccessor","targetAccessor"],props:Object.assign(Object.assign({},Wn),{nodes:{type:"array"},edges:{type:"array"},nodeIDAccessor:{type:["string","function"]},sourceAccessor:{type:["string","function"]},targetAccessor:{type:["string","function"]},nodeLabel:{type:["string","function"]},nodeSize:{type:["number","string","function"]},nodeSizeRange:{type:"array"},edgeWidth:{type:["number","string","function"]},edgeColor:{type:"string"},edgeOpacity:{type:"number"},iterations:{type:"number"},forceStrength:{type:"number"},showLabels:{type:"boolean"}})},SankeyDiagram:{required:["edges"],dataShape:"network",dataAccessors:["sourceAccessor","targetAccessor"],props:Object.assign(Object.assign({},Wn),{nodes:{type:"array"},edges:{type:"array"},sourceAccessor:{type:["string","function"]},targetAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},edgeColorBy:{type:["string","function"],enum:["source","target","gradient"]},orientation:{type:"string",enum:zn},nodeAlign:{type:"string",enum:["justify","left","right","center"]},nodePaddingRatio:{type:"number"},nodeWidth:{type:"number"},nodeLabel:{type:["string","function"]},showLabels:{type:"boolean"},edgeOpacity:{type:"number"},edgeSort:{type:"function"}})},ChordDiagram:{required:["edges"],dataShape:"network",dataAccessors:["sourceAccessor","targetAccessor"],props:Object.assign(Object.assign({},Wn),{nodes:{type:"array"},edges:{type:"array"},sourceAccessor:{type:["string","function"]},targetAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},edgeColorBy:{type:["string","function"],enum:["source","target"]},padAngle:{type:"number"},groupWidth:{type:"number"},sortGroups:{type:"function"},nodeLabel:{type:["string","function"]},showLabels:{type:"boolean"},edgeOpacity:{type:"number"}})},TreeDiagram:{required:["data"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{data:{type:"object"},layout:{type:"string",enum:["tree","cluster","partition","treemap","circlepack"]},orientation:{type:"string",enum:["vertical","horizontal","radial"]},childrenAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},colorByDepth:{type:"boolean"},edgeStyle:{type:"string",enum:["line","curve"]},nodeLabel:{type:["string","function"]},showLabels:{type:"boolean"},nodeSize:{type:"number"}})},Treemap:{required:["data"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{data:{type:"object"},childrenAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},colorByDepth:{type:"boolean"},showLabels:{type:"boolean"},nodeLabel:{type:["string","function"]}})},CirclePack:{required:["data"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{data:{type:"object"},childrenAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},colorByDepth:{type:"boolean"},showLabels:{type:"boolean"},nodeLabel:{type:["string","function"]},circleOpacity:{type:"number"}})},OrbitDiagram:{required:["data"],dataShape:"object",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{data:{type:"object"},childrenAccessor:{type:["string","function"]},nodeIdAccessor:{type:["string","function"]},orbitMode:{type:["string","array"]},speed:{type:"number"},revolution:{type:"function"},eccentricity:{type:["number","function"]},orbitSize:{type:["number","function"]},nodeRadius:{type:["number","function"]},showRings:{type:"boolean"},showLabels:{type:"boolean"},animated:{type:"boolean"},colorByDepth:{type:"boolean"},annotations:{type:"array"},foregroundGraphics:{type:"object"}})},RealtimeLineChart:{required:[],dataShape:"realtime",dataAccessors:[],props:{size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},stroke:{type:"string"},strokeWidth:{type:"number"},strokeDasharray:{type:"string"},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"},transition:{type:"object"}}},RealtimeHistogram:{required:["binSize"],dataShape:"realtime",dataAccessors:[],props:{binSize:{type:"number"},size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},categoryAccessor:{type:["string","function"]},colors:{type:"object"},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},fill:{type:"string"},stroke:{type:"string"},strokeWidth:{type:"number"},gap:{type:"number"},brush:{type:["boolean","string","object"]},onBrush:{type:"function"},linkedBrush:{type:["string","object"]},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"},transition:{type:"object"}}},RealtimeSwarmChart:{required:[],dataShape:"realtime",dataAccessors:[],props:{size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},categoryAccessor:{type:["string","function"]},colors:{type:"object"},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},radius:{type:"number"},fill:{type:"string"},opacity:{type:"number"},stroke:{type:"string"},strokeWidth:{type:"number"},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"},transition:{type:"object"}}},RealtimeWaterfallChart:{required:[],dataShape:"realtime",dataAccessors:[],props:{size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},positiveColor:{type:"string"},negativeColor:{type:"string"},connectorStroke:{type:"string"},connectorWidth:{type:"number"},gap:{type:"number"},stroke:{type:"string"},strokeWidth:{type:"number"},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"},transition:{type:"object"}}},RealtimeHeatmap:{required:[],dataShape:"realtime",dataAccessors:[],props:{size:{type:"array"},margin:{type:"object"},className:{type:"string"},timeAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},heatmapXBins:{type:"number"},heatmapYBins:{type:"number"},aggregation:{type:"string",enum:["count","sum","mean"]},windowSize:{type:"number"},windowMode:{type:"string",enum:["sliding","stepping"]},arrowOfTime:{type:"string",enum:["left","right"]},timeExtent:{type:"array"},valueExtent:{type:"array"},extentPadding:{type:"number"},showAxes:{type:"boolean"},background:{type:"string"},enableHover:{type:["boolean","object"]},tooltipContent:{type:"function"},tooltip:{type:["function","object"]},onHover:{type:"function"},annotations:{type:"array"},svgAnnotationRules:{type:"function"},tickFormatTime:{type:"function"},tickFormatValue:{type:"function"},width:{type:"number"},height:{type:"number"},decay:{type:"object"},pulse:{type:"object"},staleness:{type:"object"}}},ScatterplotMatrix:{required:["data","fields"],dataShape:"array",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{data:{type:"array"},fields:{type:"array"}})},MinimapChart:{required:["data"],dataShape:"array",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{data:{type:"array"}})},ChoroplethMap:{required:["areas"],dataShape:"array",dataAccessors:["valueAccessor"],props:Object.assign(Object.assign({},Wn),{areas:{type:["array","string"]},valueAccessor:{type:["string","function"]},colorScheme:{type:["string","array"]},projection:{type:"string"}})},ProportionalSymbolMap:{required:["points"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign({},Wn),{points:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},sizeBy:{type:["string","function"]},areas:{type:["array","string"]}})},FlowMap:{required:["flows"],dataShape:"array",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{flows:{type:"array"},nodes:{type:"array"},valueAccessor:{type:["string","function"]}})},DistanceCartogram:{required:["points"],dataShape:"array",dataAccessors:[],props:Object.assign(Object.assign({},Wn),{points:{type:"array"},center:{type:"array"},costAccessor:{type:["string","function"]}})}};function Gn(e,t){return(Array.isArray(t)?t:[t]).includes(Array.isArray(e)?"array":typeof e)}function qn(e,t){const o=[],n=Yn[e];if(!n)return{valid:!1,errors:[`Unknown component "${e}". Valid components: ${Object.keys(Yn).join(", ")}`]};for(const i of n.required)null==t[i]&&o.push(`"${i}" is required for ${e}.`);for(const[e,i]of Object.entries(t)){if(null==i)continue;const t=n.props[e];if(t){if(!Gn(i,t.type)){const n=Array.isArray(t.type)?t.type.join(" | "):t.type;o.push(`"${e}" should be ${n}, got ${Array.isArray(i)?"array":typeof i}.`);continue}t.enum&&"string"==typeof i&&!t.enum.includes(i)&&o.push(`"${e}" value "${i}" is not valid. Expected one of: ${t.enum.join(", ")}.`)}}const i=Object.keys(n.props),r=new Set(i);for(const n of Object.keys(t))if(void 0!==t[n]&&!r.has(n)){const t=Rn(n,i),r=t?`Unknown prop "${n}" for ${e}. Did you mean "${t}"?`:`Unknown prop "${n}" for ${e}. Valid props: ${i.join(", ")}.`;o.push(r)}if("array"===n.dataShape){const i=t.data,r={};for(const e of n.dataAccessors){const o=t[e];"string"==typeof o&&(r[e]=o)}const s=In({componentName:e,data:i,accessors:Object.keys(r).length>0?r:void 0});s&&o.push(s)}else if("object"===n.dataShape){const n=Nn({componentName:e,data:t.data});n&&o.push(n)}else if("network"===n.dataShape){const i=Hn({componentName:e,nodes:t.nodes,edges:t.edges,nodesRequired:n.required.includes("nodes"),edgesRequired:n.required.includes("edges")});i&&o.push(i)}return{valid:0===o.length,errors:o}}const Xn=new Set(["TreeDiagram","Treemap","CirclePack","OrbitDiagram"]),Vn=new Set(["ForceDirectedGraph","SankeyDiagram","ChordDiagram"]),Un=new Set(["BarChart","StackedBarChart","GroupedBarChart","AreaChart","StackedAreaChart"]),Kn=new Set(["LineChart","AreaChart","StackedAreaChart"]),Qn=new Set(["BarChart","StackedBarChart","GroupedBarChart","FunnelChart"]);function Zn(e){const t=e.match(/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i);if(!t)return null;const[o,n,i]=[parseInt(t[1],16)/255,parseInt(t[2],16)/255,parseInt(t[3],16)/255],r=e=>e>.03928?Math.pow((e+.055)/1.055,2.4):e/12.92;return.2126*r(o)+.7152*r(n)+.0722*r(i)}function Jn(e,t){const o=Zn(e),n=Zn(t);return null===o||null===n?null:(Math.max(o,n)+.05)/(Math.min(o,n)+.05)}const ei=["xAccessor","yAccessor","timeAccessor","valueAccessor","categoryAccessor","colorBy","sizeBy","lineBy","areaBy","stackBy","groupBy","orderAccessor","y0Accessor","sourceAccessor","targetAccessor","nodeIDAccessor","childrenAccessor","costAccessor"];function ti(e,t){const o=[],n=qn(e,t);for(const e of n.errors)o.push({severity:"error",code:"VALIDATION",message:e,fix:""});return Yn[e]?(function(e,t,o){const n=Yn[e];if(n){if("array"===n.dataShape){const e=t.data;e&&Array.isArray(e)&&0===e.length&&o.push({severity:"error",code:"EMPTY_DATA",message:"data is an empty array — chart will render blank.",fix:"Provide at least one data point: data={[{ x: 1, y: 2 }]}."})}"network"===n.dataShape&&t.edges&&Array.isArray(t.edges)&&0===t.edges.length&&o.push({severity:"error",code:"EMPTY_EDGES",message:"edges is an empty array — network chart will render blank.",fix:'Provide at least one edge: edges={[{ source: "A", target: "B" }]}.'})}}(e,t,o),function(e,t,o){const n=t.width,i=t.height;if(void 0===n||"number"==typeof n&&n>0||o.push({severity:"error",code:"BAD_WIDTH",message:`width=${JSON.stringify(n)} — chart needs a positive number.`,fix:"Set width={600} or use responsiveWidth={true}."}),void 0===i||"number"==typeof i&&i>0||o.push({severity:"error",code:"BAD_HEIGHT",message:`height=${JSON.stringify(i)} — chart needs a positive number.`,fix:"Set height={400} or use responsiveHeight={true}."}),t.size&&Array.isArray(t.size)){const[e,n]=t.size;(null!=e&&0>=e||null!=n&&0>=n)&&o.push({severity:"error",code:"BAD_SIZE",message:`size=[${e}, ${n}] — both dimensions must be positive.`,fix:"Set size={[600, 400]}."})}}(0,t,o),function(e,t,o){const n=Yn[e];if(!n||"array"!==n.dataShape)return;const i=t.data;if(!i||!Array.isArray(i)||0===i.length)return;const r=i[0];if(!r||"object"!=typeof r)return;const s=Object.keys(r);for(const e of n.dataAccessors){const n=t[e];"string"==typeof n&&(n in r||o.push({severity:"error",code:"ACCESSOR_MISSING",message:`${e}="${n}" not found in data. Available fields: ${s.join(", ")}.`,fix:`Change ${e} to one of: ${s.map(e=>`"${e}"`).join(", ")}.`}))}}(e,t,o),function(e,t,o){Xn.has(e)&&Array.isArray(t.data)&&o.push({severity:"error",code:"HIERARCHY_FLAT_ARRAY",message:e+" expects hierarchical data but received a flat array.",fix:'Pass a root object: data={{ name: "root", children: [...] }}. For flat data, use BarChart or LineChart.'})}(e,t,o),function(e,t,o){Vn.has(e)&&(t.edges||t.data||o.push({severity:"error",code:"NETWORK_NO_EDGES",message:e+" requires an edges prop.",fix:'Provide edges={[{ source: "A", target: "B", value: 10 }]}.'}))}(e,t,o),function(e,t,o){const n=Yn[e];if(!n||"array"!==n.dataShape)return;const i=t.data;if(!i||!Array.isArray(i)||0===i.length)return;const r=i[0];if(!r||"object"!=typeof r)return;const s=t.xAccessor;"string"==typeof s&&r[s]instanceof Date&&!t.xFormat&&o.push({severity:"warning",code:"DATE_NO_FORMAT",message:`xAccessor "${s}" contains Date objects but no xFormat is provided. Axis ticks may display "[object Object]".`,fix:"Add xFormat={d => d.toLocaleDateString()} or use timestamps (d.getTime()) instead of Date objects."})}(e,t,o),function(e,t,o){t.linkedHover&&!t.selection&&o.push({severity:"warning",code:"LINKED_HOVER_NO_SELECTION",message:"linkedHover is set but selection is not — this chart emits hover events but won't highlight from others.",fix:`Add selection={{ name: "${"object"==typeof t.linkedHover&&t.linkedHover.name||"hl"}" }} to receive cross-highlights.`})}(0,t,o),function(e,t,o){var n;if(!Un.has(e))return;const i=t.rExtent||t.yExtent;i&&Array.isArray(i)&&i.length>=1&&null!=i[0]&&0!==i[0]&&o.push({severity:"warning",code:"NON_ZERO_BASELINE",message:`${e} has a non-zero baseline (${i[0]}). Bar and area charts should start at zero to avoid exaggerating differences.`,fix:`Remove the custom extent minimum or set it to 0: rExtent={[0, ${null!==(n=i[1])&&void 0!==n?n:"auto"}]}. For trend-focused charts, use LineChart instead.`})}(e,t,o),function(e,t,o){if(!Kn.has(e))return;if(t.gapStrategy)return;const n=t.data;if(!n||!Array.isArray(n)||0===n.length)return;const i=t.yAccessor||"y";"string"==typeof i&&n.some(e=>{const t=e[i];return null==t||Number.isNaN(t)})&&o.push({severity:"warning",code:"DATA_GAPS",message:`Data contains null/undefined/NaN values in "${i}". Default behavior breaks the line at gaps.`,fix:'Set gapStrategy="break" (default), "interpolate", or "zero" to control gap handling.'})}(e,t,o),function(e,t,o){var n,i;const r=null!==(n=t.width)&&void 0!==n?n:600,s=null!==(i=t.height)&&void 0!==i?i:400,a=t.margin;if(!a||"object"!=typeof a)return;const l=(a.left||0)+(a.right||0),c=(a.top||0)+(a.bottom||0);r>l||o.push({severity:"error",code:"MARGIN_OVERFLOW_H",message:`Horizontal margins (${l}px) >= width (${r}px) — no drawing area left.`,fix:"Reduce margin.left/right or increase width."}),s>c||o.push({severity:"error",code:"MARGIN_OVERFLOW_V",message:`Vertical margins (${c}px) >= height (${s}px) — no drawing area left.`,fix:"Reduce margin.top/bottom or increase height."})}(0,t,o),function(e,t,o){var n;const i=Yn[e];if(!i||"array"!==i.dataShape)return;const r=t.data;if(!r||!Array.isArray(r)||0===r.length)return;const s=[];t.xAccessor&&"string"==typeof t.xAccessor&&s.push({prop:"xAccessor",name:t.xAccessor}),t.yAccessor&&"string"==typeof t.yAccessor&&s.push({prop:"yAccessor",name:t.yAccessor}),t.valueAccessor&&"string"==typeof t.valueAccessor&&s.push({prop:"valueAccessor",name:t.valueAccessor});const a=Math.min(r.length,5);for(const e of s){let t=!0;for(let o=0;a>o;o++){const i=null===(n=r[o])||void 0===n?void 0:n[e.name];if("number"==typeof i&&Number.isFinite(i)){t=!1;break}}t&&o.push({severity:"error",code:"DEGENERATE_EXTENT",message:`${e.prop}="${e.name}" produces NaN or non-finite values for all sampled data points — chart extents will be invalid.`,fix:`Ensure data[].${e.name} contains finite numbers, or use a function accessor to transform values.`})}}(e,t,o),function(e,t,o){if(!Qn.has(e))return;const n=t.barPadding;"number"==typeof n&&10>n&&o.push({severity:"warning",code:"BAR_PADDING_INVISIBLE",message:`barPadding=${n} is very small — bars may appear to have no spacing between them.`,fix:"Increase barPadding to at least 10 for visible gaps, e.g. barPadding={12}."})}(e,t,o),function(e,t,o){if("bottom"!==t.legendPosition)return;const n=t.margin;if(!n||"object"!=typeof n)return;const i=n.bottom;"number"==typeof i&&70>i&&o.push({severity:"warning",code:"BOTTOM_MARGIN_WITH_LEGEND",message:`legendPosition="bottom" with margin.bottom=${i}px — legend may overlap axis labels.`,fix:"Increase margin.bottom to at least 70, e.g. margin={{ ...margin, bottom: 80 }}."})}(0,t,o),function(e,t,o){var n;if(!t.showLegend)return;if("right"!==(null!==(n=t.legendPosition)&&void 0!==n?n:"right"))return;const i=t.margin;if(!i||"object"!=typeof i)return;const r=i.right;"number"==typeof r&&100>r&&o.push({severity:"warning",code:"LEGEND_MARGIN_TIGHT",message:`showLegend is true with legendPosition="right" but margin.right=${r}px — legend may be clipped or overlap the chart.`,fix:"Increase margin.right to at least 100, e.g. margin={{ ...margin, right: 120 }}."})}(0,t,o),function(e,t,o){if("Heatmap"!==e)return;const n=t.data;if(!n||!Array.isArray(n)||0===n.length)return;const i=n[0];if(i&&"object"==typeof i)for(const e of["xAccessor","yAccessor"]){const n=t[e];if("string"!=typeof n)continue;const r=i[n];"string"==typeof r&&o.push({severity:"warning",code:"HEATMAP_STRING_ACCESSOR",message:`${e}="${n}" resolves to string values (e.g. "${r}"). Heatmap will use categorical axis handling which may produce unexpected cell layout.`,fix:"If you intend categorical axes this is fine. Otherwise, convert values to numbers before passing data."})}}(e,t,o),function(e,t,o){const n=t.colorScheme;if(!n||!Array.isArray(n))return;const i="string"==typeof t.background?t.background:"#ffffff";if(!i.startsWith("#"))return;const r=[];for(const e of n){if("string"!=typeof e||!e.startsWith("#"))continue;const t=Jn(e,i);null!==t&&3>t&&r.push(`${e} (${t.toFixed(1)}:1)`)}r.length>0&&o.push({severity:"warning",code:"LOW_COLOR_CONTRAST",message:`${r.length} color(s) in colorScheme have < 3:1 contrast against background "${i}": ${r.join(", ")}. Data marks may be hard to see.`,fix:'Use darker colors on light backgrounds or lighter colors on dark backgrounds. Import COLOR_BLIND_SAFE_CATEGORICAL from "semiotic" for an accessible preset.'})}(0,t,o),function(e,t,o){const n=t.colorScheme;if(!n||!Array.isArray(n)||2>n.length)return;const i=n.filter(e=>"string"==typeof e&&e.startsWith("#"));if(2>i.length)return;const r=[];for(let e=0;i.length-1>e;e++){const t=Jn(i[e],i[e+1]);null!==t&&1.5>t&&r.push(`${i[e]} / ${i[e+1]} (${t.toFixed(1)}:1)`)}r.length>0&&o.push({severity:"warning",code:"LOW_ADJACENT_CONTRAST",message:`${r.length} adjacent color pair(s) in colorScheme have very similar luminance: ${r.join("; ")}. Categories may be hard to distinguish.`,fix:'Alternate light and dark colors in the scheme, or use COLOR_BLIND_SAFE_CATEGORICAL from "semiotic" for a pre-tested palette.'})}(0,t,o),function(e,t,o){const n="string"==typeof t.title&&t.title.trim().length>0,i="string"==typeof t.description&&t.description.trim().length>0,r="string"==typeof t.summary&&t.summary.trim().length>0;n||i||r||o.push({severity:"warning",code:"MISSING_DESCRIPTION",message:'No title, description, or summary provided. Screen readers will use a generic label like "XY chart".',fix:'Add a title="..." prop for a brief label, or description="..." for a detailed aria-label, or summary="..." for a screen-reader-only note describing the chart\'s purpose.'})}(0,t,o),function(e,t,o){const n=[];for(const e of ei)"function"==typeof t[e]&&n.push(e);n.length>0&&o.push({severity:"warning",code:"FUNCTION_ACCESSOR",message:`Function accessor${n.length>1?"s":""} detected: ${n.join(", ")}. If defined inline (e.g. \`xAccessor={d => d.value}\`), every parent re-render creates a new reference which may trigger unnecessary scene rebuilds.`,fix:'Use string accessors when possible (e.g. xAccessor="value"), or memoize with useCallback / define outside the component.'})}(0,t,o),{ok:o.every(e=>"warning"===e.severity),diagnoses:o}):{ok:0===o.length,diagnoses:o}}var oi;const ni="undefined"!=typeof process&&"production"!==(null===(oi=process.env)||void 0===oi?void 0:oi.NODE_ENV);function ii({componentName:t,width:o,height:n,chartProps:i,children:r}){return e.jsx(Ln,{fallback:r=>{let s="";if(ni&&i)try{const e=ti(t,i);e.ok||(s=e.diagnoses.map(e=>`${"error"===e.severity?"✗":"⚠"} ${e.message}${e.fix?" — Fix: "+e.fix:""}`).join("\n"))}catch(e){}return e.jsx(Pn,{componentName:t,message:r.message,diagnosticHint:s,width:o,height:n})},children:r})}const ri={display:"flex",alignItems:"center",justifyContent:"center",color:"var(--semiotic-text-secondary, #999)",fontSize:13,fontFamily:"inherit",border:"1px dashed var(--semiotic-border, #ddd)",borderRadius:4,boxSizing:"border-box"},si={background:"var(--semiotic-border, #e0e0e0)",borderRadius:2};function ai(t,o,n,i){return!1===i||null==t||Array.isArray(t)&&t.length>0?null:Array.isArray(t)?e.jsx("div",{style:Object.assign(Object.assign({},ri),{width:o,height:n}),children:i||"No data available"}):null}function li(t,o,n){if(!t)return null;const i=Math.min(5,Math.floor(n/40)),r=Math.max(8,Math.floor(n/(3*i))),s=Math.max(6,Math.floor(n/(2.5*i))),a=Math.floor((n-(i*(r+s)-s))/2);return e.jsx("div",{style:{width:o,height:n,position:"relative",overflow:"hidden",border:"1px solid var(--semiotic-border, #e0e0e0)",borderRadius:4,boxSizing:"border-box"},children:Array.from({length:i},(t,n)=>e.jsx("div",{className:"semiotic-loading-bar",style:Object.assign(Object.assign({},si),{position:"absolute",top:a+n*(r+s),left:Math.floor(.1*o),width:30+(37*n+13)%50+"%",height:r,opacity:.5+n%2*.2})},n))})}function ci(e,t,o,n){if(!ni)return;if(!t||0===t.length)return;if("string"!=typeof n)return;const i=t[0];if(!i||"object"!=typeof i)return;if(n in i)return;const r=Object.keys(i).join(", ");console.warn(`[semiotic] ${e}: ${o} "${n}" not found in data. Available keys: ${r}`)}function ui(e){const o=L(e=>e.theme.colors.selectionOpacity);return t.useMemo(()=>{var t,n;if(void 0!==e||void 0!==o)return Object.assign(Object.assign({name:null!==(t=null==e?void 0:e.name)&&void 0!==t?t:""},e),{unselectedOpacity:null!==(n=null==e?void 0:e.unselectedOpacity)&&void 0!==n?n:o})},[e,o])}function di(e,t,o,n){return new(o||(o=Promise))(function(i,r){function s(e){try{l(n.next(e))}catch(e){r(e)}}function a(e){try{l(n.throw(e))}catch(e){r(e)}}function l(e){e.done?i(e.value):function(e){return e instanceof o?e:new o(function(t){t(e)})}(e.value).then(s,a)}l((n=n.apply(e,t||[])).next())})}"function"==typeof SuppressedError&&SuppressedError;const hi="__forecastSegment";let gi=null;function fi(){return di(this,void 0,void 0,function*(){return gi||(gi=yield Promise.resolve().then(function(){return kl})),gi})}const pi=t.forwardRef(function(o,n){var i,r;const s=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=s.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=s.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=s.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=s.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=s.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=s.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=s.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const a=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,summary:o.summary,accessibleTable:o.accessibleTable,xLabel:o.xLabel,yLabel:o.yLabel}),{data:l,margin:c,className:u,xFormat:d,yFormat:h,xAccessor:g="x",yAccessor:f="y",lineBy:p,lineDataAccessor:y="coordinates",colorBy:v,colorScheme:m,curve:b="linear",showPoints:x=!1,pointRadius:k=3,fillArea:w=!1,areaOpacity:j=.3,lineWidth:A=2,lineGradient:S,tooltip:O,pointIdAccessor:M,annotations:C,directLabel:_,gapStrategy:P="break",anomaly:L,forecast:T,frameProps:R={},selection:B,linkedHover:D,onObservation:I,onClick:N,hoverHighlight:H,hoverRadius:W,chartId:E,loading:F,emptyContent:$,legendInteraction:z,legendPosition:G,xScaleType:q,yScaleType:X,color:V,stroke:U,strokeWidth:K,opacity:Q}=o,Z=a.width,J=a.height,ee=a.enableHover,te=a.showGrid,oe=a.showLegend,ne=a.title,ie=a.description,re=a.summary,se=a.accessibleTable,ae=a.xLabel,le=a.yLabel,ce=li(F,Z,J),ue=ce?null:ai(l,Z,J,$),de=l||[];ci("LineChart",de,"xAccessor",g),ci("LineChart",de,"yAccessor",f);const he="string"==typeof g?g:"__semiotic_resolvedX",ge="string"==typeof f?f:"__semiotic_resolvedY",[fe,pe]=t.useState(null),[ye,ve]=t.useState([]),me=t.useMemo(()=>{if(!T&&!L)return de;const e="function"==typeof g,t="function"==typeof f;return e||t?de.map(o=>{const n=Object.assign({},o);return e&&(n.__semiotic_resolvedX=g(o)),t&&(n.__semiotic_resolvedY=f(o)),n}):de},[de,T,L,g,f]),be=t.useRef(T),xe=t.useRef(L);t.useEffect(()=>{if(!T&&!L)return void((be.current||xe.current)&&(pe(null),ve([]),be.current=T,xe.current=L));let e=!1;const t=T!==be.current||L!==xe.current;if(be.current=T,xe.current=L,t&&(pe(null),ve([])),T){const t=p&&"string"==typeof p&&"object"==typeof T?Object.assign(Object.assign({},T),{_groupBy:p}):T;(function(...e){return di(this,void 0,void 0,function*(){return(yield fi()).buildForecast(...e)})})(me,he,ge,t,L).then(t=>{e||(pe(t),ve(t.annotations))}).catch(()=>{e||(pe(null),ve([]))})}else L&&function(...e){return di(this,void 0,void 0,function*(){return(yield fi()).buildAnomalyAnnotations(...e)})}(L).then(t=>{e||(pe(null),ve(t))}).catch(()=>{e||ve([])});return()=>{e=!0}},[me,T,L,he,ge]);const ke=fe?fe.processedData:de,we="__compoundGroup",je=!(!T||!p),Ae=je?we:T?hi:p,Se=t.useMemo(()=>{if(!je)return ke;const e="function"==typeof p?p:e=>e[p];return ke.map(t=>{const o=Object.assign({},t);return o[we]=`${e(t)}__${t[hi]||"observed"}`,o})},[ke,je,p]),Oe=je?Se:ke,Me=t.useMemo(()=>{if(!T)return;const e=T.upperBounds,t=T.lowerBounds;if(!e&&!t)return;const o="function"==typeof e?e:"string"==typeof e?t=>t[e]:null,n="function"==typeof t?t:"string"==typeof t?e=>e[t]:null;let i=1/0,r=-1/0;const s=fe?fe.processedData:de;for(const e of s){const t="function"==typeof f?f(e):+e[f];if(isFinite(t)&&(i>t&&(i=t),t>r&&(r=t)),o){const t=o(e);null!=t&&isFinite(t)&&(t>r&&(r=t),i>t&&(i=t))}if(n){const t=n(e);null!=t&&isFinite(t)&&(i>t&&(i=t),t>r&&(r=t))}}return isFinite(i)&&isFinite(r)?[i,r]:void 0},[T,fe,de,f]),{activeSelectionHook:Ce,hoverSelectionHook:_e,customHoverBehavior:Pe,customClickBehavior:Le,crosshairSourceId:Te}=dn({selection:B,linkedHover:D,fallbackFields:v?["string"==typeof v?v:""]:[],onObservation:I,onClick:N,chartType:"LineChart",chartId:E,hoverHighlight:H,colorByField:"string"==typeof v?v:void 0}),Re=ui(B),Be=hn(D,Te),De=t.useCallback(e=>{const t="function"==typeof g?g(e):e[g],o="function"==typeof f?f(e):e[f];return null==t||null==o||Number.isNaN(t)||Number.isNaN(o)},[g,f]),Ie=void 0!==(null===(i=Oe[0])||void 0===i?void 0:i[y]),Ne=t.useMemo(()=>{if(Ie)return Oe;if(Ae){const e=Oe.reduce((e,t)=>{const o="function"==typeof Ae?Ae(t):t[Ae];if(!e[o]){const n={[y]:[]};"string"==typeof Ae&&(n[Ae]=o),je&&(n[hi]=t[hi],"string"==typeof p&&(n[p]=t[p])),e[o]=n}return e[o][y].push(t),e},{});return Object.values(e)}return[{[y]:Oe}]},[Oe,Ae,y,Ie]),{gapProcessedLineData:He,hasGaps:We}=t.useMemo(()=>{if("interpolate"===P){let e=!1;const t=[];for(const o of Ne){const n=(o[y]||[]).filter(t=>!De(t)||(e=!0,!1));n.length>0&&t.push(Object.assign(Object.assign({},o),{[y]:n}))}return{gapProcessedLineData:t,hasGaps:e}}if("break"===P){let e=!1;const t=[];for(const o of Ne){const n=o[y]||[];let i=[],r=0;const s=Ae&&"string"==typeof Ae?o[Ae]:void 0;for(const a of n)if(De(a))e=!0,i.length>0&&(t.push(Object.assign(Object.assign({},o),{[y]:i})),i=[],r++);else{const e=null!=s?`${s}__seg${r}`:"__seg"+r;i.push(Object.assign(Object.assign({},a),{_gapSegment:e}))}i.length>0&&t.push(Object.assign(Object.assign({},o),{[y]:i}))}return{gapProcessedLineData:t,hasGaps:e}}if("zero"===P){let e=!1;const t="string"==typeof f?f:"y",o=[];for(const n of Ne){const i=n[y]||[],r=[];for(const o of i)De(o)?(e=!0,r.push(Object.assign(Object.assign({},o),{[t]:0}))):r.push(o);o.push(Object.assign(Object.assign({},n),{[y]:r}))}return{gapProcessedLineData:o,hasGaps:e}}return{gapProcessedLineData:Ne,hasGaps:!1}},[Ne,P,y,De,Ae,f]),Ee=cn(ke,v,m),Fe=t.useMemo(()=>{if(!v)return[];const e=new Set;for(const t of ke){const o="function"==typeof v?v(t):t[v];null!=o&&e.add(o+"")}return Array.from(e)},[ke,v]),$e=fn(z,v,Fe),ze=t.useMemo(()=>_e||($e.legendSelectionHook?$e.legendSelectionHook:Ce),[_e,$e.legendSelectionHook,Ce]),Ye=t.useMemo(()=>(e,t)=>{const o={strokeWidth:A},n=!0===w||Array.isArray(w)&&null!=t&&w.includes(t);return v?Ee&&(o.stroke=Y(e,v,Ee),n&&(o.fill=o.stroke,o.fillOpacity=j)):(o.stroke=V||sn,n&&(o.fill=V||sn,o.fillOpacity=j)),o},[v,Ee,A,w,j,V]),[Ge,qe]=t.useState(null);t.useEffect(()=>{if(!T)return void qe(null);let e=!1;return function(...e){return di(this,void 0,void 0,function*(){return(yield fi()).createSegmentLineStyle(...e)})}(Ye,T).then(t=>{e||qe(()=>t)}).catch(()=>{e||qe(null)}),()=>{e=!0}},[Ye,T]);const Xe=Ge||Ye,Ve=t.useMemo(()=>mn(Xe,{stroke:U,strokeWidth:K,opacity:Q}),[Xe,U,K,Q]),Ue=t.useMemo(()=>Zo(Ve,ze,Re),[Ve,ze,Re]),Ke=t.useMemo(()=>{if(x)return e=>{const t={r:k,fillOpacity:1};return v?Ee&&(t.fill=Y(e.parentLine||e,v,Ee)):t.fill=V||sn,t}},[x,k,v,Ee,V]),Qe=Array.isArray(w)?"mixed":w?"area":"line",Ze="object"==typeof _?_:{},Je=Ze.position||"end",et=Ze.fontSize||11,tt=t.useMemo(()=>{var e,t;if(!_||!v)return[];const o="function"==typeof g?g:e=>e[g],n="function"==typeof f?f:e=>e[f],i="function"==typeof v?v:e=>e[v],r=new Map;for(const o of He){const n=o[y]||[];if(0===n.length)continue;const s="end"===Je?n[n.length-1]:n[0],a=null!==(t=null!==(e=i(s))&&void 0!==e?e:i(o))&&void 0!==t?t:"";a&&!r.has(a+"")&&r.set(a+"",s)}const s=Array.from(r.entries()).map(([e,t])=>({type:"text",label:e,["string"==typeof g?g:"x"]:o(t),["string"==typeof f?f:"y"]:n(t),dx:"end"===Je?6:-6,dy:0,color:Ee?Ee(e):sn,fontSize:et}));s.sort((e,t)=>{const o="string"==typeof f?f:"y";return e[o]-t[o]});for(let e=1;s.length>e;e++){const t="string"==typeof f?f:"y",o=s[e-1],n=s[e];et+2>Math.abs(n[t]+n.dy-(o[t]+o.dy))&&(n.dy+=et+2)}return s},[_,v,Ee,He,y,g,f,Je,et]),ot=(!_||void 0!==oe)&&oe,nt=t.useMemo(()=>{if(!_)return a.marginDefaults;const e=tt.reduce((e,t)=>{var o;const n=((null===(o=t.label)||void 0===o?void 0:o.length)||0)*(.6*et);return Math.max(e,n)},0),t=e+10,o="end"===Je?"right":"left";return Object.assign(Object.assign({},a.marginDefaults),{[o]:Math.max(a.marginDefaults[o]||0,t)})},[_,tt,et,Je,a.marginDefaults]),{legend:it,margin:rt,legendPosition:st}=gn({data:He,colorBy:v,colorScale:Ee,showLegend:ot,legendPosition:G,userMargin:c,defaults:nt}),at=p||v,lt=t.useMemo(()=>Cn([{label:ae||An(g),accessor:g,role:"x",format:d},{label:le||An(f),accessor:f,role:"y",format:h},...at?[{label:An(at),accessor:at,role:"group"}]:[]]),[g,f,ae,le,at,d,h]),ct=In({componentName:"LineChart",data:Ie?(null===(r=ke[0])||void 0===r?void 0:r[y])||[]:l,accessors:{xAccessor:g,yAccessor:f}}),ut=t.useMemo(()=>Ie||Ae||We?He.flatMap(e=>{const t=e[y]||[];return Ae&&"string"==typeof Ae?t.map(t=>Object.assign(Object.assign({},t),{[Ae]:e[Ae]})):t}):Oe,[He,y,Ie,Ae,Oe,We]),dt=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:Qe},Array.isArray(w)&&{areaGroups:w}),S&&{lineGradient:S}),null!=W&&{hoverRadius:W}),null!=l&&{data:ut}),{xAccessor:g,yAccessor:f,xScaleType:q,yScaleType:X}),Me&&{yExtent:Me}),{groupAccessor:"break"===P&&We?"_gapSegment":Ae||void 0,curve:b,lineStyle:Ue}),x&&{pointStyle:Ke}),{size:[Z,J],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:rt,showAxes:a.showAxes,xLabel:ae,yLabel:le,xFormat:d,yFormat:h,enableHover:ee,showGrid:te}),it&&{legend:it,legendPosition:st}),z&&"none"!==z&&{legendHoverBehavior:$e.onLegendHover,legendClickBehavior:$e.onLegendClick,legendHighlightedCategory:$e.highlightedCategory,legendIsolatedCategories:$e.isolatedCategories}),ne&&{title:ne}),ie&&{description:ie}),re&&{summary:re}),void 0!==se&&{accessibleTable:se}),u&&{className:u}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===O?()=>null:"multi"===O?t=>{var o,n,i,r,s,a,l,c,u,d;const h=t.allSeries;if(!h||0===h.length){const a=null!==(s=null!==(r=null!==(n=null===(o=t.data)||void 0===o?void 0:o.value)&&void 0!==n?n:null===(i=t.data)||void 0===i?void 0:i.y)&&void 0!==r?r:t.value)&&void 0!==s?s:t.y;return e.jsx("div",{className:"semiotic-tooltip",style:bn,children:e.jsx("div",{children:kn(a)})})}const g=null!==(d=null!==(c=null!==(a=t.xValue)&&void 0!==a?a:null===(l=t.data)||void 0===l?void 0:l.time)&&void 0!==c?c:null===(u=t.data)||void 0===u?void 0:u.x)&&void 0!==d?d:t.time;return e.jsxs("div",{className:"semiotic-tooltip",style:bn,children:[null!=g&&e.jsx("div",{style:{fontWeight:600,marginBottom:4,fontSize:"0.9em",borderBottom:"1px solid var(--semiotic-border, #eee)",paddingBottom:4},children:kn(g)}),h.map((t,o)=>e.jsxs("div",{style:{display:"flex",alignItems:"center",gap:6,padding:"1px 0"},children:[e.jsx("span",{style:{width:8,height:8,borderRadius:"50%",backgroundColor:t.color,flexShrink:0}}),e.jsx("span",{style:{flex:1,fontSize:"0.85em"},children:t.group}),e.jsx("span",{style:{fontWeight:500,fontSize:"0.85em"},children:kn(t.value)})]},o))]})}:jn(O)||lt}),"multi"===O&&{tooltipMode:"multi"}),(D||I||N||H)&&{customHoverBehavior:Pe}),(I||N||D)&&{customClickBehavior:Le}),M&&{pointIdAccessor:M}),((null==C?void 0:C.length)||ye.length||tt.length)&&{annotations:[...C||[],...ye,...tt]}),Be),R);return ce||ue||(ct?e.jsx(Pn,{componentName:"LineChart",message:ct,width:Z,height:J}):e.jsx(ii,{componentName:"LineChart",width:Z,height:J,children:e.jsx(Lo,Object.assign({ref:s},dt))}))});pi.displayName="LineChart";const yi=t.forwardRef(function(o,n){var i;const r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const s=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,xLabel:o.xLabel,yLabel:o.yLabel}),{data:a,margin:l,className:c,xFormat:u,yFormat:d,xAccessor:h="x",yAccessor:g="y",areaBy:f,y0Accessor:p,gradientFill:y=!1,lineDataAccessor:v="coordinates",colorBy:m,colorScheme:b,curve:x="monotoneX",areaOpacity:k=.7,lineGradient:w,showLine:j=!0,lineWidth:A=2,showPoints:S=!1,pointRadius:O=3,tooltip:M,annotations:C,frameProps:_={},selection:P,linkedHover:L,onObservation:T,onClick:R,hoverHighlight:B,chartId:D,loading:I,emptyContent:N,legendInteraction:H,legendPosition:W,color:E,stroke:F,strokeWidth:$,opacity:z}=o,G=s.width,q=s.height,X=s.enableHover,V=s.showGrid,U=s.showLegend,K=s.title,Q=s.description,Z=s.summary,J=s.accessibleTable,ee=s.xLabel,te=s.yLabel,oe=li(I,G,q),ne=oe?null:ai(a,G,q,N),ie=a||[];ci("AreaChart",ie,"xAccessor",h),ci("AreaChart",ie,"yAccessor",g);const{activeSelectionHook:re,hoverSelectionHook:se,customHoverBehavior:ae,customClickBehavior:le,crosshairSourceId:ce}=dn({selection:P,linkedHover:L,fallbackFields:m?["string"==typeof m?m:""]:[],onObservation:T,onClick:R,chartType:"AreaChart",chartId:D,hoverHighlight:B,colorByField:"string"==typeof m?m:void 0}),ue=ui(P),de=hn(L,ce),he=void 0!==(null===(i=ie[0])||void 0===i?void 0:i[v]),ge=t.useMemo(()=>{if(he)return ie;if(f){const e=ie.reduce((e,t)=>{const o="function"==typeof f?f(t):t[f];if(!e[o]){const t={[v]:[]};"string"==typeof f&&(t[f]=o),e[o]=t}return e[o][v].push(t),e},{});return Object.values(e)}return[{[v]:ie}]},[ie,f,v,he]),fe=cn(ie,m,b),pe=t.useMemo(()=>{if(!m)return[];const e=new Set;for(const t of ie){const o="function"==typeof m?m(t):t[m];null!=o&&e.add(o+"")}return Array.from(e)},[ie,m]),ye=fn(H,m,pe),ve=t.useMemo(()=>se||(ye.legendSelectionHook?ye.legendSelectionHook:re),[se,ye.legendSelectionHook,re]),me=t.useMemo(()=>e=>{const t={};if(m){if(fe){const o=Y(e,m,fe);t.fill=o,j?(t.stroke=o,t.strokeWidth=A):t.stroke="none"}}else{const e=E||sn;t.fill=e,j?(t.stroke=e,t.strokeWidth=A):t.stroke="none"}return t.fillOpacity=k,t},[m,fe,E,k,j,A]),be=t.useMemo(()=>mn(me,{stroke:F,strokeWidth:$,opacity:z}),[me,F,$,z]),xe=t.useMemo(()=>Zo(be,ve,ue),[be,ve,ue]),ke=t.useMemo(()=>{if(S)return e=>{const t={r:O,fillOpacity:1};return m?fe&&(t.fill=Y(e.parentLine||e,m,fe)):t.fill=sn,t}},[S,O,m,fe]),{legend:we,margin:je,legendPosition:Ae}=gn({data:ge,colorBy:m,colorScale:fe,showLegend:U,legendPosition:W,userMargin:l,defaults:s.marginDefaults}),Se=f||m,Oe=t.useMemo(()=>Cn([{label:ee||An(h),accessor:h,role:"x",format:u},{label:te||An(g),accessor:g,role:"y",format:d},...Se?[{label:An(Se),accessor:Se,role:"group"}]:[]]),[h,g,ee,te,Se,u,d]),Me=In({componentName:"AreaChart",data:a,accessors:{xAccessor:h,yAccessor:g}}),Ce=t.useMemo(()=>he||f?ge.flatMap(e=>{const t=e[v]||[];return f&&"string"==typeof f?t.map(t=>Object.assign(Object.assign({},t),{[f]:e[f]})):t}):ie,[ge,v,he,f,ie]),_e=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"area"},null!=a&&{data:Ce}),{xAccessor:h,yAccessor:g,groupAccessor:f||void 0}),p&&{y0Accessor:p}),y&&{gradientFill:y}),w&&{lineGradient:w}),{curve:x,lineStyle:xe}),S&&ke&&{pointStyle:ke}),{size:[G,q],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:je,showAxes:s.showAxes,xLabel:ee,yLabel:te,xFormat:u,yFormat:d,enableHover:X}),o.pointIdAccessor&&{pointIdAccessor:o.pointIdAccessor}),{showGrid:V}),we&&{legend:we,legendPosition:Ae}),H&&"none"!==H&&{legendHoverBehavior:ye.onLegendHover,legendClickBehavior:ye.onLegendClick,legendHighlightedCategory:ye.highlightedCategory,legendIsolatedCategories:ye.isolatedCategories}),K&&{title:K}),Q&&{description:Q}),Z&&{summary:Z}),void 0!==J&&{accessibleTable:J}),c&&{className:c}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===M?()=>null:jn(M)||Oe}),(L||T||R||B)&&{customHoverBehavior:ae}),(T||R||L)&&{customClickBehavior:le}),C&&C.length>0&&{annotations:C}),de),_);return oe||ne||(Me?e.jsx(Pn,{componentName:"AreaChart",message:Me,width:G,height:q}):e.jsx(ii,{componentName:"AreaChart",width:G,height:q,children:e.jsx(Lo,Object.assign({ref:r},_e))}))});function vi({isPushMode:e,colorBy:o,colorScheme:n,showLegend:i,legendPosition:r="right"}){const s=t.useRef(new Set),a=t.useRef([]),[l,c]=t.useState(0),u=t.useCallback(e=>{if(!o)return null;const t="function"==typeof o?o(e):e[o];return null!=t?t+"":null},[o]),d=t.useCallback(t=>{if(!e||!o)return;let n=!1;for(const e of t){if(!e||"object"!=typeof e)continue;const t=u(e);null==t||s.current.has(t)||(s.current.add(t),a.current.push(t),n=!0)}n&&c(e=>e+1)},[e,o,u]),h=t.useCallback(e=>t=>{d([t]),e(t)},[d]),g=t.useCallback(e=>t=>{d(t),e(t)},[d]),f=t.useCallback(()=>{s.current=new Set,a.current=[],c(e=>e+1)},[]),p=t.useMemo(()=>{if(!e||!o||!1===i)return;const t=a.current;if(0===t.length)return;const r=Array.isArray(n)?n:F,s=new Map;for(let e=0;t.length>e;e++)s.set(t[e],r[e%r.length]);const l="string"==typeof o?o:"__streamCat";return Ko({data:t.map(e=>({[l]:e})),colorBy:l,colorScale:e=>s.get(e)||"#999",getColor:Y})},[e,o,i,n,l]),y=t.useMemo(()=>{if(p)return"right"===r?{right:110}:"left"===r?{left:110}:"top"===r?{top:50}:"bottom"===r?{bottom:80}:{right:110}},[p,r]);return{wrapPush:h,wrapPushMany:g,resetCategories:f,streamingLegend:p,streamingMarginAdjust:y}}yi.displayName="AreaChart";const mi=t.forwardRef(function(o,n){var i;const r=t.useRef(null),s=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,xLabel:o.xLabel,yLabel:o.yLabel}),{data:a,margin:l,className:c,xFormat:u,yFormat:d,xAccessor:h="x",yAccessor:g="y",areaBy:f,lineDataAccessor:p="coordinates",colorBy:y,colorScheme:v,curve:m="monotoneX",areaOpacity:b=.7,showLine:x=!0,lineWidth:k=2,showPoints:w=!1,pointRadius:j=3,normalize:A=!1,tooltip:S,annotations:O,frameProps:M={},selection:C,linkedHover:_,onObservation:P,onClick:L,hoverHighlight:T,chartId:R,loading:B,emptyContent:D,legendInteraction:I,legendPosition:N,color:H,stroke:W,strokeWidth:E,opacity:F}=o,$=s.width,z=s.height,G=s.enableHover,q=s.showGrid,X=s.showLegend,V=s.title,U=s.description,K=s.summary,Q=s.accessibleTable,Z=s.xLabel,J=s.yLabel,ee=li(B,$,z),te=ee?null:ai(a,$,z,D),oe=a||[],ne=vi({isPushMode:void 0===a,colorBy:y||f,colorScheme:v,showLegend:X,legendPosition:N}),ie=t.useCallback(ne.wrapPush(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)}),[ne.wrapPush]),re=t.useCallback(ne.wrapPushMany(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)}),[ne.wrapPushMany]);t.useImperativeHandle(n,()=>({push:ie,pushMany:re,remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;ne.resetCategories(),null===(e=r.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}),[ie,re,ne.resetCategories]);const{activeSelectionHook:se,hoverSelectionHook:ae,customHoverBehavior:le,customClickBehavior:ce,crosshairSourceId:ue}=dn({selection:C,linkedHover:_,fallbackFields:y?["string"==typeof y?y:""]:[],onObservation:P,onClick:L,chartType:"StackedAreaChart",chartId:R,hoverHighlight:T,colorByField:"string"==typeof y?y:void 0}),de=ui(C),he=hn(_,ue),ge=void 0!==(null===(i=oe[0])||void 0===i?void 0:i[p]),fe=t.useMemo(()=>{if(ge)return oe;if(f){const e=oe.reduce((e,t)=>{const o="function"==typeof f?f(t):t[f];if(!e[o]){const t={[p]:[]};"string"==typeof f&&(t[f]=o),e[o]=t}return e[o][p].push(t),e},{});return Object.values(e)}return[{[p]:oe}]},[oe,f,p,ge]),pe=cn(oe,y,v),ye=t.useMemo(()=>{if(!y)return[];const e=new Set;for(const t of oe){const o="function"==typeof y?y(t):t[y];null!=o&&e.add(o+"")}return Array.from(e)},[oe,y]),ve=fn(I,y,ye),me=t.useMemo(()=>ae||(ve.legendSelectionHook?ve.legendSelectionHook:se),[ae,ve.legendSelectionHook,se]),be=t.useMemo(()=>e=>{const t={};if(y&&pe){const o=Y(e,y,pe);t.fill=o,x?(t.stroke=o,t.strokeWidth=k):t.stroke="none"}else if(!y){const e=H||sn;t.fill=e,t.stroke=x?e:"none",x&&(t.strokeWidth=k)}return t.fillOpacity=b,t},[y,pe,b,x,k,H]),xe=t.useMemo(()=>mn(be,{stroke:W,strokeWidth:E,opacity:F}),[be,W,E,F]),ke=t.useMemo(()=>Zo(xe,me,de),[xe,me,de]),we=t.useMemo(()=>{if(w)return e=>{const t={r:j,fillOpacity:1};return y?pe&&(t.fill=Y(e.parentLine||e,y,pe)):t.fill=H||sn,t}},[w,j,y,pe,H]),{legend:je,margin:Ae,legendPosition:Se}=gn({data:fe,colorBy:y,colorScale:pe,showLegend:X,legendPosition:N,userMargin:l,defaults:s.marginDefaults}),Oe=ne.streamingLegend||je,Me=N||Se,Ce=t.useMemo(()=>{if(ne.streamingMarginAdjust){const e=Object.assign({},Ae);for(const[t,o]of Object.entries(ne.streamingMarginAdjust))o>e[t]&&(e[t]=o);return e}return Ae},[Ae,ne.streamingMarginAdjust]),_e=f||y,Pe=t.useMemo(()=>Cn([{label:Z||An(h),accessor:h,role:"x",format:u},{label:J||An(g),accessor:g,role:"y",format:d},..._e?[{label:An(_e),accessor:_e,role:"group"}]:[]]),[h,g,Z,J,_e,u,d]),Le=In({componentName:"StackedAreaChart",data:a,accessors:{xAccessor:h,yAccessor:g}}),Te=t.useMemo(()=>ge||f?fe.flatMap(e=>{const t=e[p]||[];return f&&"string"==typeof f?t.map(t=>Object.assign(Object.assign({},t),{[f]:e[f]})):t}):oe,[fe,p,ge,f,oe]),Re=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"stackedarea"},null!=a&&{data:Te}),{xAccessor:h,yAccessor:g,groupAccessor:f||void 0,curve:m,normalize:A,lineStyle:ke}),w&&we&&{pointStyle:we}),{size:[$,z],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:Ce,showAxes:s.showAxes,xLabel:Z,yLabel:J,xFormat:u,yFormat:d,enableHover:G}),o.pointIdAccessor&&{pointIdAccessor:o.pointIdAccessor}),{showGrid:q}),Oe&&{legend:Oe,legendPosition:Me}),I&&"none"!==I&&{legendHoverBehavior:ve.onLegendHover,legendClickBehavior:ve.onLegendClick,legendHighlightedCategory:ve.highlightedCategory,legendIsolatedCategories:ve.isolatedCategories}),V&&{title:V}),U&&{description:U}),K&&{summary:K}),void 0!==Q&&{accessibleTable:Q}),c&&{className:c}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===S?()=>null:jn(S)||Pe}),(_||P||L||T)&&{customHoverBehavior:le}),(P||L||_)&&{customClickBehavior:ce}),O&&O.length>0&&{annotations:O}),he),M);return ee||te||(Le?e.jsx(Pn,{componentName:"StackedAreaChart",message:Le,width:$,height:z}):e.jsx(ii,{componentName:"StackedAreaChart",width:$,height:z,children:e.jsx(Lo,Object.assign({ref:r},Re))}))});function bi(e){const{data:o,rawData:n,colorBy:i,colorScheme:r,legendInteraction:s,legendPosition:a,selection:l,linkedHover:c,fallbackFields:u,unwrapData:d=!1,onObservation:h,chartType:g,chartId:f,showLegend:p,userMargin:y,marginDefaults:v,onClick:m,hoverHighlight:b,loading:x,emptyContent:k,width:w,height:j}=e,A="string"==typeof e.colorBy?e.colorBy:void 0,{activeSelectionHook:S,hoverSelectionHook:O,customHoverBehavior:M,customClickBehavior:C,crosshairSourceId:_}=dn({selection:l,linkedHover:c,fallbackFields:u,unwrapData:d,onObservation:h,chartType:g,chartId:f,onClick:m,hoverHighlight:b,colorByField:A}),P=hn(c,_),L=cn(o,i,r),T=t.useMemo(()=>{if(!i)return[];const e=new Set;for(const t of o){const o="function"==typeof i?i(t):t[i];null!=o&&e.add(o+"")}return Array.from(e)},[o,i]),R=fn(s,i,T),B=t.useMemo(()=>O||(R.legendSelectionHook?R.legendSelectionHook:S),[O,R.legendSelectionHook,S]),D=ui(l),{legend:I,margin:N,legendPosition:H}=gn({data:o,colorBy:i,colorScale:L,showLegend:p,legendPosition:a,userMargin:y,defaults:v}),W=t.useMemo(()=>{const e={};return I&&(e.legend=I,e.legendPosition=H),s&&"none"!==s&&(e.legendHoverBehavior=R.onLegendHover,e.legendClickBehavior=R.onLegendClick,e.legendHighlightedCategory=R.highlightedCategory,e.legendIsolatedCategories=R.isolatedCategories),e},[I,H,s,R.onLegendHover,R.onLegendClick,R.highlightedCategory,R.isolatedCategories]),E=li(x,w,j),F=E?null:ai(n,w,j,k);return{colorScale:L,allCategories:T,legendState:R,effectiveSelectionHook:B,activeSelectionHook:S,customHoverBehavior:M,customClickBehavior:C,legend:I,margin:N,legendPosition:H,earlyReturn:E||F||null,legendBehaviorProps:W,crosshairProps:P,resolvedSelection:D}}mi.displayName="StackedAreaChart";const xi=t.forwardRef(function(o,n){const i=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=i.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=i.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=i.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=i.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=i.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const r=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,xLabel:o.xLabel,yLabel:o.yLabel}),{data:s,margin:a,className:l,xFormat:c,yFormat:u,xAccessor:d="x",yAccessor:h="y",colorBy:g,colorScheme:f,sizeBy:p,sizeRange:v=[3,15],pointRadius:m=5,pointOpacity:b=.8,tooltip:x,marginalGraphics:k,pointIdAccessor:w,annotations:j,frameProps:A={},selection:S,linkedHover:O,linkedBrush:M,onObservation:C,onClick:_,hoverHighlight:P,chartId:L,loading:T,emptyContent:R,legendInteraction:B,legendPosition:D,color:I,stroke:N,strokeWidth:H,opacity:W}=o,E=r.width,F=r.height,$=r.enableHover,z=r.showGrid,G=r.title,X=r.description,V=r.summary,U=r.accessibleTable,K=r.xLabel,Q=r.yLabel,Z=s||[],J=bi({data:Z,rawData:s,colorBy:g,colorScheme:f,legendInteraction:B,legendPosition:D,selection:S,linkedHover:O,fallbackFields:g?["string"==typeof g?g:""]:[],unwrapData:!1,onObservation:C,onClick:_,hoverHighlight:P,chartType:"Scatterplot",chartId:L,showLegend:r.showLegend,userMargin:a,marginDefaults:r.marginDefaults,loading:T,emptyContent:R,width:E,height:F}),ee=Qo(M),te=Yo({name:(null==ee?void 0:ee.name)||"__unused_brush__",xField:(null==ee?void 0:ee.xField)||("string"==typeof d?d:void 0),yField:(null==ee?void 0:ee.yField)||("string"==typeof h?h:void 0)}),oe=ee?"xyBrush"===te.brushInteraction.brush?"xy":"xBrush"===te.brushInteraction.brush?"x":"y":void 0,ne=y.useRef(te.brushInteraction);ne.current=te.brushInteraction;const ie=t.useCallback(e=>{const t=ne.current;t.end(e?"xyBrush"===t.brush?[[e.x[0],e.y[0]],[e.x[1],e.y[1]]]:"xBrush"===t.brush?e.x:e.y:null)},[]);if(J.earlyReturn)return J.earlyReturn;ci("Scatterplot",Z,"xAccessor",d),ci("Scatterplot",Z,"yAccessor",h);const re=t.useMemo(()=>{if(!p||0===Z.length)return;const e=Z.map(e=>"function"==typeof p?p(e):e[p]);return[Math.min(...e),Math.max(...e)]},[Z,p]),se=t.useMemo(()=>e=>{const t={fillOpacity:b};return g?J.colorScale&&(t.fill=Y(e,g,J.colorScale)):t.fill=I||sn,t.r=p?q(e,p,v,re):m,t},[g,J.colorScale,p,v,re,m,b,I]),ae=t.useMemo(()=>mn(se,{stroke:N,strokeWidth:H,opacity:W}),[se,N,H,W]),le=t.useMemo(()=>Zo(ae,J.effectiveSelectionHook,J.resolvedSelection),[ae,J.effectiveSelectionHook,J.resolvedSelection]),ce=t.useMemo(()=>Cn([{label:K||An(d),accessor:d,role:"x",format:c},{label:Q||An(h),accessor:h,role:"y",format:u},...g?[{label:An(g),accessor:g,role:"color"}]:[],...p?[{label:An(p),accessor:p,role:"size"}]:[]]),[d,h,K,Q,g,p,c,u]),ue=In({componentName:"Scatterplot",data:s,accessors:{xAccessor:d,yAccessor:h}});if(ue)return e.jsx(Pn,{componentName:"Scatterplot",message:ue,width:E,height:F});const de=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"scatter"},null!=s&&{data:Z}),{xAccessor:d,yAccessor:h,colorAccessor:g||void 0,sizeAccessor:p||void 0,sizeRange:v,pointStyle:le,colorScheme:f,size:[E,F],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:J.margin,showAxes:r.showAxes,xLabel:K,yLabel:Q,xFormat:c,yFormat:u,enableHover:$,showGrid:z}),J.legendBehaviorProps),G&&{title:G}),X&&{description:X}),V&&{summary:V}),void 0!==U&&{accessibleTable:U}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===x?()=>null:jn(x)||ce}),(O||C||_||P)&&{customHoverBehavior:J.customHoverBehavior}),(C||_||O)&&{customClickBehavior:J.customClickBehavior}),k&&{marginalGraphics:k}),w&&{pointIdAccessor:w}),j&&j.length>0&&{annotations:j}),ee&&{brush:{dimension:oe},onBrush:ie}),J.crosshairProps),A);return e.jsx(ii,{componentName:"Scatterplot",width:E,height:F,children:e.jsx(Lo,Object.assign({ref:i},de))})});function ki(e,t){return s.interpolateViridis(1===t?.5:e/(t-1))}xi.displayName="Scatterplot";const wi=t.forwardRef(function(o,n){var i;const r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const s=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,title:o.title,xLabel:o.xLabel,yLabel:o.yLabel}),{data:a,className:l,xFormat:c,yFormat:u,xAccessor:d="x",yAccessor:h="y",orderAccessor:g,orderLabel:f,pointRadius:p=4,tooltip:y,pointIdAccessor:v,annotations:m,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:j,hoverHighlight:A,chartId:S,loading:O,emptyContent:M,legendInteraction:C,stroke:_,strokeWidth:P,opacity:L}=o,T=s.width,R=s.height,B=s.enableHover,D=s.showGrid,I=s.title,N=s.description,H=s.summary,W=s.accessibleTable,E=s.xLabel,F=s.yLabel,$=a||[],{safeData:z,orderMap:Y}=t.useMemo(()=>{const e="function"==typeof d?d:e=>e[d],t="function"==typeof h?h:e=>e[h];let o=$;if(g&&$.length>0){const e="function"==typeof g?g:e=>e[g];o=[...$].sort((t,o)=>{const n=e(t),i=e(o);return(n instanceof Date?n.getTime():+n)-(i instanceof Date?i.getTime():+i)})}const n=new WeakMap;let i=0;for(const n of o){const o=e(n),r=t(n);null!=o&&null!=r&&isFinite(o)&&isFinite(r)&&i++}let r=0;for(const s of o){const o=e(s),a=t(s);null!=o&&null!=a&&isFinite(o)&&isFinite(a)&&n.set(s,{idx:r++,total:i})}return{safeData:o,orderMap:n}},[$,g,d,h]);ci("ConnectedScatterplot",z,"xAccessor",d),ci("ConnectedScatterplot",z,"yAccessor",h);const{activeSelectionHook:G,hoverSelectionHook:q,customHoverBehavior:X,customClickBehavior:V,crosshairSourceId:U}=dn({selection:x,linkedHover:k,fallbackFields:[],onObservation:w,onClick:j,chartType:"ConnectedScatterplot",chartId:S,hoverHighlight:A,colorByField:void 0}),K=ui(x),Q=hn(k,U),Z=fn(C,void 0,[]),J=t.useMemo(()=>q||(Z.legendSelectionHook?Z.legendSelectionHook:G),[q,Z.legendSelectionHook,G]),ee=null!==(i=null==K?void 0:K.unselectedOpacity)&&void 0!==i?i:.5,te=t.useMemo(()=>(e,t)=>{var o,n;const i=t.filter(e=>"point"===e.type);if(2>i.length)return;const r=null==J?void 0:J.isActive,s=null==J?void 0:J.predicate,a=100>i.length,l=i.length;e.lineCap="round";for(let t=0;l-1>t;t++){const c=i[t],u=i[t+1],d=ki(t,l),h=!r||!s||s(null!==(o=c.datum)&&void 0!==o?o:c)||s(null!==(n=u.datum)&&void 0!==n?n:u),g=r?h?1:ee:1;a&&(e.beginPath(),e.moveTo(c.x,c.y),e.lineTo(u.x,u.y),e.strokeStyle="white",e.lineWidth=p+2,e.globalAlpha=.5*g,e.stroke()),e.beginPath(),e.moveTo(c.x,c.y),e.lineTo(u.x,u.y),e.strokeStyle=d,e.lineWidth=p,e.globalAlpha=g,e.stroke()}e.globalAlpha=1},[p,J,ee]),oe=t.useMemo(()=>[te],[te]),ne=t.useMemo(()=>(t,o,n)=>{var i,r;const s=t.filter(e=>"point"===e.type);if(2>s.length)return null;const a=s.length,l=100>a,c=[];for(let t=0;a-1>t;t++){const o=s[t],n=s[t+1],u=ki(t,a),d="number"==typeof(null===(i=o.style)||void 0===i?void 0:i.opacity)?o.style.opacity:1,h="number"==typeof(null===(r=n.style)||void 0===r?void 0:r.opacity)?n.style.opacity:1,g=Math.min(d,h);l&&c.push(e.jsx("line",{x1:o.x,y1:o.y,x2:n.x,y2:n.y,stroke:"white",strokeWidth:p+2,strokeLinecap:"round",opacity:.5*g},"halo-"+t)),c.push(e.jsx("line",{x1:o.x,y1:o.y,x2:n.x,y2:n.y,stroke:u,strokeWidth:p,strokeLinecap:"round",opacity:g},"seg-"+t))}return e.jsx(e.Fragment,{children:c})},[p]),ie=t.useMemo(()=>[ne],[ne]),re=t.useMemo(()=>e=>{var t,o;const n=Y.get(e),i=null!==(t=null==n?void 0:n.idx)&&void 0!==t?t:0,r=null!==(o=null==n?void 0:n.total)&&void 0!==o?o:1;return{fill:r>0?ki(i,r):"#6366f1",stroke:"white",strokeWidth:1,r:p,fillOpacity:1}},[p,Y]),se=t.useMemo(()=>mn(re,{stroke:_,strokeWidth:P,opacity:L}),[re,_,P,L]),ae=t.useMemo(()=>Zo(se,J,K),[se,J,K]),le=Object.assign({top:50,right:40,bottom:60,left:70},"number"==typeof o.margin?{top:o.margin,bottom:o.margin,left:o.margin,right:o.margin}:o.margin),ce=f||("string"==typeof g?g:"Order"),ue=t.useMemo(()=>Cn([{label:E||An(d),accessor:d,role:"x",format:c},{label:F||An(h),accessor:h,role:"y",format:u},...g?[{label:ce,accessor:g,role:"group"}]:[]]),[d,h,E,F,g,ce,c,u]),de=In({componentName:"ConnectedScatterplot",data:a,accessors:{xAccessor:d,yAccessor:h}}),he=li(O,T,R),ge=he?null:ai(a,T,R,M),fe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"scatter"},null!=a&&{data:z}),{xAccessor:d,yAccessor:h,pointStyle:ae,size:[T,R],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:le,showAxes:s.showAxes,xLabel:E,yLabel:F,xFormat:c,yFormat:u,enableHover:B,showGrid:D}),I&&{title:I}),N&&{description:N}),H&&{summary:H}),void 0!==W&&{accessibleTable:W}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===y?()=>null:jn(y)||ue}),(k||w||j||A)&&{customHoverBehavior:X}),(w||j||k)&&{customClickBehavior:V}),v&&{pointIdAccessor:v}),{canvasPreRenderers:oe,svgPreRenderers:ie}),m&&m.length>0&&{annotations:m}),Q),b);return he||ge||(de?e.jsx(Pn,{componentName:"ConnectedScatterplot",message:de,width:T,height:R}):e.jsx(ii,{componentName:"ConnectedScatterplot",width:T,height:R,children:e.jsx(Lo,Object.assign({ref:r},fe))}))});wi.displayName="ConnectedScatterplot";const ji=t.forwardRef(function(o,n){const i=t.useRef(null),r=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,xLabel:o.xLabel,yLabel:o.yLabel}),{data:s,margin:a,className:l,xFormat:c,yFormat:u,xAccessor:d="x",yAccessor:h="y",sizeBy:g,sizeRange:f=[5,40],colorBy:p,colorScheme:y,bubbleOpacity:v=.6,bubbleStrokeWidth:m=1,bubbleStrokeColor:b="white",tooltip:x,marginalGraphics:k,pointIdAccessor:w,annotations:j,frameProps:A={},selection:S,linkedHover:O,linkedBrush:M,onObservation:C,onClick:_,hoverHighlight:P,chartId:L,loading:T,emptyContent:R,legendInteraction:B,legendPosition:D,color:I,stroke:N,strokeWidth:H,opacity:W}=o,E=r.width,F=r.height,$=r.enableHover,z=r.showGrid,G=r.showLegend,X=r.title,V=r.description,U=r.summary,K=r.accessibleTable,Q=r.xLabel,Z=r.yLabel,J=li(T,E,F),ee=J?null:ai(s,E,F,R),te=s||[],oe=void 0===s,ne=t.useRef(null),[ie,re]=t.useState(0),se=t.useCallback(e=>{if(!oe)return;let t=!1;for(const o of e){const e="function"==typeof g?g(o):o[g];null!=e&&isFinite(e)&&(ne.current?(ne.current[0]>e&&(ne.current[0]=e,t=!0),e>ne.current[1]&&(ne.current[1]=e,t=!0)):(ne.current=[e,e],t=!0))}t&&re(e=>e+1)},[oe,g]),ae=vi({isPushMode:oe,colorBy:p,colorScheme:y,showLegend:G,legendPosition:D}),le=t.useCallback(ae.wrapPush(e=>{var t;se([e]),null===(t=i.current)||void 0===t||t.push(e)}),[ae.wrapPush,se]),ce=t.useCallback(ae.wrapPushMany(e=>{var t;se(e),null===(t=i.current)||void 0===t||t.pushMany(e)}),[ae.wrapPushMany,se]);t.useImperativeHandle(n,()=>({push:le,pushMany:ce,remove:e=>{var t,o;return null!==(o=null===(t=i.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=i.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;ae.resetCategories(),ne.current=null,re(e=>e+1),null===(e=i.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}),[le,ce,ae.resetCategories]);const{activeSelectionHook:ue,hoverSelectionHook:de,customHoverBehavior:he,customClickBehavior:ge,crosshairSourceId:fe}=dn({selection:S,linkedHover:O,fallbackFields:p?["string"==typeof p?p:""]:[],onObservation:C,onClick:_,chartType:"BubbleChart",chartId:L,hoverHighlight:P,colorByField:"string"==typeof p?p:void 0}),pe=ui(S),ye=hn(O,fe),ve=Qo(M);Yo({name:(null==ve?void 0:ve.name)||"__unused_brush__",xField:(null==ve?void 0:ve.xField)||("string"==typeof d?d:void 0),yField:(null==ve?void 0:ve.yField)||("string"==typeof h?h:void 0)});const me=cn(te,p,y),be=t.useMemo(()=>{if(!p)return[];const e=new Set;for(const t of te){const o="function"==typeof p?p(t):t[p];null!=o&&e.add(o+"")}return Array.from(e)},[te,p]),xe=fn(B,p,be),ke=t.useMemo(()=>de||(xe.legendSelectionHook?xe.legendSelectionHook:ue),[de,xe.legendSelectionHook,ue]),we=t.useMemo(()=>{if(oe)return ne.current||[0,1];const e=te.map(e=>"function"==typeof g?g(e):e[g]);return[Math.min(...e),Math.max(...e)]},[te,g,oe,ie]),je=t.useMemo(()=>e=>{const t={fillOpacity:v,strokeWidth:m,stroke:b};return p?me&&(t.fill=Y(e,p,me)):t.fill=I||sn,t.r=q(e,g,f,we),t},[p,me,g,f,we,v,m,b,I]),Ae=t.useMemo(()=>mn(je,{stroke:N,strokeWidth:H,opacity:W}),[je,N,H,W]),Se=t.useMemo(()=>Zo(Ae,ke,pe),[Ae,ke,pe]),{legend:Oe,margin:Me,legendPosition:Ce}=gn({data:te,colorBy:p,colorScale:me,showLegend:G,legendPosition:D,userMargin:a,defaults:r.marginDefaults}),_e=ae.streamingLegend||Oe,Pe=D||Ce,Le=t.useMemo(()=>{if(ae.streamingMarginAdjust){const e=Object.assign({},Me);for(const[t,o]of Object.entries(ae.streamingMarginAdjust))o>e[t]&&(e[t]=o);return e}return Me},[Me,ae.streamingMarginAdjust]),Te=t.useMemo(()=>Cn([{label:Q||An(d),accessor:d,role:"x",format:c},{label:Z||An(h),accessor:h,role:"y",format:u},{label:An(g),accessor:g,role:"size"},...p?[{label:An(p),accessor:p,role:"color"}]:[]]),[d,h,Q,Z,g,p,c,u]),Re=In({componentName:"BubbleChart",data:s,accessors:{xAccessor:d,yAccessor:h},requiredProps:{sizeBy:g}});if(Re)return e.jsx(Pn,{componentName:"BubbleChart",message:Re,width:E,height:F});const Be=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bubble"},null!=s&&{data:te}),{xAccessor:d,yAccessor:h,colorAccessor:p||void 0,sizeAccessor:g,sizeRange:f,pointStyle:Se,colorScheme:y,size:[E,F],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:Le,showAxes:r.showAxes,xLabel:Q,yLabel:Z,xFormat:c,yFormat:u,enableHover:$,showGrid:z}),_e&&{legend:_e,legendPosition:Pe}),B&&"none"!==B&&{legendHoverBehavior:xe.onLegendHover,legendClickBehavior:xe.onLegendClick,legendHighlightedCategory:xe.highlightedCategory,legendIsolatedCategories:xe.isolatedCategories}),X&&{title:X}),V&&{description:V}),U&&{summary:U}),void 0!==K&&{accessibleTable:K}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===x?()=>null:jn(x)||Te}),(O||C||_||P)&&{customHoverBehavior:he}),(C||_||O)&&{customClickBehavior:ge}),k&&{marginalGraphics:k}),w&&{pointIdAccessor:w}),j&&j.length>0&&{annotations:j}),ye),A);return J||ee||e.jsx(ii,{componentName:"BubbleChart",width:E,height:F,children:e.jsx(Lo,Object.assign({ref:i},Be))})});ji.displayName="BubbleChart";const Ai=t.forwardRef(function(o,n){var r;const a=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=a.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=a.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=a.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=a.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=a.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=a.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=a.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const l=yn(o.mode,{width:o.width,height:o.height,showGrid:void 0,enableHover:o.enableHover,showLegend:void 0,title:o.title,xLabel:o.xLabel,yLabel:o.yLabel}),{data:c,margin:u,className:d,xAccessor:h="x",yAccessor:g="y",valueAccessor:f="value",xFormat:p,yFormat:y,colorScheme:v,customColorScale:m,showValues:b=!1,valueFormat:x,tooltip:k,annotations:w,frameProps:j={},selection:A,linkedHover:S,onObservation:O,onClick:M,hoverHighlight:C,chartId:_,loading:P,emptyContent:L,showLegend:T,legendPosition:R,legendInteraction:B}=o,D=l.width,I=l.height,N=l.enableHover,H=l.title,W=l.description,E=l.summary,F=l.accessibleTable,$=l.xLabel,z=l.yLabel,Y=li(P,D,I),G=Y?null:ai(c,D,I,L),q=c||[],X=function(){var e;const t=rn();return(null===(e=null==t?void 0:t.colors)||void 0===e?void 0:e.sequential)||void 0}(),V=null!==(r=null!=v?v:X)&&void 0!==r?r:"blues",U=null!=T&&T,K=null!=R?R:"right",{margin:Q}=gn({data:q,colorBy:U?"value":void 0,colorScale:void 0,showLegend:U,legendPosition:K,userMargin:u,defaults:l.marginDefaults}),{customHoverBehavior:Z,customClickBehavior:J,crosshairSourceId:ee}=dn({selection:A,linkedHover:S,fallbackFields:[],onObservation:O,onClick:M,chartType:"Heatmap",chartId:_,hoverHighlight:C,colorByField:void 0});ui(A);const te=hn(S,ee);fn(B,void 0,[]);const oe=t.useMemo(()=>"function"==typeof f?e=>f(e):e=>e[f],[f]),ne=t.useMemo(()=>{const e=q.map(oe);return[Math.min(...e),Math.max(...e)]},[q,oe]),ie=t.useMemo(()=>"custom"===V&&m?m:i.scaleSequential({blues:s.interpolateBlues,reds:s.interpolateReds,greens:s.interpolateGreens,viridis:s.interpolateViridis,oranges:s.interpolateOranges,purples:s.interpolatePurples,greys:s.interpolateGreys,plasma:s.interpolatePlasma,inferno:s.interpolateInferno,magma:s.interpolateMagma,cividis:s.interpolateCividis,turbo:s.interpolateTurbo}[V]||s.interpolateBlues).domain(ne),[V,m,ne]),re=t.useMemo(()=>Cn([{label:$||An(h),accessor:h,role:"x",format:p},{label:z||An(g),accessor:g,role:"y",format:y},{label:An(f),accessor:f,role:"value",format:x}]),[h,g,$,z,f,p,y,x]),se=In({componentName:"Heatmap",data:c,accessors:{xAccessor:h,yAccessor:g,valueAccessor:f}}),ae=t.useMemo(()=>{if(U)return{gradient:{colorFn:e=>ie(e),domain:ne,label:"string"==typeof f?f:"value",format:x}}},[U,ie,ne,f,x]),le=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"heatmap"},null!=c&&{data:q}),{xAccessor:h,yAccessor:g,valueAccessor:f,colorScheme:"custom"!==V?V:void 0,showValues:b,heatmapValueFormat:x,size:[D,I],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:Q,showAxes:l.showAxes,xLabel:$,yLabel:z,xFormat:p,yFormat:y,enableHover:N}),o.pointIdAccessor&&{pointIdAccessor:o.pointIdAccessor}),ae&&{legend:ae,legendPosition:K}),H&&{title:H}),W&&{description:W}),E&&{summary:E}),void 0!==F&&{accessibleTable:F}),d&&{className:d}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===k?()=>null:jn(k)||re}),(S||O||M||C)&&{customHoverBehavior:Z}),(O||M||S)&&{customClickBehavior:J}),w&&w.length>0&&{annotations:w}),te),j);return Y||G||(se?e.jsx(Pn,{componentName:"Heatmap",message:se,width:D,height:I}):e.jsx(ii,{componentName:"Heatmap",width:D,height:I,children:e.jsx(Lo,Object.assign({ref:a},le))}))});Ai.displayName="Heatmap";const Si="__splomIdx",Oi={top:4,bottom:4,left:4,right:4};function Mi({frameRef:i,cellSize:r,onBrush:s}){const a=t.useRef(null),l=r-Oi.left-Oi.right,c=r-Oi.top-Oi.bottom;return t.useEffect(()=>{if(!a.current)return;const e=o.select(a.current).select(".brush-g"),t=n.brush().extent([[0,0],[l,c]]).on("brush end",e=>{var t;const o=null===(t=i.current)||void 0===t?void 0:t.getScales();if(!o)return;if(!e.selection)return void s(null);const[[n,r],[a,l]]=e.selection,c=[[o.x.invert(n),o.y.invert(r)],[o.x.invert(a),o.y.invert(l)]];s(c)});return e.call(t),e.select(".selection").attr("fill","steelblue").attr("fill-opacity",.15).attr("stroke","steelblue").attr("stroke-width",1),()=>{t.on("brush end",null)}},[l,c,i,s]),e.jsx("svg",{ref:a,width:r,height:r,style:{position:"absolute",top:0,left:0},children:e.jsx("g",{className:"brush-g",transform:`translate(${Oi.left},${Oi.top})`})})}function Ci({data:o,xField:n,yField:i,cellSize:r,pointRadius:s,pointOpacity:a,colorBy:l,colorScale:c,brushSelectionName:u,hoverSelectionName:d,unselectedOpacity:h,mode:g,onPointHover:f}){const p=t.useRef(null),y=$o({name:u,clientId:`splom-${n}-${i}`}),v=Yo({name:u,xField:n,yField:i}),m=$o({name:d,clientId:"splom-hover-source"}),b=m.selectPoints,x=t.useCallback(e=>{e?v.brushInteraction.during(e):v.brushInteraction.end(null)},[v.brushInteraction]),k=t.useCallback(e=>{if(!e)return void(null==f||f(null));const t=e.data,o=null==t?void 0:t[Si];void 0!==o&&(b({[Si]:[o]}),null==f||f(t,e.x+Oi.left,e.y+Oi.top))},[b,f]),w=t.useCallback(e=>{const t={opacity:a,r:s};return t.fill=l?Y(e,l,c):sn,"hover"===g?m.isActive&&m.predicate(e)?(t.opacity=1,t.r=2.5*s,t.stroke="#333",t.strokeWidth=1.5):m.isActive&&(t.opacity=.6*a):y.isActive&&!y.predicate(e)&&(t.opacity=h),t},[l,c,a,s,g,y.isActive,y.predicate,m.isActive,m.predicate,h]);return e.jsxs("div",{style:{position:"relative",width:r,height:r},children:[e.jsx(Lo,{ref:p,chartType:"scatter",data:o,size:[r,r],xAccessor:n,yAccessor:i,pointStyle:w,margin:Oi,showAxes:!1,enableHover:"hover"===g,customHoverBehavior:"hover"===g?k:void 0,tooltipContent:"hover"===g?()=>null:void 0}),"brush"===g&&e.jsx(Mi,{frameRef:p,cellSize:r,xField:n,yField:i,onBrush:x})]})}function _i({data:o,field:n,label:i,cellSize:r,bins:s,colorBy:a,colorScale:l,brushSelectionName:c,hoverSelectionName:u,mode:d}){const h=$o({name:c,clientId:"splom-diag-"+n}),g=$o({name:u,clientId:`splom-diag-${n}-hover`}),f="hover"===d?g:h,p=f.isActive,y=f.predicate,v=t.useMemo(()=>{const e=o.map(e=>e[n]).filter(e=>null!=e&&!isNaN(e));if(0===e.length)return{bars:[],selectedBars:[],categoryBars:[],selectedCategoryBars:[],max:0,categories:[]};const t=Math.min(...e),i=(Math.max(...e)-t)/s||1,l="string"==typeof a?a:null,c=l?[...new Set(o.map(e=>e[l]).filter(e=>null!=e).map(String))]:[],u=new Map(c.map((e,t)=>[e,t])),d=Array(s).fill(0),h=Array(s).fill(0),g=Array.from({length:s},()=>Array(c.length).fill(0)),f=Array.from({length:s},()=>Array(c.length).fill(0));for(const e of o){const o=e[n];if(null==o||isNaN(o))continue;const r=Math.min(Math.floor((o-t)/i),s-1);if(d[r]++,p&&!y(e)||h[r]++,l){const t=u.get(e[l]+"");void 0!==t&&(g[r][t]++,p&&!y(e)||f[r][t]++)}}const v=Math.max(...d,1),m=g.map((e,t)=>{let o=0;return e.map((e,n)=>{const i=e/v*(r-24),a={x:t/s*r,w:r/s-1,h:i,y0:o,category:c[n]};return o+=i,a})}),b=f.map((e,t)=>{let o=0;return e.map((e,n)=>{const i=e/v*(r-24),a={x:t/s*r,w:r/s-1,h:i,y0:o,category:c[n]};return o+=i,a})});return{bars:d.map((e,t)=>({x:t/s*r,w:r/s-1,h:e/v*(r-24),count:e})),selectedBars:h.map((e,t)=>({x:t/s*r,w:r/s-1,h:e/v*(r-24),count:e})),categoryBars:m,selectedCategoryBars:b,max:v,categories:c}},[o,n,s,r,p,y,a]);return e.jsxs("svg",{width:r,height:r,style:{overflow:"hidden"},children:[e.jsx("text",{x:r/2,y:14,textAnchor:"middle",fontSize:11,fontWeight:"bold",fill:"#333",children:i}),v.categories.length>0?v.categoryBars.map((t,o)=>t.map((t,n)=>e.jsx("rect",{x:t.x,y:r-t.y0-t.h,width:Math.max(t.w,1),height:t.h,fill:l?l(t.category):sn,opacity:p?.3:.6},`bg-${o}-${n}`))):v.bars.map((t,o)=>e.jsx("rect",{x:t.x,y:r-t.h,width:Math.max(t.w,1),height:t.h,fill:sn,opacity:p?.3:.6},"bg-"+o)),p&&(v.categories.length>0?v.selectedCategoryBars.map((t,o)=>t.map((t,n)=>e.jsx("rect",{x:t.x,y:r-t.y0-t.h,width:Math.max(t.w,1),height:t.h,fill:l?l(t.category):sn,opacity:.7},`sel-${o}-${n}`))):v.selectedBars.map((t,o)=>e.jsx("rect",{x:t.x,y:r-t.h,width:Math.max(t.w,1),height:t.h,fill:sn,opacity:.7},"sel-"+o)))]})}function Pi({label:t,cellSize:o}){return e.jsx("svg",{width:o,height:o,children:e.jsx("text",{x:o/2,y:o/2,textAnchor:"middle",dominantBaseline:"middle",fontSize:12,fontWeight:"bold",fill:"#333",children:t})})}function Li(o){const{data:n,fields:i,fieldLabels:r={},colorBy:s,colorScheme:a,cellSize:l=150,cellGap:c=4,pointRadius:u=2,pointOpacity:d=.5,diagonal:h="histogram",histogramBins:g=20,brushMode:f="crossfilter",hoverMode:p=!0,unselectedOpacity:v=.1,showGrid:m=!1,tooltip:b,showLegend:x,idAccessor:k,className:w,onObservation:j,chartId:A}=o,S="splom",O="splom-hover",M=p?"hover":f?"brush":"hover",C=Wo(e=>e.clearSelection),[_,P]=t.useState(null),L=t.useCallback(()=>{C(O),P(null)},[C,O]),T=t.useMemo(()=>(n||[]).map((e,t)=>void 0!==e[Si]?e:Object.assign(Object.assign({},e),{[Si]:t})),[n]),R=cn(T,s,a),B=void 0!==x?x:!!s,D=t.useMemo(()=>{if(!B||!s)return null;const e="string"==typeof s?s:null;return e?[...new Set(T.map(t=>t[e]))].map(e=>({label:e+"",color:R?R(e+""):sn})):null},[B,s,T,R]),I=t.useMemo(()=>({display:"grid",gridTemplateColumns:"40px "+i.map(()=>l+"px").join(" "),gridTemplateRows:i.map(()=>l+"px").join(" ")+" 40px",gap:c+"px",width:"fit-content"}),[i,l,c,40]);return e.jsxs("div",{className:w,style:{position:"relative"},children:[D&&e.jsx("div",{style:{display:"flex",gap:12,marginBottom:8,flexWrap:"wrap"},children:D.map(t=>e.jsxs("div",{style:{display:"flex",alignItems:"center",gap:4},children:[e.jsx("span",{style:{display:"inline-block",width:10,height:10,borderRadius:"50%",backgroundColor:t.color}}),e.jsx("span",{style:{fontSize:11},children:t.label})]},t.label))}),e.jsxs("div",{style:I,onMouseLeave:"hover"===M?L:void 0,children:[i.map((t,o)=>e.jsxs(y.Fragment,{children:[e.jsx("div",{style:{display:"flex",alignItems:"center",justifyContent:"center",writingMode:"vertical-rl",transform:"rotate(180deg)",fontSize:11,fontWeight:"bold",color:"#333"},children:r[t]||t}),i.map((n,i)=>o===i?"label"===h?e.jsx(Pi,{label:r[t]||t,cellSize:l},"diag-"+t):e.jsx(_i,{data:T,field:t,label:r[t]||t,cellSize:l,bins:g,colorBy:s,colorScale:R,brushSelectionName:S,hoverSelectionName:O,unselectedOpacity:v,mode:M},"diag-"+t):e.jsx(Ci,{data:T,xField:n,yField:t,fieldLabels:r,cellSize:l,pointRadius:u,pointOpacity:d,colorBy:s,colorScale:R,brushSelectionName:S,hoverSelectionName:O,unselectedOpacity:v,showGrid:m,tooltip:b,mode:M,onPointHover:"hover"===M?(e,r,s)=>{e?(P({datum:e,xField:n,yField:t,colIndex:i,rowIndex:o,px:null!=r?r:0,py:null!=s?s:0}),j&&j({type:"hover",datum:e,x:null!=r?r:0,y:null!=s?s:0,timestamp:Date.now(),chartType:"ScatterplotMatrix",chartId:A})):(P(null),j&&j({type:"hover-end",timestamp:Date.now(),chartType:"ScatterplotMatrix",chartId:A}))}:void 0},`cell-${t}-${n}`))]},"row-"+t)),e.jsx("div",{})," ",i.map(t=>e.jsx("div",{style:{display:"flex",alignItems:"center",justifyContent:"center",fontSize:11,fontWeight:"bold",color:"#333"},children:r[t]||t},"col-label-"+t))]}),_&&"hover"===M&&(()=>{const t=_.datum,o=r[_.xField]||_.xField,n=r[_.yField]||_.yField,i=s?"function"==typeof s?s(t):t[s]:null,a=k?"function"==typeof k?k(t):t[k]:"Row "+t[Si];return e.jsxs("div",{style:{position:"absolute",left:40+_.colIndex*(l+c)+_.px,top:_.rowIndex*(l+c)+_.py-8,transform:"translate(-50%, -100%)",color:"#333",background:"rgba(255,255,255,0.95)",border:"1px solid #ddd",borderRadius:3,padding:"4px 8px",fontSize:11,lineHeight:1.4,whiteSpace:"nowrap",pointerEvents:"none",zIndex:10},children:[e.jsx("div",{style:{fontWeight:"bold",marginBottom:2},children:a+""}),e.jsxs("div",{children:[o,": ",null!=t[_.xField]?Number(t[_.xField]).toFixed(1):"–"]}),e.jsxs("div",{children:[n,": ",null!=t[_.yField]?Number(t[_.yField]).toFixed(1):"–"]}),null!=i&&e.jsxs("div",{style:{opacity:.8},children:["string"==typeof s?s:"group",": ",i+""]})]})})()]})}function Ti(t){const{brushMode:o="crossfilter",hoverMode:n=!0}=t,i={};return!n&&o&&(i.splom={resolution:o}),n&&(i["splom-hover"]={resolution:"union"}),e.jsx(Uo,{selections:i,children:e.jsx(Li,Object.assign({},t))})}Ti.displayName="ScatterplotMatrix";const Ri=t.forwardRef(function(o,n){const i=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=i.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=i.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=i.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=i.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=i.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=i.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const r=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,xLabel:o.xLabel,yLabel:o.yLabel}),{data:s,margin:a,className:l,xFormat:c,yFormat:u,xAccessor:d="x",yAccessor:h="y",xCenter:g,yCenter:f,quadrants:p,centerlineStyle:y={},showQuadrantLabels:v=!0,quadrantLabelSize:m=12,colorBy:b,colorScheme:x,sizeBy:k,sizeRange:w=[3,15],pointRadius:j=5,pointOpacity:A=.8,tooltip:S,pointIdAccessor:O,annotations:M,frameProps:C={},selection:_,linkedHover:P,onObservation:L,onClick:T,hoverHighlight:R,chartId:B,loading:D,emptyContent:I,legendInteraction:N,legendPosition:H,color:W,stroke:E,strokeWidth:F,opacity:$}=o,z=r.width,G=r.height,X=r.enableHover,V=r.showGrid,U=r.showLegend,K=r.title,Q=r.description,Z=r.summary,J=r.accessibleTable,ee=r.xLabel,te=r.yLabel,oe=li(D,z,G),ne=oe?null:ai(s,z,G,I),ie=s||[];ci("QuadrantChart",ie,"xAccessor",d),ci("QuadrantChart",ie,"yAccessor",h);const{activeSelectionHook:re,hoverSelectionHook:se,customHoverBehavior:ae,customClickBehavior:le,crosshairSourceId:ce}=dn({selection:_,linkedHover:P,fallbackFields:"string"==typeof b?[b]:[],onObservation:L,onClick:T,chartType:"QuadrantChart",chartId:B,hoverHighlight:R,colorByField:"string"==typeof b?b:void 0}),ue=ui(_),de=hn(P,ce),he=cn(ie,b,x),ge=t.useMemo(()=>{if(!b)return[];const e=new Set;for(const t of ie){const o="function"==typeof b?b(t):t[b];null!=o&&e.add(o+"")}return Array.from(e)},[ie,b]),fe=fn(N,b,ge),pe=t.useMemo(()=>se||(fe.legendSelectionHook?fe.legendSelectionHook:re),[se,fe.legendSelectionHook,re]),ye=t.useMemo(()=>{if(!ie.length)return;const e="function"==typeof d?d:e=>+e[d],t="function"==typeof h?h:e=>+e[h];let o=1/0,n=-1/0,i=1/0,r=-1/0;for(const s of ie){const a=e(s),l=t(s);isFinite(a)&&(o>a&&(o=a),a>n&&(n=a)),isFinite(l)&&(i>l&&(i=l),l>r&&(r=l))}if(null!=g&&isFinite(g)&&(o>g&&(o=g),g>n&&(n=g)),null!=f&&isFinite(f)&&(i>f&&(i=f),f>r&&(r=f)),o===1/0)return;const s=.1*(n-o)||1,a=.1*(r-i)||1;return{xExtent:[o-s,n+s],yExtent:[i-a,r+a]}},[ie,d,h,g,f]),ve=t.useMemo(()=>{if(!k||0===ie.length)return;const e=ie.map(e=>"function"==typeof k?k(e):e[k]).filter(e=>"number"==typeof e&&Number.isFinite(e));return 0!==e.length?[Math.min(...e),Math.max(...e)]:void 0},[ie,k]),me=t.useMemo(()=>"function"==typeof d?d:e=>+e[d],[d]),be=t.useMemo(()=>"function"==typeof h?h:e=>+e[h],[h]),xe=t.useMemo(()=>e=>{const t={fillOpacity:A};if(b)he&&(t.fill=Y(e,b,he));else{const o=me(e),n=be(e),i=null!=g?o>=g:void 0,r=null!=f?n>=f:void 0;t.fill=void 0===r||void 0===i?W||sn:r&&i?p.topRight.color:r&&!i?p.topLeft.color:!r&&i?p.bottomRight.color:p.bottomLeft.color}return t.r=k?q(e,k,w,ve):j,t},[b,he,k,w,ve,j,A,me,be,g,f,p,W]),ke=t.useMemo(()=>mn(xe,{stroke:E,strokeWidth:F,opacity:$}),[xe,E,F,$]),we=t.useMemo(()=>Zo(ke,pe,ue),[ke,pe,ue]),{legend:je,margin:Ae,legendPosition:Se}=gn({data:ie,colorBy:b,colorScale:he,showLegend:U,legendPosition:H,userMargin:a,defaults:r.marginDefaults}),Oe=t.useMemo(()=>{if(!ie.length)return;const e=new Set;"string"==typeof d&&e.add(d),"string"==typeof h&&e.add(h),"string"==typeof b&&e.add(b),"string"==typeof k&&e.add(k);const t=ie[0];for(const o of Object.keys(t))if(!o.startsWith("_")&&!e.has(o)&&"string"==typeof t[o])return o},[ie,d,h,b,k]),Me=t.useMemo(()=>Cn([...Oe?[{label:Oe,accessor:Oe,role:"title"}]:[],{label:ee||An(d),accessor:d,role:"x",format:c},{label:te||An(h),accessor:h,role:"y",format:u},...b?[{label:An(b),accessor:b,role:"color"}]:[],...k?[{label:An(k),accessor:k,role:"size"}]:[]]),[Oe,d,h,ee,te,b,k,c,u]),Ce=In({componentName:"QuadrantChart",data:s,accessors:{xAccessor:d,yAccessor:h}}),_e=t.useMemo(()=>{var e;const t={stroke:y.stroke||"#999",strokeWidth:null!==(e=y.strokeWidth)&&void 0!==e?e:1,dashArray:y.strokeDasharray||[]};return[(e,o,n,i)=>{var r;if(!(null==n?void 0:n.x)||!(null==n?void 0:n.y))return;const s=i.width,a=i.height,l=null!=g?n.x(g):s/2,c=null!=f?n.y(f):a/2;if(null!=g&&!isFinite(l))return;if(null!=f&&!isFinite(c))return;const u=Math.max(0,Math.min(s,l)),d=Math.max(0,Math.min(a,c)),h=[{config:p.topLeft,x:0,y:0,w:u,h:d},{config:p.topRight,x:u,y:0,w:s-u,h:d},{config:p.bottomLeft,x:0,y:d,w:u,h:a-d},{config:p.bottomRight,x:u,y:d,w:s-u,h:a-d}];for(const t of h)t.w>0&&t.h>0&&(e.fillStyle=t.config.color,e.globalAlpha=null!==(r=t.config.opacity)&&void 0!==r?r:.08,e.fillRect(t.x,t.y,t.w,t.h));e.globalAlpha=1,e.strokeStyle=t.stroke,e.lineWidth=t.strokeWidth,t.dashArray.length>0&&e.setLineDash(t.dashArray),e.beginPath(),e.moveTo(u,0),e.lineTo(u,a),e.stroke(),e.beginPath(),e.moveTo(0,d),e.lineTo(s,d),e.stroke(),e.setLineDash([])}]},[g,f,p,y]),Pe=t.useMemo(()=>v?[..._e,(e,t,o,n)=>{if(!(null==o?void 0:o.x)||!(null==o?void 0:o.y))return;const i=n.width,r=n.height,s=null!=g?o.x(g):i/2,a=null!=f?o.y(f):r/2;(null==g||isFinite(s))&&(null==f||isFinite(a))&&(e.font=`600 ${m}px sans-serif`,e.globalAlpha=.5,e.fillStyle=p.topLeft.color,e.textAlign="left",e.textBaseline="top",e.fillText(p.topLeft.label,8,8),e.fillStyle=p.topRight.color,e.textAlign="right",e.textBaseline="top",e.fillText(p.topRight.label,i-8,8),e.fillStyle=p.bottomLeft.color,e.textAlign="left",e.textBaseline="bottom",e.fillText(p.bottomLeft.label,8,r-8),e.fillStyle=p.bottomRight.color,e.textAlign="right",e.textBaseline="bottom",e.fillText(p.bottomRight.label,i-8,r-8),e.globalAlpha=1)}]:_e,[_e,v,m,p,g,f]),Le=t.useMemo(()=>{const e=C.canvasPreRenderers||[];return[...Pe,...e]},[Pe,C.canvasPreRenderers]),Te=t.useMemo(()=>{var t;const o={stroke:y.stroke||"#999",strokeWidth:null!==(t=y.strokeWidth)&&void 0!==t?t:1,dashArray:y.strokeDasharray?Array.isArray(y.strokeDasharray)?y.strokeDasharray.join(","):y.strokeDasharray:void 0};return[(t,n,i)=>{if(!(null==n?void 0:n.x)||!(null==n?void 0:n.y))return null;const r=i.width,s=i.height,a=null!=g?n.x(g):r/2,l=null!=f?n.y(f):s/2;if(null!=g&&!isFinite(a))return null;if(null!=f&&!isFinite(l))return null;const c=Math.max(0,Math.min(r,a)),u=Math.max(0,Math.min(s,l));return e.jsxs(e.Fragment,{children:[[{config:p.topLeft,x:0,y:0,w:c,h:u},{config:p.topRight,x:c,y:0,w:r-c,h:u},{config:p.bottomLeft,x:0,y:u,w:c,h:s-u},{config:p.bottomRight,x:c,y:u,w:r-c,h:s-u}].map((t,o)=>{var n;return t.w>0&&t.h>0?e.jsx("rect",{x:t.x,y:t.y,width:t.w,height:t.h,fill:t.config.color,opacity:null!==(n=t.config.opacity)&&void 0!==n?n:.08},"qf-"+o):null}),e.jsx("line",{x1:c,y1:0,x2:c,y2:s,stroke:o.stroke,strokeWidth:o.strokeWidth,strokeDasharray:o.dashArray}),e.jsx("line",{x1:0,y1:u,x2:r,y2:u,stroke:o.stroke,strokeWidth:o.strokeWidth,strokeDasharray:o.dashArray}),v&&e.jsxs(e.Fragment,{children:[e.jsx("text",{x:8,y:8+m,fill:p.topLeft.color,fontWeight:600,fontSize:m,opacity:.5,children:p.topLeft.label}),e.jsx("text",{x:r-8,y:8+m,fill:p.topRight.color,fontWeight:600,fontSize:m,opacity:.5,textAnchor:"end",children:p.topRight.label}),e.jsx("text",{x:8,y:s-8,fill:p.bottomLeft.color,fontWeight:600,fontSize:m,opacity:.5,children:p.bottomLeft.label}),e.jsx("text",{x:r-8,y:s-8,fill:p.bottomRight.color,fontWeight:600,fontSize:m,opacity:.5,textAnchor:"end",children:p.bottomRight.label})]})]})}]},[g,f,p,y,v,m]),Re=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"scatter"},null!=s&&{data:ie}),{xAccessor:d,yAccessor:h,colorAccessor:b||void 0,sizeAccessor:k||void 0,sizeRange:w,pointStyle:we,colorScheme:x,size:[z,G],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:Ae,showAxes:r.showAxes,xLabel:ee,yLabel:te,xFormat:c,yFormat:u,enableHover:X,showGrid:V}),ye&&{xExtent:ye.xExtent,yExtent:ye.yExtent}),je&&{legend:je,legendPosition:Se}),N&&"none"!==N&&{legendHoverBehavior:fe.onLegendHover,legendClickBehavior:fe.onLegendClick,legendHighlightedCategory:fe.highlightedCategory,legendIsolatedCategories:fe.isolatedCategories}),K&&{title:K}),Q&&{description:Q}),Z&&{summary:Z}),void 0!==J&&{accessibleTable:J}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===S?()=>null:!0===S||void 0===S?Me:jn(S)||Me}),(P||L||T||R)&&{customHoverBehavior:ae}),(L||T||P)&&{customClickBehavior:le}),O&&{pointIdAccessor:O}),M&&M.length>0&&{annotations:M}),{canvasPreRenderers:Le}),de),C),Le.length>0&&{canvasPreRenderers:Le}),{svgPreRenderers:Te});return oe||ne||(Ce?e.jsx(Pn,{componentName:"QuadrantChart",message:Ce,width:z,height:G}):e.jsx(ii,{componentName:"QuadrantChart",width:z,height:G,children:e.jsx(Lo,Object.assign({ref:i},Re))}))});Ri.displayName="QuadrantChart";const Bi="__ma_unitized",Di="__ma_series";function Ii(e,t){const o=t[1]-t[0];return 0===o?.5:(e-t[0])/o}function Ni(e,t){return t[0]+e*(t[1]-t[0])}const Hi=t.forwardRef(function(o,n){var i,r;const s=t.useRef(null),a=t.useRef([]);t.useImperativeHandle(n,()=>({push:e=>{if(!s.current)return;const t=e;for(let e=0;o.series.length>e&&2>e;e++){const n=o.series[e],i=n.extent||a.current[e];if(!i)continue;const r=("function"==typeof n.yAccessor?n.yAccessor:e=>e[n.yAccessor])(t);null!=r&&isFinite(r)&&s.current.push(Object.assign(Object.assign({},t),{[Bi]:Ii(r,i),[Di]:n.label||"Series "+(e+1)}))}},pushMany:e=>{if(!s.current)return;const t=[];for(const n of e)for(let e=0;o.series.length>e&&2>e;e++){const i=o.series[e],r=i.extent||a.current[e];if(!r)continue;const s=("function"==typeof i.yAccessor?i.yAccessor:e=>e[i.yAccessor])(n);null!=s&&isFinite(s)&&t.push(Object.assign(Object.assign({},n),{[Bi]:Ii(s,r),[Di]:i.label||"Series "+(e+1)}))}s.current.pushMany(t)},remove:e=>{var t,o;return null!==(o=null===(t=s.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=s.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=s.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=s.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=s.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const l=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,xLabel:o.xLabel,accessibleTable:o.accessibleTable},{width:800,height:400}),{data:c,margin:u,className:d,xFormat:h,xAccessor:g="x",series:f,colorScheme:p,curve:v="monotoneX",lineWidth:m=2,tooltip:b,annotations:x,frameProps:k={},selection:w,linkedHover:j,onObservation:A,onClick:S,hoverHighlight:O,chartId:M,loading:C,emptyContent:_,legendInteraction:P,legendPosition:L,stroke:T,strokeWidth:R,opacity:B}=o,D=l.width,I=l.height,N=l.enableHover,H=l.showGrid,F=null===(i=l.showLegend)||void 0===i||i,$=l.title,z=l.description,Y=l.summary,G=l.accessibleTable,q=l.xLabel,X=2===f.length;"undefined"==typeof process||"production"===(null===(r=process.env)||void 0===r?void 0:r.NODE_ENV)||X||console.warn(`[MultiAxisLineChart] Expected exactly 2 series for dual-axis mode, got ${f.length}. Rendering as a standard multi-line chart.`);const V=li(C,D,I),U=V?null:ai(c,D,I,_),K=c||[],Q=an(),Z=t.useMemo(()=>{let e;if(Array.isArray(p))e=p;else if(Q&&Q.length>0)e=Q;else{const t=W[p];e=Array.isArray(t)?t:E}return f.map((t,o)=>t.color||e[o%e.length])},[f,p,Q]),J=t.useMemo(()=>f.map((e,t)=>e.label||"Series "+(t+1)),[f]),{unitizedData:ee,extents:te}=t.useMemo(()=>{if(0===K.length){const e=f.map(e=>e.extent||null).filter(Boolean);return e.length===f.length&&(a.current=e),{unitizedData:[],extents:e.length===f.length?e:[]}}const e=f.map(e=>e.extent||function(e,t){let o=1/0,n=-1/0;const i="function"==typeof t?t:e=>e[t];for(const t of e){const e=i(t);null!=e&&isFinite(e)&&(o>e&&(o=e),e>n&&(n=e))}if(!isFinite(o)||!isFinite(n))return[0,1];if(o===n){const e=0===o?1:.1*Math.abs(o);return[o-e,n+e]}return[o,n]}(K,e.yAccessor));if(a.current=e,!X){const t=[];for(const e of K)for(let o=0;f.length>o;o++){const n=f[o],i=("function"==typeof n.yAccessor?n.yAccessor:e=>e[n.yAccessor])(e);null!=i&&t.push(Object.assign(Object.assign({},e),{[Bi]:i,[Di]:J[o]}))}return{unitizedData:t,extents:e}}const t=[];for(const o of K)for(let n=0;2>n;n++){const i=f[n],r=("function"==typeof i.yAccessor?i.yAccessor:e=>e[i.yAccessor])(o);null!=r&&t.push(Object.assign(Object.assign({},o),{[Bi]:Ii(r,e[n]),[Di]:J[n]}))}return{unitizedData:t,extents:e}},[K,f,X,J]),oe=t.useMemo(()=>{if(X&&te.length>=2)return[{orient:"left",label:J[0],tickFormat:f[0].format||(e=>{const t=Ni(e,te[0]);return Number.isInteger(t)?t+"":t.toFixed(1)})},{orient:"right",label:J[1],tickFormat:f[1].format||(e=>{const t=Ni(e,te[1]);return Number.isInteger(t)?t+"":t.toFixed(1)})},{orient:"bottom"}]},[X,te,f,J]),ne=bi({data:t.useMemo(()=>ee.length>0?ee:J.map(e=>({[Di]:e})),[ee,J]),rawData:c,colorBy:Di,colorScheme:Z,legendInteraction:P,legendPosition:L,selection:w,linkedHover:j,fallbackFields:[Di],unwrapData:!1,onObservation:A,onClick:S,hoverHighlight:O,chartType:"MultiAxisLineChart",chartId:M,showLegend:F,userMargin:u,marginDefaults:X?Object.assign(Object.assign({},l.marginDefaults),{left:70,right:70}):l.marginDefaults,loading:C,emptyContent:_,width:D,height:I});if(ne.earlyReturn)return ne.earlyReturn;const ie=t.useMemo(()=>{const e=new Map;return J.forEach((t,o)=>e.set(t,Z[o])),t=>({stroke:e.get(t[Di])||Z[0],strokeWidth:m,fill:"none"})},[J,Z,m]),re=t.useMemo(()=>mn(ie,{stroke:T,strokeWidth:R,opacity:B}),[ie,T,R,B]),se=t.useMemo(()=>Zo(re,ne.effectiveSelectionHook,ne.resolvedSelection),[re,ne.effectiveSelectionHook,ne.resolvedSelection]),ae=t.useMemo(()=>{if(!1===b)return()=>null;return jn(b)||(e=>{var t;const o=e.data||e,n=o[Di],i=J.indexOf(n),r=o[Bi],s=X&&i>=0&&te[i]?Ni(r,te[i]):r,a=i>=0&&(null===(t=f[i])||void 0===t?void 0:t.format)?f[i].format:e=>Number.isInteger(e)?e+"":e.toFixed(2),l="function"==typeof g?g(o):o[g];return y.createElement("div",{style:{padding:"6px 10px",fontFamily:"var(--semiotic-font-family, sans-serif)",fontSize:"var(--semiotic-tooltip-font-size, 13px)"}},y.createElement("div",{style:{fontWeight:600,marginBottom:4,color:Z[i]||"inherit"}},n),y.createElement("div",null,`${"string"==typeof g?g:"x"}: ${l}`),y.createElement("div",null,`${n}: ${a(s)}`))})},[b,J,Z,te,X,f,g]),le=In({componentName:"MultiAxisLineChart",data:c,accessors:{xAccessor:g}}),ce=X?[0,1]:void 0,ue=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"line"},null!=c&&{data:ee}),{xAccessor:g,yAccessor:Bi,groupAccessor:Di,lineStyle:se,colorScheme:Z,size:[D,I],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:ne.margin,showAxes:l.showAxes}),oe&&{axes:oe}),{xLabel:q}),X?{}:{yLabel:J[0]}),{xFormat:h}),X&&ce&&{yExtent:ce}),{enableHover:N}),o.pointIdAccessor&&{pointIdAccessor:o.pointIdAccessor}),{showGrid:H,curve:v}),ne.legendBehaviorProps),$&&{title:$}),z&&{description:z}),Y&&{summary:Y}),void 0!==G&&{accessibleTable:G}),d&&{className:d}),null!=o.animate&&{animate:o.animate}),{tooltipContent:ae}),x&&{annotations:x}),(j||A||S||O)&&{customHoverBehavior:ne.customHoverBehavior}),(A||S||j)&&{customClickBehavior:ne.customClickBehavior}),ne.crosshairProps),k);return V||U||(le?e.jsx(Pn,{componentName:"MultiAxisLineChart",message:le,width:D,height:I}):e.jsx(ii,{componentName:"MultiAxisLineChart",width:D,height:I,children:e.jsx(Lo,Object.assign({ref:s},ue))}))});function Wi(e,t){const{columns:o,config:n,resolvePieceStyle:i}=e,r=[],s=Math.min(t.width,t.height)/2-4,a="donut"===n.chartType?n.innerRadius||60:0,l=-Math.PI/2+(n.startAngle||0)*Math.PI/180,c=null!=n.sweepAngle?n.sweepAngle*Math.PI/180:2*Math.PI;for(const e of Object.values(o)){const t=l+e.pctStart*c,o=l+(e.pctStart+e.pct)*c,u=i(e.pieceData[0],e.name);r.push(Object.assign(Object.assign({type:"wedge",cx:0,cy:0,innerRadius:a,outerRadius:s,startAngle:t,endAngle:o},n.cornerRadius&&{cornerRadius:n.cornerRadius}),{style:u,datum:e.pieceData,category:e.name}))}return r}function Ei(e){var t,o,n;const i=e.length,r=e[0],s=e[i-1];return{n:i,min:r,q1:null!==(t=a.quantile(e,.25))&&void 0!==t?t:r,median:null!==(o=a.quantile(e,.5))&&void 0!==o?o:(r+s)/2,q3:null!==(n=a.quantile(e,.75))&&void 0!==n?n:s,max:s,mean:e.reduce((e,t)=>e+t,0)/i}}Hi.displayName="MultiAxisLineChart";const Fi={bar:function(e,t){var o,n,i;const{scales:r,columns:s,config:a,getR:l,getStack:c,resolvePieceStyle:u}=e,{r:d,projection:h}=r,g=[],f="vertical"===h,p="horizontal"===h,y=a.normalize,v=[];if(c){const e=new Set;for(const t of Object.values(s))for(const o of t.pieceData){const t=c(o);e.has(t)||(e.add(t),v.push(t))}}else v.push("_default");for(const e of Object.values(s)){const t=new Map;for(const o of e.pieceData){const e=c?c(o):"_default";t.has(e)||t.set(e,{total:0,pieces:[]});const n=t.get(e);n.total+=l(o),n.pieces.push(o)}let o=0;if(y)for(const e of t.values())o+=Math.abs(e.total);let n=0,i=0;for(const r of v){const s=t.get(r);if(!s)continue;let a=s.total;y&&o>0&&(a/=o);const l=u(s.pieces[0],c?r:e.name),h=Object.assign(Object.assign({},s.pieces[0]),{__aggregateValue:s.total,__pieceCount:s.pieces.length,category:e.name});if(f){const t=d(0>a?i:n+a),o=0>a?d(i+a)-d(i):d(n)-d(n+a);g.push(ne(e.x,t,e.width,Math.abs(o),l,h,r)),0>a?i+=a:n+=a}else if(p){const t=d(0>a?i+a:n),o=0>a?d(i)-d(i+a):d(n+a)-d(n);g.push(ne(t,e.x,Math.abs(o),e.width,l,h,r)),0>a?i+=a:n+=a}}}const m="vertical"===h,b=a.roundedTop&&a.roundedTop>0?Math.max(0,a.roundedTop):0;for(const e of g){if("rect"!==e.type)continue;const t=null!==(n=null===(o=e.datum)||void 0===o?void 0:o.__aggregateValue)&&void 0!==n?n:0;e.roundedEdge=m?0>t?"bottom":"top":0>t?"left":"right",a.gradientFill&&(e.fillGradient=a.gradientFill)}if(b>0){const e=new Map;for(const t of g){if("rect"!==t.type)continue;const o=(null===(i=t.datum)||void 0===i?void 0:i.category)||"";e.has(o)||e.set(o,[]),e.get(o).push(t)}for(const t of e.values()){if(0===t.length)continue;const e=t.filter(e=>{var t,o;return(null!==(o=null===(t=e.datum)||void 0===t?void 0:t.__aggregateValue)&&void 0!==o?o:0)>=0}),o=t.filter(e=>{var t,o;return 0>(null!==(o=null===(t=e.datum)||void 0===t?void 0:t.__aggregateValue)&&void 0!==o?o:0)});e.length>0&&(e.reduce(m?(e,t)=>t.y>e.y?e:t:(e,t)=>e.x+e.w>t.x+t.w?e:t).roundedTop=b),o.length>0&&(o.reduce(m?(e,t)=>e.y+e.h>t.y+t.h?e:t:(e,t)=>t.x>e.x?e:t).roundedTop=b)}}return g},clusterbar:function(e,t){const{scales:o,columns:n,config:i,getR:r,getGroup:s,resolvePieceStyle:a}=e,{r:l,projection:c}=o,u=[],d="vertical"===c,h=[],g=new Set;for(const e of Object.values(n))for(const t of e.pieceData){const e=s?s(t):"_default";g.has(e)||(g.add(e),h.push(e))}const f=h.length||1;for(const e of Object.values(n)){const t=e.width/f,o=.2*t,n=t-o,i=new Map;for(const t of e.pieceData){const e=s?s(t):"_default";i.has(e)||i.set(e,[]),i.get(e).push(t)}for(let s=0;h.length>s;s++){const c=i.get(h[s])||[];for(const i of c){const c=r(i),g=a(i,h[s]);if(d){const r=e.x+s*t+o/2,a=l(0),d=l(c);u.push(ne(r,Math.min(a,d),n,Math.abs(a-d),g,i,h[s]))}else{const r=e.x+s*t+o/2,a=l(0),d=l(c);u.push(ne(Math.min(a,d),r,Math.abs(d-a),n,g,i,h[s]))}}}}const p=i.roundedTop&&i.roundedTop>0?Math.max(0,i.roundedTop):0;for(const e of u){if("rect"!==e.type)continue;const t=r(e.datum);p>0&&(e.roundedTop=p),e.roundedEdge=d?0>t?"bottom":"top":0>t?"left":"right",i.gradientFill&&(e.fillGradient=i.gradientFill)}return u},point:function(e,t){var o,n;const{scales:i,columns:r,getR:s,multiScales:a,resolvePieceStyle:l}=e,{r:c,projection:u}=i,d=[],h="vertical"===u,g="radial"===u,f=a.length>0,p=2*Math.PI,y=-Math.PI/2;for(const e of Object.values(r))for(const t of e.pieceData){const i=null!==(o=t.__rIndex)&&void 0!==o?o:0,r=null!==(n=t.__rValue)&&void 0!==n?n:s(t),u=f&&a[i]||c,v=l(t,e.name),m=v.r||5;let b,x;if(g){const t=y+(e.pctStart+e.pct/2)*p,o=u(r);b=Math.cos(t)*o,x=Math.sin(t)*o}else h?(b=e.middle,x=u(r)):(b=u(r),x=e.middle);d.push({type:"point",x:b,y:x,r:m,style:v,datum:t})}return d},swarm:function(e,t){const{scales:o,columns:n,getR:i,resolvePieceStyle:r}=e,{r:s,projection:a}=o,l=[],c="vertical"===a;for(const e of Object.values(n)){const t=e.width/2;for(let o=0;e.pieceData.length>o;o++){const n=e.pieceData[o],a=i(n),u=r(n,e.name),d=u.r||4,h=(7919*o%100/100-.5)*t*.8,g=c?e.middle+h:s(a),f=c?s(a):e.middle+h;l.push({type:"point",x:g,y:f,r:d,style:u,datum:n})}}return l},pie:Wi,donut:Wi,boxplot:function(e,t){var o,n,i,r,s,l;const{scales:c,columns:u,config:d,getR:h,resolveSummaryStyle:g}=e,{r:f,projection:p}=c,y=[],v="vertical"===p,m=!1!==d.showOutliers;for(const t of Object.values(u)){const c=t.pieceData.map(e=>h(e)).filter(e=>null!=e&&!isNaN(e)).sort((e,t)=>e-t);if(0===c.length)continue;const u=c[0],d=c[c.length-1],p=null!==(o=a.quantile(c,.25))&&void 0!==o?o:u,b=null!==(n=a.quantile(c,.5))&&void 0!==n?n:(u+d)/2,x=null!==(i=a.quantile(c,.75))&&void 0!==i?i:d,k=x-p,w=p-1.5*k,j=x+1.5*k,A=null!==(r=c.find(e=>e>=w))&&void 0!==r?r:u,S=null!==(s=[...c].reverse().find(e=>j>=e))&&void 0!==s?s:d,O=g(t.pieceData[0],t.name),M=[];if(m)for(const e of t.pieceData){const o=h(e);if(w>o||o>j){const n=v?t.middle:f(o),i=v?f(o):t.middle;M.push({px:n,py:i,value:o,datum:e})}}if(y.push({type:"boxplot",x:v?t.middle:0,y:v?0:t.middle,projection:v?"vertical":"horizontal",columnWidth:.6*t.width,minPos:f(A),q1Pos:f(p),medianPos:f(b),q3Pos:f(x),maxPos:f(S),stats:{n:c.length,min:A,q1:p,median:b,q3:x,max:S,mean:c.reduce((e,t)=>e+t,0)/c.length},style:O,datum:t.pieceData,category:t.name,outliers:M}),m)for(const t of M)y.push({type:"point",x:t.px,y:t.py,r:3,style:{fill:O.fill||(null===(l=e.config.themeSemantic)||void 0===l?void 0:l.secondary)||"#999",opacity:.6},datum:t.datum})}return y},violin:function(e,t){var o,n,i;const{scales:r,columns:s,config:l,getR:c,resolveSummaryStyle:u}=e,{r:d,projection:h}=r,g=[],f="vertical"===h,p=l.bins||20,y=!1!==l.showIQR;for(const e of Object.values(s)){const t=e.pieceData.map(e=>c(e)).filter(e=>null!=e&&!isNaN(e)).sort((e,t)=>e-t);if(2>t.length)continue;const r=t[0],s=t[t.length-1],l=(s-r)/p||1,h=Array(p).fill(0);for(const e of t)h[Math.min(Math.floor((e-r)/l),p-1)]++;const v=Math.max(...h,1),m=e.width/2*.9;let b="";if(f){b=`M ${e.middle} ${d(r)}`;for(let t=0;p>t;t++){const o=d(r+(t+.5)*l);b+=` L ${e.middle+h[t]/v*m} ${o}`}b+=` L ${e.middle} ${d(s)}`;for(let t=p-1;t>=0;t--){const o=d(r+(t+.5)*l);b+=` L ${e.middle-h[t]/v*m} ${o}`}b+=" Z"}else{b=`M ${d(r)} ${e.middle}`;for(let t=0;p>t;t++)b+=` L ${d(r+(t+.5)*l)} ${e.middle-h[t]/v*m}`;b+=` L ${d(s)} ${e.middle}`;for(let t=p-1;t>=0;t--)b+=` L ${d(r+(t+.5)*l)} ${e.middle+h[t]/v*m}`;b+=" Z"}const x=u(e.pieceData[0],e.name);let k;if(y&&t.length>=4){const l=null!==(o=a.quantile(t,.25))&&void 0!==o?o:r,c=null!==(n=a.quantile(t,.5))&&void 0!==n?n:(r+s)/2,u=null!==(i=a.quantile(t,.75))&&void 0!==i?i:s;k={q1Pos:d(l),medianPos:d(c),q3Pos:d(u),centerPos:e.middle,isVertical:f}}const w=f?{x:e.x,y:Math.min(d(s),d(r)),width:e.width,height:Math.abs(d(s)-d(r))}:{x:Math.min(d(r),d(s)),y:e.x,width:Math.abs(d(s)-d(r)),height:e.width};g.push({type:"violin",pathString:b,translateX:0,translateY:0,bounds:w,iqrLine:k,stats:Ei(t),style:x,datum:e.pieceData,category:e.name})}return g},histogram:function(e,t){var o;const{scales:n,columns:i,config:r,getR:s,resolveSummaryStyle:a}=e,{r:l}=n,c=[],u=r.bins||25,d=r.normalize,h=null===(o=l.domain)||void 0===o?void 0:o.call(l),g=h?+h[0]:void 0,f=h?+h[1]:void 0;for(const e of Object.values(i)){const t=e.pieceData.map(e=>s(e)).filter(e=>null!=e&&!isNaN(e));if(0===t.length)continue;const o=null!=g&&isFinite(g)?g:Math.min(...t),n=null!=f&&isFinite(f)?f:Math.max(...t),i=(n-o)/u||1,r=Array(u).fill(0);for(const e of t)o>e||e>n||r[Math.min(Math.floor((e-o)/i),u-1)]++;const h=t.length,p=Math.max(...r,1),y=a(e.pieceData[0],e.name);for(let t=0;u>t;t++){if(0===r[t])continue;const n=(d?r[t]/h:r[t]/p)*e.width*.9,s=l(o+t*i),a=l(o+(t+1)*i);c.push(ne(Math.min(s,a),e.x+e.width-n,Math.abs(a-s),n,y,{bin:t,count:r[t],range:[o+t*i,o+(t+1)*i],category:e.name},e.name))}}return c},ridgeline:function(e,t){var o;const{scales:n,columns:i,config:r,getR:s,resolveSummaryStyle:a}=e,{r:l,projection:c}=n,u=[],d=r.bins||20,h="horizontal"===c,g=r.amplitude||1.5;for(const e of Object.values(i)){const t=e.pieceData.map(e=>s(e)).filter(e=>null!=e&&!isNaN(e)).sort((e,t)=>e-t);if(2>t.length)continue;const n=t[0],i=t[t.length-1],r=(i-n)/d||1,c=Array(d).fill(0);for(const e of t)n>e||e>i||c[Math.min(Math.floor((e-n)/r),d-1)]++;const f=Math.max(...c,1),p=a(e.pieceData[0],e.name),y=e.width*g;let v="";if(h){const t=e.x+e.width;v=`M ${l(n)} ${t}`;for(let e=0;d>e;e++)v+=` L ${l(n+(e+.5)*r)} ${t-c[e]/f*y}`;v+=` L ${l(i)} ${t} Z`}else{const t=e.x;v=`M ${t} ${l(n)}`;for(let e=0;d>e;e++){const o=l(n+(e+.5)*r);v+=` L ${t+c[e]/f*y} ${o}`}v+=` L ${t} ${l(i)} Z`}const m=h?{x:Math.min(l(n),l(i)),y:e.x,width:Math.abs(l(i)-l(n)),height:e.width}:{x:e.x,y:Math.min(l(i),l(n)),width:e.width,height:Math.abs(l(i)-l(n))};u.push({type:"violin",pathString:v,translateX:0,translateY:0,bounds:m,stats:Ei(t),style:Object.assign(Object.assign({},p),{fillOpacity:null!==(o=p.fillOpacity)&&void 0!==o?o:.5}),datum:e.pieceData,category:e.name})}return u},timeline:function(e,t){const{scales:o,columns:n,getRawRange:i,resolvePieceStyle:r}=e,{r:s,projection:a}=o,l=[],c="horizontal"===a;for(const e of Object.values(n))for(const t of e.pieceData){const o=i(t);if(!o)continue;const[n,a]=o,u=r(t,e.name);if(c){const o=s(Math.min(n,a)),i=s(Math.max(n,a));l.push(ne(o,e.x,i-o,e.width,u,t,e.name))}else{const o=s(Math.max(n,a)),i=s(Math.min(n,a));l.push(ne(e.x,o,e.width,i-o,u,t,e.name))}}return l},funnel:function(e,t){var o,n,r,s,a,l,c,u;const{columns:d,getR:h,getStack:g,resolvePieceStyle:f}=e,p=[],y=t.width/2,v=!1!==e.config.showLabels,m=e.scales.o.domain().map(e=>d[e]).filter(Boolean);if(0===m.length)return p;const b=[],x=new Set;for(const e of m)for(const t of e.pieceData){const e=g?g(t):"_default";x.has(e)||(x.add(e),b.push(e))}const k=b.length>1&&"_default"!==b[0],w=[];let j=0;for(const e of m){const t=new Map;let o=0;for(const n of e.pieceData){const e=g?g(n):"_default";t.has(e)||t.set(e,{total:0,pieces:[]});const i=t.get(e),r=h(n);i.total+=r,i.pieces.push(n),o+=r}w.push({col:e,groups:t,stepTotal:o}),k||o>j&&(j=o)}if(k)for(const e of w){let t=0,o=0;for(let n=0;b.length>n;n++){const i=e.groups.get(b[n]);i&&(n%2==0?t+=i.total:o+=i.total)}const n=Math.max(t,o);n>j&&(j=n)}if(0===j)return p;const A=new Map;for(const e of b){const t=w[0].groups.get(e);A.set(e,null!==(o=null==t?void 0:t.total)&&void 0!==o?o:0)}const S=w[0].stepTotal,O=k?.95*y:.9*t.width,M=i.scaleLinear().domain([0,j]).range([0,O]),C=null!==(n=e.config.connectorOpacity)&&void 0!==n?n:.3;let _=new Map;for(let t=0;w.length>t;t++){const o=w[t],n=o.col,i=0===t,d=n.width,h=.55*d,g=n.x+(d-h)/2,m=new Map;if(k){let e=0;for(const t of b){const n=o.groups.get(t);n&&(e+=M(n.total))}let t=y,r=y;for(let s=0;b.length>s;s++){const l=b[s],c=o.groups.get(l);if(!c)continue;const u=M(c.total),d=s%2==0,x=d?t:r-u;d?t+=u:r-=u;const k=f(c.pieces[0],l),w=null!==(a=A.get(l))&&void 0!==a?a:c.total,j=w>0?c.total/w*100:0,S=Object.assign(Object.assign({},c.pieces[0]),{__funnelValue:c.total,__funnelPercent:j,__funnelStep:n.name,__funnelIsFirstStep:i,__aggregateValue:c.total,__pieceCount:c.pieces.length,category:l});v&&(0===s&&(S.__funnelStepLabel=n.name,S.__funnelStepLabelX=y,S.__funnelStepLabelY=g,S.__funnelRowWidth=e),S.__funnelValueLabelX=x+u/2,S.__funnelValueLabelY=g,S.__funnelBarW=u),p.push(ne(x,g,u,h,k,S,l)),m.set(l,{x:x,y:g,w:u,h:h})}}else{const e=o.stepTotal,t=M(e),a=y-t/2,l=b[0],c="_default"!==l,u=null!==(s=null===(r=o.groups.get(l))||void 0===r?void 0:r.pieces[0])&&void 0!==s?s:n.pieceData[0],d=c?l:n.name,x=f(u,d),k=S>0?e/S*100:0,w=Object.assign(Object.assign({},u),{__funnelValue:e,__funnelPercent:k,__funnelStep:n.name,__funnelIsFirstStep:i,category:c?l:n.name});v&&(w.__funnelStepLabel=n.name,w.__funnelStepLabelX=y,w.__funnelStepLabelY=g,w.__funnelRowWidth=t,w.__funnelValueLabelX=y,w.__funnelValueLabelY=g,w.__funnelBarW=t),p.push(ne(a,g,t,h,x,w,d)),m.set(l,{x:a,y:g,w:t,h:h})}if(t>0&&_.size>0){const t=k?b:[b[0]];for(const i of t){const t=_.get(i),r=m.get(i);if(!t||!r)continue;const s=(()=>{const e=o.groups.get(i);return f(e?e.pieces[0]:n.pieceData[0],"_default"===i?n.name:i)})(),a={type:"trapezoid",points:[[t.x,t.y+t.h],[t.x+t.w,t.y+t.h],[r.x+r.w,r.y],[r.x,r.y]],style:{fill:s.fill||(null===(l=e.config.themeSemantic)||void 0===l?void 0:l.secondary)||"#999",opacity:C},datum:null!==(u=null===(c=o.groups.get(i))||void 0===c?void 0:c.pieces[0])&&void 0!==u?u:n.pieceData[0],category:"_default"===i?n.name:i};p.push(a)}}_=m}return p},"bar-funnel":function(e,t){var o,n,i,r;const{columns:s,getR:a,getStack:l,resolvePieceStyle:c,scales:u}=e,d=[],h=u.o.domain().map(e=>s[e]).filter(Boolean);if(0===h.length)return d;const g=[],f=new Set;for(const e of h)for(const t of e.pieceData){const e=l?l(t):"_default";f.has(e)||(f.add(e),g.push(e))}const p=g.length>1&&"_default"!==g[0],y=[];for(const e of h){const t=new Map;let o=0;for(const n of e.pieceData){const e=l?l(n):"_default";t.has(e)||t.set(e,{total:0,pieces:[]});const i=t.get(e),r=a(n);i.total+=r,i.pieces.push(n),o+=r}y.push({col:e,groups:t,stepTotal:o})}const v=new Map;for(const e of g){const t=null===(o=y[0])||void 0===o?void 0:o.groups.get(e);v.set(e,null!==(n=null==t?void 0:t.total)&&void 0!==n?n:0)}const m=u.r,b=p?g.length:1,x=p?.15:0;for(let e=0;y.length>e;e++){const t=y[e],o=t.col,n=0===e,s=e>0?y[e-1]:null,a=o.width/b,l=a*x,u=a-l;for(let e=0;g.length>e;e++){const h=g[e],f=t.groups.get(h);if(!f)continue;const y=f.total,b=null!==(i=v.get(h))&&void 0!==i?i:y,x=b>0?y/b*100:0,k=null==s?void 0:s.groups.get(h),w=null!==(r=null==k?void 0:k.total)&&void 0!==r?r:y,j=n?0:Math.max(0,w-y),A=o.x+e*a+l/2,S=m(y),O=m(0)-S,M=c(f.pieces[0],p?h:o.name),C=Object.assign(Object.assign({},f.pieces[0]),{__barFunnelValue:y,__barFunnelPercent:x,__barFunnelIsFirstStep:n,__barFunnelIsDropoff:!1,__barFunnelStep:o.name,__barFunnelDropoffValue:j,__barFunnelCategory:"_default"===h?void 0:h,category:p?h:o.name,__barFunnelLabelX:A+u/2,__barFunnelLabelY:m(y+j)});if(d.push(ne(A,S,u,O,M,C,p?h:o.name)),j>0){const e=m(y+j),t=S-e,n=Object.assign({},M),i=Object.assign(Object.assign({},f.pieces[0]),{__barFunnelValue:j,__barFunnelPercent:b>0?j/b*100:0,__barFunnelIsFirstStep:!1,__barFunnelIsDropoff:!0,__barFunnelStep:o.name,__barFunnelCategory:"_default"===h?void 0:h,category:p?h:o.name});d.push(ne(A,e,u,t,n,i,p?h:o.name))}}}return d},swimlane:function(e,t){const{scales:o,columns:n,getR:i,getStack:r,resolvePieceStyle:s}=e,{r:a,projection:l}=o,c=[],u="horizontal"===l;for(const e of Object.values(n)){let t=0;for(const o of e.pieceData){const n=Math.abs(i(o));if(0===n)continue;const l=r?r(o):e.name,d=s(o,l);if(u){const i=a(t),r=a(t+n);c.push(ne(i,e.x,r-i,e.width,d,o,l))}else{const i=a(t+n),r=a(t);c.push(ne(e.x,i,e.width,r-i,d,o,l))}t+=n}}return c}};class $i{constructor(e){this.rExtent=new R,this.rExtents=[],this.rAccessors=[],this.categories=new Set,this._hasStreamingData=!1,this._colorSchemeMap=null,this._colorSchemeIndex=0,this.timestampBuffer=null,this.activeTransition=null,this.prevPositionMap=new Map,this.exitNodes=[],this.lastIngestTime=0,this.scales=null,this.multiScales=[],this.scene=[],this.columns={},this.version=0,this._dataVersion=0,this._pointQuadtree=null,this._maxPointRadius=0,this._datumIndexCache=null,this._categoryIndexCache=null,this._hasRenderedOnce=!1,this.config=e,this.buffer=new T(e.windowSize),this.getO=H(e.categoryAccessor||e.oAccessor,"category");const t=e.valueAccessor||e.rAccessor;Array.isArray(t)?(this.rAccessors=t.map(e=>I(e,"value")),this.getR=this.rAccessors[0],this.rExtents=t.map(()=>new R)):(this.getR=I(t,"value"),this.rAccessors=[this.getR],this.rExtents=[this.rExtent]),this.getStack=H(e.stackBy),this.getGroup=H(e.groupBy),this.getColor=H(e.colorAccessor),this.getConnector=H(e.connectorAccessor),this.getDataId=H(e.dataIdAccessor),e.pulse&&(this.timestampBuffer=new T(e.windowSize))}ingest(e){const t="undefined"!=typeof performance?performance.now():Date.now();if(this.lastIngestTime=t,this._dataVersion++,e.bounded){this.buffer.clear(),this.rExtent.clear();for(const e of this.rExtents)e.clear();e.preserveCategoryOrder?this._hasStreamingData=!0:this.categories.clear(),this.timestampBuffer&&this.timestampBuffer.clear();const o=e.totalSize||e.inserts.length;o>this.buffer.capacity&&(this.buffer.resize(o),this.timestampBuffer&&o>this.timestampBuffer.capacity&&this.timestampBuffer.resize(o));for(const o of e.inserts)this.buffer.push(o),this.timestampBuffer&&this.timestampBuffer.push(t),this.categories.add(this.getO(o)),this.pushValueExtent(o)}else{this._hasStreamingData=!0;for(const o of e.inserts){const e=this.buffer.push(o);this.timestampBuffer&&this.timestampBuffer.push(t),this.categories.add(this.getO(o)),this.pushValueExtent(o),null!=e&&this.evictValueExtent(e)}}return!0}pushValueExtent(e){if("timeline"===this.config.chartType){const t=this.getRawRange(e);t&&(this.rExtent.push(t[0]),this.rExtent.push(t[1]))}else if(this.rAccessors.length>1){for(let t=0;this.rAccessors.length>t;t++)this.rExtents[t].push(this.rAccessors[t](e));this.rExtent.push(this.getR(e))}else this.rExtent.push(this.getR(e))}evictValueExtent(e){if("timeline"===this.config.chartType){const t=this.getRawRange(e);t&&(this.rExtent.evict(t[0]),this.rExtent.evict(t[1]))}else if(this.rAccessors.length>1){for(let t=0;this.rAccessors.length>t;t++)this.rExtents[t].evict(this.rAccessors[t](e));this.rExtent.evict(this.getR(e))}else this.rExtent.evict(this.getR(e))}getRawRange(e){const t=this.config.valueAccessor||this.config.rAccessor;if(!t)return null;const o="function"==typeof t?t(e):e[t];return Array.isArray(o)&&o.length>=2?[+o[0],+o[1]]:null}computeScene(e){const{config:t,buffer:o}=this;if(0===o.size)return this.scales=null,this.scene=[],this.columns={},void this.version++;this.rExtent.dirty&&this.rExtent.recalculate(o,this.getR);const n=o.toArray(),r=t.projection||"vertical",s=t.oExtent||this.resolveCategories(n),a=this.computeValueDomain(n,s),l="horizontal"===r,c="radial"===r,u=Math.min(.9,Math.max(0,null!=t.barPadding?t.barPadding/("vertical"===r?e.width:e.height):.1));let d,h;if(c){d=i.scaleBand().domain(s).range([0,1]).padding(0);const o=Math.min(e.width,e.height)/2,n=t.innerRadius||0;h=i.scaleLinear().domain(a).range([n,o])}else l?(d=i.scaleBand().domain(s).range([0,e.height]).padding(u),h=i.scaleLinear().domain(a).range([0,e.width])):(d=i.scaleBand().domain(s).range([0,e.width]).padding(u),h=i.scaleLinear().domain(a).range([e.height,0]));this.scales={o:d,r:h,projection:r},this.multiScales=this.rAccessors.length>1&&t.multiAxis?this.rAccessors.map((n,r)=>{var s;const a=this.rExtents[r];a.dirty&&a.recalculate(o,n);let[c,u]=a.extent;c===1/0&&(c=0,u=1);const d=null!==(s=t.extentPadding)&&void 0!==s?s:.05,h=u-c,g=h>0?h*d:1;return c-=g,u+=g,c>0&&(c=0),l?i.scaleLinear().domain([c,u]).range([0,e.width]):i.scaleLinear().domain([c,u]).range([e.height,0])}):[];let g=n;this.rAccessors.length>1&&(g=n.flatMap(e=>this.rAccessors.map((t,o)=>Object.assign(Object.assign({},e),{__rIndex:o,__rValue:t(e),__rName:this.resolveRAccessorName(o)})))),this.columns=this.buildColumns(g,s,d,r,e),this.config.transition&&this.scene.length>0&&this.snapshotPositions(),this.scene=this.buildSceneNodes(g,e),this.rebuildPointQuadtree(),this.config.decay&&this.applyDecay(this.scene,n),this.config.pulse&&this.applyPulse(this.scene,n),this.config.transition&&!this._hasRenderedOnce&&this.scene.length>0&&(this.config.introAnimation&&this.synthesizeIntroPositions(),this._hasRenderedOnce=!0),this.config.transition&&this.prevPositionMap.size>0&&this.startTransition(),this.version++}resolveRAccessorName(e){const t=this.config.valueAccessor||this.config.rAccessor,o=Array.isArray(t)?t[e]:t;return"string"==typeof o?o:"value"+e}resolveCategories(e){const t=this.config.oSort,o="streaming"===this.config.runtimeMode||this._hasStreamingData,n="auto"===t?void 0:t;let i=null;if(o){i=new Set;for(const t of e)i.add(this.getO(t))}const r=i?Array.from(this.categories).filter(e=>i.has(e)):Array.from(this.categories);if(o&&void 0===n){const e=Math.max(50,3*i.size);if(this.categories.size>e){let t=this.categories.size-e;for(const e of this.categories){if(0>=t)break;i.has(e)||(this.categories.delete(e),t--)}}return r}if(!1===n)return r;if("function"==typeof n)return r.sort(n);const s=new Map;for(const t of e){const e=this.getO(t);s.set(e,(s.get(e)||0)+Math.abs(this.getR(t)))}return r.sort("asc"===n?(e,t)=>(s.get(e)||0)-(s.get(t)||0):(e,t)=>(s.get(t)||0)-(s.get(e)||0))}computeValueDomain(e,t){var o,n,i,r,s;const a=this.config.chartType,l=null!==(o=this.config.extentPadding)&&void 0!==o?o:.05;if("radial"===this.config.projection&&("pie"===a||"donut"===a))return[0,1];let c=0,u=0;if("bar"===a&&this.getStack&&this.config.normalize)c=0,u=1;else if("bar"===a&&this.getStack){const t=new Map,o=new Map;for(const n of e){const e=this.getO(n),i=this.getR(n);0>i?o.set(e,(o.get(e)||0)+i):t.set(e,(t.get(e)||0)+i)}for(const e of t.values())e>u&&(u=e);for(const e of o.values())c>e&&(c=e)}else if("bar"===a){const t=new Map;for(const o of e){const e=this.getO(o),n=this.getR(o);t.set(e,(t.get(e)||0)+n)}for(const e of t.values())e>u&&(u=e),c>e&&(c=e)}else if("swimlane"===a){const t=new Map;for(const o of e){const e=this.getO(o),n=Math.abs(this.getR(o));t.set(e,(t.get(e)||0)+n)}for(const e of t.values())e>u&&(u=e)}else if("clusterbar"===a||"bar-funnel"===a)for(const t of e){const e=this.getR(t);e>u&&(u=e),c>e&&(c=e)}else{const e=this.rExtent.extent[0],t=this.rExtent.extent[1];e!==1/0&&(c=e),t!==-1/0&&(u=t)}this.config.rExtent&&(null!=this.config.rExtent[0]&&(c=this.config.rExtent[0]),null!=this.config.rExtent[1]&&(u=this.config.rExtent[1]));const d="bar"===a||"clusterbar"===a||"bar-funnel"===a||"swimlane"===a;if(d&&null==(null===(n=this.config.rExtent)||void 0===n?void 0:n[0])&&null==(null===(i=this.config.rExtent)||void 0===i?void 0:i[1])&&(c>0&&(c=0),0>u&&(u=0)),"bar-funnel"!==a){const e=u-c,t=e>0?e*l:1;null!=(null===(r=this.config.rExtent)||void 0===r?void 0:r[0])||d&&!this.config.baselinePadding&&0===c||(c-=t),null!=(null===(s=this.config.rExtent)||void 0===s?void 0:s[1])||d&&!this.config.baselinePadding&&0===u||"swimlane"===a||(u+=t)}return[c,u]}buildColumns(e,t,o,n,i){var r;const s={},a=new Map;for(const t of e){const e=this.getO(t);a.has(e)||a.set(e,[]),a.get(e).push(t)}let l=0;if("radial"===n)for(const t of e)l+=Math.abs(this.getR(t));const c=this.config.dynamicColumnWidth;let u=null;if(c&&"radial"!==n){u=new Map;let e=0;for(const o of t){const t=a.get(o)||[];let n;n="string"==typeof c?t.reduce((e,t)=>e+(Number(t[c])||0),0):c(t),u.set(o,n),e+=n}const r=("horizontal"===n?i.height:i.width)-o.padding()*o.step()*t.length;if(e>0)for(const[t,o]of u)u.set(t,o/e*r)}let d=0,h=0;for(const e of t){const t=a.get(e)||[],n=t.reduce((e,t)=>e+Math.abs(this.getR(t)),0),i=l>0?n/l:0;let c,g;u?(c=h,g=u.get(e)||o.bandwidth(),h+=g+o.padding()*o.step()):(c=null!==(r=o(e))&&void 0!==r?r:0,g=o.bandwidth()),s[e]={name:e,x:c,y:0,width:g,middle:c+g/2,padding:o.padding()*o.step(),pieceData:t,pct:i,pctStart:d},d+=i}return s}getSceneContext(){return{scales:this.scales,columns:this.columns,config:this.config,getR:this.getR,getStack:this.getStack,getGroup:this.getGroup,getColor:this.getColor,getConnector:this.getConnector,getO:this.getO,multiScales:this.multiScales,rAccessors:this.rAccessors,resolvePieceStyle:(e,t)=>this.resolvePieceStyle(e,t),resolveSummaryStyle:(e,t)=>this.resolveSummaryStyle(e,t),getRawRange:e=>this.getRawRange(e)}}buildSceneNodes(e,t){if(!this.scales)return[];const o=this.getSceneContext(),n=Fi[this.config.chartType];let i=n?n(o,t):[];if(this.getConnector&&this.scales){const e=function(e,t){var o,n;const{scales:i,config:r,getConnector:s,getO:a}=e;if(!s||!i)return[];const l=[],{projection:c}=i,u=new Map;for(const e of t){if("point"!==e.type&&"rect"!==e.type)continue;const t=e.datum;if(!t)continue;const o=s(t);if(!o)continue;let n,i;"point"===e.type?(n=e.x,i=e.y):(n=e.x+e.w/2,i=e.y+("vertical"===c?0:e.h/2)),u.has(o)||u.set(o,[]),u.get(o).push({x:n,y:i,datum:t,category:a(t)})}const d=i.o.domain(),h=r.connectorStyle;for(const[t,i]of u)if(i.length>=2){i.sort((e,t)=>d.indexOf(e.category)-d.indexOf(t.category));for(let r=0;i.length-1>r;r++){const s=i[r],a=i[r+1],c="function"==typeof h?h(s.datum):h||{stroke:(null===(o=e.config.themeSemantic)||void 0===o?void 0:o.border)||(null===(n=e.config.themeSemantic)||void 0===n?void 0:n.secondary)||"#999",strokeWidth:1,opacity:.5};l.push({type:"connector",x1:s.x,y1:s.y,x2:a.x,y2:a.y,style:c,datum:s.datum,group:t})}}return l}(o,i);i=[...e,...i]}return i}resolvePieceStyle(e,t){if("function"==typeof this.config.pieceStyle){const o=this.config.pieceStyle(e,t);return o&&!o.fill&&t?Object.assign(Object.assign({},o),{fill:this.getColorFromScheme(t)}):o}return this.config.pieceStyle&&"object"==typeof this.config.pieceStyle?this.config.pieceStyle:this.config.barColors&&t?{fill:this.config.barColors[t]||"#007bff"}:t?{fill:this.getColorFromScheme(t)}:{fill:"#007bff"}}getColorFromScheme(e){this._colorSchemeMap||(this._colorSchemeMap=new Map);const t=this._colorSchemeMap.get(e);if(t)return t;const o=Array.isArray(this.config.colorScheme)?this.config.colorScheme:this.config.themeCategorical||F,n=o[this._colorSchemeIndex%o.length];return this._colorSchemeIndex++,this._colorSchemeMap.set(e,n),n}resolveSummaryStyle(e,t){return"function"==typeof this.config.summaryStyle?this.config.summaryStyle(e,t):this.config.summaryStyle&&"object"==typeof this.config.summaryStyle?this.config.summaryStyle:{fill:"#007bff",fillOpacity:.6,stroke:"#007bff",strokeWidth:1}}computeDecayOpacity(e,t){const o=this.config.decay;return o&&t>1?X(o,e,t):1}getDatumIndexMap(e){if(this._datumIndexCache&&this._datumIndexCache.version===this._dataVersion)return this._datumIndexCache.map;const t=new Map;for(let o=0;e.length>o;o++)t.set(e[o],o);return this._datumIndexCache={version:this._dataVersion,map:t},t}getCategoryIndexMap(e){if(this._categoryIndexCache&&this._categoryIndexCache.version===this._dataVersion)return this._categoryIndexCache.map;const t=this.config.categoryAccessor||this.config.oAccessor,o="function"==typeof t,n=o?null:t||"category",i=new Map;for(let r=0;e.length>r;r++){const s=e[r],a=o?t(s):s[n];let l=i.get(a);l||(l=[],i.set(a,l)),l.push(r)}return this._categoryIndexCache={version:this._dataVersion,map:i},i}rebuildPointQuadtree(){let e=0,t=0;for(const o of this.scene)"point"===o.type&&(e++,o.r>t&&(t=o.r));if(this._maxPointRadius=t,$i.QUADTREE_THRESHOLD>=e)return void(this._pointQuadtree=null);const o=Array(e);let n=0;for(const e of this.scene)"point"===e.type&&(o[n++]=e);this._pointQuadtree=r.quadtree().x(e=>e.x).y(e=>e.y).addAll(o)}get pointQuadtree(){return this._pointQuadtree}get maxPointRadius(){return this._maxPointRadius}applyDecay(e,t){var o,n;if(!this.config.decay)return;const i=t.length;if(1>=i)return;const r=this.getDatumIndexMap(t);for(const t of e){if("connector"===t.type||"violin"===t.type||"boxplot"===t.type||"wedge"===t.type)continue;const e=r.get(t.datum);if(null==e)continue;const s=this.computeDecayOpacity(e,i),a=null!==(n=null===(o=t.style)||void 0===o?void 0:o.opacity)&&void 0!==n?n:1;t.style=Object.assign(Object.assign({},t.style),{opacity:a*s})}}applyPulse(e,t){var o,n,i;if(!this.config.pulse||!this.timestampBuffer)return;const r="undefined"!=typeof performance?performance.now():Date.now(),s=null!==(o=this.config.pulse.duration)&&void 0!==o?o:500,a=null!==(n=this.config.pulse.color)&&void 0!==n?n:"rgba(255,255,255,0.6)",l=null!==(i=this.config.pulse.glowRadius)&&void 0!==i?i:4,c=this.getDatumIndexMap(t);let u=null;for(const o of e){if("connector"===o.type||"violin"===o.type||"boxplot"===o.type)continue;if("wedge"===o.type){const e=o.category;if(!e)continue;u||(u=this.getCategoryIndexMap(t));const n=u.get(e);if(!n)continue;let i=0;for(let e=0;n.length>e;e++){const t=this.timestampBuffer.get(n[e]);if(null==t)continue;const o=r-t;if(s>o){const e=1-o/s;e>i&&(i=e)}}i>0&&(o._pulseIntensity=i,o._pulseColor=a);continue}const e=c.get(o.datum);if(null==e)continue;const n=this.timestampBuffer.get(e);if(null==n)continue;const i=r-n;s>i&&(o._pulseIntensity=1-i/s,o._pulseColor=a,o._pulseGlowRadius=l)}}get hasActivePulses(){var e;if(!this.config.pulse||!this.timestampBuffer||0===this.timestampBuffer.size)return!1;const t="undefined"!=typeof performance?performance.now():Date.now(),o=null!==(e=this.config.pulse.duration)&&void 0!==e?e:500,n=this.timestampBuffer.peek();return null!=n&&o>t-n}synthesizeIntroPositions(){var e,t,o,n,i;this.prevPositionMap.clear();const r=new Map,s=null!==(t=null===(e=this.scales)||void 0===e?void 0:e.r(0))&&void 0!==t?t:0,a="horizontal"!==(null===(o=this.scales)||void 0===o?void 0:o.projection);let l;for(let e=0;this.scene.length>e;e++){const t=this.scene[e],o=this.getNodeKey(t,r);o&&("rect"===t.type?this.prevPositionMap.set(o,a?{x:t.x,y:s,w:t.w,h:0,opacity:null!==(n=t.style.opacity)&&void 0!==n?n:1}:{x:s,y:t.y,w:0,h:t.h,opacity:null!==(i=t.style.opacity)&&void 0!==i?i:1}):"point"===t.type?this.prevPositionMap.set(o,{x:t.x,y:t.y,r:0,opacity:0}):"wedge"===t.type&&(void 0===l&&(l=t.startAngle),this.prevPositionMap.set(o,{x:t.cx,y:t.cy,startAngle:l,endAngle:l,innerRadius:t.innerRadius,outerRadius:t.outerRadius,opacity:0})))}}getNodeKey(e,t){var o,n,i;if("point"===e.type){const o=`p:${e.datum?this.getO(e.datum):""}:${e.datum?this.getR(e.datum):0}`,n=t.get(o)||0;return t.set(o,n+1),`${o}:${n}`}return"rect"===e.type?`r:${e.group||""}:${null!==(n=null===(o=e.datum)||void 0===o?void 0:o.category)&&void 0!==n?n:""}`:"wedge"===e.type?"w:"+(null!==(i=e.category)&&void 0!==i?i:""):null}snapshotPositions(){var e;this.prevPositionMap.clear();const t=new Map;for(let o=0;this.scene.length>o;o++){const n=this.scene[o],i=this.getNodeKey(n,t);i&&("point"===n.type?this.prevPositionMap.set(i,{x:n.x,y:n.y,r:n.r,opacity:n.style.opacity}):"rect"===n.type?this.prevPositionMap.set(i,{x:n.x,y:n.y,w:n.w,h:n.h,opacity:n.style.opacity}):"wedge"===n.type&&this.prevPositionMap.set(i,{x:n.cx,y:n.cy,startAngle:n.startAngle,endAngle:n.endAngle,innerRadius:n.innerRadius,outerRadius:n.outerRadius,opacity:null!==(e=n.style.opacity)&&void 0!==e?e:1}))}}startTransition(){var e,t,o,n,i,r,s,a,l,c,u,d,h,g,f,p,y,v,m,b,x;if(!this.config.transition||0===this.prevPositionMap.size)return;const k=null!==(e=this.config.transition.duration)&&void 0!==e?e:300;if(this.exitNodes.length>0){const e=new Set(this.exitNodes);this.scene=this.scene.filter(t=>!e.has(t)),this.exitNodes=[]}let w=!1;const j=new Set,A=new Map;for(let e=0;this.scene.length>e;e++){const c=this.scene[e],u=this.getNodeKey(c,A);if(!u)continue;c._transitionKey=u;const d=this.prevPositionMap.get(u);if("point"===c.type)d?(j.add(u),c._targetOpacity=null!==(t=c.style.opacity)&&void 0!==t?t:1,(d.x!==c.x||d.y!==c.y||void 0!==d.r&&d.r!==c.r)&&(c._targetX=c.x,c._targetY=c.y,c._targetR=c.r,c.x=d.x,c.y=d.y,void 0!==d.r&&(c.r=d.r),w=!0)):(c._targetOpacity=null!==(o=c.style.opacity)&&void 0!==o?o:1,c._targetR=c.r,c.r=0,c.style=Object.assign(Object.assign({},c.style),{opacity:0}),w=!0);else if("rect"===c.type)d?(j.add(u),c._targetOpacity=null!==(n=c.style.opacity)&&void 0!==n?n:1,d.x===c.x&&d.y===c.y&&d.w===c.w&&d.h===c.h||(c._targetX=c.x,c._targetY=c.y,c._targetW=c.w,c._targetH=c.h,c.x=d.x,c.y=d.y,c.w=null!==(i=d.w)&&void 0!==i?i:c.w,c.h=null!==(r=d.h)&&void 0!==r?r:c.h,w=!0)):(c._targetOpacity=null!==(s=c.style.opacity)&&void 0!==s?s:1,c.style=Object.assign(Object.assign({},c.style),{opacity:0}),w=!0);else if("wedge"===c.type)if(d)j.add(u),c._targetOpacity=null!==(a=c.style.opacity)&&void 0!==a?a:1,d.startAngle===c.startAngle&&d.endAngle===c.endAngle||(c._targetStartAngle=c.startAngle,c._targetEndAngle=c.endAngle,c.startAngle=d.startAngle,c.endAngle=d.endAngle,w=!0);else{c._targetOpacity=null!==(l=c.style.opacity)&&void 0!==l?l:1,c._targetStartAngle=c.startAngle,c._targetEndAngle=c.endAngle;const e=c.startAngle;c.startAngle=e,c.endAngle=e,c.style=Object.assign(Object.assign({},c.style),{opacity:0}),this.prevPositionMap.set(u,{x:c.cx,y:c.cy,startAngle:e,endAngle:e,innerRadius:c.innerRadius,outerRadius:c.outerRadius,opacity:0}),w=!0}}this.exitNodes=[];for(const[e,t]of this.prevPositionMap)if(!j.has(e)){if(e.startsWith("p:"))this.exitNodes.push({type:"point",x:t.x,y:t.y,r:null!==(c=t.r)&&void 0!==c?c:3,style:{opacity:null!==(u=t.opacity)&&void 0!==u?u:1},datum:null,_targetOpacity:0,_transitionKey:e});else if(e.startsWith("r:"))this.exitNodes.push({type:"rect",x:t.x,y:t.y,w:null!==(d=t.w)&&void 0!==d?d:0,h:null!==(h=t.h)&&void 0!==h?h:0,style:{opacity:null!==(g=t.opacity)&&void 0!==g?g:1,fill:"#999"},datum:null,_targetOpacity:0,_transitionKey:e});else if(e.startsWith("w:")){const o=((null!==(f=t.startAngle)&&void 0!==f?f:0)+(null!==(p=t.endAngle)&&void 0!==p?p:0))/2;this.exitNodes.push({type:"wedge",cx:t.x,cy:t.y,innerRadius:null!==(y=t.innerRadius)&&void 0!==y?y:0,outerRadius:null!==(v=t.outerRadius)&&void 0!==v?v:100,startAngle:null!==(m=t.startAngle)&&void 0!==m?m:0,endAngle:null!==(b=t.endAngle)&&void 0!==b?b:0,style:{opacity:null!==(x=t.opacity)&&void 0!==x?x:1},datum:null,category:e.slice(2),_targetStartAngle:o,_targetEndAngle:o,_targetOpacity:0,_transitionKey:e})}w=!0}this.exitNodes.length>0&&(this.scene=[...this.scene,...this.exitNodes]),w&&(this.activeTransition={startTime:Z(),duration:k})}advanceTransition(e){var t,o,n,i;if(!this.activeTransition)return!1;const r=K(e,this.activeTransition),s=U(r,"linear"===(null===(t=this.config.transition)||void 0===t?void 0:t.easing)?"linear":"ease-out-cubic");for(const e of this.scene){const t=e._transitionKey;if(t)if("point"===e.type){if(void 0!==e._targetOpacity){const n=this.prevPositionMap.get(t),i=n?null!==(o=n.opacity)&&void 0!==o?o:1:0;e.style.opacity=Q(i,e._targetOpacity,s)}const n=this.prevPositionMap.get(t);void 0!==e._targetX&&n&&(e.x=Q(n.x,e._targetX,s),e.y=Q(n.y,e._targetY,s)),void 0!==e._targetR&&void 0!==(null==n?void 0:n.r)&&(e.r=Q(n.r,e._targetR,s))}else if("rect"===e.type){if(void 0!==e._targetOpacity){const o=this.prevPositionMap.get(t),i=o?null!==(n=o.opacity)&&void 0!==n?n:1:0;e.style.opacity=Q(i,e._targetOpacity,s)}if(void 0===e._targetX)continue;const o=this.prevPositionMap.get(t);if(!o)continue;e.x=Q(o.x,e._targetX,s),e.y=Q(o.y,e._targetY,s),void 0!==o.w&&(e.w=Q(o.w,e._targetW,s),e.h=Q(o.h,e._targetH,s))}else if("wedge"===e.type){if(void 0!==e._targetOpacity){const o=this.prevPositionMap.get(t),n=o?null!==(i=o.opacity)&&void 0!==i?i:1:0;e.style=Object.assign(Object.assign({},e.style),{opacity:Q(n,e._targetOpacity,s)})}if(void 0!==e._targetStartAngle&&void 0!==e._targetEndAngle){const o=this.prevPositionMap.get(t);o&&void 0!==o.startAngle&&(e.startAngle=Q(o.startAngle,e._targetStartAngle,s),e.endAngle=Q(o.endAngle,e._targetEndAngle,s))}}}if(r>=1){for(const e of this.scene)if(void 0!==e._targetOpacity&&(e.style=Object.assign(Object.assign({},e.style||{}),{opacity:0===e._targetOpacity?0:e._targetOpacity}),e._targetOpacity=void 0),"point"===e.type){if(void 0===e._targetX&&void 0===e._targetR)continue;void 0!==e._targetX&&(e.x=e._targetX,e.y=e._targetY),void 0!==e._targetR&&(e.r=e._targetR),e._targetX=void 0,e._targetY=void 0,e._targetR=void 0}else if("rect"===e.type){if(void 0===e._targetX)continue;e.x=e._targetX,e.y=e._targetY,e.w=e._targetW,e.h=e._targetH,e._targetX=void 0,e._targetY=void 0,e._targetW=void 0,e._targetH=void 0}else"wedge"===e.type&&void 0!==e._targetStartAngle&&(e.startAngle=e._targetStartAngle,e.endAngle=e._targetEndAngle,e._targetStartAngle=void 0,e._targetEndAngle=void 0);if(this.exitNodes.length>0){const e=new Set(this.exitNodes);this.scene=this.scene.filter(t=>!e.has(t)),this.exitNodes=[]}return this.activeTransition=null,!1}return!0}getData(){return this.buffer.toArray()}remove(e){if(!this.getDataId)throw Error("remove() requires dataIdAccessor to be configured");this.config.transition&&this.scene.length>0&&this.snapshotPositions();const t=new Set(Array.isArray(e)?e:[e]),o=this.getDataId,n=e=>t.has(o(e));if(this.timestampBuffer&&this.timestampBuffer.size>0){const e=this.timestampBuffer.toArray(),t=new Set;this.buffer.forEach((e,o)=>{n(e)&&t.add(o)}),this.timestampBuffer.clear();for(let o=0;e.length>o;o++)t.has(o)||this.timestampBuffer.push(e[o])}const i=this.buffer.remove(n);if(0===i.length)return i;for(const e of i)this.evictValueExtent(e);return this.categories.clear(),this.buffer.forEach(e=>this.categories.add(this.getO(e))),this._dataVersion++,this.version++,i}update(e,t){if(!this.getDataId)throw Error("update() requires dataIdAccessor to be configured");const o=new Set(Array.isArray(e)?e:[e]),n=this.getDataId,i=new Set;this.buffer.forEach((e,t)=>{o.has(n(e))&&i.add(t)});const r=this.buffer.update(e=>o.has(n(e)),t);if(0===r.length)return r;for(const e of r)this.evictValueExtent(e);return this.categories.clear(),this.buffer.forEach((e,t)=>{this.categories.add(this.getO(e)),i.has(t)&&this.pushValueExtent(e)}),this._dataVersion++,this.version++,r}clear(){this.buffer.clear(),this.rExtent.clear(),this.categories.clear(),this._hasStreamingData=!1,this._hasRenderedOnce=!1,this.timestampBuffer&&this.timestampBuffer.clear(),this.prevPositionMap.clear(),this.exitNodes=[],this.activeTransition=null,this.lastIngestTime=0,this.scales=null,this.scene=[],this.columns={},this._pointQuadtree=null,this._maxPointRadius=0,this._dataVersion++,this.version++}get size(){return this.buffer.size}getOAccessor(){return this.getO}getRAccessor(){return this.getR}updateConfig(e){const t=Object.assign({},this.config);if(("colorScheme"in e&&e.colorScheme!==t.colorScheme||"themeCategorical"in e&&e.themeCategorical!==t.themeCategorical||"colorAccessor"in e&&!D(e.colorAccessor,t.colorAccessor))&&(this._colorSchemeMap=null,this._colorSchemeIndex=0),("categoryAccessor"in e&&!D(e.categoryAccessor,t.categoryAccessor)||"oAccessor"in e&&!D(e.oAccessor,t.oAccessor))&&(this._categoryIndexCache=null),Object.assign(this.config,e),("categoryAccessor"in e||"oAccessor"in e)&&(D(e.categoryAccessor||e.oAccessor,t.categoryAccessor||t.oAccessor)||(this.getO=H(this.config.categoryAccessor||this.config.oAccessor,"category"),this.categories.clear())),"valueAccessor"in e||"rAccessor"in e){const o=e.valueAccessor||e.rAccessor,n=t.valueAccessor||t.rAccessor,i=Array.isArray(o)?o:[o],r=Array.isArray(n)?n:[n];if(i.length!==r.length||i.some((e,t)=>!D(e,r[t]))){const e=this.config.valueAccessor||this.config.rAccessor;Array.isArray(e)?(this.rAccessors=e.map(e=>I(e,"value")),this.getR=this.rAccessors[0],this.rExtents=e.map(()=>new R)):(this.getR=I(e,"value"),this.rAccessors=[this.getR],this.rExtents=[this.rExtent])}}"stackBy"in e&&!D(e.stackBy,t.stackBy)&&(this.getStack=null!=this.config.stackBy?H(this.config.stackBy):void 0),"groupBy"in e&&!D(e.groupBy,t.groupBy)&&(this.getGroup=null!=this.config.groupBy?H(this.config.groupBy):void 0),"colorAccessor"in e&&!D(e.colorAccessor,t.colorAccessor)&&(this.getColor=null!=this.config.colorAccessor?H(this.config.colorAccessor):void 0),"connectorAccessor"in e&&!D(e.connectorAccessor,t.connectorAccessor)&&(this.getConnector=null!=this.config.connectorAccessor?H(this.config.connectorAccessor):void 0)}}function zi(e,t,o){const n=ue(t,o,e);return n.hit?{datum:e.datum,x:n.cx,y:e.y,distance:0,category:e.group}:null}function Yi(e,t,o,n=30){const i=t-e.x,r=o-e.y,s=Math.sqrt(i*i+r*r);return s>de(e.r,n)?null:{datum:e.datum,x:e.x,y:e.y,distance:s}}function Gi(e,t,o){const n=t-e.cx,i=o-e.cy,r=Math.sqrt(n*n+i*i);if(e.innerRadius>r||r>e.outerRadius)return null;const s=fe(Math.atan2(i,n)),a=fe(e.startAngle),l=fe(e.endAngle);if(!(a>l?s>=a||l>=s:s>=a&&l>=s))return null;const c=(e.startAngle+e.endAngle)/2,u=(e.innerRadius+e.outerRadius)/2;return{datum:e.datum,x:e.cx+Math.cos(c)*u,y:e.cy+Math.sin(c)*u,distance:0,category:e.category}}function qi(e,t,o){const n=e.columnWidth/2;if("vertical"===e.projection){if(!(e.x-n>t||t>e.x+n||Math.min(e.minPos,e.maxPos)>o||o>Math.max(e.minPos,e.maxPos)))return{datum:e.datum,x:e.x,y:e.medianPos,distance:0,category:e.category,stats:e.stats}}else{const i=e.y-n,r=e.y+n;if(!(Math.min(e.minPos,e.maxPos)>t||t>Math.max(e.minPos,e.maxPos)||i>o||o>r))return{datum:e.datum,x:e.medianPos,y:e.y,distance:0,category:e.category,stats:e.stats}}return null}function Xi(e,t,o){if(!e.bounds)return null;const{x:n,y:i,width:r,height:s}=e.bounds;return n>t||t>n+r||i>o||o>i+s?null:{datum:e.datum,x:n+r/2,y:i+s/2,distance:0,category:e.category,stats:e.stats}}function Vi(o){const{width:n,height:i,totalWidth:r,totalHeight:s,margin:a,scales:l,showAxes:c,showGrid:u,rFormat:d}=o,{rTickValues:h}=o,g="radial"===(null==l?void 0:l.projection),f="horizontal"===(null==l?void 0:l.projection),p=t.useMemo(()=>!l||g?[]:(h||l.r.ticks(5)).map(e=>({value:e,pixel:l.r(e),label:(d||Ui)(e)})),[l,d,g,h]),y=u&&l&&!g,v=c&&l&&!g;return y||v?e.jsx("svg",{width:r,height:s,overflow:"visible",style:{position:"absolute",top:0,left:0,pointerEvents:"none",overflow:"visible"},children:e.jsxs("g",{transform:`translate(${a.left},${a.top})`,children:[y&&e.jsx("g",{className:"ordinal-grid",children:p.map((t,o)=>e.jsx("line",{x1:f?t.pixel:0,y1:f?0:t.pixel,x2:f?t.pixel:n,y2:f?i:t.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1},"grid-"+o))}),v&&e.jsx(e.Fragment,{children:e.jsxs(e.Fragment,f?{children:[e.jsx("line",{x1:0,y1:0,x2:0,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),e.jsx("line",{x1:0,y1:i,x2:n,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1})]}:{children:[e.jsx("line",{x1:0,y1:i,x2:n,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),e.jsx("line",{x1:0,y1:0,x2:0,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1})]})})]})}):null}function Ui(e){return Math.round(100*e)/100+""}function Ki(o){var n,i;const{width:r,height:s,totalWidth:a,totalHeight:l,margin:c,scales:u,showAxes:d,showCategoryTicks:h,oLabel:g,rLabel:f,oFormat:p,rFormat:y,showGrid:v,title:m,legend:b,legendHoverBehavior:x,legendClickBehavior:k,legendHighlightedCategory:w,legendIsolatedCategories:j,legendPosition:A="right",foregroundGraphics:S,annotations:O,svgAnnotationRules:M,xAccessor:C,yAccessor:_,annotationData:P,underlayRendered:L,children:T}=o,R="radial"===(null==u?void 0:u.projection),B="horizontal"===(null==u?void 0:u.projection),D=!1!==h,I=t.useMemo(()=>d&&D&&u&&!R?u.o.domain().map((e,t)=>{var o;return{value:e,pixel:(null!==(o=u.o(e))&&void 0!==o?o:0)+u.o.bandwidth()/2,label:p?p(e,t):e}}):[],[d,D,u,p,R]),N=o.rTickValues,H=o.tickLabelEdgeAlign,W=t.useMemo(()=>d&&u&&!R?(N||u.r.ticks(5)).map(e=>({value:e,pixel:u.r(e),label:(y||Ui)(e)})):[],[d,u,y,R,N]),E=t.useRef(new Map),F=t.useRef(null!==(n=null==O?void 0:O.length)&&void 0!==n?n:0),$=null!==(i=null==O?void 0:O.length)&&void 0!==i?i:0;F.current!==$&&(F.current=$,E.current=new Map);const z=t.useMemo(()=>{if(!O||0===O.length)return null;const e=ot(),t="horizontal"===(null==u?void 0:u.projection),o=(null==u?void 0:u.o)?e=>{var t;return(null!==(t=u.o(e))&&void 0!==t?t:0)+u.o.bandwidth()/2}:null,n={scales:u?{x:t?u.r:o||u.r,y:t&&o||u.r,time:u.r,value:u.r,o:u.o}:null,timeAxis:"x",xAccessor:C,yAccessor:_,width:r,height:s,data:P,frameType:"ordinal",projection:t?"horizontal":"vertical",stickyPositionCache:E.current};return O.map((t,o)=>{if(M){const i=M(t,o,n);return null!=i?i:e(t,o,n)}return e(t,o,n)}).filter(Boolean)},[O,M,r,s,u,C,_,P]);return d||m||b||S||z&&z.length>0||v||T?e.jsxs("svg",{role:"img",width:a,height:l,overflow:"visible",style:{position:"absolute",top:0,left:0,pointerEvents:"none",overflow:"visible"},children:[e.jsx("title",{children:"string"==typeof m?m:"Ordinal Chart"}),e.jsx("desc",{children:"string"==typeof m?m+" — ordinal data visualization":"Ordinal data visualization"}),e.jsxs("g",{transform:`translate(${c.left},${c.top})`,children:[v&&u&&!R&&!L&&e.jsx("g",{className:"ordinal-grid",children:W.map((t,o)=>e.jsx("line",{x1:B?t.pixel:0,y1:B?0:t.pixel,x2:B?t.pixel:r,y2:B?s:t.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1},"grid-"+o))}),d&&u&&!R&&e.jsx("g",{className:"ordinal-axes",children:e.jsxs(e.Fragment,B?{children:[!L&&e.jsx("line",{x1:0,y1:0,x2:0,y2:s,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),I.map((t,o)=>e.jsxs("g",{transform:`translate(0,${t.pixel})`,children:[e.jsx("line",{x2:-5,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),"string"==typeof t.label||"number"==typeof t.label?e.jsx("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{userSelect:"none"},children:t.label}):e.jsx("foreignObject",{x:-68,y:-12,width:60,height:24,style:{overflow:"visible"},children:e.jsx("div",{style:{textAlign:"right",fontSize:10,userSelect:"none"},children:t.label})})]},"cat-"+o)),g&&e.jsx("text",{x:15-c.left,y:s/2,textAnchor:"middle",fontSize:12,fill:"var(--semiotic-text, #333)",transform:`rotate(-90, ${15-c.left}, ${s/2})`,style:{userSelect:"none"},children:g}),!L&&e.jsx("line",{x1:0,y1:s,x2:r,y2:s,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),!L&&(null==u?void 0:u.r)&&(()=>{const t=u.r(0);return t>1&&r-1>t?e.jsx("line",{x1:t,y1:0,x2:t,y2:s,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1,strokeDasharray:"4,4"}):null})(),W.map((t,o)=>{const n=H?0===o?"start":o===W.length-1?"end":"middle":"middle";return e.jsxs("g",{transform:`translate(${t.pixel},${s})`,children:[e.jsx("line",{y2:5,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),e.jsx("text",{y:18,textAnchor:n,fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{userSelect:"none"},children:t.label})]},"val-"+o)}),f&&e.jsx("text",{x:r/2,y:s+40,textAnchor:"middle",fontSize:12,fill:"var(--semiotic-text, #333)",style:{userSelect:"none"},children:f})]}:{children:[!L&&(()=>{const t=(null==u?void 0:u.r)?u.r(0):s,o=0>t||t>s?s:t;return e.jsx("line",{x1:0,y1:o,x2:r,y2:o,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1})})(),I.map((t,o)=>e.jsxs("g",{transform:`translate(${t.pixel},${s})`,children:[e.jsx("line",{y2:5,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),"string"==typeof t.label||"number"==typeof t.label?e.jsx("text",{y:18,textAnchor:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{userSelect:"none"},children:t.label}):e.jsx("foreignObject",{x:-30,y:6,width:60,height:24,style:{overflow:"visible"},children:e.jsx("div",{style:{textAlign:"center",fontSize:10,userSelect:"none"},children:t.label})})]},"cat-"+o)),g&&e.jsx("text",{x:r/2,y:s+40,textAnchor:"middle",fontSize:12,fill:"var(--semiotic-text, #333)",style:{userSelect:"none"},children:g}),!L&&e.jsx("line",{x1:0,y1:0,x2:0,y2:s,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),W.map((t,o)=>e.jsxs("g",{transform:`translate(0,${t.pixel})`,children:[e.jsx("line",{x2:-5,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),e.jsx("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{userSelect:"none"},children:t.label})]},"val-"+o)),f&&e.jsx("text",{x:15-c.left,y:s/2,textAnchor:"middle",fontSize:12,fill:"var(--semiotic-text, #333)",transform:`rotate(-90, ${15-c.left}, ${s/2})`,style:{userSelect:"none"},children:f})]})}),z,S,T]}),m&&e.jsx("text",{x:a/2,y:20,textAnchor:"middle",fontSize:14,fontWeight:"bold",fill:"var(--semiotic-text, #333)",style:{userSelect:"none"},children:"string"==typeof m?m:null}),Fe({legend:b,totalWidth:a,totalHeight:l,margin:c,legendPosition:A,title:m,legendHoverBehavior:x,legendClickBehavior:k,legendHighlightedCategory:w,legendIsolatedCategories:j})]}):null}function Qi({width:i,height:r,totalWidth:s,totalHeight:a,margin:l,scales:c,onBrush:u}){const d=t.useRef(null),h=t.useRef(null),g=t.useRef(u);g.current=u;const f=t.useRef(c);f.current=c;const p=t.useRef(!1),y=t.useRef(null),v="horizontal"===(null==c?void 0:c.projection),m=t.useRef(v);return m.current=v,t.useEffect(()=>{if(!d.current)return;const e=o.select(d.current).select(".brush-g"),t=v?n.brushX():n.brushY();return t.extent([[0,0],[i,r]]),t.on("brush end",e=>{if(p.current)return;const t=f.current;if(!t)return;if(!e.selection)return y.current=null,void g.current(null);const[o,n]=e.selection;let i;i=m.current?[t.r.invert(o),t.r.invert(n)]:[t.r.invert(n),t.r.invert(o)];const r={r:i};y.current=r,g.current(r)}),e.call(t),h.current=t,e.select(".selection").attr("fill","steelblue").attr("fill-opacity",.15).attr("stroke","steelblue").attr("stroke-width",1),()=>{t.on("brush end",null),h.current=null}},[i,r,v]),t.useEffect(()=>{if(!c||!h.current||!y.current)return;if(!d.current)return;const e=y.current,t=o.select(d.current).select(".brush-g"),n=c.r(e.r[0]),i=c.r(e.r[1]);v?(p.current=!0,t.call(h.current.move,[n,i]),p.current=!1):(p.current=!0,t.call(h.current.move,[i,n]),p.current=!1)},[c,v]),e.jsx("svg",{ref:d,width:s,height:a,style:{position:"absolute",top:0,left:0,pointerEvents:"none"},children:e.jsx("g",{className:"brush-g",transform:`translate(${l.left},${l.top})`,style:{pointerEvents:"all"}})})}function Zi(e,t){e.beginPath(),t.innerRadius>0?(e.arc(t.cx,t.cy,t.outerRadius,t.startAngle,t.endAngle),e.arc(t.cx,t.cy,t.innerRadius,t.endAngle,t.startAngle,!0)):(e.moveTo(t.cx,t.cy),e.arc(t.cx,t.cy,t.outerRadius,t.startAngle,t.endAngle)),e.closePath()}function Ji(e,t){const o=c.arc().innerRadius(t.innerRadius).outerRadius(t.outerRadius).startAngle(t.startAngle+Math.PI/2).endAngle(t.endAngle+Math.PI/2).cornerRadius(t.cornerRadius)({});if(!o)return;e.save(),e.translate(t.cx,t.cy);const n=new Path2D(o);e.fill(n),t.style.stroke&&"none"!==t.style.stroke&&e.stroke(n),e.restore()}$i.QUADTREE_THRESHOLD=500;const er=(e,t,o,n)=>{var i,r;const s=t.filter(e=>"wedge"===e.type);for(const t of s){const o=null!==(i=t.style.fillOpacity)&&void 0!==i?i:1,n=null!==(r=t.style.opacity)&&void 0!==r?r:1;e.globalAlpha=o*n,e.fillStyle=("string"==typeof t.style.fill?Zt(e,t.style.fill):t.style.fill)||"#007bff",t.cornerRadius?(t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1),Ji(e,t)):(Zi(e,t),e.fill(),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke())),t._pulseIntensity&&t._pulseIntensity>0&&(Zi(e,t),ho(e,t)),e.globalAlpha=1}},tr=(e,t,o,n)=>{var i,r;const s=t.filter(e=>"violin"===e.type);for(const t of s){e.save(),(t.translateX||t.translateY)&&e.translate(t.translateX,t.translateY);const o=new Path2D(t.pathString);if(e.globalAlpha=null!==(r=null!==(i=t.style.fillOpacity)&&void 0!==i?i:t.style.opacity)&&void 0!==r?r:.6,e.fillStyle=("string"==typeof t.style.fill?Zt(e,t.style.fill):t.style.fill)||"#007bff",e.fill(o),e.globalAlpha=1,t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke(o)),t.iqrLine){e.strokeStyle="#333",e.lineWidth=2,e.globalAlpha=.8;const o=t.iqrLine.centerPos,n=!1!==t.iqrLine.isVertical;e.beginPath(),n?(e.moveTo(o,t.iqrLine.q1Pos),e.lineTo(o,t.iqrLine.q3Pos)):(e.moveTo(t.iqrLine.q1Pos,o),e.lineTo(t.iqrLine.q3Pos,o)),e.stroke(),e.beginPath(),n?e.arc(o,t.iqrLine.medianPos,3,0,2*Math.PI):e.arc(t.iqrLine.medianPos,o,3,0,2*Math.PI),e.fillStyle="#fff",e.fill(),e.strokeStyle="#333",e.lineWidth=1,e.stroke(),e.globalAlpha=1}e.restore()}},or=(e,t,o,n)=>{var i,r,s;const a=t.filter(e=>"connector"===e.type);if(0===a.length)return;const l=new Map;for(const e of a){const t=e.group||"_default";l.has(t)||l.set(t,[]),l.get(t).push(e)}for(const[,t]of l){if(0===t.length)continue;const o=t[0].style;if(o.fill&&"none"!==o.fill){e.beginPath(),e.moveTo(t[0].x1,t[0].y1);for(const o of t)e.lineTo(o.x2,o.y2);e.closePath(),e.globalAlpha=null!==(r=null!==(i=o.fillOpacity)&&void 0!==i?i:o.opacity)&&void 0!==r?r:.3,e.fillStyle=o.fill,e.fill(),e.globalAlpha=1}for(const o of t)e.beginPath(),e.moveTo(o.x1,o.y1),e.lineTo(o.x2,o.y2),e.strokeStyle=Zt(e,o.style.stroke)||("string"==typeof o.style.fill?Zt(e,o.style.fill):o.style.fill)||Zt(e,"var(--semiotic-border, #999)"),e.lineWidth=o.style.strokeWidth||1,e.globalAlpha=null!==(s=o.style.opacity)&&void 0!==s?s:.5,e.stroke(),e.globalAlpha=1}};function nr(e){return 1e6>e?1e4>e?1e3>e?e+"":(e/1e3).toFixed(1)+"K":(e/1e3).toFixed(0)+"K":(e/1e6).toFixed(1)+"M"}function ir(e){return.05>Math.abs(e-Math.round(e))?Math.round(e)+"%":e.toFixed(1)+"%"}let rr=null;const sr=new Map;function ar(e,t){const o=`${e}@${"undefined"!=typeof window&&window.devicePixelRatio||1}`,n=sr.get(o);if(void 0!==n)return n;const i=function(e={},t){const{background:o="transparent",stroke:n="#000",lineWidth:i=1.5,spacing:r=6,angle:s=45}=e,a=Math.max(8,Math.ceil(2*r));let l;try{l=function(e){return"undefined"!=typeof OffscreenCanvas?new OffscreenCanvas(e,e):(rr||(rr=document.createElement("canvas")),rr.width=e,rr.height=e,rr)}(a)}catch(e){return null}const c=l.getContext("2d");if(!c)return null;o&&"transparent"!==o?(c.fillStyle=o,c.fillRect(0,0,a,a)):c.clearRect(0,0,a,a),c.strokeStyle=n,c.lineWidth=i,c.lineCap="square";const u=s*Math.PI/180;if(45===s||-45===s){const e=s>0?1:-1;for(let t=-a;2*a>=t;t+=r)c.beginPath(),c.moveTo(t,0),c.lineTo(t+e*a,a),c.stroke()}else{c.save(),c.translate(a/2,a/2),c.rotate(u);const e=2*a;for(let t=-e;e>=t;t+=r)c.beginPath(),c.moveTo(-e,t),c.lineTo(e,t),c.stroke();c.restore()}return(t||c).createPattern(l,"repeat")}({background:e,stroke:"rgba(255,255,255,0.5)",lineWidth:1.5,spacing:6,angle:45},t);return sr.set(o,i),i}function lr(e,t,o,n,i,r){e.moveTo(t+r,o),e.lineTo(t+n-r,o),e.quadraticCurveTo(t+n,o,t+n,o+r),e.lineTo(t+n,o+i-r),e.quadraticCurveTo(t+n,o+i,t+n-r,o+i),e.lineTo(t+r,o+i),e.quadraticCurveTo(t,o+i,t,o+i-r),e.lineTo(t,o+r),e.quadraticCurveTo(t,o,t+r,o),e.closePath()}function cr(e){return 1e6>e?1e4>e?1e3>e?Math.round(e)+"":(e/1e3).toFixed(1)+"K":(e/1e3).toFixed(0)+"K":(e/1e6).toFixed(1)+"M"}function ur(e){return.05>Math.abs(e-Math.round(e))?Math.round(e)+"%":e.toFixed(1)+"%"}const dr=e=>[or,...e],hr={bar:dr([mo]),clusterbar:dr([mo]),point:dr([yo]),swarm:dr([yo]),pie:[er],donut:[er],boxplot:dr([(e,t,o,n)=>{var i,r;const s=t.filter(e=>"boxplot"===e.type);for(const t of s){const o=t.columnWidth/2,n="vertical"===t.projection,s=Zt(e,"var(--semiotic-primary, #007bff)"),a=Zt(e,"var(--semiotic-text, #333)"),l=t.style.fill,c="string"==typeof l?Zt(e,l)||l:null!=l?l:s,u=t.style.stroke,d="string"==typeof u?Zt(e,u)||u:a,h=t.style.strokeWidth||1,g=null!==(r=null!==(i=t.style.fillOpacity)&&void 0!==i?i:t.style.opacity)&&void 0!==r?r:.6;if(e.save(),e.strokeStyle=d,e.lineWidth=h,e.beginPath(),n?(e.moveTo(t.x,t.minPos),e.lineTo(t.x,t.maxPos)):(e.moveTo(t.minPos,t.y),e.lineTo(t.maxPos,t.y)),e.stroke(),e.beginPath(),n?(e.moveTo(t.x-.4*o,t.minPos),e.lineTo(t.x+.4*o,t.minPos),e.moveTo(t.x-.4*o,t.maxPos),e.lineTo(t.x+.4*o,t.maxPos)):(e.moveTo(t.minPos,t.y-.4*o),e.lineTo(t.minPos,t.y+.4*o),e.moveTo(t.maxPos,t.y-.4*o),e.lineTo(t.maxPos,t.y+.4*o)),e.stroke(),e.globalAlpha=g,e.fillStyle=c,n){const n=Math.min(t.q1Pos,t.q3Pos),i=Math.abs(t.q3Pos-t.q1Pos);e.fillRect(t.x-o,n,t.columnWidth,i),e.globalAlpha=1,e.strokeRect(t.x-o,n,t.columnWidth,i)}else{const n=Math.min(t.q1Pos,t.q3Pos),i=Math.abs(t.q3Pos-t.q1Pos);e.fillRect(n,t.y-o,i,t.columnWidth),e.globalAlpha=1,e.strokeRect(n,t.y-o,i,t.columnWidth)}e.strokeStyle="#fff",e.lineWidth=2,e.beginPath(),n?(e.moveTo(t.x-o,t.medianPos),e.lineTo(t.x+o,t.medianPos)):(e.moveTo(t.medianPos,t.y-o),e.lineTo(t.medianPos,t.y+o)),e.stroke(),e.restore()}},yo]),violin:dr([tr]),histogram:dr([mo]),ridgeline:dr([tr]),timeline:dr([mo]),funnel:[mo,(e,t,o,n)=>{var i,r,s,a;const l=t.filter(e=>"trapezoid"===e.type);for(const t of l){const o=t.points;if(o.length>=4){e.globalAlpha=null!==(r=null===(i=t.style)||void 0===i?void 0:i.opacity)&&void 0!==r?r:1,e.beginPath(),e.moveTo(o[0][0],o[0][1]);for(let t=1;o.length>t;t++)e.lineTo(o[t][0],o[t][1]);e.closePath(),e.fillStyle=(null===(s=t.style)||void 0===s?void 0:s.fill)||"#999",e.fill(),(null===(a=t.style)||void 0===a?void 0:a.stroke)&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke()),e.globalAlpha=1}}},(e,t,o,n)=>{var i,r,s,a;const l=t.filter(e=>"rect"===e.type&&null!=e.datum);if(0!==l.length&&l.some(e=>null!=e.datum.__funnelStepLabel||null!=e.datum.__funnelValueLabelX)){e.textBaseline="top",e.lineJoin="round",e.textAlign="center",e.font="bold 14px sans-serif";for(const t of l){const o=t.datum;if(!o.__funnelStepLabel)continue;const n=o.__funnelStepLabel;if(e.measureText(n).width+16>(null!==(r=null!==(i=o.__funnelRowWidth)&&void 0!==i?i:o.__funnelBarW)&&void 0!==r?r:0))continue;const s=o.__funnelStepLabelX,a=o.__funnelStepLabelY+3;e.strokeStyle="rgba(0,0,0,0.6)",e.lineWidth=3,e.strokeText(n,s,a),e.fillStyle="#fff",e.fillText(n,s,a)}e.font="bold 13px sans-serif";for(const t of l){const o=t.datum;if(null==o.__funnelValueLabelX)continue;const n=null!==(s=o.__funnelBarW)&&void 0!==s?s:0;if(60>n)continue;const i=o.__funnelValue;if(null==i||0===i)continue;const r=o.__funnelPercent,l=!0===o.__funnelIsFirstStep;let c;if(c=l?nr(i):null!=r?`${nr(i)} (${ir(r)})`:nr(i),e.measureText(c).width+16>n){if(l||null==r)continue;if(c=nr(i),e.measureText(c).width+16>n)continue}const u=o.__funnelValueLabelX,d=(null!==(a=o.__funnelValueLabelY)&&void 0!==a?a:t.y)+14+5;e.textAlign="center",e.strokeStyle="rgba(0,0,0,0.5)",e.lineWidth=3,e.strokeText(c,u,d),e.fillStyle="#fff",e.fillText(c,u,d)}e.lineWidth=1,e.lineJoin="miter"}}],"bar-funnel":[mo,(e,t,o,n)=>{var i,r;const s=t.filter(e=>{var t;return"rect"===e.type&&!0===(null===(t=e.datum)||void 0===t?void 0:t.__barFunnelIsDropoff)});for(const t of s){const o=("string"==typeof t.style.fill?t.style.fill:null)||Zt(e,"var(--semiotic-border, #999)"),n=ar(o,e);e.globalAlpha=null!==(i=t.style.opacity)&&void 0!==i?i:1,e.beginPath(),e.rect(t.x,t.y,t.w,t.h),n?e.fillStyle=n:(e.fillStyle=o,e.globalAlpha=.4*(null!==(r=t.style.opacity)&&void 0!==r?r:1)),e.fill(),e.globalAlpha=1}},(e,t,o,n)=>{const i=t.filter(e=>{var t,o;return"rect"===e.type&&!0!==(null===(t=e.datum)||void 0===t?void 0:t.__barFunnelIsDropoff)&&null!=(null===(o=e.datum)||void 0===o?void 0:o.__barFunnelLabelX)});if(0===i.length)return;const r=Zt(e,"var(--semiotic-text, #333)"),s=Zt(e,"var(--semiotic-text-secondary, #666)");for(const t of i){const o=t.datum,n=o.__barFunnelValue;if(null==n)continue;if(25>t.w)continue;const i=o.__barFunnelPercent,a=!(!0===o.__barFunnelIsFirstStep)&&null!=i,l=a?ur(i):"",c=cr(n);e.font="bold 13px sans-serif";const u=a?e.measureText(l).width:0;e.font="11px sans-serif";const d=e.measureText(c).width,h=Math.max(u,d)+12,g=a?32:17,f=o.__barFunnelLabelX,p=f-h/2,y=o.__barFunnelLabelY-g-4;e.save(),e.shadowColor="rgba(0,0,0,0.15)",e.shadowBlur=4,e.shadowOffsetY=1,e.fillStyle="rgba(255,255,255,0.95)",e.beginPath(),lr(e,p,y,h,g,4),e.fill(),e.restore(),e.strokeStyle="rgba(0,0,0,0.12)",e.lineWidth=.5,e.beginPath(),lr(e,p,y,h,g,4),e.stroke(),e.textAlign="center",e.textBaseline="top",a?(e.font="bold 13px sans-serif",e.fillStyle=r,e.fillText(l,f,y+3),e.font="11px sans-serif",e.fillStyle=s,e.fillText(c,f,y+3+13+2)):(e.font="bold 11px sans-serif",e.fillStyle=r,e.fillText(c,f,y+3))}e.lineWidth=1}],swimlane:dr([mo])},gr={top:50,right:40,bottom:60,left:70},fr={background:"rgba(0, 0, 0, 0.85)",color:"white",padding:"6px 10px",borderRadius:"4px",fontSize:"13px",lineHeight:"1.4",boxShadow:"0 2px 8px rgba(0, 0, 0, 0.15)",pointerEvents:"none",whiteSpace:"nowrap"};function pr({hover:t}){var o,n,i,r,s,a;const l=t.data||{},c=t.stats,u=t.category;if(Array.isArray(l)){const t=u||(null===(o=l[0])||void 0===o?void 0:o.category)||"";if(c)return e.jsxs("div",{className:"semiotic-tooltip",style:fr,children:[t&&e.jsx("div",{style:{fontWeight:"bold"},children:t+""}),e.jsxs("div",{children:["n = ",c.n]}),e.jsxs("div",{children:["Min: ",c.min.toLocaleString()]}),e.jsxs("div",{children:["Q1: ",c.q1.toLocaleString()]}),e.jsxs("div",{children:["Median: ",c.median.toLocaleString()]}),e.jsxs("div",{children:["Q3: ",c.q3.toLocaleString()]}),e.jsxs("div",{children:["Max: ",c.max.toLocaleString()]}),e.jsxs("div",{style:{opacity:.8},children:["Mean: ",c.mean.toLocaleString(void 0,{maximumFractionDigits:2})]})]});const n=l.length;return e.jsxs("div",{className:"semiotic-tooltip",style:fr,children:[t&&e.jsx("div",{style:{fontWeight:"bold"},children:t+""}),e.jsxs("div",{children:[n," items"]})]})}if(null!=l.bin&&null!=l.count){const t=l.range||[];return e.jsxs("div",{className:"semiotic-tooltip",style:fr,children:[l.category&&e.jsx("div",{style:{fontWeight:"bold"},children:l.category+""}),e.jsxs("div",{children:["Count: ",l.count]}),2===t.length&&e.jsxs("div",{style:{opacity:.8},children:[Number(t[0]).toFixed(1)," – ",Number(t[1]).toFixed(1)]})]})}const d=t.__oAccessor,h=t.__rAccessor,g=t.__chartType;if("swarm"===g||"point"===g){const t=Object.entries(l).filter(([e])=>!e.startsWith("_")&&"data"!==e);return e.jsx("div",{className:"semiotic-tooltip",style:fr,children:t.map(([t,o])=>e.jsxs("div",{children:[e.jsxs("span",{style:{opacity:.7},children:[t,":"]})," ","number"==typeof o?o.toLocaleString():o+""]},t))})}const f=(d&&null!=l[d]?l[d]:null)||l.category||l.name||l.group||l.__rName||"",p=null!==(a=null!==(s=null!==(r=null!==(i=null!==(n=l.__aggregateValue)&&void 0!==n?n:h&&null!=l[h]?l[h]:null)&&void 0!==i?i:l.value)&&void 0!==r?r:l.__rValue)&&void 0!==s?s:l.pct)&&void 0!==a?a:"";if(!f&&""===p){const t=Object.entries(l).filter(([e])=>!e.startsWith("_")&&"data"!==e);return e.jsx("div",{className:"semiotic-tooltip",style:fr,children:t.map(([t,o])=>e.jsxs("div",{children:[e.jsxs("span",{style:{opacity:.7},children:[t,":"]})," ","number"==typeof o?o.toLocaleString():o+""]},t))})}return e.jsxs("div",{className:"semiotic-tooltip",style:fr,children:[f&&e.jsx("div",{style:{fontWeight:"bold"},children:f+""}),""!==p&&e.jsx("div",{children:"number"==typeof p?p.toLocaleString():p+""})]})}const yr=t.forwardRef(function(o,n){var i,r,s,a,l,u,d,h,g,f;const{chartType:p,runtimeMode:v,data:m,oAccessor:b="category",rAccessor:x="value",colorAccessor:w,stackBy:j,groupBy:S,multiAxis:O,timeAccessor:M,valueAccessor:C,categoryAccessor:_,projection:P="vertical",size:L=[600,400],responsiveWidth:T,responsiveHeight:R,margin:B,barPadding:D,roundedTop:I,gradientFill:N,baselinePadding:H,innerRadius:W,cornerRadius:E,normalize:F,startAngle:$,sweepAngle:z,dynamicColumnWidth:Y,bins:G,showOutliers:q,showIQR:X,amplitude:V,connectorOpacity:U,showLabels:K,connectorAccessor:Q,connectorStyle:Z,dataIdAccessor:J,rExtent:ee,oExtent:te,extentPadding:oe=.05,oSort:ne,windowMode:ie="sliding",windowSize:re=200,pieceStyle:se,summaryStyle:ae,colorScheme:le,barColors:ce,showAxes:ue=!0,showCategoryTicks:de,categoryLabel:he,valueLabel:ge,categoryFormat:fe,valueFormat:ye,oLabel:ve,rLabel:me,oFormat:be,rFormat:xe,rTickValues:ke,tickLabelEdgeAlign:we,enableHover:je=!0,hoverAnnotation:Ae,tooltipContent:Se,customHoverBehavior:_e,annotations:Te,svgAnnotationRules:Re,showGrid:Be=!1,legend:De,legendHoverBehavior:Ie,legendClickBehavior:Ne,legendHighlightedCategory:He,legendIsolatedCategories:We,legendPosition:Ee,backgroundGraphics:Fe,foregroundGraphics:$e,title:ze,className:Ye,background:Ge,centerContent:qe,decay:Xe,pulse:Ve,transition:Ue,animate:Ke,staleness:Qe,brush:Ze,onBrush:Je,accessibleTable:et=!0,description:tt,summary:ot}=o,nt=t.useRef(!0),it=eo({sizeProp:L,responsiveWidth:T,responsiveHeight:R,userMargin:B,marginDefault:gr,foregroundGraphics:$e,backgroundGraphics:Fe,animate:Ke,transitionProp:Ue,themeDirtyRef:nt}),{reducedMotionRef:rt,responsiveRef:st,size:at,margin:lt,adjustedWidth:ct,adjustedHeight:ut,resolvedForeground:dt,resolvedBackground:ht,currentTheme:gt,transition:ft,introEnabled:pt,tableId:yt,rafRef:vt,renderFnRef:mt,scheduleRender:kt}=it,wt=null!=he?he:ve,jt=null!=ge?ge:me,At=null!=fe?fe:be,Ot=null!=ye?ye:xe,Mt=t.useRef(null),Ct=t.useRef(null),[_t,Pt]=t.useState(null),[Lt,Tt]=t.useState(null),[Rt,Bt]=t.useState(0),[It,Et]=t.useState(!1),zt=je||Ae,Yt="streaming"===v,Gt=t.useMemo(()=>{var e,t,o;return{chartType:p,runtimeMode:Yt?"streaming":"bounded",windowSize:re,windowMode:ie,extentPadding:oe,projection:P,oAccessor:Yt?void 0:b,rAccessor:Yt?void 0:x,colorAccessor:w,stackBy:j,groupBy:S,multiAxis:O,timeAccessor:Yt?M:void 0,valueAccessor:Yt?C||("string"==typeof x||"function"==typeof x?x:void 0):void 0,categoryAccessor:Yt?_||b:void 0,rExtent:ee,oExtent:te,barPadding:D,roundedTop:I,gradientFill:N,baselinePadding:H,innerRadius:W,cornerRadius:E,normalize:F,startAngle:$,sweepAngle:z,dynamicColumnWidth:Y,bins:G,showOutliers:q,showIQR:X,amplitude:V,connectorOpacity:U,showLabels:K,connectorAccessor:Q,connectorStyle:Z,dataIdAccessor:J,oSort:ne,pieceStyle:se,summaryStyle:ae,colorScheme:le,themeCategorical:null===(e=null==gt?void 0:gt.colors)||void 0===e?void 0:e.categorical,themeSemantic:A(gt),themeSequential:null===(t=null==gt?void 0:gt.colors)||void 0===t?void 0:t.sequential,themeDiverging:null===(o=null==gt?void 0:gt.colors)||void 0===o?void 0:o.diverging,barColors:ce,decay:Xe,pulse:Ve,transition:ft,introAnimation:pt,staleness:Qe}},[p,re,ie,oe,P,b,x,w,j,S,O,M,C,_,ee,te,D,I,N,H,W,E,F,$,z,Y,G,q,X,V,U,K,Q,Z,J,ne,se,ae,le,ce,Xe,Ve,null==ft?void 0:ft.duration,null==ft?void 0:ft.easing,pt,Qe,Yt,gt]),qt=t.useRef(null);qt.current||(qt.current=new $i(Gt)),t.useEffect(()=>{var e;null===(e=qt.current)||void 0===e||e.updateConfig(Gt),nt.current=!0,kt()},[Gt,kt]);const Xt=t.useRef(null);Xt.current||(Xt.current=new k(e=>{const t=qt.current;t&&t.ingest(e)&&(nt.current=!0,kt())}));const Vt=t.useCallback(e=>{var t;null===(t=Xt.current)||void 0===t||t.push(e)},[]),Ut=t.useCallback(e=>{var t;null===(t=Xt.current)||void 0===t||t.pushMany(e)},[]),Kt=t.useCallback(()=>{var e,t;null===(e=Xt.current)||void 0===e||e.clear(),null===(t=qt.current)||void 0===t||t.clear(),nt.current=!0,kt()},[kt]),Qt=t.useCallback(e=>{var t,o;null===(t=Xt.current)||void 0===t||t.clearLastData(),null===(o=Xt.current)||void 0===o||o.setReplacementData(e)},[]);t.useImperativeHandle(n,()=>({push:Vt,pushMany:Ut,replace:Qt,remove:e=>{var t,o,n,i;null===(t=Xt.current)||void 0===t||t.flush();const r=null!==(n=null===(o=qt.current)||void 0===o?void 0:o.remove(e))&&void 0!==n?n:[];if(r.length>0){const e=null===(i=Ct.current)||void 0===i?void 0:i.data;!!Ct.current&&r.some(Array.isArray(e)?t=>e.includes(t):t=>t===e)&&(Ct.current=null,Pt(null)),nt.current=!0,kt()}return r},update:(e,t)=>{var o,n,i;null===(o=Xt.current)||void 0===o||o.flush();const r=null!==(i=null===(n=qt.current)||void 0===n?void 0:n.update(e,t))&&void 0!==i?i:[];return r.length>0&&(nt.current=!0,kt()),r},clear:Kt,getData:()=>{var e,t,o;return null===(e=Xt.current)||void 0===e||e.flush(),null!==(o=null===(t=qt.current)||void 0===t?void 0:t.getData())&&void 0!==o?o:[]},getScales:()=>{var e,t;return null!==(t=null===(e=qt.current)||void 0===e?void 0:e.scales)&&void 0!==t?t:null}}),[Vt,Ut,Qt,Kt,kt]),t.useEffect(()=>{var e;m&&(null===(e=Xt.current)||void 0===e||e.setBoundedData(m))},[m]);const{hoverHandlerRef:Zt,hoverLeaveRef:Jt,onPointerMove:to,onPointerLeave:no}=it;Zt.current=e=>{if(!zt)return;const t=Mt.current;if(!t)return;const o=t.getBoundingClientRect(),n=e.clientX-o.left-lt.left,i=e.clientY-o.top-lt.top;if(0>n||n>ct||0>i||i>ut)return void(Ct.current&&(Ct.current=null,Pt(null),_e&&_e(null),kt()));const r=qt.current;if(!r||0===r.scene.length)return;const s="radial"===P,a=function(e,t,o,n=30,i,r=0){let s=null;if(i){const e=pe(i,t,o,n,r);e&&(s={datum:e.node.datum,x:e.node.x,y:e.node.y,distance:e.distance})}for(const r of e){let e=null;switch(r.type){case"rect":e=zi(r,t,o);break;case"point":if(i)break;e=Yi(r,t,o,n);break;case"wedge":e=Gi(r,t,o);break;case"boxplot":e=qi(r,t,o);break;case"violin":e=Xi(r,t,o)}e&&n>e.distance&&(s&&e.distance>=s.distance||(s=e))}return s}(r.scene,s?n-ct/2:n,s?i-ut/2:i,30,r.pointQuadtree,r.maxPointRadius);if(!a)return void(Ct.current&&(Ct.current=null,Pt(null),_e&&_e(null),kt()));const l=xo(a.datum||{},a.x,a.y,Object.assign(Object.assign(Object.assign({},a.stats&&{stats:a.stats}),a.category&&{category:a.category}),{__oAccessor:"string"==typeof b?b:void 0,__rAccessor:"string"==typeof x?x:void 0,__chartType:p}));Ct.current=l,Pt(l),_e&&(_e(l),nt.current=!0),kt()},Jt.current=()=>{Ct.current&&(Ct.current=null,Pt(null),_e&&(_e(null),nt.current=!0),kt())};const io=t.useRef(-1),ro=t.useRef(null),so=t.useRef(null),ao=t.useCallback(e=>{const t=qt.current;if(!t||0===t.scene.length)return;const o=t.version;let n;if(so.current&&so.current.version===o)n=so.current.graph;else{const e=function(e){var t,o,n,i;const r=[];for(const s of e)if("rect"===s.type&&null!=s.x){const e=null!==(o=null===(t=s.datum)||void 0===t?void 0:t.category)&&void 0!==o?o:"";r.push({x:s.x+s.w/2,y:s.y+s.h/2,datum:s.datum,shape:"rect",w:s.w,h:s.h,group:null!==(n=s.group)&&void 0!==n?n:e})}else if("point"===s.type)r.push({x:s.x,y:s.y,datum:s.datum,shape:"circle",group:null!==(i=s.group)&&void 0!==i?i:"_default"});else if("wedge"===s.type&&null!=s.cx){const e=((s.startAngle||0)+(s.endAngle||0))/2,t=((s.innerRadius||0)+(s.outerRadius||50))/2;r.push({x:s.cx+Math.cos(e)*t,y:s.cy+Math.sin(e)*t,datum:s.datum,shape:"wedge",group:"_default"})}return r.sort((e,t)=>e.x-t.x||e.y-t.y),r}(t.scene);if(0===e.length)return;n=Oe(e),so.current={version:o,graph:n}}const i=io.current;if(0>i){if("Escape"===e.key)return;if(!["ArrowRight","ArrowLeft","ArrowUp","ArrowDown","Home","End","PageUp","PageDown"].includes(e.key))return;e.preventDefault(),io.current=0;const t=n.flat[0];ro.current={shape:t.shape,w:t.w,h:t.h};const o=Object.assign(Object.assign({},Pe(t)),{__oAccessor:"string"==typeof b?b:void 0,__rAccessor:"string"==typeof x?x:void 0,__chartType:p});return Ct.current=o,Pt(o),_e&&_e(o),void kt()}const r=Me(n,i),s=Ce(e.key,r,n);if(null===s)return;if(e.preventDefault(),0>s)return io.current=-1,ro.current=null,Ct.current=null,Pt(null),_e&&_e(null),void kt();io.current=s;const a=n.flat[s];ro.current={shape:a.shape,w:a.w,h:a.h};const l=Object.assign(Object.assign({},Pe(a)),{__oAccessor:"string"==typeof b?b:void 0,__rAccessor:"string"==typeof x?x:void 0,__chartType:p});Ct.current=l,Pt(l),_e&&_e(l),kt()},[_e,kt]),lo=t.useCallback(e=>{io.current=-1,ro.current=null,to(e)},[to]);mt.current=()=>{var e,t;vt.current=0;const o=Mt.current;if(!o)return;const n=o.getContext("2d");if(!n)return;const i=qt.current;if(!i)return;const r="undefined"!=typeof performance?performance.now():Date.now(),s=i.advanceTransition(rt.current?r+1e6:r),a=!rt.current&&s,l=nt.current;l&&!s&&(i.computeScene({width:ct,height:ut}),nt.current=!1),(l||a)&&o.setAttribute("aria-label",St(i.scene,p+" chart"));const c=oo(),u=at[0]*c,d=at[1]*c;o.width===u&&o.height===d||(o.width=u,o.height=d,o.style.width=at[0]+"px",o.style.height=at[1]+"px"),n.setTransform(c,0,0,c,0,0),n.clearRect(0,0,at[0],at[1]);const h=null!==(e=null==Qe?void 0:Qe.threshold)&&void 0!==e?e:5e3,g=Qe&&i.lastIngestTime>0&&r-i.lastIngestTime>h;if(g&&(n.globalAlpha=null!==(t=null==Qe?void 0:Qe.dimOpacity)&&void 0!==t?t:.5),"transparent"!==Ge&&!Fe){const e=o?getComputedStyle(o).getPropertyValue("--semiotic-bg").trim():"",t=Ge||(e&&"transparent"!==e?e:null);t&&(n.fillStyle=t,n.fillRect(0,0,at[0],at[1]))}const f="radial"===P;n.save(),n.beginPath(),n.rect(lt.left,lt.top,ct,ut),n.clip(),f?(n.save(),n.translate(lt.left+ct/2,lt.top+ut/2)):n.translate(lt.left,lt.top);const y=hr[p]||[],v={width:ct,height:ut};for(const e of y)e(n,i.scene,i.scales,v);f&&n.restore(),n.restore(),g&&(n.globalAlpha=1),l&&i.scales&&(Tt(i.scales),Bt(e=>e+1)),(null==Qe?void 0:Qe.showBadge)&&Et(!!g),(a||null!=i.activeTransition||i.hasActivePulses)&&(vt.current=requestAnimationFrame(()=>mt.current()))},t.useEffect(()=>(kt(),()=>{var e;null===(e=Xt.current)||void 0===e||e.clear()}),[kt]),t.useEffect(()=>{nt.current=!0,kt()},[p,ct,ut,ue,Ge,kt]),Le(Qe,qt,nt,kt,It,Et);const co=zt&&_t?Se?Se(_t):e.jsx(pr,{hover:_t}):null,uo="radial"===P,ho=co?e.jsx($t,{x:_t?uo?_t.x+ct/2:_t.x:0,y:_t?uo?_t.y+ut/2:_t.y:0,containerWidth:ct,containerHeight:ut,margin:lt,className:"stream-ordinal-tooltip",children:co}):null;if(xt){const t=qt.current;t&&m&&(t.ingest({inserts:m,bounded:!0}),t.computeScene({width:ct,height:ut}));const o=null!==(i=null==t?void 0:t.scene)&&void 0!==i?i:[],n=null!==(r=null==t?void 0:t.scales)&&void 0!==r?r:null,s="radial"===P,a=s?lt.left+ct/2:lt.left,l=s?lt.top+ut/2:lt.top;return e.jsxs("div",{className:"stream-ordinal-frame"+(Ye?" "+Ye:""),role:"img","aria-label":tt||("string"==typeof ze?ze:"Ordinal chart"),style:{position:"relative",width:at[0],height:at[1]},children:[e.jsx(Nt,{summary:ot}),e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:at[0],height:at[1],style:{position:"absolute",left:0,top:0},children:[ht&&e.jsx("g",{transform:`translate(${lt.left},${lt.top})`,children:ht}),e.jsxs("g",{transform:`translate(${a},${l})`,children:[Ge&&e.jsx("rect",{x:0,y:0,width:ct,height:ut,fill:Ge}),o.map((t,o)=>function(t,o){var n,i,r,s,a;const l=("category"in t?t.category:void 0)||("group"in t?t.group:void 0)||"",u=e=>`ord-${t.type}-${l}-${o}-${e}`,d=`ord-${t.type}-${l}-${o}`;switch(t.type){case"rect":{const o=t,n=function(e){const t=e.replace(/[^A-Za-z0-9_-]/g,"_");return!t||/^\d/.test(t)?"s_"+t:t}(d)+"-grad",i=function(t,o){const n=t.fillGradient;if(!n)return null;let i=t.x,r=t.y,s=t.x,a=t.y+t.h;"bottom"===t.roundedEdge?(r=t.y+t.h,a=t.y):"right"===t.roundedEdge?(i=t.x+t.w,r=t.y,s=t.x,a=t.y):"left"===t.roundedEdge&&(i=t.x,r=t.y,s=t.x+t.w,a=t.y);const l=[];if("colorStops"in n){const t=n.colorStops.filter(e=>Number.isFinite(e.offset)).map(e=>({offset:Math.max(0,Math.min(1,e.offset)),color:e.color}));if(2>t.length)return null;for(let o=0;t.length>o;o++)l.push(e.jsx("stop",{offset:t[o].offset,stopColor:t[o].color},o))}else{const o=bt(t.style.fill);l.push(e.jsx("stop",{offset:0,stopColor:o,stopOpacity:n.topOpacity},"0")),l.push(e.jsx("stop",{offset:1,stopColor:o,stopOpacity:n.bottomOpacity},"1"))}return e.jsx("linearGradient",{id:o,gradientUnits:"userSpaceOnUse",x1:i,y1:r,x2:s,y2:a,children:l})}(o,n),r=i?`url(#${n})`:bt(o.style.fill);if(o.roundedTop&&o.roundedTop>0){const t=Math.min(o.roundedTop,o.w/2,o.h/2),{x:n,y:s,w:a,h:l}=o;let c;switch(o.roundedEdge){case"right":c=`M${n},${s} L${n+a-t},${s} A${t},${t} 0 0 1 ${n+a},${s+t} L${n+a},${s+l-t} A${t},${t} 0 0 1 ${n+a-t},${s+l} L${n},${s+l} Z`;break;case"left":c=`M${n+a},${s} L${n+t},${s} A${t},${t} 0 0 0 ${n},${s+t} L${n},${s+l-t} A${t},${t} 0 0 0 ${n+t},${s+l} L${n+a},${s+l} Z`;break;case"bottom":c=`M${n},${s} L${n+a},${s} L${n+a},${s+l-t} A${t},${t} 0 0 1 ${n+a-t},${s+l} L${n+t},${s+l} A${t},${t} 0 0 1 ${n},${s+l-t} Z`;break;default:c=`M${n},${s+l} L${n},${s+t} A${t},${t} 0 0 1 ${n+t},${s} L${n+a-t},${s} A${t},${t} 0 0 1 ${n+a},${s+t} L${n+a},${s+l} Z`}return e.jsxs(y.Fragment,{children:[i&&e.jsx("defs",{children:i}),e.jsx("path",{d:c,fill:r,opacity:o.style.opacity,stroke:o.style.stroke,strokeWidth:o.style.strokeWidth})]},d)}return e.jsxs(y.Fragment,{children:[i&&e.jsx("defs",{children:i}),e.jsx("rect",{x:o.x,y:o.y,width:o.w,height:o.h,fill:r,opacity:o.style.opacity,stroke:o.style.stroke,strokeWidth:o.style.strokeWidth})]},d)}case"point":{const o=t;return e.jsx("circle",{cx:o.x,cy:o.y,r:o.r,fill:bt(o.style.fill),opacity:null!==(n=o.style.opacity)&&void 0!==n?n:.8,stroke:o.style.stroke,strokeWidth:o.style.strokeWidth},d)}case"wedge":{const o=t,n=c.arc().innerRadius(o.innerRadius).outerRadius(o.outerRadius).startAngle(o.startAngle+Math.PI/2).endAngle(o.endAngle+Math.PI/2);o.cornerRadius&&n.cornerRadius(o.cornerRadius);const i=n({})||"";return e.jsx("path",{d:i,transform:`translate(${o.cx},${o.cy})`,fill:bt(o.style.fill),stroke:o.style.stroke,strokeWidth:o.style.strokeWidth,opacity:o.style.opacity},d)}case"boxplot":{const o=t,n=o.columnWidth/2;return e.jsxs("g","vertical"===o.projection?{children:[e.jsx("line",{x1:o.x,y1:o.minPos,x2:o.x,y2:o.maxPos,stroke:o.style.stroke||"#333",strokeWidth:1}),e.jsx("rect",{x:o.x-n,y:Math.min(o.q1Pos,o.q3Pos),width:o.columnWidth,height:Math.abs(o.q3Pos-o.q1Pos),fill:bt(o.style.fill),fillOpacity:null!==(i=o.style.fillOpacity)&&void 0!==i?i:.6,stroke:o.style.stroke||"#333",strokeWidth:1}),e.jsx("line",{x1:o.x-n,y1:o.medianPos,x2:o.x+n,y2:o.medianPos,stroke:o.style.stroke||"#333",strokeWidth:2}),e.jsx("line",{x1:o.x-.5*n,y1:o.minPos,x2:o.x+.5*n,y2:o.minPos,stroke:o.style.stroke||"#333",strokeWidth:1}),e.jsx("line",{x1:o.x-.5*n,y1:o.maxPos,x2:o.x+.5*n,y2:o.maxPos,stroke:o.style.stroke||"#333",strokeWidth:1})]}:{children:[e.jsx("line",{x1:o.minPos,y1:o.y,x2:o.maxPos,y2:o.y,stroke:o.style.stroke||"#333",strokeWidth:1}),e.jsx("rect",{x:Math.min(o.q1Pos,o.q3Pos),y:o.y-n,width:Math.abs(o.q3Pos-o.q1Pos),height:o.columnWidth,fill:bt(o.style.fill),fillOpacity:null!==(r=o.style.fillOpacity)&&void 0!==r?r:.6,stroke:o.style.stroke||"#333",strokeWidth:1}),e.jsx("line",{x1:o.medianPos,y1:o.y-n,x2:o.medianPos,y2:o.y+n,stroke:o.style.stroke||"#333",strokeWidth:2}),e.jsx("line",{x1:o.minPos,y1:o.y-.5*n,x2:o.minPos,y2:o.y+.5*n,stroke:o.style.stroke||"#333",strokeWidth:1}),e.jsx("line",{x1:o.maxPos,y1:o.y-.5*n,x2:o.maxPos,y2:o.y+.5*n,stroke:o.style.stroke||"#333",strokeWidth:1})]},d)}case"violin":{const o=t,n=[e.jsx("path",{d:o.pathString,transform:o.translateX||o.translateY?`translate(${o.translateX},${o.translateY})`:void 0,fill:bt(o.style.fill),fillOpacity:null!==(s=o.style.fillOpacity)&&void 0!==s?s:.6,stroke:o.style.stroke||"#333",strokeWidth:o.style.strokeWidth||1},u("path"))];if(o.iqrLine&&o.bounds){const t=o.bounds,i=t.x+t.width/2,r=t.y+t.height/2;t.height>t.width?n.push(e.jsx("line",{x1:i,y1:o.iqrLine.q1Pos,x2:i,y2:o.iqrLine.q3Pos,stroke:o.style.stroke||"#333",strokeWidth:2},u("iqr")),e.jsx("circle",{cx:i,cy:o.iqrLine.medianPos,r:3,fill:"white",stroke:o.style.stroke||"#333",strokeWidth:1},u("med"))):n.push(e.jsx("line",{x1:o.iqrLine.q1Pos,y1:r,x2:o.iqrLine.q3Pos,y2:r,stroke:o.style.stroke||"#333",strokeWidth:2},u("iqr")),e.jsx("circle",{cx:o.iqrLine.medianPos,cy:r,r:3,fill:"white",stroke:o.style.stroke||"#333",strokeWidth:1},u("med")))}return e.jsx("g",{children:n},d)}case"connector":return e.jsx("line",{x1:t.x1,y1:t.y1,x2:t.x2,y2:t.y2,stroke:t.style.stroke||"#999",strokeWidth:t.style.strokeWidth||1,opacity:null!==(a=t.style.opacity)&&void 0!==a?a:.5},d);case"trapezoid":{const o=t,n=o.points.map(e=>`${e[0]},${e[1]}`).join(" ");return e.jsx("polygon",{points:n,fill:bt(o.style.fill,"#999"),opacity:o.style.opacity,stroke:o.style.stroke,strokeWidth:o.style.strokeWidth},d)}default:return null}}(t,o)).filter(Boolean)]})]}),e.jsx(Ki,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:lt,scales:n,showAxes:ue,showCategoryTicks:de,oLabel:wt,rLabel:jt,oFormat:At,rFormat:Ot,rTickValues:ke,tickLabelEdgeAlign:we,showGrid:Be,title:ze,legend:De,legendHoverBehavior:Ie,legendClickBehavior:Ne,legendHighlightedCategory:He,legendIsolatedCategories:We,legendPosition:Ee,foregroundGraphics:dt,annotations:Te,svgAnnotationRules:Re,annotationFrame:0,xAccessor:"string"==typeof b?b:void 0,yAccessor:"string"==typeof x?x:void 0,annotationData:null==t?void 0:t.getData()}),qe&&"radial"===P&&e.jsx("div",{style:{position:"absolute",left:lt.left+ct/2,top:lt.top+ut/2,transform:"translate(-50%, -50%)",pointerEvents:"none",textAlign:"center"},children:qe})]})}return e.jsxs("div",{ref:st,className:"stream-ordinal-frame"+(Ye?" "+Ye:""),role:"group","aria-label":tt||("string"==typeof ze?ze:"Ordinal chart"),tabIndex:0,style:{position:"relative",width:T?"100%":at[0],height:R?"100%":at[1],overflow:"visible"},onKeyDown:ao,children:[et&&e.jsx(Ht,{tableId:yt}),et&&e.jsx(Dt,{scene:null!==(a=null===(s=qt.current)||void 0===s?void 0:s.scene)&&void 0!==a?a:[],chartType:p+" chart",tableId:yt,chartTitle:"string"==typeof ze?ze:void 0}),e.jsx(Nt,{summary:ot}),e.jsxs("div",{role:"img","aria-label":tt||("string"==typeof ze?ze:"Ordinal chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:zt?lo:void 0,onMouseLeave:zt?no:void 0,children:[ht&&e.jsx("svg",{style:{position:"absolute",top:0,left:0,width:at[0],height:at[1],pointerEvents:"none"},children:e.jsx("g",{transform:`translate(${lt.left},${lt.top})`,children:ht})}),e.jsx(Vi,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:lt,scales:Lt,showAxes:ue,showGrid:Be,rFormat:Ot,rTickValues:ke}),e.jsx("canvas",{ref:Mt,"aria-label":St(null!==(u=null===(l=qt.current)||void 0===l?void 0:l.scene)&&void 0!==u?u:[],p+" chart"),style:{position:"absolute",top:0,left:0,width:at[0],height:at[1]}}),e.jsx(Wt,{hoverPoint:_t}),e.jsx(Ki,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:lt,scales:Lt,showAxes:ue,showCategoryTicks:de,oLabel:wt,rLabel:jt,oFormat:At,rFormat:Ot,showGrid:Be,title:ze,legend:De,legendHoverBehavior:Ie,legendClickBehavior:Ne,legendHighlightedCategory:He,legendIsolatedCategories:We,legendPosition:Ee,foregroundGraphics:dt,annotations:Te,svgAnnotationRules:Re,annotationFrame:Rt,xAccessor:"string"==typeof b?b:void 0,yAccessor:"string"==typeof x?x:void 0,annotationData:null===(d=qt.current)||void 0===d?void 0:d.getData(),underlayRendered:!0}),(Ze||Je)&&"radial"!==P&&e.jsx(Qi,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:lt,scales:Lt,onBrush:Je||(()=>{})}),qe&&"radial"===P&&e.jsx("div",{style:{position:"absolute",left:lt.left+ct/2,top:lt.top+ut/2,transform:"translate(-50%, -50%)",pointerEvents:"none",textAlign:"center"},children:qe}),(null==Qe?void 0:Qe.showBadge)&&e.jsx("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===Qe.badgePosition?{top:4,left:4}:"bottom-left"===Qe.badgePosition?{bottom:4,left:4}:"bottom-right"===Qe.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{padding:"2px 8px",borderRadius:4,fontSize:11,fontWeight:600,pointerEvents:"none",background:It?"#dc3545":"#28a745",color:"white"}),children:It?"STALE":"LIVE"}),e.jsx(Ft,{active:io.current>=0,hoverPoint:_t,margin:lt,size:at,shape:null===(h=ro.current)||void 0===h?void 0:h.shape,width:null===(g=ro.current)||void 0===g?void 0:g.w,height:null===(f=ro.current)||void 0===f?void 0:f.h}),ho]})]})});yr.displayName="StreamOrdinalFrame";const vr=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:s,margin:a,className:l,categoryAccessor:c="category",valueAccessor:u="value",orientation:d="vertical",valueFormat:h,colorBy:g,colorScheme:f,sort:p=!1,barPadding:y=40,roundedTop:v,gradientFill:m=!1,baselinePadding:b=!1,tooltip:x,annotations:k,frameProps:w={},selection:j,linkedHover:A,onObservation:S,onClick:O,hoverHighlight:M,chartId:C,loading:_,emptyContent:P,legendInteraction:L,legendPosition:T,color:R,stroke:B,strokeWidth:D,opacity:I,showCategoryTicks:N,categoryFormat:H,dataIdAccessor:W}=o,E=i.width,F=i.height,$=i.enableHover,z=i.showGrid,G=i.title,q=i.description,X=i.summary,V=i.accessibleTable,U=i.categoryLabel,K=i.valueLabel,Q=s||[],Z=bi({data:Q,rawData:s,colorBy:g,colorScheme:f,legendInteraction:L,legendPosition:T,selection:j,linkedHover:A,fallbackFields:g?["string"==typeof g?g:""]:[],unwrapData:!0,onObservation:S,onClick:O,hoverHighlight:M,chartType:"BarChart",chartId:C,showLegend:i.showLegend,userMargin:a,marginDefaults:i.marginDefaults,loading:_,emptyContent:P,width:E,height:F});if(Z.earlyReturn)return Z.earlyReturn;ci("BarChart",Q,"categoryAccessor",c),ci("BarChart",Q,"valueAccessor",u);const J=un(Q,p,u),ee=an(),te=t.useMemo(()=>new Map,[Q]),oe=t.useMemo(()=>(e,t)=>{const o={};return o.fill=g?Y(e,g,Z.colorScale):ln(R,ee,f,void 0,te),o},[g,Z.colorScale,R,ee,f,te]),ne=t.useMemo(()=>{const e=null==w?void 0:w.pieceStyle;return mn(e&&"function"==typeof e?(t,o)=>Object.assign(Object.assign({},oe(t,o)),e(t,o)||{}):oe,{stroke:B,strokeWidth:D,opacity:I})},[oe,w,B,D,I]),ie=t.useMemo(()=>Zo(ne,Z.effectiveSelectionHook,Z.resolvedSelection),[ne,Z.effectiveSelectionHook,Z.resolvedSelection]),re=t.useMemo(()=>_n({categoryAccessor:c,valueAccessor:u,groupAccessor:g&&g!==c?g:void 0,groupLabel:"string"==typeof g?g:"group",valueFormat:h}),[c,u,g,h]),se=In({componentName:"BarChart",data:s,accessors:{categoryAccessor:c,valueAccessor:u}});if(se)return e.jsx(Pn,{componentName:"BarChart",message:se,width:E,height:F});const ae=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bar"},null!=s&&{data:J}),{oAccessor:c,rAccessor:u,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:ie,size:[E,F],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:Z.margin,barPadding:y}),null!=v&&{roundedTop:v}),m&&{gradientFill:!0===m?{topOpacity:.8,bottomOpacity:.05}:m}),W&&{dataIdAccessor:W}),{baselinePadding:b,enableHover:$,showAxes:i.showAxes,oLabel:U,rLabel:K,rFormat:h}),H&&{oFormat:H}),{showGrid:z,showCategoryTicks:N,oSort:p}),Z.legendBehaviorProps),G&&{title:G}),q&&{description:q}),X&&{summary:X}),void 0!==V&&{accessibleTable:V}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===x?()=>null:jn(x)||re}),(A||S||O||M)&&{customHoverBehavior:Z.customHoverBehavior}),(S||O||A)&&{customClickBehavior:Z.customClickBehavior}),k&&k.length>0&&{annotations:k}),Object.fromEntries(Object.entries(w).filter(([e])=>"pieceStyle"!==e)));return e.jsx(ii,{componentName:"BarChart",width:E,height:F,children:e.jsx(yr,Object.assign({ref:r},ae))})});function mr({ref:e,frameRef:o,isPushMode:n,colorBy:i,colorScheme:r,showLegend:s,legendPosition:a,setup:l}){const c=vi({isPushMode:n,colorBy:i,colorScheme:r,showLegend:s,legendPosition:a}),u=t.useCallback(c.wrapPush(e=>{var t;return null===(t=o.current)||void 0===t?void 0:t.push(e)}),[c.wrapPush]),d=t.useCallback(c.wrapPushMany(e=>{var t;return null===(t=o.current)||void 0===t?void 0:t.pushMany(e)}),[c.wrapPushMany]);return t.useImperativeHandle(e,()=>({push:u,pushMany:d,remove:e=>{var t,n;return null!==(n=null===(t=o.current)||void 0===t?void 0:t.remove(e))&&void 0!==n?n:[]},update:(e,t)=>{var n,i;return null!==(i=null===(n=o.current)||void 0===n?void 0:n.update(e,t))&&void 0!==i?i:[]},clear:()=>{var e;c.resetCategories(),null===(e=o.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=o.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]}}),[u,d,c.resetCategories]),{effectiveLegendProps:t.useMemo(()=>c.streamingLegend?Object.assign(Object.assign({},l.legendBehaviorProps),{legend:c.streamingLegend,legendPosition:a||l.legendPosition}):l.legendBehaviorProps,[l.legendBehaviorProps,l.legendPosition,c.streamingLegend,a]),effectiveMargin:t.useMemo(()=>{if(c.streamingMarginAdjust){const e=Object.assign({},l.margin);for(const[t,o]of Object.entries(c.streamingMarginAdjust))o>e[t]&&(e[t]=o);return e}return l.margin},[l.margin,c.streamingMarginAdjust])}}vr.displayName="BarChart";const br=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),r=t.useRef(null),{data:s,margin:a,className:l,categoryAccessor:c="category",stackBy:u,valueAccessor:d="value",orientation:h="vertical",valueFormat:g,colorBy:f,colorScheme:p,normalize:y=!1,sort:v=!1,barPadding:m=40,roundedTop:b,baselinePadding:x=!1,tooltip:k,annotations:w,frameProps:j={},selection:A,linkedHover:S,onObservation:O,onClick:M,hoverHighlight:C,chartId:_,loading:P,emptyContent:L,legendInteraction:T,legendPosition:R,color:B,stroke:D,strokeWidth:I,opacity:N,categoryFormat:H}=o,W=i.width,E=i.height,F=i.enableHover,$=i.showGrid,z=i.showLegend,G=i.title,q=i.description,X=i.summary,V=i.accessibleTable,U=i.categoryLabel,K=i.valueLabel,Q=s||[],Z=f||u,J=void 0===s,ee=bi({data:Q,rawData:s,colorBy:Z,colorScheme:p,legendInteraction:T,legendPosition:R,selection:A,linkedHover:S,fallbackFields:Z?["string"==typeof Z?Z:""]:[],unwrapData:!0,onObservation:O,onClick:M,hoverHighlight:C,chartType:"StackedBarChart",chartId:_,showLegend:z,userMargin:a,marginDefaults:i.marginDefaults,loading:P,emptyContent:L,width:W,height:E});if(ee.earlyReturn)return ee.earlyReturn;const te=an(),oe=t.useMemo(()=>new Map,[Q]),ne=t.useMemo(()=>(e,t)=>Z?ee.colorScale?{fill:Y(e,Z,ee.colorScale)}:{}:{fill:ln(B,te,p,t,oe)},[Z,ee.colorScale,B,te,p,oe]),ie=t.useMemo(()=>{const e=null==j?void 0:j.pieceStyle;return mn(e&&"function"==typeof e?(t,o)=>{const n=ne(t,o),i=e(t,o)||{};return Object.assign(Object.assign({},n),i)}:ne,{stroke:D,strokeWidth:I,opacity:N})},[ne,j,D,I,N]),re=t.useMemo(()=>Zo(ie,ee.effectiveSelectionHook,ee.resolvedSelection),[ie,ee.effectiveSelectionHook,ee.resolvedSelection]),se=t.useMemo(()=>_n({categoryAccessor:u,valueAccessor:d,groupAccessor:c,valueFormat:g}),[u,c,d,g]),ae=In({componentName:"StackedBarChart",data:s,accessors:{categoryAccessor:c,valueAccessor:d},requiredProps:{stackBy:u}}),{effectiveLegendProps:le,effectiveMargin:ce}=mr({ref:n,frameRef:r,isPushMode:J,colorBy:Z,colorScheme:p,showLegend:z,legendPosition:R,setup:ee}),ue=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bar"},null!=s&&{data:Q}),{oAccessor:c,rAccessor:d,stackBy:u,normalize:y,oSort:v,projection:"horizontal"===h?"horizontal":"vertical",pieceStyle:re,size:[W,E],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:ce,barPadding:m}),null!=b&&{roundedTop:b}),{baselinePadding:x,enableHover:F}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:i.showAxes,oLabel:U,rLabel:K,rFormat:g}),H&&{oFormat:H}),{showGrid:$}),le),G&&{title:G}),q&&{description:q}),X&&{summary:X}),void 0!==V&&{accessibleTable:V}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===k?()=>null:jn(k)||se}),(S||O||M||C)&&{customHoverBehavior:ee.customHoverBehavior}),(O||M||S)&&{customClickBehavior:ee.customClickBehavior}),w&&w.length>0&&{annotations:w}),Object.fromEntries(Object.entries(j).filter(([e])=>"pieceStyle"!==e)));return ae?e.jsx(Pn,{componentName:"StackedBarChart",message:ae,width:W,height:E}):e.jsx(ii,{componentName:"StackedBarChart",width:W,height:E,children:e.jsx(yr,Object.assign({ref:r},ue))})});br.displayName="StackedBarChart";const xr=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),r=t.useRef(null),{data:s,margin:a,className:l,categoryAccessor:c="category",groupBy:u,valueAccessor:d="value",orientation:h="vertical",valueFormat:g,colorBy:f,colorScheme:p,sort:y=!1,barPadding:v=60,roundedTop:m,baselinePadding:b=!1,tooltip:x,annotations:k,frameProps:w={},selection:j,linkedHover:A,onObservation:S,onClick:O,hoverHighlight:M,chartId:C,loading:_,emptyContent:P,legendInteraction:L,legendPosition:T,color:R,stroke:B,strokeWidth:D,opacity:I,categoryFormat:N}=o,H=i.width,W=i.height,E=i.enableHover,F=i.showGrid,$=i.showLegend,z=i.title,G=i.description,q=i.summary,X=i.accessibleTable,V=i.categoryLabel,U=i.valueLabel,K=s||[],Q=f||u,Z=void 0===s,J=bi({data:K,rawData:s,colorBy:Q,colorScheme:p,legendInteraction:L,legendPosition:T,selection:j,linkedHover:A,fallbackFields:Q?["string"==typeof Q?Q:""]:[],unwrapData:!0,onObservation:S,onClick:O,hoverHighlight:M,chartType:"GroupedBarChart",chartId:C,showLegend:$,userMargin:a,marginDefaults:i.marginDefaults,loading:_,emptyContent:P,width:H,height:W});if(J.earlyReturn)return J.earlyReturn;const ee=an(),te=t.useMemo(()=>new Map,[K]),oe=w.pieceStyle,ne=t.useMemo(()=>(e,t)=>{const o=Q?J.colorScale?{fill:Y(e,Q,J.colorScale)}:{}:{fill:ln(R,ee,p,t,te)};if(oe){const n=oe(e,t);n.stroke&&(o.stroke=n.stroke),null!=n.strokeWidth&&(o.strokeWidth=n.strokeWidth),null!=n.strokeOpacity&&(o.strokeOpacity=n.strokeOpacity)}return o},[Q,J.colorScale,R,ee,p,te,oe]),ie=t.useMemo(()=>mn(ne,{stroke:B,strokeWidth:D,opacity:I}),[ne,B,D,I]),re=t.useMemo(()=>Zo(ie,J.effectiveSelectionHook,J.resolvedSelection),[ie,J.effectiveSelectionHook,J.resolvedSelection]),se=t.useMemo(()=>_n({categoryAccessor:u,valueAccessor:d,groupAccessor:c,valueFormat:g}),[u,c,d,g]),ae=In({componentName:"GroupedBarChart",data:s,accessors:{categoryAccessor:c,valueAccessor:d},requiredProps:{groupBy:u}}),{effectiveLegendProps:le,effectiveMargin:ce}=mr({ref:n,frameRef:r,isPushMode:Z,colorBy:Q,colorScheme:p,showLegend:$,legendPosition:T,setup:J}),ue=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"clusterbar"},null!=s&&{data:K}),{oAccessor:c,rAccessor:d,groupBy:u,oSort:y,projection:"horizontal"===h?"horizontal":"vertical",pieceStyle:re,size:[H,W],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:ce,barPadding:v}),null!=m&&{roundedTop:m}),{baselinePadding:b,enableHover:E}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:i.showAxes,oLabel:V,rLabel:U,rFormat:g}),N&&{oFormat:N}),{showGrid:F}),le),z&&{title:z}),G&&{description:G}),q&&{summary:q}),void 0!==X&&{accessibleTable:X}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===x?()=>null:jn(x)||se}),(A||S||O||M)&&{customHoverBehavior:J.customHoverBehavior}),(S||O||A)&&{customClickBehavior:J.customClickBehavior}),k&&k.length>0&&{annotations:k}),Object.fromEntries(Object.entries(w).filter(([e])=>"pieceStyle"!==e)));return ae?e.jsx(Pn,{componentName:"GroupedBarChart",message:ae,width:H,height:W}):e.jsx(ii,{componentName:"GroupedBarChart",width:H,height:W,children:e.jsx(yr,Object.assign({ref:r},ue))})});function kr({brushProp:e,onBrushProp:o,linkedBrush:n,valueAccessor:i}){const r=Qo("string"==typeof n?n:n?{name:n.name,xField:n.rField}:void 0),s=Yo({name:(null==r?void 0:r.name)||"__unused_ordinal_brush__",xField:(null==r?void 0:r.xField)||("string"==typeof i?i:"value")}),a=t.useRef(s.brushInteraction);a.current=s.brushInteraction;const l=t.useCallback(e=>{if(r){a.current.end(e?e.r:null)}null==o||o(e)},[o,r]),c=!!(e||n||o);return{hasBrush:c,handleBrush:l,brushStreamProps:c?{brush:{dimension:"r"},onBrush:l}:{}}}xr.displayName="GroupedBarChart";const wr=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:s,margin:a,className:l,categoryAccessor:c="category",valueAccessor:u="value",orientation:d="vertical",valueFormat:h,colorBy:g,colorScheme:f,sizeBy:p,sizeRange:y=[3,8],pointRadius:v=4,pointOpacity:m=.7,categoryPadding:b=20,tooltip:x,annotations:k,brush:w,onBrush:j,linkedBrush:A,frameProps:S={},selection:O,linkedHover:M,onObservation:C,onClick:_,hoverHighlight:P,chartId:L,loading:T,emptyContent:R,legendInteraction:B,legendPosition:D,color:I,stroke:N,strokeWidth:H,opacity:W,showCategoryTicks:E,categoryFormat:F}=o,$=i.width,z=i.height,G=i.enableHover,X=i.showGrid,V=i.title,U=i.description,K=i.summary,Q=i.accessibleTable,Z=i.categoryLabel,J=i.valueLabel,ee=s||[],te=bi({data:ee,rawData:s,colorBy:g,colorScheme:f,legendInteraction:B,legendPosition:D,selection:O,linkedHover:M,fallbackFields:g?["string"==typeof g?g:""]:["string"==typeof c?c:""],unwrapData:!0,onObservation:C,onClick:_,hoverHighlight:P,chartType:"SwarmPlot",chartId:L,showLegend:i.showLegend,userMargin:a,marginDefaults:i.marginDefaults,loading:T,emptyContent:R,width:$,height:z}),oe=kr({brushProp:w,onBrushProp:j,linkedBrush:A,valueAccessor:u});if(te.earlyReturn)return te.earlyReturn;const ne=t.useMemo(()=>{if(!p)return;const e=ee.map(e=>"function"==typeof p?p(e):e[p]);return[Math.min(...e),Math.max(...e)]},[ee,p]),ie=an(),re=t.useMemo(()=>new Map,[ee]),se=S.pieceStyle,ae=t.useMemo(()=>(e,t)=>{const o={fillOpacity:m};if(o.fill=g?Y(e,g,te.colorScale):ln(I,ie,f,void 0,re),o.r=p?q(e,p,y,ne):v,se){const n=se(e,t);n.stroke&&(o.stroke=n.stroke),null!=n.strokeWidth&&(o.strokeWidth=n.strokeWidth),null!=n.strokeOpacity&&(o.strokeOpacity=n.strokeOpacity)}return o},[g,te.colorScale,p,y,ne,v,m,I,ie,f,re,se]),le=t.useMemo(()=>mn(ae,{stroke:N,strokeWidth:H,opacity:W}),[ae,N,H,W]),ce=t.useMemo(()=>Zo(le,te.effectiveSelectionHook,te.resolvedSelection),[le,te.effectiveSelectionHook,te.resolvedSelection]),ue=t.useMemo(()=>_n({categoryAccessor:c,valueAccessor:u,groupAccessor:g||void 0,valueFormat:h}),[c,u,g,h]),de=In({componentName:"SwarmPlot",data:s,accessors:{categoryAccessor:c,valueAccessor:u}});if(de)return e.jsx(Pn,{componentName:"SwarmPlot",message:de,width:$,height:z});const he=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"swarm"},null!=s&&{data:ee}),{oAccessor:c,rAccessor:u,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:ce,size:[$,z],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:te.margin,barPadding:b,enableHover:G}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:i.showAxes,oLabel:Z,rLabel:J,rFormat:h}),F&&{oFormat:F}),{showGrid:X,showCategoryTicks:E}),te.legendBehaviorProps),V&&{title:V}),U&&{description:U}),K&&{summary:K}),void 0!==Q&&{accessibleTable:Q}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===x?()=>null:jn(x)||ue}),(M||C||_||P)&&{customHoverBehavior:te.customHoverBehavior}),(C||_||M)&&{customClickBehavior:te.customClickBehavior}),k&&k.length>0&&{annotations:k}),oe.brushStreamProps),Object.fromEntries(Object.entries(S).filter(([e])=>"pieceStyle"!==e)));return e.jsx(ii,{componentName:"SwarmPlot",width:$,height:z,children:e.jsx(yr,Object.assign({ref:r},he))})});function jr(t){return o=>{var n;const i=o.category||o.data&&(null===(n=o.data[0])||void 0===n?void 0:n.category)||"",r=o.stats||(o.data||o).stats;if(r&&null!=r.median)return e.jsxs("div",{className:"semiotic-tooltip",style:bn,children:[i&&e.jsx("div",{style:{fontWeight:"bold"},children:i+""}),null!=r.n&&e.jsxs("div",{children:["n = ",r.n]}),null!=r.min&&e.jsxs("div",{children:["Min: ",r.min.toLocaleString()]}),null!=r.q1&&e.jsxs("div",{children:["Q1: ",r.q1.toLocaleString()]}),e.jsxs("div",{children:["Median: ",r.median.toLocaleString()]}),null!=r.q3&&e.jsxs("div",{children:["Q3: ",r.q3.toLocaleString()]}),null!=r.max&&e.jsxs("div",{children:["Max: ",r.max.toLocaleString()]}),null!=r.mean&&e.jsxs("div",{style:{opacity:.8},children:["Mean: ",r.mean.toLocaleString(void 0,{maximumFractionDigits:2})]})]});if(null==t?void 0:t.valueAccessor){const n=t.valueAccessor,r=(Array.isArray(o.data)?o.data:[]).map(e=>Number("function"==typeof n?n(e):e[n])).filter(e=>Number.isFinite(e)).sort((e,t)=>e-t),s=r.length,a=s>0?s%2!=0?r[Math.floor(s/2)]:(r[s/2-1]+r[s/2])/2:null;return e.jsxs("div",{className:"semiotic-tooltip",style:bn,children:[i&&e.jsx("div",{style:{fontWeight:"bold"},children:i+""}),s>0&&e.jsxs("div",{children:["n = ",s]}),null!=a&&e.jsxs("div",{children:["Median: ",a.toLocaleString()]})]})}return e.jsx("div",{className:"semiotic-tooltip",style:bn,children:e.jsx("div",{style:{fontWeight:"bold"},children:i+""})})}}wr.displayName="SwarmPlot";const Ar=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:s,margin:a,className:l,categoryAccessor:c="category",valueAccessor:u="value",orientation:d="vertical",valueFormat:h,colorBy:g,colorScheme:f,showOutliers:p=!0,categoryPadding:y=20,tooltip:v,annotations:m,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:j,hoverHighlight:A,chartId:S,loading:O,emptyContent:M,legendInteraction:C,legendPosition:_,color:P,stroke:L,strokeWidth:T,opacity:R,showCategoryTicks:B,categoryFormat:D}=o,I=i.width,N=i.height,H=i.enableHover,W=i.showGrid,E=i.title,F=i.description,$=i.summary,z=i.accessibleTable,G=i.categoryLabel,q=i.valueLabel,X=s||[],V=bi({data:X,rawData:s,colorBy:g,colorScheme:f,legendInteraction:C,legendPosition:_,selection:x,linkedHover:k,fallbackFields:g?["string"==typeof g?g:""]:["string"==typeof c?c:""],unwrapData:!0,onObservation:w,onClick:j,hoverHighlight:A,chartType:"BoxPlot",chartId:S,showLegend:i.showLegend,userMargin:a,marginDefaults:i.marginDefaults,loading:O,emptyContent:M,width:I,height:N});if(V.earlyReturn)return V.earlyReturn;const U=an(),K=t.useMemo(()=>new Map,[X]),Q=t.useMemo(()=>e=>{const t=g?Y(e,g,V.colorScale):ln(P,U,f,void 0,K);return{fill:t,stroke:t,fillOpacity:.8}},[g,V.colorScale,P,U,f,K]),Z=t.useMemo(()=>mn(Q,{stroke:L,strokeWidth:T,opacity:R}),[Q,L,T,R]),J=t.useMemo(()=>Zo(Z,V.effectiveSelectionHook,V.resolvedSelection),[Z,V.effectiveSelectionHook,V.resolvedSelection]),ee=t.useMemo(()=>jr(),[]),te=In({componentName:"BoxPlot",data:s,accessors:{categoryAccessor:c,valueAccessor:u}});if(te)return e.jsx(Pn,{componentName:"BoxPlot",message:te,width:I,height:N});const oe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"boxplot"},null!=s&&{data:X}),{oAccessor:c,rAccessor:u,projection:"horizontal"===d?"horizontal":"vertical",summaryStyle:J,showOutliers:p,size:[I,N],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:V.margin,barPadding:y,enableHover:H}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:i.showAxes,oLabel:G,rLabel:q,rFormat:h}),D&&{oFormat:D}),{showGrid:W,showCategoryTicks:B}),V.legendBehaviorProps),E&&{title:E}),F&&{description:F}),$&&{summary:$}),void 0!==z&&{accessibleTable:z}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===v?()=>null:jn(v)||ee}),(k||w||j||A)&&{customHoverBehavior:V.customHoverBehavior}),(w||j||k)&&{customClickBehavior:V.customClickBehavior}),m&&m.length>0&&{annotations:m}),Object.fromEntries(Object.entries(b).filter(([e])=>"pieceStyle"!==e)));return e.jsx(ii,{componentName:"BoxPlot",width:I,height:N,children:e.jsx(yr,Object.assign({ref:r},oe))})});Ar.displayName="BoxPlot";const Sr=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:"horizontal"}),r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:s,margin:a,className:l,categoryAccessor:c="category",valueAccessor:u="value",bins:d=25,relative:h=!1,valueFormat:g,colorBy:f,colorScheme:p,categoryPadding:y=20,tooltip:v,annotations:m,brush:b,onBrush:x,linkedBrush:k,frameProps:w={},selection:j,linkedHover:A,onObservation:S,onClick:O,hoverHighlight:M,chartId:C,loading:_,emptyContent:P,legendInteraction:L,legendPosition:T,color:R,stroke:B,strokeWidth:D,opacity:I,showCategoryTicks:N,categoryFormat:H}=o,W=i.width,E=i.height,F=i.enableHover,$=i.showGrid,z=i.title,G=i.description,q=i.summary,X=i.accessibleTable,V=i.categoryLabel,U=i.valueLabel,K=s||[],Q=bi({data:K,rawData:s,colorBy:f,colorScheme:p,legendInteraction:L,legendPosition:T,selection:j,linkedHover:A,fallbackFields:f?["string"==typeof f?f:""]:["string"==typeof c?c:""],unwrapData:!0,onObservation:S,onClick:O,hoverHighlight:M,chartType:"Histogram",chartId:C,showLegend:i.showLegend,userMargin:a,marginDefaults:i.marginDefaults,loading:_,emptyContent:P,width:W,height:E}),Z=kr({brushProp:b,onBrushProp:x,linkedBrush:k,valueAccessor:u});if(Q.earlyReturn)return Q.earlyReturn;const J=t.useMemo(()=>{if(0===K.length)return;const e="function"==typeof u?u:e=>e[u];let t=1/0,o=-1/0;for(const n of K){const i=e(n);null!=i&&isFinite(i)&&(t>i&&(t=i),i>o&&(o=i))}return t>o?void 0:[t,o]},[K,u]),ee=an(),te=t.useMemo(()=>new Map,[K]),oe=t.useMemo(()=>e=>{const t=f?Y(e,f,Q.colorScale):ln(R,ee,p,void 0,te);return{fill:t,stroke:t,fillOpacity:.8}},[f,Q.colorScale,R,ee,p,te]),ne=t.useMemo(()=>mn(oe,{stroke:B,strokeWidth:D,opacity:I}),[oe,B,D,I]),ie=t.useMemo(()=>Zo(ne,Q.effectiveSelectionHook,Q.resolvedSelection),[ne,Q.effectiveSelectionHook,Q.resolvedSelection]),re=t.useMemo(()=>t=>{const o=t.data||t,n=o.category||t.category||"",i=o.count,r=o.range;return e.jsxs("div",{className:"semiotic-tooltip",style:bn,children:[n&&e.jsx("div",{style:{fontWeight:"bold"},children:n+""}),null!=i&&e.jsxs("div",{children:["Count: ",i]}),r&&2===r.length&&e.jsxs("div",{style:{opacity:.8},children:[Number(r[0]).toFixed(1)," – ",Number(r[1]).toFixed(1)]})]})},[]),se=In({componentName:"Histogram",data:s,accessors:{categoryAccessor:c,valueAccessor:u}});if(se)return e.jsx(Pn,{componentName:"Histogram",message:se,width:W,height:E});const ae=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"histogram"},null!=s&&{data:K}),{oAccessor:c,rAccessor:u,projection:"horizontal",summaryStyle:ie,bins:d,normalize:h}),J&&{rExtent:J}),{size:[W,E],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:Q.margin,barPadding:y,enableHover:F}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:i.showAxes,oLabel:V,rLabel:U,rFormat:g}),H&&{oFormat:H}),{showGrid:$,showCategoryTicks:N}),Q.legendBehaviorProps),z&&{title:z}),G&&{description:G}),q&&{summary:q}),void 0!==X&&{accessibleTable:X}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===v?()=>null:jn(v)||re}),(A||S||O||M)&&{customHoverBehavior:Q.customHoverBehavior}),(S||O||A)&&{customClickBehavior:Q.customClickBehavior}),m&&m.length>0&&{annotations:m}),Z.brushStreamProps),Object.fromEntries(Object.entries(w).filter(([e])=>"pieceStyle"!==e)));return e.jsx(ii,{componentName:"Histogram",width:W,height:E,children:e.jsx(yr,Object.assign({ref:r},ae))})});Sr.displayName="Histogram";const Or=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:s,margin:a,className:l,categoryAccessor:c="category",valueAccessor:u="value",orientation:d="vertical",bins:h=25,showIQR:g=!0,valueFormat:f,colorBy:p,colorScheme:y,categoryPadding:v=20,tooltip:m,annotations:b,brush:x,onBrush:k,linkedBrush:w,frameProps:j={},selection:A,linkedHover:S,onObservation:O,onClick:M,hoverHighlight:C,chartId:_,loading:P,emptyContent:L,legendInteraction:T,legendPosition:R,color:B,stroke:D,strokeWidth:I,opacity:N,showCategoryTicks:H,categoryFormat:W}=o,E=i.width,F=i.height,$=i.enableHover,z=i.showGrid,G=i.title,q=i.description,X=i.summary,V=i.accessibleTable,U=i.categoryLabel,K=i.valueLabel,Q=s||[],Z=bi({data:Q,rawData:s,colorBy:p,colorScheme:y,legendInteraction:T,legendPosition:R,selection:A,linkedHover:S,fallbackFields:p?["string"==typeof p?p:""]:["string"==typeof c?c:""],unwrapData:!0,onObservation:O,onClick:M,hoverHighlight:C,chartType:"ViolinPlot",chartId:_,showLegend:i.showLegend,userMargin:a,marginDefaults:i.marginDefaults,loading:P,emptyContent:L,width:E,height:F}),J=kr({brushProp:x,onBrushProp:k,linkedBrush:w,valueAccessor:u});if(Z.earlyReturn)return Z.earlyReturn;const ee=an(),te=t.useMemo(()=>new Map,[Q]),oe=t.useMemo(()=>e=>{const t=p?Y(e,p,Z.colorScale):ln(B,ee,y,void 0,te);return{fill:t,stroke:t,fillOpacity:.6}},[p,Z.colorScale,B,ee,y,te]),ne=t.useMemo(()=>mn(oe,{stroke:D,strokeWidth:I,opacity:N}),[oe,D,I,N]),ie=t.useMemo(()=>Zo(ne,Z.effectiveSelectionHook,Z.resolvedSelection),[ne,Z.effectiveSelectionHook,Z.resolvedSelection]),re=t.useMemo(()=>jr({valueAccessor:u}),[u]),se=In({componentName:"ViolinPlot",data:s,accessors:{categoryAccessor:c,valueAccessor:u}});if(se)return e.jsx(Pn,{componentName:"ViolinPlot",message:se,width:E,height:F});const ae=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"violin"},null!=s&&{data:Q}),{oAccessor:c,rAccessor:u,projection:"horizontal"===d?"horizontal":"vertical",summaryStyle:ie,bins:h,showIQR:g,size:[E,F],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:Z.margin,barPadding:v,enableHover:$}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:i.showAxes,oLabel:U,rLabel:K,rFormat:f}),W&&{oFormat:W}),{showGrid:z,showCategoryTicks:H}),Z.legendBehaviorProps),G&&{title:G}),q&&{description:q}),X&&{summary:X}),void 0!==V&&{accessibleTable:V}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===m?()=>null:jn(m)||re}),(S||O||M||C)&&{customHoverBehavior:Z.customHoverBehavior}),(O||M||S)&&{customClickBehavior:Z.customClickBehavior}),b&&b.length>0&&{annotations:b}),J.brushStreamProps),Object.fromEntries(Object.entries(j).filter(([e])=>"pieceStyle"!==e)));return e.jsx(ii,{componentName:"ViolinPlot",width:E,height:F,children:e.jsx(yr,Object.assign({ref:r},ae))})});Or.displayName="ViolinPlot";const Mr=t.forwardRef(function(o,n){var i;const r=yn(o.mode,{width:o.width,height:o.height,showGrid:null===(i=o.showGrid)||void 0===i||i,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),s=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=s.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=s.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=s.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=s.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=s.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=s.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=s.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:a,margin:l,className:c,categoryAccessor:u="category",valueAccessor:d="value",orientation:h="horizontal",valueFormat:g,colorBy:f,colorScheme:p,sort:y="auto",dotRadius:v=5,categoryPadding:m=10,tooltip:b,annotations:x,frameProps:k={},selection:w,linkedHover:j,onObservation:A,onClick:S,hoverHighlight:O,chartId:M,loading:C,emptyContent:_,legendInteraction:P,legendPosition:L,color:T,stroke:R,strokeWidth:B,opacity:D,categoryFormat:I}=o,N=r.width,H=r.height,W=r.enableHover,E=r.showGrid,F=r.title,$=r.description,z=r.summary,G=r.accessibleTable,q=r.categoryLabel,X=r.valueLabel,V=a||[],U=bi({data:V,rawData:a,colorBy:f,colorScheme:p,legendInteraction:P,legendPosition:L,selection:w,linkedHover:j,fallbackFields:f?["string"==typeof f?f:""]:["string"==typeof u?u:""],unwrapData:!0,onObservation:A,onClick:S,hoverHighlight:O,chartType:"DotPlot",chartId:M,showLegend:r.showLegend,userMargin:l,marginDefaults:r.marginDefaults,loading:C,emptyContent:_,width:N,height:H});if(U.earlyReturn)return U.earlyReturn;const K=un(V,y,d),Q=an(),Z=t.useMemo(()=>new Map,[V]),J=k.pieceStyle,ee=t.useMemo(()=>(e,t)=>{const o={r:v,fillOpacity:.8};if(o.fill=f?Y(e,f,U.colorScale):ln(T,Q,p,void 0,Z),J){const n=J(e,t);n.stroke&&(o.stroke=n.stroke),null!=n.strokeWidth&&(o.strokeWidth=n.strokeWidth),null!=n.strokeOpacity&&(o.strokeOpacity=n.strokeOpacity)}return o},[f,U.colorScale,v,T,Q,p,Z,J]),te=t.useMemo(()=>mn(ee,{stroke:R,strokeWidth:B,opacity:D}),[ee,R,B,D]),oe=t.useMemo(()=>Zo(te,U.effectiveSelectionHook,U.resolvedSelection),[te,U.effectiveSelectionHook,U.resolvedSelection]),ne=t.useMemo(()=>_n({categoryAccessor:u,valueAccessor:d,valueFormat:g}),[u,d,g]),ie=In({componentName:"DotPlot",data:a,accessors:{categoryAccessor:u,valueAccessor:d}});if(ie)return e.jsx(Pn,{componentName:"DotPlot",message:ie,width:N,height:H});const re=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"point"},null!=a&&{data:K}),{oAccessor:u,rAccessor:d,projection:"horizontal"===h?"horizontal":"vertical",pieceStyle:oe,size:[N,H],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:U.margin,barPadding:m,enableHover:W}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:r.showAxes,oLabel:q,rLabel:X,rFormat:g}),I&&{oFormat:I}),{showGrid:E,oSort:y}),U.legendBehaviorProps),F&&{title:F}),$&&{description:$}),z&&{summary:z}),void 0!==G&&{accessibleTable:G}),c&&{className:c}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===b?()=>null:jn(b)||ne}),(j||A||S||O)&&{customHoverBehavior:U.customHoverBehavior}),(A||S||j)&&{customClickBehavior:U.customClickBehavior}),x&&x.length>0&&{annotations:x}),Object.fromEntries(Object.entries(k).filter(([e])=>"pieceStyle"!==e)));return e.jsx(ii,{componentName:"DotPlot",width:N,height:H,children:e.jsx(yr,Object.assign({ref:s},re))})});Mr.displayName="DotPlot";const Cr=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:s,margin:a,className:l,categoryAccessor:c="category",valueAccessor:u="value",orientation:d="horizontal",bins:h=20,amplitude:g=1.5,valueFormat:f,colorBy:p,colorScheme:y,categoryPadding:v=5,tooltip:m,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:j,onClick:A,hoverHighlight:S,chartId:O,loading:M,emptyContent:C,legendInteraction:_,legendPosition:P,color:L,stroke:T,strokeWidth:R,opacity:B,showCategoryTicks:D,categoryFormat:I}=o,N=i.width,H=i.height,W=i.enableHover,E=i.showGrid,F=i.title,$=i.description,z=i.summary,G=i.accessibleTable,q=i.categoryLabel,X=i.valueLabel,V=s||[],U=bi({data:V,rawData:s,colorBy:p,colorScheme:y,legendInteraction:_,legendPosition:P,selection:k,linkedHover:w,fallbackFields:p?["string"==typeof p?p:""]:["string"==typeof c?c:""],unwrapData:!0,onObservation:j,onClick:A,hoverHighlight:S,chartType:"RidgelinePlot",chartId:O,showLegend:i.showLegend,userMargin:a,marginDefaults:i.marginDefaults,loading:M,emptyContent:C,width:N,height:H});if(U.earlyReturn)return U.earlyReturn;const K=an(),Q=t.useMemo(()=>new Map,[V]),Z=t.useMemo(()=>e=>{const t=p?Y(e,p,U.colorScale):ln(L,K,y,void 0,Q);return{fill:t,stroke:t,fillOpacity:.5}},[p,U.colorScale,L,K,y,Q]),J=t.useMemo(()=>mn(Z,{stroke:T,strokeWidth:R,opacity:B}),[Z,T,R,B]),ee=t.useMemo(()=>Zo(J,U.effectiveSelectionHook,U.resolvedSelection),[J,U.effectiveSelectionHook,U.resolvedSelection]),te=t.useMemo(()=>jr(),[]),oe=In({componentName:"RidgelinePlot",data:s,accessors:{categoryAccessor:c,valueAccessor:u}});if(oe)return e.jsx(Pn,{componentName:"RidgelinePlot",message:oe,width:N,height:H});const ne=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"ridgeline"},null!=s&&{data:V}),{oAccessor:c,rAccessor:u,projection:"horizontal"===d?"horizontal":"vertical",summaryStyle:ee,bins:h,size:[N,H],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:U.margin,barPadding:v,enableHover:W}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:i.showAxes,oLabel:q,rLabel:X,rFormat:f}),I&&{oFormat:I}),{showGrid:E,showCategoryTicks:D,oSort:!1,amplitude:g}),U.legendBehaviorProps),F&&{title:F}),$&&{description:$}),z&&{summary:z}),void 0!==G&&{accessibleTable:G}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===m?()=>null:jn(m)||te}),(w||j||A||S)&&{customHoverBehavior:U.customHoverBehavior}),(j||A||w)&&{customClickBehavior:U.customClickBehavior}),b&&b.length>0&&{annotations:b}),Object.fromEntries(Object.entries(x).filter(([e])=>"pieceStyle"!==e)));return e.jsx(ii,{componentName:"RidgelinePlot",width:N,height:H,children:e.jsx(yr,Object.assign({ref:r},ne))})});Cr.displayName="RidgelinePlot";const _r=t.forwardRef(function(o,n){var i,r;const s=yn(o.mode,{width:null!==(i=o.width)&&void 0!==i?i:400,height:null!==(r=o.height)&&void 0!==r?r:400,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,showCategoryTicks:o.showCategoryTicks}),a=t.useRef(null),{data:l,margin:c,className:u,categoryAccessor:d="category",valueAccessor:h="value",colorBy:g,colorScheme:f,startAngle:p=0,cornerRadius:y,tooltip:v,annotations:m,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:j,hoverHighlight:A,chartId:S,loading:O,emptyContent:M,legendInteraction:C,legendPosition:_,color:P,stroke:L,strokeWidth:T,opacity:R}=o,B=s.width,D=s.height,I=s.enableHover,N=s.showLegend,H=s.title,W=s.description,E=s.summary,F=s.accessibleTable,$=l||[],z=g||d,G=void 0===l,q=bi({data:$,rawData:l,colorBy:z,colorScheme:f,legendInteraction:C,legendPosition:_,selection:x,linkedHover:k,fallbackFields:z?["string"==typeof z?z:""]:[],unwrapData:!0,onObservation:w,onClick:j,hoverHighlight:A,chartType:"PieChart",chartId:S,showLegend:N,userMargin:c,marginDefaults:s.marginDefaults,loading:O,emptyContent:M,width:B,height:D});if(q.earlyReturn)return q.earlyReturn;const X=an(),V=t.useMemo(()=>new Map,[$]),U=t.useMemo(()=>(e,t)=>z?q.colorScale?{fill:Y(e,z,q.colorScale)}:{}:{fill:ln(P,X,f,t,V)},[z,q.colorScale,P,X,f,V]),K=t.useMemo(()=>{const e=null==b?void 0:b.pieceStyle;return mn(e&&"function"==typeof e?(t,o)=>Object.assign(Object.assign({},U(t,o)),e(t,o)||{}):U,{stroke:L,strokeWidth:T,opacity:R})},[U,b,L,T,R]),Q=t.useMemo(()=>Zo(K,q.effectiveSelectionHook,q.resolvedSelection),[K,q.effectiveSelectionHook,q.resolvedSelection]),Z=t.useMemo(()=>_n({categoryAccessor:d,valueAccessor:h,groupAccessor:g&&g!==d?g:void 0,groupLabel:"string"==typeof g?g:"group",pieData:!0}),[d,h,g]),J=In({componentName:"PieChart",data:l,accessors:{categoryAccessor:d,valueAccessor:h}}),{effectiveLegendProps:ee,effectiveMargin:te}=mr({ref:n,frameRef:a,isPushMode:G,colorBy:z,colorScheme:f,showLegend:N,legendPosition:_,setup:q}),oe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"pie"},null!=l&&{data:$}),{oAccessor:d,rAccessor:h,projection:"radial",pieceStyle:Q,startAngle:p}),null!=y&&{cornerRadius:y}),{size:[B,D],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:te,enableHover:I}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:!1}),ee),H&&{title:H}),W&&{description:W}),E&&{summary:E}),void 0!==F&&{accessibleTable:F}),u&&{className:u}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===v?()=>null:jn(v)||Z}),(k||w||j||A)&&{customHoverBehavior:q.customHoverBehavior}),(w||j||k)&&{customClickBehavior:q.customClickBehavior}),m&&m.length>0&&{annotations:m}),Object.fromEntries(Object.entries(b).filter(([e])=>"pieceStyle"!==e)));return J?e.jsx(Pn,{componentName:"PieChart",message:J,width:B,height:D}):e.jsx(ii,{componentName:"PieChart",width:B,height:D,children:e.jsx(yr,Object.assign({ref:a},oe))})});_r.displayName="PieChart";const Pr=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,linkedHover:o.linkedHover,showCategoryTicks:o.showCategoryTicks},{width:400,height:400}),r=t.useRef(null),{data:s,margin:a,className:l,categoryAccessor:c="category",valueAccessor:u="value",innerRadius:d,centerContent:h,colorBy:g,colorScheme:f,startAngle:p=0,cornerRadius:y,tooltip:v,annotations:m,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:j,hoverHighlight:A,chartId:S,loading:O,emptyContent:M,legendInteraction:C,legendPosition:_,color:P,stroke:L,strokeWidth:T,opacity:R}=o,B=i.width,D=i.height,I=i.enableHover,N=i.showLegend,H=i.title,W=i.description,E=i.summary,F=i.accessibleTable,$=s||[],z=g||c,G=void 0===s,q=bi({data:$,rawData:s,colorBy:z,colorScheme:f,legendInteraction:C,legendPosition:_,selection:x,linkedHover:k,fallbackFields:z?["string"==typeof z?z:""]:[],unwrapData:!0,onObservation:w,onClick:j,hoverHighlight:A,chartType:"DonutChart",chartId:S,showLegend:N,userMargin:a,marginDefaults:i.marginDefaults,loading:O,emptyContent:M,width:B,height:D});if(q.earlyReturn)return q.earlyReturn;const X=null!=d?d:Math.max(2,.15*Math.min(B,D)),V=an(),U=t.useMemo(()=>new Map,[$]),K=b.pieceStyle,Q=t.useMemo(()=>(e,t)=>{let o;if(o=z?q.colorScale?{fill:Y(e,z,q.colorScale)}:{}:{fill:ln(P,V,f,t,U)},K){const n=K(e,t);n.stroke&&(o.stroke=n.stroke),null!=n.strokeWidth&&(o.strokeWidth=n.strokeWidth),null!=n.strokeOpacity&&(o.strokeOpacity=n.strokeOpacity)}return o},[z,q.colorScale,P,V,f,U,K]),Z=t.useMemo(()=>mn(Q,{stroke:L,strokeWidth:T,opacity:R}),[Q,L,T,R]),J=t.useMemo(()=>Zo(Z,q.effectiveSelectionHook,q.resolvedSelection),[Z,q.effectiveSelectionHook,q.resolvedSelection]),ee=t.useMemo(()=>_n({categoryAccessor:c,valueAccessor:u,groupAccessor:g&&g!==c?g:void 0,groupLabel:"string"==typeof g?g:"group",pieData:!0}),[c,u,g]),te=In({componentName:"DonutChart",data:s,accessors:{categoryAccessor:c,valueAccessor:u}}),{effectiveLegendProps:oe,effectiveMargin:ne}=mr({ref:n,frameRef:r,isPushMode:G,colorBy:z,colorScheme:f,showLegend:N,legendPosition:_,setup:q}),ie=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"donut"},null!=s&&{data:$}),{oAccessor:c,rAccessor:u,projection:"radial",pieceStyle:J,innerRadius:X,startAngle:p}),null!=y&&{cornerRadius:y}),{centerContent:h,size:[B,D],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:ne,enableHover:I}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:!1}),oe),H&&{title:H}),W&&{description:W}),E&&{summary:E}),void 0!==F&&{accessibleTable:F}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===v?()=>null:jn(v)||ee}),(k||w||j||A)&&{customHoverBehavior:q.customHoverBehavior}),(w||j||k)&&{customClickBehavior:q.customClickBehavior}),m&&m.length>0&&{annotations:m}),Object.fromEntries(Object.entries(b).filter(([e])=>"pieceStyle"!==e)));return te?e.jsx(Pn,{componentName:"DonutChart",message:te,width:B,height:D}):e.jsx(ii,{componentName:"DonutChart",width:B,height:D,children:e.jsx(yr,Object.assign({ref:r},ie))})});Pr.displayName="DonutChart";const Lr=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:!1,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,showCategoryTicks:!1}),r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const{data:s,margin:a,className:l,stepAccessor:c="step",valueAccessor:u="value",categoryAccessor:d,colorBy:h,colorScheme:g,orientation:f="horizontal",connectorOpacity:p=.3,showLabels:y=!0,tooltip:v,annotations:m,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:j,hoverHighlight:A,chartId:S,loading:O,emptyContent:M,legendInteraction:C,legendPosition:_,color:P,stroke:L,strokeWidth:T,opacity:R,categoryFormat:B}=o,D="vertical"===f,I=i.width,N=i.height,H=i.enableHover,W=i.title,E=i.description,F=i.summary,$=i.accessibleTable,z=s||[],G=h||d,q=!G,X=bi({data:z,rawData:s,colorBy:G,colorScheme:g,legendInteraction:C,legendPosition:_,selection:x,linkedHover:k,fallbackFields:G?["string"==typeof G?G:""]:[],unwrapData:!0,onObservation:w,onClick:j,hoverHighlight:A,chartType:"FunnelChart",chartId:S,showLegend:i.showLegend,userMargin:a,marginDefaults:D?{top:W?60:40,right:20,bottom:60,left:60}:{top:W?40:10,right:10,bottom:10,left:10},loading:O,emptyContent:M,width:I,height:N});if(X.earlyReturn)return X.earlyReturn;ci("FunnelChart",z,"stepAccessor",c),ci("FunnelChart",z,"valueAccessor",u);const V=an(),U=t.useMemo(()=>new Map,[z]),K=t.useMemo(()=>{if(q)return P||((null==V?void 0:V[0])?V[0]:Array.isArray(g)&&g[0]?g[0]:"#4e79a7")},[q,P,V,g]),Q=b.pieceStyle,Z=t.useMemo(()=>(e,t)=>{const o={};if(o.fill=K||(G?Y(e,G,X.colorScale):ln(P,V,g,t,U)),Q){const n=Q(e,t);n.stroke&&(o.stroke=n.stroke),null!=n.strokeWidth&&(o.strokeWidth=n.strokeWidth),null!=n.strokeOpacity&&(o.strokeOpacity=n.strokeOpacity)}return o},[K,G,X.colorScale,P,V,g,U,Q]),J=t.useMemo(()=>mn(Z,{stroke:L,strokeWidth:T,opacity:R}),[Z,L,T,R]),ee=t.useMemo(()=>Zo(J,X.effectiveSelectionHook,X.resolvedSelection),[J,X.effectiveSelectionHook,X.resolvedSelection]),te=t.useMemo(()=>t=>{var o,n,i,r,s,a;const l=(null==t?void 0:t.data)||t,c=(null==l?void 0:l.__funnelStep)||(null==l?void 0:l.__barFunnelStep)||(null==l?void 0:l.step)||"",u=null!==(i=null!==(n=null!==(o=null==l?void 0:l.__funnelValue)&&void 0!==o?o:null==l?void 0:l.__barFunnelValue)&&void 0!==n?n:null==l?void 0:l.value)&&void 0!==i?i:"",d=null!==(r=null==l?void 0:l.__funnelPercent)&&void 0!==r?r:null==l?void 0:l.__barFunnelPercent,h=null!==(s=null==l?void 0:l.__funnelIsFirstStep)&&void 0!==s?s:null==l?void 0:l.__barFunnelIsFirstStep,g=null==l?void 0:l.__barFunnelIsDropoff,f=null!==(a=null==l?void 0:l.__barFunnelCategory)&&void 0!==a?a:null==l?void 0:l.category,p=null==d||h?"":` (${.05>Math.abs(d-Math.round(d))?Math.round(d)+"%":d.toFixed(1)+"%"})`;return e.jsxs("div",{className:"semiotic-tooltip",style:bn,children:[c&&e.jsx("div",{style:{fontWeight:"bold"},children:c+""}),f&&f!==c&&e.jsx("div",{style:{marginTop:2,opacity:.8},children:f+""}),g&&e.jsx("div",{style:{marginTop:2,fontStyle:"italic",opacity:.7},children:"Dropoff"}),e.jsxs("div",{style:{marginTop:4},children:[u+"",p]})]})},[]),oe=In({componentName:"FunnelChart",data:s,accessors:{stepAccessor:c,valueAccessor:u}});if(oe)return e.jsx(Pn,{componentName:"FunnelChart",message:oe,width:I,height:N});const ne=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:D?"bar-funnel":"funnel"},null!=s&&{data:z}),{oAccessor:c,rAccessor:u}),d&&{stackBy:d}),{projection:D?"vertical":"horizontal",barPadding:D?40:0,pieceStyle:ee,size:[I,N],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:X.margin,enableHover:H}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:D,showCategoryTicks:D}),B&&{oFormat:B}),{showGrid:D}),!D&&{connectorOpacity:p}),{showLabels:y}),X.legendBehaviorProps),W&&{title:W}),E&&{description:E}),F&&{summary:F}),void 0!==$&&{accessibleTable:$}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===v?()=>null:!0===v||null==v?te:jn(v)||te}),(k||w||j||A)&&{customHoverBehavior:X.customHoverBehavior}),(w||j||k)&&{customClickBehavior:X.customClickBehavior}),m&&m.length>0&&{annotations:m}),Object.fromEntries(Object.entries(b).filter(([e])=>"pieceStyle"!==e)));return e.jsx(ii,{componentName:"FunnelChart",width:I,height:N,children:e.jsx(yr,Object.assign({ref:r},ne))})});Lr.displayName="FunnelChart";const Tr={RdBu:s.interpolateRdBu,PiYG:s.interpolatePiYG,PRGn:s.interpolatePRGn,BrBG:s.interpolateBrBG,RdYlBu:s.interpolateRdYlBu,RdYlGn:s.interpolateRdYlGn,Spectral:s.interpolateSpectral},Rr="__likert_neutral_neg",Br="__likert_neutral_pos";function Dr(e,t){if("function"==typeof e)return e;const o=e||t;return e=>e[o]}function Ir(e,t,o,n,i,r){const s=new Map,a=new Set(t);for(const l of e){const e=o(l);s.has(e)||s.set(e,new Map);const c=s.get(e);if(n){const e=n(l);if(null==e||!Number.isFinite(e))continue;if(!Number.isInteger(e)){"production"!==process.env.NODE_ENV&&console.warn("[LikertChart] Ignoring non-integer Likert score:",e);continue}const o=e-1;if(0>o||o>=t.length)continue;const i=t[o];c.set(i,(c.get(i)||0)+1)}else if(i&&r){const e=i(l),t=r(l);if(!a.has(e))continue;c.set(e,(c.get(e)||0)+(Number.isFinite(t)?t:0))}}const l=[];for(const[e,o]of s){let n=0;for(const e of t)n+=o.get(e)||0;if(0!==n)for(let i=0;t.length>i;i++){const r=t[i],s=o.get(r)||0;l.push({__likertCategory:e,__likertLevel:r,__likertLevelLabel:r,__likertCount:s,__likertPct:s/n*100,__likertLevelIndex:i})}}return l}function Nr(e,t){const o=t.length,n=o%2!=0,i=Math.floor(o/2),r=[];for(const t of e){const e=t.__likertLevelIndex;if(n&&e===i){const e=t.__likertPct/2;r.push(Object.assign(Object.assign({},t),{__likertLevel:Rr,__likertPct:-e})),r.push(Object.assign(Object.assign({},t),{__likertLevel:Br,__likertPct:e}))}else r.push(i>e?Object.assign(Object.assign({},t),{__likertPct:-t.__likertPct}):t)}return r}function Hr(e,t){const o=t.length,n=o%2!=0,i=Math.floor(o/2),r=new Map;for(const t of e){const e=r.get(t.__likertCategory)||[];e.push(t),r.set(t.__likertCategory,e)}const s=[];for(const[,e]of r){const t=new Map;let r,a;for(const o of e)o.__likertLevel===Rr?r=o:o.__likertLevel===Br?a=o:t.set(o.__likertLevelIndex,o);n&&r&&s.push(r);for(let e=i-1;e>=0;e--){const o=t.get(e);o&&s.push(o)}n&&a&&s.push(a);for(let e=n?i+1:i;o>e;e++){const o=t.get(e);o&&s.push(o)}}return s}const Wr=t.forwardRef(function(o,n){const i=yn(o.mode,{width:o.width,height:o.height,showGrid:o.showGrid,enableHover:o.enableHover,showLegend:o.showLegend,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,categoryLabel:o.categoryLabel,valueLabel:o.valueLabel,showCategoryTicks:o.showCategoryTicks,orientation:o.orientation}),r=t.useRef(null),{data:s,margin:a,className:l,categoryAccessor:c="question",valueAccessor:u,levelAccessor:d,countAccessor:h="count",levels:g,orientation:f="horizontal",colorScheme:p,barPadding:v=20,tooltip:m,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:j,onClick:A,hoverHighlight:S,chartId:O,valueFormat:M,loading:C,emptyContent:_,legendInteraction:P,legendPosition:L,categoryFormat:T,stroke:R,strokeWidth:B,opacity:D}=o,I=i.width,N=i.height,H=i.enableHover,W=i.showGrid,E=i.showLegend,F=i.title,$=i.description,z=i.summary,Y=i.accessibleTable,G=i.categoryLabel,q=i.valueLabel,X="horizontal"===f,V=void 0===s,U=!d,K=function(){var e;const t=rn();return(null===(e=null==t?void 0:t.colors)||void 0===e?void 0:e.diverging)||void 0}(),Q=t.useMemo(()=>p&&Array.isArray(p)&&p.length>=g.length?p:function(e,t){if(0>=e)return[];if(t){const o=Tr[t];if(o){if(1===e)return[o(.5)];const t=[];for(let n=0;e>n;n++)t.push(o(n/(e-1)));return t}}const o=["#da1e28","#ff8389","#ffb3b8"],n=["#a6c8ff","#4589ff","#0043ce"],i="#a8a8a8";if(1===e)return[i];const r=e%2!=0,s=Math.floor(e/2),a=[];for(let e=0;s>e;e++)a.push(o[Math.min(Math.floor(e*o.length/s),o.length-1)]);r&&a.push(i);for(let e=0;s>e;e++)a.push(n[Math.min(Math.floor(e*n.length/s),n.length-1)]);return a}(g.length,K),[p,g.length,K]),Z=t.useMemo(()=>{const e=new Map;for(let t=0;g.length>t;t++)e.set(g[t],Q[t]||"#888");return e},[g,Q]),{processedData:J,reAggregate:ee,accumulatorRef:te}=function({data:e,levels:o,categoryAccessor:n,valueAccessor:i,levelAccessor:r,countAccessor:s,isDiverging:a,frameRef:l}){const c=!r,u=t.useMemo(()=>Dr(n,"question"),[n]),d=t.useMemo(()=>c?Dr(i,"score"):null,[c,i]),h=t.useMemo(()=>c?null:Dr(r,"level"),[c,r]),g=t.useMemo(()=>c?null:Dr(s,"count"),[c,s]),f=e||[],p=t.useRef([]),y=t.useMemo(()=>{if(0===f.length)return[];let e=Ir(f,o,u,d,h,g);return a&&(e=Nr(e,o),e=Hr(e,o)),e},[f,o,u,d,h,g,a]),v=t.useCallback(e=>{var t;let n=Ir(e,o,u,d,h,g);a&&(n=Nr(n,o),n=Hr(n,o)),null===(t=l.current)||void 0===t||t.replace(n)},[o,u,d,h,g,a,l]);return{processedData:y,reAggregate:v,accumulatorRef:p}}({data:s,levels:g,categoryAccessor:c,valueAccessor:u,levelAccessor:d,countAccessor:h,isDiverging:X,frameRef:r}),oe="__likertLevelLabel",ne=vi({isPushMode:V,colorBy:oe,colorScheme:Q,showLegend:E,legendPosition:L}),ie=t.useCallback(ne.wrapPush(e=>{te.current.push(e),ee(te.current)}),[ne.wrapPush,ee,te]),re=t.useCallback(ne.wrapPushMany(e=>{te.current.push(...e),ee(te.current)}),[ne.wrapPushMany,ee,te]);t.useImperativeHandle(n,()=>({push:ie,pushMany:re,remove:e=>{var t,o;return null!==(o=null===(t=r.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=r.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;te.current=[],ne.resetCategories(),null===(e=r.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}),[ie,re,ne.resetCategories,te]);const se=bi({data:J,rawData:s,colorBy:oe,colorScheme:Q,legendInteraction:P,legendPosition:L,selection:k,linkedHover:w,fallbackFields:["__likertLevelLabel"],unwrapData:!0,onObservation:j,onClick:A,hoverHighlight:S,chartType:"LikertChart",chartId:O,showLegend:E,userMargin:a,marginDefaults:i.marginDefaults,loading:C,emptyContent:_,width:I,height:N});if(se.earlyReturn)return se.earlyReturn;const ae=t.useMemo(()=>{const e=g.length;return e%2!=0&&Z.get(g[Math.floor(e/2)])||"#888"},[g,Z]),le=x.pieceStyle,ce=t.useMemo(()=>(e,t)=>{var o,n;const i=e.__likertLevelLabel||(null===(o=e.data)||void 0===o?void 0:o.__likertLevelLabel),r=e.__likertLevel||(null===(n=e.data)||void 0===n?void 0:n.__likertLevel);let s;if(r===Rr||r===Br)s={fill:ae};else{const e=i||r;s=e&&Z.has(e)?{fill:Z.get(e)}:{fill:"#888"}}if(le){const o=le(e,t);o.stroke&&(s.stroke=o.stroke),null!=o.strokeWidth&&(s.strokeWidth=o.strokeWidth),null!=o.strokeOpacity&&(s.strokeOpacity=o.strokeOpacity)}return s},[Z,ae,le]),ue=t.useMemo(()=>mn(ce,{stroke:R,strokeWidth:B,opacity:D}),[ce,R,B,D]),de=t.useMemo(()=>Zo(ue,se.effectiveSelectionHook,se.resolvedSelection),[ue,se.effectiveSelectionHook,se.resolvedSelection]),he=t.useMemo(()=>{const e=g.length;return e%2!=0?g[Math.floor(e/2)]:""},[g]),ge=t.useMemo(()=>e=>{const t=e.data||e,o=t.__likertLevel||"Unknown",n=o===Rr||o===Br?he:o,i=t.__likertCategory||"",r=Math.abs(t.__likertPct||0),s=o===Rr||o===Br?2*r:r,a=t.__likertCount||0;return y.createElement("div",{className:"semiotic-tooltip",style:bn},y.createElement("div",{style:{fontWeight:"bold"}},i),y.createElement("div",{style:{marginTop:4}},`${n}: ${s.toFixed(1)}% (n=${a})`))},[he]),fe=t.useMemo(()=>{if(!g||2>g.length)return"LikertChart requires `levels` with at least 2 entries.";if(u&&d)return"LikertChart: provide either `valueAccessor` (raw responses) or `levelAccessor` + `countAccessor` (pre-aggregated), not both.";if(d&&!h)return"LikertChart: pre-aggregated mode requires both `levelAccessor` and `countAccessor`.";if(void 0!==s&&0===s.length)return null;const e={categoryAccessor:c};return U?u&&(e.valueAccessor=u):(d&&(e.levelAccessor=d),h&&(e.countAccessor=h)),In({componentName:"LikertChart",data:s,accessors:e,requiredProps:{levels:g}})},[s,c,u,d,h,g,U]),pe=t.useMemo(()=>[{styleFn:e=>({fill:Z.get(e.label)||"#888"}),items:g.map(e=>({label:e})),label:""}],[g,Z]),ye=t.useMemo(()=>!1!==E?Object.assign(Object.assign({},se.legendBehaviorProps),{legend:{legendGroups:pe},legendPosition:L||se.legendPosition||"bottom"}):se.legendBehaviorProps,[se.legendBehaviorProps,se.legendPosition,L,E,pe]),ve=t.useMemo(()=>{const e=Object.assign({},se.margin);if(V&&!1!==E){const t=L||"bottom";"bottom"===t&&80>e.bottom?e.bottom=80:"top"===t&&50>e.top?e.top=50:"right"===t&&110>e.right?e.right=110:"left"===t&&110>e.left&&(e.left=110)}else if(ne.streamingMarginAdjust)for(const[t,o]of Object.entries(ne.streamingMarginAdjust))o>e[t]&&(e[t]=o);return X&&100>e.left&&(e.left=100),e},[se.margin,ne.streamingMarginAdjust,X,V,E,L]),me=t.useMemo(()=>M||(X?e=>Math.abs(Number(e)).toFixed(0)+"%":e=>Number(e).toFixed(0)+"%"),[X,M]),be=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bar"},null!=s&&{data:J}),{oAccessor:"__likertCategory",rAccessor:"__likertPct",stackBy:"__likertLevel",normalize:!1,projection:X?"horizontal":"vertical",pieceStyle:de,size:[I,N],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:ve,barPadding:v,enableHover:H}),o.dataIdAccessor&&{dataIdAccessor:o.dataIdAccessor}),{showAxes:i.showAxes,oLabel:G,rLabel:q||(X?void 0:"Percentage"),rFormat:me}),T&&{oFormat:T}),{showGrid:W}),ye),F&&{title:F}),$&&{description:$}),z&&{summary:z}),void 0!==Y&&{accessibleTable:Y}),l&&{className:l}),null!=o.animate&&{animate:o.animate}),{tooltipContent:!1===m?()=>null:!0===m?ge:jn(m)||ge}),(w||j||A||S)&&{customHoverBehavior:se.customHoverBehavior}),(j||A||w)&&{customClickBehavior:se.customClickBehavior}),b&&b.length>0&&{annotations:b}),Object.fromEntries(Object.entries(x).filter(([e])=>"pieceStyle"!==e)));return fe?e.jsx(Pn,{componentName:"LikertChart",message:fe,width:I,height:N}):e.jsx(ii,{componentName:"LikertChart",width:I,height:N,children:e.jsx(yr,Object.assign({ref:r},be))})});Wr.displayName="LikertChart";const Er={weightChange:.1,newEdge:.5,newNode:1,threshold:3,transitionDuration:500},Fr={radius:3,opacity:.7,speedMultiplier:1,maxPerEdge:50,spawnRate:.1};class $r{constructor(e){this.capacity=e,this.particles=Array(e),this._freeIndices=Array(e);for(let t=0;e>t;t++)this.particles[t]={t:0,offset:0,edgeIndex:0,active:!1,x:0,y:0},this._freeIndices[t]=e-1-t}spawn(e){const t=this._freeIndices.pop();if(void 0===t)return null;const o=this.particles[t];return o.active=!0,o.t=0,o.offset=Math.random()-.5,o.edgeIndex=e,o.x=0,o.y=0,o}step(e,t,o,n){var i;for(let r=0;this.capacity>r;r++){const s=this.particles[r];if(!s.active)continue;const a=o[s.edgeIndex];if(!a||!a.bezier){s.active=!1,this._freeIndices.push(r);continue}const l=n&&null!==(i=n[s.edgeIndex])&&void 0!==i?i:1;s.t+=e*t*l*(a.bezier.circular?.3:1),1>s.t?zr(a.bezier,s.t,s.offset,s):(s.active=!1,this._freeIndices.push(r))}}countForEdge(e){let t=0;for(let o=0;this.capacity>o;o++)this.particles[o].active&&this.particles[o].edgeIndex===e&&t++;return t}clear(){for(let e=0;this.capacity>e;e++)this.particles[e].active=!1;this._freeIndices.length=0;for(let e=this.capacity-1;e>=0;e--)this._freeIndices.push(e)}resize(e){if(this.capacity>=e)return;const t=this.particles;this.particles=Array(e);for(let o=0;e>o;o++)t.length>o?this.particles[o]=t[o]:(this.particles[o]={t:0,offset:0,edgeIndex:0,active:!1,x:0,y:0},this._freeIndices.push(o));this.capacity=e}}function zr(e,t,o,n){if(e.circular&&e.segments)return void function(e,t,o,n,i){const r=e.length,s=t*r,a=Math.min(Math.floor(s),r-1),l=s-a,[c,u,d,h]=e[a];Yr(c,u,d,h,l,i);const g=h.x-c.x,f=h.y-c.y,p=Math.sqrt(g*g+f*f);if(p>.001){const e=g/p;i.x+=-f/p*o*n*2,i.y+=e*o*n*2}}(e.segments,t,o,e.halfWidth,n);if(!e.points)return n.x=0,void(n.y=0);const[i,r,s,a]=e.points;Yr(i,r,s,a,t,n);const l=a.x-i.x,c=a.y-i.y,u=Math.sqrt(l*l+c*c);if(u>.001){const t=l/u;n.x+=-c/u*o*e.halfWidth*2,n.y+=t*o*e.halfWidth*2}}function Yr(e,t,o,n,i,r){const s=1-i,a=s*s,l=a*s,c=i*i,u=c*i;r.x=l*e.x+3*a*i*t.x+3*s*c*o.x+u*n.x,r.y=l*e.y+3*a*i*t.y+3*s*c*o.y+u*n.y}function Gr(e,t){var o=e.get(t);if(!o)throw Error("missing: "+t);return o}function qr(e,t){var o,n=[],i=[],r=[],s={},a=[];function l(e){r[e]=!1,s.hasOwnProperty(e)&&Object.keys(s[e]).forEach(function(t){delete s[e][t],r[t]&&l(t)})}function c(e){var t,n,d=!1;for(i.push(e),r[e]=!0,t=0;a[e].length>t;t++)(n=a[e][t])===o?(u(o,i),d=!0):r[n]||(d=c(n));if(d)l(e);else for(t=0;a[e].length>t;t++){var h=s[n=a[e][t]];h||(s[n]=h={}),h[n]=!0}return i.pop(),d}function u(e,t){var o=[].concat(t).concat(e);n.push(o)}function d(t){!function(t){for(var o=0;e.length>o;o++)o>=t&&e[o]||(e[o]=[]),e[o]=e[o].filter(function(e){return e>=t})}(t);for(var o,n=function(e){for(var t=e.length,o=Array(t),n=Array(t),i=Array(t),r=Array(t),s=Array(t),a=Array(t),l=0;t>l;++l)o[l]=-1,n[l]=0,i[l]=!1,r[l]=0,s[l]=-1,a[l]=[];var c,u=0,d=[],h=[];function g(t){var l=[t],c=[t];for(o[t]=n[t]=u,i[t]=!0,u+=1;c.length>0;){var g=e[t=c[c.length-1]];if(g.length>r[t]){for(var f=r[t];g.length>f;++f){var p=g[f];if(0>o[p]){o[p]=n[p]=u,i[p]=!0,u+=1,l.push(p),c.push(p);break}i[p]&&(n[t]=0|Math.min(n[t],n[p])),0>s[p]||a[t].push(s[p])}r[t]=f}else{if(n[t]===o[t]){var y=[],v=[],m=0;for(f=l.length-1;f>=0;--f){var b=l[f];if(i[b]=!1,y.push(b),v.push(a[b]),m+=a[b].length,s[b]=d.length,b===t){l.length=f;break}}d.push(y);var x=Array(m);for(f=0;v.length>f;f++)for(var k=0;v[f].length>k;k++)x[--m]=v[f][k];h.push(x)}c.pop()}}}for(l=0;t>l;++l)0>o[l]&&g(l);for(l=0;h.length>l;l++){var f=h[l];if(0!==f.length){f.sort(function(e,t){return e-t}),c=[f[0]];for(var p=1;f.length>p;p++)f[p]!==f[p-1]&&c.push(f[p]);h[l]=c}}return{components:d,adjacencyList:h}}(e),i=n.components.filter(function(e){return e.length>1}),r=1/0,s=0;i.length>s;s++)for(var a=0;i[s].length>a;a++)r>i[s][a]&&(r=i[s][a],o=s);var l=i[o];if(!l)return!1;var c=e.map(function(e,t){return-1===l.indexOf(t)?[]:e.filter(function(e){return-1!==l.indexOf(e)})});return{leastVertex:r,adjList:c}}o=0;for(var h=e.length;h>o;){var g=d(o);if(o=g.leastVertex,a=g.adjList){for(var f=0;a.length>f;f++)for(var p=0;a[f].length>p;p++){var y=a[f][p];r[+y]=!1,s[y]={}}c(o),o+=1}else o=h}return n}function Xr(e){return e.y0-e.y1>0?"up":"down"}function Vr(e,t){return t(e.source)==t(e.target)}function Ur(e){var t=0;e.source.sourceLinks.forEach(function(e){t=e.circular?t+1:t});var o=0;return e.target.targetLinks.forEach(function(e){o=e.circular?o+1:o}),1>=t&&1>=o}function Kr(e){return e.target.x0-e.source.x1}function Qr(e,t){var o=Jr(e),n=Kr(t)/Math.tan(o);return"up"==Xr(e)?e.y1-n:e.y1+n}function Zr(e,t){var o=Jr(e),n=Kr(t)/Math.tan(o);return"up"==Xr(e)?e.y1+n:e.y1-n}function Jr(e){var t=Math.abs(e.y1-e.y0);return Math.atan(Math.abs(e.target.x0-e.source.x1)/t)}function es(e,t){return t(e)}function ts(e){return ns(e.source)}function os(e){return ns(e.target)}function ns(e){return(e.y0+e.y1)/2}function is(e){return e.virtual?0:e.value}function rs(e,t){var o=0;e.sourceLinks.forEach(function(e){o=e.circular&&!Vr(e,t)?o+1:o});var n=0;return e.targetLinks.forEach(function(e){n=e.circular&&!Vr(e,t)?n+1:n}),o+n}function ss(e){return e.target.depth}function as(e,t){return e.sourceLinks.length?e.depth:t-1}function ls(e,t){return e.y0-t.y0}function cs(e,t){return t.y0-e.y0}function us(e,t){return e.y1-t.y1}function ds(e,t){return t.y1-e.y1}function hs(e,t){return fs(e.source,t.source)||e.index-t.index}function gs(e,t){return fs(e.target,t.target)||e.index-t.index}function fs(e,t){return e.partOfCycle===t.partOfCycle?e.y0-t.y0:"top"===e.circularLinkType||"bottom"===t.circularLinkType?-1:1}function ps(e,t){return ys(e)==ys(t)?"bottom"==e.circularLinkType?cs(e,t):ls(e,t):ys(t)-ys(e)}function ys(e){return e.target.column-e.source.column}function vs(e,t){return ms(e)==ms(t)}function ms(e){return e.y0-e.y1>0?"up":"down"}function bs(e,t,o,n,i){let r=e;var s=Math.max(8,.15*(r.y1-r.y0));r.links.forEach(function(e){e.circular&&(e._circularWidth=Math.min(e.width,s))});var l=a.min(r.links,function(e){return e.source.y0});r.links.forEach(function(e){e.circular&&(e.circularPathData={})});var c=r.links.filter(function(e){return e.circular});return c.sort(function(e,t){return t.value-e.value}),c.forEach(function(e,t){e._circularStub=t>=4}),xs(r.links.filter(function(e){return"top"==e.circularLinkType}),t,o),xs(r.links.filter(function(e){return"bottom"==e.circularLinkType}),t,o),r.links.forEach(function(e){if(e.circular){if(e.circularPathData.arcRadius=e._circularWidth+n,e.circularPathData.rightNodeBuffer=5,e.circularPathData.leftNodeBuffer=5,e.circularPathData.sourceWidth=e.source.x1-e.source.x0,e.circularPathData.sourceX=e.source.x0+e.circularPathData.sourceWidth,e.circularPathData.targetX=e.target.x0,e.circularPathData.sourceY=e.y0,e.circularPathData.targetY=e.y1,Vr(e,t)&&Ur(e))e.circularPathData.rightSmallArcRadius=n+e._circularWidth/2,e.circularPathData.rightLargeArcRadius=n+e._circularWidth/2,e.circularPathData.leftSmallArcRadius=n+e._circularWidth/2,e.circularPathData.leftLargeArcRadius=n+e._circularWidth/2,"bottom"==e.circularLinkType?(e.circularPathData.verticalFullExtent=e.source.y1+i+e.circularPathData.verticalBuffer,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius):(e.circularPathData.verticalFullExtent=e.source.y0-i-e.circularPathData.verticalBuffer,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius);else{var s=e.source.column,a=e.circularLinkType,c=r.links.filter(function(e){return e.source.column==s&&e.circularLinkType==a});c.sort("bottom"==e.circularLinkType?cs:ls);var u=0;c.forEach(function(t,i){t.circularLinkID==e.circularLinkID&&(e.circularPathData.rightSmallArcRadius=n+e._circularWidth/2+u,e.circularPathData.rightLargeArcRadius=n+e._circularWidth/2+i*o+u),u+=t._circularWidth||t.width}),s=e.target.column,(c=r.links.filter(function(e){return e.target.column==s&&e.circularLinkType==a})).sort("bottom"==e.circularLinkType?ds:us),u=0,c.forEach(function(t,i){t.circularLinkID==e.circularLinkID&&(e.circularPathData.leftSmallArcRadius=n+e._circularWidth/2+u,e.circularPathData.leftLargeArcRadius=n+e._circularWidth/2+i*o+u),u+=t._circularWidth||t.width}),"bottom"==e.circularLinkType?(e.circularPathData.verticalFullExtent=Math.max(r.y1,e.source.y1,e.target.y1)+i+e.circularPathData.verticalBuffer,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius):(e.circularPathData.verticalFullExtent=l-i-e.circularPathData.verticalBuffer,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius)}e.circularPathData.rightInnerExtent=e.circularPathData.sourceX+e.circularPathData.rightNodeBuffer,e.circularPathData.leftInnerExtent=e.circularPathData.targetX-e.circularPathData.leftNodeBuffer,e.circularPathData.rightFullExtent=e.circularPathData.sourceX+e.circularPathData.rightLargeArcRadius+e.circularPathData.rightNodeBuffer,e.circularPathData.leftFullExtent=e.circularPathData.targetX-e.circularPathData.leftLargeArcRadius-e.circularPathData.leftNodeBuffer}e.path=e.circular?function(e){return"top"==e.circularLinkType?"M"+e.circularPathData.sourceX+" "+e.circularPathData.sourceY+" L"+e.circularPathData.rightInnerExtent+" "+e.circularPathData.sourceY+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightSmallArcRadius+" 0 0 0 "+e.circularPathData.rightFullExtent+" "+(e.circularPathData.sourceY-e.circularPathData.rightSmallArcRadius)+" L"+e.circularPathData.rightFullExtent+" "+e.circularPathData.verticalRightInnerExtent+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightLargeArcRadius+" 0 0 0 "+e.circularPathData.rightInnerExtent+" "+e.circularPathData.verticalFullExtent+" L"+e.circularPathData.leftInnerExtent+" "+e.circularPathData.verticalFullExtent+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftLargeArcRadius+" 0 0 0 "+e.circularPathData.leftFullExtent+" "+e.circularPathData.verticalLeftInnerExtent+" L"+e.circularPathData.leftFullExtent+" "+(e.circularPathData.targetY-e.circularPathData.leftSmallArcRadius)+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftSmallArcRadius+" 0 0 0 "+e.circularPathData.leftInnerExtent+" "+e.circularPathData.targetY+" L"+e.circularPathData.targetX+" "+e.circularPathData.targetY:"M"+e.circularPathData.sourceX+" "+e.circularPathData.sourceY+" L"+e.circularPathData.rightInnerExtent+" "+e.circularPathData.sourceY+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightSmallArcRadius+" 0 0 1 "+e.circularPathData.rightFullExtent+" "+(e.circularPathData.sourceY+e.circularPathData.rightSmallArcRadius)+" L"+e.circularPathData.rightFullExtent+" "+e.circularPathData.verticalRightInnerExtent+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightLargeArcRadius+" 0 0 1 "+e.circularPathData.rightInnerExtent+" "+e.circularPathData.verticalFullExtent+" L"+e.circularPathData.leftInnerExtent+" "+e.circularPathData.verticalFullExtent+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftLargeArcRadius+" 0 0 1 "+e.circularPathData.leftFullExtent+" "+e.circularPathData.verticalLeftInnerExtent+" L"+e.circularPathData.leftFullExtent+" "+(e.circularPathData.targetY+e.circularPathData.leftSmallArcRadius)+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftSmallArcRadius+" 0 0 1 "+e.circularPathData.leftInnerExtent+" "+e.circularPathData.targetY+" L"+e.circularPathData.targetX+" "+e.circularPathData.targetY}(e):function(e){var t=e.source.x1,o=e.y0,n=e.target.x0,i=e.y1,r=(t+n)/2;return"M"+t+","+o+"C"+r+","+o+" "+r+","+i+" "+n+","+i}(e)}),r}function xs(e,t,o){e.sort(ps);var n=e.filter(function(e){return!e._circularStub});return e.forEach(function(e,i){var r=0;if(e._circularStub)e.circularPathData.verticalBuffer=0;else if(Vr(e,t)&&Ur(e))e.circularPathData.verticalBuffer=r+e._circularWidth/2;else{for(var s=0;n.length>s;s++){var a=n[s];if(a!==e&&a.circularPathData&&void 0!==a.circularPathData.verticalBuffer&&ks(e,a)){var l=a.circularPathData.verticalBuffer+(a._circularWidth||a.width)/2+o;r=l>r?l:r}}e.circularPathData.verticalBuffer=r+e._circularWidth/2}}),e}function ks(e,t){return e.source.column>=t.target.column&&t.source.column>=e.target.column}function ws(e){return function(){return e}}function js(e){return e.index}function As(e){return e.nodes}function Ss(e){return e.links}function Os(e,t,o){var n=a.groups(e.nodes,function(e){return e.column}).sort(function(e,t){return e[0]-t[0]}).map(function(e){return e[1]});n.forEach(function(i,r){var s=i.length;if(t)i.sort(t);else if(r>0){var a=new Map;i.forEach(function(e,t){var o,n,i,r=(n=0,i=0,(o=e).targetLinks.forEach(function(e){if(!e.circular){var t=e.value||1;i+=ns(e.source)*t,n+=t}}),o.sourceLinks.forEach(function(e){if(!e.circular){var t=e.value||1;i+=ns(e.target)*t,n+=t}}),n>0?i/n:NaN);a.set(e,{bc:r,idx:t})}),i.sort(function(e,t){var o=a.get(e),n=a.get(t),i=o.bc,r=n.bc;if(e.circularLinkType!==t.circularLinkType){if("top"==e.circularLinkType&&"bottom"==t.circularLinkType)return-1;if("bottom"==e.circularLinkType&&"top"==t.circularLinkType)return 1;if("top"==e.circularLinkType)return-1;if("top"==t.circularLinkType)return 1;if("bottom"==e.circularLinkType)return 1;if("bottom"==t.circularLinkType)return-1}return isNaN(i)||isNaN(r)?isNaN(i)?isNaN(r)?o.idx-n.idx:1:-1:i-r})}else i.sort(function(e,t){return e.circularLinkType==t.circularLinkType?rs(t,o)-rs(e,o):"top"==e.circularLinkType&&"bottom"==t.circularLinkType||"top"==e.circularLinkType&&0==t.partOfCycle||0==e.partOfCycle&&"bottom"==t.circularLinkType?-1:0});i.forEach(function(t,i){t.depth==n.length-1&&1==s||0==t.depth&&1==s?(t.y0=e.y1/2-t.value*e.ky,t.y1=t.y0+t.value*e.ky):t.partOfCycle?0==rs(t,o)?(t.y0=e.y1/2+i,t.y1=t.y0+t.value*e.ky):"top"==t.circularLinkType?(t.y0=e.y0+i,t.y1=t.y0+t.value*e.ky):(t.y0=e.y1-t.value*e.ky-i,t.y1=t.y0+t.value*e.ky):0==e.y0||0==e.y1?(t.y0=(e.y1-e.y0)/s*i,t.y1=t.y0+t.value*e.ky):(t.y0=(e.y1-e.y0)/2-s/2+i,t.y1=t.y0+t.value*e.ky)})})}function Ms(e,t,o,n,i,r){var s=a.groups(e.nodes,function(e){return e.column}).sort(function(e,t){return e[0]-t[0]}).map(function(e){return e[1]});d();for(var l=1,c=r;c>0;--c)u(l*=.99,o),d();function u(t,o){var n=s.length;s.forEach(function(i){var r=i.length,s=i[0].depth;i.forEach(function(i){var l;if(i.sourceLinks.length||i.targetLinks.length)if(i.partOfCycle&&rs(i,o)>0){var c=a.mean(i.sourceLinks,os),u=a.mean(i.targetLinks,ts),d=c&&u?(c+u)/2:c||u;if(d){var h=(d-ns(i))*t*.3;i.y0+=h,i.y1+=h}}else if(0==s&&1==r)i.y0=e.y1/2-(l=i.y1-i.y0)/2,i.y1=e.y1/2+l/2;else if(s==n-1&&1==r)i.y0=e.y1/2-(l=i.y1-i.y0)/2,i.y1=e.y1/2+l/2;else if(1==i.targetLinks.length&&1==i.targetLinks[0].source.sourceLinks.length)l=i.y1-i.y0,i.y0=i.targetLinks[0].source.y0,i.y1=i.y0+l;else{var g=a.mean(i.sourceLinks,os),f=a.mean(i.targetLinks,ts),p=((g&&f?(g+f)/2:g||f)-ns(i))*t;i.y0+=p,i.y1+=p}})})}function d(){s.forEach(function(o){var r,s,a,l=e.y0,c=o.length;for(o.sort(t||fs),a=0;c>a;++a)(s=l-(r=o[a]).y0)>0&&(r.y0+=s,r.y1+=s),l=r.y1+n;if((s=l-n-e.y1)>0)for(l=r.y0-=s,r.y1-=s,a=c-2;a>=0;--a)(s=(r=o[a]).y1+i-l)>0&&(r.y0-=s,r.y1-=s),l=r.y0})}}function Cs(e){e.nodes.forEach(function(e){e.sourceLinks.sort(gs),e.targetLinks.sort(hs)}),e.nodes.forEach(function(e){var t=e.y0,o=t,n=e.y1,i=n;e.sourceLinks.forEach(function(e){e.circular?(e.y0=n-e.width/2,n-=e.width):(e.y0=t+e.width/2,t+=e.width)}),e.targetLinks.forEach(function(e){e.circular?(e.y1=i-e.width/2,i-=e.width):(e.y1=o+e.width/2,o+=e.width)})})}function _s(){var e=0,t=0,o=1,n=1,i=24,r=8,s=null,l=js,c=as,u=void 0,d=32,h=2,g=As,f=Ss;function p(){var p={nodes:g.apply(null,arguments),links:f.apply(null,arguments)};return function(g){g.x0=e,g.y0=t,g.x1=o,g.y1=n,g.py=0,function(e,t){e.nodes.forEach(function(e,t){e.index=t,e.sourceLinks=[],e.targetLinks=[]});var o=function(e,t){var o=new Map;return a.group(e,t).forEach(function(e,t){o.set(t,e[0])}),o}(e.nodes,t);e.links.forEach(function(e,t){e.index=t;var n=e.source,i=e.target;"object"!=typeof n&&(n=e.source=Gr(o,n)),"object"!=typeof i&&(i=e.target=Gr(o,i)),n.sourceLinks.push(e),i.targetLinks.push(e)})}(g,l),function(e,t){var o=0;if(null==t){for(var n=[],i=0;e.links.length>i;i++){var r=e.links[i],s=r.source.index,a=r.target.index;n[s]||(n[s]=[]),n[a]||(n[a]=[]),-1===n[s].indexOf(a)&&n[s].push(a)}var l=qr(n);l.sort(function(e,t){return e.length-t.length});var c={};for(i=0;l.length>i;i++){var u=l[i].slice(-2);c[u[0]]||(c[u[0]]={}),c[u[0]][u[1]]=!0}e.links.forEach(function(e){var t=e.target.index,n=e.source.index;t===n||c[n]&&c[n][t]?(e.circular=!0,e.circularLinkID=o++):e.circular=!1})}else e.links.forEach(function(e){t(e.source)<t(e.target)?e.circular=!1:(e.circular=!0,e.circularLinkID=o++)})}(g,u),function(e,t){var o=0,n=0;e.links.forEach(function(i){i.circular&&(i.circularLinkType=i.source.circularLinkType||i.target.circularLinkType?i.source.circularLinkType?i.source.circularLinkType:i.target.circularLinkType:n>o?"top":"bottom","top"==i.circularLinkType?o++:n++,e.nodes.forEach(function(e){es(e,t)!=es(i.source,t)&&es(e,t)!=es(i.target,t)||(e.circularLinkType=i.circularLinkType)}))}),e.links.forEach(function(e){e.circular&&(e.source.circularLinkType==e.target.circularLinkType&&(e.circularLinkType=e.source.circularLinkType),Vr(e,t)&&(e.circularLinkType=e.source.circularLinkType))})}(g,l),function(e){e.nodes.forEach(function(e){e.partOfCycle=!1,e.value=Math.max(a.sum(e.sourceLinks,is),a.sum(e.targetLinks,is)),e.sourceLinks.forEach(function(t){t.circular&&(e.partOfCycle=!0,e.circularLinkType=t.circularLinkType)}),e.targetLinks.forEach(function(t){t.circular&&(e.partOfCycle=!0,e.circularLinkType=t.circularLinkType)})})}(g),function(e,t,o){var n,i,r;if(null!=t){e.nodes.sort(function(e,o){return t(e)<t(o)?-1:1});var s=0,a=t(e.nodes[0]);e.nodes.forEach(function(e){s=t(e)==a?s:s+1,a=t(e)==a?a:t(e),e.column=s})}for(n=e.nodes,i=[],r=0;n.length;++r,n=i,i=[])n.forEach(function(e){e.depth=r,e.sourceLinks.forEach(function(e){0>i.indexOf(e.target)&&!e.circular&&i.push(e.target)})});for(n=e.nodes,i=[],r=0;n.length;++r,n=i,i=[])n.forEach(function(e){e.height=r,e.targetLinks.forEach(function(e){0>i.indexOf(e.source)&&!e.circular&&i.push(e.source)})});e.nodes.forEach(function(e){e.column=null==t?o(e,r):e.column})}(g,u,c);var f=r;if(null!==s){var p=a.groups(g.nodes,function(e){return e.column}).sort(function(e,t){return e[0]-t[0]}).map(function(e){return e[1]}),y=a.max(p,function(e){return e.length});y>1&&(f=Math.max(1,(n-t)*s/(y-1)))}(function(e,t,o){var n=a.groups(e.nodes,function(e){return e.column}).sort(function(e,t){return e[0]-t[0]}).map(function(e){return e[1]});e.py=t;var i=a.min(n,function(t){return(e.y1-e.y0-(t.length-1)*e.py)/a.sum(t,function(e){return e.value})});e.ky=i,e.links.forEach(function(t){t.width=t.value*e.ky});var r=a.max(e.nodes,function(e){return e.column});e.nodes.forEach(r>0?function(t){t.x0=e.x0+t.column*((e.x1-e.x0-o)/r),t.x1=t.x0+o}:function(t){t.x0=e.x0,t.x1=t.x0+o})})(g,f,i),Os(g,u,l),Ms(g,u,l,f,f,d),Cs(g),bs(g,l,h,10,8),Os(g,u,l),Ms(g,u,l,f,f,d),Cs(g),bs(g,l,h,10,8),function(e,t){let o=e;o.nodes.forEach(function(e){e.y+(e.y1-e.y0)>o.y1&&(e.y=e.y-(e.y+(e.y1-e.y0)-o.y1));var n=o.links.filter(function(o){return es(o.source,t)==es(e,t)}),i=n.length;i>1&&n.sort(function(e,t){if(!e.circular&&!t.circular){if(e.target.column==t.target.column)return e.y1-t.y1;if(!vs(e,t))return e.y1-t.y1;if(e.target.column>t.target.column){var o=Qr(t,e);return e.y1-o}if(t.target.column>e.target.column)return Qr(e,t)-t.y1}return e.circular&&!t.circular?"top"==e.circularLinkType?-1:1:t.circular&&!e.circular?"top"==t.circularLinkType?1:-1:e.circular&&t.circular?e.circularLinkType===t.circularLinkType&&"top"==e.circularLinkType?e.target.column===t.target.column?e.target.y1-t.target.y1:t.target.column-e.target.column:e.circularLinkType===t.circularLinkType&&"bottom"==e.circularLinkType?e.target.column===t.target.column?t.target.y1-e.target.y1:e.target.column-t.target.column:"top"==e.circularLinkType?-1:1:void 0});var r=e.y0;n.forEach(function(e){e.y0=r+e.width/2,r+=e.width}),n.forEach(function(t,o){if("bottom"==t.circularLinkType){for(var r=o+1,s=0;i>r;r++)s+=n[r].width;t.y0=e.y1-s-t.width/2}})})}(g,l),function(e,t){let o=e;o.nodes.forEach(function(e){var n=o.links.filter(function(o){return es(o.target,t)==es(e,t)}),i=n.length;i>1&&n.sort(function(e,t){if(!e.circular&&!t.circular){if(e.source.column==t.source.column)return e.y0-t.y0;if(!vs(e,t))return e.y0-t.y0;if(e.source.column>t.source.column){var o=Zr(t,e);return e.y0-o}if(t.source.column>e.source.column)return Zr(e,t)-t.y0}return e.circular&&!t.circular?"top"==e.circularLinkType?-1:1:t.circular&&!e.circular?"top"==t.circularLinkType?1:-1:e.circular&&t.circular?e.circularLinkType===t.circularLinkType&&"top"==e.circularLinkType?e.source.column===t.source.column?e.source.y1-t.source.y1:e.source.column-t.source.column:e.circularLinkType===t.circularLinkType&&"bottom"==e.circularLinkType?e.source.column===t.source.column?e.source.y1-t.source.y1:t.source.column-e.source.column:"top"==e.circularLinkType?-1:1:void 0});var r=e.y0;n.forEach(function(e){e.y1=r+e.width/2,r+=e.width}),n.forEach(function(t,o){if("bottom"==t.circularLinkType){for(var r=o+1,s=0;i>r;r++)s+=n[r].width;t.y1=e.y1-s-t.width/2}})})}(g,l),function(e){var t=e.nodes,o=e.links,n=!1,i=!1;if(o.forEach(function(e){"top"==e.circularLinkType?n=!0:"bottom"==e.circularLinkType&&(i=!0)}),0==n||0==i){var r=a.min(t,function(e){return e.y0}),s=a.max(t,function(e){return e.y1}),l=(e.y1-e.y0)/(s-r);function c(t){return(t-r)/(s-r)*(e.y1-e.y0)+e.y0}1>l?(t.forEach(function(e){e.y0=c(e.y0),e.y1=c(e.y1)}),o.forEach(function(e){e.y0=c(e.y0),e.y1=c(e.y1),e.width=e.width*l})):t.forEach(function(e){var t=e.y1-e.y0,o=c(e.y0)-e.y0;e.y0=c(e.y0),e.y1=e.y0+t,e.sourceLinks.forEach(function(e){e.y0=e.y0+o}),e.targetLinks.forEach(function(e){e.y1=e.y1+o})})}}(g),bs(g,l,h,10,8)}(p),p}return p.update=function(e){return Cs(e),bs(e,l,h,10,8),e},p.nodeWidth=function(e){return arguments.length?(i=+e,p):i},p.nodePadding=function(e){return arguments.length?(r=+e,p):r},p.nodePaddingRatio=function(e){return arguments.length?(s=+e,p):s},p.nodes=function(e){return arguments.length?(g="function"==typeof e?e:ws(e),p):g},p.links=function(e){return arguments.length?(f="function"==typeof e?e:ws(e),p):f},p.nodeId=function(e){return arguments.length?(l="function"==typeof e?e:ws(e),p):l},p.nodeAlign=function(e){return arguments.length?(c="function"==typeof e?e:ws(e),p):c},p.nodeSort=function(e){return arguments.length?(u=e,p):u},p.iterations=function(e){return arguments.length?(d=+e,p):d},p.circularLinkGap=function(e){return arguments.length?(h=+e,p):h},p.extent=function(i){return arguments.length?(e=+i[0][0],t=+i[0][1],o=+i[1][0],n=+i[1][1],p):[[e,t],[o,n]]},p.size=function(i){return arguments.length?(e=t=0,o=+i[0],n=+i[1],p):[o-e,n-t]},p}const Ps=e=>{let t,o,n,i,r,s,a,l,c;return"down"===e.direction?(t=e.y0-e.sankeyWidth/2,o=e.y1-e.sankeyWidth/2,n=e.y1+e.sankeyWidth/2,i=e.y0+e.sankeyWidth/2,r=e.source.x1,s=e.target.x0,a=d.interpolateNumber(r,s),l=a(.5),c=a(.5),`M${t},${r}C${t},${l} ${o},${c} ${o},${s}L${n},${s}C${n},${c} ${i},${l} ${i},${r}Z`):(t=e.source.x1,o=e.target.x0,a=d.interpolateNumber(t,o),n=a(.5),i=a(.5),r=e.y0-e.sankeyWidth/2,s=e.y1-e.sankeyWidth/2,l=e.y1+e.sankeyWidth/2,c=e.y0+e.sankeyWidth/2,`M${t},${r}C${n},${r} ${i},${s} ${o},${s}L${o},${l}C${i},${l} ${n},${c} ${t},${c}Z`)};function Ls(e){var t;const o=e.sankeyWidth/2,n=(null!==(t=e._circularWidth)&&void 0!==t?t:e.sankeyWidth)/2,i=e.circularPathData;if(!i)return null;if("down"===e.direction)return null;if(e._circularStub){const t=i.sourceX,n=i.sourceY,r=i.targetX,s=i.targetY;if("object"!=typeof e.source||!e.source||"object"!=typeof e.target||!e.target)return null;const a=Math.max(15,Math.min(40,.33*(i.rightFullExtent-t))),l=Math.max(15,Math.min(40,.33*(r-i.leftFullExtent)));return`M${t},${n-o}L${t+a},${n-o}L${t+a},${n+o}L${t},${n+o}ZM${r},${s-o}L${r-l},${s-o}L${r-l},${s+o}L${r},${s+o}Z`}const r=i.sourceX,s=i.sourceY,a=i.targetX,l=i.targetY,c=i.rightFullExtent,u=i.leftFullExtent,d=i.verticalFullExtent,h="bottom"===e.circularLinkType?1:-1,g=Math.max(4,Math.min(n,15));return`M${r},${s-h*o}L${c},${s-h*o}L${c+n},${s-h*o+h*g}L${c+n},${d+h*n-h*g}L${c+n-g},${d+h*n}L${u-n+g},${d+h*n}L${u-n},${d+h*n-h*g}L${u-n},${l-h*o+h*g}L${u-n+g},${l-h*o}L${a},${l-h*o}L${a},${l+h*o}L${u+n},${l+h*o}L${u+n},${d-h*n}L${c-n},${d-h*n}L${c-n},${s+h*o}L${r},${s+h*o}Z`}const Ts=new Set,Rs=new WeakMap;function Bs(e,t){if("production"===process.env.NODE_ENV)return e;if(!e||!e.data||"object"!=typeof e.data)return e;let o=Rs.get(e);if(o){const e=o.get(t);if(e)return e}else o=new Map,Rs.set(e,o);const n=new Proxy(e,{get(e,o,n){if("string"==typeof o&&!(o in e)&&e.data&&o in e.data){const e=`${t}:${o}`;Ts.has(e)||(Ts.add(e),console.warn(`[Semiotic] "${t}" callback accessed "${o}" on the wrapper object, but it only exists on ".data". Use d.data.${o} (or d.data?.${o}) instead. Frame callbacks receive RealtimeNode/RealtimeEdge wrappers, not your raw data.`))}return Reflect.get(e,o,n)}});return o.set(t,n),n}const Ds={left:function(e){return e.depth},right:function(e,t){return t-1-e.height},center:function(e){return e.targetLinks.length?e.depth:e.sourceLinks.length?Math.min.apply(Math,e.sourceLinks.map(ss))-1:0},justify:as},Is={supportsStreaming:!0,hierarchical:!1,computeLayout(e,t,o,n){var i,r,s,a,l,c,u;if(0===e.length)return;const d="vertical"===o.orientation?"down":"right",h=o.nodeAlign||"justify",g=null!==(i=o.nodeWidth)&&void 0!==i?i:15,f=null!==(r=o.nodePaddingRatio)&&void 0!==r?r:.05,p=null!==(s=o.iterations)&&void 0!==s?s:100,y=e.map(e=>Object.assign({},e)),v=t.map(e=>Object.assign(Object.assign({},e),{source:"string"==typeof e.source?e.source:e.source.id,target:"string"==typeof e.target?e.target:e.target.id,value:Math.sqrt(Math.max(1,e.value||1))}));let m;m="down"===d?[[0,0],[n[1],n[0]]]:[[0,0],[n[0],n[1]]];const b=_s().extent(m).links(v).nodes(y).nodeAlign(Ds[h]||as).nodeId(e=>e.id).nodeWidth(g).iterations(p);b.nodePaddingRatio&&b.nodePaddingRatio(f),b();{let e=1/0,t=-1/0,o=1/0,i=-1/0;for(const n of y)e>n.x0&&(e=n.x0),n.x1>t&&(t=n.x1),o>n.y0&&(o=n.y0),n.y1>i&&(i=n.y1);for(const n of v){if(!n.circular||!n.circularPathData)continue;const r=n.circularPathData,s=(null!==(l=null!==(a=n._circularWidth)&&void 0!==a?a:n.width)&&void 0!==l?l:0)/2;e>r.leftFullExtent-s&&(e=r.leftFullExtent-s),r.rightFullExtent+s>t&&(t=r.rightFullExtent+s),o>r.verticalFullExtent-s&&(o=r.verticalFullExtent-s),r.verticalFullExtent+s>i&&(i=r.verticalFullExtent+s)}const r=t-e,s=i-o,u=n[0],d=n[1];if(r>0&&s>0&&(0>e||0>o||t>u||i>d)){const t=Math.min(u/r,d/s),n=-e*t+(u-r*t)/2,i=-o*t+(d-s*t)/2;for(const e of y)e.x0=e.x0*t+n,e.x1=e.x1*t+n,e.y0=e.y0*t+i,e.y1=e.y1*t+i;for(const e of v)if(e.y0=e.y0*t+i,e.y1=e.y1*t+i,e.width=(null!==(c=e.width)&&void 0!==c?c:0)*t,e._circularWidth&&(e._circularWidth*=t),e.circular&&e.circularPathData){const o=e.circularPathData;o.sourceX=o.sourceX*t+n,o.targetX=o.targetX*t+n,o.sourceY=o.sourceY*t+i,o.targetY=o.targetY*t+i,o.rightFullExtent=o.rightFullExtent*t+n,o.leftFullExtent=o.leftFullExtent*t+n,o.verticalFullExtent=o.verticalFullExtent*t+i,o.rightInnerExtent=o.rightInnerExtent*t+n,o.leftInnerExtent=o.leftInnerExtent*t+n,o.verticalRightInnerExtent=o.verticalRightInnerExtent*t+i,o.verticalLeftInnerExtent=o.verticalLeftInnerExtent*t+i,o.rightSmallArcRadius*=t,o.rightLargeArcRadius*=t,o.leftSmallArcRadius*=t,o.leftLargeArcRadius*=t,o.sourceWidth*=t,o.rightNodeBuffer*=t,o.leftNodeBuffer*=t,o.arcRadius*=t}}}const x=new Map;for(const t of e)x.set(t.id,t);for(const e of y){const t=x.get(e.id);t&&(t.x0=e.x0,t.x1=e.x1,t.y0=e.y0,t.y1=e.y1,t.value=e.value,t.depth=e.depth,t.sourceLinks=e.sourceLinks,t.targetLinks=e.targetLinks,t.width=e.x1-e.x0,t.height=e.y1-e.y0,t.x=e.x0+(e.x1-e.x0)/2,t.y=e.y0+(e.y1-e.y0)/2)}const k=new Map;for(const e of t)k.set(e._edgeKey?e._edgeKey:`${"string"==typeof e.source?e.source:e.source.id}\0${"string"==typeof e.target?e.target:e.target.id}`,e);for(const e of v){const t=e.source,o=e.target,n="object"==typeof t&&null!==t?t.id:t+"",i="object"==typeof o&&null!==o?o.id:o+"",r=k.get(e._edgeKey?e._edgeKey:`${n}\0${i}`);if(r){r.y0=e.y0,r.y1=e.y1,r.sankeyWidth=null!==(u=e.width)&&void 0!==u?u:0,r.circular=!!e.circular,r.circularPathData=e.circularPathData,r._circularWidth=e._circularWidth,r._circularStub=e._circularStub,r.path=e.path,r.circularLinkType=e.circularLinkType,r.direction=d;const t=x.get(n),o=x.get(i);t&&(r.source=t),o&&(r.target=o)}}},buildScene(e,t,o,n){var i,r,a,l,c,u;const d="vertical"===o.orientation?"down":"right",h=o.nodeStyle,g=o.edgeStyle,f=null!==(i=o.edgeOpacity)&&void 0!==i?i:.5,p=o.edgeColorBy||"source",y=Array.isArray(o.colorScheme)?o.colorScheme:o.themeCategorical&&o.themeCategorical.length>0?o.themeCategorical:s.schemeCategory10,v=new Map;e.forEach((e,t)=>{v.set(e.id,y[t%y.length])});const m=[],b=[],x=[],k=new Map;for(const t of e){const e=t.x1-t.x0,o=t.y1-t.y0;if(0>=e||0>=o)continue;const n=h?h(Bs(t,"nodeStyle")):{},i={fill:n.fill||v.get(t.id)||"#4d430c",stroke:n.stroke,strokeWidth:n.strokeWidth,opacity:n.opacity};k.set(t.id,("string"==typeof i.fill?i.fill:null)||v.get(t.id)||"#4d430c"),m.push("down"===d?{type:"rect",x:t.y0,y:t.x0,w:o,h:e,style:i,datum:t,id:t.id,label:t.id}:{type:"rect",x:t.x0,y:t.y0,w:e,h:o,style:i,datum:t,id:t.id,label:t.id})}const w=[...t].sort((e,t)=>(t.sankeyWidth||0)-(e.sankeyWidth||0));for(const e of w){if(!e.sankeyWidth||0>=e.sankeyWidth)continue;const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;if(!t||!n)continue;let i=(null===(r=o.themeSemantic)||void 0===r?void 0:r.border)||(null===(a=o.themeSemantic)||void 0===a?void 0:a.secondary)||"#999";i="function"==typeof p?p(e)||i:"target"===p?k.get(n.id)||v.get(n.id)||i:k.get(t.id)||v.get(t.id)||i;const s=g?g(Bs(e,"edgeStyle")):{};if(e._circularStub&&e.circular&&e.circularPathData){const t=e.circularPathData,o=e.sankeyWidth/2,n=Math.max(15,Math.min(40,.33*(t.rightFullExtent-t.sourceX))),r=Math.max(15,Math.min(40,.33*(t.targetX-t.leftFullExtent))),a=s.fill||i;b.push({type:"bezier",pathD:`M${t.sourceX},${t.sourceY-o}L${t.sourceX+n},${t.sourceY-o}L${t.sourceX+n},${t.sourceY+o}L${t.sourceX},${t.sourceY+o}Z`,style:{fill:a,fillOpacity:null!==(l=s.fillOpacity)&&void 0!==l?l:f,stroke:"none",opacity:s.opacity},datum:e,_gradient:{direction:"right",from:1,to:0,x0:t.sourceX,x1:t.sourceX+n}}),b.push({type:"bezier",pathD:`M${t.targetX},${t.targetY-o}L${t.targetX-r},${t.targetY-o}L${t.targetX-r},${t.targetY+o}L${t.targetX},${t.targetY+o}Z`,style:{fill:a,fillOpacity:null!==(c=s.fillOpacity)&&void 0!==c?c:f,stroke:"none",opacity:s.opacity},datum:e,_gradient:{direction:"left",from:0,to:1,x0:t.targetX-r,x1:t.targetX}});continue}let d;if(d=e.circular&&e.circularPathData?Ls(e):Ps(e),!d)continue;const h={fill:s.fill||i,fillOpacity:null!==(u=s.fillOpacity)&&void 0!==u?u:f,stroke:s.stroke||"none",strokeWidth:s.strokeWidth,opacity:s.opacity};b.push({type:"bezier",pathD:d,bezierCache:e.bezier,style:h,datum:e})}if(!1!==o.showLabels){const t=(j=o.nodeLabel)?"function"==typeof j?j:e=>e[j]||e.id:null;for(const o of e){const e=o.x1-o.x0,i=o.y1-o.y0;if(0>=e||0>=i)continue;const r=t?t(o):o.id;if(!r)continue;let s,a,l;"down"===d?(s=o.y0+(o.y1-o.y0)/2,a=o.x1+14,l="middle"):(n[0]/2>o.x0+e/2?(s=o.x0-6,l="end"):(s=o.x1+6,l="start"),a=o.y0+i/2),x.push({x:s,y:a,text:r+"",anchor:l,baseline:"middle",fontSize:11})}}var j;return{sceneNodes:m,sceneEdges:b,labels:x}}},Ns={supportsStreaming:!0,hierarchical:!1,computeLayout(e,t,o,n){var i,r;if(0===e.length)return;const s=null!==(i=o.forceStrength)&&void 0!==i?i:.1,a=n[0]/2,l=n[1]/2,c=o.__previousPositions;let u=0;const d=[];for(const t of e){const e=null!=t.x&&null!=t.y&&(0!==t.x||0!==t.y),o=null==c?void 0:c.get(t.id);e?u++:o?(t.x=o.x,t.y=o.y,u++):d.push(t)}const g=u>0&&.3>=(e.length>0?d.length/e.length:1);if(g){const o=new Map;for(const t of e)o.set(t.id,t);for(const e of d){const n=Hs(e.id,t,o);if(n.length>0){let t=0,o=0;for(const e of n)t+=e.x,o+=e.y;const i=Ws(e.id),r=i%360*(Math.PI/180),s=10+i%20;e.x=t/n.length+s*Math.cos(r),e.y=o/n.length+s*Math.sin(r)}else{const t=Ws(e.id),o=t%360*(Math.PI/180),n=15+t%30;e.x=a+n*Math.cos(o),e.y=l+n*Math.sin(o)}}}else{const t=2.399963229728653;for(let o=0;e.length>o;o++){const n=e[o];if(null==n.x||null==n.y||0===n.x&&0===n.y){const e=10*Math.sqrt(o+.5),i=o*t;n.x=a+e*Math.cos(i),n.y=l+e*Math.sin(i)}}}const f=null!==(r=o.iterations)&&void 0!==r?r:Math.max(50,Math.min(300,Math.floor(300-2*(e.length-30)))),p=0===o.iterations?0:g?40:f,y=Es(o.nodeSize,o.nodeSizeRange,e),v=e=>y(e);if(p>0){const o=h.forceLink().strength(e=>{const t=e.weight;return Math.min(2.5,t?t*s:s)}).id(e=>e.id),n=h.forceSimulation().force("charge",h.forceManyBody().strength(e=>-25*v(e))).force("center",h.forceCenter(a,l).strength(.8)).force("x",h.forceX(a).strength(.15)).force("y",h.forceY(l).strength(.15));if(n.nodes(e),t.length>0){const e=t.map(e=>Object.assign(Object.assign({},e),{source:"string"==typeof e.source?e.source:e.source.id,target:"string"==typeof e.target?e.target:e.target.id}));n.force("link",o),n.force("link").links(e)}g?n.alpha(.3):.1>n.alpha()&&n.alpha(1),n.stop();for(let e=0;p>e;++e)n.tick()}for(const t of e){if(null==t.x||null==t.y)continue;const e=v(t);t.x=Math.max(e,Math.min(n[0]-e,t.x)),t.y=Math.max(e,Math.min(n[1]-e,t.y)),t.x0=0,t.x1=0,t.y0=0,t.y1=0}const m=new Map;for(const t of e)m.set(t.id,t);for(const e of t){if("string"==typeof e.source){const t=m.get(e.source);t&&(e.source=t)}if("string"==typeof e.target){const t=m.get(e.target);t&&(e.target=t)}}},buildScene(e,t,o,n){var i,r,a,l,c,u,d;const h=o.nodeStyle,g=o.edgeStyle,f=Es(o.nodeSize,o.nodeSizeRange,e),p=Array.isArray(o.colorScheme)?o.colorScheme:o.themeCategorical&&o.themeCategorical.length>0?o.themeCategorical:s.schemeCategory10,y=new Map;e.forEach((e,t)=>{y.set(e.id,p[t%p.length])});const v=[],m=[],b=[];for(const t of e){if(null==t.x||null==t.y)continue;const e=f(Bs(t,"nodeSize")),n=h?h(Bs(t,"nodeStyle")):{},s={fill:n.fill||y.get(t.id)||(null===(i=o.themeSemantic)||void 0===i?void 0:i.primary)||"#007bff",stroke:n.stroke||(null===(r=o.themeSemantic)||void 0===r?void 0:r.surface)||"#fff",strokeWidth:null!==(a=n.strokeWidth)&&void 0!==a?a:2,opacity:n.opacity};v.push({type:"circle",cx:t.x,cy:t.y,r:e,style:s,datum:t,id:t.id,label:t.id})}const x=new Map;for(const t of e)x.set(t.id,t);for(const e of t){const t="object"==typeof e.source?e.source:x.get(e.source),n="object"==typeof e.target?e.target:x.get(e.target);if(!t||!n)continue;if(null==t.x||null==t.y)continue;if(null==n.x||null==n.y)continue;const i=g?g(Bs(e,"edgeStyle")):{},r={stroke:i.stroke||(null===(l=o.themeSemantic)||void 0===l?void 0:l.border)||(null===(c=o.themeSemantic)||void 0===c?void 0:c.secondary)||"#999",strokeWidth:null!==(u=i.strokeWidth)&&void 0!==u?u:1,opacity:null!==(d=i.opacity)&&void 0!==d?d:.6};m.push({type:"line",x1:t.x,y1:t.y,x2:n.x,y2:n.y,style:r,datum:e})}if(!1!==o.showLabels){const t=(k=o.nodeLabel)?"function"==typeof k?k:e=>e[k]||e.id:null;for(const o of e){if(null==o.x||null==o.y)continue;const e=t?t(o):o.id;if(!e)continue;const n=f(Bs(o,"nodeSize"));b.push({x:o.x,y:o.y-n-4,text:e+"",anchor:"middle",baseline:"auto",fontSize:11})}}var k;return{sceneNodes:v,sceneEdges:m,labels:b}}};function Hs(e,t,o){const n=[];for(const i of t){const t="string"==typeof i.source?i.source:i.source.id,r="string"==typeof i.target?i.target:i.target.id;let s=null;if(t===e?s=r:r===e&&(s=t),s){const e=o.get(s);!e||0===e.x&&0===e.y||n.push({x:e.x,y:e.y})}}return n}function Ws(e){let t=0;for(let o=0;e.length>o;o++)t=(t<<5)-t+e.charCodeAt(o)|0;return Math.abs(t)}function Es(e,t,o){var n,r;if(null==e)return()=>8;if("number"==typeof e)return()=>e;if("function"==typeof e)return t=>e(t)||8;const s=t||[5,20],l=o.map(t=>{var o;return null===(o=t.data)||void 0===o?void 0:o[e]}).filter(e=>null!=e&&"number"==typeof e);if(0===l.length)return()=>s[0];const c=null!==(n=a.min(l))&&void 0!==n?n:0,u=null!==(r=a.max(l))&&void 0!==r?r:1;if(c===u)return()=>(s[0]+s[1])/2;const d=i.scaleLinear().domain([c,u]).range(s).clamp(!0);return t=>{var o;const n=null===(o=t.data)||void 0===o?void 0:o[e];return null==n||"number"!=typeof n?s[0]:d(n)}}const Fs=s.schemeCategory10,$s={supportsStreaming:!1,hierarchical:!1,computeLayout(e,t,o,n){if(0===e.length)return;const{padAngle:i=.01,groupWidth:r=20,sortGroups:s}=o,a=Math.min(n[0],n[1])/2,l=a-r,u=n[0]/2,d=n[1]/2,h=(f=o.valueAccessor)?"function"==typeof f?f:e=>{var t;return null!==(t=e[f])&&void 0!==t?t:1}:e=>{var t;return null!==(t=e.value)&&void 0!==t?t:1};var f;const p=new Map;for(let t=0;e.length>t;t++)p.set(e[t].id,t);const y=e.length,v=Array.from({length:y},()=>Array.from({length:y},()=>0));for(const e of t){const t="string"==typeof e.target?e.target:e.target.id,o=p.get("string"==typeof e.source?e.source:e.source.id),n=p.get(t);if(void 0===o||void 0===n)continue;const i=h(e);v[o][n]=i}const m=g.chord().padAngle(i);s&&m.sortGroups(s);const b=m(v),x=b.groups,k=c.arc().innerRadius(l).outerRadius(a);for(const t of x){const o=e[t.index],n=k.centroid(t);o.x=n[0]+u,o.y=n[1]+d,o.arcData={startAngle:t.startAngle,endAngle:t.endAngle}}const w=new Map;for(const t of e)w.set(t.id,t);for(const e of t){const t="string"==typeof e.target?e.target:e.target.id,o=w.get("string"==typeof e.source?e.source:e.source.id),n=w.get(t);o&&(e.source=o),n&&(e.target=n)}const j=new Map;for(const e of t)j.set(`${"string"==typeof e.source?e.source:e.source.id}\0${"string"==typeof e.target?e.target:e.target.id}`,e);for(const t of b){const o=e[t.source.index].id,n=e[t.target.index].id,i=j.get(`${o}\0${n}`)||j.get(`${n}\0${o}`);i&&(i.chordData=t)}},buildScene(e,t,o,n){var i,r,s,a;const{groupWidth:l=20,edgeOpacity:c=.5}=o,u=Math.min(n[0],n[1])/2,d=u-l,h=n[0]/2,f=n[1]/2,p=o.nodeStyle,y=o.edgeStyle,v=o.edgeColorBy||"source",m=Array.isArray(o.colorScheme)?o.colorScheme:o.themeCategorical&&o.themeCategorical.length>0?o.themeCategorical:Fs,b=new Map;e.forEach((e,t)=>{b.set(e.id,m[t%m.length])});const x=g.ribbon().radius(d),k=[],w=[],j=[];for(let t=0;e.length>t;t++){const o=e[t],n=o.arcData;if(!n)continue;let r;r=p?p(Bs(o,"nodeStyle")).fill||b.get(o.id)||m[t%m.length]:b.get(o.id)||m[t%m.length];const s=p?p(Bs(o,"nodeStyle")):{},a={fill:r,stroke:s.stroke||"black",strokeWidth:null!==(i=s.strokeWidth)&&void 0!==i?i:1,opacity:s.opacity};k.push({type:"arc",cx:h,cy:f,innerR:d,outerR:u,startAngle:n.startAngle-Math.PI/2,endAngle:n.endAngle-Math.PI/2,style:a,datum:o,id:o.id,label:o.id})}for(const e of t){const t=e.chordData;if(!t)continue;const n=x(t);if(!n)continue;const i=zs(n,h,f);let l=(null===(r=o.themeSemantic)||void 0===r?void 0:r.border)||(null===(s=o.themeSemantic)||void 0===s?void 0:s.secondary)||"#999";if(y)l=y(Bs(e,"edgeStyle")).fill||l;else{const t="object"==typeof e.source?e.source:null,o="object"==typeof e.target?e.target:null;"target"===v&&o?l=b.get(o.id)||l:t&&(l=b.get(t.id)||l)}const u=y?y(Bs(e,"edgeStyle")):{},d={fill:l,fillOpacity:null!==(a=u.fillOpacity)&&void 0!==a?a:c,stroke:u.stroke||"none",strokeWidth:u.strokeWidth,opacity:u.opacity};w.push({type:"ribbon",pathD:i,style:d,datum:e})}if(!1!==o.showLabels){const t=(A=o.nodeLabel)?"function"==typeof A?A:e=>e[A]||e.id:null,n=u+12;for(const o of e){const e=o.arcData;if(!e)continue;const i=t?t(o):o.id;if(!i)continue;const r=(e.startAngle+e.endAngle)/2,s=r-Math.PI/2;j.push({x:h+Math.cos(s)*n,y:f+Math.sin(s)*n,text:i+"",anchor:r>Math.PI?"end":"start",baseline:"middle",fontSize:11})}}var A;return{sceneNodes:k,sceneEdges:w,labels:j}}};function zs(e,t,o){const n=e.match(/[a-zA-Z]|[-+]?\d*\.?\d+(?:[eE][-+]?\d+)?/g);if(!n)return e;const i=[];let r=0;for(;n.length>r;){const e=n[r];if("M"===e||"L"===e)for(i.push(e),r++;n.length>r&&!isNaN(Number(n[r]));)i.push(Number(n[r])+t+""),r++,n.length>r&&!isNaN(Number(n[r]))&&(i.push(Number(n[r])+o+""),r++);else if("C"===e)for(i.push(e),r++;n.length>r&&!isNaN(Number(n[r]));)for(let e=0;3>e&&n.length>r&&!isNaN(Number(n[r]));e++)i.push(Number(n[r])+t+""),r++,n.length>r&&!isNaN(Number(n[r]))&&(i.push(Number(n[r])+o+""),r++);else if("Q"===e)for(i.push(e),r++;n.length>r&&!isNaN(Number(n[r]));)for(let e=0;2>e&&n.length>r&&!isNaN(Number(n[r]));e++)i.push(Number(n[r])+t+""),r++,n.length>r&&!isNaN(Number(n[r]))&&(i.push(Number(n[r])+o+""),r++);else if("A"===e)for(i.push(e),r++;n.length>r&&!isNaN(Number(n[r]));)i.push(n[r++]),n.length>r&&i.push(n[r++]),n.length>r&&i.push(n[r++]),n.length>r&&i.push(n[r++]),n.length>r&&i.push(n[r++]),n.length>r&&(i.push(Number(n[r])+t+""),r++),n.length>r&&(i.push(Number(n[r])+o+""),r++);else"Z"===e||"z"===e?(i.push(e),r++):(i.push(n[r]),r++)}return i.join(" ")}const Ys=["#e8d5b7","#b8d4e3","#d4e3b8","#e3c4d4","#d4d4e3","#e3d4b8","#b8e3d4","#e3b8b8"];function Gs(e){const[t,o,n]=function(e){if(e.startsWith("#")){let t=e.slice(1);if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length)return[parseInt(t.slice(0,2),16),parseInt(t.slice(2,4),16),parseInt(t.slice(4,6),16)]}const t=e.match(/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return t?[+t[1],+t[2],+t[3]]:[128,128,128]}(e);return.299*t+.587*o+.114*n>150?"#222":"#fff"}function qs(e,t,o){const n=t.nodeIDAccessor;return"function"==typeof n?n(e.data)+"":"string"==typeof n&&void 0!==e.data[n]?e.data[n]+"":void 0!==e.data.name?e.data.name+"":void 0!==e.data.id?e.data.id+"":"node-"+o}function Xs(e){return e?"function"==typeof e?e:t=>{var o;return(null===(o=t.data)||void 0===o?void 0:o[e])||t[e]||t.id}:null}function Vs(e){return Array.isArray(e.colorScheme)?e.colorScheme:e.themeCategorical&&e.themeCategorical.length>0?e.themeCategorical:Ys}function Us(e){var t;return Array.isArray(e.colorScheme)&&e.colorScheme.length>0?e.colorScheme[0]:(null===(t=e.themeSemantic)||void 0===t?void 0:t.primary)?e.themeSemantic.primary:e.themeCategorical&&e.themeCategorical.length>0?e.themeCategorical[0]:"#4d430c"}function Ks(e,t,o,n,i){if("horizontal"===i){const i=(e+o)/2;return`M ${e},${t} C ${i},${t} ${i},${n} ${o},${n}`}if("radial"===i){const i=(e+o)/2;return`M ${e},${t} Q ${i},${t} ${i},${(t+n)/2} T ${o},${n}`}{const i=(t+n)/2;return`M ${e},${t} C ${e},${i} ${o},${i} ${o},${n}`}}const Qs={supportsStreaming:!1,hierarchical:!0,computeLayout(e,t,o,n){var i;const r=o.__hierarchyRoot;if(!r)return;const s=o.chartType,a=function(e){if(e)return"function"==typeof e?e:t=>t[e]}(o.childrenAccessor),c=o.hierarchySum,u="function"==typeof c?c:"string"==typeof c?e=>{var t;return null!==(t=e[c])&&void 0!==t?t:0}:e=>{var t;return null!==(t=e.value)&&void 0!==t?t:0},d=l.hierarchy(r,a);d.sum(u),d.sort((e,t)=>{var o,n;return(null!==(o=t.value)&&void 0!==o?o:0)-(null!==(n=e.value)&&void 0!==n?n:0)});const[h,g]=n;switch(s){case"tree":!function(e,t,o,n){const i=t.treeOrientation||"vertical",r=l.tree();r.size("horizontal"===i?[n,o]:"radial"===i?[2*Math.PI,Math.min(o,n)/2*.8]:[o,n]),r(e)}(d,o,h,g);break;case"cluster":!function(e,t,o,n){const i=t.treeOrientation||"vertical",r=l.cluster();r.size("horizontal"===i?[n,o]:"radial"===i?[2*Math.PI,Math.min(o,n)/2*.8]:[o,n]),r(e)}(d,o,h,g);break;case"treemap":!function(e,t,o,n){var i,r;const s=null!==(i=t.padding)&&void 0!==i?i:4,a=null!==(r=t.paddingTop)&&void 0!==r?r:0,c=l.treemap().size([o,n]).tile(l.treemapBinary).padding(s);a>0&&c.paddingTop(a),c(e)}(d,o,h,g);break;case"circlepack":!function(e,t,o,n){var i;const r=null!==(i=t.padding)&&void 0!==i?i:4;l.pack().size([o,n]).padding(r)(e)}(d,o,h,g);break;case"partition":!function(e,t,o,n){var i;l.partition().size([o,n]).padding(null!==(i=t.padding)&&void 0!==i?i:1)(e)}(d,o,h,g)}const f=d.descendants();e.length=0,t.length=0;const p=new Map;for(let t=0;f.length>t;t++){const n=f[t],r={id:qs(n,o,t),x:0,y:0,x0:0,x1:0,y0:0,y1:0,width:0,height:0,value:null!==(i=n.value)&&void 0!==i?i:0,depth:n.depth,data:n.data,createdByFrame:!0};"tree"===s||"cluster"===s?Zs(r,n,o):"treemap"===s||"partition"===s?Js(r,n):"circlepack"===s&&ea(r,n),r.__hierarchyNode=n,e.push(r),p.set(n,r)}if("tree"===s||"cluster"===s)for(const e of f)if(e.parent){const o=p.get(e.parent),n=p.get(e);o&&n&&t.push({source:o,target:n,value:1,y0:0,y1:0,sankeyWidth:0,data:{depth:e.depth}})}},buildScene(e,t,o,n){const i=o.nodeStyle||(()=>({})),r=o.edgeStyle||(()=>({}));switch(o.chartType){case"tree":case"cluster":return function(e,t,o,n,i,r){var s,a,l,c,u,d,h,g;const f=[],p=[],y=[],v=o.treeOrientation||"vertical",m="radial"===v,b=n[0]/2,x=n[1]/2,k="number"==typeof(w=o.nodeSize)?w:5;var w;for(const t of e){let e=t.x,n=t.y;m&&(e+=b,n+=x);const r=i(Bs(t,"nodeStyle"));let l=r.fill||Us(o);if(o.colorByDepth&&void 0!==t.depth){const e=Vs(o);l=e[t.depth%e.length]}const c={fill:l,stroke:r.stroke||(null===(s=o.themeSemantic)||void 0===s?void 0:s.surface)||"#fff",strokeWidth:null!==(a=r.strokeWidth)&&void 0!==a?a:1,opacity:r.opacity};f.push({type:"circle",cx:e,cy:n,r:k,style:c,datum:t,id:t.id,label:t.id,depth:t.depth})}const j=null!==(l=o.edgeOpacity)&&void 0!==l?l:.5;for(const e of t){const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;if(!t||!n)continue;let i=t.x,s=t.y,a=n.x,l=n.y;m&&(i+=b,s+=x,a+=b,l+=x);const g=Ks(i,s,a,l,v),f=r(Bs(e,"edgeStyle")),y={fill:"none",stroke:f.stroke||(null===(c=o.themeSemantic)||void 0===c?void 0:c.border)||(null===(u=o.themeSemantic)||void 0===u?void 0:u.secondary)||"#999",strokeWidth:null!==(d=f.strokeWidth)&&void 0!==d?d:1.5,opacity:null!==(h=f.opacity)&&void 0!==h?h:j};p.push({type:"curved",pathD:g,style:y,datum:e})}if(!1!==o.showLabels){const t=Xs(o.nodeLabel);for(const o of e){const e=t?t(o):o.id;if(!e)continue;let n,i,r,s=o.x,a=o.y;if(m&&(s+=b,a+=x),m){const e=s-b,t=a-x,o=Math.sqrt(e*e+t*t);o>0?(n=s+e/o*10,i=a+t/o*10,r=0>e?"end":"start"):(n=s,i=a-12,r="middle")}else"horizontal"===v?((null===(g=o.data)||void 0===g?void 0:g.children)&&0!==o.data.children.length?(n=s-k-6,r="end"):(n=s+k+6,r="start"),i=a):(n=s,i=a+k+14,r="middle");y.push({x:n,y:i,text:e+"",anchor:r,baseline:"middle",fontSize:11})}}return{sceneNodes:f,sceneEdges:p,labels:y}}(e,t,o,n,i,r);case"treemap":case"partition":return function(e,t,o,n){var i,r,s,a,l;const c=[],u=[];for(const o of e){const e=o.x1-o.x0,s=o.y1-o.y0;if(0>=e||0>=s)continue;const a=n(Bs(o,"nodeStyle"));let l=a.fill||Us(t);if(t.colorByDepth&&void 0!==o.depth){const e=Vs(t);l=e[o.depth%e.length]}const u={fill:l,stroke:a.stroke||(null===(i=t.themeSemantic)||void 0===i?void 0:i.surface)||"#fff",strokeWidth:null!==(r=a.strokeWidth)&&void 0!==r?r:1,opacity:a.opacity};c.push({type:"rect",x:o.x0,y:o.y0,w:e,h:s,style:u,datum:o,id:o.id,label:o.id,depth:o.depth})}if(!1!==t.showLabels){const o=Xs(t.nodeLabel),i=t.labelMode||"leaf",r="partition"===t.chartType;for(const c of e){const e=c.x1-c.x0,d=c.y1-c.y0;if(0>=e||0>=d)continue;const h=!((null===(s=c.data)||void 0===s?void 0:s.children)&&c.data.children.length>0);if(!r){if("leaf"===i&&!h)continue;if("parent"===i&&h)continue}const g=o?o(c):c.id;if(!g)continue;if((h?30:40)>e||(h?16:14)>d)continue;let f=n(Bs(c,"nodeStyle")).fill||Us(t);if(t.colorByDepth&&void 0!==c.depth){const e=Vs(t);f=e[c.depth%e.length]}const p="string"==typeof f?Gs(f):null!==(l=null===(a=t.themeSemantic)||void 0===a?void 0:a.text)&&void 0!==l?l:"#000";u.push(h?{x:c.x0+e/2,y:c.y0+d/2,text:g+"",anchor:"middle",baseline:"middle",fontSize:Math.min(11,Math.max(8,Math.min(e,d)/6)),fill:p}:{x:c.x0+4,y:c.y0+12,text:g+"",anchor:"start",baseline:"auto",fontSize:11,fontWeight:600,fill:p})}}return{sceneNodes:c,sceneEdges:[],labels:u}}(e,o,0,i);case"circlepack":return function(e,t,o,n){var i,r,s,a,l,c,u,d,h,g;const f=[],p=[];for(const o of e){const e=null!==(i=o.__radius)&&void 0!==i?i:5;if(0>=e)continue;const l=n(Bs(o,"nodeStyle"));let c=l.fill||Us(t);if(t.colorByDepth&&void 0!==o.depth){const e=Vs(t);c=e[o.depth%e.length]}const u={fill:c,stroke:l.stroke||(null===(r=t.themeSemantic)||void 0===r?void 0:r.surface)||"#fff",strokeWidth:null!==(s=l.strokeWidth)&&void 0!==s?s:1,opacity:null!==(a=l.opacity)&&void 0!==a?a:.7};f.push({type:"circle",cx:o.x,cy:o.y,r:e,style:u,datum:o,id:o.id,label:o.id,depth:o.depth})}if(!1!==t.showLabels){const o=Xs(t.nodeLabel);for(const i of e){const e=null!==(l=i.__radius)&&void 0!==l?l:5,r=o?o(i):i.id;if(!r)continue;if(15>e)continue;const s=!((null===(c=i.data)||void 0===c?void 0:c.children)&&i.data.children.length>0);let a=n(Bs(i,"nodeStyle")).fill||Us(t);if(t.colorByDepth&&void 0!==i.depth){const e=Vs(t);a=e[i.depth%e.length]}if(s){const o="string"==typeof a?Gs(a):null!==(d=null===(u=t.themeSemantic)||void 0===u?void 0:u.text)&&void 0!==d?d:"#000";p.push({x:i.x,y:i.y,text:r+"",anchor:"middle",baseline:"middle",fontSize:Math.min(11,Math.max(8,e/3)),fill:o})}else p.push({x:i.x,y:i.y-e+14,text:r+"",anchor:"middle",baseline:"hanging",fontSize:Math.min(11,Math.max(8,e/3)),fill:(null===(h=t.themeSemantic)||void 0===h?void 0:h.text)||"#000",stroke:(null===(g=t.themeSemantic)||void 0===g?void 0:g.surface)||"#fff",strokeWidth:3,paintOrder:"stroke"})}}return{sceneNodes:f,sceneEdges:[],labels:p}}(e,o,0,i);default:return{sceneNodes:[],sceneEdges:[],labels:[]}}}};function Zs(e,t,o){const n=o.treeOrientation||"vertical";if("radial"===n){const o=t.x,n=t.y;e.x=n*Math.cos(o-Math.PI/2),e.y=n*Math.sin(o-Math.PI/2)}else"horizontal"===n?(e.x=t.y,e.y=t.x):(e.x=t.x,e.y=t.y);e.x0=e.x-5,e.x1=e.x+5,e.y0=e.y-5,e.y1=e.y+5,e.width=10,e.height=10}function Js(e,t){e.x0=t.x0,e.x1=t.x1,e.y0=t.y0,e.y1=t.y1,e.x=(t.x0+t.x1)/2,e.y=(t.y0+t.y1)/2,e.width=t.x1-t.x0,e.height=t.y1-t.y0}function ea(e,t){var o;const n=null!==(o=t.r)&&void 0!==o?o:0;e.x=t.x,e.y=t.y,e.x0=t.x-n,e.x1=t.x+n,e.y0=t.y-n,e.y1=t.y+n,e.width=2*n,e.height=2*n,e.__radius=n}function ta(e){const t=e;return t.__orbitState||(t.__orbitState={metaMap:new Map,startTime:"undefined"!=typeof performance?performance.now():Date.now()}),t.__orbitState}const oa={supportsStreaming:!1,hierarchical:!0,supportsAnimation:!0,computeLayout(e,t,o,n){const i=o.__hierarchyRoot;i&&function(e,t,o,n,i){var r,s;const a=function(e){if("function"==typeof e)return e;const t=e||"children";return e=>e[t]||null}(o.childrenAccessor),l=function(e){if("function"==typeof e)return e;const t=e||"name";return e=>{var o;return(null!==(o=e[t])&&void 0!==o?o:"")+""}}(o.nodeIDAccessor),u=function(e){if(Array.isArray(e))return e;switch(e){case"solar":return[1];case"atomic":return[2,8];default:return[9999]}}(o.orbitMode),d=null!==(r=o.orbitSize)&&void 0!==r?r:2.95,h=null!==(s=o.orbitEccentricity)&&void 0!==s?s:1,g="number"==typeof d?()=>d:d,f="number"==typeof h?()=>h:h,p=ta(o);p.metaMap.clear(),n.length=0,i.length=0;const y=new Map;function v(e){var t;const o=null!==(t=y.get(e))&&void 0!==t?t:0;return y.set(e,o+1),0===o?e:`${e}__${o}`}const m=t[0]/2,b=t[1]/2,x=Math.min(t[0],t[1])/2*.85,k=v(l(e));n.push({id:k,x:m,y:b,x0:m,x1:m,y0:b,y1:b,width:0,height:0,value:0,depth:0,data:e}),p.metaMap.set(k,{ring:x,angle:0,depth:0,parentId:null,eccentricity:1}),function e(t,o,r,s,d,h,y){const m=a(t);if(!(null==m?void 0:m.length))return;const b=m.length;let x=0,k=0,w=0;for(;b>k;)k+=u[Math.min(w,u.length-1)],w++,x++;let j=0;for(let b=0;x>b;b++){const k=u[Math.min(b,u.length-1)],w=m.slice(j,j+k);if(!w.length)break;const A=(b+1)/x,S={id:o,depth:h,data:t,parentId:o},O=y?d/g(S)*A:d*A,M=c.pie().value(e=>{var t;return(null===(t=a(e))||void 0===t?void 0:t.length)?4:1}).sort(null),C=M(w),_=f(S);for(let t=0;w.length>t;t++){const a=(C[t].startAngle+C[t].endAngle)/2,c=w[t],u=v(l(c)),d=r+O*Math.sin(a),g=s+O*Math.cos(a)*_;n.push({id:u,x:d,y:g,x0:d,x1:d,y0:g,y1:g,width:0,height:0,value:0,depth:h,data:c}),p.metaMap.set(u,{ring:O,angle:a,depth:h,parentId:o,eccentricity:_}),i.push({source:o,target:u,value:1,y0:0,y1:0,sankeyWidth:0,data:{source:o,target:u}}),e(c,u,d,g,O,h+1,!0)}j+=k}}(e,k,m,b,x,1,!1)}(i,n,o,e,t)},buildScene(e,t,o,n){var i,r,s,a,l,c,u;const d=o.nodeStyle,h=o.nodeSize,g="number"==typeof h?()=>h:"function"==typeof h?h:()=>6,f=[],p=[],y=[];if(!1!==o.orbitShowRings){const t=ta(o),n=new Map;for(const t of e)n.set(t.id,t);const i=new Map;for(const[,e]of t.metaMap){if(!e.parentId)continue;const t=n.get(e.parentId);if(!t)continue;const o=`${e.parentId}:${e.ring}`;i.has(o)||i.set(o,{parentX:t.x,parentY:t.y,ring:e.ring,ecc:e.eccentricity})}const r=48,s={stroke:"rgba(128,128,128,0.35)",strokeWidth:.5,opacity:1};for(const[,{parentX:e,parentY:t,ring:o,ecc:n}]of i)for(let i=0;r>i;i++){const a=i/r*Math.PI*2,l=(i+1)/r*Math.PI*2;p.push({type:"line",x1:e+o*Math.sin(a),y1:t+o*Math.cos(a)*n,x2:e+o*Math.sin(l),y2:t+o*Math.cos(l)*n,style:s,datum:null})}}for(const t of e){if(null==t.x||null==t.y)continue;const e=g(Bs(t,"nodeSize")),n=d?d(Bs(t,"nodeStyle")):{},c={fill:n.fill||(null===(i=o.themeSemantic)||void 0===i?void 0:i.primary)||"#6366f1",stroke:n.stroke||(null===(r=o.themeSemantic)||void 0===r?void 0:r.surface)||"#fff",strokeWidth:null!==(s=n.strokeWidth)&&void 0!==s?s:1,opacity:null!==(a=n.opacity)&&void 0!==a?a:0===(null!==(l=t.depth)&&void 0!==l?l:0)?1:.85};f.push({type:"circle",cx:t.x,cy:t.y,r:e,style:c,datum:t,id:t.id,label:t.id,depth:t.depth})}const v=new Map;for(const t of e)v.set(t.id,t);for(const e of t){const t="object"==typeof e.source?e.source:v.get(e.source),o="object"==typeof e.target?e.target:v.get(e.target);t&&o&&(null!=t.x&&null!=o.x&&p.push({type:"line",x1:t.x,y1:t.y,x2:o.x,y2:o.y,style:{stroke:"rgba(128,128,128,0.35)",strokeWidth:.5,opacity:1},datum:e}))}if(o.showLabels){const t=o.nodeLabel;for(const o of e){const e=g(Bs(o,"nodeSize"));if(4>=e)continue;const n="function"==typeof t?t(o):t&&null!==(u=null===(c=o.data)||void 0===c?void 0:c[t])&&void 0!==u?u:o.id;y.push({x:o.x,y:o.y+e+12,text:n+"",anchor:"middle",fontSize:10,fill:"currentColor"})}}return{sceneNodes:f,sceneEdges:p,labels:y}},tick:(e,t,o,n,i)=>!1!==o.orbitAnimated&&(function(e,t){var o,n;const i=ta(t),r=null!==(o=t.orbitSpeed)&&void 0!==o?o:.25,s=null!==(n=t.orbitRevolution)&&void 0!==n?n:function(e){switch(e){case"decay":return e=>{var t;return Math.pow(.6,null!==(t=e.depth)&&void 0!==t?t:0)};case"alternate":return e=>{var t;const o=null!==(t=e.depth)&&void 0!==t?t:0;return(o%2==0?1:-1)/(o+1)};default:return e=>{var t;return 1/((null!==(t=e.depth)&&void 0!==t?t:0)+1)}}}(t.orbitRevolutionStyle),a=(("undefined"!=typeof performance?performance.now():Date.now())-i.startTime)/1e3,l=r*(Math.PI/6),c=new Map;for(const t of e)c.set(t.id,t);for(const t of e){const e=i.metaMap.get(t.id);if(!e||!e.parentId)continue;const o=c.get(e.parentId);if(!o)continue;const n=e.angle+a*l*s({id:t.id,depth:e.depth,data:t.data,parentId:e.parentId});t.x=o.x+e.ring*Math.sin(n),t.y=o.y+e.ring*Math.cos(n)*e.eccentricity,t.x0=t.x,t.x1=t.x,t.y0=t.y,t.y1=t.y}}(e,o),!0)},na={sankey:Is,force:Ns,chord:$s,tree:Qs,cluster:Qs,treemap:Qs,circlepack:Qs,partition:Qs,orbit:oa};function ia(e){return na[e]}class ra{constructor(e){this.nodes=new Map,this.edges=new Map,this.tension=0,this.layoutVersion=0,this.sceneNodes=[],this.sceneEdges=[],this.labels=[],this.particlePool=null,this.transition=null,this._hasRenderedOnce=!1,this._boundedPrevSnapshot=null,this._boundedEdgeSnapshot=null,this.lastIngestTime=0,this.nodeTimestamps=new Map,this.edgeTimestamps=new Map,this._decaySortedNodes=null,this.addedNodes=new Set,this.removedNodes=new Set,this.addedEdges=new Set,this.removedEdges=new Set,this.lastTopologyChangeTime=0,this.previousNodeIds=new Set,this.previousEdgeKeys=new Set,this._lastPositionSnapshot=null,this.config=e,this.tensionConfig=Object.assign(Object.assign({},Er),e.tensionConfig),"sankey"===e.chartType&&e.showParticles&&(this.particlePool=new $r(2e3))}updateConfig(e){const t=this.config;t.__orbitState&&(e.__orbitState=t.__orbitState),t.__hierarchyRoot&&(e.__hierarchyRoot=t.__hierarchyRoot),this.config=e,this.tensionConfig=Object.assign(Object.assign({},Er),e.tensionConfig),"sankey"===e.chartType&&e.showParticles&&!this.particlePool&&(this.particlePool=new $r(2e3))}ingestHierarchy(e,t){this._boundedPrevSnapshot=new Map;for(const[e,t]of this.nodes)0===t.x0&&0===t.x1&&0===t.y0&&0===t.y1||this._boundedPrevSnapshot.set(e,{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1});this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null,this.config.__hierarchyRoot=e,this.runLayout(t),this._boundedPrevSnapshot=null}ingestBounded(e,t,o){const{nodeIDAccessor:n="id",sourceAccessor:i="source",targetAccessor:r="target",valueAccessor:s="value"}=this.config,a="function"==typeof n?n:e=>e[n],l="function"==typeof i?i:e=>e[i],c="function"==typeof r?r:e=>e[r],u="function"==typeof s?s:e=>{var t;return null!==(t=e[s])&&void 0!==t?t:1};this._boundedPrevSnapshot=new Map;for(const[e,t]of this.nodes)0===t.x0&&0===t.x1&&0===t.y0&&0===t.y1||this._boundedPrevSnapshot.set(e,{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1});this._boundedEdgeSnapshot=new Map;for(const[,e]of this.edges)e.sankeyWidth>0&&this._boundedEdgeSnapshot.set(`${"string"==typeof e.source?e.source:e.source.id}\0${"string"==typeof e.target?e.target:e.target.id}`,{y0:e.y0,y1:e.y1,sankeyWidth:e.sankeyWidth});this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null;for(const t of e){const e=a(t)+"";this.nodes.set(e,Object.assign(Object.assign({},sa(e)),{data:t}))}for(let e=0;t.length>e;e++){const o=t[e],n=l(o)+"",i=c(o)+"",r=Number(u(o))||1;this.nodes.has(n)||this.nodes.set(n,Object.assign(Object.assign({},sa(n)),{data:o})),this.nodes.has(i)||this.nodes.set(i,Object.assign(Object.assign({},sa(i)),{data:o}));const s=`${n}\0${i}\0${e}`;this.edges.set(s,{source:n,target:i,value:r,y0:0,y1:0,sankeyWidth:0,data:o,_edgeKey:s})}this.runLayout(o)}edgeKey(e,t){return`${e}\0${t}`}ingestEdge(e){const{source:t,target:o,value:n}=e,i=0===this.nodes.size;let r=!1;const s="undefined"!=typeof performance?performance.now():Date.now();this.lastIngestTime=s,this._decaySortedNodes=null,this.nodes.has(t)||(this.nodes.set(t,sa(t)),this.nodeTimestamps.set(t,s),this.tension+=this.tensionConfig.newNode,r=!0),this.nodes.has(o)||(this.nodes.set(o,sa(o)),this.nodeTimestamps.set(o,s),this.tension+=this.tensionConfig.newNode,r=!0);const a=this.edgeKey(t,o),l=this.edges.get(a);let c=!1;return l?(l.value+=n,this.edgeTimestamps.set(a,s),this.tension+=this.tensionConfig.weightChange,c=!0):(this.edges.set(a,{source:t,target:o,value:n,y0:0,y1:0,sankeyWidth:0}),this.edgeTimestamps.set(a,s),this.tension+=this.tensionConfig.newEdge,r=!0),i||r||c||this.tension>=this.tensionConfig.threshold}runLayout(e){var t,o,n,i,r,s,a,l;const c=ia(this.config.chartType);if(!c)return;let u=Array.from(this.nodes.values());const d=Array.from(this.edges.values());if(0===u.length&&!c.hierarchical)return;if(this.prepareForRelayout(),c.supportsStreaming&&!c.hierarchical){const e=new Map;for(const a of u)if(void 0!==a._prevX0){const l=(null!==(t=a._prevX1)&&void 0!==t?t:0)-(null!==(o=a._prevX0)&&void 0!==o?o:0),c=(null!==(n=a._prevY1)&&void 0!==n?n:0)-(null!==(i=a._prevY0)&&void 0!==i?i:0);e.set(a.id,{x:(null!==(r=a._prevX0)&&void 0!==r?r:0)+l/2,y:(null!==(s=a._prevY0)&&void 0!==s?s:0)+c/2})}else 0===a.x&&0===a.y||e.set(a.id,{x:a.x,y:a.y});if(this._lastPositionSnapshot)for(const[t,o]of this._lastPositionSnapshot)e.has(t)||e.set(t,o);this.config.__previousPositions=e.size>0?e:void 0}if(c.computeLayout(u,d,this.config,e),this.config.__previousPositions=void 0,c.hierarchical&&u.length>0){this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null;for(const e of u)this.nodes.set(e.id,e);for(let e=0;d.length>e;e++){const t=d[e],o=t._edgeKey||`${"string"==typeof t.source?t.source:t.source.id}\0${"string"==typeof t.target?t.target:t.target.id}\0${e}`;t._edgeKey=o,this.edges.set(o,t)}const e=this._boundedPrevSnapshot;if(e&&e.size>0)for(const t of this.nodes.values()){const o=e.get(t.id);o&&(t._prevX0=o.x0,t._prevX1=o.x1,t._prevY0=o.y0,t._prevY1=o.y1)}this._boundedPrevSnapshot=null,this._boundedEdgeSnapshot=null,u=Array.from(this.nodes.values())}this.finalizeLayout();const h=new Map;for(const e of this.nodes.values())0===e.x&&0===e.y||h.set(e.id,{x:e.x,y:e.y});this._lastPositionSnapshot=h,this.saveTargetPositions();const g=u.some(e=>void 0!==e._prevX0&&(0!==e._prevX0||0!==e._prevX1||0!==e._prevY0||0!==e._prevY1)),f=null!==(l=null===(a=this.config.transition)||void 0===a?void 0:a.duration)&&void 0!==l?l:this.tensionConfig.transitionDuration;if(!this._hasRenderedOnce&&this.config.introAnimation&&["sankey","tree","treemap","circlepack","partition"].includes(this.config.chartType)&&u.length>0&&f>0){const t=e[0]/2,o=e[1]/2;for(const e of this.nodes.values())e._prevX0=t,e._prevX1=t,e._prevY0=o,e._prevY1=o;for(const e of this.edges.values())e._prevY0=o,e._prevY1=o,e._prevSankeyWidth=0,e._introFromZero=!0;this.restorePreviousPositions(),this.transition={startTime:performance.now(),duration:f}}else g&&f>0&&(this.restorePreviousPositions(),this.transition={startTime:performance.now(),duration:f});this._hasRenderedOnce=!0;const p=new Set(this.nodes.keys()),y=new Set(this.edges.keys());this.addedNodes=new Set,this.removedNodes=new Set,this.addedEdges=new Set,this.removedEdges=new Set;for(const e of p)this.previousNodeIds.has(e)||this.addedNodes.add(e);for(const e of this.previousNodeIds)p.has(e)||this.removedNodes.add(e);for(const e of y)this.previousEdgeKeys.has(e)||this.addedEdges.add(e);for(const e of this.previousEdgeKeys)y.has(e)||this.removedEdges.add(e);(this.addedNodes.size>0||this.removedNodes.size>0||this.addedEdges.size>0||this.removedEdges.size>0)&&(this.lastTopologyChangeTime="undefined"!=typeof performance?performance.now():Date.now()),this.previousNodeIds=p,this.previousEdgeKeys=y,this.layoutVersion++}buildScene(e){const t=ia(this.config.chartType);if(!t)return;const o=Array.from(this.nodes.values()),n=Array.from(this.edges.values()),{sceneNodes:i,sceneEdges:r,labels:s}=t.buildScene(o,n,this.config,e);this.sceneNodes=i,this.sceneEdges=r,this.labels=s}get isAnimating(){const e=ia(this.config.chartType);return!!(null==e?void 0:e.supportsAnimation)&&!1!==this.config.orbitAnimated}tickAnimation(e,t){const o=ia(this.config.chartType);if(!(null==o?void 0:o.tick))return!1;const n=Array.from(this.nodes.values()),i=Array.from(this.edges.values());return o.tick(n,i,this.config,e,t)}advanceTransition(e){if(!this.transition)return!1;const t=K(e,this.transition),o=U(t);for(const e of this.nodes.values())void 0===e._targetX0||void 0===e._prevX0||0===e._prevX0&&0===e._prevX1||(e.x0=Q(e._prevX0,e._targetX0,o),e.x1=Q(e._prevX1,e._targetX1,o),e.y0=Q(e._prevY0,e._targetY0,o),e.y1=Q(e._prevY1,e._targetY1,o));for(const e of this.edges.values())void 0!==e._targetY0&&void 0!==e._prevY0&&void 0!==e._prevSankeyWidth&&(e._prevSankeyWidth>0||e._introFromZero)&&(e.y0=Q(e._prevY0,e._targetY0,o),e.y1=Q(e._prevY1,e._targetY1,o),e.sankeyWidth=Q(e._prevSankeyWidth,e._targetSankeyWidth,o));return this.rebuildAllBeziers(),1>t||(this.snapToTargets(),this.transition=null,!1)}prepareForRelayout(){const e=this._boundedPrevSnapshot;for(const t of this.nodes.values()){const o=null==e?void 0:e.get(t.id);o&&0===t.x0&&0===t.x1&&0===t.y0&&0===t.y1?(t._prevX0=o.x0,t._prevX1=o.x1,t._prevY0=o.y0,t._prevY1=o.y1):(t._prevX0=t.x0,t._prevX1=t.x1,t._prevY0=t.y0,t._prevY1=t.y1)}const t=this._boundedEdgeSnapshot;for(const e of this.edges.values()){if(t&&0===e.sankeyWidth){const o=t.get(`${"string"==typeof e.source?e.source:e.source.id}\0${"string"==typeof e.target?e.target:e.target.id}`);if(o){e._prevY0=o.y0,e._prevY1=o.y1,e._prevSankeyWidth=o.sankeyWidth;continue}}e._prevY0=e.y0,e._prevY1=e.y1,e._prevSankeyWidth=e.sankeyWidth}this.nodes.size>0&&(this._boundedPrevSnapshot=null,this._boundedEdgeSnapshot=null)}finalizeLayout(){const e="vertical"===this.config.orientation?"down":"right";for(const e of this.nodes.values())if(0!==e.x0||0!==e.x1||0!==e.y0||0!==e.y1)e.width=e.x1-e.x0,e.height=e.y1-e.y0,e.x=e.x0+e.width/2,e.y=e.y0+e.height/2;else{const t=5;e.x0=e.x-t,e.x1=e.x+t,e.y0=e.y-t,e.y1=e.y+t,e.width=2*t,e.height=2*t}for(const t of this.edges.values())t.direction=e,this.updateEdgeBezier(t);this.tension=0}saveTargetPositions(){for(const e of this.nodes.values())e._targetX0=e.x0,e._targetX1=e.x1,e._targetY0=e.y0,e._targetY1=e.y1;for(const e of this.edges.values())e._targetY0=e.y0,e._targetY1=e.y1,e._targetSankeyWidth=e.sankeyWidth}restorePreviousPositions(){for(const e of this.nodes.values())void 0===e._prevX0||0===e._prevX0&&0===e._prevX1||(e.x0=e._prevX0,e.x1=e._prevX1,e.y0=e._prevY0,e.y1=e._prevY1);for(const e of this.edges.values())void 0!==e._prevY0&&void 0!==e._prevSankeyWidth&&e._prevSankeyWidth>0&&(e.y0=e._prevY0,e.y1=e._prevY1,e.sankeyWidth=e._prevSankeyWidth);this.rebuildAllBeziers()}snapToTargets(){for(const e of this.nodes.values())void 0!==e._targetX0&&(e.x0=e._targetX0,e.x1=e._targetX1,e.y0=e._targetY0,e.y1=e._targetY1);for(const e of this.edges.values())void 0!==e._targetY0&&(e.y0=e._targetY0,e.y1=e._targetY1,e.sankeyWidth=e._targetSankeyWidth),e._introFromZero=void 0;this.rebuildAllBeziers()}updateEdgeBezier(e){const t="string"==typeof e.source?this.nodes.get(e.source):e.source,o="string"==typeof e.target?this.nodes.get(e.target):e.target;t&&o&&(e.bezier=e.circular&&e.circularPathData?this.buildCircularBezier(e):this.buildStandardBezier(e,t,o))}buildStandardBezier(e,t,o){const n=(e.sankeyWidth||1)/2;if("down"===e.direction){const i=t.x1,r=o.x0,s=d.interpolateNumber(i,r);return{circular:!1,points:[{x:e.y0,y:i},{x:e.y0,y:s(.5)},{x:e.y1,y:s(.5)},{x:e.y1,y:r}],halfWidth:n}}const i=t.x1,r=o.x0,s=d.interpolateNumber(i,r);return{circular:!1,points:[{x:i,y:e.y0},{x:s(.5),y:e.y0},{x:s(.5),y:e.y1},{x:r,y:e.y1}],halfWidth:n}}buildCircularBezier(e){const t=(e._circularWidth||e.sankeyWidth||1)/2,o=e.circularPathData;if(e._circularStub){const e=Math.max(15,Math.min(40,.33*(o.rightFullExtent-o.sourceX))),n=Math.max(15,Math.min(40,.33*(o.targetX-o.leftFullExtent)));return{circular:!0,segments:[[{x:o.sourceX,y:o.sourceY},{x:o.sourceX+.33*e,y:o.sourceY},{x:o.sourceX+.66*e,y:o.sourceY},{x:o.sourceX+e,y:o.sourceY}],[{x:o.targetX-n,y:o.targetY},{x:o.targetX-.66*n,y:o.targetY},{x:o.targetX-.33*n,y:o.targetY},{x:o.targetX,y:o.targetY}]],halfWidth:t}}let n;n="down"===e.direction?[{x:o.sourceY,y:o.sourceX},{x:o.sourceY,y:o.rightFullExtent},{x:o.verticalFullExtent,y:o.rightFullExtent},{x:o.verticalFullExtent,y:o.leftFullExtent},{x:o.targetY,y:o.leftFullExtent},{x:o.targetY,y:o.targetX}]:[{x:o.sourceX,y:o.sourceY},{x:o.rightFullExtent,y:o.sourceY},{x:o.rightFullExtent,y:o.verticalFullExtent},{x:o.leftFullExtent,y:o.verticalFullExtent},{x:o.leftFullExtent,y:o.targetY},{x:o.targetX,y:o.targetY}];const i=[];for(let e=0;n.length-1>e;e++){const t=n[e],o=n[e+1],r=o.x-t.x,s=o.y-t.y;i.push([t,{x:t.x+r/3,y:t.y+s/3},{x:t.x+2*r/3,y:t.y+2*s/3},o])}return{circular:!0,segments:i,halfWidth:t}}rebuildAllBeziers(){for(const e of this.nodes.values())e.width=e.x1-e.x0,e.height=e.y1-e.y0,e.x=e.x0+e.width/2,e.y=e.y0+e.height/2;for(const e of this.edges.values())this.updateEdgeBezier(e)}applyPulse(e){var t,o,n,i,r;const s=this.config.pulse;if(!s)return;const a=null!==(t=s.duration)&&void 0!==t?t:500,l=null!==(o=s.color)&&void 0!==o?o:"rgba(255,255,255,0.6)",c=null!==(n=s.glowRadius)&&void 0!==n?n:4;for(const t of this.sceneNodes){const o=t.id;if(!o)continue;const n=this.nodeTimestamps.get(o);if(!n)continue;const i=e-n;a>i&&(t._pulseIntensity=1-i/a,t._pulseColor=l,t._pulseGlowRadius=c)}for(const t of this.sceneEdges){const o=t.datum;if(!o)continue;const n="object"==typeof o.source?null===(i=o.source)||void 0===i?void 0:i.id:o.source,s="object"==typeof o.target?null===(r=o.target)||void 0===r?void 0:r.id:o.target;if(!n||!s)continue;const c=this.edgeTimestamps.get(`${n}\0${s}`);if(!c)continue;const u=e-c;a>u&&(t._pulseIntensity=1-u/a,t._pulseColor=l)}}applyDecay(){var e,t;const o=this.config.decay;if(!o)return;const n=this.nodeTimestamps.size;if(1>=n)return;this._decaySortedNodes||(this._decaySortedNodes=Array.from(this.nodeTimestamps.entries()).sort((e,t)=>e[1]-t[1]));const i=this._decaySortedNodes,r=new Map;for(let e=0;i.length>e;e++)r.set(i[e][0],e);for(const i of this.sceneNodes){const s=i.id;if(!s)continue;const a=r.get(s);if(void 0===a)continue;const l=X(o,a,n),c=null!==(t=null===(e=i.style)||void 0===e?void 0:e.opacity)&&void 0!==t?t:1;i.style=Object.assign(Object.assign({},i.style),{opacity:c*l})}}applyTopologyDiff(e){var t;if(0===this.addedNodes.size)return;const o=e-this.lastTopologyChangeTime;if(o>=2e3)return;const n=1-o/2e3;for(const e of this.sceneNodes){const o=e.id;o&&this.addedNodes.has(o)&&(e._pulseIntensity=Math.max(null!==(t=e._pulseIntensity)&&void 0!==t?t:0,n),e._pulseColor="rgba(34, 197, 94, 0.7)",e._pulseGlowRadius=8)}}get hasActiveTopologyDiff(){return 0!==this.addedNodes.size&&2e3>("undefined"!=typeof performance?performance.now():Date.now())-this.lastTopologyChangeTime}applyThresholds(e){var t,o;const n=this.config.thresholds;if(!n)return;const i=null!==(t=n.warningColor)&&void 0!==t?t:"#f59e0b",r=null!==(o=n.criticalColor)&&void 0!==o?o:"#ef4444",s=!1!==n.pulse;for(const t of this.sceneNodes){const o=t.id;if(!o)continue;const a=this.nodes.get(o);if(!a)continue;const l=n.metric(a);let c=null;void 0===n.critical||n.critical>l?void 0===n.warning||n.warning>l||(c=i):c=r,c&&(t.style=Object.assign(Object.assign({},t.style),{fill:c}),s&&(t._pulseIntensity=.6+.4*Math.sin(e/300),t._pulseColor=c,t._pulseGlowRadius=6))}}get hasActiveThresholds(){const e=this.config.thresholds;if(!e)return!1;for(const t of this.nodes.values()){const o=e.metric(t);if(void 0!==e.warning&&o>=e.warning||void 0!==e.critical&&o>=e.critical)return!0}return!1}get hasActivePulses(){var e;const t=this.config.pulse;if(!t||0===this.lastIngestTime)return!1;const o="undefined"!=typeof performance?performance.now():Date.now();return(null!==(e=t.duration)&&void 0!==e?e:500)>o-this.lastIngestTime}getLayoutData(){return{nodes:Array.from(this.nodes.values()),edges:Array.from(this.edges.values())}}updateNode(e,t){var o;const n=this.nodes.get(e);if(!n)return null;const i=n.data?Object.assign({},n.data):{};return n.data=t(null!==(o=n.data)&&void 0!==o?o:{}),this.layoutVersion++,i}updateEdge(e,t,o){var n;const i=this.config.valueAccessor,r="function"==typeof i?i:i?e=>e[i]:e=>e.value,s=[];for(const[,i]of this.edges)if(("string"==typeof i.source?i.source:i.source.id)===e&&("string"==typeof i.target?i.target:i.target.id)===t){s.push(i.data?Object.assign({},i.data):{}),i.data=o(null!==(n=i.data)&&void 0!==n?n:{});const e=r(i.data);null!=e&&(i.value=Number(e))}return s.length>0&&this.layoutVersion++,s}removeNode(e){if(!this.nodes.has(e))return!1;this.nodes.delete(e),this.nodeTimestamps.delete(e);for(const[t,o]of this.edges)("string"==typeof o.source?o.source:o.source.id)!==e&&("string"==typeof o.target?o.target:o.target.id)!==e||(this.edges.delete(t),this.edgeTimestamps.delete(t));return this.layoutVersion++,!0}removeEdge(e,t){const o=[];if(void 0===t){const t=this.config.edgeIdAccessor;if(!t)throw Error("removeEdge(edgeId) requires edgeIdAccessor to be configured. Use removeEdge(sourceId, targetId) instead.");const n="function"==typeof t?t:e=>null==e?void 0:e[t];for(const[t,i]of this.edges)i.data&&n(i.data)===e&&o.push(t)}else for(const[n,i]of this.edges)("string"==typeof i.source?i.source:i.source.id)===e&&("string"==typeof i.target?i.target:i.target.id)===t&&o.push(n);for(const e of o)this.edges.delete(e),this.edgeTimestamps.delete(e);return o.length>0&&this.layoutVersion++,o.length>0}clear(){this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null,this.tension=0,this.layoutVersion=0,this.sceneNodes=[],this.sceneEdges=[],this.labels=[],this.transition=null,this._hasRenderedOnce=!1,this.lastIngestTime=0,this._lastPositionSnapshot=null,this.nodeTimestamps.clear(),this.edgeTimestamps.clear(),this.particlePool&&this.particlePool.clear()}}function sa(e){return{id:e,x0:0,x1:0,y0:0,y1:0,x:0,y:0,width:0,height:0,value:0,createdByFrame:!0}}function aa(e,t,o,n,i=30){let r=null,s=i,a=1/0;for(const t of e){const e=la(t,o,n,i);if(e)if("rect"===t.type){const o=t.w*t.h;a>o&&(r=e,a=o)}else s>e.distance&&(r=e,s=e.distance)}if(r)return r;for(const e of t){const t=ga(e,o,n);t&&s>t.distance&&(r=t,s=t.distance)}return r}function la(e,t,o,n=30){switch(e.type){case"circle":return function(e,t,o,n=30){const i=t-e.cx,r=o-e.cy,s=Math.sqrt(i*i+r*r);return s>de(e.r,n)?null:{type:"node",datum:e.datum,x:e.cx,y:e.cy,distance:s}}(e,t,o,n);case"rect":return function(e,t,o){const n=ue(t,o,e);return n.hit?{type:"node",datum:e.datum,x:n.cx,y:n.cy,distance:0}:null}(e,t,o);case"arc":return function(e,t,o){const n=t-e.cx,i=o-e.cy,r=Math.sqrt(n*n+i*i);if(e.innerR-2>r||r>e.outerR+2)return null;const s=fe(Math.atan2(i,n)),a=fe(e.startAngle),l=fe(e.endAngle);if(a>l?s>=a||l>=s:s>=a&&l>=s){const t=(e.startAngle+e.endAngle)/2,o=(e.innerR+e.outerR)/2;return{type:"node",datum:e.datum,x:e.cx+o*Math.cos(t),y:e.cy+o*Math.sin(t),distance:0}}return null}(e,t,o);default:return null}}let ca=null,ua=null;function da(){return ua||(ca=document.createElement("canvas"),ca.width=1,ca.height=1,ua=ca.getContext("2d")),ua}function ha(e){if(e._cachedPath2D&&e._cachedPath2DSource===e.pathD)return e._cachedPath2D;try{return e._cachedPath2D=new Path2D(e.pathD),e._cachedPath2DSource=e.pathD,e._cachedPath2D}catch(e){return null}}function ga(e,t,o){switch(e.type){case"bezier":return function(e,t,o){var n,i;if(!e.pathD)return null;const r=ha(e),s=da();if(!r||!s)return null;try{if(s.isPointInPath(r,t,o)){const r="object"==typeof(null===(n=e.datum)||void 0===n?void 0:n.source)?e.datum.source:null,s="object"==typeof(null===(i=e.datum)||void 0===i?void 0:i.target)?e.datum.target:null;return{type:"edge",datum:e.datum,x:r&&s?(r.x1+s.x0)/2:t,y:e.datum?(e.datum.y0+e.datum.y1)/2:o,distance:0}}const a=s.lineWidth;s.lineWidth=10;const l=s.isPointInStroke(r,t,o);if(s.lineWidth=a,l)return{type:"edge",datum:e.datum,x:t,y:o,distance:4}}catch(e){}return null}(e,t,o);case"line":return function(e,t,o){const n=e.x2-e.x1,i=e.y2-e.y1,r=n*n+i*i;if(0===r)return null;let s=((t-e.x1)*n+(o-e.y1)*i)/r;s=Math.max(0,Math.min(1,s));const a=e.x1+s*n,l=e.y1+s*i,c=Math.sqrt(Math.pow(t-a,2)+Math.pow(o-l,2));return c>5?null:{type:"edge",datum:e.datum,x:a,y:l,distance:c}}(e,t,o);case"ribbon":case"curved":return function(e,t,o){if(!e.pathD)return null;const n=ha(e),i=da();if(!n||!i)return null;try{if(i.isPointInPath(n,t,o))return{type:"edge",datum:e.datum,x:t,y:o,distance:0};const r=i.lineWidth;i.lineWidth=10;const s=i.isPointInStroke(n,t,o);if(i.lineWidth=r,s)return{type:"edge",datum:e.datum,x:t,y:o,distance:4}}catch(e){}return null}(e,t,o);default:return null}}function fa(t){const{width:o,height:n,totalWidth:i,totalHeight:r,margin:s,labels:a,title:l,legend:c,legendHoverBehavior:u,legendClickBehavior:d,legendHighlightedCategory:h,legendIsolatedCategories:g,legendPosition:f="right",foregroundGraphics:p,sceneNodes:v,annotations:m,svgAnnotationRules:b}=t;return e.jsxs(e.Fragment,{children:[e.jsxs("svg",{role:"img",width:i,height:r,style:{position:"absolute",top:0,left:0,pointerEvents:"none"},children:[e.jsx("title",{children:"string"==typeof l?l:"Network Chart"}),e.jsx("desc",{children:"string"==typeof l?l+" — network data visualization":"Network data visualization"}),e.jsxs("g",{transform:`translate(${s.left},${s.top})`,children:[a.map((t,o)=>e.jsx("text",{x:t.x,y:t.y,textAnchor:t.anchor||"start",dominantBaseline:t.baseline||"middle",fontSize:t.fontSize||11,fontWeight:t.fontWeight,fill:t.fill||"currentColor",stroke:t.stroke,strokeWidth:t.strokeWidth,paintOrder:t.paintOrder,style:{pointerEvents:"none"},children:t.text},"label-"+o)),m&&m.filter(e=>"widget"!==e.type).map((t,i)=>{if(b){const r=b(t,i,{width:o,height:n,sceneNodes:v});if(r)return e.jsx(y.Fragment,{children:r},"annotation-"+i)}return null}),p]}),l&&"string"==typeof l?e.jsx("text",{x:i/2,y:16,textAnchor:"middle",fontSize:14,fontWeight:600,fill:"currentColor",children:l}):l?e.jsx("foreignObject",{x:0,y:0,width:i,height:s.top,children:l}):null,Fe({legend:c,totalWidth:i,totalHeight:r,margin:s,legendPosition:f,title:l,legendHoverBehavior:u,legendClickBehavior:d,legendHighlightedCategory:h,legendIsolatedCategories:g})]}),null==m?void 0:m.filter(e=>"widget"===e.type&&e.nodeId&&v).map((t,o)=>{var n,i,r,a,l,c,u,d,h;const g=v.find(e=>{var o,n,i,r,s;return e.id===t.nodeId||(null===(o=e.datum)||void 0===o?void 0:o.id)===t.nodeId||(null===(i=null===(n=e.datum)||void 0===n?void 0:n.data)||void 0===i?void 0:i.id)===t.nodeId||(null===(s=null===(r=e.datum)||void 0===r?void 0:r.data)||void 0===s?void 0:s.name)===t.nodeId});if(!g)return null;const f=s.left+(null!==(n=g.cx)&&void 0!==n?n:null!=g.x&&null!=g.w?g.x+g.w/2:null!==(i=g.x)&&void 0!==i?i:0),p=s.top+(null!==(r=g.cy)&&void 0!==r?r:null!=g.y&&null!=g.h?g.y+g.h/2:null!==(a=g.y)&&void 0!==a?a:0),y=null!==(l=t.dx)&&void 0!==l?l:0,m=null!==(c=t.dy)&&void 0!==c?c:-16,b=null!==(u=t.width)&&void 0!==u?u:32,x=null!==(d=t.height)&&void 0!==d?d:32,k=null!==(h=t.content)&&void 0!==h?h:e.jsx("span",{style:{fontSize:18,cursor:"default"},children:"ℹ️"});return e.jsx("div",{style:{position:"absolute",left:f+y-b/2,top:p+m-x/2,width:b,height:x,display:"flex",alignItems:"center",justifyContent:"center",pointerEvents:"auto",zIndex:5},children:k},"widget-"+o)})]})}function pa(e){return e._cachedPath2D&&e._cachedPath2DSource===e.pathD||(e._cachedPath2D=new Path2D(e.pathD),e._cachedPath2DSource=e.pathD),e._cachedPath2D}function ya(e,t){var o,n,i,r,s,a;if(!t.pathD)return;e.save();const l=pa(t);if(t.style.fill&&"none"!==t.style.fill){const s=t._gradient;if(s){const i=e.createLinearGradient(s.x0,0,s.x1,0),r=null!==(n=null!==(o=t.style.fillOpacity)&&void 0!==o?o:t.style.opacity)&&void 0!==n?n:.5,a="string"==typeof t.style.fill?t.style.fill:"#999",l=Zt(e,a)||a;i.addColorStop(0,1===s.from?l:"transparent"),i.addColorStop(1,1===s.to?l:"transparent"),e.fillStyle=i,e.globalAlpha=r}else e.fillStyle="string"==typeof t.style.fill&&Zt(e,t.style.fill)||t.style.fill,e.globalAlpha=null!==(r=null!==(i=t.style.fillOpacity)&&void 0!==i?i:t.style.opacity)&&void 0!==r?r:.5;e.fill(l)}t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=null!==(s=t.style.strokeWidth)&&void 0!==s?s:.5,e.globalAlpha=.5*(null!==(a=t.style.opacity)&&void 0!==a?a:1),e.stroke(l)),t._pulseIntensity&&t._pulseIntensity>0&&(e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.globalAlpha=.2*t._pulseIntensity,e.fill(l)),e.restore()}function va(e,t){var o,n;e.save();const i=t.style.stroke||"#999";e.strokeStyle=Zt(e,i)||i,e.lineWidth=null!==(o=t.style.strokeWidth)&&void 0!==o?o:1,void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),t.style.strokeDasharray&&e.setLineDash(t.style.strokeDasharray.split(/[\s,]+/).map(Number)),e.beginPath(),e.moveTo(t.x1,t.y1),e.lineTo(t.x2,t.y2),e.stroke(),t._pulseIntensity&&t._pulseIntensity>0&&(e.setLineDash([]),e.strokeStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.lineWidth=(null!==(n=t.style.strokeWidth)&&void 0!==n?n:1)+3*t._pulseIntensity,e.globalAlpha=.4*t._pulseIntensity,e.beginPath(),e.moveTo(t.x1,t.y1),e.lineTo(t.x2,t.y2),e.stroke()),e.restore()}function ma(e,t){var o,n,i,r;if(!t.pathD)return;e.save();const s=pa(t);t.style.fill&&"none"!==t.style.fill&&(e.fillStyle="string"==typeof t.style.fill&&Zt(e,t.style.fill)||t.style.fill,e.globalAlpha=null!==(n=null!==(o=t.style.fillOpacity)&&void 0!==o?o:t.style.opacity)&&void 0!==n?n:.5,e.fill(s)),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=null!==(i=t.style.strokeWidth)&&void 0!==i?i:.5,e.globalAlpha=.3*(null!==(r=t.style.opacity)&&void 0!==r?r:1),e.stroke(s)),t._pulseIntensity&&t._pulseIntensity>0&&(e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.globalAlpha=.25*t._pulseIntensity,e.fill(s)),e.restore()}function ba(e,t){var o,n;if(!t.pathD)return;e.save();const i=pa(t),r=t.style.stroke||"#999";e.strokeStyle=Zt(e,r)||r,e.lineWidth=null!==(o=t.style.strokeWidth)&&void 0!==o?o:1,void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),e.stroke(i),t.style.fill&&"none"!==t.style.fill&&(e.fillStyle="string"==typeof t.style.fill&&Zt(e,t.style.fill)||t.style.fill,e.globalAlpha=null!==(n=t.style.fillOpacity)&&void 0!==n?n:.1,e.fill(i)),e.restore()}fa.displayName="NetworkSVGOverlay";const xa={top:20,right:80,bottom:20,left:80},ka={top:40,right:40,bottom:40,left:40},wa=new Set(["chord","force","circlepack","orbit"]),ja=[800,600],Aa={background:"rgba(0, 0, 0, 0.85)",color:"white",padding:"6px 10px",borderRadius:4,fontSize:12,lineHeight:1.5,boxShadow:"0 2px 8px rgba(0, 0, 0, 0.15)",pointerEvents:"none",whiteSpace:"nowrap"};function Sa({data:t}){var o,n,i,r,s,a;if("edge"===t.nodeOrEdge){const o=t.data;return e.jsxs("div",{className:"semiotic-tooltip",style:Aa,children:[e.jsxs("div",{style:{fontWeight:600},children:["object"==typeof o.source?o.source.id:o.source," → ","object"==typeof o.target?o.target.id:o.target]}),null!=o.value&&e.jsxs("div",{style:{marginTop:4,opacity:.8},children:["Value:"," ","number"==typeof o.value?o.value.toLocaleString():o.value+""]})]})}const l=t.data,c=null==l?void 0:l.__hierarchyNode;if(c){const t=[];let s=c;for(;s;){const e=null!==(r=null!==(n=null===(o=s.data)||void 0===o?void 0:o.name)&&void 0!==n?n:null===(i=s.data)||void 0===i?void 0:i.id)&&void 0!==r?r:l.id;null!=e&&t.unshift(e+""),s=s.parent}t.length>1&&t.shift();const a=t.length-1;return e.jsxs("div",{className:"semiotic-tooltip",style:Aa,children:[e.jsx("div",{children:t.map((t,o)=>e.jsxs("span",{children:[o>0&&e.jsx("span",{style:{margin:"0 3px",opacity:.5},children:" → "}),o===a?e.jsx("strong",{children:t}):e.jsx("span",{style:{opacity:.7},children:t})]},o))}),null!=l.value&&l.value>0&&e.jsx("div",{style:{marginTop:4,opacity:.8},children:"number"==typeof l.value?l.value.toLocaleString():l.value+""})]})}const u=((null===(s=l.sourceLinks)||void 0===s?void 0:s.length)||0)+((null===(a=l.targetLinks)||void 0===a?void 0:a.length)||0),d=(l.sourceLinks||[]).reduce((e,t)=>e+(t.value||0),0)+(l.targetLinks||[]).reduce((e,t)=>e+(t.value||0),0);return e.jsxs("div",{className:"semiotic-tooltip",style:Aa,children:[e.jsx("div",{style:{fontWeight:600},children:l.id}),null!=l.value&&l.value>0&&e.jsxs("div",{style:{marginTop:4,opacity:.8},children:["Total:"," ","number"==typeof l.value?l.value.toLocaleString():l.value+""]}),u>0&&e.jsxs("div",{style:{marginTop:4,opacity:.8},children:["Connections: ",u,d!==u&&` (weighted: ${d.toLocaleString()})`]})]})}const Oa=t.forwardRef(function(o,n){var i,r,s,a,l,u,d,h,g,f,p,y,v,m,b,x,k;const{chartType:w,nodes:j,edges:S,data:O,initialEdges:M,nodeIDAccessor:C="id",sourceAccessor:_="source",targetAccessor:P="target",valueAccessor:L="value",edgeIdAccessor:T,childrenAccessor:R,hierarchySum:B,orientation:D="horizontal",nodeAlign:I="justify",nodePaddingRatio:N=.05,nodeWidth:H=15,iterations:W=300,forceStrength:F=.1,padAngle:$=.01,groupWidth:z=20,sortGroups:Y,edgeSort:G,treeOrientation:q="vertical",edgeType:X="curve",padding:V,paddingTop:U,tensionConfig:K,showParticles:Q=!1,particleStyle:Z,nodeStyle:J,edgeStyle:ee,colorBy:te,colorScheme:oe="category10",edgeColorBy:ne="source",edgeOpacity:ie=.5,colorByDepth:re=!1,nodeSize:se=8,nodeSizeRange:ae=[5,20],nodeLabel:le,showLabels:ce=!0,labelMode:ue,size:de=ja,responsiveWidth:he,responsiveHeight:ge,margin:fe,className:pe,background:ye,enableHover:ve=!0,tooltipContent:me,customHoverBehavior:be,customClickBehavior:xe,onObservation:ke,chartId:we,onTopologyChange:je,annotations:Ae,svgAnnotationRules:Se,legend:_e,legendPosition:Pe,legendHoverBehavior:Te,legendClickBehavior:Re,legendHighlightedCategory:Be,legendIsolatedCategories:De,title:Ie,foregroundGraphics:Ne,backgroundGraphics:He,decay:We,pulse:Ee,transition:Fe,animate:$e,staleness:ze,thresholds:Ye,accessibleTable:Ge=!0,description:qe,summary:Xe,orbitMode:Ve,orbitSize:Ue,orbitSpeed:Ke,orbitRevolution:Qe,orbitRevolutionStyle:Ze,orbitEccentricity:Je,orbitShowRings:et,orbitAnimated:tt}=o,ot=wa.has(w)?ka:xa,nt=t.useRef(!0),it=eo({sizeProp:de,responsiveWidth:he,responsiveHeight:ge,userMargin:fe,marginDefault:ot,foregroundGraphics:Ne,backgroundGraphics:He,animate:$e,transitionProp:Fe,themeDirtyRef:nt}),{reducedMotionRef:rt,responsiveRef:st,size:at,margin:lt,adjustedWidth:ct,adjustedHeight:ut,resolvedForeground:dt,resolvedBackground:ht,transition:gt,introEnabled:ft,tableId:pt,rafRef:yt,renderFnRef:vt,scheduleRender:mt,currentTheme:kt}=it,wt=t.useMemo(()=>Object.assign(Object.assign({},Er),K),[K]),jt=t.useMemo(()=>Object.assign(Object.assign({},Fr),Z),[Z]),At=t.useMemo(()=>{var e;return{chartType:w,nodeIDAccessor:C,sourceAccessor:_,targetAccessor:P,valueAccessor:L,edgeIdAccessor:T,childrenAccessor:R,hierarchySum:B,orientation:D,nodeAlign:I,nodePaddingRatio:N,nodeWidth:H,iterations:W,forceStrength:F,padAngle:$,groupWidth:z,sortGroups:Y,edgeSort:G,treeOrientation:q,edgeType:X,padding:V,paddingTop:U,tensionConfig:wt,showParticles:Q,particleStyle:jt,nodeStyle:J,edgeStyle:ee,nodeLabel:le,showLabels:ce,labelMode:ue,colorBy:te,colorScheme:oe,themeCategorical:null===(e=null==kt?void 0:kt.colors)||void 0===e?void 0:e.categorical,themeSemantic:A(kt),edgeColorBy:ne,edgeOpacity:ie,colorByDepth:re,nodeSize:se,nodeSizeRange:ae,decay:We,pulse:Ee,transition:gt,introAnimation:ft,staleness:ze,thresholds:Ye,orbitMode:Ve,orbitSize:Ue,orbitSpeed:Ke,orbitRevolution:Qe,orbitRevolutionStyle:Ze,orbitEccentricity:Je,orbitShowRings:et,orbitAnimated:tt}},[w,C,_,P,L,R,B,D,I,N,H,W,F,$,z,Y,G,q,X,V,U,wt,Q,jt,J,ee,le,ce,ue,te,oe,ne,ie,re,se,ae,We,Ee,null==gt?void 0:gt.duration,null==gt?void 0:gt.easing,ft,ze,Ye,Ve,Ue,Ke,Qe,Ze,Je,et,tt,kt]),St=t.useRef(null),Mt=t.useRef(0),Ct=t.useRef(null);Ct.current||(Ct.current=new ra(At));const[_t,Pt]=t.useState(null),[Lt,Tt]=t.useState(0),[Rt,Bt]=t.useState(0),[Dt,Et]=t.useState(!1),zt=t.useRef(null),Yt=t.useRef(new Map),Gt=t.useRef(0),qt=t.useCallback(e=>{if("function"==typeof te)return te(e)+"";if("string"==typeof te&&e.data){const t=e.data[te];if(void 0!==t){if(!Yt.current.has(t+"")){const e=Array.isArray(oe)?oe:E;Yt.current.set(t+"",e[Gt.current++%e.length])}return Yt.current.get(t+"")}}if(Yt.current.has(e.id))return Yt.current.get(e.id);const t=Array.isArray(oe)?oe:E,o=te?t[Gt.current++%t.length]:t[0];return Yt.current.set(e.id,o),o},[te,oe]),Xt=(null===(i=null==kt?void 0:kt.colors)||void 0===i?void 0:i.border)||(null===(r=null==kt?void 0:kt.colors)||void 0===r?void 0:r.secondary)||(null===(s=null==kt?void 0:kt.colors)||void 0===s?void 0:s.primary)||"#999",Vt=t.useCallback(e=>{if("function"==typeof ne)return ne(e);const t="object"==typeof e.source?e.source:null,o="object"==typeof e.target?e.target:null;return"target"===ne&&o?qt(o):t?qt(t):Xt},[ne,qt,Xt]),Ut=t.useCallback(e=>{if(!(null==Z?void 0:Z.colorBy))return Vt(e);const t="object"==typeof e.source?e.source:null,o="object"==typeof e.target?e.target:null;return"target"===jt.colorBy&&o?qt(o):t?qt(t):Xt},[null==Z?void 0:Z.colorBy,jt.colorBy,qt,Vt,Xt]),Kt="sankey"===w&&Q||!!Ee||null!==(l=null===(a=Ct.current)||void 0===a?void 0:a.isAnimating)&&void 0!==l&&l;t.useEffect(()=>{var e;null===(e=Ct.current)||void 0===e||e.updateConfig(At),nt.current=!0,mt()},[At,mt]),t.useEffect(()=>{var e;const t=Ct.current;if(t){t.buildScene([ct,ut]);for(const o of t.sceneNodes)o.id&&"string"==typeof(null===(e=o.style)||void 0===e?void 0:e.fill)&&Yt.current.set(o.id,o.style.fill);nt.current=!0,mt()}},[kt,ct,ut,mt]);const Qt=t.useCallback(()=>{var e;const t=Ct.current;if(!t)return;t.runLayout([ct,ut]),t.buildScene([ct,ut]),nt.current=!0;for(const o of t.sceneNodes)o.id&&"string"==typeof(null===(e=o.style)||void 0===e?void 0:e.fill)&&Yt.current.set(o.id,o.style.fill);const o=Array.isArray(oe)?oe:E,n=Array.from(t.nodes.values());for(let e=0;n.length>e;e++){const t=n[e];Yt.current.has(t.id)||Yt.current.set(t.id,o[e%o.length])}if(Gt.current=n.length,Tt(t.layoutVersion),je){const{nodes:e,edges:o}=t.getLayoutData();je(e,o)}},[ct,ut,je,oe]),Jt=t.useCallback(e=>{const t=Ct.current;t&&(t.ingestEdge(e)&&Qt(),mt())},[Qt,mt]),no=t.useCallback(e=>{const t=Ct.current;if(!t)return;let o=!1;for(const n of e)t.ingestEdge(n)&&(o=!0);o&&Qt(),mt()},[Qt,mt]),io=t.useCallback(()=>{var e;null===(e=Ct.current)||void 0===e||e.clear(),Yt.current.clear(),Gt.current=0,Tt(0),Pt(null),zt.current=null,nt.current=!0,mt()},[mt]),ro=t.useCallback(()=>{const e=Ct.current;e&&(e.tension+=999,Qt(),mt())},[Qt,mt]);t.useImperativeHandle(n,()=>({push:Jt,pushMany:no,removeNode:e=>{var t,o,n;const i=null!==(o=null===(t=Ct.current)||void 0===t?void 0:t.removeNode(e))&&void 0!==o&&o;if(i){const t=(null===(n=zt.current)||void 0===n?void 0:n.data)?"function"==typeof C?C(zt.current.data):zt.current.data[C]:void 0;zt.current&&"node"===zt.current.nodeOrEdge&&t===e&&(zt.current=null,Pt(null)),Yt.current.delete(e),Qt(),nt.current=!0,mt()}return i},removeEdge:(e,t)=>{var o,n;const i=null!==(n=null===(o=Ct.current)||void 0===o?void 0:o.removeEdge(e,t))&&void 0!==n&&n;if(i){if(zt.current&&"edge"===zt.current.nodeOrEdge){const o=zt.current.data;let n;n=void 0!==t?("object"==typeof(null==o?void 0:o.source)?o.source.id:null==o?void 0:o.source)===e&&("object"==typeof(null==o?void 0:o.target)?o.target.id:null==o?void 0:o.target)===t:!T||!o||("function"==typeof T?T:e=>null==e?void 0:e[T])(o)===e,n&&(zt.current=null,Pt(null))}Qt(),nt.current=!0,mt()}return i},updateNode:(e,t)=>{var o,n;const i=null!==(n=null===(o=Ct.current)||void 0===o?void 0:o.updateNode(e,t))&&void 0!==n?n:null;return i&&(nt.current=!0,mt()),i},updateEdge:(e,t,o)=>{var n,i;const r=null!==(i=null===(n=Ct.current)||void 0===n?void 0:n.updateEdge(e,t,o))&&void 0!==i?i:[];return r.length>0&&(Qt(),nt.current=!0,mt()),r},clear:io,getTopology:()=>{var e,t;return null!==(t=null===(e=Ct.current)||void 0===e?void 0:e.getLayoutData())&&void 0!==t?t:{nodes:[],edges:[]}},getTopologyDiff:()=>{const e=Ct.current;return e?{addedNodes:Array.from(e.addedNodes),removedNodes:Array.from(e.removedNodes),addedEdges:Array.from(e.addedEdges),removedEdges:Array.from(e.removedEdges)}:{addedNodes:[],removedNodes:[],addedEdges:[],removedEdges:[]}},relayout:ro,getTension:()=>{var e,t;return null!==(t=null===(e=Ct.current)||void 0===e?void 0:e.tension)&&void 0!==t?t:0}}),[Jt,no,io,ro,Qt,mt]);const so=["tree","cluster","treemap","circlepack","partition","orbit"].includes(w),ao=so?O||(Array.isArray(S)?void 0:S):void 0;t.useEffect(()=>{var e;const t=Ct.current;if(t)if(so&&ao)t.ingestHierarchy(ao,[ct,ut]),t.buildScene([ct,ut]),nt.current=!0,mt();else{const o=j||[],n=Array.isArray(S)?S:[];if(0===o.length&&0===n.length)return;t.ingestBounded(o,n,[ct,ut]),t.buildScene([ct,ut]);for(const o of t.sceneNodes)o.id&&(null===(e=o.style)||void 0===e?void 0:e.fill)&&Yt.current.set(o.id,o.style.fill+"");const i=Array.isArray(oe)?oe:E,r=Array.from(t.nodes.values());for(let e=0;r.length>e;e++){const t=r[e];Yt.current.has(t.id)||Yt.current.set(t.id,i[e%i.length])}Gt.current=r.length,nt.current=!0,mt()}},[j,S,O,ao,so,ct,ut,At,mt,oe]),t.useEffect(()=>{M&&M.length>0&&no(M)},[]);const lo=t.useCallback(e=>{if(be&&be(e),ke){const t=Date.now();ke(e?{type:"hover",datum:e.data||{},x:e.x,y:e.y,timestamp:t,chartType:"StreamNetworkFrame",chartId:we}:{type:"hover-end",timestamp:t,chartType:"StreamNetworkFrame",chartId:we})}},[be,ke,we]),ho=t.useCallback(e=>{if(xe&&xe(e),ke){const t=Date.now();ke(e?{type:"click",datum:e.data||{},x:e.x,y:e.y,timestamp:t,chartType:"StreamNetworkFrame",chartId:we}:{type:"click-end",timestamp:t,chartType:"StreamNetworkFrame",chartId:we})}},[xe,ke,we]),{hoverHandlerRef:go,hoverLeaveRef:fo,onPointerMove:po,onPointerLeave:yo}=it;go.current=e=>{if(!ve)return;const t=St.current;if(!t)return;const o=t.getBoundingClientRect(),n=e.clientX-o.left-lt.left,i=e.clientY-o.top-lt.top;if(0>n||n>ct||0>i||i>ut)return void(zt.current&&(zt.current=null,Pt(null),lo&&(lo(null),nt.current=!0),mt()));const r=Ct.current;if(!r)return;const s=aa(r.sceneNodes,r.sceneEdges,n,i);if(!s)return void(zt.current&&(zt.current=null,Pt(null),lo&&(lo(null),nt.current=!0),mt()));const a=xo(s.datum||{},s.x,s.y,{nodeOrEdge:s.type});zt.current=a,Pt(a),lo&&(lo(a),nt.current=!0),mt()},fo.current=()=>{zt.current&&(zt.current=null,Pt(null),lo&&(lo(null),nt.current=!0),mt())};const vo=t.useRef(()=>{});vo.current=e=>{if(!xe&&!ke)return;const t=St.current;if(!t)return;const o=t.getBoundingClientRect(),n=e.clientX-o.left-lt.left,i=e.clientY-o.top-lt.top;if(0>n||n>ct||0>i||i>ut)return;const r=Ct.current;if(!r)return;const s=aa(r.sceneNodes,r.sceneEdges,n,i);ho(s?xo(s.datum||{},s.x,s.y,{nodeOrEdge:s.type}):null)};const mo=t.useCallback(e=>vo.current(e),[]),bo=t.useRef(-1),ko=t.useRef(null),wo=t.useRef(-1),jo=t.useCallback(e=>{var t;const o=Ct.current;if(!o)return;const n=function(e){var t,o,n,i,r,s;const a=[];for(const l of e)"circle"===l.type&&null!=l.cx?a.push({x:l.cx,y:l.cy,datum:l.datum,shape:"circle",group:null!==(o=null===(t=l.datum)||void 0===t?void 0:t.id)&&void 0!==o?o:"_default"}):"rect"===l.type&&null!=l.x?a.push({x:l.x+l.w/2,y:l.y+l.h/2,datum:l.datum,shape:"rect",w:l.w,h:l.h,group:null!==(i=null===(n=l.datum)||void 0===n?void 0:n.id)&&void 0!==i?i:"_default"}):"arc"===l.type&&null!=l.cx&&a.push({x:l.cx,y:l.cy,datum:l.datum,shape:"circle",group:null!==(s=null===(r=l.datum)||void 0===r?void 0:r.id)&&void 0!==s?s:"_default"});return a.sort((e,t)=>e.x-t.x||e.y-t.y),a}(o.sceneNodes);if(0===n.length)return;const i=Oe(n),r=bo.current;if(0>r){if("Escape"===e.key)return;if(!["ArrowRight","ArrowLeft","ArrowUp","ArrowDown","Home","End","PageUp","PageDown","Enter"].includes(e.key))return;e.preventDefault(),bo.current=0,wo.current=-1;const t=i.flat[0];ko.current={shape:t.shape,w:t.w,h:t.h};const o=xo(t.datum||{},t.x,t.y,{nodeOrEdge:"node"});return zt.current=o,Pt(o),lo&&(lo(o),nt.current=!0),void mt()}const s=Me(i,r),a=function(e,t,o,n,i){var r,s,a;const l=o.flat[t.flatIndex];if(!l)return Ce(e,t,o);const c=null===(r=l.datum)||void 0===r?void 0:r.id;switch(e){case"ArrowRight":case"ArrowLeft":case"ArrowDown":case"ArrowUp":{const n=null!==(s=function(e,t,o){let n=null,i=1/0;for(let r=0;e.flat.length>r;r++){const s=e.flat[r];if(s===t)continue;const a=s.x-t.x,l=s.y-t.y;let c=!1;switch(o){case"right":c=a>0&&Math.abs(a)>=Math.abs(l);break;case"left":c=0>a&&Math.abs(a)>=Math.abs(l);break;case"down":c=l>0&&Math.abs(l)>=Math.abs(a);break;case"up":c=0>l&&Math.abs(l)>=Math.abs(a)}if(!c)continue;const u=a*a+l*l;i>u&&(i=u,n=r)}return n}(o,l,"ArrowRight"===e?"right":"ArrowLeft"===e?"left":"ArrowDown"===e?"down":"up"))&&void 0!==s?s:t.flatIndex;return n!==t.flatIndex&&(i.current=-1),n}case"Enter":{if(null==c)return t.flatIndex;const e=function(e,t){var o,n,i;const r=e+"",s=[];for(const e of t){const t=null!==(o=e.datum)&&void 0!==o?o:e,a="object"==typeof t.source?null===(n=t.source)||void 0===n?void 0:n.id:t.source,l="object"==typeof t.target?null===(i=t.target)||void 0===i?void 0:i.id:t.target,c=null!=a,u=null!=l;c&&a+""===r&&u?s.push(l+""):u&&l+""===r&&c&&s.push(a+"")}return s}(c,n);if(0===e.length)return t.flatIndex;const r=null!==(a=o.idToIdx.get(e[(i.current+1)%e.length]))&&void 0!==a?a:-1;return 0>r?t.flatIndex:(i.current=-1,r)}default:{const n=Ce(e,t,o);return null!==n&&n!==t.flatIndex&&(i.current=-1),n}}}(e.key,s,i,null!==(t=o.sceneEdges)&&void 0!==t?t:[],wo);if(null===a)return;if(e.preventDefault(),0>a)return bo.current=-1,ko.current=null,wo.current=-1,zt.current=null,Pt(null),lo&&(lo(null),nt.current=!0),void mt();bo.current=a;const l=i.flat[a];ko.current={shape:l.shape,w:l.w,h:l.h};const c=l.datum||{},u=Object.assign(Object.assign({},"object"!=typeof c||null===c||Array.isArray(c)?{}:c),{data:c,x:l.x,y:l.y,time:l.x,value:l.y,nodeOrEdge:"node"});zt.current=u,Pt(u),lo&&(lo(u),nt.current=!0),mt()},[lo,mt]),Ao=t.useCallback(e=>{bo.current=-1,ko.current=null,po(e)},[po]);vt.current=()=>{var e,t,o,n,i,r,s;yt.current=0;const a=St.current;if(!a)return;const l=a.getContext("2d");if(!l)return;const c=Ct.current;if(!c)return;const u=performance.now(),d=Mt.current?Math.min((u-Mt.current)/1e3,.1):.016;Mt.current=u;const h=c.advanceTransition(rt.current?u+1e6:u),g=!rt.current&&h,f=!rt.current&&c.tickAnimation([ct,ut],d);(h||nt.current||f)&&c.buildScene([ct,ut]);const p=oo();if(!to(a,at,lt,p))return;l.clearRect(-lt.left,-lt.top,at[0],at[1]),ye&&(l.fillStyle=ye,l.fillRect(0,0,ct,ut)),We&&c.applyDecay(),Ee&&c.applyPulse(u),Ye&&c.applyThresholds(u),c.applyTopologyDiff(u);const y=null!==(e=null==ze?void 0:ze.threshold)&&void 0!==e?e:5e3,v=ze&&c.lastIngestTime>0&&u-c.lastIngestTime>y;if(v&&(l.globalAlpha=null!==(t=null==ze?void 0:ze.dimOpacity)&&void 0!==t?t:.5),function(e,t){for(const o of t)switch(o.type){case"bezier":ya(e,o);break;case"line":va(e,o);break;case"ribbon":ma(e,o);break;case"curved":ba(e,o)}}(l,c.sceneEdges),function(e,t){var o,n,i;for(const r of t){if("rect"!==r.type)continue;const t=r;t.w>0&&t.h>0&&(e.save(),void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),t.style.fill&&(e.fillStyle="string"==typeof t.style.fill&&Zt(e,t.style.fill)||t.style.fill,void 0!==t.style.fillOpacity&&(e.globalAlpha=(null!==(o=t.style.opacity)&&void 0!==o?o:1)*t.style.fillOpacity),e.fillRect(t.x,t.y,t.w,t.h)),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=null!==(n=t.style.strokeWidth)&&void 0!==n?n:1,e.globalAlpha=null!==(i=t.style.opacity)&&void 0!==i?i:1,e.strokeRect(t.x,t.y,t.w,t.h)),co(e,t),e.restore())}}(l,c.sceneNodes),function(e,t){var o,n,i;for(const r of t){if("circle"!==r.type)continue;const t=r;t.r>0&&(e.save(),void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),e.beginPath(),e.arc(t.cx,t.cy,t.r,0,2*Math.PI),t.style.fill&&(e.fillStyle="string"==typeof t.style.fill&&Zt(e,t.style.fill)||t.style.fill,void 0!==t.style.fillOpacity&&(e.globalAlpha=(null!==(o=t.style.opacity)&&void 0!==o?o:1)*t.style.fillOpacity),e.fill()),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=null!==(n=t.style.strokeWidth)&&void 0!==n?n:1,e.globalAlpha=null!==(i=t.style.opacity)&&void 0!==i?i:1,e.stroke()),uo(e,t),e.restore())}}(l,c.sceneNodes),function(e,t){var o,n,i;for(const r of t){if("arc"!==r.type)continue;const t=r;e.save(),void 0!==t.style.opacity&&(e.globalAlpha=t.style.opacity),e.beginPath(),e.arc(t.cx,t.cy,t.outerR,t.startAngle,t.endAngle),e.arc(t.cx,t.cy,t.innerR,t.endAngle,t.startAngle,!0),e.closePath(),t.style.fill&&(e.fillStyle="string"==typeof t.style.fill&&Zt(e,t.style.fill)||t.style.fill,void 0!==t.style.fillOpacity&&(e.globalAlpha=(null!==(o=t.style.opacity)&&void 0!==o?o:1)*t.style.fillOpacity),e.fill()),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=Zt(e,t.style.stroke)||t.style.stroke,e.lineWidth=null!==(n=t.style.strokeWidth)&&void 0!==n?n:1,e.globalAlpha=null!==(i=t.style.opacity)&&void 0!==i?i:1,e.stroke()),e.restore()}}(l,c.sceneNodes),Q&&c.particlePool&&!v){const e=Array.from(c.edges.values());if(e.length>0){!function(e,t,o,n){var i,r;const s=null!==(i=n.spawnRate)&&void 0!==i?i:Fr.spawnRate,a=null!==(r=n.maxPerEdge)&&void 0!==r?r:Fr.maxPerEdge;for(let n=0;t.length>n;n++){const i=t[n];if(!i.bezier)continue;if(e.countForEdge(n)>=a)continue;const r=i.value*s*o*(i.bezier.circular?.3:1),l=Math.floor(r),c=r-l;let u=l;Math.random()<c&&u++;for(let t=0;u>t&&e.countForEdge(n)<a;t++)e.spawn(n)}}(c.particlePool,e,d,jt);const t=.5*(null!==(o=jt.speedMultiplier)&&void 0!==o?o:1);let n;if(jt.proportionalSpeed){const t=e.reduce((e,t)=>Math.max(e,t.value||1),1);n=e.map(e=>.3+(e.value||1)/t*1.7)}c.particlePool.step(d,t,e,n),function(e,t,o,n,i){var r,s;const a=null!==(r=n.radius)&&void 0!==r?r:Fr.radius,l=null!==(s=n.opacity)&&void 0!==s?s:Fr.opacity;e.globalAlpha=l;for(let r=0;t.particles.length>r;r++){const s=t.particles[r];if(!s.active)continue;const l=o[s.edgeIndex];if(l){if("function"==typeof n.color){const t="object"==typeof l.source?l.source:null;e.fillStyle=t?n.color(l,t):Zt(e,"var(--semiotic-secondary, #666)")}else e.fillStyle=n.color&&"inherit"!==n.color?n.color:i(l);e.beginPath(),e.arc(s.x,s.y,a,0,2*Math.PI),e.fill()}}e.globalAlpha=1}(l,c.particlePool,e,jt,Ut)}}v&&(l.globalAlpha=1);const m=nt.current;if(nt.current=!1,m||g||f){const e=St.current;e&&e.setAttribute("aria-label",Ot(null!==(i=null===(n=c.sceneNodes)||void 0===n?void 0:n.length)&&void 0!==i?i:0,null!==(s=null===(r=c.sceneEdges)||void 0===r?void 0:r.length)&&void 0!==s?s:0,"Network chart"))}(m||g||f)&&Bt(e=>e+1),(Kt||g||null!=c.transition||f||c.hasActivePulses||c.hasActiveThresholds||c.hasActiveTopologyDiff)&&(yt.current=requestAnimationFrame(()=>vt.current()))},t.useEffect(()=>(mt(),()=>{}),[mt]),t.useEffect(()=>{nt.current=!0,mt()},[w,ct,ut,ye,mt]),Le(ze,Ct,nt,mt,Dt,Et);const So=ve&&_t?e.jsx($t,{x:_t.x,y:_t.y,containerWidth:ct,containerHeight:ut,margin:lt,className:"stream-network-tooltip",zIndex:2,children:me?me(_t):e.jsx(Sa,{data:_t})}):null;if(xt){const t=Ct.current;if(t){const e=["tree","cluster","treemap","circlepack","partition","orbit"].includes(w),o=e?O||(Array.isArray(S)?void 0:S):void 0;if(e&&o)t.ingestHierarchy(o,[ct,ut]),t.buildScene([ct,ut]);else{const e=j||[],o=Array.isArray(S)?S:[];(e.length>0||o.length>0)&&(t.ingestBounded(e,o,[ct,ut]),t.buildScene([ct,ut]))}}const o=null!==(u=null==t?void 0:t.sceneNodes)&&void 0!==u?u:[],n=null!==(d=null==t?void 0:t.sceneEdges)&&void 0!==d?d:[],i=null!==(h=null==t?void 0:t.labels)&&void 0!==h?h:[];return e.jsxs("div",{className:"stream-network-frame"+(pe?" "+pe:""),role:"img","aria-label":qe||("string"==typeof Ie?Ie:"Network chart"),style:{position:"relative",width:at[0],height:at[1]},children:[e.jsx(Nt,{summary:Xe}),e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:at[0],height:at[1],style:{position:"absolute",left:0,top:0},children:[ht&&e.jsx("g",{transform:`translate(${lt.left},${lt.top})`,children:ht}),e.jsxs("g",{transform:`translate(${lt.left},${lt.top})`,children:[ye&&e.jsx("rect",{x:0,y:0,width:ct,height:ut,fill:ye}),n.map((t,o)=>function(t,o){switch(t.type){case"line":return e.jsx("line",{x1:t.x1,y1:t.y1,x2:t.x2,y2:t.y2,stroke:t.style.stroke||"#999",strokeWidth:t.style.strokeWidth||1,opacity:t.style.opacity},"net-edge-"+o);case"bezier":{const n=t;return e.jsx("path",{d:n.pathD,fill:bt(n.style.fill,"#999"),fillOpacity:n.style.fillOpacity,stroke:n.style.stroke||"none",strokeWidth:n.style.strokeWidth,opacity:n.style.opacity},"net-edge-"+o)}case"ribbon":{const n=t;return e.jsx("path",{d:n.pathD,fill:bt(n.style.fill,"#999"),fillOpacity:n.style.fillOpacity,stroke:n.style.stroke||"none",strokeWidth:n.style.strokeWidth,opacity:n.style.opacity},"net-edge-"+o)}case"curved":{const n=t;return e.jsx("path",{d:n.pathD,fill:bt(n.style.fill,"none"),stroke:n.style.stroke||"#999",strokeWidth:n.style.strokeWidth||1,opacity:n.style.opacity},"net-edge-"+o)}default:return null}}(t,o)).filter(Boolean),o.map((t,o)=>function(t,o){switch(t.type){case"circle":{const n=t;return e.jsx("circle",{cx:n.cx,cy:n.cy,r:n.r,fill:bt(n.style.fill),stroke:n.style.stroke,strokeWidth:n.style.strokeWidth,opacity:n.style.opacity},"net-circle-"+o)}case"rect":{const n=t;return e.jsx("rect",{x:n.x,y:n.y,width:n.w,height:n.h,fill:bt(n.style.fill),stroke:n.style.stroke,strokeWidth:n.style.strokeWidth,opacity:n.style.opacity},"net-rect-"+o)}case"arc":{const n=t,i=c.arc().innerRadius(n.innerR).outerRadius(n.outerR).startAngle(n.startAngle+Math.PI/2).endAngle(n.endAngle+Math.PI/2)({})||"";return e.jsx("path",{d:i,transform:`translate(${n.cx},${n.cy})`,fill:bt(n.style.fill),stroke:n.style.stroke,strokeWidth:n.style.strokeWidth,opacity:n.style.opacity},"net-arc-"+o)}default:return null}}(t,o)).filter(Boolean),i.map((t,o)=>function(t,o){return e.jsx("text",{x:t.x,y:t.y,textAnchor:t.anchor||"middle",dominantBaseline:t.baseline||"auto",fontSize:t.fontSize||11,fontWeight:t.fontWeight,fill:t.fill||"#333",stroke:t.stroke,strokeWidth:t.strokeWidth,paintOrder:t.paintOrder,children:t.text},"net-label-"+o)}(t,o)).filter(Boolean)]})]}),e.jsx(fa,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:lt,labels:i,sceneNodes:o,title:Ie,legend:_e,legendPosition:Pe,legendHoverBehavior:Te,legendClickBehavior:Re,legendHighlightedCategory:Be,legendIsolatedCategories:De,foregroundGraphics:dt,annotations:Ae,svgAnnotationRules:Se,annotationFrame:0})]})}const Oo=Ct.current;return e.jsxs("div",{ref:st,className:"stream-network-frame"+(pe?" "+pe:""),role:"group","aria-label":qe||("string"==typeof Ie?Ie:"Network chart"),tabIndex:0,style:{position:"relative",width:he?"100%":at[0],height:ge?"100%":at[1],overflow:"visible"},onKeyDown:jo,children:[Ge&&e.jsx(Ht,{tableId:pt}),Ge&&e.jsx(It,{nodes:null!==(g=null==Oo?void 0:Oo.sceneNodes)&&void 0!==g?g:[],edges:null!==(f=null==Oo?void 0:Oo.sceneEdges)&&void 0!==f?f:[],chartType:"Network chart",tableId:pt,chartTitle:"string"==typeof Ie?Ie:void 0}),e.jsx(Nt,{summary:Xe}),e.jsxs("div",{role:"img","aria-label":qe||("string"==typeof Ie?Ie:"Network chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:ve?Ao:void 0,onMouseLeave:ve?yo:void 0,onClick:xe||ke?mo:void 0,children:[ht&&e.jsx("svg",{overflow:"visible",style:{position:"absolute",top:0,left:0,width:at[0],height:at[1],pointerEvents:"none",overflow:"visible"},children:e.jsx("g",{transform:`translate(${lt.left},${lt.top})`,children:ht})}),e.jsx("canvas",{ref:St,"aria-label":Ot(null!==(y=null===(p=null==Oo?void 0:Oo.sceneNodes)||void 0===p?void 0:p.length)&&void 0!==y?y:0,null!==(m=null===(v=null==Oo?void 0:Oo.sceneEdges)||void 0===v?void 0:v.length)&&void 0!==m?m:0,"Network chart"),style:{position:"absolute",top:0,left:0}}),e.jsx(Wt,{hoverPoint:_t}),e.jsx(fa,{width:ct,height:ut,totalWidth:at[0],totalHeight:at[1],margin:lt,labels:(null==Oo?void 0:Oo.labels)||[],sceneNodes:null==Oo?void 0:Oo.sceneNodes,title:Ie,legend:_e,legendPosition:Pe,legendHoverBehavior:Te,legendClickBehavior:Re,legendHighlightedCategory:Be,legendIsolatedCategories:De,foregroundGraphics:dt,annotations:Ae,svgAnnotationRules:Se,annotationFrame:Rt}),e.jsx(Ft,{active:bo.current>=0,hoverPoint:_t,margin:lt,size:at,shape:null===(b=ko.current)||void 0===b?void 0:b.shape,width:null===(x=ko.current)||void 0===x?void 0:x.w,height:null===(k=ko.current)||void 0===k?void 0:k.h}),So,(null==ze?void 0:ze.showBadge)&&e.jsx("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===ze.badgePosition?{top:4,left:4}:"bottom-left"===ze.badgePosition?{bottom:4,left:4}:"bottom-right"===ze.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{background:Dt?"#dc3545":"#28a745",color:"white",fontSize:10,fontWeight:700,padding:"2px 6px",borderRadius:3,letterSpacing:"0.05em",zIndex:3,pointerEvents:"none"}),children:Dt?"STALE":"LIVE"})]})]})});Oa.displayName="StreamNetworkFrame";const Ma=t.forwardRef(function(o,n){var i;const r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o,n,i,s;const a=Array.isArray(e)?e:[e],l=null!==(n=null===(o=null===(t=r.current)||void 0===t?void 0:t.getTopology())||void 0===o?void 0:o.nodes)&&void 0!==n?n:[],c=[];for(const e of a){const t=l.find(t=>t.id===e);t&&c.push(Object.assign(Object.assign({},null!==(i=t.data)&&void 0!==i?i:{}),{id:e})),null===(s=r.current)||void 0===s||s.removeNode(e)}return c},update:(e,t)=>(Array.isArray(e)?e:[e]).flatMap(e=>{var o;const n=null===(o=r.current)||void 0===o?void 0:o.updateNode(e,t);return n?[Object.assign(Object.assign({},n),{id:e})]:[]}),clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t,o,n;return null!==(n=null===(o=null===(t=null===(e=r.current)||void 0===e?void 0:e.getTopology())||void 0===t?void 0:t.nodes)||void 0===o?void 0:o.map(e=>e.data))&&void 0!==n?n:[]}}));const s=yn(o.mode,{width:o.width,height:o.height,enableHover:o.enableHover,showLegend:o.showLegend,showLabels:o.showLabels,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary},{width:600,height:600}),{nodes:a,edges:l,margin:c,className:u,nodeIDAccessor:d="id",sourceAccessor:h="source",targetAccessor:g="target",nodeLabel:f,colorBy:p,colorScheme:y,nodeSize:v=8,nodeSizeRange:m=[5,20],edgeWidth:b=1,edgeColor:x="#999",edgeOpacity:k=.6,iterations:w=300,forceStrength:j=.1,tooltip:A,frameProps:S={},onObservation:O,onClick:M,chartId:C,selection:_,linkedHover:P,loading:L,emptyContent:T,legendInteraction:R,legendPosition:B,stroke:D,strokeWidth:I,opacity:N}=o,H=s.width,F=s.height,$=s.enableHover,z=s.showLegend,G=null!==(i=s.showLabels)&&void 0!==i&&i,q=s.title,X=s.description,V=s.summary,U=s.accessibleTable,K=li(L,H,F),Q=K?null:ai(a,H,F,T),Z=a||[],J=l||[],ee=cn(Z,p,y),te=t.useMemo(()=>{if(!p)return[];const e=new Set;for(const t of Z){const o="function"==typeof p?p(t):t[p];null!=o&&e.add(o+"")}return Array.from(e)},[Z,p]),oe=fn(R,p,te),ne=an(),ie=t.useMemo(()=>new Map,[]),re=t.useMemo(()=>{if(Array.isArray(y))return y;if(ne&&ne.length>0)return ne;const e=W[y];return Array.isArray(e)?e:E},[y,ne]),se=t.useMemo(()=>e=>{const t={};return t.fill=p?Y(e.data||e,p,ee):ln(void 0,ne,y,void 0,ie),"number"==typeof v&&(t.r=v),t},[p,ee,v,ne,y,ie]),ae=t.useMemo(()=>mn(se,{stroke:D,strokeWidth:I,opacity:N}),[se,D,I,N]),le=t.useMemo(()=>e=>({stroke:x,strokeWidth:"number"==typeof b?b:"function"==typeof b?b(e):e[b]||1,opacity:k}),[b,x,k]),ce=t.useMemo(()=>mn(le,{stroke:D,strokeWidth:I,opacity:N}),[le,D,I,N]),ue=t.useMemo(()=>{if(G&&f)return"function"==typeof f?f:e=>{var t,o,n;return null!==(n=null!==(o=null===(t=e.data)||void 0===t?void 0:t[f])&&void 0!==o?o:e[f])&&void 0!==n?n:e.id}},[G,f]),{legend:de,margin:he,legendPosition:ge}=gn({data:Z,colorBy:p,colorScale:ee,showLegend:z,legendPosition:B,userMargin:c,defaults:s.marginDefaults}),{customHoverBehavior:fe,customClickBehavior:pe}=dn({selection:_,linkedHover:P,fallbackFields:p?["string"==typeof p?p:""]:[],unwrapData:!0,onObservation:O,onClick:M,chartType:"ForceDirectedGraph",chartId:C}),ye=Hn({componentName:"ForceDirectedGraph",nodes:a,edges:l,nodesRequired:!0,edgesRequired:!0,accessors:{nodeIDAccessor:d}});return ye?e.jsx(Pn,{componentName:"ForceDirectedGraph",message:ye,width:H,height:F}):K||Q||e.jsx(ii,{componentName:"ForceDirectedGraph",width:H,height:F,children:e.jsx(Oa,Object.assign({ref:r,chartType:"force"},null!=a&&{nodes:Z},null!=l&&{edges:J},{size:[H,F],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:he,nodeIDAccessor:d,sourceAccessor:h,targetAccessor:g,iterations:w,forceStrength:j,nodeStyle:ae,edgeStyle:ce,colorBy:p,colorScheme:re,nodeSize:v,nodeSizeRange:m,nodeLabel:ue,showLabels:G,enableHover:$,tooltipContent:!1===A?()=>null:jn(A)||void 0,customHoverBehavior:P||O||M?fe:void 0,customClickBehavior:O||M?pe:void 0,legend:de,legendPosition:ge},R&&"none"!==R&&{legendHoverBehavior:oe.onLegendHover,legendClickBehavior:oe.onLegendClick,legendHighlightedCategory:oe.highlightedCategory,legendIsolatedCategories:oe.isolatedCategories},{className:u,title:q,description:X,summary:V,accessibleTable:U},null!=o.animate&&{animate:o.animate},S))})});function Ca(e,t){if(!e)return[];const o=[],n=e=>{o.push(e);const i="function"==typeof t?t(e):e[t];i&&Array.isArray(i)&&i.forEach(n)};return n(e),o}function _a(e,t,o,n){if(e&&e.length>0)return e;const i=new Set;return t.forEach(e=>{const t="function"==typeof o?o(e):e[o],r="function"==typeof n?n(e):e[n];i.add(t),i.add(r)}),Array.from(i).map(e=>({id:e}))}function Pa(e){return"function"==typeof e?e:t=>t[e]||1}function La({edgeColorBy:e,colorBy:t,colorScale:o,nodeStyleFn:n,edgeOpacity:i,baseStyle:r={}}){return s=>{const a=Object.assign({fillOpacity:i},r);if("function"==typeof e)a.fill=e(s);else if("source"===e){const e="object"==typeof s.source?s.source:null;t&&e?a.fill=Y(e.data||e,t,o):e&&(a.fill=n(e,e.index).fill)}else if("target"===e){const e="object"==typeof s.target?s.target:null;t&&e?a.fill=Y(e.data||e,t,o):e&&(a.fill=n(e,e.index).fill)}else"gradient"===e&&(a.fill="#999",a.fillOpacity=.7*i);return a}}Ma.displayName="ForceDirectedGraph";const Ta=t.forwardRef(function(o,n){var i;const r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o,n,i,s;const a=Array.isArray(e)?e:[e],l=null!==(n=null===(o=null===(t=r.current)||void 0===t?void 0:t.getTopology())||void 0===o?void 0:o.nodes)&&void 0!==n?n:[],c=[];for(const e of a){const t=l.find(t=>t.id===e);t&&c.push(Object.assign(Object.assign({},null!==(i=t.data)&&void 0!==i?i:{}),{id:e})),null===(s=r.current)||void 0===s||s.removeNode(e)}return c},update:(e,t)=>(Array.isArray(e)?e:[e]).flatMap(e=>{var o;const n=null===(o=r.current)||void 0===o?void 0:o.updateNode(e,t);return n?[Object.assign(Object.assign({},n),{id:e})]:[]}),clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t,o,n;return null!==(n=null===(o=null===(t=null===(e=r.current)||void 0===e?void 0:e.getTopology())||void 0===t?void 0:t.edges)||void 0===o?void 0:o.map(e=>e.data))&&void 0!==n?n:[]}}));const s=yn(o.mode,{width:o.width,height:o.height,enableHover:o.enableHover,showLabels:o.showLabels,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary},{width:600,height:600}),{nodes:a,edges:l,margin:c,className:u,sourceAccessor:d="source",targetAccessor:h="target",valueAccessor:g="value",nodeIdAccessor:f="id",colorBy:p,colorScheme:y,edgeColorBy:v="source",padAngle:m=.01,groupWidth:b=20,sortGroups:x,nodeLabel:k,edgeOpacity:w=.5,tooltip:j,frameProps:A={},onObservation:S,onClick:O,chartId:M,selection:C,linkedHover:_,loading:P,emptyContent:L,legendInteraction:T,stroke:R,strokeWidth:B,opacity:D}=o,I=s.width,N=s.height,H=s.enableHover,F=null===(i=s.showLabels)||void 0===i||i,$=s.title,z=s.description,G=s.summary,q=s.accessibleTable,X=li(P,I,N),V=X?null:ai(l,I,N,L),U=l||[],K=t.useMemo(()=>_a(a,U,d,h),[a,U,d,h]),Q=cn(K,p,y),Z=t.useMemo(()=>{if(!p)return[];const e=new Set;for(const t of K){const o="function"==typeof p?p(t):t[p];null!=o&&e.add(o+"")}return Array.from(e)},[K,p]),J=fn(T,p,Z),ee=an(),te=t.useMemo(()=>new Map,[]),oe=t.useMemo(()=>{if(Array.isArray(y))return y;if(ee&&ee.length>0)return ee;const e=W[y];return Array.isArray(e)?e:E},[y,ee]),ne=K.length>0,ie=t.useMemo(()=>{if(ne)return(e,t)=>{var o,n;const i={stroke:"black",strokeWidth:1};if(p)i.fill=Y(e.data||e,p,Q);else{const r=Array.isArray(y)?y:W[y]||E,s=Array.isArray(r)?r:E,a=null!==(n=null!==(o=e.index)&&void 0!==o?o:t)&&void 0!==n?n:0;i.fill=s[a%s.length]}return i}},[ne,p,Q,y]),re=t.useMemo(()=>ie?mn(ie,{stroke:R,strokeWidth:B,opacity:D}):void 0,[ie,R,B,D]),se=t.useMemo(()=>{if(ne)return La({edgeColorBy:v,colorBy:p,colorScale:Q,nodeStyleFn:re||(e=>({fill:ln(void 0,ee,y,void 0,te)})),edgeOpacity:w,baseStyle:{stroke:"black",strokeWidth:.5,strokeOpacity:w}})},[ne,v,p,Q,re,w,ee,y,te]),ae=t.useMemo(()=>se?mn(se,{stroke:R,strokeWidth:B,opacity:D}):void 0,[se,R,B,D]),le=t.useMemo(()=>{if(!F)return;const e=k||f;return"function"==typeof e?e:t=>{var o,n,i;return null!==(i=null!==(n=null===(o=t.data)||void 0===o?void 0:o[e])&&void 0!==n?n:t[e])&&void 0!==i?i:t.id}},[F,k,f]),ce=Object.assign(Object.assign({},s.marginDefaults),"number"==typeof c?{top:c,bottom:c,left:c,right:c}:c),{customHoverBehavior:ue,customClickBehavior:de}=dn({selection:C,linkedHover:_,fallbackFields:p?["string"==typeof p?p:""]:[],unwrapData:!0,onObservation:S,onClick:O,chartType:"ChordDiagram",chartId:M}),he=Hn({componentName:"ChordDiagram",edges:l,edgesRequired:!0});return he?e.jsx(Pn,{componentName:"ChordDiagram",message:he,width:I,height:N}):X||V||e.jsx(ii,{componentName:"ChordDiagram",width:I,height:N,children:e.jsx(Oa,Object.assign({ref:r,chartType:"chord"},K.length>0&&{nodes:K},null!=l&&{edges:U},{size:[I,N],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:ce,nodeIDAccessor:f,sourceAccessor:d,targetAccessor:h,valueAccessor:g,padAngle:m,groupWidth:b,sortGroups:x,nodeStyle:re,edgeStyle:ae,colorBy:p,colorScheme:oe,edgeColorBy:v,edgeOpacity:w,nodeLabel:le,showLabels:F,enableHover:H,tooltipContent:!1===j?()=>null:jn(j)||void 0,customHoverBehavior:_||S||O?ue:void 0,customClickBehavior:S||O?de:void 0},T&&"none"!==T&&{legendHoverBehavior:J.onLegendHover,legendClickBehavior:J.onLegendClick,legendHighlightedCategory:J.highlightedCategory,legendIsolatedCategories:J.isolatedCategories},{className:u,title:$,description:z,summary:G,accessibleTable:q},null!=o.animate&&{animate:o.animate},A))})});Ta.displayName="ChordDiagram";const Ra=t.forwardRef(function(o,n){var i;const r=t.useRef(null);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o,n,i,s;const a=Array.isArray(e)?e:[e],l=null!==(n=null===(o=null===(t=r.current)||void 0===t?void 0:t.getTopology())||void 0===o?void 0:o.nodes)&&void 0!==n?n:[],c=[];for(const e of a){const t=l.find(t=>t.id===e);t&&c.push(Object.assign(Object.assign({},null!==(i=t.data)&&void 0!==i?i:{}),{id:e})),null===(s=r.current)||void 0===s||s.removeNode(e)}return c},update:(e,t)=>(Array.isArray(e)?e:[e]).flatMap(e=>{var o;const n=null===(o=r.current)||void 0===o?void 0:o.updateNode(e,t);return n?[Object.assign(Object.assign({},n),{id:e})]:[]}),clear:()=>{var e;return null===(e=r.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t,o,n;return null!==(n=null===(o=null===(t=null===(e=r.current)||void 0===e?void 0:e.getTopology())||void 0===t?void 0:t.edges)||void 0===o?void 0:o.map(e=>e.data))&&void 0!==n?n:[]}}));const s=yn(o.mode,{width:o.width,height:o.height,enableHover:o.enableHover,showLabels:o.showLabels,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary},{width:800,height:600}),{nodes:a,edges:l,margin:c,className:u,sourceAccessor:d="source",targetAccessor:h="target",valueAccessor:g="value",nodeIdAccessor:f="id",colorBy:p,colorScheme:y,edgeColorBy:v="source",orientation:m="horizontal",nodeAlign:b="justify",nodePaddingRatio:x=.05,nodeWidth:k=15,nodeLabel:w,edgeOpacity:j=.5,edgeSort:A,tooltip:S,frameProps:O={},onObservation:M,onClick:C,chartId:_,selection:P,linkedHover:L,loading:T,emptyContent:R,legendInteraction:B,stroke:D,strokeWidth:I,opacity:N}=o,H=s.width,F=s.height,$=s.enableHover,z=null===(i=s.showLabels)||void 0===i||i,G=s.title,q=s.description,X=s.summary,V=s.accessibleTable,U=li(T,H,F),K=U?null:ai(l,H,F,R),Q=l||[],Z=t.useMemo(()=>_a(a,Q,d,h),[a,Q,d,h]),J=cn(Z,p,y),ee=t.useMemo(()=>{if(!p)return[];const e=new Set;for(const t of Z){const o="function"==typeof p?p(t):t[p];null!=o&&e.add(o+"")}return Array.from(e)},[Z,p]),te=fn(B,p,ee),oe=an(),ne=t.useMemo(()=>new Map,[]),ie=t.useMemo(()=>{if(Array.isArray(y))return y;if(oe&&oe.length>0)return oe;const e=W[y];return Array.isArray(e)?e:E},[y,oe]),re=t.useMemo(()=>e=>{const t={stroke:"black",strokeWidth:1};return t.fill=p?Y(e.data||e,p,J):ln(void 0,oe,y,void 0,ne),t},[p,J,oe,y,ne]),se=t.useMemo(()=>mn(re,{stroke:D,strokeWidth:I,opacity:N}),[re,D,I,N]),ae=t.useMemo(()=>La({edgeColorBy:v,colorBy:p,colorScale:J,nodeStyleFn:se,edgeOpacity:j,baseStyle:{stroke:"none",strokeWidth:0}}),[v,p,J,se,j]),le=t.useMemo(()=>mn(ae,{stroke:D,strokeWidth:I,opacity:N}),[ae,D,I,N]),ce=t.useMemo(()=>{if(!z)return;const e=w||f;return"function"==typeof e?e:t=>{var o,n,i;return null!==(i=null!==(n=null===(o=t.data)||void 0===o?void 0:o[e])&&void 0!==n?n:t[e])&&void 0!==i?i:t.id}},[z,w,f]),ue=Object.assign(Object.assign({},s.marginDefaults),"number"==typeof c?{top:c,bottom:c,left:c,right:c}:c),{customHoverBehavior:de,customClickBehavior:he}=dn({selection:P,linkedHover:L,fallbackFields:p?["string"==typeof p?p:""]:[],unwrapData:!0,onObservation:M,onClick:C,chartType:"SankeyDiagram",chartId:_}),ge=Hn({componentName:"SankeyDiagram",edges:l,edgesRequired:!0});return ge?e.jsx(Pn,{componentName:"SankeyDiagram",message:ge,width:H,height:F}):U||K||e.jsx(ii,{componentName:"SankeyDiagram",width:H,height:F,children:e.jsx(Oa,Object.assign({ref:r,chartType:"sankey"},Z.length>0&&{nodes:Z},null!=l&&{edges:Q},{size:[H,F],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:ue,nodeIDAccessor:f,sourceAccessor:d,targetAccessor:h,valueAccessor:g,orientation:m,nodeAlign:b,nodePaddingRatio:x,nodeWidth:k,nodeStyle:se,edgeStyle:le,colorBy:p,colorScheme:ie,edgeColorBy:v,edgeOpacity:j,edgeSort:A,nodeLabel:ce,showLabels:z,enableHover:$,tooltipContent:!1===S?()=>null:jn(S)||void 0,customHoverBehavior:L||M||C?de:void 0,customClickBehavior:M||C?he:void 0},B&&"none"!==B&&{legendHoverBehavior:te.onLegendHover,legendClickBehavior:te.onLegendClick,legendHighlightedCategory:te.highlightedCategory,legendIsolatedCategories:te.isolatedCategories},{className:u,title:G,description:q,summary:X,accessibleTable:V},null!=o.animate&&{animate:o.animate},O))})});function Ba(o){var n;const i=yn(o.mode,{width:o.width,height:o.height,enableHover:o.enableHover,showLabels:o.showLabels,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary},{width:600,height:600}),{data:r,margin:s,className:a,layout:l="tree",orientation:c="vertical",childrenAccessor:u="children",valueAccessor:d="value",nodeIdAccessor:h="name",colorBy:g,colorScheme:f,colorByDepth:p=!1,edgeStyle:y="curve",nodeLabel:v,nodeSize:m=5,tooltip:b,frameProps:x={},onObservation:k,onClick:w,chartId:j,selection:A,linkedHover:S,loading:O,legendInteraction:M,stroke:C,strokeWidth:_,opacity:P}=o,L=i.width,T=i.height,R=i.enableHover,B=null===(n=i.showLabels)||void 0===n||n,D=i.title,I=i.description,N=i.summary,H=i.accessibleTable,F=li(O,L,T),z=t.useMemo(()=>Ca(null!=r?r:null,u),[r,u]),G=cn(z,p?void 0:g,f),q=t.useMemo(()=>{if(!g||p)return[];const e=new Set;for(const t of z){const o="function"==typeof g?g(t):t[g];null!=o&&e.add(o+"")}return Array.from(e)},[z,g,p]),X=fn(M,p?void 0:g,q),V=an(),U=t.useMemo(()=>new Map,[]),K=t.useMemo(()=>{if(Array.isArray(f))return f;if(V&&V.length>0)return V;const e=W[f];return Array.isArray(e)?e:E},[f,V]),Q=t.useMemo(()=>e=>{const t={stroke:"black",strokeWidth:1};return t.fill=p?$[(e.depth||0)%$.length]:g?Y(e.data||e,g,G):ln(void 0,V,f,void 0,U),t},[g,p,G,V,f,U]),Z=t.useMemo(()=>mn(Q,{stroke:C,strokeWidth:_,opacity:P}),[Q,C,_,P]),J=t.useMemo(()=>()=>({stroke:"#999",strokeWidth:1,fill:"none"}),[]),ee=t.useMemo(()=>mn(J,{stroke:C,strokeWidth:_,opacity:P}),[J,C,_,P]),te=t.useMemo(()=>{if("treemap"===l||"circlepack"===l||"partition"===l)return Pa(d)},[l,d]),oe=Object.assign(Object.assign({},i.marginDefaults),"number"==typeof s?{top:s,bottom:s,left:s,right:s}:s),{customHoverBehavior:ne,customClickBehavior:ie}=dn({selection:A,linkedHover:S,fallbackFields:g?["string"==typeof g?g:""]:[],unwrapData:!0,onObservation:k,onClick:w,chartType:"TreeDiagram",chartId:j}),re=Nn({componentName:"TreeDiagram",data:r});return re?e.jsx(Pn,{componentName:"TreeDiagram",message:re,width:L,height:T}):F||e.jsx(ii,{componentName:"TreeDiagram",width:L,height:T,children:e.jsx(Oa,Object.assign({chartType:l},null!=r&&{data:r},{size:[L,T],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:oe,nodeIDAccessor:h,childrenAccessor:u,hierarchySum:te,treeOrientation:c,edgeType:y,nodeStyle:Z,edgeStyle:ee,colorBy:g,colorScheme:K,colorByDepth:p,nodeSize:m,nodeLabel:B?v||h:void 0,showLabels:B,enableHover:R,tooltipContent:!1===b?()=>null:jn(b)||void 0,customHoverBehavior:S||k||w?ne:void 0,customClickBehavior:k||w?ie:void 0},M&&"none"!==M&&{legendHoverBehavior:X.onLegendHover,legendClickBehavior:X.onLegendClick,legendHighlightedCategory:X.highlightedCategory,legendIsolatedCategories:X.isolatedCategories},{className:a,title:D,description:I,summary:N,accessibleTable:H},null!=o.animate&&{animate:o.animate},x))})}function Da(o){var n;const i=yn(o.mode,{width:o.width,height:o.height,enableHover:o.enableHover,showLabels:o.showLabels,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary,linkedHover:o.linkedHover},{width:600,height:600}),{data:r,margin:s,className:a,childrenAccessor:l="children",valueAccessor:c="value",nodeIdAccessor:u="name",colorBy:d,colorScheme:h,colorByDepth:g=!1,labelMode:f="leaf",nodeLabel:p,padding:y=4,paddingTop:v,tooltip:m,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:j,chartId:A,loading:S,legendInteraction:O,stroke:M,strokeWidth:C,opacity:_}=o,P=i.width,L=i.height,T=i.enableHover,R=null===(n=i.showLabels)||void 0===n||n,B=i.title,D=i.description,I=i.summary,N=i.accessibleTable,H=li(S,P,L),{activeSelectionHook:F,customHoverBehavior:z,customClickBehavior:G}=dn({selection:x,linkedHover:k,fallbackFields:d?["string"==typeof d?d:""]:[],onObservation:w,onClick:j,chartType:"Treemap",chartId:A}),q=ui(x),X=t.useCallback(e=>{if(!e)return z(null);const t=e.data||e;z({data:(null==t?void 0:t.data)||t})},[z]),V=t.useMemo(()=>Ca(null!=r?r:null,l),[r,l]),U=cn(V,g?void 0:d,h),K=t.useMemo(()=>{if(!d||g)return[];const e=new Set;for(const t of V){const o="function"==typeof d?d(t):t[d];null!=o&&e.add(o+"")}return Array.from(e)},[V,d,g]),Q=fn(O,g?void 0:d,K),Z=an(),J=t.useMemo(()=>new Map,[]),ee=t.useMemo(()=>{if(Array.isArray(h))return h;if(Z&&Z.length>0)return Z;const e=W[h];return Array.isArray(e)?e:E},[h,Z]),te=t.useMemo(()=>e=>{const t={stroke:"#fff",strokeWidth:1,strokeOpacity:.8};return t.fill=g?$[(e.depth||0)%$.length]:d?Y(e.data||e,d,U):ln(void 0,Z,h,void 0,J),t},[d,g,U,Z,h,J]),oe=t.useMemo(()=>mn(te,{stroke:M,strokeWidth:C,opacity:_}),[te,M,C,_]),ne=t.useMemo(()=>F?e=>{var t;const o=Object.assign({},oe(e));if(F.isActive)if(F.predicate(e.data||e))(null==q?void 0:q.selectedStyle)&&Object.assign(o,q.selectedStyle);else{const e=null!==(t=null==q?void 0:q.unselectedOpacity)&&void 0!==t?t:.5;o.opacity=e,o.fillOpacity=e,o.strokeOpacity=e,(null==q?void 0:q.unselectedStyle)&&Object.assign(o,q.unselectedStyle)}return o}:oe,[oe,F,q]),ie=t.useMemo(()=>Pa(c),[c]),re=void 0!==v?v:!R||"parent"!==f&&"all"!==f?void 0:18,se=Object.assign(Object.assign({},i.marginDefaults),"number"==typeof s?{top:s,bottom:s,left:s,right:s}:s),ae=Nn({componentName:"Treemap",data:r});return ae?e.jsx(Pn,{componentName:"Treemap",message:ae,width:P,height:L}):H||e.jsx(ii,{componentName:"Treemap",width:P,height:L,children:e.jsx(Oa,Object.assign({chartType:"treemap"},null!=r&&{data:r},{size:[P,L],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:se,nodeIDAccessor:u,childrenAccessor:l,hierarchySum:ie,padding:y,paddingTop:re,nodeStyle:ne,colorBy:d,colorScheme:ee,colorByDepth:g,nodeLabel:R?p||u:void 0,showLabels:R,labelMode:f,enableHover:T,tooltipContent:!1===m?()=>null:jn(m)||void 0},(k||w||j)&&{customHoverBehavior:X},(w||j)&&{customClickBehavior:G},O&&"none"!==O&&{legendHoverBehavior:Q.onLegendHover,legendClickBehavior:Q.onLegendClick,legendHighlightedCategory:Q.highlightedCategory,legendIsolatedCategories:Q.isolatedCategories},{className:a,title:B,description:D,summary:I,accessibleTable:N},null!=o.animate&&{animate:o.animate},b))})}function Ia(o){var n;const i=yn(o.mode,{width:o.width,height:o.height,enableHover:o.enableHover,showLabels:o.showLabels,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary},{width:600,height:600}),{data:r,margin:s,className:a,childrenAccessor:l="children",valueAccessor:c="value",nodeIdAccessor:u="name",colorBy:d,colorScheme:h,colorByDepth:g=!1,nodeLabel:f,circleOpacity:p=.7,padding:y=4,tooltip:v,frameProps:m={},onObservation:b,onClick:x,chartId:k,selection:w,linkedHover:j,loading:A,legendInteraction:S,stroke:O,strokeWidth:M,opacity:C}=o,_=i.width,P=i.height,L=i.enableHover,T=null===(n=i.showLabels)||void 0===n||n,R=i.title,B=i.description,D=i.summary,I=i.accessibleTable,N=li(A,_,P),H=t.useMemo(()=>Ca(null!=r?r:null,l),[r,l]),F=cn(H,g?void 0:d,h),z=t.useMemo(()=>{if(!d||g)return[];const e=new Set;for(const t of H){const o="function"==typeof d?d(t):t[d];null!=o&&e.add(o+"")}return Array.from(e)},[H,d,g]),G=fn(S,g?void 0:d,z),q=an(),X=t.useMemo(()=>new Map,[]),V=t.useMemo(()=>{if(Array.isArray(h))return h;if(q&&q.length>0)return q;const e=W[h];return Array.isArray(e)?e:E},[h,q]),U=t.useMemo(()=>e=>{const t={stroke:"currentColor",strokeWidth:1,strokeOpacity:.3,fillOpacity:p};return t.fill=g?$[(e.depth||0)%$.length]:d?Y(e.data||e,d,F):ln(void 0,q,h,void 0,X),t},[d,g,F,p,q,h,X]),K=t.useMemo(()=>mn(U,{stroke:O,strokeWidth:M,opacity:C}),[U,O,M,C]),Q=t.useMemo(()=>Pa(c),[c]),Z=Object.assign(Object.assign({},i.marginDefaults),"number"==typeof s?{top:s,bottom:s,left:s,right:s}:s),{customHoverBehavior:J,customClickBehavior:ee}=dn({selection:w,linkedHover:j,fallbackFields:d?["string"==typeof d?d:""]:[],unwrapData:!0,onObservation:b,onClick:x,chartType:"CirclePack",chartId:k}),te=Nn({componentName:"CirclePack",data:r});return te?e.jsx(Pn,{componentName:"CirclePack",message:te,width:_,height:P}):N||e.jsx(ii,{componentName:"CirclePack",width:_,height:P,children:e.jsx(Oa,Object.assign({chartType:"circlepack"},null!=r&&{data:r},{size:[_,P],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:Z,nodeIDAccessor:u,childrenAccessor:l,hierarchySum:Q,padding:y,nodeStyle:K,colorBy:d,colorScheme:V,colorByDepth:g,nodeLabel:T?f||u:void 0,showLabels:T,enableHover:L,tooltipContent:!1===v?()=>null:jn(v)||void 0,customHoverBehavior:j||b||x?J:void 0,customClickBehavior:b||x?ee:void 0},S&&"none"!==S&&{legendHoverBehavior:G.onLegendHover,legendClickBehavior:G.onLegendClick,legendHighlightedCategory:G.highlightedCategory,legendIsolatedCategories:G.isolatedCategories},{className:a,title:R,description:B,summary:D,accessibleTable:I},null!=o.animate&&{animate:o.animate},m))})}Ra.displayName="SankeyDiagram",Ba.displayName="TreeDiagram",Da.displayName="Treemap",Ia.displayName="CirclePack";const Na=$;function Ha(o){const n=yn(o.mode,{width:o.width,height:o.height,enableHover:o.enableHover,showLabels:o.showLabels,title:o.title,description:o.description,accessibleTable:o.accessibleTable,summary:o.summary},{width:600,height:600}),{data:i,margin:r,className:s,childrenAccessor:a="children",nodeIdAccessor:l="name",colorBy:c,colorScheme:u,colorByDepth:d=!1,orbitMode:h="flat",orbitSize:g=2.95,speed:f=.25,revolution:p,revolutionStyle:y,eccentricity:v=1,showRings:m=!0,nodeRadius:b=6,showLabels:x=!1,animated:k=!0,tooltip:w,foregroundGraphics:j,annotations:A,frameProps:S={},onObservation:O,onClick:M,chartId:C,selection:_,linkedHover:P,loading:L,stroke:T,strokeWidth:R,opacity:B}=o,D=n.width,I=n.height,N=n.enableHover,H=n.title,F=n.description,$=n.summary,z=n.accessibleTable,G=li(L,D,I),q=cn(t.useMemo(()=>Ca(i,a),[i,a]),d?void 0:c,u),X=an(),V=t.useMemo(()=>new Map,[]),U=t.useMemo(()=>{if(Array.isArray(u))return u;if(X&&X.length>0)return X;const e=W[u];return Array.isArray(e)?e:E},[u,X]),K=t.useMemo(()=>{if(Array.isArray(u))return u;const e=W[u];return Array.isArray(e)?e:E},[u]),Q=t.useMemo(()=>e=>{var t;const o={stroke:"#fff",strokeWidth:1},n=0===(null!==(t=e.depth)&&void 0!==t?t:0);return o.fill=d?n?K[0]:Na[(e.depth||0)%Na.length]:c?Y(e.data||e,c,q):ln(void 0,X,u,void 0,V),o.opacity=n?1:.85,o},[c,d,q,K,X,u,V]),Z=t.useMemo(()=>mn(Q,{stroke:T,strokeWidth:R,opacity:B}),[Q,T,R,B]),J=t.useMemo(()=>()=>({stroke:"rgba(128,128,128,0.35)",strokeWidth:.5,opacity:1}),[]),ee=Object.assign({top:10,right:10,bottom:10,left:10},"number"==typeof r?{top:r,bottom:r,left:r,right:r}:r),{customHoverBehavior:te,customClickBehavior:oe}=dn({selection:_,linkedHover:P,fallbackFields:c?["string"==typeof c?c:""]:[],unwrapData:!0,onObservation:O,onClick:M,chartType:"OrbitDiagram",chartId:C}),ne=t.useMemo(()=>{if(te)return e=>{te(e&&e.data&&void 0!==e.data.data?Object.assign(Object.assign({},e),{data:e.data.data}):e)}},[te]),ie=t.useMemo(()=>{if(oe)return e=>{oe(e&&e.data&&void 0!==e.data.data?Object.assign(Object.assign({},e),{data:e.data.data}):e)}},[oe]),re=Nn({componentName:"OrbitDiagram",data:i});return re?e.jsx(Pn,{componentName:"OrbitDiagram",message:re,width:D,height:I}):G||e.jsx(ii,{componentName:"OrbitDiagram",width:D,height:I,children:e.jsx(Oa,Object.assign({chartType:"orbit"},null!=i&&{data:i},{size:[D,I],responsiveWidth:o.responsiveWidth,responsiveHeight:o.responsiveHeight,margin:ee,nodeIDAccessor:l,childrenAccessor:a,nodeStyle:Z,edgeStyle:J,colorBy:c,colorScheme:U,colorByDepth:d,nodeSize:b,nodeLabel:x?l:void 0,showLabels:x,enableHover:!k&&N,tooltipContent:k?void 0:!1===w?()=>null:jn(w)||void 0,customHoverBehavior:P||O||M?ne:void 0,customClickBehavior:O||M?ie:void 0,foregroundGraphics:j,annotations:A,className:s,title:H,description:F,summary:$,orbitMode:h,orbitSize:g,orbitSpeed:f,orbitRevolution:p,orbitRevolutionStyle:y,orbitEccentricity:v,orbitShowRings:m,orbitAnimated:k,accessibleTable:z},null!=o.animate&&{animate:o.animate},S))})}Ha.displayName="OrbitDiagram";const Wa=t.forwardRef(function(o,n){var i,r,s,a;const l=yn(o.mode,{width:null!==(r=null===(i=o.size)||void 0===i?void 0:i[0])&&void 0!==r?r:o.width,height:null!==(a=null===(s=o.size)||void 0===s?void 0:s[1])&&void 0!==a?a:o.height,enableHover:null!=o.enableHover?!!o.enableHover:void 0}),{size:c,margin:u,className:d,arrowOfTime:h="right",windowMode:g="sliding",windowSize:f=200,data:p,timeAccessor:y,valueAccessor:v,timeExtent:m,valueExtent:b,extentPadding:x,stroke:k="#007bff",strokeWidth:w=2,strokeDasharray:j,opacity:A,background:S,tooltipContent:O,tooltip:M,onHover:C,annotations:_,svgAnnotationRules:P,tickFormatTime:L,tickFormatValue:T,decay:R,pulse:B,staleness:D,transition:I,linkedHover:N,selection:H,onObservation:W,chartId:E,loading:F,emptyContent:$,emphasis:z,legendPosition:Y}=o,G=l.showAxes,q=l.enableHover,X=null!=u?u:l.marginDefaults,V=null!=c?c:[l.width,l.height],U=null!=O?O:M,K=t.useRef(null),{customHoverBehavior:Q}=dn({selection:H,linkedHover:N,unwrapData:!0,onObservation:W,chartType:"RealtimeLineChart",chartId:E}),Z=t.useCallback(e=>{C&&C(e),Q(e)},[C,Q]);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=K.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=K.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=K.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=K.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=K.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=K.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=K.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const J=li(F,V[0],V[1]),ee=J?null:ai(p,V[0],V[1],$),te={stroke:k,strokeWidth:w,strokeDasharray:j};return null!=A&&(te.opacity=A),J||ee||e.jsx(Lo,{ref:K,chartType:"line",runtimeMode:"streaming",size:V,margin:X,className:z?`${d||""} semiotic-emphasis-${z}`.trim():d,arrowOfTime:h,windowMode:g,windowSize:f,data:p,timeAccessor:y,valueAccessor:v,xExtent:m,yExtent:b,extentPadding:x,lineStyle:te,showAxes:G,background:S,hoverAnnotation:q,tooltipContent:U,customHoverBehavior:Z,annotations:_,svgAnnotationRules:P,tickFormatTime:L,tickFormatValue:T,decay:R,pulse:B,staleness:D,transition:I,pointIdAccessor:o.pointIdAccessor,legendPosition:Y})});Wa.displayName="RealtimeLineChart";const Ea=t.forwardRef(function(o,n){var i,r,s,a;const l=yn(o.mode,{width:null!==(r=null===(i=o.size)||void 0===i?void 0:i[0])&&void 0!==r?r:o.width,height:null!==(a=null===(s=o.size)||void 0===s?void 0:s[1])&&void 0!==a?a:o.height,showAxes:o.showAxes,enableHover:null!=o.enableHover?!!o.enableHover:void 0,linkedHover:o.linkedHover}),{binSize:c,size:u,margin:d,className:h,arrowOfTime:g="right",windowMode:f="sliding",windowSize:p=200,data:y,timeAccessor:v,valueAccessor:m,timeExtent:b,valueExtent:x,extentPadding:k,categoryAccessor:w,colors:j,fill:A,stroke:S,strokeWidth:O,opacity:M,gap:C,background:_,tooltipContent:P,tooltip:L,onHover:T,annotations:R,svgAnnotationRules:B,tickFormatTime:D,tickFormatValue:I,linkedHover:N,selection:H,decay:W,pulse:E,staleness:F,transition:$,onObservation:z,chartId:Y,loading:G,emptyContent:q,emphasis:X,legendPosition:V,brush:U,onBrush:K,linkedBrush:Q}=o,Z=l.showAxes,J=l.enableHover,ee=null!=d?d:l.marginDefaults,te=null!=u?u:[l.width,l.height],oe=null!=P?P:L,ne=t.useRef(null),{customHoverBehavior:ie}=dn({selection:H,linkedHover:N,unwrapData:!0,onObservation:z,chartType:"RealtimeTemporalHistogram",chartId:Y}),re=t.useCallback(e=>{T&&T(e),ie(e)},[T,ie]),se=!0===U?{dimension:"x",snap:"bin"}:"x"===U?{dimension:"x"}:"object"==typeof U?U:void 0,ae=Qo(Q),le=Yo(Object.assign({name:(null==ae?void 0:ae.name)||"__unused_hist_brush__",xField:(null==ae?void 0:ae.xField)||("string"==typeof v?v:"time")},(null==ae?void 0:ae.yField)?{yField:ae.yField}:{})),ce=t.useRef(le.brushInteraction);ce.current=le.brushInteraction;const ue=t.useCallback(e=>{if(K&&K(e),z&&z(e?{type:"brush",extent:e,timestamp:Date.now(),chartType:"RealtimeTemporalHistogram",chartId:Y}:{type:"brush-end",timestamp:Date.now(),chartType:"RealtimeTemporalHistogram",chartId:Y}),ae){const t=ce.current;t.end(e?"xBrush"===t.brush?e.x:"yBrush"===t.brush?e.y:[[e.x[0],e.y[0]],[e.x[1],e.y[1]]]:null)}},[K,z,Y,ae]);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=ne.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=ne.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=ne.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=ne.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=ne.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=ne.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=ne.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const de=li(G,te[0],te[1]),he=de?null:ai(y,te[0],te[1],q),ge={};return null!=A&&(ge.fill=A),null!=S&&(ge.stroke=S),null!=O&&(ge.strokeWidth=O),null!=M&&(ge.opacity=M),null!=C&&(ge.gap=C),de||he||e.jsx(Lo,{ref:ne,chartType:"bar",runtimeMode:"streaming",size:te,margin:ee,className:X?`${h||""} semiotic-emphasis-${X}`.trim():h,arrowOfTime:g,windowMode:f,windowSize:p,data:y,timeAccessor:v,valueAccessor:m,xExtent:b,yExtent:x,extentPadding:k,binSize:c,categoryAccessor:w,barColors:j,barStyle:ge,showAxes:Z,background:_,hoverAnnotation:J,tooltipContent:oe,customHoverBehavior:re,annotations:R,svgAnnotationRules:B,tickFormatTime:D,tickFormatValue:I,decay:W,pulse:E,staleness:F,transition:$,pointIdAccessor:o.pointIdAccessor,legendPosition:V,brush:se||(Q?{dimension:"x"}:void 0),onBrush:se||Q?ue:void 0})});Ea.displayName="RealtimeTemporalHistogram";const Fa=Ea,$a=t.forwardRef(function(o,n){var i,r,s,a;const l=yn(o.mode,{width:null!==(r=null===(i=o.size)||void 0===i?void 0:i[0])&&void 0!==r?r:o.width,height:null!==(a=null===(s=o.size)||void 0===s?void 0:s[1])&&void 0!==a?a:o.height,enableHover:null!=o.enableHover?!!o.enableHover:void 0}),{size:c,margin:u,className:d,arrowOfTime:h="right",windowMode:g="sliding",windowSize:f=200,data:p,timeAccessor:y,valueAccessor:v,timeExtent:m,valueExtent:b,extentPadding:x,categoryAccessor:k,colors:w,radius:j,fill:A,opacity:S,stroke:O,strokeWidth:M,background:C,tooltipContent:_,tooltip:P,onHover:L,annotations:T,svgAnnotationRules:R,tickFormatTime:B,tickFormatValue:D,linkedHover:I,selection:N,onObservation:H,chartId:W,loading:E,emptyContent:F,emphasis:$,legendPosition:z}=o,Y=l.showAxes,G=l.enableHover,q=null!=u?u:l.marginDefaults,X=null!=c?c:[l.width,l.height],V=null!=_?_:P,U=t.useRef(null),{customHoverBehavior:K}=dn({selection:N,linkedHover:I,unwrapData:!0,onObservation:H,chartType:"RealtimeSwarmChart",chartId:W}),Q=t.useCallback(e=>{L&&L(e),K(e)},[L,K]);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=U.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=U.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=U.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const Z=li(E,X[0],X[1]),J=Z?null:ai(p,X[0],X[1],F),ee={};return null!=j&&(ee.radius=j),null!=A&&(ee.fill=A),null!=S&&(ee.opacity=S),null!=O&&(ee.stroke=O),null!=M&&(ee.strokeWidth=M),Z||J||e.jsx(Lo,{ref:U,chartType:"swarm",runtimeMode:"streaming",size:X,margin:q,className:$?`${d||""} semiotic-emphasis-${$}`.trim():d,arrowOfTime:h,windowMode:g,windowSize:f,data:p,timeAccessor:y,valueAccessor:v,xExtent:m,yExtent:b,extentPadding:x,categoryAccessor:k,barColors:w,swarmStyle:ee,showAxes:Y,background:C,hoverAnnotation:G,tooltipContent:V,customHoverBehavior:Q,annotations:T,svgAnnotationRules:R,tickFormatTime:B,tickFormatValue:D,legendPosition:z,pointIdAccessor:o.pointIdAccessor})});$a.displayName="RealtimeSwarmChart";const za=t.forwardRef(function(o,n){var i,r,s,a;const l=yn(o.mode,{width:null!==(r=null===(i=o.size)||void 0===i?void 0:i[0])&&void 0!==r?r:o.width,height:null!==(a=null===(s=o.size)||void 0===s?void 0:s[1])&&void 0!==a?a:o.height,enableHover:null!=o.enableHover?!!o.enableHover:void 0}),{size:c,margin:u,className:d,arrowOfTime:h="right",windowMode:g="sliding",windowSize:f=200,data:p,timeAccessor:y,valueAccessor:v,timeExtent:m,valueExtent:b,extentPadding:x,positiveColor:k,negativeColor:w,connectorStroke:j,connectorWidth:A,gap:S,stroke:O,strokeWidth:M,opacity:C,background:_,tooltipContent:P,tooltip:L,onHover:T,annotations:R,svgAnnotationRules:B,tickFormatTime:D,tickFormatValue:I,linkedHover:N,selection:H,onObservation:W,chartId:E,loading:F,emptyContent:$,emphasis:z,legendPosition:Y}=o,G=l.showAxes,q=l.enableHover,X=null!=u?u:l.marginDefaults,V=null!=c?c:[l.width,l.height],U=null!=P?P:L,K=t.useRef(null),{customHoverBehavior:Q}=dn({selection:H,linkedHover:N,unwrapData:!0,onObservation:W,chartType:"RealtimeWaterfallChart",chartId:E}),Z=t.useCallback(e=>{T&&T(e),Q(e)},[T,Q]);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=K.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=K.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=K.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=K.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=K.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=K.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=K.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const J=li(F,V[0],V[1]),ee=J?null:ai(p,V[0],V[1],$),te={};return null!=k&&(te.positiveColor=k),null!=w&&(te.negativeColor=w),null!=j&&(te.connectorStroke=j),null!=A&&(te.connectorWidth=A),null!=S&&(te.gap=S),null!=O&&(te.stroke=O),null!=M&&(te.strokeWidth=M),null!=C&&(te.opacity=C),J||ee||e.jsx(Lo,{ref:K,chartType:"waterfall",runtimeMode:"streaming",size:V,margin:X,className:z?`${d||""} semiotic-emphasis-${z}`.trim():d,arrowOfTime:h,windowMode:g,windowSize:f,data:p,timeAccessor:y,valueAccessor:v,xExtent:m,yExtent:b,extentPadding:x,waterfallStyle:te,showAxes:G,background:_,hoverAnnotation:q,tooltipContent:U,customHoverBehavior:Z,annotations:R,svgAnnotationRules:B,tickFormatTime:D,tickFormatValue:I,legendPosition:Y,pointIdAccessor:o.pointIdAccessor})});za.displayName="RealtimeWaterfallChart";const Ya=t.forwardRef(function(o,n){var i,r,s,a;const l=yn(o.mode,{width:null!==(r=null===(i=o.size)||void 0===i?void 0:i[0])&&void 0!==r?r:o.width,height:null!==(a=null===(s=o.size)||void 0===s?void 0:s[1])&&void 0!==a?a:o.height,enableHover:null!=o.enableHover?!!o.enableHover:void 0}),{size:c,margin:u,className:d,arrowOfTime:h="right",windowMode:g="sliding",windowSize:f=200,data:p,timeAccessor:y,valueAccessor:v,categoryAccessor:m,timeExtent:b,valueExtent:x,extentPadding:k,heatmapXBins:w=20,heatmapYBins:j=20,aggregation:A="count",background:S,tooltipContent:O,tooltip:M,onHover:C,annotations:_,svgAnnotationRules:P,tickFormatTime:L,tickFormatValue:T,decay:R,pulse:B,staleness:D,linkedHover:I,selection:N,onObservation:H,chartId:W,loading:E,emptyContent:F,emphasis:$,legendPosition:z}=o,Y=l.showAxes,G=l.enableHover,q=null!=u?u:l.marginDefaults,X=null!=c?c:[l.width,l.height],V=null!=O?O:M,U=t.useRef(null),{customHoverBehavior:K}=dn({selection:N,linkedHover:I,unwrapData:!0,onObservation:H,chartType:"RealtimeHeatmap",chartId:W}),Q=t.useCallback(e=>{C&&C(e),K(e)},[C,K]);t.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=U.current)||void 0===t?void 0:t.pushMany(e)},remove:e=>{var t,o;return null!==(o=null===(t=U.current)||void 0===t?void 0:t.remove(e))&&void 0!==o?o:[]},update:(e,t)=>{var o,n;return null!==(n=null===(o=U.current)||void 0===o?void 0:o.update(e,t))&&void 0!==n?n:[]},clear:()=>{var e;return null===(e=U.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]},getScales:()=>{var e,t;return null!==(t=null===(e=U.current)||void 0===e?void 0:e.getScales())&&void 0!==t?t:null}}));const Z=li(E,X[0],X[1]),J=Z?null:ai(p,X[0],X[1],F);return Z||J||e.jsx(Lo,{ref:U,chartType:"heatmap",runtimeMode:"streaming",size:X,margin:q,className:$?`${d||""} semiotic-emphasis-${$}`.trim():d,arrowOfTime:h,windowMode:g,windowSize:f,data:p,timeAccessor:y,valueAccessor:v,categoryAccessor:m,xExtent:b,yExtent:x,extentPadding:k,heatmapXBins:w,heatmapYBins:j,heatmapAggregation:A,showAxes:Y,background:S,hoverAnnotation:G,tooltipContent:V,customHoverBehavior:Q,annotations:_,svgAnnotationRules:P,tickFormatTime:L,tickFormatValue:T,decay:R,pulse:B,staleness:D,legendPosition:z,pointIdAccessor:o.pointIdAccessor})});Ya.displayName="RealtimeHeatmap";const[Ga]=w(e=>({tooltip:null,changeTooltip(t){e(()=>({tooltip:t}))}}));function qa(e,t){return di(this,void 0,void 0,function*(){const{format:o="png",filename:n="chart",scale:i=2,background:r="white"}=t||{},s=e.querySelector("svg");if(!s)throw Error("No SVG element found in the container");const a=s.cloneNode(!0),l=s.getBoundingClientRect();if(a.getAttribute("width")||a.setAttribute("width",l.width+""),a.getAttribute("height")||a.setAttribute("height",l.height+""),a.getAttribute("xmlns")||a.setAttribute("xmlns","http://www.w3.org/2000/svg"),Xa(s,a),"svg"===o){const e=(new XMLSerializer).serializeToString(a);Va(new Blob([e],{type:"image/svg+xml;charset=utf-8"}),n+".svg")}else{const t=l.width*i,o=l.height*i,s=document.createElement("canvas");s.width=t,s.height=o;const c=s.getContext("2d");c.fillStyle=r,c.fillRect(0,0,t,o),c.scale(i,i);const u=e.querySelector("canvas");u&&c.drawImage(u,0,0,l.width,l.height);const d=(new XMLSerializer).serializeToString(a),h=new Blob([d],{type:"image/svg+xml;charset=utf-8"}),g=URL.createObjectURL(h),f=new Image;f.width=l.width,f.height=l.height,yield new Promise((e,t)=>{f.onload=()=>{c.drawImage(f,0,0),s.toBlob(o=>{o?(Va(o,n+".png"),e()):t(Error("Failed to create PNG blob"))},"image/png"),URL.revokeObjectURL(g)},f.onerror=()=>{URL.revokeObjectURL(g),t(Error("Failed to load SVG image"))},f.src=g})}})}function Xa(e,t){var o;const n=e.children,i=t.children,r=window.getComputedStyle(e),s=["fill","stroke","stroke-width","stroke-dasharray","opacity","fill-opacity","stroke-opacity","font-family","font-size","font-weight","text-anchor","dominant-baseline"];for(const e of s){const n=r.getPropertyValue(e);n&&"none"!==n&&""!==n&&(null===(o=t.style)||void 0===o||o.setProperty(e,n))}for(let e=0;Math.min(n.length,i.length)>e;e++)Xa(n[e],i[e])}function Va(e,t){const o=URL.createObjectURL(e),n=document.createElement("a");n.href=o,n.download=t,document.body.appendChild(n),n.click(),document.body.removeChild(n),URL.revokeObjectURL(o)}const Ua=new Set(["tooltip","onObservation","xFormat","yFormat","valueFormat","svgAnnotationRules","tooltipContent","onHover","tickFormatTime","tickFormatValue","edgeSort","sortGroups","centerContent","frameProps","controls","oFormat","rFormat","oSort","pieceStyle","summaryStyle","nodeStyle","edgeStyle","customHoverBehavior","customClickBehavior","customDoubleClickBehavior","onBrush","onTopologyChange","backgroundGraphics","foregroundGraphics","legend"]),Ka=new Set(["data","nodes","edges"]),Qa="function"==typeof structuredClone?structuredClone:e=>JSON.parse(JSON.stringify(e));function Za(e){return di(this,arguments,void 0,function*(e,t="json"){const o="jsx"===t?Ja(e):JSON.stringify(e,null,2);if("undefined"==typeof navigator||!navigator.clipboard)throw Error("Clipboard API not available. copyConfig requires a browser environment.");yield navigator.clipboard.writeText(o)})}function Ja(e){const{component:t,props:o}=e,n=["<"+t];for(const[e,t]of Object.entries(o))if("string"==typeof t)n.push(` ${e}="${t}"`);else if("boolean"==typeof t&&!0===t)n.push(" "+e);else if("boolean"==typeof t&&!1===t)n.push(` ${e}={false}`);else if("number"==typeof t)n.push(` ${e}={${t}}`);else{const o=JSON.stringify(t);n.push(80>o.length?` ${e}={${o}}`:` ${e}={${JSON.stringify(t,null,2)}}`)}return n.push("/>"),n.join("\n")}function el(){const t=function(){const e=y.useContext(kt);return e?()=>e.setVisible(e=>!e):null}();return t?e.jsx("button",{className:"semiotic-chart-action",onClick:t,title:"Data summary","aria-label":"Toggle data summary",style:rl,children:e.jsxs("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[e.jsx("rect",{x:"1",y:"1",width:"12",height:"3",rx:"0.5"}),e.jsx("rect",{x:"1",y:"6",width:"8",height:"3",rx:"0.5"}),e.jsx("rect",{x:"1",y:"11",width:"5",height:"2",rx:"0.5"})]})}):null}const tl={live:{bg:"#22c55e",color:"#fff"},stale:{bg:"#ef4444",color:"#fff"},paused:{bg:"#eab308",color:"#000"},error:{bg:"#ef4444",color:"#fff"},static:{bg:"#6b7280",color:"#fff"}};function ol({height:t}){return e.jsx("div",{role:"status","aria-busy":"true","aria-label":"Loading chart",style:{width:"100%",height:t,background:"linear-gradient(90deg, var(--semiotic-border, #e0e0e0) 25%, var(--semiotic-bg, #f5f5f5) 50%, var(--semiotic-border, #e0e0e0) 75%)",backgroundSize:"200% 100%",animation:"semiotic-skeleton-pulse 1.5s ease-in-out infinite",borderRadius:4}})}function nl({error:t}){return e.jsx("div",{role:"alert",style:{display:"flex",alignItems:"center",justifyContent:"center",width:"100%",height:"100%",minHeight:120,padding:24,boxSizing:"border-box"},children:e.jsx("div",{style:{textAlign:"center",maxWidth:400,fontSize:14,color:"var(--semiotic-text-secondary, #666)",lineHeight:1.5},children:t})})}const il=y.forwardRef(function({title:t,subtitle:o,children:n,width:i="100%",height:r=400,actions:s,chartConfig:a,controls:l,loading:c=!1,error:u,errorBoundary:d=!1,status:h,detailsPanel:g,className:f,style:p},v){const m=y.useRef(null),b=y.useRef(null),[x,k]=y.useState(!1),w=!1!==(null==s?void 0:s.export)&&void 0!==(null==s?void 0:s.export),j=!1!==(null==s?void 0:s.fullscreen)&&void 0!==(null==s?void 0:s.fullscreen),A=!1!==(null==s?void 0:s.copyConfig)&&void 0!==(null==s?void 0:s.copyConfig)&&a,S=!0===(null==s?void 0:s.dataSummary),O="object"==typeof(null==s?void 0:s.export)?s.export:{},M="object"==typeof(null==s?void 0:s.copyConfig)?s.copyConfig.format:"json",C=y.useCallback(e=>di(this,void 0,void 0,function*(){b.current&&(yield qa(b.current,Object.assign(Object.assign({},O),e)))}),[O]),_=y.useCallback(()=>{m.current&&(document.fullscreenElement?document.exitFullscreen().catch(()=>{}):m.current.requestFullscreen().catch(()=>{}))},[]),P=y.useCallback(e=>di(this,void 0,void 0,function*(){a&&(yield Za(a,e||M||"json"))}),[a,M]);y.useEffect(()=>{const e=()=>{k(!!document.fullscreenElement)};return document.addEventListener("fullscreenchange",e),()=>document.removeEventListener("fullscreenchange",e)},[]),y.useImperativeHandle(v,()=>({export:C,toggleFullscreen:_,copyConfig:P,element:m.current}),[C,_,P]);const L=t||o||l||w||j||A||S||h,T=c?e.jsx(ol,{height:r}):u?e.jsx(nl,{error:u}):d?e.jsx(Ln,{children:n}):n;return R=e.jsxs(e.Fragment,{children:[e.jsx("style",{dangerouslySetInnerHTML:{__html:"@keyframes semiotic-skeleton-pulse {\n 0% { background-position: 200% 0; }\n 100% { background-position: -200% 0; }\n}"}}),e.jsxs("div",{ref:m,className:"semiotic-chart-container"+(f?" "+f:""),style:Object.assign(Object.assign({width:i,border:"1px solid var(--semiotic-border, #e0e0e0)",borderRadius:"var(--semiotic-border-radius, 8px)",overflow:"hidden",background:"var(--semiotic-bg, #fff)",fontFamily:"var(--semiotic-font-family, sans-serif)",position:"relative"},x?{display:"flex",flexDirection:"column",width:"100%",height:"100%"}:{}),p),children:[L&&e.jsxs("div",{className:"semiotic-chart-header",style:{padding:"12px 16px",display:"flex",justifyContent:"space-between",alignItems:"flex-start",borderBottom:"1px solid var(--semiotic-border, #e0e0e0)"},children:[e.jsxs("div",{className:"semiotic-chart-title-area",children:[t&&e.jsx("div",{className:"semiotic-chart-title",style:{fontSize:14,fontWeight:600,color:"var(--semiotic-text, #333)"},children:t}),o&&e.jsx("div",{className:"semiotic-chart-subtitle",style:{fontSize:12,color:"var(--semiotic-text-secondary, #666)",marginTop:t?2:0},children:o})]}),e.jsxs("div",{className:"semiotic-chart-toolbar",style:{display:"flex",alignItems:"center",gap:4},children:[l,w&&e.jsx("button",{className:"semiotic-chart-action",onClick:()=>C(),title:"Export chart","aria-label":"Export chart",style:rl,children:e.jsxs("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[e.jsx("path",{d:"M7 2v8M3.5 7L7 10.5 10.5 7"}),e.jsx("path",{d:"M2 12h10"})]})}),S&&e.jsx(el,{}),j&&e.jsx("button",{className:"semiotic-chart-action",onClick:_,title:x?"Exit fullscreen":"Fullscreen","aria-label":x?"Exit fullscreen":"Enter fullscreen",style:rl,children:e.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:e.jsxs(e.Fragment,x?{children:[e.jsx("path",{d:"M9 1v4h4"}),e.jsx("path",{d:"M5 13V9H1"}),e.jsx("path",{d:"M13 5H9V1"}),e.jsx("path",{d:"M1 9h4v4"})]}:{children:[e.jsx("path",{d:"M1 5V1h4"}),e.jsx("path",{d:"M13 9v4H9"}),e.jsx("path",{d:"M9 1h4v4"}),e.jsx("path",{d:"M5 13H1V9"})]})})}),A&&e.jsx("button",{className:"semiotic-chart-action",onClick:()=>P(),title:"Copy config","aria-label":"Copy chart configuration",style:rl,children:e.jsxs("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[e.jsx("rect",{x:"5",y:"5",width:"8",height:"8",rx:"1"}),e.jsx("path",{d:"M9 5V2a1 1 0 00-1-1H2a1 1 0 00-1 1v6a1 1 0 001 1h3"})]})}),h&&e.jsx("div",{className:"semiotic-chart-status","aria-live":"polite","aria-atomic":"true",style:{padding:"2px 8px",borderRadius:4,fontSize:10,fontWeight:700,letterSpacing:"0.05em",textTransform:"uppercase",background:tl[h].bg,color:tl[h].color,lineHeight:"18px"},children:h})]})]}),e.jsxs("div",{className:"semiotic-chart-body",ref:b,style:Object.assign({position:"relative",overflow:"hidden",display:"flex",alignItems:"center",justifyContent:"center"},x?{flex:1}:{height:r}),children:[T,g]})]})]}),S?e.jsx(wt,{children:R}):R;var R}),rl={width:24,height:24,display:"flex",alignItems:"center",justifyContent:"center",border:"none",background:"transparent",cursor:"pointer",borderRadius:4,color:"var(--semiotic-text-secondary, #666)",padding:0};function sl({children:t,columns:o="auto",minCellWidth:n=300,gap:i=16,className:r,style:s}){const a="number"==typeof o?o:void 0;return e.jsx("div",{className:"semiotic-chart-grid"+(r?" "+r:""),style:Object.assign({display:"grid",gridTemplateColumns:"auto"===o?`repeat(auto-fill, minmax(${n}px, 1fr))`:`repeat(${o}, 1fr)`,gap:i,width:"100%"},s),children:y.Children.map(t,t=>y.isValidElement(t)?"primary"!==t.props.emphasis||void 0!==a&&2>a?t:e.jsx("div",{style:{gridColumn:"span 2"},children:t}):t)})}function al({children:t,context:o,position:n="right",contextSize:i=250,gap:r=12,className:s,style:a}){const l="left"===n||"right"===n,c="left"===n||"top"===n,u=Object.assign({display:"flex",flexDirection:l?c?"row-reverse":"row":c?"column-reverse":"column",gap:r,width:"100%"},a),d=l?{flex:`0 0 ${i}px`,width:i,minHeight:0}:{flex:`0 0 ${i}px`,height:i,minWidth:0};return e.jsxs("div",{className:"semiotic-context-layout"+(s?" "+s:""),style:u,children:[e.jsx("div",{style:{flex:"1 1 0%",minWidth:0,minHeight:0},children:t}),e.jsx("div",{style:d,children:o})]})}sl.displayName="ChartGrid",al.displayName="ContextLayout";function ll({children:o,position:n="right",size:i=300,trigger:r="click",chartId:s,observation:a,dismissOnEmpty:l=!0,showClose:c=!0,onToggle:u,className:d,style:h}){const[g,f]=t.useState(null),[p,y]=t.useState(null),[v,m]=t.useState(!1),[b,x]=t.useState(!1),k=t.useRef(null),w=t.useRef(void 0),j="click"===r?["click","click-end"]:["hover","hover-end"],{latest:A}=Go({types:j,chartId:s,limit:1}),S=void 0!==a?a:A;t.useEffect(()=>{if(S)if("click"===S.type||"hover"===S.type){const e=S;f(e.datum),y(e),v||(m(!0),x(!0),clearTimeout(w.current),w.current=setTimeout(()=>x(!1),200))}else!l||"click-end"!==S.type&&"hover-end"!==S.type||O()},[S]),t.useEffect(()=>{null==u||u(v)},[v,u]);const O=t.useCallback(()=>{x(!0),m(!1),clearTimeout(w.current),w.current=setTimeout(()=>{x(!1),f(null),y(null)},200)},[]);if(t.useEffect(()=>()=>clearTimeout(w.current),[]),!g&&!b)return null;const M=g&&p?o(g,p):null;if(null===M&&!b)return null;const C=function(e,t,o,n){const i={position:"absolute",background:"var(--semiotic-bg, #fff)",borderColor:"var(--semiotic-border, #e0e0e0)",borderStyle:"solid",borderWidth:0,boxSizing:"border-box",zIndex:10,display:"flex",flexDirection:"column",transition:n?"transform 200ms ease-out, opacity 200ms ease-out":void 0};return Object.assign(Object.assign({},i),"right"===e?{top:0,right:0,width:t,height:"100%",borderLeftWidth:1,padding:"12px 16px",transform:o?"translateX(0)":`translateX(${t}px)`,opacity:o?1:0}:"bottom"===e?{bottom:0,left:0,width:"100%",height:t,borderTopWidth:1,padding:"12px 16px",transform:o?"translateY(0)":`translateY(${t}px)`,opacity:o?1:0}:{top:"50%",left:"50%",transform:o?"translate(-50%, -50%) scale(1)":"translate(-50%, -50%) scale(0.95)",opacity:o?1:0,width:Math.min(t,400),maxHeight:"80%",borderWidth:1,borderRadius:8,padding:"16px 20px",boxShadow:"0 8px 32px rgba(0,0,0,0.12)"})}(n,i,v,b);return e.jsxs("div",{ref:k,className:`semiotic-details-panel semiotic-details-${n}${d?" "+d:""}`,style:Object.assign(Object.assign({},C),h),children:[c&&e.jsx("button",{className:"semiotic-details-close",onClick:O,"aria-label":"Close details",style:cl,children:e.jsx("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",children:e.jsx("path",{d:"M2 2l8 8M10 2l-8 8"})})}),e.jsx("div",{className:"semiotic-details-content",style:{overflow:"auto",flex:1},children:M})]})}const cl={position:"absolute",top:8,right:8,width:20,height:20,display:"flex",alignItems:"center",justifyContent:"center",border:"none",background:"transparent",cursor:"pointer",borderRadius:4,color:"var(--semiotic-text-secondary, #666)",padding:0,zIndex:1};function ul(e){return"nominal"===e||"ordinal"===e}function dl(e){return"quantitative"===e||"temporal"===e}ll.displayName="DetailsPanel";const hl={category10:"category10",category20:"category20",category20b:"category20",category20c:"category20",accent:"accent",dark2:"dark2",paired:"paired",pastel1:"pastel1",pastel2:"pastel2",set1:"set1",set2:"set2",set3:"set3",tableau10:"category10",tableau20:"category20"},gl={linear:"linear","monotone-x":"monotoneX","monotone-y":"monotoneY",monotone:"monotoneX",step:"step","step-after":"stepAfter","step-before":"stepBefore",basis:"basis",cardinal:"cardinal","catmull-rom":"catmullRom"},fl={sum:"sum",mean:"mean",average:"mean",count:"count",min:"min",max:"max",median:"mean"};function pl(e,t,o,n,i){var r,s;(null==e?void 0:e.field)&&(o.xAccessor=n?"value":e.field),(null==t?void 0:t.field)&&(o.yAccessor=i?"value":t.field),(null===(r=null==e?void 0:e.axis)||void 0===r?void 0:r.title)&&(o.xLabel=e.axis.title),(null===(s=null==t?void 0:t.axis)||void 0===s?void 0:s.title)&&(o.yLabel=t.axis.title)}function yl(e,t,o){const n={component:e,props:t,version:"1",createdAt:(new Date).toISOString()};if(o.length>0){n.warnings=o;for(const e of o)console.warn("[semiotic/fromVegaLite] "+e)}return n}function vl(e,t=.5){const o=/^#?([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i.exec(e);if(!o)return e;const n=Math.round(parseInt(o[1],16)*(1-t)),i=Math.round(parseInt(o[2],16)*(1-t)),r=Math.round(parseInt(o[3],16)*(1-t));return`#${n.toString(16).padStart(2,"0")}${i.toString(16).padStart(2,"0")}${r.toString(16).padStart(2,"0")}`}function ml(e,t=.5){const o=/^#?([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i.exec(e);if(!o)return e;const n=Math.round(parseInt(o[1],16)+(255-parseInt(o[1],16))*t),i=Math.round(parseInt(o[2],16)+(255-parseInt(o[2],16))*t),r=Math.round(parseInt(o[3],16)+(255-parseInt(o[3],16))*t);return`#${n.toString(16).padStart(2,"0")}${i.toString(16).padStart(2,"0")}${r.toString(16).padStart(2,"0")}`}const bl="__forecastSegment";function xl(e,t){return"function"==typeof t?t(e):!!e[t]}const kl=Object.freeze({__proto__:null,SEGMENT_FIELD:bl,buildAnomalyAnnotations:function(e){var t,o,n;return[{type:"anomaly-band",threshold:null!==(t=e.threshold)&&void 0!==t?t:2,showBand:!1!==e.showBand,fill:e.bandColor||"#6366f1",fillOpacity:null!==(o=e.bandOpacity)&&void 0!==o?o:.1,anomalyColor:e.anomalyColor||"#ef4444",anomalyRadius:null!==(n=e.anomalyRadius)&&void 0!==n?n:6,label:e.label}]},buildForecast:function(e,t,o,n,i){return(r=n).isTraining||r.isForecast||r.isAnomaly||r.upperBounds||r.lowerBounds?function(e,t,o,n,i){var r,s,a,l;const{isTraining:c,isForecast:u,isAnomaly:d,upperBounds:h,lowerBounds:g,color:f="#6366f1",bandOpacity:p=.15,anomalyColor:y="#ef4444",anomalyRadius:v=6,label:m}=n,b=e.map(e=>{let t="observed";return u&&xl(e,u)?t="forecast":c&&xl(e,c)&&(t="training"),Object.assign(Object.assign({},e),{[bl]:t})}),x=n._groupBy,k=[];if(x){const e=new Map;for(const t of b){const o=null!==(r=t[x])&&void 0!==r?r:"__default";e.has(o)||e.set(o,[]),e.get(o).push(t)}const t=[];for(const[,o]of e)for(let e=0;o.length-1>e;e++)o[e][bl]!==o[e+1][bl]&&(t.push(Object.assign(Object.assign({},o[e+1]),{[bl]:o[e][bl]})),t.push(Object.assign(Object.assign({},o[e]),{[bl]:o[e+1][bl]})));k.push(...b,...t)}else for(let e=0;b.length>e;e++)k.push(b[e]),b.length-1>e&&b[e][bl]!==b[e+1][bl]&&(k.push(Object.assign(Object.assign({},b[e+1]),{[bl]:b[e][bl]})),k.push(Object.assign(Object.assign({},b[e]),{[bl]:b[e+1][bl]})));if(n.trainUnderline){const e=[];for(const t of k)"training"===t[bl]&&e.push(Object.assign(Object.assign({},t),{[bl]:"training-base"}));k.unshift(...e)}const w=[];if(h&&g){const e="string"==typeof h?h:"__envUpper",t="string"==typeof g?g:"__envLower";if("function"==typeof h||"function"==typeof g)for(const o of k)"function"==typeof h&&(o[e]=h(o)),"function"==typeof g&&(o[t]=g(o));w.push({type:"envelope",upperAccessor:e,lowerAccessor:t,fill:f,fillOpacity:p,label:m})}if(d){const e=n.anomalyStyle,t={type:"highlight",filter:e=>xl(e,d)};e?(t.style=e,t.r=v):"function"==typeof y?(t.style=e=>{const t=y(e);return{stroke:t,strokeWidth:1.5,fill:t,fillOpacity:.7}},t.r=v):(t.color=y,t.r=v,t.style={stroke:y,strokeWidth:1.5,fill:y,fillOpacity:.7}),w.push(t)}return i&&w.push({type:"anomaly-band",threshold:null!==(s=i.threshold)&&void 0!==s?s:2,showBand:!1!==i.showBand,fill:i.bandColor||"#6366f1",fillOpacity:null!==(a=i.bandOpacity)&&void 0!==a?a:.1,anomalyColor:i.anomalyColor||"#ef4444",anomalyRadius:null!==(l=i.anomalyRadius)&&void 0!==l?l:6,label:i.label}),{processedData:k,annotations:w}}(e,0,0,n,i):function(e,t,o,n,i){var r,s,a;const{trainEnd:l,steps:c=10,confidence:u=.95,color:d="#6366f1",bandOpacity:h=.15,label:g}=n;if(null==l)return{processedData:e,annotations:[]};const f=[],p=[];for(const o of e)o[t]>l?p.push(Object.assign(Object.assign({},o),{[bl]:"observed"})):f.push(Object.assign(Object.assign({},o),{[bl]:"training"}));const y=f.map(e=>[e[t],e[o]]).filter(e=>null!=e[0]&&null!=e[1]&&isFinite(e[0])&&isFinite(e[1])).sort((e,t)=>e[0]-t[0]),v=[],m=[];if(y.length>=3){const n=y.length;let i=0,r=0,s=0,a=0;for(const[e,t]of y)i+=e,r+=t,s+=e*e,a+=e*t;const l=n*s-i*i;if(Math.abs(l)>1e-12){const s=(n*a-i*r)/l,f=(r-s*i)/n,p=e=>f+s*e,b=y.map(([e,t])=>t-p(e)).reduce((e,t)=>e+t*t,0),x=Math.sqrt(b/Math.max(n-2,1)),k=y.reduce((e,t)=>e+t[0],0)/n,w=y.reduce((e,t)=>e+Math.pow(t[0]-k,2),0),j=.99>u?.95>u?.9>u?1:1.645:1.96:2.576,A=e.map(e=>e[t]).filter(e=>null!=e&&isFinite(e)),S=Math.max(...A),O=y.length>1?(y[n-1][0]-y[0][0])/(n-1):1;for(let e=1;c>=e;e++){const i=S+e*O,r=p(i),s=x*Math.sqrt(1+1/n+(w>0?Math.pow(i-k,2)/w:0))*j;m.push({[t]:i,[o]:r,[bl]:"forecast",__forecastUpper:r+s,__forecastLower:r-s})}v.push({type:"envelope",upperAccessor:"__forecastUpper",lowerAccessor:"__forecastLower",fill:d,fillOpacity:h,label:g})}}v.push({type:"x-threshold",x:l,color:"#94a3b8",strokeWidth:1,strokeDasharray:"4,2",label:"Train / Forecast"}),i&&v.push({type:"anomaly-band",threshold:null!==(r=i.threshold)&&void 0!==r?r:2,showBand:!1!==i.showBand,fill:i.bandColor||"#6366f1",fillOpacity:null!==(s=i.bandOpacity)&&void 0!==s?s:.1,anomalyColor:i.anomalyColor||"#ef4444",anomalyRadius:null!==(a=i.anomalyRadius)&&void 0!==a?a:6,label:i.label});const b=[];if(b.push(...f),f.length>0&&p.length>0&&b.push(Object.assign(Object.assign({},f[f.length-1]),{[bl]:"observed"})),b.push(...p),m.length>0){const e=p.length>0?p[p.length-1]:f[f.length-1];e&&b.push(Object.assign(Object.assign({},e),{[bl]:"forecast"})),b.push(...m)}return{processedData:b,annotations:v}}(e,t,o,n,i);var r},createSegmentLineStyle:function(e,t){var o,n;const i=null!==(o=t.trainDasharray)&&void 0!==o?o:"8,4",r=null!==(n=t.forecastDasharray)&&void 0!==n?n:"4,4",s=t.color||"#6366f1",a=t.trainOpacity,l=t.forecastOpacity,c=t.trainStroke,u=t.trainLinecap,d=t.trainUnderline;return t=>{const o=e(t),n=t[bl];if("training"===n){let e=o.stroke;return"darken"===c?e=vl(o.stroke||"#666",.5):c&&(e=c),Object.assign(Object.assign(Object.assign(Object.assign({},o),{stroke:e,strokeDasharray:i}),u&&{strokeLinecap:u}),null!=a&&{strokeOpacity:a})}if("training-base"===n){let e=o.stroke||"#666";return"lighten"===d&&(e=ml(e,.4)),Object.assign(Object.assign({},o),{stroke:e,strokeDasharray:void 0})}return"forecast"===n?Object.assign(Object.assign(Object.assign({},o),{stroke:s,strokeDasharray:r}),null!=l&&{strokeOpacity:l}):o}},darkenColor:vl,lightenColor:ml});exports.AreaChart=yi,exports.BarChart=vr,exports.BoxPlot=Ar,exports.BubbleChart=ji,exports.CategoryColorProvider=Ro,exports.ChartContainer=il,exports.ChartGrid=sl,exports.ChordDiagram=Ta,exports.CirclePack=Ia,exports.ConnectedScatterplot=wi,exports.ContextLayout=al,exports.DetailsPanel=ll,exports.DonutChart=Pr,exports.DotPlot=Mr,exports.ForceDirectedGraph=Ma,exports.FunnelChart=Lr,exports.GroupedBarChart=xr,exports.Heatmap=Ai,exports.Histogram=Sr,exports.LikertChart=Wr,exports.LineChart=pi,exports.LinkedCharts=Uo,exports.MultiAxisLineChart=Hi,exports.MultiLineTooltip=function(t={}){const{fields:o=[],title:n,format:i,style:r={},className:s="",showLabels:a=!0,separator:l=": "}=t;return t=>{if(!t||"object"!=typeof t)return null;const c=[];if(n){const e=xn(t,n);c.push({value:kn(e,i)})}o&&Array.isArray(o)&&o.length>0?o.forEach(e=>{let o,n,r;"string"==typeof e?(o=e,n=e,r=i):(o=e.label,n=e.accessor||e.key||"",r=e.format||i);const s=kn(xn(t,n),r);c.push({label:a?o:void 0,value:s})}):Object.keys(t).filter(e=>!e.startsWith("_")&&"data"!==e).forEach(e=>{c.push({label:a?e:void 0,value:kn(t[e],i)})});const u=Object.assign(Object.assign({},bn),r);return Array.isArray(c)&&0!==c.length?e.jsx("div",{className:("semiotic-tooltip semiotic-tooltip-multiline "+s).trim(),style:u,children:c.map((t,o)=>e.jsxs("div",{style:{marginBottom:c.length-1>o?"4px":0},children:[t.label&&e.jsxs("strong",{children:[t.label,l]}),t.value]},o))}):null}},exports.OrbitDiagram=Ha,exports.PieChart=_r,exports.QuadrantChart=Ri,exports.RealtimeHeatmap=Ya,exports.RealtimeHistogram=Fa,exports.RealtimeLineChart=Wa,exports.RealtimeSwarmChart=$a,exports.RealtimeWaterfallChart=za,exports.RidgelinePlot=Cr,exports.SankeyDiagram=Ra,exports.Scatterplot=xi,exports.ScatterplotMatrix=Ti,exports.StackedAreaChart=mi,exports.StackedBarChart=br,exports.SwarmPlot=wr,exports.ThemeProvider=function({theme:t,children:o}){const n="string"==typeof t&&en(t)?t:void 0;return e.jsx(P,{children:e.jsxs(tn.Provider,{value:n,children:[e.jsx(on,{theme:t}),e.jsx(nn,{children:o})]})})},exports.TooltipProvider=Ga,exports.TreeDiagram=Ba,exports.Treemap=Da,exports.ViolinPlot=Or,exports.configToJSX=Ja,exports.copyConfig=Za,exports.deserializeSelections=function(e){const t=new Map;for(const[o,n]of Object.entries(e)){const e=new Map;for(const t of n.clauses){const o={};for(const[e,n]of Object.entries(t.fields))o[e]="point"===n.type?{type:"point",values:new Set(n.values)}:{type:"interval",range:n.range};e.set(t.clientId,{clientId:t.clientId,type:t.type,fields:o})}t.set(o,{name:n.name,resolution:n.resolution,clauses:e})}return t},exports.diagnoseConfig=ti,exports.exportChart=qa,exports.fromConfig=function(e){if(!e.component||!e.props)throw Error("Invalid chart config: missing component or props");if(!Yn[e.component])throw Error(`Unknown component "${e.component}". This config may require a newer version of semiotic.`);return{componentName:e.component,props:Qa(e.props)}},exports.fromURL=function(e){const t=new URLSearchParams(e.includes("?")?e.split("?")[1]:e).get("sc");if(!t)throw Error("No chart config found in URL (missing 'sc' parameter)");const o=t.replace(/-/g,"+").replace(/_/g,"/"),n=decodeURIComponent(escape(atob(o)));return JSON.parse(n)},exports.fromVegaLite=function(e){var t,o,n,i,r,s,a,l,c,u,d,h,g,f;const p=[],{type:y,markProps:v}=function(e){if("string"==typeof e)return{type:e,markProps:{}};const{type:t}=e;return{type:t,markProps:function(e,t){var o={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&0>t.indexOf(n)&&(o[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(n=Object.getOwnPropertySymbols(e);n.length>i;i++)0>t.indexOf(n[i])&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(o[n[i]]=e[n[i]])}return o}(e,["type"])}}(e.mark),m=e.encoding||{},b=m.x,x=m.y,k=m.color,w=m.size,j=m.theta,A=m.opacity;let S;(null===(t=e.data)||void 0===t?void 0:t.values)?S=e.data.values:(null===(o=e.data)||void 0===o?void 0:o.url)&&p.push("data.url is not supported — only inline data.values can be translated. Provide data manually."),e.transform&&e.transform.length>0&&p.push("Vega-Lite transforms are not supported. Pre-transform your data before passing to fromVegaLite()."),e.layer&&p.push('Layered specs ("layer") are not supported. Only single-mark specs can be translated.'),(e.hconcat||e.vconcat||e.concat)&&p.push('Concatenated views ("hconcat"/"vconcat"/"concat") are not supported. Translate each sub-spec individually.'),(e.facet||e.encoding&&e.encoding.facet||e.encoding&&(e.encoding.row||e.encoding.column))&&p.push("Faceted views are not supported. Use Semiotic's LinkedCharts or render multiple charts manually."),e.repeat&&p.push('Repeated views ("repeat") are not supported. Translate each field combination individually.'),(e.params||e.selection)&&p.push("Selections/params are not supported. Use Semiotic's LinkedCharts and selection props for interactivity.");const O={};e.width&&(O.width=e.width),e.height&&(O.height=e.height);const M=function(e){if(e)return"string"==typeof e?e:e.text}(e.title);if(M&&(O.title=M),(null==k?void 0:k.field)&&(O.colorBy=k.field,null===(n=k.scale)||void 0===n?void 0:n.scheme)){const e=hl[k.scale.scheme];e&&(O.colorScheme=e)}void 0!==(null==A?void 0:A.value)&&(O.pointOpacity=A.value);const C=null==b?void 0:b.aggregate,_=null==x?void 0:x.aggregate;if(S&&(C||_)){const e=_?x:b,t=_?b:x,o=fl[e.aggregate];if(o&&(null==t?void 0:t.field)&&e.field)S=function(e,t){const{groupBy:o,value:n,agg:i="sum"}=t,r=new Map;for(const t of e){const e=t[o]+"";r.has(e)||r.set(e,[]),r.get(e).push(Number(t[n]))}const s=[];for(const[e,t]of r){let n;switch(i){case"count":n=t.length;break;case"mean":n=t.reduce((e,t)=>e+t,0)/t.length;break;case"min":n=Math.min(...t);break;case"max":n=Math.max(...t);break;default:n=t.reduce((e,t)=>e+t,0)}s.push({[o]:e,value:n})}return s}(S,{groupBy:t.field,value:e.field,agg:o});else if(("count"===o||"count"===e.aggregate)&&(null==t?void 0:t.field)&&S){const e=new Map;for(const o of S){const n=o[t.field]+"";e.set(n,(e.get(n)||0)+1)}S=Array.from(e,([e,o])=>({[t.field]:e,value:o}))}}if((null==b?void 0:b.bin)||(null==x?void 0:x.bin)){const e="Histogram";S&&(O.data=S),(null==b?void 0:b.bin)?(O.valueAccessor=b.field,(null==x?void 0:x.field)&&(O.categoryAccessor=x.field),(null===(i=b.axis)||void 0===i?void 0:i.title)&&(O.valueLabel=b.axis.title)):(null==x?void 0:x.bin)&&(O.valueAccessor=x.field,(null==b?void 0:b.field)&&(O.categoryAccessor=b.field),(null===(r=x.axis)||void 0===r?void 0:r.title)&&(O.valueLabel=x.axis.title));const t="object"==typeof((null==b?void 0:b.bin)||(null==x?void 0:x.bin))?(null===(s=null==b?void 0:b.bin)||void 0===s?void 0:s.maxbins)||(null===(a=null==x?void 0:x.bin)||void 0===a?void 0:a.maxbins):void 0;return t&&(O.bins=t),yl(e,O,p)}let P;switch(y){case"bar":P=function(e,t,o,n,i,r,s){var a,l,c,u,d,h;let g;return(null==o?void 0:o.field)&&!1!==(null==e?void 0:e.stack)&&!1!==(null==t?void 0:t.stack)&&null!==(null==e?void 0:e.stack)&&null!==(null==t?void 0:t.stack)?(g="StackedBarChart",n.stackBy=o.field):g="BarChart",ul(null==e?void 0:e.type)&&dl(null==t?void 0:t.type)?(n.categoryAccessor=e.field,n.valueAccessor=s?"value":t.field,(null===(a=null==e?void 0:e.axis)||void 0===a?void 0:a.title)&&(n.categoryLabel=e.axis.title),(null===(l=null==t?void 0:t.axis)||void 0===l?void 0:l.title)&&(n.valueLabel=t.axis.title)):dl(null==e?void 0:e.type)&&ul(null==t?void 0:t.type)?(n.categoryAccessor=t.field,n.valueAccessor=r?"value":e.field,n.orientation="horizontal",(null===(c=null==t?void 0:t.axis)||void 0===c?void 0:c.title)&&(n.categoryLabel=t.axis.title),(null===(u=null==e?void 0:e.axis)||void 0===u?void 0:u.title)&&(n.valueLabel=e.axis.title)):((null==e?void 0:e.field)&&(n.categoryAccessor=e.field),(null==t?void 0:t.field)&&(n.valueAccessor=s?"value":t.field),(null===(d=null==e?void 0:e.axis)||void 0===d?void 0:d.title)&&(n.categoryLabel=e.axis.title),(null===(h=null==t?void 0:t.axis)||void 0===h?void 0:h.title)&&(n.valueLabel=t.axis.title)),i&&(n.data=i),g}(b,x,k,O,S,C,_);break;case"line":if(P="LineChart",pl(b,x,O,C,_),(null==k?void 0:k.field)&&(O.lineBy=k.field),v.interpolate){const e=gl[v.interpolate];e&&(O.curve=e)}!0===v.point&&(O.showPoints=!0),S&&(O.data=S);break;case"area":if((null==k?void 0:k.field)?(P="StackedAreaChart",O.areaBy=k.field):P="AreaChart",pl(b,x,O,C,_),v.interpolate){const e=gl[v.interpolate];e&&(O.curve=e)}void 0!==v.opacity&&(O.areaOpacity=v.opacity),S&&(O.data=S);break;case"point":case"circle":case"square":(null==w?void 0:w.field)?(P="BubbleChart",O.sizeBy=w.field,(null===(l=w.scale)||void 0===l?void 0:l.range)&&(O.sizeRange=w.scale.range)):P="Scatterplot",pl(b,x,O,C,_),S&&(O.data=S);break;case"rect":P="Heatmap",(null==b?void 0:b.field)&&(O.xAccessor=b.field),(null==x?void 0:x.field)&&(O.yAccessor=x.field),(null==k?void 0:k.field)&&(O.valueAccessor=k.field,delete O.colorBy),(null===(c=null==b?void 0:b.axis)||void 0===c?void 0:c.title)&&(O.xLabel=b.axis.title),(null===(u=null==x?void 0:x.axis)||void 0===u?void 0:u.title)&&(O.yLabel=x.axis.title),S&&(O.data=S);break;case"arc":v.innerRadius&&v.innerRadius>0?(P="DonutChart",O.innerRadius=v.innerRadius):P="PieChart",(null==j?void 0:j.field)?O.valueAccessor=j.field:(null==x?void 0:x.field)&&(O.valueAccessor=_?"value":x.field),(null==k?void 0:k.field)&&(O.categoryAccessor=k.field),(null==b?void 0:b.field)&&!(null==j?void 0:j.field)&&(O.categoryAccessor=b.field),S&&(O.data=S);break;case"tick":P="DotPlot",ul(null==b?void 0:b.type)?(O.categoryAccessor=b.field,(null==x?void 0:x.field)&&(O.valueAccessor=_?"value":x.field),(null===(d=null==b?void 0:b.axis)||void 0===d?void 0:d.title)&&(O.categoryLabel=b.axis.title),(null===(h=null==x?void 0:x.axis)||void 0===h?void 0:h.title)&&(O.valueLabel=x.axis.title)):ul(null==x?void 0:x.type)?(O.categoryAccessor=x.field,(null==b?void 0:b.field)&&(O.valueAccessor=C?"value":b.field),O.orientation="horizontal",(null===(g=null==x?void 0:x.axis)||void 0===g?void 0:g.title)&&(O.categoryLabel=x.axis.title),(null===(f=null==b?void 0:b.axis)||void 0===f?void 0:f.title)&&(O.valueLabel=b.axis.title)):((null==b?void 0:b.field)&&(O.categoryAccessor=b.field),(null==x?void 0:x.field)&&(O.valueAccessor=_?"value":x.field)),S&&(O.data=S);break;default:p.push(`Unsupported mark type "${y}". Defaulting to Scatterplot.`),P="Scatterplot",pl(b,x,O,C,_),S&&(O.data=S)}return yl(P,O,p)},exports.serializeSelections=function(e){const t={};for(const[o,n]of e){const e=[];for(const[,t]of n.clauses){const o={};for(const[e,n]of Object.entries(t.fields))o[e]="point"===n.type?{type:"point",values:Array.from(n.values)}:{type:"interval",range:n.range};e.push({clientId:t.clientId,type:t.type,fields:o})}t[o]={name:n.name,resolution:n.resolution,clauses:e}}return t},exports.toConfig=function(e,t,o){if(!Yn[e])throw Error(`Unknown component "${e}". Known components: ${Object.keys(Yn).join(", ")}`);const n=!1!==(null==o?void 0:o.includeData),i={};for(const[e,o]of Object.entries(t))null!=o&&(Ua.has(e)||!n&&Ka.has(e)||"function"!=typeof o&&((null==o?void 0:o.$$typeof)||(i[e]=Qa(o))));return Object.assign({component:e,props:i,version:"1",createdAt:(new Date).toISOString()},(null==o?void 0:o.selections)?{selections:o.selections}:{})},exports.toURL=function(e){const t=JSON.stringify(e);return"sc="+btoa(unescape(encodeURIComponent(t))).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")},exports.useBrushSelection=Yo,exports.useCategoryColors=Bo,exports.useChartObserver=Go,exports.useFilteredData=function(e,o,n){const i=Wo(e=>e.selections.get(o));return t.useMemo(()=>{if(!i||0===i.clauses.size)return e;const t=Io(i,n);return e.filter(t)},[e,i,n])},exports.useLinkedHover=zo,exports.useSelection=$o,exports.useTheme=rn,exports.validateProps=qn;