semiotic 3.2.0 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +50 -8
- package/README.md +11 -11
- package/ai/dist/mcp-server.js +31925 -528
- package/ai/examples.md +91 -0
- package/ai/schema.json +235 -9
- package/ai/system-prompt.md +12 -4
- package/dist/components/ChartContainer.d.ts +2 -0
- package/dist/components/DataSummaryContext.d.ts +12 -0
- package/dist/components/Tooltip/FlippingTooltip.d.ts +34 -0
- package/dist/components/charts/index.d.ts +4 -0
- package/dist/components/charts/ordinal/BarChart.d.ts +3 -1
- package/dist/components/charts/ordinal/BoxPlot.d.ts +3 -1
- package/dist/components/charts/ordinal/DonutChart.d.ts +0 -1
- package/dist/components/charts/ordinal/DotPlot.d.ts +3 -1
- package/dist/components/charts/ordinal/FunnelChart.d.ts +3 -1
- package/dist/components/charts/ordinal/GroupedBarChart.d.ts +3 -1
- package/dist/components/charts/ordinal/Histogram.d.ts +16 -2
- package/dist/components/charts/ordinal/LikertChart.d.ts +94 -0
- package/dist/components/charts/ordinal/PieChart.d.ts +0 -1
- package/dist/components/charts/ordinal/RidgelinePlot.d.ts +11 -7
- package/dist/components/charts/ordinal/StackedBarChart.d.ts +3 -1
- package/dist/components/charts/ordinal/SwarmPlot.d.ts +14 -1
- package/dist/components/charts/ordinal/SwimlaneChart.d.ts +65 -0
- package/dist/components/charts/ordinal/ViolinPlot.d.ts +16 -2
- package/dist/components/charts/realtime/RealtimeHistogram.d.ts +20 -0
- package/dist/components/charts/shared/annotationResolvers.d.ts +28 -0
- package/dist/components/charts/shared/hooks.d.ts +23 -2
- package/dist/components/charts/shared/selectionUtils.d.ts +5 -1
- package/dist/components/charts/shared/statsTooltip.d.ts +11 -0
- package/dist/components/charts/shared/types.d.ts +22 -1
- package/dist/components/charts/shared/useChartSetup.d.ts +12 -2
- package/dist/components/charts/shared/useLikertAggregation.d.ts +51 -0
- package/dist/components/charts/shared/useOrdinalBrush.d.ts +28 -0
- package/dist/components/charts/shared/useOrdinalStreaming.d.ts +54 -0
- package/dist/components/charts/shared/useStreamingLegend.d.ts +2 -2
- package/dist/components/charts/shared/validateProps.d.ts +2 -2
- package/dist/components/charts/shared/validationMap.d.ts +12 -0
- package/dist/components/charts/xy/AreaChart.d.ts +11 -0
- package/dist/components/charts/xy/MinimapChart.d.ts +1 -1
- package/dist/components/charts/xy/StackedAreaChart.d.ts +11 -0
- package/dist/components/realtime/types.d.ts +4 -0
- package/dist/components/semiotic-ai.d.ts +1 -0
- package/dist/components/semiotic-ordinal.d.ts +2 -0
- package/dist/components/semiotic-themes.d.ts +16 -0
- package/dist/components/semiotic-utils.d.ts +30 -0
- package/dist/components/semiotic.d.ts +4 -4
- package/dist/components/store/LinkedCrosshairStore.d.ts +11 -0
- package/dist/components/store/useSelection.d.ts +1 -0
- package/dist/components/stream/AccessibleDataTable.d.ts +28 -6
- package/dist/components/stream/FocusRing.d.ts +33 -0
- package/dist/components/stream/OrdinalBrushOverlay.d.ts +43 -0
- package/dist/components/stream/OrdinalPipelineStore.d.ts +16 -0
- package/dist/components/stream/OrdinalSVGOverlay.d.ts +1 -1
- package/dist/components/stream/PipelineStore.d.ts +5 -47
- package/dist/components/stream/SVGOverlay.d.ts +4 -0
- package/dist/components/stream/SceneGraph.d.ts +6 -1
- package/dist/components/stream/XYBrushOverlay.d.ts +47 -0
- package/dist/components/stream/devDataAccessWarning.d.ts +13 -0
- package/dist/components/stream/geoTypes.d.ts +5 -1
- package/dist/components/stream/keyboardNav.d.ts +85 -9
- package/dist/components/stream/layouts/hierarchySceneBuilders.d.ts +35 -0
- package/dist/components/stream/layouts/hierarchyUtils.d.ts +25 -0
- package/dist/components/stream/networkTypes.d.ts +5 -1
- package/dist/components/stream/ordinalSceneBuilders/swimlaneScene.d.ts +12 -0
- package/dist/components/stream/ordinalTypes.d.ts +15 -3
- package/dist/components/stream/pipelineDecay.d.ts +20 -0
- package/dist/components/stream/pipelinePulse.d.ts +24 -0
- package/dist/components/stream/pipelineTransitions.d.ts +59 -0
- package/dist/components/stream/renderers/pointCanvasRenderer.d.ts +2 -1
- package/dist/components/stream/types.d.ts +19 -1
- package/dist/components/stream/useMediaPreferences.d.ts +11 -0
- package/dist/components/stream/xySceneBuilders/areaScene.d.ts +13 -0
- package/dist/components/stream/xySceneBuilders/barScene.d.ts +18 -0
- package/dist/components/stream/xySceneBuilders/boundsScene.d.ts +8 -0
- package/dist/components/stream/xySceneBuilders/candlestickScene.d.ts +10 -0
- package/dist/components/stream/xySceneBuilders/emitPointNodes.d.ts +13 -0
- package/dist/components/stream/xySceneBuilders/heatmapScene.d.ts +3 -0
- package/dist/components/stream/xySceneBuilders/lineScene.d.ts +12 -0
- package/dist/components/stream/xySceneBuilders/pointScene.d.ts +12 -0
- package/dist/components/stream/xySceneBuilders/swarmScene.d.ts +10 -0
- package/dist/components/stream/xySceneBuilders/types.d.ts +93 -0
- package/dist/components/stream/xySceneBuilders/waterfallScene.d.ts +12 -0
- package/dist/geo.min.js +1 -1
- package/dist/geo.module.min.js +1 -1
- package/dist/network.min.js +1 -1
- package/dist/network.module.min.js +1 -1
- package/dist/ordinal.min.js +1 -1
- package/dist/ordinal.module.min.js +1 -1
- package/dist/realtime.min.js +1 -1
- package/dist/realtime.module.min.js +1 -1
- package/dist/semiotic-ai.d.ts +1 -0
- package/dist/semiotic-ai.min.js +1 -1
- package/dist/semiotic-ai.module.min.js +1 -1
- package/dist/semiotic-ordinal.d.ts +2 -0
- package/dist/{semiotic-statisticalOverlays-D8LhSbQt.js → semiotic-statisticalOverlays-DGX_WWc5.js} +1 -1
- package/dist/semiotic-themes.d.ts +16 -0
- package/dist/semiotic-themes.min.js +1 -1
- package/dist/semiotic-themes.module.min.js +1 -1
- package/dist/semiotic-utils.d.ts +30 -0
- package/dist/semiotic-utils.min.js +1 -0
- package/dist/semiotic-utils.module.min.js +1 -0
- package/dist/semiotic.d.ts +4 -4
- package/dist/semiotic.min.js +1 -1
- package/dist/semiotic.module.min.js +1 -1
- package/dist/server.min.js +1 -1
- package/dist/server.module.min.js +1 -1
- package/dist/xy.min.js +1 -1
- package/dist/xy.module.min.js +1 -1
- package/package.json +19 -11
package/dist/semiotic-ai.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e=require("react"),t=require("d3-brush"),n=require("d3-selection"),o=require("d3-scale"),r=require("d3-scale-chromatic"),i=require("d3-quadtree"),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);class m{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;if(e!==this.lastBoundedData)return;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 v{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}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 b{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 x(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 k(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 w(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 A(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 S(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 E(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 M(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 C(e,t){if("function"==typeof e)return e;const n=e||t;return e=>e[n]}function P(e,t){return"function"==typeof e?e:e?t=>t[e]+"":t?e=>e[t]+"":void 0}const L={category10:r.schemeCategory10,tableau10:r.schemeTableau10,set3:r.schemeSet3,blues:r.interpolateBlues,reds:r.interpolateReds,greens:r.interpolateGreens,oranges:r.interpolateOranges,purples:r.interpolatePurples,viridis:r.interpolateViridis,plasma:r.interpolatePlasma},j=r.schemeCategory10,_=["#4e79a7","#f28e2b","#e15759","#76b7b2","#59a14f","#edc948","#b07aa1","#ff9da7","#9c755f","#bab0ac"],D=["#f0f0f0","#b5d4ea","#f4c2a1","#b8dab2","#d4b5e0","#f9e0a2","#a8d8d8"],N=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 B(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")||N.has(t)}(o)?n(o):o}const o=e[t];return n?n(o):j[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+""))%j.length]}function H(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=L[n]||L.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:j;return o.scaleOrdinal().domain(r).range(e).unknown("#999")}}function T(e,t,n=[3,20],o){let r;if(r="function"==typeof t?t(e):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 R(e,t="ease-out-cubic"){return"linear"===t?e:1-Math.pow(1-e,3)}function W(e,t){return Math.min((e-t.startTime)/t.duration,1)}function I(e,t,n){return e+(t-e)*n}function z(){return"undefined"!=typeof performance?performance.now():Date.now()}class ${constructor(e){this.xExtent=new b,this.yExtent=new b,this.timestampBuffer=null,this.activeTransition=null,this.prevPositionMap=new Map,this.prevPathMap=new Map,this.exitNodes=[],this.lastIngestTime=0,this._colorMapCache=null,this._groupColorMap=new Map,this._barCategoryCache=null,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.config=e,this.buffer=new v(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=P(e.groupAccessor),this.getCategory=P(e.categoryAccessor),this.getSize=e.sizeAccessor?O(e.sizeAccessor,"size"):void 0,this.getColor=P(e.colorAccessor),this.getBounds=e.boundsAccessor?O(e.boundsAccessor,"bounds"):void 0,this.getY0=e.y0Accessor?O(e.y0Accessor,"y0"):void 0,this.getPointId=P(e.pointIdAccessor),"candlestick"===e.chartType&&(this.getOpen=O(e.openAccessor,"open"),this.getHigh=O(e.highAccessor,"high"),this.getLow=O(e.lowAccessor,"low"),this.getClose=O(e.closeAccessor,"close")),e.pulse&&(this.timestampBuffer=new v(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;const{config:l,buffer:c}=this;if(!this.needsFullRebuild&&this.lastLayout&&this.scene.length>0&&this.scales&&(this.lastLayout.width!==e.width||this.lastLayout.height!==e.height))return void this.remapScene(e);if(this.xExtent.dirty&&this.xExtent.recalculate(c,this.getX),this.yExtent.dirty)if("candlestick"===l.chartType&&this.getHigh&&this.getLow){this.yExtent.clear();for(const e of c)this.yExtent.push(this.getHigh(e)),this.yExtent.push(this.getLow(e))}else this.yExtent.recalculate(c,this.getY);const u=this.getBufferArray(),d=this.xExtent.extent,h=this.yExtent.extent;let g=l.xExtent?[null!==(t=l.xExtent[0])&&void 0!==t?t:d[0],null!==(n=l.xExtent[1])&&void 0!==n?n:d[1]]:d,f=l.yExtent?[null!==(r=l.yExtent[0])&&void 0!==r?r:h[0],null!==(i=l.yExtent[1])&&void 0!==i?i:h[1]]:h;const p=l.yExtent&&null!=l.yExtent[0]&&null!=l.yExtent[1];if("stackedarea"===l.chartType&&!p&&c.size>0)if(l.normalize)f=[0,1+l.extentPadding];else{const e=`${c.size}:${this._ingestVersion}`;if(this._stackExtentCache&&this._stackExtentCache.key===e)f=this._stackExtentCache.yDomain;else{const t=this.groupData(u),n=new Map;for(const e of t)for(const t of e.data){const e=this.getX(t),o=this.getY(t);null==e||null==o||Number.isNaN(e)||Number.isNaN(o)||n.set(e,(n.get(e)||0)+o)}let o=0;for(const e of n.values())e>o&&(o=e);f=[0,o+(o>0?o*l.extentPadding:1)],this._stackExtentCache={key:e,yDomain:f}}}else if("bar"===l.chartType&&l.binSize&&!p&&c.size>0){const[,e]=function(e,t,n,o,r){const i=x(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]}(c,this.getX,this.getY,l.binSize,this.getCategory);f=[0,e+e*l.extentPadding]}else if("waterfall"===l.chartType&&!p&&c.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]}(c,this.getY),n=t-e,o=n>0?n*l.extentPadding:1;f=[Math.min(0,e-Math.abs(o)),Math.max(0,t+Math.abs(o))]}else if(!p&&f[0]!==1/0){if(this.getBounds)for(const e of u){const t=this.getY(e),n=this.getBounds(e);null!=t&&!Number.isNaN(t)&&n&&(t+n>f[1]&&(f[1]=t+n),f[0]>t-n&&(f[0]=t-n))}const e=f[1]-f[0],t=e>0?e*l.extentPadding:1,n=null===(a=l.yExtent)||void 0===a?void 0:a[0],o=null===(s=l.yExtent)||void 0===s?void 0:s[1];f=[null!=n?f[0]:f[0]-t,null!=o?f[1]:f[1]+t],"log"===l.yScaleType&&0>=f[0]&&h[0]>0&&(f[0]=null!=n?f[0]:h[0]/(1+l.extentPadding))}if(g[0]!==1/0&&g[1]!==-1/0||(g=[0,1]),f[0]!==1/0&&f[1]!==-1/0||(f=[0,1]),"streaming"===l.runtimeMode)if("x"==("up"===(y=l.arrowOfTime)||"down"===y?"y":"x")){const t="right"===l.arrowOfTime?[0,e.width]:[e.width,0];this.scales={x:o.scaleLinear().domain(g).range(t),y:o.scaleLinear().domain(f).range([e.height,0])}}else{const t="down"===l.arrowOfTime?[0,e.height]:[e.height,0];this.scales={x:o.scaleLinear().domain(f).range([0,e.width]),y:o.scaleLinear().domain(g).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 o.scaleLinear().domain(t).range(n)};this.scales={x:t(l.xScaleType,g,[0,e.width]),y:t(l.yScaleType,f,[e.height,0])}}var y;this.config.transition&&this.scene.length>0&&this.snapshotPositions(),this.scene=this.buildSceneNodes(e,u),this.config.decay&&this.applyDecay(this.scene,u),this.config.pulse&&this.applyPulse(this.scene,u),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 void(this._quadtree=null);const t=this.scene.filter(e=>"point"===e.type);this._quadtree=t.length>$.QUADTREE_THRESHOLD?i.quadtree().x(e=>e.x).y(e=>e.y).addAll(t):null}get quadtree(){return this._quadtree}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 o.scaleLinear().domain(t).range(n)};this.scales={x:l(this.config.xScaleType,r,[a[0]*t,a[1]*t]),y:l(this.config.yScaleType,i,[s[0]*n,s[1]*n])},this.lastLayout={width:e.width,height:e.height},this.rebuildQuadtree(),this.version++}buildSceneNodes(e,t){const{config:n,scales:o}=this;if(!o||0===t.length)return[];switch(n.chartType){case"line":return this.buildLineScene(t);case"area":return this.buildAreaScene(t);case"stackedarea":return this.buildStackedAreaScene(t);case"scatter":case"bubble":return this.buildPointScene(t);case"heatmap":return this.buildHeatmapScene(t,e);case"bar":return this.buildBarScene(t);case"swarm":return this.buildSwarmScene(t);case"waterfall":return this.buildWaterfallScene(t,e);case"candlestick":return this.buildCandlestickScene(t,e);default:return[]}}buildLineScene(e){var t;const n=this.groupData(e),o=[],r=null===(t=this.config.annotations)||void 0===t?void 0:t.filter(e=>"threshold"===e.type&&e.color).map(e=>({value:e.value,color:e.color,thresholdType:e.thresholdType||"greater"}));if(this.getBounds)for(const e of n){const t=this.buildBoundsForGroup(e.data,e.key);t&&o.push(t)}for(const e of n){const t=this.resolveLineStyle(e.key,e.data[0]),n=k(e.data,this.scales,this.getX,this.getY,t,e.key);r&&r.length>0&&(n.colorThresholds=r),this.config.curve&&"linear"!==this.config.curve&&(n.curve=this.config.curve),o.push(n)}return o}buildAreaScene(e){const t=this.groupData(e),n=[],o=this.scales.y.domain()[0];for(const e of t){const t=this.resolveAreaStyle(e.key,e.data[0]),r=w(e.data,this.scales,this.getX,this.getY,o,t,e.key,this.getY0);this.config.gradientFill&&(r.fillGradient=this.config.gradientFill),this.config.curve&&"linear"!==this.config.curve&&(r.curve=this.config.curve),n.push(r)}return n}buildStackedAreaScene(e){const t=this.groupData(e);return t.sort((e,t)=>t.key>e.key?-1:e.key>t.key?1:0),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;for(const e of c)g.set(e,0);for(const n of e){const e=u.get(n.key),o=[],s=[];for(const n of c){let r=e.get(n)||0;const a=g.get(n);i&&(r/=d.get(n));const l=t.x(n);s.push([l,t.y(a)]),o.push([l,t.y(a+r)]),g.set(n,a+r)}const l={type:"area",topPath:o,bottomPath:s,style:r(n.key,n.data[0]),datum:n.data,group:n.key};a&&(l.curve=a),h.push(l)}return h}(t,this.scales,this.getX,this.getY,(e,t)=>this.resolveAreaStyle(e,t),this.config.normalize,this.config.curve&&"linear"!==this.config.curve?this.config.curve:void 0)}buildPointScene(e){const t=[],n="bubble"===this.config.chartType?10:5,o=this.config.sizeRange||[3,15];let r=null;if(this.getSize&&!this.config.pointStyle){const t=e.map(e=>this.getSize(e)).filter(e=>null!=e&&!Number.isNaN(e));if(t.length>0){let e=1/0,n=-1/0;for(const o of t)e>o&&(e=o),o>n&&(n=o);r=t=>e===n?(o[0]+o[1])/2:o[0]+(t-e)/(n-e)*(o[1]-o[0])}}const i=this.getColor?this.resolveColorMap(e):null;for(const o of e){let e=this.config.pointStyle?this.config.pointStyle(o):{fill:"#4e79a7",opacity:.8},a=e.r||n;if(r&&this.getSize){const e=this.getSize(o);null==e||Number.isNaN(e)||(a=r(e))}if(i&&this.getColor&&!e.fill){const t=this.getColor(o);t&&i.has(t)&&(e=Object.assign(Object.assign({},e),{fill:i.get(t)}))}const s=this.getPointId?this.getPointId(o)+"":void 0,l=A(o,this.scales,this.getX,this.getY,a,e,s);l&&t.push(l)}return t}buildHeatmapScene(e,t){const n=[];if(this.config.heatmapAggregation)return this.buildStreamingHeatmapScene(e,t);const i=O(this.config.valueAccessor,"value"),a=C(this.config.xAccessor,"x"),s=C(this.config.yAccessor,"y"),l=new Set,c=new Set;for(const t of e)l.add(a(t)),c.add(s(t));const u=Array.from(l),d=Array.from(c),h=u.every(e=>"number"==typeof e&&!isNaN(e)),g=d.every(e=>"number"==typeof e&&!isNaN(e)),f=h?u.sort((e,t)=>e-t):u,p=g?d.sort((e,t)=>e-t):d;if(0===f.length||0===p.length)return n;const y=t.width/f.length,m=t.height/p.length,v=new Map;for(const t of e){const e=`${a(t)}\0${s(t)}`;v.set(e,{val:i(t),datum:t})}let b=1/0,x=-1/0;for(const{val:e}of v.values())b>e&&(b=e),e>x&&(x=e);const k=o.scaleSequential({blues:r.interpolateBlues,reds:r.interpolateReds,greens:r.interpolateGreens,viridis:r.interpolateViridis}["string"==typeof this.config.colorScheme?this.config.colorScheme:"blues"]||r.interpolateBlues).domain([b,x]);for(let e=0;f.length>e;e++)for(let t=0;p.length>t;t++){const o=v.get(`${f[e]}\0${p[t]}`);if(!o)continue;const r=k(o.val);n.push(E(e*y,(p.length-1-t)*m,y,m,r,o.datum,this.config.showValues?{value:o.val,showValues:!0,valueFormat:this.config.heatmapValueFormat}:void 0))}return n}buildStreamingHeatmapScene(e,t){var n,o,r;const i=[],a=null!==(n=this.config.heatmapXBins)&&void 0!==n?n:20,s=null!==(o=this.config.heatmapYBins)&&void 0!==o?o:20,l=null!==(r=this.config.heatmapAggregation)&&void 0!==r?r:"count",c=O(this.config.valueAccessor,"value");if(!this.scales||0===e.length)return i;const[u,d]=this.scales.x.domain(),[h,g]=this.scales.y.domain(),f=(d-u||1)/a,p=(g-h||1)/s,y=new Map;for(const t of e){const e=this.getX(t),n=this.getY(t),o=Math.min(Math.floor((e-u)/f),a-1),r=Math.min(Math.floor((n-h)/p),s-1);if(0>o||0>r)continue;const i=`${o}_${r}`;let l=y.get(i);l||(l={sum:0,count:0,data:[]},y.set(i,l)),l.count++,l.sum+=c(t),l.data.push(t)}let m=1/0,v=-1/0;const b=new Map;for(const[e,t]of y){let n;switch(l){case"sum":n=t.sum;break;case"mean":n=t.count>0?t.sum/t.count:0;break;default:n=t.count}b.set(e,n),m>n&&(m=n),n>v&&(v=n)}const x=v-m||1,k=t.width/a,w=t.height/s;for(const[e,t]of b){const[n,o]=e.split("_"),r=+n,a=+o,l=(t-m)/x,c=`rgb(${Math.round(220-180*l)},${Math.round(220-100*l)},${Math.round(255-50*l)})`,u=y.get(e);i.push(E(r*k,(s-1-a)*w,k,w,c,{xi:r,yi:a,value:t,count:u.count,sum:u.sum,data:u.data},this.config.showValues?{value:t,showValues:!0,valueFormat:this.config.heatmapValueFormat}:void 0))}return i}buildBarScene(e){var t;if(!this.config.binSize)return[];const n=x(e,this.getX,this.getY,this.config.binSize,this.getCategory);if(0===n.size)return[];let o=null;if(this.getCategory){const e=new Set;for(const t of n.values())for(const n of t.categories.keys())e.add(n);const t=this.config.barColors?Object.keys(this.config.barColors):[],r=new Set(t),i=Array.from(e).filter(e=>!r.has(e)).sort(),a=t.filter(t=>e.has(t)),s=a.join("\0")+""+i.join("\0");this._barCategoryCache&&this._barCategoryCache.key===s?o=this._barCategoryCache.order:(o=[...a,...i],this._barCategoryCache={key:s,order:o})}const r=[],i=this.scales,[a,s]=i.x.domain();for(const e of n.values()){const n=Math.max(e.start,a),l=Math.min(e.end,s);if(n>=l)continue;const c=i.x(n),u=i.x(l),d=Math.abs(u-c),h=d>2?1:0,g=Math.min(c,u)+h/2,f=Math.max(d-h,1);if(f>0)if(o&&e.categories.size>0){let n=0;for(const a of o){const o=e.categories.get(a)||0;if(0===o)continue;const s=i.y(n),l=i.y(n+o);r.push(S(g,Math.min(s,l),f,Math.abs(s-l),{fill:(null===(t=this.config.barColors)||void 0===t?void 0:t[a])||"#4e79a7"},{binStart:e.start,binEnd:e.end,total:e.total,category:a,categoryValue:o},a)),n+=o}}else{const t=i.y(0),n=i.y(e.total);r.push(S(g,Math.min(t,n),f,Math.abs(t-n),{fill:"#007bff"},{binStart:e.start,binEnd:e.end,total:e.total}))}}return r}buildSwarmScene(e){var t,n,o,r;const i=[],a=this.config.swarmStyle||{},s=null!==(t=a.radius)&&void 0!==t?t:3,l=null!==(n=a.fill)&&void 0!==n?n:"#007bff",c=null!==(o=a.opacity)&&void 0!==o?o:.7,u=a.stroke,d=a.strokeWidth;for(const t of e){const e=this.getX(t),n=this.getY(t);if(null==n||Number.isNaN(n))continue;const o=this.scales.x(e),a=this.scales.y(n);let h=l;if(this.getCategory){const e=this.getCategory(t);h=(null===(r=this.config.barColors)||void 0===r?void 0:r[e])||h}const g={type:"point",x:o,y:a,r:s,style:{fill:h,opacity:c,stroke:u,strokeWidth:d},datum:t};this.getPointId&&(g.pointId=this.getPointId(t)+""),i.push(g)}return i}buildWaterfallScene(e,t){var n,o,r;const i=[],a=this.scales,s=this.config.waterfallStyle,l=e.filter(e=>{const t=this.getY(e);return null!=t&&!Number.isNaN(t)});if(0===l.length)return i;const c=null!==(n=null==s?void 0:s.positiveColor)&&void 0!==n?n:"#28a745",u=null!==(o=null==s?void 0:s.negativeColor)&&void 0!==o?o:"#dc3545",d=null!==(r=null==s?void 0:s.gap)&&void 0!==r?r:1,h=null==s?void 0:s.stroke,g=null==s?void 0:s.strokeWidth;let f=0;for(let e=0;l.length>e;e++){const n=l[e],o=this.getX(n),r=this.getY(n),p=f+r;let y;y=l.length-1>e?this.getX(l[e+1])-o:e>0?o-this.getX(l[e-1]):0;const m=a.x(o),v=0!==y?a.x(o+y):m+t.width/10,b=Math.min(m,v)+d/2,x=Math.max(m,v)-d/2-b;if(0>=x){f=p;continue}const k=a.y(f),w=a.y(p);i.push(S(b,Math.min(k,w),x,Math.abs(k-w),{fill:0>r?u:c,stroke:h,strokeWidth:g},Object.assign(Object.assign({},n),{baseline:f,cumEnd:p,delta:r,_connectorStroke:null==s?void 0:s.connectorStroke,_connectorWidth:null==s?void 0:s.connectorWidth}))),f=p}return i}buildCandlestickScene(e,t){if(!(this.getOpen&&this.getHigh&&this.getLow&&this.getClose&&this.scales))return[];const n=[],o=this.config.candlestickStyle||{},r=o.upColor||"#28a745",i=o.downColor||"#dc3545",a=o.wickColor||"#333",s=o.wickWidth||1,l=e.map(e=>this.getX(e)).filter(e=>null!=e&&!Number.isNaN(e)).sort((e,t)=>e-t);let c=o.bodyWidth||6;if(!o.bodyWidth&&l.length>1){let e=1/0;for(let t=1;l.length>t;t++){const n=Math.abs(this.scales.x(l[t])-this.scales.x(l[t-1]));n>0&&e>n&&(e=n)}e!==1/0&&(c=Math.max(2,Math.min(.6*e,20)))}for(const t of e){const e=this.getX(t);if(null==e||Number.isNaN(e))continue;const o=this.getOpen(t),l=this.getHigh(t),u=this.getLow(t),d=this.getClose(t);if([o,l,u,d].some(e=>null==e||Number.isNaN(e)))continue;const h=d>=o;n.push({type:"candlestick",x:this.scales.x(e),openY:this.scales.y(o),closeY:this.scales.y(d),highY:this.scales.y(l),lowY:this.scales.y(u),bodyWidth:c,upColor:r,downColor:i,wickColor:a,wickWidth:s,isUp:h,datum:t})}return n}buildBoundsForGroup(e,t){if(!this.getBounds||!this.scales)return null;const n=[],o=[];for(const t of e){const e=this.getX(t),r=this.getY(t);if(null==e||null==r||Number.isNaN(e)||Number.isNaN(r))continue;const i=this.getBounds(t),a=this.scales.x(e);if(i&&0!==i)n.push([a,this.scales.y(r+i)]),o.push([a,this.scales.y(r-i)]);else{const e=this.scales.y(r);n.push([a,e]),o.push([a,e])}}return 2>n.length?null:{type:"area",topPath:n,bottomPath:o,style:this.resolveBoundsStyle(t,e[0]),datum:e,group:t,interactive:!1}}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){var n,o,r;const i=this.config.decay;if(!i||1>=t)return 1;const a=null!==(n=i.minOpacity)&&void 0!==n?n:.1,s=t-1-e;switch(i.type){case"linear":return a+(1-s/(t-1))*(1-a);case"exponential":{const e=null!==(o=i.halfLife)&&void 0!==o?o:t/2;return a+Math.pow(.5,s/e)*(1-a)}case"step":return(null!==(r=i.stepThreshold)&&void 0!==r?r:.5*t)>s?1:a;default:return 1}}applyDecay(e,t){var n,o;if(!this.config.decay)return;const r=t.length;if(1>=r)return;const i=new Map;for(let e=0;t.length>e;e++)i.set(t[e],e);for(const t of e){if("line"===t.type){const e=Array.isArray(t.datum)?t.datum:[];if(2>e.length)continue;const n=Array(e.length);let o=!1;for(let t=0;e.length>t;t++){const a=i.get(e[t]);null!=a?(n[t]=this.computeDecayOpacity(a,r),1>n[t]&&(o=!0)):n[t]=1}o&&(t._decayOpacities=n);continue}if("area"===t.type){const e=Array.isArray(t.datum)?t.datum:[],n=t.topPath?t.topPath.length:e.length;if(2>n)continue;if(e.length===n){const o=Array(n);let a=!1;for(let t=0;e.length>t;t++){const n=i.get(e[t]);null!=n?(o[t]=this.computeDecayOpacity(n,r),1>o[t]&&(a=!0)):o[t]=1}a&&(t._decayOpacities=o)}else{let o=1;for(const t of e){const e=i.get(t);if(null!=e){const t=this.computeDecayOpacity(e,r);o>t&&(o=t)}}if(1>o){const e=Array(n);e.fill(o),t._decayOpacities=e}}continue}const e=i.get(t.datum);if(null==e)continue;const a=this.computeDecayOpacity(e,r);if("heatcell"===t.type)t.style={opacity:a};else if("candlestick"===t.type)t._decayOpacity=a;else{const e=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:e*a})}}}computePulseIntensity(e,t){var n;const o=this.config.pulse;if(!o)return 0;const r=null!==(n=o.duration)&&void 0!==n?n:500,i=t-e;return r>i?1-i/r:0}applyPulse(e,t){var n,o;if(!this.config.pulse||!this.timestampBuffer)return;const r="undefined"!=typeof performance?performance.now():Date.now(),i=null!==(n=this.config.pulse.color)&&void 0!==n?n:"rgba(255,255,255,0.6)",a=null!==(o=this.config.pulse.glowRadius)&&void 0!==o?o:4,s=new Map;for(let e=0;t.length>e;e++)s.set(t[e],e);for(const t of e){if("line"===t.type)continue;if("area"===t.type){const e=Array.isArray(t.datum)?t.datum:[t.datum];let n=0;for(const t of e){const e=s.get(t);if(null==e)continue;const o=this.timestampBuffer.get(e);if(null==o)continue;const i=this.computePulseIntensity(o,r);i>n&&(n=i)}n>0&&(t._pulseIntensity=n,t._pulseColor=i);continue}const e=s.get(t.datum);if(null==e)continue;const n=this.timestampBuffer.get(e);if(null==n)continue;const o=this.computePulseIntensity(n,r);o>0&&(t._pulseIntensity=o,t._pulseColor=i,t._pulseGlowRadius=a)}}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}snapshotPositions(){var e,t,n;this.prevPositionMap.clear(),this.prevPathMap.clear();for(let o=0;this.scene.length>o;o++){const r=this.scene[o],i=this.getNodeIdentity(r,o);i&&("point"===r.type?this.prevPositionMap.set(i,{x:r.x,y:r.y,r:r.r,opacity:r.style.opacity}):"rect"===r.type?this.prevPositionMap.set(i,{x:r.x,y:r.y,w:r.w,h:r.h,opacity:r.style.opacity}):"heatcell"===r.type?this.prevPositionMap.set(i,{x:r.x,y:r.y,w:r.w,h:r.h,opacity:null===(e=r.style)||void 0===e?void 0:e.opacity}):"candlestick"===r.type?this.prevPositionMap.set(i,{x:r.x,y:r.openY}):"line"===r.type?this.prevPathMap.set(i,{path:r.path.map(e=>[e[0],e[1]]),opacity:null===(t=r.style)||void 0===t?void 0:t.opacity}):"area"===r.type&&this.prevPathMap.set(i,{topPath:r.topPath.map(e=>[e[0],e[1]]),bottomPath:r.bottomPath.map(e=>[e[0],e[1]]),opacity:null===(n=r.style)||void 0===n?void 0:n.opacity}))}}getNodeIdentity(e,t){var n,o,r,i;switch(e.type){case"point":if(e.pointId)return"p:"+e.pointId;if("streaming"===this.config.runtimeMode&&e.datum){if(this.getCategory)return`p:${this.getCategory(e.datum)}:${this.getY(e.datum)}`;const t=this.getX(e.datum),n=this.getY(e.datum);if(null!=t&&null!=n)return`p:${t}:${n}`}return"p:"+t;case"rect":return`r:${e.group||""}:${null!==(i=null!==(o=null===(n=e.datum)||void 0===n?void 0:n.binStart)&&void 0!==o?o:null===(r=e.datum)||void 0===r?void 0:r.category)&&void 0!==i?i:t}`;case"heatcell":return`h:${e.x}_${e.y}`;case"candlestick":return null==e.datum?"c:"+t:"c:"+this.getX(e.datum);case"line":return"l:"+(e.group||"_default");case"area":return"a:"+(e.group||"_default");default:return null}}startTransition(){var e,t,n,o,r,i,a,s,l,c,u,d,h,g,f,p,y,m,v,b,x,k,w,A,S,E;if(!this.config.transition||0===this.prevPositionMap.size&&0===this.prevPathMap.size)return;const M=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 O=!1;const C=new Set,P=new Set;for(let e=0;this.scene.length>e;e++){const y=this.scene[e],m=this.getNodeIdentity(y,e);if(!m)continue;if(y._transitionKey=m,"line"===y.type||"area"===y.type){const e=this.prevPathMap.get(m);if(e){if(P.add(m),"line"===y.type&&e.path&&e.path.length===y.path.length){y._targetPath=y.path.map(e=>[e[0],e[1]]),y._prevPath=e.path;for(let t=0;y.path.length>t;t++)y.path[t]=[e.path[t][0],e.path[t][1]];O=!0}else if("area"===y.type&&e.topPath&&e.bottomPath&&e.topPath.length===y.topPath.length&&e.bottomPath.length===y.bottomPath.length){y._targetTopPath=y.topPath.map(e=>[e[0],e[1]]),y._targetBottomPath=y.bottomPath.map(e=>[e[0],e[1]]),y._prevTopPath=e.topPath,y._prevBottomPath=e.bottomPath;for(let t=0;y.topPath.length>t;t++)y.topPath[t]=[e.topPath[t][0],e.topPath[t][1]];for(let t=0;y.bottomPath.length>t;t++)y.bottomPath[t]=[e.bottomPath[t][0],e.bottomPath[t][1]];O=!0}y._targetOpacity=null!==(t=y.style.opacity)&&void 0!==t?t:1}else y._targetOpacity=null!==(n=y.style.opacity)&&void 0!==n?n:1,y.style=Object.assign(Object.assign({},y.style),{opacity:0}),O=!0;continue}const v=this.prevPositionMap.get(m);if("point"===y.type)if(v){C.add(m);const e={x:y.x,y:y.y,r:y.r};y._targetOpacity=null!==(o=y.style.opacity)&&void 0!==o?o:1,v.x===e.x&&v.y===e.y||(y._targetX=e.x,y._targetY=e.y,y._targetR=e.r,y.x=v.x,y.y=v.y,y.r=null!==(r=v.r)&&void 0!==r?r:y.r,O=!0)}else y._targetOpacity=null!==(i=y.style.opacity)&&void 0!==i?i:1,y.style=Object.assign(Object.assign({},y.style),{opacity:0}),O=!0;else if("rect"===y.type)if(v){C.add(m);const e={x:y.x,y:y.y,w:y.w,h:y.h};y._targetOpacity=null!==(a=y.style.opacity)&&void 0!==a?a:1,v.x===e.x&&v.y===e.y&&v.w===e.w&&v.h===e.h||(y._targetX=e.x,y._targetY=e.y,y._targetW=e.w,y._targetH=e.h,y.x=v.x,y.y=v.y,y.w=null!==(s=v.w)&&void 0!==s?s:y.w,y.h=null!==(l=v.h)&&void 0!==l?l:y.h,O=!0)}else y._targetOpacity=null!==(c=y.style.opacity)&&void 0!==c?c:1,y.style=Object.assign(Object.assign({},y.style),{opacity:0}),O=!0;else if("heatcell"===y.type)if(v){C.add(m);const e={x:y.x,y:y.y,w:y.w,h:y.h};y._targetOpacity=null!==(d=null===(u=y.style)||void 0===u?void 0:u.opacity)&&void 0!==d?d:1,v.x===e.x&&v.y===e.y||(y._targetX=e.x,y._targetY=e.y,y._targetW=e.w,y._targetH=e.h,y.x=v.x,y.y=v.y,y.w=null!==(h=v.w)&&void 0!==h?h:y.w,y.h=null!==(g=v.h)&&void 0!==g?g:y.h,O=!0)}else y._targetOpacity=null!==(p=null===(f=y.style)||void 0===f?void 0:f.opacity)&&void 0!==p?p:1,y.style=Object.assign(Object.assign({},y.style||{}),{opacity:0}),O=!0}for(const[e,t]of this.prevPathMap)if(!P.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!==(y=t.opacity)&&void 0!==y?y:1},_targetOpacity:0,_transitionKey:e,datum:null};this.exitNodes.push(n),O=!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!==(m=t.opacity)&&void 0!==m?m:1},_targetOpacity:0,_transitionKey:e,datum:null};this.exitNodes.push(n),O=!0}for(const[e,t]of this.prevPositionMap)if(!C.has(e)){if(e.startsWith("p:")){const n={type:"point",x:t.x,y:t.y,r:null!==(v=t.r)&&void 0!==v?v:3,style:{opacity:null!==(b=t.opacity)&&void 0!==b?b:1},datum:null,_targetOpacity:0,_transitionKey:e};this.exitNodes.push(n)}else if(e.startsWith("r:")){const n={type:"rect",x:t.x,y:t.y,w:null!==(x=t.w)&&void 0!==x?x:0,h:null!==(k=t.h)&&void 0!==k?k:0,style:{opacity:null!==(w=t.opacity)&&void 0!==w?w:1,fill:"#999"},datum:null,_targetOpacity:0,_transitionKey:e};this.exitNodes.push(n)}else if(e.startsWith("h:")){const n={type:"heatcell",x:t.x,y:t.y,w:null!==(A=t.w)&&void 0!==A?A:0,h:null!==(S=t.h)&&void 0!==S?S:0,fill:"#999",datum:null,style:{opacity:null!==(E=t.opacity)&&void 0!==E?E:1},_targetOpacity:0,_transitionKey:e};this.exitNodes.push(n)}O=!0}this.exitNodes.length>0&&(this.scene=[...this.scene,...this.exitNodes]),O&&(this.activeTransition={startTime:z(),duration:M})}advanceTransition(e){var t,n,o,r,i,a;if(!this.activeTransition)return!1;const s=W(e,this.activeTransition),l=R(s,"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("point"===e.type){if(void 0!==e._targetOpacity){const o=t?this.prevPositionMap.get(t):void 0,r=o?null!==(n=o.opacity)&&void 0!==n?n:1:0;e.style.opacity=I(r,e._targetOpacity,l)}if(void 0===e._targetX)continue;if(!t)continue;const o=this.prevPositionMap.get(t);if(!o)continue;e.x=I(o.x,e._targetX,l),e.y=I(o.y,e._targetY,l),void 0!==e._targetR&&void 0!==o.r&&(e.r=I(o.r,e._targetR,l))}else if("rect"===e.type){if(void 0!==e._targetOpacity){const n=t?this.prevPositionMap.get(t):void 0,r=n?null!==(o=n.opacity)&&void 0!==o?o:1:0;e.style.opacity=I(r,e._targetOpacity,l)}if(void 0===e._targetX)continue;if(!t)continue;const n=this.prevPositionMap.get(t);if(!n)continue;e.x=I(n.x,e._targetX,l),e.y=I(n.y,e._targetY,l),void 0!==n.w&&(e.w=I(n.w,e._targetW,l)),void 0!==n.h&&(e.h=I(n.h,e._targetH,l))}else if("heatcell"===e.type){if(void 0!==e._targetOpacity){const n=t?this.prevPositionMap.get(t):void 0,o=n?null!==(r=n.opacity)&&void 0!==r?r:1:0;e.style=Object.assign(Object.assign({},e.style||{}),{opacity:I(o,e._targetOpacity,l)})}if(void 0===e._targetX)continue;if(!t)continue;const n=this.prevPositionMap.get(t);if(!n)continue;e.x=I(n.x,e._targetX,l),e.y=I(n.y,e._targetY,l),void 0!==n.w&&(e.w=I(n.w,e._targetW,l)),void 0!==n.h&&(e.h=I(n.h,e._targetH,l))}else if("line"===e.type){if(void 0!==e._targetOpacity){const t=void 0===e._prevPath&&e._targetOpacity>0?0:null!==(i=e.style.opacity)&&void 0!==i?i:1;e.style=Object.assign(Object.assign({},e.style),{opacity:I(t,e._targetOpacity,l)})}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]=I(t[o][0],n[o][0],l),e.path[o][1]=I(t[o][1],n[o][1],l)}else if("area"===e.type){if(void 0!==e._targetOpacity){const t=void 0===e._prevTopPath&&e._targetOpacity>0?0:null!==(a=e.style.opacity)&&void 0!==a?a:1;e.style=Object.assign(Object.assign({},e.style),{opacity:I(t,e._targetOpacity,l)})}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]=I(t[n][0],o[n][0],l),e.topPath[n][1]=I(t[n][1],o[n][1],l);if(n&&r&&n.length===e.bottomPath.length)for(let t=0;e.bottomPath.length>t;t++)e.bottomPath[t][0]=I(n[t][0],r[t][0],l),e.bottomPath[t][1]=I(n[t][1],r[t][1],l)}}if(s>=1){for(const e of this.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}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}}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}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){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.map;const r=Array.isArray(this.config.colorScheme)?this.config.colorScheme:_,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},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:"#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}return o&&"object"==typeof o?{fill:o.fill||o.stroke||"#4e79a7",fillOpacity:null!==(n=o.fillOpacity)&&void 0!==n?n:.7,stroke:o.stroke||"#4e79a7",strokeWidth:o.strokeWidth||2}:{fill:"#4e79a7",fillOpacity:.7,stroke:"#4e79a7",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:_,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()}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.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._colorMapCache=null,this._groupColorMap=new Map,this._barCategoryCache=null,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);void 0!==e.colorScheme&&(this._colorMapCache=null,this._groupColorMap=new Map),void 0===e.barColors&&void 0===e.colorScheme||(this._barCategoryCache=null),void 0===e.normalize&&void 0===e.extentPadding&&void 0===e.xAccessor&&void 0===e.yAccessor&&void 0===e.groupAccessor&&void 0===e.categoryAccessor&&void 0===e.chartType||(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||void 0!==e.xAccessor||void 0!==e.yAccessor||void 0!==e.timeAccessor||void 0!==e.valueAccessor){const l=s||!M(null!==(t=e.xAccessor)&&void 0!==t?t:e.timeAccessor,null!==(n=i.xAccessor)&&void 0!==n?n:i.timeAccessor),c=s||!M(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&&!M(e.groupAccessor,i.groupAccessor)&&(this.getGroup=null!=this.config.groupAccessor?P(this.config.groupAccessor):void 0,a=!0),"categoryAccessor"in e&&!M(e.categoryAccessor,i.categoryAccessor)&&(this.getCategory=null!=this.config.categoryAccessor?P(this.config.categoryAccessor):void 0,a=!0),"sizeAccessor"in e&&!M(e.sizeAccessor,i.sizeAccessor)&&(this.getSize=this.config.sizeAccessor?O(this.config.sizeAccessor,"size"):void 0,a=!0),"colorAccessor"in e&&!M(e.colorAccessor,i.colorAccessor)&&(this.getColor=null!=this.config.colorAccessor?P(this.config.colorAccessor):void 0,a=!0),"y0Accessor"in e&&!M(e.y0Accessor,i.y0Accessor)&&(this.getY0=this.config.y0Accessor?O(this.config.y0Accessor,"y0"):void 0,a=!0),"pointIdAccessor"in e&&!M(e.pointIdAccessor,i.pointIdAccessor)&&(this.getPointId=null!=this.config.pointIdAccessor?P(this.config.pointIdAccessor):void 0,a=!0),!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 F(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 G(e){let t=e%(2*Math.PI);return 0>t&&(t+=2*Math.PI),t}function q(e,t,n){const o=t-e.x,r=n-e.y,i=Math.sqrt(o*o+r*r);return i>e.r+5?null:{node:e,datum:e.datum,x:e.x,y:e.y,distance:i}}function Y(e,t,n){var o,r,i,a;if(0===e.path.length)return null;const s=Z(e.path,t);if(0>s)return null;const[l,c]=e.path[s];let u;if(e.path.length>1){let o=1/0;const r=Math.max(0,s-1),i=Math.min(e.path.length-2,s);for(let a=r;i>=a;a++){const[r,i]=e.path[a],[s,l]=e.path[a+1],c=X(t,n,r,i,s,l);o>c&&(o=c)}u=o}else{const e=t-l,o=n-c;u=Math.sqrt(e*e+o*o)}const d=null!==(a=null!==(r=null===(o=e.style)||void 0===o?void 0:o.strokeWidth)&&void 0!==r?r:null===(i=e.style)||void 0===i?void 0:i.lineWidth)&&void 0!==a?a:1;return u>Math.max(5,d/2+2)?null:{node:e,datum:Array.isArray(e.datum)&&e.datum[s]?e.datum[s]:e.datum,x:l,y:c,distance:u}}function X(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 V(e,t,n){const o=F(t,n,e);return o.hit?{node:e,datum:e.datum,x:o.cx,y:o.cy,distance:0}:null}function U(e,t,n){const o=F(t,n,e);return o.hit?{node:e,datum:e.datum,x:o.cx,y:o.cy,distance:0}:null}function K(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 Q(e,t,n){if(0===e.topPath.length)return null;const o=Z(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 Z(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 J(e,t,n){switch(e){case"ArrowRight":case"ArrowDown":return n-1>t?t+1:t;case"ArrowLeft":case"ArrowUp":return t>0?t-1:t;case"Home":return 0;case"End":return n-1;case"Escape":return-1;default:return null}}function ee(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 te(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]]]}function ne(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])}$.QUADTREE_THRESHOLD=500;const oe={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 re(e,t,n,o){let r;return r="function"==typeof n?n(e):(0,oe[n])(o(e,t)),r}function ie(){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 ae(e,t,n){return n&&n.size>0?n.has(e.label)?1:.3:null!=t?e.label===t?1:.3:1}function se({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 le(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",fontSize:12,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=re(e,c,u,d),b=ae(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(ie,null),p.createElement("text",{y:8,x:22,dominantBaseline:"central",fontSize:12,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 n=0;e.label&&(n+=16);const g=((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=re(e,c,u,d),b=ae(e,o,r),x=r&&r.size>0&&r.has(e.label);g.push(p.createElement("g",{key:"legend-item-"+c,transform:`translate(${f},0)`,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)),"ArrowRight"===n.key||"ArrowLeft"===n.key){n.preventDefault();const e=(c+("ArrowRight"===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(ie,null),p.createElement("text",{y:8,x:22,dominantBaseline:"central",fontSize:12,fill:"var(--semiotic-text, #333)"},e.label))),f+=26+7*e.label.length}),{items:g,offset:f}})(e,o,r,i,a,s,l,t,c,u);n+=g.offset+5,h.push(Object.assign(Object.assign({label:e.label},g),{offset:n})),d+=n+12});let g=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",fontSize:12,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: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",fontSize:12,fill:"var(--semiotic-text, #333)"},s),m)}function ce(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(se,{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(le,{legendGroups:t.legendGroups,title:"",width:h?n:100,orientation:h?"horizontal":"vertical",customHoverBehavior:s,customClickBehavior:l,highlightedCategory:c,isolatedCategories:u,legendInteraction:d}):t)}function ue(e){return"string"==typeof e?{type:e}:e}function de({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 he(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 ge(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 fe(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||"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||"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||"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||"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||"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||"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||"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||"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:ge((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||"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]:he(i,l):[],y=r?c?[r]:he(r,l):[],m="leftRight"===u?"end"===h?-4:4:0;let v=0;const b=[];f.length>0&&(b.push(p.createElement("text",{key:"annotation-note-title",className:"annotation-note-title",fill:o||void 0,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:o||void 0,textAnchor:h,y:v},y.map((e,t)=>p.createElement("tspan",{key:t,x:m,dy:0===t?0:g},e))));let x=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),x=p.createElement("line",{className:"note-line",x1:t,x2:n,y1:0,y2:0,stroke:o||"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),x=p.createElement("line",{className:"note-line",x1:0,x2:0,y1:t,y2:n,stroke:o||"currentColor"})}const k=Math.max(0,f.length+y.length-1)*g;let w=0;return"topBottom"===u?w=0>n?-(k+2):18:"leftRight"===u&&(w="middle"===d?-(k+g+(y.length>0&&f.length>0?2:0))/2+8:"bottom"===d||0>n?-(k+2):18),p.createElement("g",{className:"annotation-note",transform:`translate(${t},${n})`},p.createElement("g",{className:"annotation-note-content",transform:0!==w?`translate(0,${w})`:void 0},b),x)}(s,v,b,d))}function pe(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(fe,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(fe,Object.assign({"data-testid":"semiotic-annotation",key:`${s.label}-${s.title}-${o.i}`,events:a},o,{type:i}))}const ye={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 me(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 ve(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 be(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=me(e,n),c=ve(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 xe(e,t,n,o=50){return!(-o>e||e>(n.width||0)+o||-o>t||t>(n.height||0)+o)}function ke(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,E,M,O,C,P,L,j,_,D,N,B,H,T,R,W,I,z,$,F,G,q,Y,X,V,U,K;switch(e.type){case"label":{const o=be(e,t,n);if(!o)return null;const{x:r,y:i}=o;return xe(r,i,n)?p.createElement(pe,{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=be(e,t,n);if(!o)return null;const{x:r,y:i}=o;return xe(r,i,n)?p.createElement(pe,{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=me(e,n);if(null==o)return null;const r=e.color||"#f97316";return 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:12,fill:r,fontSize:12,fontWeight:"bold"},e.label))}case"y-threshold":{const o=ve(e,n);if(null==o)return null;const r=e.color||"#f97316";return 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:(n.width||0)-4,y:o-4,textAnchor:"end",fill:r,fontSize:12,fontWeight:"bold"},e.label))}case"enclose":{const o=(e.coordinates||[]).map(e=>({x:me(Object.assign(Object.assign({},e),{type:"point"}),n),y:ve(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:me(Object.assign(Object.assign({},e),{type:"point"}),n),y:ve(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=me(t,n),a=ve(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=me(e,n),r=ve(e,n);return p.createElement(pe,{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=ye[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!==(E=e.fillOpacity)&&void 0!==E?E:.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!==(O=null===(M=n.scales)||void 0===M?void 0:M.x)&&void 0!==O?O:null===(C=n.scales)||void 0===C?void 0:C.time,a=null!==(L=null===(P=n.scales)||void 0===P?void 0:P.y)&&void 0!==L?L:null===(j=n.scales)||void 0===j?void 0:j.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!==(_=e.threshold)&&void 0!==_?_:2,h=l-d*u,g=!1!==e.showBand,f=e.fill||"#6366f1",y=null!==(D=e.fillOpacity)&&void 0!==D?D:.1,m=e.anomalyColor||"#ef4444",v=null!==(N=e.anomalyRadius)&&void 0!==N?N: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=me(e,n),r=ve(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!==(H=null===(B=n.scales)||void 0===B?void 0:B.x)&&void 0!==H?H:null===(T=n.scales)||void 0===T?void 0:T.time,s=null!==(W=null===(R=n.scales)||void 0===R?void 0:R.y)&&void 0!==W?W:null===(I=n.scales)||void 0===I?void 0:I.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!==(z=e.confidence)&&void 0!==z?z:.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`,E=A.map(e=>`${a(e.x)},${s(e.yCenter)}`).join(" "),M=`${a(x)},${s(c(x))}`,O=e.strokeColor||"#6366f1";return p.createElement("g",{key:"ann-"+t},p.createElement("path",{d:S,fill:e.fill||"#6366f1",fillOpacity:null!==(F=e.fillOpacity)&&void 0!==F?F:.15,stroke:"none"}),p.createElement("polyline",{points:`${M} ${E}`,fill:"none",stroke:O,strokeWidth:null!==(G=e.strokeWidth)&&void 0!==G?G:2,strokeDasharray:null!==(q=e.strokeDasharray)&&void 0!==q?q:"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:O,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=be(e,t,n);if(!i)return null;o=i.x,r=i.y}if(null==o||null==r)return null;if(!xe(o,r,n))return null;const i=null!==(Y=e.dx)&&void 0!==Y?Y: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=be(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)}default:return null}}}function we(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 Ae(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||Se,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,6.5*t.label.length),0);return Ee(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||Se,r=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5;return Ee(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&&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})),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}))),x&&!w&&p.createElement("line",{x1:0,y1:o,x2:n,y2:o,stroke:S,strokeWidth:1}),w&&p.createElement("path",{d:we("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:we("left",n,o),fill:"none",stroke:S,strokeWidth:1})))}function Se(e,t,n){return Math.round(100*e)/100+""}function Ee(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 Me(e,t){return e instanceof Date&&(!(t&&t instanceof Date)||e.getFullYear()!==t.getFullYear()||e.getMonth()!==t.getMonth()||e.getDate()!==t.getDate())}function Oe(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:E="right",foregroundGraphics:M,marginalGraphics:O,xValues:C,yValues:P,annotations:L,svgAnnotationRules:j,xAccessor:_,yAccessor:D,annotationData:N,pointNodes:B,curve:H,underlayRendered:T,children:R}=t,W=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||Se,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,6.5*t.label.length),0);return Ee(s,Math.max(55,l+8))},[u,c,d,y,r]),I=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||Se,o=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5;return Ee(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]),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||Se,o=null!==(e=t.ticks)&&void 0!==e?e:5;return Ee(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]),$=e.useRef(new Map),F=e.useRef(null!==(n=null==L?void 0:L.length)&&void 0!==n?n:0),G=null!==(o=null==L?void 0:L.length)&&void 0!==o?o:0;F.current!==G&&(F.current=G,$.current=new Map);const q=e.useMemo(()=>{if(!L||0===L.length)return null;const e=ke(),t={scales:c?{x:c.x,y:c.y,time:c.x,value:c.y}:null,timeAxis:"x",xAccessor:_,yAccessor:D,width:r,height:i,data:N,frameType:"xy",pointNodes:B,curve:H,stickyPositionCache:$.current};return L.map((n,o)=>{if(j){const r=j(n,o,t);return null!=r?r:e(n,o,t)}return e(n,o,t)}).filter(Boolean)},[L,j,r,i,_,D,N,c,B,H]);return u||b||x||M||O||q&&q.length>0||v||R?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&&!T&&p.createElement("g",{className:"stream-grid"},W.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})),I.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}))),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=(null==e?void 0:e.jaggedBase)||!1,a=(null==t?void 0:t.jaggedBase)||!1,s=null==t?void 0:t.landmarkTicks,c=null==e?void 0:e.landmarkTicks,u="var(--semiotic-border, #ccc)",y="var(--semiotic-text-secondary, var(--semiotic-text, #666))",m="var(--semiotic-text, #333)";return p.createElement("g",{className:"stream-axes",style:{fontFamily:"var(--semiotic-font-family, sans-serif)"}},!T&&(!t||!1!==t.baseline)&&!a&&p.createElement("line",{x1:0,y1:i,x2:r,y2:i,stroke:u,strokeWidth:1}),!T&&a&&p.createElement("path",{d:we("bottom",r,i),fill:"none",stroke:u,strokeWidth:1}),W.map((e,t)=>{const n=!!s&&("function"==typeof s?s(e.value,t):Me(e.value,t>0?W[t-1].value:void 0));return p.createElement("g",{key:"xtick-"+t,transform:`translate(${e.pixel},${i})`},p.createElement("line",{y2:5,stroke:u,strokeWidth:1}),p.createElement("text",{y:18,textAnchor:"middle",fontSize:n?11:10,fontWeight:n?600:400,fill:y,style:{userSelect:"none"}},e.label))}),h&&p.createElement("text",{x:r/2,y:i+40,textAnchor:"middle",fontSize:12,fill:m,style:{userSelect:"none"}},h),!T&&n&&!o&&p.createElement("line",{x1:0,y1:0,x2:0,y2:i,stroke:u,strokeWidth:1}),!T&&o&&p.createElement("path",{d:we("left",r,i),fill:"none",stroke:u,strokeWidth:1}),I.map((e,t)=>{const n=!!c&&("function"==typeof c?c(e.value,t):Me(e.value,t>0?I[t-1].value:void 0));return p.createElement("g",{key:"ytick-"+t,transform:`translate(0,${e.pixel})`},p.createElement("line",{x2:-5,stroke:u,strokeWidth:1}),p.createElement("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:n?11:10,fontWeight:n?600:400,fill:y,style:{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:m,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:u,strokeWidth:1}),z.map((e,n)=>{const o=!!t&&("function"==typeof t?t(e.value,n):Me(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:u,strokeWidth:1}),p.createElement("text",{x:8,textAnchor:"start",dominantBaseline:"middle",fontSize:o?11:10,fontWeight:o?600:400,fill:y,style:{userSelect:"none"}},e.label))}),n&&p.createElement("text",{x:r+l.right-15,y:i/2,textAnchor:"middle",fontSize:12,fill:m,transform:`rotate(90, ${r+l.right-15}, ${i/2})`,style:{userSelect:"none"}},n))})())})(),q,O&&c&&C&&P&&p.createElement(p.Fragment,null,O.top&&p.createElement("g",{transform:"translate(0, 0)"},p.createElement(de,{orient:"top",config:ue(O.top),values:C,scale:c.x,size:l.top,length:r})),O.bottom&&p.createElement("g",{transform:`translate(0, ${i})`},p.createElement(de,{orient:"bottom",config:ue(O.bottom),values:C,scale:c.x,size:l.bottom,length:r})),O.left&&p.createElement("g",{transform:"translate(0, 0)"},p.createElement(de,{orient:"left",config:ue(O.left),values:P,scale:c.y,size:l.left,length:i})),O.right&&p.createElement("g",{transform:`translate(${r}, 0)`},p.createElement(de,{orient:"right",config:ue(O.right),values:P,scale:c.y,size:l.right,length:i}))),M,R),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),ce({legend:x,totalWidth:a,totalHeight:s,margin:l,legendPosition:E,title:b,legendHoverBehavior:k,legendClickBehavior:w,legendHighlightedCategory:A,legendIsolatedCategories:S})):null}function Ce(e,t="#4e79a7"){return e&&"string"==typeof e?e:t}const Pe="undefined"==typeof window||"undefined"==typeof document,Le={position:"absolute",width:1,height:1,overflow:"hidden",clip:"rect(0,0,0,0)",whiteSpace:"nowrap",border:0};function je(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"},i=["point","line","area","rect","heatcell","circle","candlestick"],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 _e(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(", ")}`}function De({scene:e,chartType:t}){var n,o,r,i;const a=[];for(const t of e){if(a.length>=50)break;"point"===t.type?a.push({label:"Point",values:{x:Math.round(100*t.x)/100+"",y:Math.round(100*t.y)/100+""}}):"rect"===t.type?a.push({label:"Bar",values:{category:(null===(n=t.datum)||void 0===n?void 0:n.category)||"",value:Math.round(100*(null!==(r=null===(o=t.datum)||void 0===o?void 0:o.value)&&void 0!==r?r:0))/100+""}}):"heatcell"===t.type&&a.push({label:"Cell",values:{x:Math.round(100*t.x)/100+"",y:Math.round(100*t.y)/100+"",value:Math.round(100*(null!==(i=t.value)&&void 0!==i?i:0))/100+""}})}if(0===a.length)return null;const s=new Set;for(const e of a)for(const t of Object.keys(e.values))s.add(t);const l=Array.from(s);return p.createElement("table",{style:Le,role:"table","aria-label":"Data table for "+t},p.createElement("thead",null,p.createElement("tr",null,l.map(e=>p.createElement("th",{key:e},e)))),p.createElement("tbody",null,a.map((e,t)=>p.createElement("tr",{key:t},l.map(t=>{var n;return p.createElement("td",{key:t},null!==(n=e.values[t])&&void 0!==n?n:"")}))),e.length>50&&p.createElement("tr",null,p.createElement("td",{colSpan:l.length},"...and ",e.length-50," more items"))))}function Ne({nodes:e,chartType:t}){var n,o,r,i,a;const s=[];for(const t of e){if(s.length>=50)break;s.push({values:{id:(null===(n=t.datum)||void 0===n?void 0:n.id)||t.id||"",x:Math.round(100*(null!==(r=null!==(o=t.cx)&&void 0!==o?o:t.x)&&void 0!==r?r:0))/100+"",y:Math.round(100*(null!==(a=null!==(i=t.cy)&&void 0!==i?i:t.y)&&void 0!==a?a:0))/100+""}})}if(0===s.length)return null;const l=new Set;for(const e of s)for(const t of Object.keys(e.values))l.add(t);const c=Array.from(l);return p.createElement("table",{style:Le,role:"table","aria-label":"Data table for "+t},p.createElement("thead",null,p.createElement("tr",null,c.map(e=>p.createElement("th",{key:e},e)))),p.createElement("tbody",null,s.map((e,t)=>p.createElement("tr",{key:t},c.map(t=>{var n;return p.createElement("td",{key:t},null!==(n=e.values[t])&&void 0!==n?n:"")}))),e.length>50&&p.createElement("tr",null,p.createElement("td",{colSpan:c.length},"...and ",e.length-50," more items"))))}function Be({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:Le},t)}function He(t){const n=e.createContext(null),o=Te(t);return[function({children:o}){const r=e.useMemo(()=>Te(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 Te(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)}}}const Re={mode:"light",colors:{primary:"#00a2ce",categorical:["#1f77b4","#ff7f0e","#2ca02c","#d62728","#9467bd","#8c564b","#e377c2","#7f7f7f","#bcbd22","#17becf"],sequential:"blues",background:"transparent",text:"#333",textSecondary:"#666",grid:"#e0e0e0",border:"#ccc"},typography:{fontFamily:"sans-serif",titleSize:16,labelSize:12,tickSize:10}},We={mode:"dark",colors:{primary:"#4fc3f7",categorical:["#4fc3f7","#ffb74d","#81c784","#ef5350","#ba68c8","#a1887f","#f06292","#90a4ae","#dce775","#4dd0e1"],sequential:"blues",background:"#1a1a2e",text:"#e0e0e0",textSecondary:"#aaa",grid:"#333",border:"#555"},typography:{fontFamily:"sans-serif",titleSize:16,labelSize:12,tickSize:10}},Ie={mode:"light",colors:{primary:"#0000cc",categorical:["#0072B2","#E69F00","#009E73","#CC79A7","#56B4E9","#D55E00","#F0E442","#000000"],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"},[ze,$e]=He(e=>({theme:Re,setTheme(t){e(e=>{if("light"===t)return{theme:Re};if("dark"===t)return{theme:We};if("high-contrast"===t)return{theme:Ie};if(t.mode&&"auto"!==t.mode){const e="dark"===t.mode?We:Re;return{theme: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: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 Fe(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 Ge(){return"undefined"!=typeof window&&window.devicePixelRatio||1}function qe(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 Ye(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 Xe(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()}}function Ve(e){return!(!e._pulseIntensity||0>=e._pulseIntensity)}function Ue(e,t,n=.3){Ve(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 Ke(e,t,n=.6){var o,r,i,a,s;if(!Ve(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 Qe(e,t,n,o=.35){Ve(t)&&(e.globalAlpha=t._pulseIntensity*o,e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.fill())}function Ze(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 Je(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 et(e,t){const n=Ze(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 tt=(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.style.fill||"#4e79a7",o=t._decayOpacities;if(o&&o.length===t.topPath.length){const i=null!==(r=t.style.fillOpacity)&&void 0!==r?r:.7;e.fillStyle=n;for(let n=0;t.topPath.length-1>n;n++)e.globalAlpha=.5*(o[n]+o[n+1])*i,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=t.style.stroke,e.lineWidth=t.style.strokeWidth||2,e.setLineDash([]);for(let n=0;t.topPath.length-1>n;n++)e.globalAlpha=.5*(o[n]+o[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 s=null!==(i=t.style.opacity)&&void 0!==i?i:1;if(et(e,t),t.fillGradient){let o=1/0;for(const e of t.topPath)o>e[1]&&(o=e[1]);let r=-1/0;for(const e of t.bottomPath)e[1]>r&&(r=e[1]);const i=Je("string"==typeof n?n:"#4e79a7"),a=t.fillGradient.topOpacity,l=t.fillGradient.bottomOpacity,c=e.createLinearGradient(0,o,0,r);c.addColorStop(0,`rgba(${i[0]},${i[1]},${i[2]},${a})`),c.addColorStop(1,`rgba(${i[0]},${i[1]},${i[2]},${l})`),e.fillStyle=c,e.globalAlpha=s}else{const o=null!==(a=t.style.fillOpacity)&&void 0!==a?a:.7;e.globalAlpha=o*s,e.fillStyle=n}if(e.fill(),t._pulseIntensity&&t._pulseIntensity>0&&(et(e,t),Qe(e,t)),t.style.stroke&&"none"!==t.style.stroke){e.globalAlpha=s,e.strokeStyle=t.style.stroke,e.lineWidth=t.style.strokeWidth||2,e.setLineDash([]);const n=Ze(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()}e.globalAlpha=1}},nt=(e,t,n,o)=>{var r;const i=t.filter(e=>"point"===e.type);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=t.style.fill||"#4e79a7",e.fill(),t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke()),Ke(e,t),e.globalAlpha=1}}finally{e.restore()}},ot=(e,t,n,o)=>{const r=t.filter(e=>"rect"===e.type);for(const t of r)null!=t.style.opacity&&(e.globalAlpha=t.style.opacity),t.style.icon?rt(e,t):(e.fillStyle=t.style.fill||"#007bff",e.fillRect(t.x,t.y,t.w,t.h),t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.strokeRect(t.x,t.y,t.w,t.h))),Ue(e,t),e.globalAlpha=1};function rt(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 it(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 at(e){return Number.isInteger(e)?e+"":100>Math.abs(e)?1>Math.abs(e)?e.toPrecision(3):e.toFixed(1):e.toFixed(0)}const st=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function lt(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`${st[t.getUTCMonth()]} ${t.getUTCDate()}`}:5*n>t?e=>{const t=new Date(e);return`${st[t.getUTCMonth()]} ${t.getUTCFullYear()}`}:e=>new Date(e).getUTCFullYear()+""}const ct={line:[tt,(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.style.stroke||"#007bff",u=s.style.strokeWidth||2,d=s.colorThresholds,h=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=u,e.lineCap=s.style.strokeLinecap||"butt",s.style._edgeFade){const y=null!==(r=s.style.opacity)&&void 0!==r?r:1;Xe(e,s.path,c,u,y,s.style.strokeLinecap||"butt"),e.globalAlpha=1,e.setLineDash([]),e.lineCap="butt";continue}const g=qe(s.curve),f=d&&d.length>0&&h&&h.length===s.path.length,p=s._decayOpacities;if(p&&p.length===s.path.length&&!f){e.strokeStyle=c;const m=null!==(i=s.style.opacity)&&void 0!==i?i:1;for(let v=0;s.path.length-1>v;v++)e.globalAlpha=.5*(p[v]+p[v+1])*m,e.beginPath(),e.moveTo(s.path[v][0],s.path[v][1]),e.lineTo(s.path[v+1][0],s.path[v+1][1]),e.stroke()}else if(f){let b=null,x=null,k=null,w=null,A=!1;function S(t,n,o){e.beginPath(),e.strokeStyle=t,e.moveTo(n,o),A=!0}function E(){A&&(e.stroke(),A=!1)}for(let M=0;s.path.length>M;M++){const[O,C]=s.path[M],P=h[M],L=Ye(P,d,c);if(null!==b&&null!==w&&null!==k){if(L===w)e.lineTo(O,C);else{const j=[];for(const _ of d){const D=_.value;(k>D||D>P)&&(D>k||P>D)||k===D||P===D||j.push({t:(D-k)/(P-k)})}j.sort((e,t)=>e.t-t.t);for(const N of j){const B=b+(O-b)*N.t,H=x+(C-x)*N.t,T=Ye(k+(P-k)*Math.min(N.t+1e-4,1),d,c);e.lineTo(B,H),E(),S(T,B,H)}e.lineTo(O,C)}b=O,x=C,k=P,w=L}else S(L,O,C),b=O,x=C,k=P,w=L}E()}else{if(e.beginPath(),e.strokeStyle=c,g)l.line().x(e=>e[0]).y(e=>e[1]).curve(g).context(e)(s.path);else{const[R,W]=s.path[0];e.moveTo(R,W);for(let I=1;s.path.length>I;I++)e.lineTo(s.path[I][0],s.path[I][1])}e.stroke()}if(s.style.fill&&s.style.fillOpacity&&s.style.fillOpacity>0){if(e.beginPath(),e.globalAlpha=s.style.fillOpacity,e.fillStyle=s.style.fill,g&&!f)l.line().x(e=>e[0]).y(e=>e[1]).curve(g).context(e)(s.path);else{const[$,F]=s.path[0];e.moveTo($,F);for(let G=1;s.path.length>G;G++)e.lineTo(s.path[G][0],s.path[G][1])}const z=s.path[0][0];e.lineTo(s.path[s.path.length-1][0],o.height),e.lineTo(z,o.height),e.closePath(),e.fill()}e.globalAlpha=1,e.setLineDash([]),e.lineCap="butt"}}],area:[tt],stackedarea:[tt],scatter:[nt],bubble:[nt],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),Ue(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):at(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=it(t.fill),e.font=o+"px sans-serif",e.textAlign="center",e.textBaseline="middle",e.fillText(n,r,i)}}}finally{e.restore()}}],bar:[ot],swarm:[nt],waterfall:[(e,t,n,o)=>{var r,i,a;ot(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;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();const r=Math.min(t.openY,t.closeY),i=Math.abs(t.openY-t.closeY),a=t.isUp?t.upColor:t.downColor;e.fillStyle=a,e.fillRect(t.x-t.bodyWidth/2,r,t.bodyWidth,Math.max(i,1)),e.strokeStyle=a,e.lineWidth=1,e.strokeRect(t.x-t.bodyWidth/2,r,t.bodyWidth,Math.max(i,1)),e.restore()}}]},ut={top:20,right:20,bottom:30,left:40},dt={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"},ht={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 gt({hover:e}){const t=e=>Number.isInteger(e)?e+"":e.toFixed(2);return p.createElement("div",{className:"semiotic-tooltip",style:ht},p.createElement("div",{style:{fontWeight:600,marginBottom:2}},t(e.value)),p.createElement("div",{style:{opacity:.7,fontSize:11}},t(e.time)))}function ft({width:o,height:r,totalWidth:i,totalHeight:a,margin:s,dimension:l,scales:c,onBrush:u}){const d=e.useRef(null),h=e.useRef(null),g=e.useRef(u);g.current=u;const f=e.useRef(c);return f.current=c,e.useEffect(()=>{if(!d.current)return;const e=n.select(d.current).select(".brush-g"),i="x"===l?t.brushX():"y"===l?t.brushY():t.brush();return i.extent([[0,0],[o,r]]),i.on("brush end",e=>{const t=f.current;if(!t)return;if(!e.selection)return void g.current(null);let n,i;if("x"===l){const[o,a]=e.selection;n=[t.x.invert(o),t.x.invert(a)],i=[t.y.invert(r),t.y.invert(0)]}else if("y"===l){const[r,a]=e.selection;n=[t.x.invert(0),t.x.invert(o)],i=[t.y.invert(a),t.y.invert(r)]}else{const[[o,r],[a,s]]=e.selection;n=[t.x.invert(o),t.x.invert(a)],i=[t.y.invert(s),t.y.invert(r)]}g.current({x:n,y:i})}),e.call(i),h.current=i,e.select(".selection").attr("fill","steelblue").attr("fill-opacity",.15).attr("stroke","steelblue").attr("stroke-width",1),()=>{i.on("brush end",null),h.current=null}},[o,r,l]),p.createElement("svg",{ref:d,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})`}))}const pt=e.forwardRef(function(t,n){var o,r,i,a,s,l,c,u,d;const{chartType:h,runtimeMode:g,data:f,chunkThreshold:y,chunkSize:v,xAccessor:b,yAccessor:x,colorAccessor:k,sizeAccessor:w,groupAccessor:A,lineDataAccessor:S,curve:E,normalize:M,binSize:O,valueAccessor:C,arrowOfTime:P="right",windowMode:L="sliding",windowSize:j=200,timeAccessor:_,xExtent:D,yExtent:N,extentPadding:B=.1,sizeRange:H,size:T=[500,300],responsiveWidth:R,responsiveHeight:W,margin:I,className:z,background:F,lineStyle:G,pointStyle:X,areaStyle:Z,waterfallStyle:oe,swarmStyle:re,barColors:ie,colorScheme:ae,boundsAccessor:se,boundsStyle:le,y0Accessor:ce,gradientFill:ue,openAccessor:de,highAccessor:he,lowAccessor:ge,closeAccessor:fe,candlestickStyle:pe,showAxes:ye=!0,axes:me,xLabel:ve,yLabel:be,yLabelRight:xe,xFormat:ke,yFormat:we,tickFormatTime:Se,tickFormatValue:Ee,hoverAnnotation:Me,tooltipContent:Le,customHoverBehavior:_e,enableHover:Ne,annotations:He,svgAnnotationRules:Te,showGrid:Re,legend:We,legendHoverBehavior:Ie,legendClickBehavior:ze,legendHighlightedCategory:qe,legendIsolatedCategories:Ye,legendPosition:Xe,backgroundGraphics:Ve,foregroundGraphics:Ue,canvasPreRenderers:Ke,svgPreRenderers:Qe,title:Ze,categoryAccessor:Je,brush:et,onBrush:tt,decay:nt,pulse:ot,transition:rt,staleness:it,heatmapAggregation:at,heatmapXBins:st,heatmapYBins:ht,showValues:pt,heatmapValueFormat:yt,marginalGraphics:mt,pointIdAccessor:vt,xScaleType:bt,yScaleType:xt,accessibleTable:kt}=t,[wt,At]=te(T,R,W),St=Object.assign(Object.assign({},ut),I);if(mt){const e=60;mt.top&&e>St.top&&(St.top=e),mt.bottom&&e>St.bottom&&(St.bottom=e),mt.left&&e>St.left&&(St.left=e),mt.right&&e>St.right&&(St.right=e)}const Et=At[0]-St.left-St.right,Mt=At[1]-St.top-St.bottom,Ot="function"==typeof Ue?Ue({size:At,margin:St}):Ue,Ct="function"==typeof Ve?Ve({size:At,margin:St}):Ve,Pt=null!=Me?Me:Ne,Lt=e.useRef(null),jt=e.useRef(null),_t=e.useRef(0),Dt=e.useRef(!1),Nt=$e(e=>e.theme),[Bt,Ht]=e.useState(0),[Tt,Rt]=e.useState(null),Wt=e.useRef(null),It=e.useRef(null),[zt,$t]=e.useState(null),[Ft,Gt]=e.useState(!1),[qt,Yt]=e.useState([]),[Xt,Vt]=e.useState([]),Ut=e.useRef(()=>{}),Kt="streaming"===g||["bar","swarm","waterfall"].includes(h),Qt=e.useMemo(()=>({chartType:h,runtimeMode:Kt?"streaming":"bounded",windowSize:j,windowMode:L,arrowOfTime:Kt?P:"right",extentPadding:B,xAccessor:Kt?void 0:b,yAccessor:Kt?void 0:x,timeAccessor:Kt?_:void 0,valueAccessor:C,colorAccessor:k,sizeAccessor:w,groupAccessor:A,categoryAccessor:Je,lineDataAccessor:S,xScaleType:bt,yScaleType:xt,xExtent:D,yExtent:N,sizeRange:H,binSize:O,normalize:M,boundsAccessor:se,boundsStyle:le,y0Accessor:ce,gradientFill:"boolean"==typeof ue?ue?{topOpacity:.8,bottomOpacity:.05}:void 0:ue,openAccessor:de,highAccessor:he,lowAccessor:ge,closeAccessor:fe,candlestickStyle:pe,lineStyle:G,pointStyle:X,areaStyle:Z,swarmStyle:re,waterfallStyle:oe,colorScheme:ae,barColors:ie,annotations:He,decay:nt,pulse:ot,transition:rt,staleness:it,heatmapAggregation:at,heatmapXBins:st,heatmapYBins:ht,showValues:pt,heatmapValueFormat:yt,pointIdAccessor:vt,curve:E}),[h,j,L,P,B,b,x,_,C,bt,xt,k,w,A,Je,S,D,N,H,O,M,se,le,ce,ue,de,he,ge,fe,pe,G,X,Z,re,oe,ae,ie,He,nt,ot,rt,it,at,st,ht,pt,yt,Kt,vt,E]),Zt=e.useRef(null);Zt.current||(Zt.current=new $(Qt));const Jt=e.useCallback(()=>{_t.current||(_t.current=requestAnimationFrame(()=>Ut.current()))},[]);e.useEffect(()=>{var e;null===(e=Zt.current)||void 0===e||e.updateConfig(Qt),Dt.current=!0,Jt()},[Qt,Jt]),e.useEffect(()=>{Dt.current=!0,Jt()},[Nt,Jt]);const en=e.useRef(null);en.current||(en.current=new m(e=>{const t=Zt.current;t&&t.ingest(e)&&(Dt.current=!0,Jt())},{chunkThreshold:y,chunkSize:v})),e.useEffect(()=>{var e;null===(e=en.current)||void 0===e||e.updateChunkOptions({chunkThreshold:y,chunkSize:v})},[y,v]);const tn=e.useCallback(e=>{var t;null===(t=en.current)||void 0===t||t.push(e)},[]),nn=e.useCallback(e=>{var t;null===(t=en.current)||void 0===t||t.pushMany(e)},[]),on=e.useCallback(()=>{var e,t;null===(e=en.current)||void 0===e||e.clear(),null===(t=Zt.current)||void 0===t||t.clear(),Dt.current=!0,Jt()},[Jt]);e.useImperativeHandle(n,()=>({push:tn,pushMany:nn,clear:on,getData:()=>{var e,t,n;return null===(e=en.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},getExtents:()=>{var e,t;return null!==(t=null===(e=Zt.current)||void 0===e?void 0:e.getExtents())&&void 0!==t?t:null}}),[tn,nn,on]),e.useEffect(()=>{var e;f&&(null===(e=en.current)||void 0===e||e.setBoundedData(f))},[f]);const rn=e.useRef(()=>{}),an=e.useRef(()=>{});rn.current=e=>{if(!Pt)return;const t=Lt.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>Et||0>r||r>Mt)return void(Wt.current&&(Wt.current=null,It.current=null,$t(null),_e&&(_e(null),Dt.current=!0),Jt()));const i=Zt.current;if(!i||0===i.scene.length)return;const a=function(e,t,n,o=30,r){let i=null,a=!1;if(r){const e=r.find(t,n,o);if(e){const r=q(e,t,n);r&&o>r.distance&&(i=r,a=!0)}}for(const s of e){let e=null;switch(s.type){case"point":if(r&&a)break;e=q(s,t,n);break;case"line":e=Y(s,t,n);break;case"rect":e=V(s,t,n);break;case"heatcell":e=U(s,t,n);break;case"area":if(!1===s.interactive)break;e=Q(s,t,n);break;case"candlestick":e=K(s,t,n)}e&&o>e.distance&&(i&&e.distance>=i.distance||(i=e))}return i}(i.scene,o,r,30,i.quadtree);if(!a)return void(Wt.current&&(Wt.current=null,It.current=null,$t(null),_e&&_e(null),Jt()));const s=a.datum||{},l=Object.assign(Object.assign({},"object"!=typeof s||null===s||Array.isArray(s)?{}:s),{data:s,time:a.x,value:a.y,x:a.x,y:a.y});Wt.current=l,It.current=a.node,$t(l),_e&&(_e(l),Dt.current=!0),Jt()},an.current=()=>{Wt.current&&(Wt.current=null,It.current=null,$t(null),_e&&(_e(null),Dt.current=!0),Jt())},e.useCallback(e=>rn.current(e),[]);const sn=e.useCallback(()=>an.current(),[]),ln=e.useRef(-1),cn=e.useCallback(e=>{const t=Zt.current;if(!t||0===t.scene.length)return;const n=function(e){const t=[];for(const n of e)switch(n.type){case"point":t.push({x:n.x,y:n.y,datum:n.datum});break;case"line":{const e=n,o=Array.isArray(e.datum)?e.datum:[];for(let n=0;e.path.length>n&&o.length>n;n++)t.push({x:e.path[n][0],y:e.path[n][1],datum:o[n]});break}case"area":{const e=n,o=Array.isArray(e.datum)?e.datum:[];for(let n=0;e.topPath.length>n&&o.length>n;n++)t.push({x:e.topPath[n][0],y:e.topPath[n][1],datum:o[n]});break}case"rect":case"heatcell":t.push({x:n.x+n.w/2,y:n.y+n.h/2,datum:n.datum})}return t.sort((e,t)=>e.x-t.x||e.y-t.y),t}(t.scene);if(0===n.length)return;const o=0>ln.current?-1:ln.current,r=J(e.key,0>o?-1:o,n.length);if(null===r)return;if(e.preventDefault(),0>r)return ln.current=-1,Wt.current=null,It.current=null,$t(null),_e&&_e(null),void Jt();const i=0>o?0:r;ln.current=i;const a=ee(n[i]);Wt.current=a,$t(a),_e&&_e(a),Jt()},[_e,Jt]),un=e.useCallback(e=>{ln.current=-1,rn.current(e)},[]);Ut.current=()=>{var e,t;_t.current=0;const n=Lt.current,o=jt.current;if(!n||!o)return;const r=Zt.current;if(!r)return;const i="undefined"!=typeof performance?performance.now():Date.now(),a=r.advanceTransition(i),s=Dt.current||a;s&&!a&&r.computeScene({width:Et,height:Mt});const l=Ge(),c=function(e){if(!e)return dt;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||dt.axisStroke,tickText:i||dt.tickText,crosshair:i?i+"66":dt.crosshair,hoverFill:l?l+"4D":dt.hoverFill,hoverStroke:i?i+"99":dt.hoverStroke,pointRing:l||dt.pointRing}:dt}(n),u=null!==(e=null==it?void 0:it.threshold)&&void 0!==e?e:5e3,d=it&&r.lastIngestTime>0&&i-r.lastIngestTime>u;if(s){const e=Fe(n,At,St,l);if(e){e.clearRect(-St.left,-St.top,At[0],At[1]),d&&(e.globalAlpha=null!==(t=null==it?void 0:it.dimOpacity)&&void 0!==t?t:.5);const o=getComputedStyle(n).getPropertyValue("--semiotic-bg").trim(),i=F||(o&&"transparent"!==o?o:null);if(i&&(e.fillStyle=i,e.fillRect(-St.left,-St.top,At[0],At[1])),e.save(),"function"==typeof e.rect&&(e.beginPath(),e.rect(0,0,Et,Mt),e.clip()),Ke&&r.scales)for(const t of Ke)e.save(),t(e,r.scene,r.scales,{width:Et,height:Mt}),e.restore();const a=ct[h];if(a&&r.scales)for(const t of a)t(e,r.scene,r.scales,{width:Et,height:Mt});e.restore(),d&&(e.globalAlpha=1)}}{const e=Fe(o,At,St,l);if(e&&(e.clearRect(-St.left,-St.top,At[0],At[1]),Pt&&Wt.current&&r.scales&&function(e,t,n,o,r,i,a){var s;if(!1===r.crosshair)return;e.save();const l="object"==typeof r.crosshair?r.crosshair:{};e.strokeStyle=l.stroke||a.crosshair,e.lineWidth=l.strokeWidth||1,e.setLineDash(l.strokeDasharray?l.strokeDasharray.split(/[\s,]+/).map(Number):[4,4]),e.beginPath(),e.moveTo(t.x,0),e.lineTo(t.x,o),e.stroke(),e.beginPath(),e.moveTo(0,t.y),e.lineTo(n,t.y),e.stroke(),e.restore();let c="";try{(null===(s=e.canvas)||void 0===s?void 0:s.parentElement)&&(c=getComputedStyle(e.canvas).getPropertyValue("--semiotic-primary").trim())}catch(e){}const u=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)||c||"#007bff";e.beginPath(),e.arc(t.x,t.y,4,0,2*Math.PI),e.fillStyle=u,e.fill(),e.strokeStyle=a.pointRing,e.lineWidth=2,e.stroke()}(e,Wt.current,Et,Mt,"object"==typeof Pt?Pt:{},It.current,c),It.current&&Array.isArray(Me))){const t=Me.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,It.current,t)}}s&&n&&n.setAttribute("aria-label",je(r.scene,h+" chart"));const g=Dt.current;if(Dt.current=!1,g&&r.scales&&((!Tt||Tt.x.domain()[0]!==r.scales.x.domain()[0]||Tt.x.domain()[1]!==r.scales.x.domain()[1]||Tt.y.domain()[0]!==r.scales.y.domain()[0]||Tt.y.domain()[1]!==r.scales.y.domain()[1]||Tt.x.range()[0]!==r.scales.x.range()[0]||Tt.x.range()[1]!==r.scales.x.range()[1]||Tt.y.range()[0]!==r.scales.y.range()[0]||Tt.y.range()[1]!==r.scales.y.range()[1])&&Rt(r.scales),mt)){const e=r.getData(),t="function"==typeof b?b:e=>e[b||"x"],n="function"==typeof x?x:e=>e[x||"y"];Yt(e.map(e=>t(e)).filter(e=>"number"==typeof e&&isFinite(e))),Vt(e.map(e=>n(e)).filter(e=>"number"==typeof e&&isFinite(e)))}g&&He&&He.length>0&&Ht(e=>e+1),(null==it?void 0:it.showBadge)&&Gt(!!d),(a||r.hasActivePulses)&&(_t.current=requestAnimationFrame(()=>Ut.current()))},e.useEffect(()=>(Jt(),()=>{_t.current&&(cancelAnimationFrame(_t.current),_t.current=0)}),[Jt]),e.useEffect(()=>{Dt.current=!0,Jt()},[h,Et,Mt,ye,F,G,Ke,Jt]),ne(it,Zt,Dt,Jt,Ft,Gt);const dn=e.useMemo(()=>{if(ke||Se)return;const e=Zt.current;return(null==e?void 0:e.xIsDate)&&Tt?lt(Tt.x.domain()):void 0},[ke,Se,Tt]),hn=ke||Se||dn,gn=Pt&&zt?Le?Le(zt):p.createElement(gt,{hover:zt}):null,fn=gn?p.createElement("div",{className:"stream-frame-tooltip",style:{position:"absolute",left:St.left+zt.x,top:St.top+zt.y,transform:`translate(${zt.x>.7*Et?"calc(-100% - 12px)":"12px"}, ${.3*Mt>zt.y?"4px":"calc(-100% - 4px)"})`,pointerEvents:"none",zIndex:1,width:"max-content"}},gn):null,pn=ln.current>=0&&zt?p.createElement("svg",{style:{position:"absolute",left:0,top:0,width:At[0],height:At[1],pointerEvents:"none",zIndex:2}},p.createElement("circle",{cx:zt.x+St.left,cy:zt.y+St.top,r:8,fill:"none",stroke:"var(--accent, #6366f1)",strokeWidth:2,strokeDasharray:"4,2"})):null;if(Pe){const e=Zt.current;e&&f&&(e.ingest({inserts:f,bounded:!0}),e.computeScene({width:Et,height:Mt}));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 lt(n.x.domain())})();return p.createElement("div",{className:"stream-xy-frame"+(z?" "+z:""),role:"img","aria-label":"string"==typeof Ze?Ze:"XY chart",style:{position:"relative",width:At[0],height:At[1]}},p.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:At[0],height:At[1],style:{position:"absolute",left:0,top:0}},Ct,p.createElement("g",{transform:`translate(${St.left},${St.top})`},F&&p.createElement("rect",{x:0,y:0,width:Et,height:Mt,fill:F}),Qe&&n&&Qe.map((e,o)=>p.createElement(p.Fragment,{key:"svgpre-"+o},e(t,n,{width:Et,height:Mt}))),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:Ce(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:Ce(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:Ce(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(Oe,{width:Et,height:Mt,totalWidth:At[0],totalHeight:At[1],margin:St,scales:n,showAxes:ye,axes:me,xLabel:ve,yLabel:be,yLabelRight:xe,xFormat:i,yFormat:we||Ee,showGrid:Re,title:Ze,legend:We,legendHoverBehavior:Ie,legendClickBehavior:ze,legendHighlightedCategory:qe,legendIsolatedCategories:Ye,legendPosition:Xe,foregroundGraphics:Ot,marginalGraphics:mt,xValues:[],yValues:[],annotations:He,svgAnnotationRules:Te,annotationFrame:0,xAccessor:"string"==typeof b?b:"string"==typeof _?_:void 0,yAccessor:"string"==typeof x?x:"string"==typeof C?C:void 0,annotationData:null==e?void 0:e.getData(),pointNodes:null==e?void 0:e.scene.filter(e=>"point"===e.type),curve:"string"==typeof E?E:void 0}))}return p.createElement("div",{ref:wt,className:"stream-xy-frame"+(z?" "+z:""),role:"img","aria-label":"string"==typeof Ze?Ze:"XY chart",tabIndex:0,style:{position:"relative",width:R?"100%":At[0],height:W?"100%":At[1],overflow:"visible"},onMouseMove:Pt?un:void 0,onMouseLeave:Pt?sn:void 0,onKeyDown:cn},Ct&&p.createElement("svg",{style:{position:"absolute",left:0,top:0,width:At[0],height:At[1],pointerEvents:"none"}},Ct),p.createElement(Ae,{width:Et,height:Mt,totalWidth:At[0],totalHeight:At[1],margin:St,scales:Tt,showAxes:ye,axes:me,showGrid:Re,xFormat:hn,yFormat:we||Ee}),p.createElement("canvas",{ref:Lt,"aria-label":je(null!==(a=null===(i=Zt.current)||void 0===i?void 0:i.scene)&&void 0!==a?a:[],h+" chart"),style:{position:"absolute",left:0,top:0}}),p.createElement("canvas",{ref:jt,style:{position:"absolute",left:0,top:0,pointerEvents:"none"}}),p.createElement(Be,{hoverPoint:zt}),kt&&p.createElement(De,{scene:null!==(l=null===(s=Zt.current)||void 0===s?void 0:s.scene)&&void 0!==l?l:[],chartType:h+" chart"}),p.createElement(Oe,{width:Et,height:Mt,totalWidth:At[0],totalHeight:At[1],margin:St,scales:Tt,showAxes:ye,axes:me,xLabel:ve,yLabel:be,yLabelRight:xe,xFormat:hn,yFormat:we||Ee,showGrid:Re,title:Ze,legend:We,legendHoverBehavior:Ie,legendClickBehavior:ze,legendHighlightedCategory:qe,legendIsolatedCategories:Ye,legendPosition:Xe,foregroundGraphics:Ot,marginalGraphics:mt,xValues:qt,yValues:Xt,annotations:He,svgAnnotationRules:Te,annotationFrame:Bt,xAccessor:"string"==typeof b?b:"string"==typeof _?_:void 0,yAccessor:"string"==typeof x?x:"string"==typeof C?C:void 0,annotationData:null===(c=Zt.current)||void 0===c?void 0:c.getData(),pointNodes:null===(u=Zt.current)||void 0===u?void 0:u.scene.filter(e=>"point"===e.type),curve:"string"==typeof E?E:void 0,underlayRendered:!0}),(et||tt)&&p.createElement(ft,{width:Et,height:Mt,totalWidth:At[0],totalHeight:At[1],margin:St,dimension:null!==(d=null==et?void 0:et.dimension)&&void 0!==d?d:"xy",scales:Tt,onBrush:null!=tt?tt:()=>{}}),(null==it?void 0:it.showBadge)&&p.createElement("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===it.badgePosition?{top:4,left:4}:"bottom-left"===it.badgePosition?{bottom:4,left:4}:"bottom-right"===it.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{padding:"2px 8px",borderRadius:4,fontSize:11,fontWeight:600,pointerEvents:"none",background:Ft?"#dc3545":"#28a745",color:"white"})},Ft?"STALE":"LIVE"),pn,fn)});pt.displayName="StreamXYFrame";const yt=e.createContext(null);function mt({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:L[o]||j,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(yt.Provider,{value:i},r)}function vt(){return e.useContext(yt)}function bt(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 xt(e,t){const n=[];for(const[o,r]of e.clauses)"crossfilter"===e.resolution&&o===t||n.push(bt(r));return 0===n.length?()=>!0:"intersect"===e.resolution?e=>n.every(t=>t(e)):e=>n.some(t=>t(e))}function kt(e,t){let n=e.get(t);return n||(n={name:t,resolution:"union",clauses:new Map},e.set(t,n)),n}mt.displayName="CategoryColorProvider";const[wt,At]=He(e=>({selections:new Map,setClause(t,n){e(e=>{const o=new Map(e.selections),r=kt(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=kt(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}})}})),[St,Et]=He(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 Mt(t){const n=e.useId(),o=t.clientId||n,{name:r}=t,i=At(e=>e.selections.get(r)),a=At(e=>e.setClause),s=At(e=>e.clearClause),l=e.useMemo(()=>!!i&&i.clauses.size>0,[i]);return{predicate:e.useMemo(()=>i&&0!==i.clauses.size?xt(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 Ot(t){const n=t.name||"hover",{fields:o}=t,{predicate:r,isActive:i,selectPoints:a,clear:s}=Mt({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 Ct(t){const{name:n,xField:o,yField:r}=t,{predicate:i,isActive:a,selectInterval:s,clear:l}=Mt({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 Pt(t={}){const{limit:n=50,types:o,chartId:r}=t,i=Et(e=>e.version),a=Et(e=>e.observations),s=Et(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 Lt=e.createContext(!1);function jt({selections:t}){const n=At(e=>e.setResolution);return e.useEffect(()=>{for(const[e,o]of Object.entries(t))o.resolution&&n(e,o.resolution)},[t,n]),null}function _t({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=Ot({name:o,fields:[r]}),c=Mt({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]);return p.createElement("svg",{width:"100%",height:30,style:{display:"block",overflow:"visible"}},p.createElement(le,{legendGroups:s,title:!1,orientation:"horizontal",height:20,customHoverBehavior:"highlight"===n?m:void 0,customClickBehavior:"isolate"===n?v:void 0,highlightedCategory:h,isolatedCategories:u}))}function Dt({children:e,selections:t,showLegend:n,legendPosition:o="top",legendInteraction:r="none",legendSelectionName:i="legend",legendField:a="category"}){const s=vt(),l=void 0!==n?n:!(!s||0>=Object.keys(s).length);return p.createElement(wt,null,p.createElement(St,null,t&&p.createElement(jt,{selections:t}),p.createElement(Lt.Provider,{value:l},l&&"top"===o&&s&&p.createElement(_t,{categoryColors:s,interaction:r,selectionName:i,field:a}),e,l&&"bottom"===o&&s&&p.createElement(_t,{categoryColors:s,interaction:r,selectionName:i,field:a}))))}function Nt({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):_[i%_.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 Bt(e){return e?"string"==typeof e?{name:e}:e:null}function Ht(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:.2;i.opacity=e,i.fillOpacity=e,i.strokeOpacity=e,(null==n?void 0:n.unselectedStyle)&&Object.assign(i,n.unselectedStyle)}return i}:e}const Tt={light:Re,dark:We,"high-contrast":Ie,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"},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"},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"},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"},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"},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"},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"},typography:{fontFamily:"Georgia, 'Times New Roman', serif",titleSize:16,labelSize:12,tickSize:10},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"},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"},typography:{fontFamily:"'Franklin Gothic Medium', 'Libre Franklin', Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},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"},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"},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"},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"}};function Rt(e){return Tt[e]}const Wt=p.createContext(void 0);function It({theme:e}){const t=$e(e=>e.setTheme);return p.useEffect(()=>{if(void 0!==e)if("string"==typeof e){const n=Rt(e);t(n||e)}else t(e)},[e,t]),null}function zt({children:e}){var t,n,o,r,i;const a=$e(e=>e.theme),s=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}:{}),l=p.useContext(Wt),c={};return l&&(c["data-semiotic-theme"]=l),p.createElement("div",Object.assign({style:s},c),e)}function $t(){return $e(e=>e.theme)}const Ft="#007bff";function Gt(){var e;const t=$t(),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 qt(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=L[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]:Ft}function Yt(e){return"function"==typeof e?e:t=>t[e]}function Xt(t,n,o="category10"){const r=vt();return e.useMemo(()=>{if(n){if(0===t.length)return r&&Object.keys(r).length>0?e=>r[e]||"#999":void 0;if("function"==typeof n){const e=Array.from(new Set(t.map(e=>n(e)+"")));return r&&Object.keys(r).length>0?e=>r[e]||"#999":H(e.map(e=>({_cat:e})),"_cat",o)}if(r&&Object.keys(r).length>0){const e=H(t,n,o);return t=>r[t]||e(t)}return H(t,n,o)}},[t,n,o,r])}function Vt(t,n,o){return e.useMemo(()=>{if(!n)return t;const e=[...t];if("function"==typeof n)return e.sort(n);const r=Yt(o);return e.sort("asc"===n?(e,t)=>r(e)-r(t):(e,t)=>r(t)-r(e))},[t,n,o])}function Ut({selection:t,linkedHover:n,fallbackFields:o=[],unwrapData:r=!1,onObservation:i,chartType:a,chartId:s}){const l=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}:null}(n,o),c=Mt({name:(null==t?void 0:t.name)||"__unused__"}),u=Ot({name:(null==l?void 0:l.name)||"hover",fields:(null==l?void 0:l.fields)||o||[]}),d=Et(e=>e.pushObservation),h=t?{isActive:c.isActive,predicate:c.predicate}:null,g=e.useCallback(e=>{var t,o;if(n)if(e){let t=e.data||e.datum||e;Array.isArray(t)&&(t=t[0]),u.onHover(t)}else u.onHover(null);if(i||d){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),d&&d(a)}else{const e=Object.assign(Object.assign({},n),{type:"hover-end"});i&&i(e),d&&d(e)}}},[n,u,i,a,s,d]),f=e.useCallback(e=>{var t,n;if(i||d){const o={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({},o),{type:"click",datum:r||{},x:null!==(t=e.x)&&void 0!==t?t:0,y:null!==(n=e.y)&&void 0!==n?n:0});i&&i(a),d&&d(a)}else{const e=Object.assign(Object.assign({},o),{type:"click-end"});i&&i(e),d&&d(e)}}},[i,d,a,s]);return{activeSelectionHook:h,customHoverBehavior:g,customClickBehavior:f}}function Kt({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(Lt),u=void 0!==r?r:!c&&!!n,d=e.useMemo(()=>{if(u&&n)return Nt({data:t,colorBy:n,colorScale:o,getColor:B,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 Qt(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 Zt={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 Jt(e,t,n){var o,r,i,a,s,l;const c=Zt[e||"primary"],u="context"===e||"sparkline"===e;return{width:null!==(o=t.width)&&void 0!==o?o:e&&"primary"!==e||!(null==n?void 0:n.width)?c.width:n.width,height:null!==(r=t.height)&&void 0!==r?r:e&&"primary"!==e||!(null==n?void 0:n.height)?c.height:n.height,showAxes:c.showAxes,showGrid:null!==(i=t.showGrid)&&void 0!==i?i:c.showGrid,enableHover:null!==(a=t.enableHover)&&void 0!==a?a:!!t.linkedHover||c.enableHover,showLegend:null!==(s=t.showLegend)&&void 0!==s?s:c.showLegend,showLabels:null!==(l=t.showLabels)&&void 0!==l?l:c.showLabels,title:u?void 0:t.title,xLabel:u?void 0:t.xLabel,yLabel:u?void 0:t.yLabel,categoryLabel:u?void 0:t.categoryLabel,valueLabel:u?void 0:t.valueLabel,marginDefaults:en(c.marginDefaults,t.showCategoryTicks,t.orientation)}}function en(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 tn={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 nn(e,t){return"function"==typeof t?t(e):e[t]}function on(e,t){return t?t(e):null==e?"":"number"==typeof e?Math.abs(e)>9999?e.toLocaleString():e+"":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 rn(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=nn(e,n);a=on(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=nn(e,r);s.push({label:n,value:on(a,i)})});else if(!n){const t=["value","y","name","id","label"];for(const n of t)if(void 0!==e[n]){a=on(e[n],o);break}if(!a){const t=Object.keys(e).filter(e=>!e.startsWith("_"));t.length>0&&(a=on(e[t[0]],o))}}const l=Object.assign(Object.assign({},tn),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 an(e){if(!0===e)return rn();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:tn},n)}}return!1!==e&&void 0!==e&&("object"==typeof e&&null!==e&&("fields"in e||"title"in e)?rn(e):rn())}function sn(e){return"string"==typeof e?e:"value"}function ln(e){return null==e?"–":"number"==typeof e?Math.abs(e)>9999?e.toLocaleString():e+"":e instanceof Date?e.toLocaleDateString():e+""}function cn(e,t){return"function"==typeof t?t(e):e[t]}function un(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?ln(cn(o,t.accessor)):null;return p.createElement("div",{className:"semiotic-tooltip",style:tn},r&&p.createElement("div",{style:{fontWeight:"bold",marginBottom:n.length>0?4:0}},r),n.map((e,t)=>{const n=ln(cn(o,e.accessor));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 dn({categoryAccessor:e,valueAccessor:t,groupAccessor:n,groupLabel:o,pieData:r=!1}){return i=>{var a;const s=r?(null===(a=i.data)||void 0===a?void 0:a[0])||i.data||i:i.data||i,l=cn(s,e),c=cn(s,t),u=n?cn(s,n):void 0;return p.createElement("div",{className:"semiotic-tooltip",style:tn},p.createElement("div",{style:{fontWeight:"bold"}},ln(l)),p.createElement("div",{style:{marginTop:4}},ln(c)),null!=u&&p.createElement("div",{style:{marginTop:2,opacity:.8}},o||sn(n),": ",ln(u)))}}function hn({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 gn 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(hn,{componentName:"ChartErrorBoundary",message:t.message||"An unexpected error occurred while rendering this chart.",width:600,height:400})}return this.props.children}}function fn(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 pn(e,t,n=3){let o,r=n+1;for(const n of t){const t=fn(e.toLowerCase(),n.toLowerCase());r>t&&(r=t,o=n)}return r>n?void 0:o}function yn(e){return e.length>3?[e[0],e[Math.floor(e.length/2)],e[e.length-1]]:e}function mn(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=pn(e,t,3))&&void 0!==n?n:null)}function vn({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=yn(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=mn(i,t),o=n?` Try ${r}="${n}".`:"";return`${e}: ${r} "${i}" not found in data. Available fields: ${t.join(", ")}.${o}`}}}return null}function bn({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 xn({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=yn(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=mn(r,t),i=n?` Try ${o}="${n}".`:"";return`${e}: ${o} "${r}" not found in node data. Available fields: ${t.join(", ")}.${i}`}}}return null}const kn={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"}},wn={xLabel:{type:"string"},yLabel:{type:"string"},xFormat:{type:"function"},yFormat:{type:"function"}},An={categoryLabel:{type:"string"},valueLabel:{type:"string"},valueFormat:{type:"function"}},Sn=["linear","monotoneX","monotoneY","step","stepAfter","stepBefore","basis","cardinal","catmullRom"],En=["vertical","horizontal"],Mn={LineChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),wn),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},lineBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:Sn},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({},kn),wn),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},areaBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:Sn},areaOpacity:{type:"number"},showLine:{type:"boolean"},lineWidth:{type:"number"}})},StackedAreaChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),wn),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},areaBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:Sn},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({},kn),wn),{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({},kn),wn),{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({},kn),wn),{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({},kn),wn),{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({},kn),wn),{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({},kn),wn),{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({},kn),An),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:En},sort:{type:["boolean","string","function"]},barPadding:{type:"number"}})},StackedBarChart:{required:["data","stackBy"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),An),{data:{type:"array"},categoryAccessor:{type:["string","function"]},stackBy:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:En},normalize:{type:"boolean"},barPadding:{type:"number"}})},GroupedBarChart:{required:["data","groupBy"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),An),{data:{type:"array"},categoryAccessor:{type:["string","function"]},groupBy:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:En},barPadding:{type:"number"}})},SwarmPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),An),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:En},sizeBy:{type:["string","function"]},sizeRange:{type:"array"},pointRadius:{type:"number"},pointOpacity:{type:"number"},categoryPadding:{type:"number"}})},BoxPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),An),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:En},showOutliers:{type:"boolean"},outlierRadius:{type:"number"},categoryPadding:{type:"number"}})},Histogram:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),An),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},bins:{type:"number"},relative:{type:"boolean"},categoryPadding:{type:"number"}})},ViolinPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),An),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:En},bins:{type:"number"},curve:{type:"string"},showIQR:{type:"boolean"},categoryPadding:{type:"number"}})},RidgelinePlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),An),{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({},kn),An),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:En},sort:{type:["boolean","string","function"]},dotRadius:{type:"number"},categoryPadding:{type:"number"}})},PieChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign({},kn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},startAngle:{type:"number"},slicePadding:{type:"number"}})},DonutChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign({},kn),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},innerRadius:{type:"number"},centerContent:{type:["object","string","number"]},startAngle:{type:"number"},slicePadding:{type:"number"}})},FunnelChart:{required:["data"],dataShape:"array",dataAccessors:["stepAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},kn),An),{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"]}})},ForceDirectedGraph:{required:["nodes","edges"],dataShape:"network",dataAccessors:["nodeIDAccessor","sourceAccessor","targetAccessor"],props:Object.assign(Object.assign({},kn),{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({},kn),{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:En},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({},kn),{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({},kn),{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({},kn),{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({},kn),{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({},kn),{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"},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"}}}};function On(e,t){return(Array.isArray(t)?t:[t]).includes(Array.isArray(e)?"array":typeof e)}function Cn(e,t){const n=[],o=Mn[e];if(!o)return{valid:!1,errors:[`Unknown component "${e}". Valid components: ${Object.keys(Mn).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(!On(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=pn(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=vn({componentName:e,data:r,accessors:Object.keys(i).length>0?i:void 0});a&&n.push(a)}else if("object"===o.dataShape){const o=bn({componentName:e,data:t.data});o&&n.push(o)}else if("network"===o.dataShape){const r=xn({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 Pn=new Set(["TreeDiagram","Treemap","CirclePack","OrbitDiagram"]),Ln=new Set(["ForceDirectedGraph","SankeyDiagram","ChordDiagram"]),jn=new Set(["BarChart","StackedBarChart","GroupedBarChart","AreaChart","StackedAreaChart"]),_n=new Set(["LineChart","AreaChart","StackedAreaChart"]),Dn=new Set(["BarChart","StackedBarChart","GroupedBarChart","FunnelChart"]);function Nn(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 Bn(e,t){const n=Nn(e),o=Nn(t);return null===n||null===o?null:(Math.max(n,o)+.05)/(Math.min(n,o)+.05)}const Hn=["xAccessor","yAccessor","timeAccessor","valueAccessor","categoryAccessor","colorBy","sizeBy","lineBy","areaBy","stackBy","groupBy","orderAccessor","y0Accessor","sourceAccessor","targetAccessor","nodeIDAccessor","childrenAccessor","costAccessor"];function Tn(e,t){const n=[],o=Cn(e,t);for(const e of o.errors)n.push({severity:"error",code:"VALIDATION",message:e,fix:""});return Mn[e]?(function(e,t,n){const o=Mn[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=Mn[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){Pn.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){Ln.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=Mn[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(!jn.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(!_n.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=Mn[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(!Dn.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=Bn(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=[];for(const e of Hn)"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 Rn;const Wn="undefined"!=typeof process&&"production"!==(null===(Rn=process.env)||void 0===Rn?void 0:Rn.NODE_ENV);function In({componentName:e,width:t,height:n,chartProps:o,children:r}){return p.createElement(gn,{fallback:r=>{let i="";if(Wn&&o)try{const t=Tn(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(hn,{componentName:e,message:r.message,diagnosticHint:i,width:t,height:n})}},r)}const zn={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"},$n={background:"var(--semiotic-border, #e0e0e0)",borderRadius:2};function Fn(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({},zn),{width:t,height:n})},o||"No data available"):null}function Gn(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({},$n),{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 qn(e,t,n,o){if(!Wn)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 Yn(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 Xn="__forecastSegment";let Vn=null;function Un(){return Yn(this,void 0,void 0,function*(){return Vn||(Vn=yield Promise.resolve().then(function(){return Ba})),Vn})}const Kn=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)},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:[]}}));const a=Jt(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:s,margin:l,className:c,xFormat:u,yFormat:d,xAccessor:h="x",yAccessor:g="y",lineBy:f,lineDataAccessor:y="coordinates",colorBy:m,colorScheme:v="category10",curve:b="linear",showPoints:x=!1,pointRadius:k=3,fillArea:w=!1,areaOpacity:A=.3,lineWidth:S=2,tooltip:E,pointIdAccessor:M,annotations:O,directLabel:C,gapStrategy:P="break",anomaly:L,forecast:j,frameProps:_={},selection:D,linkedHover:N,onObservation:H,chartId:T,loading:R,emptyContent:W,legendInteraction:I,legendPosition:z,xScaleType:$,yScaleType:F}=t,G=a.width,q=a.height,Y=a.enableHover,X=a.showGrid,V=a.showLegend,U=a.title,K=a.xLabel,Q=a.yLabel,Z=Gn(R,G,q),J=Z?null:Fn(s,G,q,W),ee=s||[];qn("LineChart",ee,"xAccessor",h),qn("LineChart",ee,"yAccessor",g);const te="string"==typeof h?h:"__semiotic_resolvedX",ne="string"==typeof g?g:"__semiotic_resolvedY",[oe,re]=e.useState(null),[ie,ae]=e.useState([]),se=e.useMemo(()=>{if(!j&&!L)return ee;const e="function"==typeof h,t="function"==typeof g;return e||t?ee.map(n=>{const o=Object.assign({},n);return e&&(o.__semiotic_resolvedX=h(n)),t&&(o.__semiotic_resolvedY=g(n)),o}):ee},[ee,j,L,h,g]);e.useEffect(()=>{if(!j&&!L)return;let e=!1;if(re(null),ae([]),j){const t=f&&"string"==typeof f&&"object"==typeof j?Object.assign(Object.assign({},j),{_groupBy:f}):j;(function(...e){return Yn(this,void 0,void 0,function*(){return(yield Un()).buildForecast(...e)})})(se,te,ne,t,L).then(t=>{e||(re(t),ae(t.annotations))}).catch(()=>{e||(re(null),ae([]))})}else L&&function(...e){return Yn(this,void 0,void 0,function*(){return(yield Un()).buildAnomalyAnnotations(...e)})}(L).then(t=>{e||(re(null),ae(t))}).catch(()=>{e||ae([])});return()=>{e=!0}},[se,j,L,te,ne]);const le=oe?oe.processedData:ee,ce="__compoundGroup",ue=!(!j||!f),de=ue?ce:j?Xn:f,he=e.useMemo(()=>{if(!ue)return le;const e="function"==typeof f?f:e=>e[f];return le.map(t=>{const n=Object.assign({},t);return n[ce]=`${e(t)}__${t[Xn]||"observed"}`,n})},[le,ue,f]),ge=ue?he:le,fe=e.useMemo(()=>{if(!j)return;const e=j.upperBounds,t=j.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=oe?oe.processedData:ee;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},[j,oe,ee,g]),{activeSelectionHook:pe,customHoverBehavior:ye}=Ut({selection:D,linkedHover:N,fallbackFields:m?["string"==typeof m?m:""]:[],onObservation:H,chartType:"LineChart",chartId:T}),me=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]),ve=void 0!==(null===(o=ge[0])||void 0===o?void 0:o[y]),be=e.useMemo(()=>{if(ve)return ge;if(de){const e=ge.reduce((e,t)=>{const n="function"==typeof de?de(t):t[de];if(!e[n]){const o={[y]:[]};"string"==typeof de&&(o[de]=n),ue&&(o[Xn]=t[Xn],"string"==typeof f&&(o[f]=t[f])),e[n]=o}return e[n][y].push(t),e},{});return Object.values(e)}return[{[y]:ge}]},[ge,de,y,ve]),{gapProcessedLineData:xe,hasGaps:ke}=e.useMemo(()=>{if("interpolate"===P){let e=!1;const t=[];for(const n of be){const o=(n[y]||[]).filter(t=>!me(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 be){const o=n[y]||[];let r=[],i=0;const a=de&&"string"==typeof de?n[de]:void 0;for(const s of o)if(me(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 be){const r=o[y]||[],i=[];for(const n of r)me(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:be,hasGaps:!1}},[be,P,y,me,de,g]),we=Xt(le,m,v),Ae=e.useMemo(()=>{if(!m)return[];const e=new Set;for(const t of le){const n="function"==typeof m?m(t):t[m];null!=n&&e.add(n+"")}return Array.from(e)},[le,m]),Se=Qt(I,m,Ae),Ee=e.useMemo(()=>Se.legendSelectionHook?Se.legendSelectionHook:pe,[Se.legendSelectionHook,pe]),Me=e.useMemo(()=>e=>{const t={strokeWidth:S};return m?we&&(t.stroke=B(e,m,we),w&&(t.fill=t.stroke,t.fillOpacity=A)):(t.stroke=Ft,w&&(t.fill=Ft,t.fillOpacity=A)),t},[m,we,S,w,A]),[Oe,Ce]=e.useState(null);e.useEffect(()=>{if(!j)return void Ce(null);let e=!1;return function(...e){return Yn(this,void 0,void 0,function*(){return(yield Un()).createSegmentLineStyle(...e)})}(Me,j).then(t=>{e||Ce(()=>t)}).catch(()=>{e||Ce(null)}),()=>{e=!0}},[Me,j]);const Pe=Oe||Me,Le=e.useMemo(()=>Ht(Pe,Ee,D),[Pe,Ee,D]),je=e.useMemo(()=>{if(x)return e=>{const t={r:k,fillOpacity:1};return m?we&&(t.fill=B(e.parentLine||e,m,we)):t.fill=Ft,t}},[x,k,m,we]),_e=w?"area":"line",De="object"==typeof C?C:{},Ne=De.position||"end",Be=De.fontSize||11,He=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 xe){const o=n[y]||[];if(0===o.length)continue;const a="end"===Ne?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"===Ne?6:-6,dy:0,color:we?we(e):Ft,fontSize:Be}));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];Be+2>Math.abs(o[t]+o.dy-(n[t]+n.dy))&&(o.dy+=Be+2)}return a},[C,m,we,xe,y,h,g,Ne,Be]),Te=(!C||void 0!==V)&&V,Re=e.useMemo(()=>{if(!C)return a.marginDefaults;const e=He.reduce((e,t)=>{var n;const o=((null===(n=t.label)||void 0===n?void 0:n.length)||0)*(.6*Be);return Math.max(e,o)},0),t=e+10,n="end"===Ne?"right":"left";return Object.assign(Object.assign({},a.marginDefaults),{[n]:Math.max(a.marginDefaults[n]||0,t)})},[C,He,Be,Ne,a.marginDefaults]),{legend:We,margin:Ie,legendPosition:ze}=Kt({data:xe,colorBy:m,colorScale:we,showLegend:Te,legendPosition:z,userMargin:l,defaults:Re}),$e=f||m,Fe=e.useMemo(()=>un([{label:K||sn(h),accessor:h,role:"x"},{label:Q||sn(g),accessor:g,role:"y"},...$e?[{label:sn($e),accessor:$e,role:"group"}]:[]]),[h,g,K,Q,$e]),Ge=vn({componentName:"LineChart",data:ve?(null===(r=le[0])||void 0===r?void 0:r[y])||[]:s,accessors:{xAccessor:h,yAccessor:g}}),qe=e.useMemo(()=>ve||de||ke?xe.flatMap(e=>{const t=e[y]||[];return de&&"string"==typeof de?t.map(t=>Object.assign(Object.assign({},t),{[de]:e[de]})):t}):ge,[xe,y,ve,de,ge,ke]),Ye=Object.assign(Object.assign(Object.assign(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:_e},null!=s&&{data:qe}),{xAccessor:h,yAccessor:g,xScaleType:$,yScaleType:F}),fe&&{yExtent:fe}),{groupAccessor:"break"===P&&ke?"_gapSegment":de||void 0,curve:b,lineStyle:Le}),x&&{pointStyle:je}),{size:[G,q],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Ie,showAxes:a.showAxes,xLabel:K,yLabel:Q,xFormat:u,yFormat:d,enableHover:Y,showGrid:X}),We&&{legend:We,legendPosition:ze}),I&&"none"!==I&&{legendHoverBehavior:Se.onLegendHover,legendClickBehavior:Se.onLegendClick,legendHighlightedCategory:Se.highlightedCategory,legendIsolatedCategories:Se.isolatedCategories}),U&&{title:U}),c&&{className:c}),{tooltipContent:!1===E?()=>null:an(E)||Fe}),(N||H)&&{customHoverBehavior:ye}),M&&{pointIdAccessor:M}),((null==O?void 0:O.length)||ie.length||He.length)&&{annotations:[...O||[],...ie,...He]}),_);return Z||J||(Ge?p.createElement(hn,{componentName:"LineChart",message:Ge,width:G,height:q}):p.createElement(In,{componentName:"LineChart",width:G,height:q},p.createElement(pt,Object.assign({ref:i},Ye))))});Kn.displayName="LineChart";const Qn=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)},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:[]}}));const i=Jt(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="category10",curve:x="monotoneX",areaOpacity:k=.7,showLine:w=!0,lineWidth:A=2,tooltip:S,annotations:E,frameProps:M={},selection:O,linkedHover:C,onObservation:P,chartId:L,loading:j,emptyContent:_,legendInteraction:D,legendPosition:N}=t,H=i.width,T=i.height,R=i.enableHover,W=i.showGrid,I=i.showLegend,z=i.title,$=i.xLabel,F=i.yLabel,G=Gn(j,H,T),q=G?null:Fn(a,H,T,_),Y=a||[];qn("AreaChart",Y,"xAccessor",d),qn("AreaChart",Y,"yAccessor",h);const{activeSelectionHook:X,customHoverBehavior:V}=Ut({selection:O,linkedHover:C,fallbackFields:v?["string"==typeof v?v:""]:[],onObservation:P,chartType:"AreaChart",chartId:L}),U=void 0!==(null===(o=Y[0])||void 0===o?void 0:o[m]),K=e.useMemo(()=>{if(U)return Y;if(g){const e=Y.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]:Y}]},[Y,g,m,U]),Q=Xt(Y,v,b),Z=e.useMemo(()=>{if(!v)return[];const e=new Set;for(const t of Y){const n="function"==typeof v?v(t):t[v];null!=n&&e.add(n+"")}return Array.from(e)},[Y,v]),J=Qt(D,v,Z),ee=e.useMemo(()=>J.legendSelectionHook?J.legendSelectionHook:X,[J.legendSelectionHook,X]),te=e.useMemo(()=>e=>{const t={};if(v){if(Q){const n=B(e,v,Q);t.fill=n,w?(t.stroke=n,t.strokeWidth=A):t.stroke="none"}}else t.fill=Ft,w?(t.stroke=Ft,t.strokeWidth=A):t.stroke="none";return t.fillOpacity=k,t},[v,Q,k,w,A]),ne=e.useMemo(()=>Ht(te,ee,O),[te,ee,O]),{legend:oe,margin:re,legendPosition:ie}=Kt({data:K,colorBy:v,colorScale:Q,showLegend:I,legendPosition:N,userMargin:s,defaults:i.marginDefaults}),ae=g||v,se=e.useMemo(()=>un([{label:$||sn(d),accessor:d,role:"x"},{label:F||sn(h),accessor:h,role:"y"},...ae?[{label:sn(ae),accessor:ae,role:"group"}]:[]]),[d,h,$,F,ae]),le=vn({componentName:"AreaChart",data:a,accessors:{xAccessor:d,yAccessor:h}}),ce=e.useMemo(()=>U||g?K.flatMap(e=>{const t=e[m]||[];return g&&"string"==typeof g?t.map(t=>Object.assign(Object.assign({},t),{[g]:e[g]})):t}):Y,[K,m,U,g,Y]),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({chartType:"area"},null!=a&&{data:ce}),{xAccessor:d,yAccessor:h,groupAccessor:g||void 0}),f&&{y0Accessor:f}),y&&{gradientFill:y}),{curve:x,lineStyle:ne,size:[H,T],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:re,showAxes:i.showAxes,xLabel:$,yLabel:F,xFormat:c,yFormat:u,enableHover:R,showGrid:W}),oe&&{legend:oe,legendPosition:ie}),D&&"none"!==D&&{legendHoverBehavior:J.onLegendHover,legendClickBehavior:J.onLegendClick,legendHighlightedCategory:J.highlightedCategory,legendIsolatedCategories:J.isolatedCategories}),z&&{title:z}),l&&{className:l}),{tooltipContent:!1===S?()=>null:an(S)||se}),(C||P)&&{customHoverBehavior:V}),E&&E.length>0&&{annotations:E}),M);return G||q||(le?p.createElement(hn,{componentName:"AreaChart",message:le,width:H,height:T}):p.createElement(In,{componentName:"AreaChart",width:H,height:T},p.createElement(pt,Object.assign({ref:r},ue))))});function Zn({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:_,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 Nt({data:e.map(e=>({[l]:e})),colorBy:l,colorScale:e=>a.get(e)||"#999",getColor:B})},[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}}Qn.displayName="AreaChart";const Jn=e.forwardRef(function(t,n){var o;const r=e.useRef(null),i=Jt(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="category10",curve:v="monotoneX",areaOpacity:b=.7,showLine:x=!0,lineWidth:k=2,normalize:w=!1,tooltip:A,annotations:S,frameProps:E={},selection:M,linkedHover:O,onObservation:C,chartId:P,loading:L,emptyContent:j,legendInteraction:_,legendPosition:D}=t,N=i.width,H=i.height,T=i.enableHover,R=i.showGrid,W=i.showLegend,I=i.title,z=i.xLabel,$=i.yLabel,F=Gn(L,N,H),G=F?null:Fn(a,N,H,j),q=a||[],Y=Zn({isPushMode:void 0===a,colorBy:y||g,colorScheme:m,showLegend:W,legendPosition:D}),X=e.useCallback(Y.wrapPush(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)}),[Y.wrapPush]),V=e.useCallback(Y.wrapPushMany(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)}),[Y.wrapPushMany]);e.useImperativeHandle(n,()=>({push:X,pushMany:V,clear:()=>{var e;Y.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:[]}}),[X,V,Y.resetCategories]);const{activeSelectionHook:U,customHoverBehavior:K}=Ut({selection:M,linkedHover:O,fallbackFields:y?["string"==typeof y?y:""]:[],onObservation:C,chartType:"StackedAreaChart",chartId:P}),Q=void 0!==(null===(o=q[0])||void 0===o?void 0:o[f]),Z=e.useMemo(()=>{if(Q)return q;if(g){const e=q.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]:q}]},[q,g,f,Q]),J=Xt(q,y,m),ee=e.useMemo(()=>{if(!y)return[];const e=new Set;for(const t of q){const n="function"==typeof y?y(t):t[y];null!=n&&e.add(n+"")}return Array.from(e)},[q,y]),te=Qt(_,y,ee),ne=e.useMemo(()=>te.legendSelectionHook?te.legendSelectionHook:U,[te.legendSelectionHook,U]),oe=e.useMemo(()=>e=>{const t={};if(y&&J){const n=B(e,y,J);t.fill=n,x?(t.stroke=n,t.strokeWidth=k):t.stroke="none"}else y||(t.fill=Ft,t.stroke=x?Ft:"none",x&&(t.strokeWidth=k));return t.fillOpacity=b,t},[y,J,b,x,k]),re=e.useMemo(()=>Ht(oe,ne,M),[oe,ne,M]),{legend:ie,margin:ae,legendPosition:se}=Kt({data:Z,colorBy:y,colorScale:J,showLegend:W,legendPosition:D,userMargin:s,defaults:i.marginDefaults}),le=Y.streamingLegend||ie,ce=D||se,ue=e.useMemo(()=>{if(Y.streamingMarginAdjust){const e=Object.assign({},ae);for(const[t,n]of Object.entries(Y.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return ae},[ae,Y.streamingMarginAdjust]),de=g||y,he=e.useMemo(()=>un([{label:z||sn(d),accessor:d,role:"x"},{label:$||sn(h),accessor:h,role:"y"},...de?[{label:sn(de),accessor:de,role:"group"}]:[]]),[d,h,z,$,de]),ge=vn({componentName:"StackedAreaChart",data:a,accessors:{xAccessor:d,yAccessor:h}}),fe=e.useMemo(()=>Q||g?Z.flatMap(e=>{const t=e[f]||[];return g&&"string"==typeof g?t.map(t=>Object.assign(Object.assign({},t),{[g]:e[g]})):t}):q,[Z,f,Q,g,q]),pe=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:fe}),{xAccessor:d,yAccessor:h,groupAccessor:g||void 0,curve:v,normalize:w,lineStyle:re,size:[N,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ue,showAxes:i.showAxes,xLabel:z,yLabel:$,xFormat:c,yFormat:u,enableHover:T,showGrid:R}),le&&{legend:le,legendPosition:ce}),_&&"none"!==_&&{legendHoverBehavior:te.onLegendHover,legendClickBehavior:te.onLegendClick,legendHighlightedCategory:te.highlightedCategory,legendIsolatedCategories:te.isolatedCategories}),I&&{title:I}),l&&{className:l}),{tooltipContent:!1===A?()=>null:an(A)||he}),(O||C)&&{customHoverBehavior:K}),S&&S.length>0&&{annotations:S}),E);return F||G||(ge?p.createElement(hn,{componentName:"StackedAreaChart",message:ge,width:N,height:H}):p.createElement(In,{componentName:"StackedAreaChart",width:N,height:H},p.createElement(pt,Object.assign({ref:r},pe))))});function eo(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,loading:v,emptyContent:b,width:x,height:k}=t,{activeSelectionHook:w,customHoverBehavior:A,customClickBehavior:S}=Ut({selection:l,linkedHover:c,fallbackFields:u,unwrapData:d,onObservation:h,chartType:g,chartId:f}),E=Xt(n,r,i),M=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]),O=Qt(a,r,M),C=e.useMemo(()=>O.legendSelectionHook?O.legendSelectionHook:w,[O.legendSelectionHook,w]),{legend:P,margin:L,legendPosition:j}=Kt({data:n,colorBy:r,colorScale:E,showLegend:p,legendPosition:s,userMargin:y,defaults:m}),_=e.useMemo(()=>{const e={};return P&&(e.legend=P,e.legendPosition=j),a&&"none"!==a&&(e.legendHoverBehavior=O.onLegendHover,e.legendClickBehavior=O.onLegendClick,e.legendHighlightedCategory=O.highlightedCategory,e.legendIsolatedCategories=O.isolatedCategories),e},[P,j,a,O.onLegendHover,O.onLegendClick,O.highlightedCategory,O.isolatedCategories]),D=Gn(v,x,k),N=D?null:Fn(o,x,k,b);return{colorScale:E,allCategories:M,legendState:O,effectiveSelectionHook:C,activeSelectionHook:w,customHoverBehavior:A,customClickBehavior:S,legend:P,margin:L,legendPosition:j,earlyReturn:D||N||null,legendBehaviorProps:_}}Jn.displayName="StackedAreaChart";const to=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)},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:[]}}));const r=Jt(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="category10",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:E,linkedBrush:M,onObservation:O,chartId:C,loading:P,emptyContent:L,legendInteraction:j,legendPosition:_}=t,D=r.width,N=r.height,H=r.enableHover,R=r.showGrid,W=r.title,I=r.xLabel,z=r.yLabel,$=i||[],F=eo({data:$,rawData:i,colorBy:h,colorScheme:g,legendInteraction:j,legendPosition:_,selection:S,linkedHover:E,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!1,onObservation:O,chartType:"Scatterplot",chartId:C,showLegend:r.showLegend,userMargin:a,marginDefaults:r.marginDefaults,loading:P,emptyContent:L,width:D,height:N}),G=Bt(M),q=Ct({name:(null==G?void 0:G.name)||"__unused_brush__",xField:(null==G?void 0:G.xField)||("string"==typeof u?u:void 0),yField:(null==G?void 0:G.yField)||("string"==typeof d?d:void 0)}),Y=G?"xyBrush"===q.brushInteraction.brush?"xy":"xBrush"===q.brushInteraction.brush?"x":"y":void 0,X=p.useRef(q.brushInteraction);X.current=q.brushInteraction;const V=e.useCallback(e=>{const t=X.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(F.earlyReturn)return F.earlyReturn;qn("Scatterplot",$,"xAccessor",u),qn("Scatterplot",$,"yAccessor",d);const U=e.useMemo(()=>{if(!f||0===$.length)return;const e=$.map(e=>"function"==typeof f?f(e):e[f]);return[Math.min(...e),Math.max(...e)]},[$,f]),K=e.useMemo(()=>e=>{const t={fillOpacity:v};return h?F.colorScale&&(t.fill=B(e,h,F.colorScale)):t.fill=Ft,t.r=f?T(e,f,y,U):m,t},[h,F.colorScale,f,y,U,m,v]),Q=e.useMemo(()=>Ht(K,F.effectiveSelectionHook,S),[K,F.effectiveSelectionHook,S]),Z=e.useMemo(()=>un([{label:I||sn(u),accessor:u,role:"x"},{label:z||sn(d),accessor:d,role:"y"},...h?[{label:sn(h),accessor:h,role:"color"}]:[],...f?[{label:sn(f),accessor:f,role:"size"}]:[]]),[u,d,I,z,h,f]),J=vn({componentName:"Scatterplot",data:i,accessors:{xAccessor:u,yAccessor:d}});if(J)return p.createElement(hn,{componentName:"Scatterplot",message:J,width:D,height:N});const ee=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:$}),{xAccessor:u,yAccessor:d,colorAccessor:h||void 0,sizeAccessor:f||void 0,sizeRange:y,pointStyle:Q,colorScheme:g,size:[D,N],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:F.margin,showAxes:r.showAxes,xLabel:I,yLabel:z,xFormat:l,yFormat:c,enableHover:H,showGrid:R}),F.legendBehaviorProps),W&&{title:W}),s&&{className:s}),{tooltipContent:!1===b?()=>null:an(b)||Z}),(E||O)&&{customHoverBehavior:F.customHoverBehavior}),x&&{marginalGraphics:x}),k&&{pointIdAccessor:k}),w&&w.length>0&&{annotations:w}),G&&{brush:{dimension:Y},onBrush:V}),A);return p.createElement(In,{componentName:"Scatterplot",width:D,height:N},p.createElement(pt,Object.assign({ref:o},ee)))});function no(e,t){return r.interpolateViridis(1===t?.5:e/(t-1))}to.displayName="Scatterplot";const oo=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)},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:[]}}));const r=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:i,className:a,xFormat:s,yFormat:l,xAccessor:c="x",yAccessor:u="y",orderAccessor:d,orderLabel:h,pointRadius:g=4,tooltip:f,pointIdAccessor:y,annotations:m,frameProps:v={},selection:b,linkedHover:x,onObservation:k,chartId:w,loading:A,emptyContent:S,legendInteraction:E}=t,M=r.width,O=r.height,C=r.enableHover,P=r.showGrid,L=r.title,j=r.xLabel,_=r.yLabel,D=i||[],{safeData:N,orderMap:B}=e.useMemo(()=>{const e="function"==typeof c?c:e=>e[c],t="function"==typeof u?u:e=>e[u];let n=D;if(d&&D.length>0){const e="function"==typeof d?d:e=>e[d];n=[...D].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}},[D,d,c,u]);qn("ConnectedScatterplot",N,"xAccessor",c),qn("ConnectedScatterplot",N,"yAccessor",u);const{activeSelectionHook:H,customHoverBehavior:T}=Ut({selection:b,linkedHover:x,fallbackFields:[],onObservation:k,chartType:"ConnectedScatterplot",chartId:w}),R=Qt(E,void 0,[]),W=e.useMemo(()=>R.legendSelectionHook?R.legendSelectionHook:H,[R.legendSelectionHook,H]),I=e.useMemo(()=>(e,t)=>{var n,o;const r=t.filter(e=>"point"===e.type);if(2>r.length)return;const i=null==W?void 0:W.isActive,a=null==W?void 0:W.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=no(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),f=i?h?1:.2:1;s&&(e.beginPath(),e.moveTo(c.x,c.y),e.lineTo(u.x,u.y),e.strokeStyle="white",e.lineWidth=g+2,e.globalAlpha=.5*f,e.stroke()),e.beginPath(),e.moveTo(c.x,c.y),e.lineTo(u.x,u.y),e.strokeStyle=d,e.lineWidth=g,e.globalAlpha=f,e.stroke()}e.globalAlpha=1},[g,W]),z=e.useMemo(()=>[I],[I]),$=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=no(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:g+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:g,strokeLinecap:"round",opacity:h}))}return p.createElement(p.Fragment,null,l)},[g]),F=e.useMemo(()=>[$],[$]),G=e.useMemo(()=>e=>{var t,n;const o=B.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?no(r,i):"#6366f1",stroke:"white",strokeWidth:1,r:g,fillOpacity:1}},[g,B]),q=e.useMemo(()=>Ht(G,W,b),[G,W,b]),Y=Object.assign({top:50,right:40,bottom:60,left:70},t.margin),X=h||("string"==typeof d?d:"Order"),V=e.useMemo(()=>un([{label:j||sn(c),accessor:c,role:"x"},{label:_||sn(u),accessor:u,role:"y"},...d?[{label:X,accessor:d,role:"group"}]:[]]),[c,u,j,_,d,X]),U=vn({componentName:"ConnectedScatterplot",data:i,accessors:{xAccessor:c,yAccessor:u}}),K=Gn(A,M,O),Q=K?null:Fn(i,M,O,S),Z=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:N}),{xAccessor:c,yAccessor:u,pointStyle:q,size:[M,O],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Y,showAxes:r.showAxes,xLabel:j,yLabel:_,xFormat:s,yFormat:l,enableHover:C,showGrid:P}),L&&{title:L}),a&&{className:a}),{tooltipContent:!1===f?()=>null:an(f)||V}),(x||k)&&{customHoverBehavior:T}),y&&{pointIdAccessor:y}),{canvasPreRenderers:z,svgPreRenderers:F}),m&&m.length>0&&{annotations:m}),v);return K||Q||(U?p.createElement(hn,{componentName:"ConnectedScatterplot",message:U,width:M,height:O}):p.createElement(In,{componentName:"ConnectedScatterplot",width:M,height:O},p.createElement(pt,Object.assign({ref:o},Z))))});oo.displayName="ConnectedScatterplot";const ro=e.forwardRef(function(t,n){const o=e.useRef(null),r=Jt(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="category10",bubbleOpacity:m=.6,bubbleStrokeWidth:v=1,bubbleStrokeColor:b="white",tooltip:x,marginalGraphics:k,pointIdAccessor:w,annotations:A,frameProps:S={},selection:E,linkedHover:M,linkedBrush:O,onObservation:C,chartId:P,loading:L,emptyContent:j,legendInteraction:_,legendPosition:D}=t,N=r.width,H=r.height,R=r.enableHover,W=r.showGrid,I=r.showLegend,z=r.title,$=r.xLabel,F=r.yLabel,G=Gn(L,N,H),q=G?null:Fn(i,N,H,j),Y=i||[],X=void 0===i,V=e.useRef(null),[U,K]=e.useState(0),Q=e.useCallback(e=>{if(!X)return;let t=!1;for(const n of e){const e="function"==typeof h?h(n):n[h];null!=e&&isFinite(e)&&(V.current?(V.current[0]>e&&(V.current[0]=e,t=!0),e>V.current[1]&&(V.current[1]=e,t=!0)):(V.current=[e,e],t=!0))}t&&K(e=>e+1)},[X,h]),Z=Zn({isPushMode:X,colorBy:f,colorScheme:y,showLegend:I,legendPosition:D}),J=e.useCallback(Z.wrapPush(e=>{var t;Q([e]),null===(t=o.current)||void 0===t||t.push(e)}),[Z.wrapPush,Q]),ee=e.useCallback(Z.wrapPushMany(e=>{var t;Q(e),null===(t=o.current)||void 0===t||t.pushMany(e)}),[Z.wrapPushMany,Q]);e.useImperativeHandle(n,()=>({push:J,pushMany:ee,clear:()=>{var e;Z.resetCategories(),V.current=null,K(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:[]}}),[J,ee,Z.resetCategories]);const{activeSelectionHook:te,customHoverBehavior:ne}=Ut({selection:E,linkedHover:M,fallbackFields:f?["string"==typeof f?f:""]:[],onObservation:C,chartType:"BubbleChart",chartId:P}),oe=Bt(O);Ct({name:(null==oe?void 0:oe.name)||"__unused_brush__",xField:(null==oe?void 0:oe.xField)||("string"==typeof u?u:void 0),yField:(null==oe?void 0:oe.yField)||("string"==typeof d?d:void 0)});const re=Xt(Y,f,y),ie=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of Y){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[Y,f]),ae=Qt(_,f,ie),se=e.useMemo(()=>ae.legendSelectionHook?ae.legendSelectionHook:te,[ae.legendSelectionHook,te]),le=e.useMemo(()=>{if(X)return V.current||[0,1];const e=Y.map(e=>"function"==typeof h?h(e):e[h]);return[Math.min(...e),Math.max(...e)]},[Y,h,X,U]),ce=e.useMemo(()=>e=>{const t={fillOpacity:m,strokeWidth:v,stroke:b};return f?re&&(t.fill=B(e,f,re)):t.fill=Ft,t.r=T(e,h,g,le),t},[f,re,h,g,le,m,v,b]),ue=e.useMemo(()=>Ht(ce,se,E),[ce,se,E]),{legend:de,margin:he,legendPosition:ge}=Kt({data:Y,colorBy:f,colorScale:re,showLegend:I,legendPosition:D,userMargin:a,defaults:r.marginDefaults}),fe=Z.streamingLegend||de,pe=D||ge,ye=e.useMemo(()=>{if(Z.streamingMarginAdjust){const e=Object.assign({},he);for(const[t,n]of Object.entries(Z.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return he},[he,Z.streamingMarginAdjust]),me=e.useMemo(()=>un([{label:$||sn(u),accessor:u,role:"x"},{label:F||sn(d),accessor:d,role:"y"},{label:sn(h),accessor:h,role:"size"},...f?[{label:sn(f),accessor:f,role:"color"}]:[]]),[u,d,$,F,h,f]),ve=vn({componentName:"BubbleChart",data:i,accessors:{xAccessor:u,yAccessor:d},requiredProps:{sizeBy:h}});if(ve)return p.createElement(hn,{componentName:"BubbleChart",message:ve,width:N,height:H});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({chartType:"bubble"},null!=i&&{data:Y}),{xAccessor:u,yAccessor:d,colorAccessor:f||void 0,sizeAccessor:h,sizeRange:g,pointStyle:ue,colorScheme:y,size:[N,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ye,showAxes:r.showAxes,xLabel:$,yLabel:F,xFormat:l,yFormat:c,enableHover:R,showGrid:W}),fe&&{legend:fe,legendPosition:pe}),_&&"none"!==_&&{legendHoverBehavior:ae.onLegendHover,legendClickBehavior:ae.onLegendClick,legendHighlightedCategory:ae.highlightedCategory,legendIsolatedCategories:ae.isolatedCategories}),z&&{title:z}),s&&{className:s}),{tooltipContent:!1===x?()=>null:an(x)||me}),(M||C)&&{customHoverBehavior:ne}),k&&{marginalGraphics:k}),w&&{pointIdAccessor:w}),A&&A.length>0&&{annotations:A}),S);return G||q||p.createElement(In,{componentName:"BubbleChart",width:N,height:H},p.createElement(pt,Object.assign({ref:o},be)))});ro.displayName="BubbleChart";const io=e.forwardRef(function(t,n){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)},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:[]}}));const a=Jt(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:E,linkedHover:M,onObservation:O,chartId:C,loading:P,emptyContent:L,showLegend:j,legendPosition:_,legendInteraction:D}=t,N=a.width,B=a.height,H=a.enableHover,T=a.title,R=a.xLabel,W=a.yLabel,I=Gn(P,N,B),z=I?null:Fn(s,N,B,L),$=s||[],F=null!=j&&j,G=null!=_?_:"right",{margin:q}=Kt({data:$,colorBy:F?"value":void 0,colorScale:void 0,showLegend:F,legendPosition:G,userMargin:l,defaults:a.marginDefaults}),{activeSelectionHook:Y,customHoverBehavior:X}=Ut({selection:E,linkedHover:M,fallbackFields:[],onObservation:O,chartType:"Heatmap",chartId:C}),V=Qt(D,void 0,[]),U=e.useMemo(()=>V.legendSelectionHook?V.legendSelectionHook:Y,[V.legendSelectionHook,Y]),K=e.useMemo(()=>"function"==typeof h?e=>h(e):e=>e[h],[h]),Q=e.useMemo(()=>{const e=$.map(K);return[Math.min(...e),Math.max(...e)]},[$,K]),Z=e.useMemo(()=>"custom"===y&&m?m:o.scaleSequential({blues:r.interpolateBlues,reds:r.interpolateReds,greens:r.interpolateGreens,viridis:r.interpolateViridis}[y]||r.interpolateBlues).domain(Q),[y,m,Q]);e.useMemo(()=>{const e=Yt(u),t=Yt(d);return{xBinCount:new Set($.map(e)).size,yBinCount:new Set($.map(t)).size}},[$,u,d]),e.useMemo(()=>({coordinates:$}),[$]);const J=e.useMemo(()=>e=>{const t=K(e);return{fill:Z(t),stroke:x,strokeWidth:k}},[K,Z,x,k]);e.useMemo(()=>Ht(J,U,E),[J,U,E]);const ee=e.useMemo(()=>un([{label:R||sn(u),accessor:u,role:"x"},{label:W||sn(d),accessor:d,role:"y"},{label:sn(h),accessor:h,role:"value"}]),[u,d,R,W,h]),te=vn({componentName:"Heatmap",data:s,accessors:{xAccessor:u,yAccessor:d,valueAccessor:h}}),ne=e.useMemo(()=>{if(F)return{gradient:{colorFn:e=>Z(e),domain:Q,label:"string"==typeof h?h:"value",format:b}}},[F,Z,Q,h,b]),oe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"heatmap"},null!=s&&{data:$}),{xAccessor:u,yAccessor:d,valueAccessor:h,colorScheme:"custom"!==y?y:void 0,showValues:v,heatmapValueFormat:b,size:[N,B],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:q,showAxes:a.showAxes,xLabel:R,yLabel:W,xFormat:g,yFormat:f,enableHover:H}),ne&&{legend:ne,legendPosition:G}),T&&{title:T}),c&&{className:c}),{tooltipContent:!1===w?()=>null:an(w)||ee}),(M||O)&&{customHoverBehavior:X}),A&&A.length>0&&{annotations:A}),S);return I||z||(te?p.createElement(hn,{componentName:"Heatmap",message:te,width:N,height:B}):p.createElement(In,{componentName:"Heatmap",width:N,height:B},p.createElement(pt,Object.assign({ref:i},oe))))});io.displayName="Heatmap";const ao="__splomIdx",so={top:4,bottom:4,left:4,right:4};function lo({frameRef:o,cellSize:r,onBrush:i}){const a=e.useRef(null),s=r-so.left-so.right,l=r-so.top-so.bottom;return e.useEffect(()=>{if(!a.current)return;const e=n.select(a.current).select(".brush-g"),r=t.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(${so.left},${so.top})`}))}function co({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=Mt({name:c,clientId:`splom-${n}-${o}`}),m=Ct({name:c,xField:n,yField:o}),v=Mt({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[ao];void 0!==n&&(b({[ao]:[n]}),null==g||g(t,e.x+so.left,e.y+so.top))},[b,g]),w=e.useCallback(e=>{const t={opacity:a,r:i};return t.fill=s?B(e,s,l):Ft,"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(pt,{ref:f,chartType:"scatter",data:t,size:[r,r],xAccessor:n,yAccessor:o,pointStyle:w,margin:so,showAxes:!1,enableHover:"hover"===h,customHoverBehavior:"hover"===h?k:void 0,tooltipContent:"hover"===h?()=>null:void 0}),"brush"===h&&p.createElement(lo,{frameRef:f,cellSize:r,xField:n,yField:o,onBrush:x}))}function uo({data:t,field:n,label:o,cellSize:r,bins:i,colorBy:a,colorScale:s,brushSelectionName:l,hoverSelectionName:c,mode:u}){const d=Mt({name:l,clientId:"splom-diag-"+n}),h=Mt({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):Ft,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:Ft,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):Ft,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:Ft,opacity:.7}))))}function ho({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 go(t){const{data:n,fields:o,fieldLabels:r={},colorBy:i,colorScheme:a="category10",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",E="splom-hover",M=f?"hover":g?"brush":"hover",O=At(e=>e.clearSelection),[C,P]=e.useState(null),L=e.useCallback(()=>{O(E),P(null)},[O,E]),j=e.useMemo(()=>(n||[]).map((e,t)=>void 0!==e[ao]?e:Object.assign(Object.assign({},e),{[ao]:t})),[n]),_=Xt(j,i,a),D=void 0!==b?b:!!i,N=e.useMemo(()=>{if(!D||!i)return null;const e="string"==typeof i?i:null;return e?[...new Set(j.map(t=>t[e]))].map(e=>({label:e+"",color:_?_(e+""):Ft})):null},[D,i,j,_]),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"}},N&&p.createElement("div",{style:{display:"flex",gap:12,marginBottom:8,flexWrap:"wrap"}},N.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"===M?L: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(ho,{key:"diag-"+e,label:r[e]||e,cellSize:s}):p.createElement(uo,{key:"diag-"+e,data:j,field:e,label:r[e]||e,cellSize:s,bins:h,colorBy:i,colorScale:_,brushSelectionName:S,hoverSelectionName:E,unselectedOpacity:y,mode:M}):p.createElement(co,{key:`cell-${e}-${n}`,data:j,xField:n,yField:e,fieldLabels:r,cellSize:s,pointRadius:c,pointOpacity:u,colorBy:i,colorScale:_,brushSelectionName:S,hoverSelectionName:E,unselectedOpacity:y,showGrid:m,tooltip:v,mode:M,onPointHover:"hover"===M?(r,i,a)=>{r?(P({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})):(P(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))),C&&"hover"===M&&(()=>{const e=C.datum,t=r[C.xField]||C.xField,n=r[C.yField]||C.yField,o=i?"function"==typeof i?i(e):e[i]:null,a=x?"function"==typeof x?x(e):e[x]:"Row "+e[ao];return p.createElement("div",{style:{position:"absolute",left:40+C.colIndex*(s+l)+C.px,top:C.rowIndex*(s+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}},p.createElement("div",{style:{fontWeight:"bold",marginBottom:2}},a+""),p.createElement("div",null,t,": ",null!=e[C.xField]?Number(e[C.xField]).toFixed(1):"–"),p.createElement("div",null,n,": ",null!=e[C.yField]?Number(e[C.yField]).toFixed(1):"–"),null!=o&&p.createElement("div",{style:{opacity:.8}},"string"==typeof i?i:"group",": ",o+""))})())}function fo(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(Dt,{selections:o},p.createElement(go,Object.assign({},e)))}fo.displayName="ScatterplotMatrix";const po=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)},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:[]}}));const r=Jt(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="category10",sizeBy:k,sizeRange:w=[3,15],pointRadius:A=5,pointOpacity:S=.8,tooltip:E,pointIdAccessor:M,annotations:O,frameProps:C={},selection:P,linkedHover:L,onObservation:j,chartId:_,loading:D,emptyContent:N,legendInteraction:H,legendPosition:R}=t,W=r.width,I=r.height,z=r.enableHover,$=r.showGrid,F=r.showLegend,G=r.title,q=r.xLabel,Y=r.yLabel,X=Gn(D,W,I),V=X?null:Fn(i,W,I,N),U=i||[];qn("QuadrantChart",U,"xAccessor",u),qn("QuadrantChart",U,"yAccessor",d);const{activeSelectionHook:K,customHoverBehavior:Q}=Ut({selection:P,linkedHover:L,fallbackFields:"string"==typeof b?[b]:[],onObservation:j,chartType:"QuadrantChart",chartId:_}),Z=Xt(U,b,x),J=e.useMemo(()=>{if(!b)return[];const e=new Set;for(const t of U){const n="function"==typeof b?b(t):t[b];null!=n&&e.add(n+"")}return Array.from(e)},[U,b]),ee=Qt(H,b,J),te=e.useMemo(()=>ee.legendSelectionHook?ee.legendSelectionHook:K,[ee.legendSelectionHook,K]),ne=e.useMemo(()=>{if(!U.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 U){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]}},[U,u,d,h,g]),oe=e.useMemo(()=>{if(!k||0===U.length)return;const e=U.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},[U,k]),re=e.useMemo(()=>"function"==typeof u?u:e=>+e[u],[u]),ie=e.useMemo(()=>"function"==typeof d?d:e=>+e[d],[d]),ae=e.useMemo(()=>e=>{const t={fillOpacity:S};if(b)Z&&(t.fill=B(e,b,Z));else{const n=re(e),o=ie(e),r=null!=h?n>=h:void 0,i=null!=g?o>=g:void 0;t.fill=void 0===i||void 0===r?Ft:i&&r?f.topRight.color:i&&!r?f.topLeft.color:!i&&r?f.bottomRight.color:f.bottomLeft.color}return t.r=k?T(e,k,w,oe):A,t},[b,Z,k,w,oe,A,S,re,ie,h,g,f]),se=e.useMemo(()=>Ht(ae,te,P),[ae,te,P]),{legend:le,margin:ce,legendPosition:ue}=Kt({data:U,colorBy:b,colorScale:Z,showLegend:F,legendPosition:R,userMargin:a,defaults:r.marginDefaults}),de=e.useMemo(()=>{if(!U.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=U[0];for(const n of Object.keys(t))if(!n.startsWith("_")&&!e.has(n)&&"string"==typeof t[n])return n},[U,u,d,b,k]),he=e.useMemo(()=>un([...de?[{label:de,accessor:de,role:"title"}]:[],{label:q||sn(u),accessor:u,role:"x"},{label:Y||sn(d),accessor:d,role:"y"},...b?[{label:sn(b),accessor:b,role:"color"}]:[],...k?[{label:sn(k),accessor:k,role:"size"}]:[]]),[de,u,d,q,Y,b,k]),ge=vn({componentName:"QuadrantChart",data:i,accessors:{xAccessor:u,yAccessor:d}}),fe=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]),pe=e.useMemo(()=>m?[...fe,(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)}]:fe,[fe,m,v,f,h,g]),ye=e.useMemo(()=>{const e=C.canvasPreRenderers||[];return[...pe,...e]},[pe,C.canvasPreRenderers]),me=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]),ve=Object.assign(Object.assign(Object.assign(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:U}),{xAccessor:u,yAccessor:d,colorAccessor:b||void 0,sizeAccessor:k||void 0,sizeRange:w,pointStyle:se,colorScheme:x,size:[W,I],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ce,showAxes:r.showAxes,xLabel:q,yLabel:Y,xFormat:l,yFormat:c,enableHover:z,showGrid:$}),ne&&{xExtent:ne.xExtent,yExtent:ne.yExtent}),le&&{legend:le,legendPosition:ue}),H&&"none"!==H&&{legendHoverBehavior:ee.onLegendHover,legendClickBehavior:ee.onLegendClick,legendHighlightedCategory:ee.highlightedCategory,legendIsolatedCategories:ee.isolatedCategories}),G&&{title:G}),s&&{className:s}),{tooltipContent:!1===E?()=>null:!0===E||void 0===E?he:an(E)||he}),(L||j)&&{customHoverBehavior:Q}),M&&{pointIdAccessor:M}),O&&O.length>0&&{annotations:O}),{canvasPreRenderers:ye}),C),ye.length>0&&{canvasPreRenderers:ye}),{svgPreRenderers:me});return X||V||(ge?p.createElement(hn,{componentName:"QuadrantChart",message:ge,width:W,height:I}):p.createElement(In,{componentName:"QuadrantChart",width:W,height:I},p.createElement(pt,Object.assign({ref:o},ve))))});po.displayName="QuadrantChart";const yo="__ma_unitized",mo="__ma_series";function vo(e,t){const n=t[1]-t[0];return 0===n?.5:(e-t[0])/n}function bo(e,t){return t[0]+e*(t[1]-t[0])}const xo=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),{[yo]:vo(s,r),[mo]: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),{[yo]:vo(s,i),[mo]:r.label||"Series "+(e+1)}))}i.current.pushMany(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:[]}}));const s=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,xLabel:t.xLabel},{width:800,height:400}),{data:l,margin:c,className:u,xFormat:d,xAccessor:h="x",series:g,colorScheme:f="category10",curve:y="monotoneX",lineWidth:m=2,tooltip:v,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:A,chartId:S,loading:E,emptyContent:M,legendInteraction:O,legendPosition:C}=t,P=s.width,_=s.height,D=s.enableHover,N=s.showGrid,B=null===(o=s.showLegend)||void 0===o||o,H=s.title,T=s.xLabel,R=2===g.length;"undefined"==typeof process||"production"===(null===(r=process.env)||void 0===r?void 0:r.NODE_ENV)||R||console.warn(`[MultiAxisLineChart] Expected exactly 2 series for dual-axis mode, got ${g.length}. Rendering as a standard multi-line chart.`);const W=Gn(E,P,_),I=W?null:Fn(l,P,_,M),z=l||[],$=Gt(),F=e.useMemo(()=>{let e;if(Array.isArray(f))e=f;else if($&&$.length>0)e=$;else{const t=L[f];e=Array.isArray(t)?t:j}return g.map((t,n)=>t.color||e[n%e.length])},[g,f,$]),G=e.useMemo(()=>g.map((e,t)=>e.label||"Series "+(t+1)),[g]),{unitizedData:q,extents:Y}=e.useMemo(()=>{if(0===z.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]}(z,e.yAccessor));if(a.current=e,!R){const t=[];for(const e of z)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),{[yo]:r,[mo]:G[n]}))}return{unitizedData:t,extents:e}}const t=[];for(const n of z)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),{[yo]:vo(i,e[o]),[mo]:G[o]}))}return{unitizedData:t,extents:e}},[z,g,R,G]),X=e.useMemo(()=>{if(R&&Y.length>=2)return[{orient:"left",label:G[0],tickFormat:g[0].format||(e=>{const t=bo(e,Y[0]);return Number.isInteger(t)?t+"":t.toFixed(1)})},{orient:"right",label:G[1],tickFormat:g[1].format||(e=>{const t=bo(e,Y[1]);return Number.isInteger(t)?t+"":t.toFixed(1)})},{orient:"bottom"}]},[R,Y,g,G]),V=eo({data:e.useMemo(()=>q.length>0?q:G.map(e=>({[mo]:e})),[q,G]),rawData:l,colorBy:mo,colorScheme:F,legendInteraction:O,legendPosition:C,selection:k,linkedHover:w,fallbackFields:[mo],unwrapData:!1,onObservation:A,chartType:"MultiAxisLineChart",chartId:S,showLegend:B,userMargin:c,marginDefaults:R?Object.assign(Object.assign({},s.marginDefaults),{left:70,right:70}):s.marginDefaults,loading:E,emptyContent:M,width:P,height:_});if(V.earlyReturn)return V.earlyReturn;const U=e.useMemo(()=>{const e=new Map;return G.forEach((t,n)=>e.set(t,F[n])),t=>({stroke:e.get(t[mo])||F[0],strokeWidth:m,fill:"none"})},[G,F,m]),K=e.useMemo(()=>Ht(U,V.effectiveSelectionHook,k),[U,V.effectiveSelectionHook,k]),Q=e.useMemo(()=>{if(!1===v)return()=>null;return an(v)||(e=>{var t;const n=e.data||e,o=n[mo],r=G.indexOf(o),i=n[yo],a=R&&r>=0&&Y[r]?bo(i,Y[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:F[r]||"inherit"}},o),p.createElement("div",null,`${"string"==typeof h?h:"x"}: ${l}`),p.createElement("div",null,`${o}: ${s(a)}`))})},[v,G,F,Y,R,g,h]),Z=vn({componentName:"MultiAxisLineChart",data:l,accessors:{xAccessor:h}}),J=R?[0,1]:void 0,ee=Object.assign(Object.assign(Object.assign(Object.assign(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:q}),{xAccessor:h,yAccessor:yo,groupAccessor:mo,lineStyle:K,colorScheme:F,size:[P,_],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:V.margin,showAxes:s.showAxes}),X&&{axes:X}),{xLabel:T}),R?{}:{yLabel:G[0]}),{xFormat:d}),R&&J&&{yExtent:J}),{enableHover:D,showGrid:N,curve:y}),V.legendBehaviorProps),H&&{title:H}),u&&{className:u}),{tooltipContent:Q}),b&&{annotations:b}),(w||A)&&{customHoverBehavior:V.customHoverBehavior}),A&&{customClickBehavior:V.customClickBehavior}),x);return W||I||(Z?p.createElement(hn,{componentName:"MultiAxisLineChart",message:Z,width:P,height:_}):p.createElement(In,{componentName:"MultiAxisLineChart",width:P,height:_},p.createElement(pt,Object.assign({ref:i},ee))))});function ko(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=2*Math.PI;for(const e of Object.values(n)){const t=l+e.pctStart*c,n=l+(e.pctStart+e.pct)*c,o=r(e.pieceData[0],e.name);i.push({type:"wedge",cx:0,cy:0,innerRadius:s,outerRadius:a,startAngle:t,endAngle:n,style:o,datum:e.pieceData,category:e.name})}return i}function wo(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}}xo.displayName="MultiAxisLineChart";const Ao={bar:function(e,t){const{scales:n,columns:o,config:r,getR:i,getStack:a,resolvePieceStyle:s}=e,{r:l,projection:c}=n,u=[],d="vertical"===c,h="horizontal"===c,g=r.normalize,f=[];if(a){const e=new Set;for(const t of Object.values(o))for(const n of t.pieceData){const t=a(n);e.has(t)||(e.add(t),f.push(t))}}else f.push("_default");for(const e of Object.values(o)){const t=new Map;for(const n of e.pieceData){const e=a?a(n):"_default";t.has(e)||t.set(e,{total:0,pieces:[]});const o=t.get(e);o.total+=i(n),o.pieces.push(n)}let n=0;if(g)for(const e of t.values())n+=Math.abs(e.total);let o=0,r=0;for(const i of f){const c=t.get(i);if(!c)continue;let f=c.total;g&&n>0&&(f/=n);const p=s(c.pieces[0],a?i:e.name),y=Object.assign(Object.assign({},c.pieces[0]),{__aggregateValue:c.total,__pieceCount:c.pieces.length,category:e.name});if(d){const t=l(0>f?r:o+f),n=0>f?l(r+f)-l(r):l(o)-l(o+f);u.push(S(e.x,t,e.width,Math.abs(n),p,y,i)),0>f?r+=f:o+=f}else if(h){const t=l(0>f?r+f:o),n=0>f?l(r)-l(r+f):l(o+f)-l(o);u.push(S(t,e.x,Math.abs(n),e.width,p,y,i)),0>f?r+=f:o+=f}}}return u},clusterbar:function(e,t){const{scales:n,columns:o,getR:r,getGroup:i,resolvePieceStyle:a}=e,{r:s,projection:l}=n,c=[],u="vertical"===l,d=[],h=new Set;for(const e of Object.values(o))for(const t of e.pieceData){const e=i?i(t):"_default";h.has(e)||(h.add(e),d.push(e))}const g=d.length||1;for(const e of Object.values(o)){const t=e.width/g,n=.2*t,o=t-n,l=new Map;for(const t of e.pieceData){const e=i?i(t):"_default";l.has(e)||l.set(e,[]),l.get(e).push(t)}for(let i=0;d.length>i;i++){const h=l.get(d[i])||[];for(const l of h){const h=r(l),g=a(l,d[i]);if(u){const r=e.x+i*t+n/2,a=s(0),u=s(h);c.push(S(r,Math.min(a,u),o,Math.abs(a-u),g,l,d[i]))}else{const r=e.x+i*t+n/2,a=s(0),u=s(h);c.push(S(Math.min(a,u),r,Math.abs(u-a),o,g,l,d[i]))}}}}return c},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:ko,donut:ko,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),E=[];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;E.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:E}),m)for(const e of E)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:wo(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))-n)/u||1,r=Array(u).fill(0);for(const e of t)r[Math.min(Math.floor((e-n)/o),u-1)]++;const i=t.length,h=Math.max(...r,1),p=s(e.pieceData[0],e.name);for(let t=0;u>t;t++){if(0===r[t])continue;const a=(d?r[t]/i:r[t]/h)*e.width*.9,s=l(n+t*o),u=l(n+(t+1)*o);c.push(S(Math.min(s,u),e.x+e.width-a,Math.abs(u-s),a,p,{bin:t,count:r[t],range:[n+t*o,n+(t+1)*o],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)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:wo(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(S(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(S(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 E=k[0].stepTotal,M=x?.95*p:.9*t.width,O=o.scaleLinear().domain([0,w]).range([0,M]),C=null!==(r=e.config.connectorOpacity)&&void 0!==r?r:.3;let P=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+=O(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=O(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,E=w>0?c.total/w*100:0,M=Object.assign(Object.assign({},c.pieces[0]),{__funnelValue:c.total,__funnelPercent:E,__funnelStep:n.name,__funnelIsFirstStep:o,__aggregateValue:c.total,__pieceCount:c.pieces.length,category:l});y&&(0===a&&(M.__funnelStepLabel=n.name,M.__funnelStepLabelX=p,M.__funnelStepLabelY=d,M.__funnelRowWidth=e),M.__funnelValueLabelX=x+m/2,M.__funnelValueLabelY=d,M.__funnelBarW=m),f.push(S(x,d,m,u,k,M,l)),h.set(l,{x:x,y:d,w:m,h:u})}}else{const e=t.stepTotal,r=O(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=E>0?e/E*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(S(s,d,r,u,x,w,b)),h.set(l,{x:s,y:d,w:r,h:u})}if(e>0&&P.size>0){const e=x?v:[v[0]];for(const o of e){const e=P.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:C},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)}}P=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),E=n.x+e*s+l/2,M=v(y),O=v(0)-M,C=c(f.pieces[0],p?h:n.name),P=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:E+u/2,__barFunnelLabelY:v(y+A)});if(d.push(S(E,M,u,O,C,P,p?h:n.name)),A>0){const e=v(y+A),t=M-e,o=Object.assign({},C),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(S(E,e,u,t,o,r,p?h:n.name))}}}return d}};class So{constructor(e){this.rExtent=new b,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.config=e,this.buffer=new v(e.windowSize),this.getO=P(e.oAccessor||e.categoryAccessor,"category");const t="streaming"===e.runtimeMode,n=e.rAccessor;Array.isArray(n)?(this.rAccessors=n.map(e=>O(e,"value")),this.getR=this.rAccessors[0],this.rExtents=n.map(()=>new b)):(this.getR=O(t&&(e.timeAccessor||e.valueAccessor)&&e.valueAccessor||n,"value"),this.rAccessors=[this.getR],this.rExtents=[this.rExtent]),this.getStack=P(e.stackBy),this.getGroup=P(e.groupBy),this.getColor=P(e.colorAccessor),this.getConnector=P(e.connectorAccessor),e.pulse&&(this.timestampBuffer=new v(e.windowSize))}ingest(e){const t="undefined"!=typeof performance?performance.now():Date.now();if(this.lastIngestTime=t,e.bounded){this.buffer.clear(),this.rExtent.clear(),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.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=null!=t.barPadding?t.barPadding/("vertical"===i?e.width:e.height):.1;let u,d;if("radial"===i){u=o.scaleBand().domain(a).range([0,1]).padding(0);const n=Math.min(e.width,e.height)/2,r=t.innerRadius||0;d=o.scaleLinear().domain(s).range([r,n])}else l?(u=o.scaleBand().domain(a).range([0,e.height]).padding(c),d=o.scaleLinear().domain(s).range([0,e.width])):(u=o.scaleBand().domain(a).range([0,e.width]).padding(c),d=o.scaleLinear().domain(s).range([e.height,0]));this.scales={o:u,r:d,projection:i},this.multiScales=this.rAccessors.length>1&&t.multiAxis?this.rAccessors.map((r,i)=>{const a=this.rExtents[i];a.dirty&&a.recalculate(n,r);let[s,c]=a.extent;s===1/0&&(s=0,c=1);const u=c-s,d=u>0?u*(t.extentPadding||.05):1;return s-=d,c+=d,s>0&&(s=0),l?o.scaleLinear().domain([s,c]).range([0,e.width]):o.scaleLinear().domain([s,c]).range([e.height,0])}):[];let h=r;this.rAccessors.length>1&&(h=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(h,a,u,i,e),this.config.transition&&this.scene.length>0&&this.snapshotPositions(),this.scene=this.buildSceneNodes(h,e),this.config.decay&&this.applyDecay(this.scene,r),this.config.pulse&&this.applyPulse(this.scene,r),this.config.transition&&this.prevPositionMap.size>0&&this.startTransition(),this.version++}resolveRAccessorName(e){const t=Array.isArray(this.config.rAccessor)?this.config.rAccessor[e]:this.config.rAccessor;return"string"==typeof t?t:"value"+e}resolveCategories(e){const t=Array.from(this.categories),n=this.config.oSort;if(("streaming"===this.config.runtimeMode||this._hasStreamingData)&&void 0===n){const n=new Set;for(const t of e)n.add(this.getO(t));const o=Math.max(50,3*n.size);if(this.categories.size>o){let e=this.categories.size-o;for(const t of this.categories){if(0>=e)break;n.has(t)||(this.categories.delete(t),e--)}}return t.filter(e=>n.has(e))}if(!1===n)return t;if("function"==typeof n)return t.sort(n);const o=new Map;for(const t of e){const e=this.getO(t);o.set(e,(o.get(e)||0)+Math.abs(this.getR(t)))}return t.sort("asc"===n?(e,t)=>(o.get(e)||0)-(o.get(t)||0):(e,t)=>(o.get(t)||0)-(o.get(e)||0))}computeValueDomain(e,t){var n,o;const r=this.config.chartType,i=this.config.extentPadding||.05;if("radial"===this.config.projection&&("pie"===r||"donut"===r))return[0,1];let a=0,s=0;if("bar"===r&&this.getStack&&this.config.normalize)a=0,s=1;else if("bar"===r&&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>s&&(s=e);for(const e of n.values())a>e&&(a=e)}else if("bar"===r){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>s&&(s=e),a>e&&(a=e)}else if("clusterbar"===r||"bar-funnel"===r)for(const t of e){const e=this.getR(t);e>s&&(s=e),a>e&&(a=e)}else{const e=this.rExtent.extent[0],t=this.rExtent.extent[1];e!==1/0&&(a=e),t!==-1/0&&(s=t)}if(this.config.rExtent&&(null!=this.config.rExtent[0]&&(a=this.config.rExtent[0]),null!=this.config.rExtent[1]&&(s=this.config.rExtent[1])),"bar-funnel"!==r){const e=s-a,t=e>0?e*i:1;null==(null===(n=this.config.rExtent)||void 0===n?void 0:n[0])&&(a-=t),null==(null===(o=this.config.rExtent)||void 0===o?void 0:o[1])&&(s+=t)}return"bar"!==r&&"clusterbar"!==r&&"bar-funnel"!==r||(a>0&&(a=0),0>s&&(s=0)),[a,s]}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=Ao[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:_,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){var n,o,r;const i=this.config.decay;if(!i||1>=t)return 1;const a=null!==(n=i.minOpacity)&&void 0!==n?n:.1,s=t-1-e;switch(i.type){case"linear":return a+(1-s/(t-1))*(1-a);case"exponential":{const e=null!==(o=i.halfLife)&&void 0!==o?o:t/2;return a+Math.pow(.5,s/e)*(1-a)}case"step":return(null!==(r=i.stepThreshold)&&void 0!==r?r:.5*t)>s?1:a;default:return 1}}applyDecay(e,t){var n,o;if(!this.config.decay)return;const r=t.length;if(1>=r)return;const i=new Map;for(let e=0;t.length>e;e++)i.set(t[e],e);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=new Map;for(let e=0;t.length>e;e++)c.set(t[e],e);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;let o=0;for(let n=0;t.length>n;n++){const r=t[n],s=this.config.oAccessor;if(("function"==typeof s?s(r):r[s||"category"])!==e)continue;const l=this.timestampBuffer.get(n);if(null==l)continue;const c=i-l;if(a>c){const e=1-c/a;e>o&&(o=e)}}o>0&&(n._pulseIntensity=o,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}getNodeKey(e,t){var n,o;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:""}`:null}snapshotPositions(){this.prevPositionMap.clear();const e=new Map;for(let t=0;this.scene.length>t;t++){const n=this.scene[t],o=this.getNodeKey(n,e);o&&("point"===n.type?this.prevPositionMap.set(o,{x:n.x,y:n.y,r:n.r,opacity:n.style.opacity}):"rect"===n.type&&this.prevPositionMap.set(o,{x:n.x,y:n.y,w:n.w,h:n.h,opacity:n.style.opacity}))}}startTransition(){var e,t,n,o,r,i,a,s,l,c,u,d;if(!this.config.transition||0===this.prevPositionMap.size)return;const h=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 g=!1;const f=new Set,p=new Map;for(let e=0;this.scene.length>e;e++){const s=this.scene[e],l=this.getNodeKey(s,p);if(!l)continue;s._transitionKey=l;const c=this.prevPositionMap.get(l);"point"===s.type?c?(f.add(l),s._targetOpacity=null!==(t=s.style.opacity)&&void 0!==t?t:1,c.x===s.x&&c.y===s.y||(s._targetX=s.x,s._targetY=s.y,s.x=c.x,s.y=c.y,g=!0)):(s._targetOpacity=null!==(n=s.style.opacity)&&void 0!==n?n:1,s.style=Object.assign(Object.assign({},s.style),{opacity:0}),g=!0):"rect"===s.type&&(c?(f.add(l),s._targetOpacity=null!==(o=s.style.opacity)&&void 0!==o?o:1,c.x===s.x&&c.y===s.y&&c.w===s.w&&c.h===s.h||(s._targetX=s.x,s._targetY=s.y,s._targetW=s.w,s._targetH=s.h,s.x=c.x,s.y=c.y,s.w=null!==(r=c.w)&&void 0!==r?r:s.w,s.h=null!==(i=c.h)&&void 0!==i?i:s.h,g=!0)):(s._targetOpacity=null!==(a=s.style.opacity)&&void 0!==a?a:1,s.style=Object.assign(Object.assign({},s.style),{opacity:0}),g=!0))}this.exitNodes=[];for(const[e,t]of this.prevPositionMap)f.has(e)||(e.startsWith("p:")?this.exitNodes.push({type:"point",x:t.x,y:t.y,r:null!==(s=t.r)&&void 0!==s?s:3,style:{opacity:null!==(l=t.opacity)&&void 0!==l?l:1},datum:null,_targetOpacity:0,_transitionKey:e}):e.startsWith("r:")&&this.exitNodes.push({type:"rect",x:t.x,y:t.y,w:null!==(c=t.w)&&void 0!==c?c:0,h:null!==(u=t.h)&&void 0!==u?u:0,style:{opacity:null!==(d=t.opacity)&&void 0!==d?d:1,fill:"#999"},datum:null,_targetOpacity:0,_transitionKey:e}),g=!0);this.exitNodes.length>0&&(this.scene=[...this.scene,...this.exitNodes]),g&&(this.activeTransition={startTime:z(),duration:h})}advanceTransition(e){var t,n,o;if(!this.activeTransition)return!1;const r=W(e,this.activeTransition),i=R(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 o=this.prevPositionMap.get(t),r=o?null!==(n=o.opacity)&&void 0!==n?n:1:0;e.style.opacity=I(r,e._targetOpacity,i)}if(void 0===e._targetX)continue;const o=this.prevPositionMap.get(t);if(!o)continue;e.x=I(o.x,e._targetX,i),e.y=I(o.y,e._targetY,i)}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=I(r,e._targetOpacity,i)}if(void 0===e._targetX)continue;const n=this.prevPositionMap.get(t);if(!n)continue;e.x=I(n.x,e._targetX,i),e.y=I(n.y,e._targetY,i),void 0!==n.w&&(e.w=I(n.w,e._targetW,i),e.h=I(n.h,e._targetH,i))}}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)continue;e.x=e._targetX,e.y=e._targetY,e._targetX=void 0,e._targetY=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}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()}clear(){this.buffer.clear(),this.rExtent.clear(),this.categories.clear(),this._hasStreamingData=!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.version++}get size(){return this.buffer.size}getOAccessor(){return this.getO}getRAccessor(){return this.getR}updateConfig(e){const t=Object.assign({},this.config);if(e.colorScheme!==this.config.colorScheme&&(this._colorSchemeMap=null,this._colorSchemeIndex=0),Object.assign(this.config,e),(void 0!==e.oAccessor||void 0!==e.categoryAccessor)&&(M(e.oAccessor||e.categoryAccessor,t.oAccessor||t.categoryAccessor)||(this.getO=P(this.config.oAccessor||this.config.categoryAccessor,"category"),this.categories.clear())),void 0!==e.rAccessor){const n=Array.isArray(e.rAccessor)?e.rAccessor:[e.rAccessor],o=Array.isArray(t.rAccessor)?t.rAccessor:[t.rAccessor];if(n.length!==o.length||n.some((e,t)=>!M(e,o[t]))){const e=this.config.rAccessor;Array.isArray(e)?(this.rAccessors=e.map(e=>O(e,"value")),this.getR=this.rAccessors[0],this.rExtents=e.map(()=>new b)):(this.getR=O(e,"value"),this.rAccessors=[this.getR],this.rExtents=[this.rExtent])}}"stackBy"in e&&!M(e.stackBy,t.stackBy)&&(this.getStack=null!=this.config.stackBy?P(this.config.stackBy):void 0),"groupBy"in e&&!M(e.groupBy,t.groupBy)&&(this.getGroup=null!=this.config.groupBy?P(this.config.groupBy):void 0),"colorAccessor"in e&&!M(e.colorAccessor,t.colorAccessor)&&(this.getColor=null!=this.config.colorAccessor?P(this.config.colorAccessor):void 0),"connectorAccessor"in e&&!M(e.connectorAccessor,t.connectorAccessor)&&(this.getConnector=null!=this.config.connectorAccessor?P(this.config.connectorAccessor):void 0)}}function Eo(e,t,n){const o=F(t,n,e);return o.hit?{datum:e.datum,x:o.cx,y:e.y,distance:0,category:e.group}:null}function Mo(e,t,n){const o=t-e.x,r=n-e.y,i=Math.sqrt(o*o+r*r);return i>Math.max(e.r,5)?null:{datum:e.datum,x:e.x,y:e.y,distance:i}}function Oo(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=G(Math.atan2(r,o)),s=G(e.startAngle),l=G(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 Co(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 Po(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 Lo(t){const{width:n,height:o,totalWidth:r,totalHeight:i,margin:a,scales:s,showAxes:l,showGrid:c,rFormat:u}=t,d="radial"===(null==s?void 0:s.projection),h="horizontal"===(null==s?void 0:s.projection),g=e.useMemo(()=>!s||d?[]:s.r.ticks(5).map(e=>({value:e,pixel:s.r(e),label:(u||jo)(e)})),[s,u,d]),f=c&&s&&!d,y=l&&s&&!d;return f||y?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})`},f&&p.createElement("g",{className:"ordinal-grid"},g.map((e,t)=>p.createElement("line",{key:"grid-"+t,x1:h?e.pixel:0,y1:h?0:e.pixel,x2:h?e.pixel:n,y2:h?o:e.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1}))),y&&p.createElement(p.Fragment,null,h?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 jo(e){return Math.round(100*e)/100+""}function _o(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:E,annotations:M,svgAnnotationRules:O,xAccessor:C,yAccessor:P,annotationData:L,underlayRendered:j,children:_}=t,D="radial"===(null==c?void 0:c.projection),N="horizontal"===(null==c?void 0:c.projection),B=!1!==d,H=e.useMemo(()=>u&&B&&c&&!D?c.o.domain().map(e=>{var t;return{value:e,pixel:(null!==(t=c.o(e))&&void 0!==t?t:0)+c.o.bandwidth()/2,label:f?f(e):e}}):[],[u,B,c,f,D]),T=e.useMemo(()=>u&&c&&!D?c.r.ticks(5).map(e=>({value:e,pixel:c.r(e),label:(y||jo)(e)})):[],[u,c,y,D]),R=e.useRef(new Map),W=e.useRef(null!==(n=null==M?void 0:M.length)&&void 0!==n?n:0),I=null!==(o=null==M?void 0:M.length)&&void 0!==o?o:0;W.current!==I&&(W.current=I,R.current=new Map);const z=e.useMemo(()=>{if(!M||0===M.length)return null;const e=ke(),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}:null,timeAxis:"x",xAccessor:C,yAccessor:P,width:r,height:i,data:L,frameType:"ordinal",stickyPositionCache:R.current};return M.map((t,n)=>{if(O){const r=O(t,n,o);return null!=r?r:e(t,n,o)}return e(t,n,o)}).filter(Boolean)},[M,O,r,i,c,C,P,L]);return u||v||b||E||z&&z.length>0||m||_?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&&!D&&!j&&p.createElement("g",{className:"ordinal-grid"},T.map((e,t)=>p.createElement("line",{key:"grid-"+t,x1:N?e.pixel:0,y1:N?0:e.pixel,x2:N?e.pixel:r,y2:N?i:e.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1}))),u&&c&&!D&&p.createElement("g",{className:"ordinal-axes"},N?p.createElement(p.Fragment,null,!j&&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:"cat-"+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))),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),!j&&p.createElement("line",{x1:0,y1:i,x2:r,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),T.map((e,t)=>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:"middle",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,!j&&p.createElement("line",{x1:0,y1:i,x2:r,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),H.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}),p.createElement("text",{y:18,textAnchor:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{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),!j&&p.createElement("line",{x1:0,y1:0,x2:0,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),T.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,E,_),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),ce({legend:b,totalWidth:a,totalHeight:s,margin:l,legendPosition:S,title:v,legendHoverBehavior:x,legendClickBehavior:k,legendHighlightedCategory:w,legendIsolatedCategories:A})):null}function Do(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()}const No=(e,t,n,o)=>{var r,i;const a=t.filter(e=>"wedge"===e.type);for(const t of a)Do(e,t),e.globalAlpha=null!==(i=null!==(r=t.style.fillOpacity)&&void 0!==r?r:t.style.opacity)&&void 0!==i?i:1,e.fillStyle=t.style.fill||"#007bff",e.fill(),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke()),t._pulseIntensity&&t._pulseIntensity>0&&(Do(e,t),Qe(e,t)),e.globalAlpha=1},Bo=(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=t.style.fill||"#007bff",e.fill(n),e.globalAlpha=1,t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=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()}},Ho=(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=n.style.stroke||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 To(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 Ro(e){return.05>Math.abs(e-Math.round(e))?Math.round(e)+"%":e.toFixed(1)+"%"}let Wo=null;const Io=new Map;function zo(e,t){const n=`${e}@${"undefined"!=typeof window&&window.devicePixelRatio||1}`,o=Io.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):(Wo||(Wo=document.createElement("canvas")),Wo.width=e,Wo.height=e,Wo)}(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 Io.set(n,r),r}function $o(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 Fo(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 Go(e){return.05>Math.abs(e-Math.round(e))?Math.round(e)+"%":e.toFixed(1)+"%"}const qo=e=>[Ho,...e],Yo={bar:qo([ot]),clusterbar:qo([ot]),point:qo([nt]),swarm:qo([nt]),pie:[No],donut:[No],boxplot:qo([(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()}},nt]),violin:qo([Bo]),histogram:qo([ot]),ridgeline:qo([Bo]),timeline:qo([ot]),funnel:[ot,(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=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?To(r):null!=i?`${To(r)} (${Ro(i)})`:To(r),e.measureText(c).width+16>o){if(l||null==i)continue;if(c=To(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":[ot,(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=zo(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?Go(r):"",s=Fo(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(),$o(e,g,f,u,d,4),e.fill(),e.restore(),e.strokeStyle="rgba(0,0,0,0.12)",e.lineWidth=.5,e.beginPath(),$o(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}}]},Xo={top:50,right:40,bottom:60,left:70},Vo={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 Uo({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:Vo},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:Vo},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:Vo},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:Vo},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:Vo},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:Vo},g&&p.createElement("div",{style:{fontWeight:"bold"}},g+""),""!==f&&p.createElement("div",null,"number"==typeof f?f.toLocaleString():f+""))}const Ko=e.forwardRef(function(t,n){var o,r,i,a,s,c,u;const{chartType:d,runtimeMode:h,data:g,oAccessor:f="category",rAccessor:y="value",colorAccessor:v,stackBy:b,groupBy:x,multiAxis:k,timeAccessor:w,valueAccessor:A,categoryAccessor:S,projection:E="vertical",size:M=[600,400],responsiveWidth:O,responsiveHeight:C,margin:P,barPadding:L,innerRadius:j,normalize:_,startAngle:D,dynamicColumnWidth:N,bins:B,showOutliers:H,showIQR:T,amplitude:R,connectorOpacity:W,showLabels:I,connectorAccessor:z,connectorStyle:$,rExtent:F,oExtent:G,extentPadding:q=.05,oSort:Y,windowMode:X="sliding",windowSize:V=200,pieceStyle:U,summaryStyle:K,colorScheme:Q,barColors:Z,showAxes:oe=!0,showCategoryTicks:re,oLabel:ie,rLabel:ae,oFormat:se,rFormat:le,enableHover:ce=!0,hoverAnnotation:ue,tooltipContent:de,customHoverBehavior:he,annotations:ge,svgAnnotationRules:fe,showGrid:pe=!1,legend:ye,legendHoverBehavior:me,legendClickBehavior:ve,legendHighlightedCategory:be,legendIsolatedCategories:xe,legendPosition:ke,backgroundGraphics:we,foregroundGraphics:Ae,title:Se,className:Ee,background:Me,centerContent:Oe,decay:Le,pulse:_e,transition:Ne,staleness:He,accessibleTable:Te}=t,[Re,We]=te(M,O,C),Ie=e.useMemo(()=>Object.assign(Object.assign({},Xo),P),[P]),ze=We[0]-Ie.left-Ie.right,Fe=We[1]-Ie.top-Ie.bottom,qe="function"==typeof Ae?Ae({size:We,margin:Ie}):Ae,Ye=e.useRef(null),Xe=e.useRef(!0),Ve=$e(e=>e.theme),Ue=e.useRef(0),Ke=e.useRef(null),Qe=e.useRef(()=>{}),[Ze,Je]=e.useState(null),[et,tt]=e.useState(null),[nt,ot]=e.useState(0),[rt,it]=e.useState(!1),at=ce||ue,st="streaming"===h,lt=e.useMemo(()=>({chartType:d,runtimeMode:st?"streaming":"bounded",windowSize:V,windowMode:X,extentPadding:q,projection:E,oAccessor:st?void 0:f,rAccessor:st?void 0:y,colorAccessor:v,stackBy:b,groupBy:x,multiAxis:k,timeAccessor:st?w:void 0,valueAccessor:st?A||("string"==typeof y||"function"==typeof y?y:void 0):void 0,categoryAccessor:st?S||f:void 0,rExtent:F,oExtent:G,barPadding:L,innerRadius:j,normalize:_,startAngle:D,dynamicColumnWidth:N,bins:B,showOutliers:H,showIQR:T,amplitude:R,connectorOpacity:W,showLabels:I,connectorAccessor:z,connectorStyle:$,oSort:Y,pieceStyle:U,summaryStyle:K,colorScheme:Q,barColors:Z,decay:Le,pulse:_e,transition:Ne,staleness:He}),[d,V,X,q,E,f,y,v,b,x,k,w,A,S,F,G,L,j,_,D,N,B,H,T,R,W,I,z,$,Y,U,K,Q,Z,Le,_e,Ne,He,st]),ct=e.useRef(null);ct.current||(ct.current=new So(lt));const ut=e.useCallback(()=>{Ue.current||(Ue.current=requestAnimationFrame(()=>Qe.current()))},[]);e.useEffect(()=>{var e;null===(e=ct.current)||void 0===e||e.updateConfig(lt),Xe.current=!0,ut()},[lt,ut]),e.useEffect(()=>{Xe.current=!0,ut()},[Ve,ut]);const dt=e.useRef(null);dt.current||(dt.current=new m(e=>{const t=ct.current;t&&t.ingest(e)&&(Xe.current=!0,ut())}));const ht=e.useCallback(e=>{var t;null===(t=dt.current)||void 0===t||t.push(e)},[]),gt=e.useCallback(e=>{var t;null===(t=dt.current)||void 0===t||t.pushMany(e)},[]),ft=e.useCallback(()=>{var e,t;null===(e=dt.current)||void 0===e||e.clear(),null===(t=ct.current)||void 0===t||t.clear(),Xe.current=!0,ut()},[ut]);e.useImperativeHandle(n,()=>({push:ht,pushMany:gt,clear:ft,getData:()=>{var e,t,n;return null===(e=dt.current)||void 0===e||e.flush(),null!==(n=null===(t=ct.current)||void 0===t?void 0:t.getData())&&void 0!==n?n:[]},getScales:()=>{var e,t;return null!==(t=null===(e=ct.current)||void 0===e?void 0:e.scales)&&void 0!==t?t:null}}),[ht,gt,ft]),e.useEffect(()=>{var e;g&&(null===(e=dt.current)||void 0===e||e.setBoundedData(g))},[g]);const pt=e.useRef(()=>{}),yt=e.useRef(()=>{});pt.current=e=>{if(!at)return;const t=Ye.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-Ie.left,r=e.clientY-n.top-Ie.top;if(0>o||o>ze||0>r||r>Fe)return void(Ke.current&&(Ke.current=null,Je(null),he&&he(null),ut()));const i=ct.current;if(!i||0===i.scene.length)return;const a="radial"===E,s=function(e,t,n,o=30){let r=null;for(const i of e){let e=null;switch(i.type){case"rect":e=Eo(i,t,n);break;case"point":e=Mo(i,t,n);break;case"wedge":e=Oo(i,t,n);break;case"boxplot":e=Co(i,t,n);break;case"violin":e=Po(i,t,n)}e&&o>e.distance&&(r&&e.distance>=r.distance||(r=e))}return r}(i.scene,a?o-ze/2:o,a?r-Fe/2:r);if(!s)return void(Ke.current&&(Ke.current=null,Je(null),he&&he(null),ut()));const l=s.datum||{},c=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},"object"!=typeof l||null===l||Array.isArray(l)?{}:l),{data:l,time:s.x,value:s.y,x:s.x,y:s.y}),s.stats&&{stats:s.stats}),s.category&&{category:s.category}),{__oAccessor:"string"==typeof f?f:void 0,__rAccessor:"string"==typeof y?y:void 0,__chartType:d});Ke.current=c,Je(c),he&&(he(c),Xe.current=!0),ut()},yt.current=()=>{Ke.current&&(Ke.current=null,Je(null),he&&(he(null),Xe.current=!0),ut())},e.useCallback(e=>pt.current(e),[]);const mt=e.useCallback(()=>yt.current(),[]),vt=e.useRef(-1),bt=e.useCallback(e=>{const t=ct.current;if(!t||0===t.scene.length)return;const n=function(e){const t=[];for(const n of e)if("rect"===n.type&&null!=n.x)t.push({x:n.x+n.w/2,y:n.y+n.h/2,datum:n.datum});else if("point"===n.type)t.push({x:n.x,y:n.y,datum:n.datum});else if("wedge"===n.type&&null!=n.cx){const e=((n.startAngle||0)+(n.endAngle||0))/2,o=((n.innerRadius||0)+(n.outerRadius||50))/2;t.push({x:n.cx+Math.cos(e)*o,y:n.cy+Math.sin(e)*o,datum:n.datum})}return t.sort((e,t)=>e.x-t.x||e.y-t.y),t}(t.scene);if(0===n.length)return;const o=vt.current,r=J(e.key,0>o?-1:o,n.length);if(null===r)return;if(e.preventDefault(),0>r)return vt.current=-1,Ke.current=null,Je(null),he&&he(null),void ut();const i=0>o?0:r;vt.current=i;const a=Object.assign(Object.assign({},ee(n[i])),{__oAccessor:"string"==typeof f?f:void 0,__rAccessor:"string"==typeof y?y:void 0,__chartType:d});Ke.current=a,Je(a),he&&he(a),ut()},[he,ut]),xt=e.useCallback(e=>{vt.current=-1,pt.current(e)},[]);Qe.current=()=>{var e,t;Ue.current=0;const n=Ye.current;if(!n)return;const o=n.getContext("2d");if(!o)return;const r=ct.current;if(!r)return;const i="undefined"!=typeof performance?performance.now():Date.now(),a=r.advanceTransition(i),s=Xe.current;s&&!a&&(r.computeScene({width:ze,height:Fe}),Xe.current=!1),(s||a)&&n.setAttribute("aria-label",je(r.scene,d+" chart"));const l=Ge(),c=We[0]*l,u=We[1]*l;n.width===c&&n.height===u||(n.width=c,n.height=u,n.style.width=We[0]+"px",n.style.height=We[1]+"px"),o.setTransform(l,0,0,l,0,0),o.clearRect(0,0,We[0],We[1]);const h=null!==(e=null==He?void 0:He.threshold)&&void 0!==e?e:5e3,g=He&&r.lastIngestTime>0&&i-r.lastIngestTime>h;g&&(o.globalAlpha=null!==(t=null==He?void 0:He.dimOpacity)&&void 0!==t?t:.5);const f=n?getComputedStyle(n).getPropertyValue("--semiotic-bg").trim():"",p=Me||(f&&"transparent"!==f?f:null);p&&(o.fillStyle=p,o.fillRect(0,0,We[0],We[1]));const y="radial"===E;y?(o.save(),o.translate(Ie.left+ze/2,Ie.top+Fe/2)):o.translate(Ie.left,Ie.top);const m=Yo[d]||[],v={width:ze,height:Fe};for(const e of m)e(o,r.scene,r.scales,v);y&&o.restore(),g&&(o.globalAlpha=1),s&&r.scales&&(tt(r.scales),ot(e=>e+1)),(null==He?void 0:He.showBadge)&&it(!!g),(a||r.hasActivePulses)&&(Ue.current=requestAnimationFrame(()=>Qe.current()))},e.useEffect(()=>(ut(),()=>{Ue.current&&(cancelAnimationFrame(Ue.current),Ue.current=0)}),[ut]),e.useEffect(()=>{Xe.current=!0,ut()},[d,ze,Fe,oe,Me,ut]),ne(He,ct,Xe,ut,rt,it);const kt=at&&Ze?de?de(Ze):p.createElement(Uo,{hover:Ze}):null,wt="radial"===E,At=Ze?wt?Ze.x+ze/2:Ze.x:0,St=Ze?wt?Ze.y+Fe/2:Ze.y:0,Et=kt?p.createElement("div",{className:"stream-ordinal-tooltip",style:{position:"absolute",left:Ie.left+At,top:Ie.top+St,transform:`translate(${At>.7*ze?"calc(-100% - 12px)":"12px"}, ${.3*Fe>St?"4px":"calc(-100% - 4px)"})`,pointerEvents:"none",zIndex:1,width:"max-content"}},kt):null;if(Pe){const e=ct.current;e&&g&&(e.ingest({inserts:g,bounded:!0}),e.computeScene({width:ze,height:Fe}));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"===E,a=i?Ie.left+ze/2:Ie.left,s=i?Ie.top+Fe/2:Ie.top;return p.createElement("div",{className:"stream-ordinal-frame"+(Ee?" "+Ee:""),role:"img","aria-label":"string"==typeof Se?Se:"Ordinal chart",style:{position:"relative",width:We[0],height:We[1]}},p.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:We[0],height:We[1],style:{position:"absolute",left:0,top:0}},we&&p.createElement("g",{transform:`translate(${Ie.left},${Ie.top})`},we),p.createElement("g",{transform:`translate(${a},${s})`},Me&&p.createElement("rect",{x:0,y:0,width:ze,height:Fe,fill:Me}),t.map((e,t)=>function(e,t){var n,o,r,i,a;const s=e.category||e.group||"",c=n=>`ord-${e.type}-${s}-${t}-${n}`,u=`ord-${e.type}-${s}-${t}`;switch(e.type){case"rect":{const t=e;return p.createElement("rect",{key:u,x:t.x,y:t.y,width:t.w,height:t.h,fill:Ce(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:Ce(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).endAngle(t.endAngle)({})||"";return p.createElement("path",{key:u,d:n,transform:`translate(${t.cx},${t.cy})`,fill:Ce(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:Ce(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:Ce(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:Ce(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:Ce(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(_o,{width:ze,height:Fe,totalWidth:We[0],totalHeight:We[1],margin:Ie,scales:n,showAxes:oe,showCategoryTicks:re,oLabel:ie,rLabel:ae,oFormat:se,rFormat:le,showGrid:pe,title:Se,legend:ye,legendHoverBehavior:me,legendClickBehavior:ve,legendHighlightedCategory:be,legendIsolatedCategories:xe,legendPosition:ke,foregroundGraphics:qe,annotations:ge,svgAnnotationRules:fe,annotationFrame:0,xAccessor:"string"==typeof f?f:void 0,yAccessor:"string"==typeof y?y:void 0,annotationData:null==e?void 0:e.getData()}),Oe&&"radial"===E&&p.createElement("div",{style:{position:"absolute",left:Ie.left+ze/2,top:Ie.top+Fe/2,transform:"translate(-50%, -50%)",pointerEvents:"none",textAlign:"center"}},Oe))}return p.createElement("div",{ref:Re,className:"stream-ordinal-frame"+(Ee?" "+Ee:""),role:"img","aria-label":"string"==typeof Se?Se:"Ordinal chart",tabIndex:0,style:{position:"relative",width:O?"100%":We[0],height:C?"100%":We[1],overflow:"visible"},onMouseMove:at?xt:void 0,onMouseLeave:at?mt:void 0,onKeyDown:bt},we&&p.createElement("svg",{style:{position:"absolute",top:0,left:0,width:We[0],height:We[1],pointerEvents:"none"}},p.createElement("g",{transform:`translate(${Ie.left},${Ie.top})`},we)),p.createElement(Lo,{width:ze,height:Fe,totalWidth:We[0],totalHeight:We[1],margin:Ie,scales:et,showAxes:oe,showGrid:pe,rFormat:le}),p.createElement("canvas",{ref:Ye,"aria-label":je(null!==(a=null===(i=ct.current)||void 0===i?void 0:i.scene)&&void 0!==a?a:[],d+" chart"),style:{position:"absolute",top:0,left:0,width:We[0],height:We[1]}}),p.createElement(Be,{hoverPoint:Ze}),Te&&p.createElement(De,{scene:null!==(c=null===(s=ct.current)||void 0===s?void 0:s.scene)&&void 0!==c?c:[],chartType:d+" chart"}),p.createElement(_o,{width:ze,height:Fe,totalWidth:We[0],totalHeight:We[1],margin:Ie,scales:et,showAxes:oe,showCategoryTicks:re,oLabel:ie,rLabel:ae,oFormat:se,rFormat:le,showGrid:pe,title:Se,legend:ye,legendHoverBehavior:me,legendClickBehavior:ve,legendHighlightedCategory:be,legendIsolatedCategories:xe,legendPosition:ke,foregroundGraphics:qe,annotations:ge,svgAnnotationRules:fe,annotationFrame:nt,xAccessor:"string"==typeof f?f:void 0,yAccessor:"string"==typeof y?y:void 0,annotationData:null===(u=ct.current)||void 0===u?void 0:u.getData(),underlayRendered:!0}),Oe&&"radial"===E&&p.createElement("div",{style:{position:"absolute",left:Ie.left+ze/2,top:Ie.top+Fe/2,transform:"translate(-50%, -50%)",pointerEvents:"none",textAlign:"center"}},Oe),(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}),{padding:"2px 8px",borderRadius:4,fontSize:11,fontWeight:600,pointerEvents:"none",background:rt?"#dc3545":"#28a745",color:"white"})},rt?"STALE":"LIVE"),Et)});Ko.displayName="StreamOrdinalFrame";const Qo=e.forwardRef(function(t,n){const o=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,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)},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:[]}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",orientation:u="vertical",valueFormat:d,colorBy:h,colorScheme:g="category10",sort:f=!1,barPadding:y=40,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,chartId:A,loading:S,emptyContent:E,legendInteraction:M,legendPosition:O,color:C,showCategoryTicks:P}=t,L=o.width,j=o.height,_=o.enableHover,D=o.showGrid,N=o.title,H=o.categoryLabel,T=o.valueLabel,R=i||[],W=eo({data:R,rawData:i,colorBy:h,colorScheme:g,legendInteraction:M,legendPosition:O,selection:x,linkedHover:k,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!0,onObservation:w,chartType:"BarChart",chartId:A,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:S,emptyContent:E,width:L,height:j});if(W.earlyReturn)return W.earlyReturn;qn("BarChart",R,"categoryAccessor",l),qn("BarChart",R,"valueAccessor",c);const I=Vt(R,f,c),z=Gt(),$=e.useMemo(()=>new Map,[R]),F=e.useMemo(()=>(e,t)=>{const n={};return n.fill=h?B(e,h,W.colorScale):qt(C,z,g,void 0,$),n},[h,W.colorScale,C,z,g,$]),G=e.useMemo(()=>Ht(F,W.effectiveSelectionHook,x),[F,W.effectiveSelectionHook,x]),q=e.useMemo(()=>dn({categoryAccessor:l,valueAccessor:c,groupAccessor:h&&h!==l?h:void 0,groupLabel:"string"==typeof h?h:"group"}),[l,c,h]),Y=vn({componentName:"BarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(Y)return p.createElement(hn,{componentName:"BarChart",message:Y,width:L,height:j});const X=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bar"},null!=i&&{data:I}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",pieceStyle:G,size:[L,j],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:W.margin,barPadding:y,enableHover:_,showAxes:o.showAxes,oLabel:H,rLabel:T,rFormat:d,showGrid:D,showCategoryTicks:P,oSort:f}),W.legendBehaviorProps),N&&{title:N}),s&&{className:s}),{tooltipContent:!1===m?()=>null:an(m)||q}),(k||w)&&{customHoverBehavior:W.customHoverBehavior}),v&&v.length>0&&{annotations:v}),b);return p.createElement(In,{componentName:"BarChart",width:L,height:j},p.createElement(Ko,Object.assign({ref:r},X)))});Qo.displayName="BarChart";const Zo=e.forwardRef(function(t,n){const o=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,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="category10",normalize:y=!1,barPadding:m=40,tooltip:v,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:A,chartId:S,loading:E,emptyContent:M,legendInteraction:O,legendPosition:C,color:P}=t,L=o.width,j=o.height,_=o.enableHover,D=o.showGrid,N=o.showLegend,H=o.title,T=o.categoryLabel,R=o.valueLabel,W=i||[],I=g||c,z=Zn({isPushMode:void 0===i,colorBy:I,colorScheme:f,showLegend:N,legendPosition:C}),$=e.useCallback(z.wrapPush(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)}),[z.wrapPush]),F=e.useCallback(z.wrapPushMany(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)}),[z.wrapPushMany]);e.useImperativeHandle(n,()=>({push:$,pushMany:F,clear:()=>{var e;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:[]}}),[$,F,z.resetCategories]);const G=eo({data:W,rawData:i,colorBy:I,colorScheme:f,legendInteraction:O,legendPosition:C,selection:k,linkedHover:w,fallbackFields:I?["string"==typeof I?I:""]:[],unwrapData:!0,onObservation:A,chartType:"StackedBarChart",chartId:S,showLegend:N,userMargin:a,marginDefaults:o.marginDefaults,loading:E,emptyContent:M,width:L,height:j});if(G.earlyReturn)return G.earlyReturn;const q=Gt(),Y=e.useMemo(()=>new Map,[W]),X=e.useMemo(()=>(e,t)=>I?G.colorScale?{fill:B(e,I,G.colorScale)}:{}:{fill:qt(P,q,f,t,Y)},[I,G.colorScale,P,q,f,Y]),V=e.useMemo(()=>Ht(X,G.effectiveSelectionHook,k),[X,G.effectiveSelectionHook,k]),U=e.useMemo(()=>dn({categoryAccessor:c,valueAccessor:u,groupAccessor:l}),[c,l,u]),K=vn({componentName:"StackedBarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:u},requiredProps:{stackBy:c}}),Q=e.useMemo(()=>z.streamingLegend?Object.assign(Object.assign({},G.legendBehaviorProps),{legend:z.streamingLegend,legendPosition:C||G.legendPosition}):G.legendBehaviorProps,[G.legendBehaviorProps,G.legendPosition,z.streamingLegend,C]),Z=e.useMemo(()=>{if(z.streamingMarginAdjust){const e=Object.assign({},G.margin);for(const[t,n]of Object.entries(z.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return G.margin},[G.margin,z.streamingMarginAdjust]),J=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"bar"},null!=i&&{data:W}),{oAccessor:l,rAccessor:u,stackBy:c,normalize:y,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:V,size:[L,j],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Z,barPadding:m,enableHover:_,showAxes:o.showAxes,oLabel:T,rLabel:R,rFormat:h,showGrid:D}),Q),H&&{title:H}),s&&{className:s}),{tooltipContent:!1===v?()=>null:an(v)||U}),(w||A)&&{customHoverBehavior:G.customHoverBehavior}),b&&b.length>0&&{annotations:b}),x);return K?p.createElement(hn,{componentName:"StackedBarChart",message:K,width:L,height:j}):p.createElement(In,{componentName:"StackedBarChart",width:L,height:j},p.createElement(Ko,Object.assign({ref:r},J)))});Zo.displayName="StackedBarChart";const Jo=e.forwardRef(function(t,n){const o=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,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="category10",barPadding:y=60,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,chartId:A,loading:S,emptyContent:E,legendInteraction:M,legendPosition:O,color:C}=t,P=o.width,L=o.height,j=o.enableHover,_=o.showGrid,D=o.showLegend,N=o.title,H=o.categoryLabel,T=o.valueLabel,R=i||[],W=g||c,I=Zn({isPushMode:void 0===i,colorBy:W,colorScheme:f,showLegend:D,legendPosition:O}),z=e.useCallback(I.wrapPush(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)}),[I.wrapPush]),$=e.useCallback(I.wrapPushMany(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)}),[I.wrapPushMany]);e.useImperativeHandle(n,()=>({push:z,pushMany:$,clear:()=>{var e;I.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:[]}}),[z,$,I.resetCategories]);const F=eo({data:R,rawData:i,colorBy:W,colorScheme:f,legendInteraction:M,legendPosition:O,selection:x,linkedHover:k,fallbackFields:W?["string"==typeof W?W:""]:[],unwrapData:!0,onObservation:w,chartType:"GroupedBarChart",chartId:A,showLegend:D,userMargin:a,marginDefaults:o.marginDefaults,loading:S,emptyContent:E,width:P,height:L});if(F.earlyReturn)return F.earlyReturn;const G=Gt(),q=e.useMemo(()=>new Map,[R]),Y=e.useMemo(()=>(e,t)=>W?F.colorScale?{fill:B(e,W,F.colorScale)}:{}:{fill:qt(C,G,f,t,q)},[W,F.colorScale,C,G,f,q]),X=e.useMemo(()=>Ht(Y,F.effectiveSelectionHook,x),[Y,F.effectiveSelectionHook,x]),V=e.useMemo(()=>dn({categoryAccessor:c,valueAccessor:u,groupAccessor:l}),[c,l,u]),U=vn({componentName:"GroupedBarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:u},requiredProps:{groupBy:c}}),K=e.useMemo(()=>I.streamingLegend?Object.assign(Object.assign({},F.legendBehaviorProps),{legend:I.streamingLegend,legendPosition:O||F.legendPosition}):F.legendBehaviorProps,[F.legendBehaviorProps,F.legendPosition,I.streamingLegend,O]),Q=e.useMemo(()=>{if(I.streamingMarginAdjust){const e=Object.assign({},F.margin);for(const[t,n]of Object.entries(I.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return F.margin},[F.margin,I.streamingMarginAdjust]),Z=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"clusterbar"},null!=i&&{data:R}),{oAccessor:l,rAccessor:u,groupBy:c,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:X,size:[P,L],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Q,barPadding:y,enableHover:j,showAxes:o.showAxes,oLabel:H,rLabel:T,rFormat:h,showGrid:_}),K),N&&{title:N}),s&&{className:s}),{tooltipContent:!1===m?()=>null:an(m)||V}),(k||w)&&{customHoverBehavior:F.customHoverBehavior}),v&&v.length>0&&{annotations:v}),b);return U?p.createElement(hn,{componentName:"GroupedBarChart",message:U,width:P,height:L}):p.createElement(In,{componentName:"GroupedBarChart",width:P,height:L},p.createElement(Ko,Object.assign({ref:r},Z)))});Jo.displayName="GroupedBarChart";const er=e.forwardRef(function(t,n){const o=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,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)},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:[]}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",orientation:u="vertical",valueFormat:d,colorBy:h,colorScheme:g="category10",sizeBy:f,sizeRange:y=[3,8],pointRadius:m=4,pointOpacity:v=.7,categoryPadding:b=20,tooltip:x,annotations:k,frameProps:w={},selection:A,linkedHover:S,onObservation:E,chartId:M,loading:O,emptyContent:C,legendInteraction:P,legendPosition:L,color:j,showCategoryTicks:_}=t,D=o.width,N=o.height,H=o.enableHover,R=o.showGrid,W=o.title,I=o.categoryLabel,z=o.valueLabel,$=i||[],F=eo({data:$,rawData:i,colorBy:h,colorScheme:g,legendInteraction:P,legendPosition:L,selection:A,linkedHover:S,fallbackFields:h?["string"==typeof h?h:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:E,chartType:"SwarmPlot",chartId:M,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:O,emptyContent:C,width:D,height:N});if(F.earlyReturn)return F.earlyReturn;const G=e.useMemo(()=>{if(!f)return;const e=$.map(e=>"function"==typeof f?f(e):e[f]);return[Math.min(...e),Math.max(...e)]},[$,f]),q=Gt(),Y=e.useMemo(()=>new Map,[$]),X=e.useMemo(()=>(e,t)=>{const n={fillOpacity:v};return n.fill=h?B(e,h,F.colorScale):qt(j,q,g,void 0,Y),n.r=f?T(e,f,y,G):m,n},[h,F.colorScale,f,y,G,m,v,j,q,g,Y]),V=e.useMemo(()=>Ht(X,F.effectiveSelectionHook,A),[X,F.effectiveSelectionHook,A]),U=e.useMemo(()=>dn({categoryAccessor:l,valueAccessor:c,groupAccessor:h||void 0}),[l,c,h]),K=vn({componentName:"SwarmPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(K)return p.createElement(hn,{componentName:"SwarmPlot",message:K,width:D,height:N});const Q=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"swarm"},null!=i&&{data:$}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",pieceStyle:V,size:[D,N],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:F.margin,barPadding:b,enableHover:H,showAxes:o.showAxes,oLabel:I,rLabel:z,rFormat:d,showGrid:R,showCategoryTicks:_}),F.legendBehaviorProps),W&&{title:W}),s&&{className:s}),{tooltipContent:!1===x?()=>null:an(x)||U}),(S||E)&&{customHoverBehavior:F.customHoverBehavior}),k&&k.length>0&&{annotations:k}),w);return p.createElement(In,{componentName:"SwarmPlot",width:D,height:N},p.createElement(Ko,Object.assign({ref:r},Q)))});er.displayName="SwarmPlot";const tr=e.forwardRef(function(t,n){const o=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,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)},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:[]}}));const{data:i,margin:a,className:s,categoryAccessor:l="category",valueAccessor:c="value",orientation:u="vertical",valueFormat:d,colorBy:h,colorScheme:g="category10",showOutliers:f=!0,categoryPadding:y=20,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,chartId:A,loading:S,emptyContent:E,legendInteraction:M,legendPosition:O,color:C,showCategoryTicks:P}=t,L=o.width,j=o.height,_=o.enableHover,D=o.showGrid,N=o.title,H=o.categoryLabel,T=o.valueLabel,R=i||[],W=eo({data:R,rawData:i,colorBy:h,colorScheme:g,legendInteraction:M,legendPosition:O,selection:x,linkedHover:k,fallbackFields:h?["string"==typeof h?h:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:w,chartType:"BoxPlot",chartId:A,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:S,emptyContent:E,width:L,height:j});if(W.earlyReturn)return W.earlyReturn;const I=Gt(),z=e.useMemo(()=>new Map,[R]),$=e.useMemo(()=>e=>{const t=h?B(e,h,W.colorScale):qt(C,I,g,void 0,z);return{fill:t,stroke:t,fillOpacity:.8}},[h,W.colorScale,C,I,g,z]),F=e.useMemo(()=>Ht($,W.effectiveSelectionHook,x),[$,W.effectiveSelectionHook,x]),G=e.useMemo(()=>e=>{const t=e.stats||(e.data||e).stats||{};return p.createElement("div",{className:"semiotic-tooltip",style:tn},p.createElement("div",{style:{fontWeight:"bold",marginBottom:"4px"}},(e.category||(e.data||e).category||"")+""),null!=t.median&&p.createElement(p.Fragment,null,null!=t.n&&p.createElement("div",null,"n = ",t.n),p.createElement("div",null,"Median: ",t.median.toLocaleString()),p.createElement("div",null,"Q1: ",t.q1.toLocaleString()),p.createElement("div",null,"Q3: ",t.q3.toLocaleString()),p.createElement("div",null,"Min: ",t.min.toLocaleString()),p.createElement("div",null,"Max: ",t.max.toLocaleString())))},[]),q=vn({componentName:"BoxPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(q)return p.createElement(hn,{componentName:"BoxPlot",message:q,width:L,height:j});const Y=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"boxplot"},null!=i&&{data:R}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",summaryStyle:F,showOutliers:f,size:[L,j],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:W.margin,barPadding:y,enableHover:_,showAxes:o.showAxes,oLabel:H,rLabel:T,rFormat:d,showGrid:D,showCategoryTicks:P}),W.legendBehaviorProps),N&&{title:N}),s&&{className:s}),{tooltipContent:!1===m?()=>null:an(m)||G}),(k||w)&&{customHoverBehavior:W.customHoverBehavior}),v&&v.length>0&&{annotations:v}),b);return p.createElement(In,{componentName:"BoxPlot",width:L,height:j},p.createElement(Ko,Object.assign({ref:r},Y)))});tr.displayName="BoxPlot";const nr=e.forwardRef(function(t,n){const o=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,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)},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:[]}}));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="category10",categoryPadding:y=20,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,chartId:A,loading:S,emptyContent:E,legendPosition:M,color:O,showCategoryTicks:C}=t,P=o.width,L=o.height,j=o.enableHover,_=o.showGrid,D=o.title,N=o.categoryLabel,H=o.valueLabel,T=i||[],R=eo({data:T,rawData:i,colorBy:g,colorScheme:f,legendInteraction:void 0,legendPosition:M,selection:x,linkedHover:k,fallbackFields:g?["string"==typeof g?g:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:w,chartType:"Histogram",chartId:A,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:S,emptyContent:E,width:P,height:L});if(R.earlyReturn)return R.earlyReturn;const W=e.useMemo(()=>{if(0===T.length)return;const e="function"==typeof c?c:e=>e[c];let t=1/0,n=-1/0;for(const o of T){const r=e(o);null!=r&&isFinite(r)&&(t>r&&(t=r),r>n&&(n=r))}return t>n?void 0:[t,n]},[T,c]),I=Gt(),z=e.useMemo(()=>new Map,[T]),$=e.useMemo(()=>e=>{const t=g?B(e,g,R.colorScale):qt(O,I,f,void 0,z);return{fill:t,stroke:t,fillOpacity:.8}},[g,R.colorScale,O,I,f,z]),F=e.useMemo(()=>Ht($,R.activeSelectionHook,x),[$,R.activeSelectionHook,x]),G=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:tn},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)))},[]),q=vn({componentName:"Histogram",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(q)return p.createElement(hn,{componentName:"Histogram",message:q,width:P,height:L});const Y=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:T}),{oAccessor:l,rAccessor:c,projection:"horizontal",summaryStyle:F,bins:u,normalize:d}),W&&{rExtent:W}),{size:[P,L],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:R.margin,barPadding:y,enableHover:j,showAxes:o.showAxes,oLabel:N,rLabel:H,rFormat:h,showGrid:_,showCategoryTicks:C}),R.legendBehaviorProps),D&&{title:D}),s&&{className:s}),{tooltipContent:!1===m?()=>null:an(m)||G}),(k||w)&&{customHoverBehavior:R.customHoverBehavior}),v&&v.length>0&&{annotations:v}),b);return p.createElement(In,{componentName:"Histogram",width:P,height:L},p.createElement(Ko,Object.assign({ref:r},Y)))});nr.displayName="Histogram";const or=e.forwardRef(function(t,n){const o=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,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)},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:[]}}));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="category10",categoryPadding:m=20,tooltip:v,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:A,chartId:S,loading:E,emptyContent:M,legendPosition:O,color:C,showCategoryTicks:P}=t,L=o.width,j=o.height,_=o.enableHover,D=o.showGrid,N=o.title,H=o.categoryLabel,T=o.valueLabel,R=i||[],W=eo({data:R,rawData:i,colorBy:f,colorScheme:y,legendInteraction:void 0,legendPosition:O,selection:k,linkedHover:w,fallbackFields:f?["string"==typeof f?f:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:A,chartType:"ViolinPlot",chartId:S,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:E,emptyContent:M,width:L,height:j});if(W.earlyReturn)return W.earlyReturn;const I=Gt(),z=e.useMemo(()=>new Map,[R]),$=e.useMemo(()=>e=>{const t=f?B(e,f,W.colorScale):qt(C,I,y,void 0,z);return{fill:t,stroke:t,fillOpacity:.6}},[f,W.colorScale,C,I,y,z]),F=e.useMemo(()=>Ht($,W.activeSelectionHook,k),[$,W.activeSelectionHook,k]),G=e.useMemo(()=>e=>{var t;const n=e.category||e.data&&(null===(t=e.data[0])||void 0===t?void 0:t.category)||"",o=e.stats;if(o)return p.createElement("div",{className:"semiotic-tooltip",style:tn},n&&p.createElement("div",{style:{fontWeight:"bold"}},n+""),p.createElement("div",null,"n = ",o.n),p.createElement("div",null,"Min: ",o.min.toLocaleString()),p.createElement("div",null,"Q1: ",o.q1.toLocaleString()),p.createElement("div",null,"Median: ",o.median.toLocaleString()),p.createElement("div",null,"Q3: ",o.q3.toLocaleString()),p.createElement("div",null,"Max: ",o.max.toLocaleString()),p.createElement("div",{style:{opacity:.8}},"Mean: ",o.mean.toLocaleString(void 0,{maximumFractionDigits:2})));const r=(Array.isArray(e.data)?e.data:[]).map(e=>{const t="function"==typeof c?c(e):e[c];return Number(t)}).filter(e=>!isNaN(e)).sort((e,t)=>e-t),i=r.length,a=i>0?r[Math.floor(i/2)]:null;return p.createElement("div",{className:"semiotic-tooltip",style:tn},n&&p.createElement("div",{style:{fontWeight:"bold"}},n+""),i>0&&p.createElement("div",null,"n = ",i),null!=a&&p.createElement("div",null,"Median: ",a.toLocaleString()))},[c]),q=vn({componentName:"ViolinPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(q)return p.createElement(hn,{componentName:"ViolinPlot",message:q,width:L,height:j});const Y=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"violin"},null!=i&&{data:R}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",summaryStyle:F,bins:d,showIQR:h,size:[L,j],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:W.margin,barPadding:m,enableHover:_,showAxes:o.showAxes,oLabel:H,rLabel:T,rFormat:g,showGrid:D,showCategoryTicks:P}),W.legendBehaviorProps),N&&{title:N}),s&&{className:s}),{tooltipContent:!1===v?()=>null:an(v)||G}),(w||A)&&{customHoverBehavior:W.customHoverBehavior}),b&&b.length>0&&{annotations:b}),x);return p.createElement(In,{componentName:"ViolinPlot",width:L,height:j},p.createElement(Ko,Object.assign({ref:r},Y)))});or.displayName="ViolinPlot";const rr=e.forwardRef(function(t,n){var o;const r=Jt(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,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)},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:[]}}));const{data:a,margin:s,className:l,categoryAccessor:c="category",valueAccessor:u="value",orientation:d="horizontal",valueFormat:h,colorBy:g,colorScheme:f="category10",sort:y=!0,dotRadius:m=5,categoryPadding:v=10,tooltip:b,annotations:x,frameProps:k={},selection:w,linkedHover:A,onObservation:S,chartId:E,loading:M,emptyContent:O,legendInteraction:C,legendPosition:P,color:L}=t,j=r.width,_=r.height,D=r.enableHover,N=r.showGrid,H=r.title,T=r.categoryLabel,R=r.valueLabel,W=a||[],I=eo({data:W,rawData:a,colorBy:g,colorScheme:f,legendInteraction:C,legendPosition:P,selection:w,linkedHover:A,fallbackFields:g?["string"==typeof g?g:""]:["string"==typeof c?c:""],unwrapData:!0,onObservation:S,chartType:"DotPlot",chartId:E,showLegend:r.showLegend,userMargin:s,marginDefaults:r.marginDefaults,loading:M,emptyContent:O,width:j,height:_});if(I.earlyReturn)return I.earlyReturn;const z=Vt(W,y,u),$=Gt(),F=e.useMemo(()=>new Map,[W]),G=e.useMemo(()=>(e,t)=>{const n={r:m,fillOpacity:.8};return n.fill=g?B(e,g,I.colorScale):qt(L,$,f,void 0,F),n},[g,I.colorScale,m,L,$,f,F]),q=e.useMemo(()=>Ht(G,I.effectiveSelectionHook,w),[G,I.effectiveSelectionHook,w]),Y=e.useMemo(()=>dn({categoryAccessor:c,valueAccessor:u}),[c,u]),X=vn({componentName:"DotPlot",data:a,accessors:{categoryAccessor:c,valueAccessor:u}});if(X)return p.createElement(hn,{componentName:"DotPlot",message:X,width:j,height:_});const V=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"point"},null!=a&&{data:z}),{oAccessor:c,rAccessor:u,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:q,size:[j,_],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:I.margin,barPadding:v,enableHover:D,showAxes:r.showAxes,oLabel:T,rLabel:R,rFormat:h,showGrid:N,oSort:y}),I.legendBehaviorProps),H&&{title:H}),l&&{className:l}),{tooltipContent:!1===b?()=>null:an(b)||Y}),(A||S)&&{customHoverBehavior:I.customHoverBehavior}),x&&x.length>0&&{annotations:x}),k);return p.createElement(In,{componentName:"DotPlot",width:j,height:_},p.createElement(Ko,Object.assign({ref:i},V)))});function ir(t){const n=Jt(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,categoryLabel:t.categoryLabel,valueLabel:t.valueLabel,showCategoryTicks:t.showCategoryTicks,orientation:t.orientation}),{data:o,margin:r,className:i,categoryAccessor:a="category",valueAccessor:s="value",orientation:l="horizontal",bins:c=20,amplitude:u=1.5,valueFormat:d,colorBy:h,colorScheme:g="category10",categoryPadding:f=5,tooltip:y,annotations:m,frameProps:v={},selection:b,linkedHover:x,onObservation:k,chartId:w,loading:A,emptyContent:S,legendPosition:E,color:M,showCategoryTicks:O}=t,C=n.width,P=n.height,L=n.enableHover,j=n.showGrid,_=n.title,D=n.categoryLabel,N=n.valueLabel,H=o||[],T=eo({data:H,rawData:o,colorBy:h,colorScheme:g,legendInteraction:void 0,legendPosition:E,selection:b,linkedHover:x,fallbackFields:h?["string"==typeof h?h:""]:["string"==typeof a?a:""],unwrapData:!0,onObservation:k,chartType:"RidgelinePlot",chartId:w,showLegend:n.showLegend,userMargin:r,marginDefaults:n.marginDefaults,loading:A,emptyContent:S,width:C,height:P});if(T.earlyReturn)return T.earlyReturn;const R=Gt(),W=e.useMemo(()=>new Map,[H]),I=e.useMemo(()=>e=>{const t=h?B(e,h,T.colorScale):qt(M,R,g,void 0,W);return{fill:t,stroke:t,fillOpacity:.5}},[h,T.colorScale,M,R,g,W]),z=e.useMemo(()=>Ht(I,T.activeSelectionHook,b),[I,T.activeSelectionHook,b]),$=e.useMemo(()=>e=>{var t;const n=e.category||e.data&&(null===(t=e.data[0])||void 0===t?void 0:t.category)||"",o=e.stats;return o?p.createElement("div",{className:"semiotic-tooltip",style:tn},n&&p.createElement("div",{style:{fontWeight:"bold"}},n+""),p.createElement("div",null,"n = ",o.n),p.createElement("div",null,"Min: ",o.min.toLocaleString()),p.createElement("div",null,"Q1: ",o.q1.toLocaleString()),p.createElement("div",null,"Median: ",o.median.toLocaleString()),p.createElement("div",null,"Q3: ",o.q3.toLocaleString()),p.createElement("div",null,"Max: ",o.max.toLocaleString()),p.createElement("div",{style:{opacity:.8}},"Mean: ",o.mean.toLocaleString(void 0,{maximumFractionDigits:2}))):p.createElement("div",{className:"semiotic-tooltip",style:tn},p.createElement("div",{style:{fontWeight:"bold"}},n+""))},[]),F=vn({componentName:"RidgelinePlot",data:o,accessors:{categoryAccessor:a,valueAccessor:s}});if(F)return p.createElement(hn,{componentName:"RidgelinePlot",message:F,width:C,height:P});const G=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"ridgeline"},null!=o&&{data:H}),{oAccessor:a,rAccessor:s,projection:"horizontal"===l?"horizontal":"vertical",summaryStyle:z,bins:c,size:[C,P],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:T.margin,barPadding:f,enableHover:L,showAxes:n.showAxes,oLabel:D,rLabel:N,rFormat:d,showGrid:j,showCategoryTicks:O,oSort:!1,amplitude:u}),T.legendBehaviorProps),_&&{title:_}),i&&{className:i}),{tooltipContent:!1===y?()=>null:an(y)||$}),(x||k)&&{customHoverBehavior:T.customHoverBehavior}),m&&m.length>0&&{annotations:m}),v);return p.createElement(In,{componentName:"RidgelinePlot",width:C,height:P},p.createElement(Ko,Object.assign({},G)))}rr.displayName="DotPlot",ir.displayName="RidgelinePlot";const ar=e.forwardRef(function(t,n){var o,r;const i=Jt(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,showCategoryTicks:t.showCategoryTicks}),a=e.useRef(null),{data:s,margin:l,className:c,categoryAccessor:u="category",valueAccessor:d="value",colorBy:h,colorScheme:g="category10",startAngle:f=0,tooltip:y,annotations:m,frameProps:v={},selection:b,linkedHover:x,onObservation:k,chartId:w,loading:A,emptyContent:S,legendInteraction:E,legendPosition:M,color:O}=t,C=i.width,P=i.height,L=i.enableHover,j=i.showLegend,_=i.title,D=s||[],N=h||u,H=Zn({isPushMode:void 0===s,colorBy:N,colorScheme:g,showLegend:j,legendPosition:M}),T=e.useCallback(H.wrapPush(e=>{var t;return null===(t=a.current)||void 0===t?void 0:t.push(e)}),[H.wrapPush]),R=e.useCallback(H.wrapPushMany(e=>{var t;return null===(t=a.current)||void 0===t?void 0:t.pushMany(e)}),[H.wrapPushMany]);e.useImperativeHandle(n,()=>({push:T,pushMany:R,clear:()=>{var e;H.resetCategories(),null===(e=a.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=a.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]}}),[T,R,H.resetCategories]);const W=eo({data:D,rawData:s,colorBy:N,colorScheme:g,legendInteraction:E,legendPosition:M,selection:b,linkedHover:x,fallbackFields:N?["string"==typeof N?N:""]:[],unwrapData:!0,onObservation:k,chartType:"PieChart",chartId:w,showLegend:j,userMargin:l,marginDefaults:i.marginDefaults,loading:A,emptyContent:S,width:C,height:P});if(W.earlyReturn)return W.earlyReturn;const I=Gt(),z=e.useMemo(()=>new Map,[D]),$=e.useMemo(()=>(e,t)=>N?W.colorScale?{fill:B(e,N,W.colorScale)}:{}:{fill:qt(O,I,g,t,z)},[N,W.colorScale,O,I,g,z]),F=e.useMemo(()=>Ht($,W.effectiveSelectionHook,b),[$,W.effectiveSelectionHook,b]),G=e.useMemo(()=>dn({categoryAccessor:u,valueAccessor:d,groupAccessor:h&&h!==u?h:void 0,groupLabel:"string"==typeof h?h:"group",pieData:!0}),[u,d,h]),q=vn({componentName:"PieChart",data:s,accessors:{categoryAccessor:u,valueAccessor:d}}),Y=e.useMemo(()=>H.streamingLegend?Object.assign(Object.assign({},W.legendBehaviorProps),{legend:H.streamingLegend,legendPosition:M||W.legendPosition}):W.legendBehaviorProps,[W.legendBehaviorProps,W.legendPosition,H.streamingLegend,M]),X=e.useMemo(()=>{if(H.streamingMarginAdjust){const e=Object.assign({},W.margin);for(const[t,n]of Object.entries(H.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return W.margin},[W.margin,H.streamingMarginAdjust]),V=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"pie"},null!=s&&{data:D}),{oAccessor:u,rAccessor:d,projection:"radial",pieceStyle:F,startAngle:f,size:[C,P],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:X,enableHover:L,showAxes:!1}),Y),_&&{title:_}),c&&{className:c}),{tooltipContent:!1===y?()=>null:an(y)||G}),(x||k)&&{customHoverBehavior:W.customHoverBehavior}),m&&m.length>0&&{annotations:m}),v);return q?p.createElement(hn,{componentName:"PieChart",message:q,width:C,height:P}):p.createElement(In,{componentName:"PieChart",width:C,height:P},p.createElement(Ko,Object.assign({ref:a},V)))});ar.displayName="PieChart";const sr=e.forwardRef(function(t,n){var o,r;const i=Jt(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,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="category10",startAngle:m=0,tooltip:v,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:A,chartId:S,loading:E,emptyContent:M,legendInteraction:O,legendPosition:C,color:P}=t,L=i.width,j=i.height,_=i.enableHover,D=i.showLegend,N=i.title,H=s||[],T=f||u,R=Zn({isPushMode:void 0===s,colorBy:T,colorScheme:y,showLegend:D,legendPosition:C}),W=e.useCallback(R.wrapPush(e=>{var t;return null===(t=a.current)||void 0===t?void 0:t.push(e)}),[R.wrapPush]),I=e.useCallback(R.wrapPushMany(e=>{var t;return null===(t=a.current)||void 0===t?void 0:t.pushMany(e)}),[R.wrapPushMany]);e.useImperativeHandle(n,()=>({push:W,pushMany:I,clear:()=>{var e;R.resetCategories(),null===(e=a.current)||void 0===e||e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=a.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]}}),[W,I,R.resetCategories]);const z=eo({data:H,rawData:s,colorBy:T,colorScheme:y,legendInteraction:O,legendPosition:C,selection:k,linkedHover:w,fallbackFields:T?["string"==typeof T?T:""]:[],unwrapData:!0,onObservation:A,chartType:"DonutChart",chartId:S,showLegend:D,userMargin:l,marginDefaults:i.marginDefaults,loading:E,emptyContent:M,width:L,height:j});if(z.earlyReturn)return z.earlyReturn;const $=Gt(),F=e.useMemo(()=>new Map,[H]),G=e.useMemo(()=>(e,t)=>T?z.colorScale?{fill:B(e,T,z.colorScale)}:{}:{fill:qt(P,$,y,t,F)},[T,z.colorScale,P,$,y,F]),q=e.useMemo(()=>Ht(G,z.effectiveSelectionHook,k),[G,z.effectiveSelectionHook,k]),Y=e.useMemo(()=>dn({categoryAccessor:u,valueAccessor:d,groupAccessor:f&&f!==u?f:void 0,groupLabel:"string"==typeof f?f:"group",pieData:!0}),[u,d,f]),X=vn({componentName:"DonutChart",data:s,accessors:{categoryAccessor:u,valueAccessor:d}}),V=e.useMemo(()=>R.streamingLegend?Object.assign(Object.assign({},z.legendBehaviorProps),{legend:R.streamingLegend,legendPosition:C||z.legendPosition}):z.legendBehaviorProps,[z.legendBehaviorProps,z.legendPosition,R.streamingLegend,C]),U=e.useMemo(()=>{if(R.streamingMarginAdjust){const e=Object.assign({},z.margin);for(const[t,n]of Object.entries(R.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return z.margin},[z.margin,R.streamingMarginAdjust]),K=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({chartType:"donut"},null!=s&&{data:H}),{oAccessor:u,rAccessor:d,projection:"radial",pieceStyle:q,innerRadius:h,startAngle:m,centerContent:g,size:[L,j],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:U,enableHover:_,showAxes:!1}),V),N&&{title:N}),c&&{className:c}),{tooltipContent:!1===v?()=>null:an(v)||Y}),(w||A)&&{customHoverBehavior:z.customHoverBehavior}),b&&b.length>0&&{annotations:b}),x);return X?p.createElement(hn,{componentName:"DonutChart",message:X,width:L,height:j}):p.createElement(In,{componentName:"DonutChart",width:L,height:j},p.createElement(Ko,Object.assign({ref:a},K)))});sr.displayName="DonutChart";const lr=e.forwardRef(function(t,n){const o=Jt(t.mode,{width:t.width,height:t.height,showGrid:!1,enableHover:t.enableHover,showLegend:t.showLegend,title:t.title,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)},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:[]}}));const{data:i,margin:a,className:s,stepAccessor:l="step",valueAccessor:c="value",categoryAccessor:u,colorBy:d,colorScheme:h="category10",orientation:g="horizontal",connectorOpacity:f=.3,showLabels:y=!0,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,chartId:A,loading:S,emptyContent:E,legendInteraction:M,legendPosition:O,color:C}=t,P="vertical"===g,L=o.width,j=o.height,_=o.enableHover,D=o.title,N=i||[],H=d||u,T=!H,R=eo({data:N,rawData:i,colorBy:H,colorScheme:h,legendInteraction:M,legendPosition:O,selection:x,linkedHover:k,fallbackFields:H?["string"==typeof H?H:""]:[],unwrapData:!0,onObservation:w,chartType:"FunnelChart",chartId:A,showLegend:o.showLegend,userMargin:a,marginDefaults:P?{top:D?60:40,right:20,bottom:60,left:60}:{top:D?40:10,right:10,bottom:10,left:10},loading:S,emptyContent:E,width:L,height:j});if(R.earlyReturn)return R.earlyReturn;qn("FunnelChart",N,"stepAccessor",l),qn("FunnelChart",N,"valueAccessor",c);const W=Gt(),I=e.useMemo(()=>new Map,[N]),z=e.useMemo(()=>{if(T)return C||((null==W?void 0:W[0])?W[0]:Array.isArray(h)&&h[0]?h[0]:"#4e79a7")},[T,C,W,h]),$=e.useMemo(()=>(e,t)=>{const n={};return n.fill=z||(H?B(e,H,R.colorScale):qt(C,W,h,t,I)),n},[z,H,R.colorScale,C,W,h,I]),F=e.useMemo(()=>Ht($,R.effectiveSelectionHook,x),[$,R.effectiveSelectionHook,x]),G=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:tn},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))},[]),q=vn({componentName:"FunnelChart",data:i,accessors:{stepAccessor:l,valueAccessor:c}});if(q)return p.createElement(hn,{componentName:"FunnelChart",message:q,width:L,height:j});const Y=Object.assign(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:P?"bar-funnel":"funnel"},null!=i&&{data:N}),{oAccessor:l,rAccessor:c}),u&&{stackBy:u}),{projection:P?"vertical":"horizontal",barPadding:P?40:0,pieceStyle:F,size:[L,j],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:R.margin,enableHover:_,showAxes:P,showCategoryTicks:P,showGrid:P}),!P&&{connectorOpacity:f}),{showLabels:y}),R.legendBehaviorProps),D&&{title:D}),s&&{className:s}),{tooltipContent:!1===m?()=>null:!0===m||null==m?G:an(m)||G}),(k||w)&&{customHoverBehavior:R.customHoverBehavior}),v&&v.length>0&&{annotations:v}),b);return p.createElement(In,{componentName:"FunnelChart",width:L,height:j},p.createElement(Ko,Object.assign({ref:r},Y)))});lr.displayName="FunnelChart";const cr={weightChange:.1,newEdge:.5,newNode:1,threshold:3,transitionDuration:500},ur={radius:3,opacity:.7,speedMultiplier:1,maxPerEdge:50,spawnRate:.1};class dr{constructor(e){this.capacity=e,this.particles=Array(e);for(let t=0;e>t;t++)this.particles[t]={t:0,offset:0,edgeIndex:0,active:!1,x:0,y:0}}spawn(e){for(let t=0;this.capacity>t;t++){const n=this.particles[t];if(!n.active)return n.active=!0,n.t=0,n.offset=Math.random()-.5,n.edgeIndex=e,n.x=0,n.y=0,n}return null}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;continue}const l=o&&null!==(r=o[a.edgeIndex])&&void 0!==r?r:1;if(a.t+=e*t*l*(s.bezier.circular?.3:1),a.t>=1){a.active=!1;continue}const c=hr(s.bezier,a.t,a.offset);a.x=c.x,a.y=c.y}}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}resize(e){if(this.capacity>=e)return;const t=this.particles;this.particles=Array(e);for(let n=0;e>n;n++)this.particles[n]=t.length>n?t[n]:{t:0,offset:0,edgeIndex:0,active:!1,x:0,y:0};this.capacity=e}}function hr(e,t,n){if(e.circular&&e.segments)return function(e,t,n,o){const r=e.length,i=t*r,a=Math.min(Math.floor(i),r-1),s=i-a,[l,c,u,d]=e[a],h=gr(l,c,u,d,s),g=d.x-l.x,f=d.y-l.y,p=Math.sqrt(g*g+f*f);if(p>.001){const e=g/p;h.x+=-f/p*n*o*2,h.y+=e*n*o*2}return h}(e.segments,t,n,e.halfWidth);if(!e.points)return{x:0,y:0};const[o,r,i,a]=e.points,s=gr(o,r,i,a,t),l=a.x-o.x,c=a.y-o.y,u=Math.sqrt(l*l+c*c);if(u>.001){const t=l/u;s.x+=-c/u*n*e.halfWidth*2,s.y+=t*n*e.halfWidth*2}return s}function gr(e,t,n,o,r){const i=1-r,a=i*i,s=a*i,l=r*r,c=l*r;return{x:s*e.x+3*a*r*t.x+3*i*l*n.x+c*o.x,y:s*e.y+3*a*r*t.y+3*i*l*n.y+c*o.y}}function fr(e,t){var n=e.get(t);if(!n)throw Error("missing: "+t);return n}function pr(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 yr(e){return e.y0-e.y1>0?"up":"down"}function mr(e,t){return t(e.source)==t(e.target)}function vr(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 br(e){return e.target.x0-e.source.x1}function xr(e,t){var n=wr(e),o=br(t)/Math.tan(n);return"up"==yr(e)?e.y1-o:e.y1+o}function kr(e,t){var n=wr(e),o=br(t)/Math.tan(n);return"up"==yr(e)?e.y1+o:e.y1-o}function wr(e){var t=Math.abs(e.y1-e.y0);return Math.atan(Math.abs(e.target.x0-e.source.x1)/t)}function Ar(e,t){return t(e)}function Sr(e){return Mr(e.source)}function Er(e){return Mr(e.target)}function Mr(e){return(e.y0+e.y1)/2}function Or(e){return e.virtual?0:e.value}function Cr(e,t){var n=0;e.sourceLinks.forEach(function(e){n=e.circular&&!mr(e,t)?n+1:n});var o=0;return e.targetLinks.forEach(function(e){o=e.circular&&!mr(e,t)?o+1:o}),n+o}function Pr(e){return e.target.depth}function Lr(e,t){return e.sourceLinks.length?e.depth:t-1}function jr(e,t){return e.y0-t.y0}function _r(e,t){return t.y0-e.y0}function Dr(e,t){return e.y1-t.y1}function Nr(e,t){return t.y1-e.y1}function Br(e,t){return Tr(e.source,t.source)||e.index-t.index}function Hr(e,t){return Tr(e.target,t.target)||e.index-t.index}function Tr(e,t){return e.partOfCycle===t.partOfCycle?e.y0-t.y0:"top"===e.circularLinkType||"bottom"===t.circularLinkType?-1:1}function Rr(e,t){return Wr(e)==Wr(t)?"bottom"==e.circularLinkType?_r(e,t):jr(e,t):Wr(t)-Wr(e)}function Wr(e){return e.target.column-e.source.column}function Ir(e,t){return zr(e)==zr(t)}function zr(e){return e.y0-e.y1>0?"up":"down"}function $r(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}),Fr(i.links.filter(function(e){return"top"==e.circularLinkType}),t,n),Fr(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,mr(e,t)&&vr(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?_r:jr);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?Nr:Dr),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 Fr(e,t,n){e.sort(Rr);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(mr(e,t)&&vr(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&&Gr(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 Gr(e,t){return e.source.column>=t.target.column&&t.source.column>=e.target.column}function qr(e){return function(){return e}}function Yr(e){return e.index}function Xr(e){return e.nodes}function Vr(e){return e.links}function Ur(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+=Mr(e.source)*t,o+=t}}),n.sourceLinks.forEach(function(e){if(!e.circular){var t=e.value||1;r+=Mr(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?Cr(t,n)-Cr(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==Cr(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 Kr(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&&Cr(r,n)>0){var c=a.mean(r.sourceLinks,Er),u=a.mean(r.targetLinks,Sr),d=c&&u?(c+u)/2:c||u;if(d){var h=(d-Mr(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,Er),f=a.mean(r.targetLinks,Sr),p=((g&&f?(g+f)/2:g||f)-Mr(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||Tr),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 Qr(e){e.nodes.forEach(function(e){e.sourceLinks.sort(Hr),e.targetLinks.sort(Br)}),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 Zr(){var e=0,t=0,n=1,o=1,r=24,i=8,s=null,l=Yr,c=Lr,u=void 0,d=32,h=2,g=Xr,f=Vr;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=fr(n,o)),"object"!=typeof r&&(r=e.target=fr(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=pr(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){Ar(e,t)!=Ar(r.source,t)&&Ar(e,t)!=Ar(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),mr(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,Or),a.sum(e.targetLinks,Or)),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),Ur(g,u,l),Kr(g,u,l,f,f,d),Qr(g),$r(g,l,h,10,8),Ur(g,u,l),Kr(g,u,l,f,f,d),Qr(g),$r(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 Ar(n.source,t)==Ar(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(!Ir(e,t))return e.y1-t.y1;if(e.target.column>t.target.column){var n=xr(t,e);return e.y1-n}if(t.target.column>e.target.column)return xr(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 Ar(n.target,t)==Ar(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(!Ir(e,t))return e.y0-t.y0;if(e.source.column>t.source.column){var n=kr(t,e);return e.y0-n}if(t.source.column>e.source.column)return kr(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),$r(g,l,h,10,8)}(p),p}return p.update=function(e){return Qr(e),$r(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:qr(e),p):g},p.links=function(e){return arguments.length?(f="function"==typeof e?e:qr(e),p):f},p.nodeId=function(e){return arguments.length?(l="function"==typeof e?e:qr(e),p):l},p.nodeAlign=function(e){return arguments.length?(c="function"==typeof e?e:qr(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 Jr=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 ei(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 ti={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(Pr))-1:0},justify:Lr},ni={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=Zr().extent(v).links(m).nodes(y).nodeAlign(ti[h]||Lr).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 i,a,s,l;const c="vertical"===n.orientation?"down":"right",u=n.nodeStyle,d=n.edgeStyle,h=null!==(i=n.edgeOpacity)&&void 0!==i?i:.5,g=n.edgeColorBy||"source",f=Array.isArray(n.colorScheme)?n.colorScheme:r.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(t):{},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(e):{};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?ei(e):Jr(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}}},oi={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=ri(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=ii(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=ii(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=g?40:f,y=ai(n.nodeSize,n.nodeSizeRange,e),m=e=>y(e),v=d.forceLink().strength(e=>Math.min(2.5,e.weight?e.weight*a:a)).id(e=>e.id),b=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(b.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}));b.force("link",v),b.force("link").links(e)}g?b.alpha(.3):.1>b.alpha()&&b.alpha(1),b.stop();for(let e=0;p>e;++e)b.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 x=new Map;for(const t of e)x.set(t.id,t);for(const e of t){if("string"==typeof e.source){const t=x.get(e.source);t&&(e.source=t)}if("string"==typeof e.target){const t=x.get(e.target);t&&(e.target=t)}}},buildScene(e,t,n,o){var i,a,s;const l=n.nodeStyle,c=n.edgeStyle,u=ai(n.nodeSize,n.nodeSizeRange,e),d=Array.isArray(n.colorScheme)?n.colorScheme:r.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(t),n=l?l(t):{},o={fill:n.fill||h.get(t.id)||"#007bff",stroke:n.stroke||"#fff",strokeWidth:null!==(i=n.strokeWidth)&&void 0!==i?i: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(e):{},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(n);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 ri(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 ii(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 ai(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 si=r.schemeCategory10,li={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:si,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(n).fill||m.get(n.id)||y[t%y.length]:m.get(n.id)||y[t%y.length];const a=g?g(n):{},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=ci(n,u,d);let r="#999";if(f)r=f(e).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(e):{},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 ci(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(" ")}function ui(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"}const di={supportsStreaming:!1,hierarchical:!0,computeLayout(e,t,n,o){var r;const i=n.__hierarchyRoot;if(!i)return;const a=n.chartType,l=(c=n.childrenAccessor)?"function"==typeof c?c:e=>e[c]:void 0;var c;const u=n.hierarchySum||(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:yi(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?hi(i,o,n):"treemap"===a||"partition"===a?gi(i,o):"circlepack"===a&&fi(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(x=n.nodeSize)?x:5,b=["#e8d5b7","#b8d4e3","#d4e3b8","#e3c4d4","#d4d4e3","#e3d4b8","#b8e3d4","#e3b8b8"];var x;for(const t of e){let e=t.x,o=t.y;p&&(e+=y,o+=m);const i=r(t);let s=i.fill||"#4d430c";n.colorByDepth&&void 0!==t.depth&&(s=b[t.depth%b.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 k=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=pi(o,r,a,s,f),d=i(e),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:k};h.push({type:"curved",pathD:u,style:g,datum:e})}if(!1!==n.showLabels){const t=mi(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=[],l=["#e8d5b7","#b8d4e3","#d4e3b8","#e3c4d4","#d4d4e3","#e3d4b8","#b8e3d4","#e3b8b8"];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(n);let c=s.fill||"#4d430c";t.colorByDepth&&void 0!==n.depth&&(c=l[n.depth%l.length]);const u={fill:c,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:u,datum:n,id:n.id,label:n.id,depth:n.depth})}if(!1!==t.showLabels){const n=mi(t.nodeLabel),r=t.labelMode||"leaf",a="partition"===t.chartType;for(const c of e){const e=c.x1-c.x0,u=c.y1-c.y0;if(0>=e||0>=u)continue;const d=!((null===(i=c.data)||void 0===i?void 0:i.children)&&c.data.children.length>0);if(!a){if("leaf"===r&&!d)continue;if("parent"===r&&d)continue}const h=n?n(c):c.id;if(!h)continue;if((d?30:40)>e||(d?16:14)>u)continue;let g=o(c).fill||"#4d430c";t.colorByDepth&&void 0!==c.depth&&(g=l[c.depth%l.length]);const f=ui(g);s.push(d?{x:c.x0+e/2,y:c.y0+u/2,text:h+"",anchor:"middle",baseline:"middle",fontSize:Math.min(11,Math.max(8,Math.min(e,u)/6)),fill:f}:{x:c.x0+4,y:c.y0+12,text:h+"",anchor:"start",baseline:"auto",fontSize:11,fontWeight:600,fill:f})}}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=[],d=["#e8d5b7","#b8d4e3","#d4e3b8","#e3c4d4","#d4d4e3","#e3d4b8","#b8e3d4","#e3b8b8"];for(const n of e){const e=null!==(r=n.__radius)&&void 0!==r?r:5;if(0>=e)continue;const s=o(n);let l=s.fill||"#4d430c";t.colorByDepth&&void 0!==n.depth&&(l=d[n.depth%d.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=mi(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(r).fill||"#4d430c";if(t.colorByDepth&&void 0!==r.depth&&(c=d[r.depth%d.length]),a){const t=ui(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 hi(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 gi(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 fi(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 pi(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}`}}function yi(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 mi(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 vi(e){const t=e;return t.__orbitState||(t.__orbitState={metaMap:new Map,startTime:"undefined"!=typeof performance?performance.now():Date.now()}),t.__orbitState}const bi={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=vi(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,E={id:n,depth:h,data:t,parentId:n},M=y?d/g(E)*S:d*S,O=l.pie().value(e=>{var t;return(null===(t=s(e))||void 0===t?void 0:t.length)?4:1}).sort(null),C=O(w),P=f(E);for(let t=0;w.length>t;t++){const s=(C[t].startAngle+C[t].endAngle)/2,l=w[t],u=m(c(l)),d=i+M*Math.sin(s),g=a+M*Math.cos(s)*P;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:M,angle:s,depth:h,parentId:n,eccentricity:P}),r.push({source:n,target:u,value:1,y0:0,y1:0,sankeyWidth:0,data:{source:n,target:u}}),e(l,u,d,g,M,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=vi(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(t),n=c?c(t):{},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(n);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=vi(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)},xi={sankey:ni,force:oi,chord:li,tree:di,cluster:di,treemap:di,circlepack:di,partition:di,orbit:bi};function ki(e){return xi[e]}class wi{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.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({},cr),e.tensionConfig),"sankey"===e.chartType&&e.showParticles&&(this.particlePool=new dr(2e3))}updateConfig(e){const t=this.config,n=e;t.__orbitState&&(n.__orbitState=t.__orbitState),t.__hierarchyRoot&&(n.__hierarchyRoot=t.__hierarchyRoot),this.config=e,this.tensionConfig=Object.assign(Object.assign({},cr),e.tensionConfig),"sankey"===e.chartType&&e.showParticles&&!this.particlePool&&(this.particlePool=new dr(2e3))}ingestHierarchy(e,t){this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null,this.config.__hierarchyRoot=e,this.runLayout(t)}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.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({},Ai(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({},Ai(o)),{data:n})),this.nodes.has(r)||this.nodes.set(r,Object.assign(Object.assign({},Ai(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,Ai(t)),this.nodeTimestamps.set(t,a),this.tension+=this.tensionConfig.newNode,i=!0),this.nodes.has(n)||(this.nodes.set(n,Ai(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;const s=ki(this.config.chartType);if(!s)return;let l=Array.from(this.nodes.values()),c=Array.from(this.edges.values());if(0===l.length&&!s.hierarchical)return;if(this.prepareForRelayout(),s.supportsStreaming&&!s.hierarchical){const e=new Map;for(const s of l)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(s.computeLayout(l,c,this.config,e),delete this.config.__previousPositions,s.hierarchical&&l.length>0){this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null;for(const e of l)this.nodes.set(e.id,e);for(let e=0;c.length>e;e++){const t=c[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)}}this.finalizeLayout();const u=new Map;for(const e of this.nodes.values())0===e.x&&0===e.y||u.set(e.id,{x:e.x,y:e.y});this._lastPositionSnapshot=u,this.saveTargetPositions(),l.some(e=>void 0!==e._prevX0&&(0!==e._prevX0||0!==e._prevX1||0!==e._prevY0||0!==e._prevY1))&&this.tensionConfig.transitionDuration>0&&(this.restorePreviousPositions(),this.transition={startTime:performance.now(),duration:this.tensionConfig.transitionDuration});const d=new Set(this.nodes.keys()),h=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 d)this.previousNodeIds.has(e)||this.addedNodes.add(e);for(const e of this.previousNodeIds)d.has(e)||this.removedNodes.add(e);for(const e of h)this.previousEdgeKeys.has(e)||this.addedEdges.add(e);for(const e of this.previousEdgeKeys)h.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=d,this.previousEdgeKeys=h,this.layoutVersion++}buildScene(e){const t=ki(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=ki(this.config.chartType);return!!(null==e?void 0:e.supportsAnimation)&&!1!==this.config.orbitAnimated}tickAnimation(e,t){const n=ki(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=W(e,this.transition),n=R(t);for(const e of this.nodes.values())void 0===e._targetX0||void 0===e._prevX0||0===e._prevX0&&0===e._prevX1||(e.x0=I(e._prevX0,e._targetX0,n),e.x1=I(e._prevX1,e._targetX1,n),e.y0=I(e._prevY0,e._targetY0,n),e.y1=I(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.y0=I(e._prevY0,e._targetY0,n),e.y1=I(e._prevY1,e._targetY1,n),e.sankeyWidth=I(e._prevSankeyWidth,e._targetSankeyWidth,n));return this.rebuildAllBeziers(),1>t||(this.snapToTargets(),this.transition=null,!1)}prepareForRelayout(){for(const e of this.nodes.values())e._prevX0=e.x0,e._prevX1=e.x1,e._prevY0=e.y0,e._prevY1=e.y1;for(const e of this.edges.values())e._prevY0=e.y0,e._prevY1=e.y1,e._prevSankeyWidth=e.sankeyWidth}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);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,n,o,r;const i=this.config.decay;if(!i)return;const a=null!==(e=i.minOpacity)&&void 0!==e?e:.1,s=this.nodeTimestamps.size;if(1>=s)return;this._decaySortedNodes||(this._decaySortedNodes=Array.from(this.nodeTimestamps.entries()).sort((e,t)=>e[1]-t[1]));const l=this._decaySortedNodes,c=new Map;for(let e=0;l.length>e;e++)c.set(l[e][0],e);for(const e of this.sceneNodes){const l=e.id;if(!l)continue;const u=c.get(l);if(void 0===u)continue;const d=s-1-u;let h;switch(i.type){case"linear":h=a+(1-d/(s-1))*(1-a);break;case"exponential":{const e=null!==(t=i.halfLife)&&void 0!==t?t:s/2;h=a+Math.pow(.5,d/e)*(1-a);break}case"step":h=(null!==(n=i.stepThreshold)&&void 0!==n?n:.5*s)>d?1:a;break;default:h=1}const g=null!==(r=null===(o=e.style)||void 0===o?void 0:o.opacity)&&void 0!==r?r:1;e.style=Object.assign(Object.assign({},e.style),{opacity:g*h})}}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())}}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.lastIngestTime=0,this._lastPositionSnapshot=null,this.nodeTimestamps.clear(),this.edgeTimestamps.clear(),this.particlePool&&this.particlePool.clear()}}function Ai(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 Si(e,t,n,o,r=30){let i=null,a=r,s=1/0;for(const t of e){const e=Ei(t,n,o);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=Pi(e,n,o);t&&a>t.distance&&(i=t,a=t.distance)}return i}function Ei(e,t,n){switch(e.type){case"circle":return function(e,t,n){const o=t-e.cx,r=n-e.cy,i=Math.sqrt(o*o+r*r);return i>Math.max(e.r,5)+5?null:{type:"node",datum:e.datum,x:e.cx,y:e.cy,distance:i}}(e,t,n);case"rect":return function(e,t,n){const o=F(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=G(Math.atan2(r,o)),s=G(e.startAngle),l=G(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 Mi=null,Oi=null;function Ci(){return Oi||(Mi=document.createElement("canvas"),Mi.width=1,Mi.height=1,Oi=Mi.getContext("2d")),Oi}function Pi(e,t,n){switch(e.type){case"bezier":return function(e,t,n){var o,r;if(!e.pathD)return null;try{const i=new Path2D(e.pathD),a=Ci();if(!a)return null;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;try{const o=new Path2D(e.pathD),r=Ci();if(!r)return null;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 Li(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,ce({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 ji(e,t){var n,o,r,i,a,s;if(!t.pathD)return;e.save();const l=new Path2D(t.pathD);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 _i(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 Di(e,t){var n,o,r,i;if(!t.pathD)return;e.save();const a=new Path2D(t.pathD);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 Ni(e,t){var n,o;if(!t.pathD)return;e.save();const r=new Path2D(t.pathD);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()}Li.displayName="NetworkSVGOverlay";const Bi={top:20,right:80,bottom:20,left:80},Hi={top:40,right:40,bottom:40,left:40},Ti=new Set(["chord","force","circlepack","orbit"]),Ri=[800,600],Wi={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 Ii({data:e}){var t,n,o,r,i,a;if("edge"===e.type){const t=e.data;return p.createElement("div",{className:"semiotic-tooltip",style:Wi},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:Wi},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:Wi},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 zi=e.forwardRef(function(t,n){var o,r,i,a,s,c,u,d,h,g,f;const{chartType:y,nodes:m,edges:v,data:b,initialEdges:x,nodeIDAccessor:k="id",sourceAccessor:w="source",targetAccessor:A="target",valueAccessor:S="value",childrenAccessor:E,hierarchySum:M,orientation:O="horizontal",nodeAlign:C="justify",nodePaddingRatio:P=.05,nodeWidth:L=15,iterations:_=300,forceStrength:D=.1,padAngle:N=.01,groupWidth:B=20,sortGroups:H,edgeSort:T,treeOrientation:R="vertical",edgeType:W="curve",padding:I,paddingTop:z,tensionConfig:$,showParticles:F=!1,particleStyle:G,nodeStyle:q,edgeStyle:Y,colorBy:X,colorScheme:V="category10",edgeColorBy:U="source",edgeOpacity:K=.5,colorByDepth:Q=!1,nodeSize:Z=8,nodeSizeRange:ee=[5,20],nodeLabel:oe,showLabels:re=!0,labelMode:ie,size:ae=Ri,responsiveWidth:se,responsiveHeight:le,margin:ce,className:ue,background:de,enableHover:he=!0,tooltipContent:ge,customHoverBehavior:fe,customClickBehavior:pe,onObservation:ye,chartId:me,onTopologyChange:ve,annotations:be,svgAnnotationRules:xe,legend:ke,legendPosition:we,legendHoverBehavior:Ae,legendClickBehavior:Se,legendHighlightedCategory:Ee,legendIsolatedCategories:Me,title:Oe,foregroundGraphics:Le,backgroundGraphics:je,decay:De,pulse:He,staleness:Te,thresholds:Re,accessibleTable:We,orbitMode:Ie,orbitSize:ze,orbitSpeed:qe,orbitRevolution:Ye,orbitRevolutionStyle:Xe,orbitEccentricity:Ve,orbitShowRings:Qe,orbitAnimated:Ze}=t,Je=Ti.has(y)?Hi:Bi,[et,tt]=te(ae,se,le),nt=Object.assign(Object.assign({},Je),ce),ot=tt[0]-nt.left-nt.right,rt=tt[1]-nt.top-nt.bottom,it="function"==typeof Le?Le({size:tt,margin:nt}):Le,at=e.useMemo(()=>Object.assign(Object.assign({},cr),$),[$]),st=e.useMemo(()=>Object.assign(Object.assign({},ur),G),[G]),lt=e.useMemo(()=>({chartType:y,nodeIDAccessor:k,sourceAccessor:w,targetAccessor:A,valueAccessor:S,childrenAccessor:E,hierarchySum:M,orientation:O,nodeAlign:C,nodePaddingRatio:P,nodeWidth:L,iterations:_,forceStrength:D,padAngle:N,groupWidth:B,sortGroups:H,edgeSort:T,treeOrientation:R,edgeType:W,padding:I,paddingTop:z,tensionConfig:at,showParticles:F,particleStyle:st,nodeStyle:q,edgeStyle:Y,nodeLabel:oe,showLabels:re,labelMode:ie,colorBy:X,colorScheme:V,edgeColorBy:U,edgeOpacity:K,colorByDepth:Q,nodeSize:Z,nodeSizeRange:ee,decay:De,pulse:He,staleness:Te,thresholds:Re,orbitMode:Ie,orbitSize:ze,orbitSpeed:qe,orbitRevolution:Ye,orbitRevolutionStyle:Xe,orbitEccentricity:Ve,orbitShowRings:Qe,orbitAnimated:Ze}),[y,k,w,A,S,E,M,O,C,P,L,_,D,N,B,H,T,R,W,I,z,at,F,st,q,Y,oe,re,ie,X,V,U,K,Q,Z,ee,De,He,Te,Re,Ie,ze,qe,Ye,Xe,Ve,Qe,Ze]),ct=e.useRef(null),ut=e.useRef(0),dt=e.useRef(0),ht=e.useRef(!0),gt=$e(e=>e.theme),ft=e.useRef(()=>{}),pt=e.useRef(null);pt.current||(pt.current=new wi(lt));const[yt,mt]=e.useState(null),[vt,bt]=e.useState(0),[xt,kt]=e.useState(0),[wt,At]=e.useState(!1),St=e.useRef(null),Et=e.useRef(new Map),Mt=e.useRef(0),Ot=e.useCallback(e=>{if("function"==typeof X)return X(e)+"";if("string"==typeof X&&e.data){const t=e.data[X];if(void 0!==t){if(!Et.current.has(t+"")){const e=Array.isArray(V)?V:j;Et.current.set(t+"",e[Mt.current++%e.length])}return Et.current.get(t+"")}}if(Et.current.has(e.id))return Et.current.get(e.id);const t=Array.isArray(V)?V:j,n=X?t[Mt.current++%t.length]:t[0];return Et.current.set(e.id,n),n},[X,V]),Ct=e.useCallback(e=>{if("function"==typeof U)return U(e);const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;return"target"===U&&n?Ot(n):t?Ot(t):"#999"},[U,Ot]),Pt=e.useCallback(e=>{if(!(null==G?void 0:G.colorBy))return Ct(e);const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;return"target"===st.colorBy&&n?Ot(n):t?Ot(t):"#999"},[null==G?void 0:G.colorBy,st.colorBy,Ot,Ct]),Lt="sankey"===y&&F||!!He||null!==(r=null===(o=pt.current)||void 0===o?void 0:o.isAnimating)&&void 0!==r&&r,jt=e.useCallback(()=>{ut.current&&!Lt||ut.current||(ut.current=requestAnimationFrame(()=>ft.current()))},[Lt]);e.useEffect(()=>{var e;null===(e=pt.current)||void 0===e||e.updateConfig(lt),ht.current=!0,jt()},[lt,jt]),e.useEffect(()=>{ht.current=!0,jt()},[gt,jt]);const _t=e.useCallback(()=>{var e;const t=pt.current;if(!t)return;t.runLayout([ot,rt]),t.buildScene([ot,rt]),ht.current=!0;for(const n of t.sceneNodes)n.id&&"string"==typeof(null===(e=n.style)||void 0===e?void 0:e.fill)&&Et.current.set(n.id,n.style.fill);const n=Array.isArray(V)?V:j,o=Array.from(t.nodes.values());for(let e=0;o.length>e;e++){const t=o[e];Et.current.has(t.id)||Et.current.set(t.id,n[e%n.length])}if(Mt.current=o.length,bt(t.layoutVersion),ve){const{nodes:e,edges:n}=t.getLayoutData();ve(e,n)}},[ot,rt,ve,V]),Dt=e.useCallback(e=>{const t=pt.current;t&&(t.ingestEdge(e)&&_t(),jt())},[_t,jt]),Nt=e.useCallback(e=>{const t=pt.current;if(!t)return;let n=!1;for(const o of e)t.ingestEdge(o)&&(n=!0);n&&_t(),jt()},[_t,jt]),Bt=e.useCallback(()=>{var e;null===(e=pt.current)||void 0===e||e.clear(),Et.current.clear(),Mt.current=0,bt(0),mt(null),St.current=null,ht.current=!0,jt()},[jt]),Ht=e.useCallback(()=>{const e=pt.current;e&&(e.tension+=999,_t(),jt())},[_t,jt]);e.useImperativeHandle(n,()=>({push:Dt,pushMany:Nt,clear:Bt,getTopology:()=>{var e,t;return null!==(t=null===(e=pt.current)||void 0===e?void 0:e.getLayoutData())&&void 0!==t?t:{nodes:[],edges:[]}},getTopologyDiff:()=>{const e=pt.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:Ht,getTension:()=>{var e,t;return null!==(t=null===(e=pt.current)||void 0===e?void 0:e.tension)&&void 0!==t?t:0}}),[Dt,Nt,Bt,Ht]);const Tt=["tree","cluster","treemap","circlepack","partition","orbit"].includes(y),Rt=Tt?b||(Array.isArray(v)?void 0:v):void 0;e.useEffect(()=>{var e;const t=pt.current;if(t)if(Tt&&Rt)t.ingestHierarchy(Rt,[ot,rt]),t.buildScene([ot,rt]),ht.current=!0,jt();else{const n=m||[],o=Array.isArray(v)?v:[];if(0===n.length&&0===o.length)return;t.ingestBounded(n,o,[ot,rt]),t.buildScene([ot,rt]);for(const n of t.sceneNodes)n.id&&(null===(e=n.style)||void 0===e?void 0:e.fill)&&Et.current.set(n.id,n.style.fill+"");const r=Array.isArray(V)?V:j,i=Array.from(t.nodes.values());for(let e=0;i.length>e;e++){const t=i[e];Et.current.has(t.id)||Et.current.set(t.id,r[e%r.length])}Mt.current=i.length,ht.current=!0,jt()}},[m,v,b,Rt,Tt,ot,rt,lt,jt,V]),e.useEffect(()=>{x&&x.length>0&&Nt(x)},[]);const Wt=e.useCallback(e=>{if(fe&&fe(e),ye){const t=Date.now();ye(e?{type:"hover",datum:e.data||{},x:e.x,y:e.y,timestamp:t,chartType:"StreamNetworkFrame",chartId:me}:{type:"hover-end",timestamp:t,chartType:"StreamNetworkFrame",chartId:me})}},[fe,ye,me]),It=e.useCallback(e=>{if(pe&&pe(e),ye){const t=Date.now();ye(e?{type:"click",datum:e.data||{},x:e.x,y:e.y,timestamp:t,chartType:"StreamNetworkFrame",chartId:me}:{type:"click-end",timestamp:t,chartType:"StreamNetworkFrame",chartId:me})}},[pe,ye,me]),zt=e.useRef(()=>{}),$t=e.useRef(()=>{});zt.current=e=>{if(!he)return;const t=ct.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-nt.left,r=e.clientY-n.top-nt.top;if(0>o||o>ot||0>r||r>rt)return void(St.current&&(St.current=null,mt(null),Wt&&(Wt(null),ht.current=!0),jt()));const i=pt.current;if(!i)return;const a=Si(i.sceneNodes,i.sceneEdges,o,r);if(!a)return void(St.current&&(St.current=null,mt(null),Wt&&(Wt(null),ht.current=!0),jt()));const s=a.datum||{},l=Object.assign(Object.assign({},"object"!=typeof s||null===s||Array.isArray(s)?{}:s),{type:a.type,data:s,x:a.x,y:a.y});St.current=l,mt(l),Wt&&(Wt(l),ht.current=!0),jt()},$t.current=()=>{St.current&&(St.current=null,mt(null),Wt&&(Wt(null),ht.current=!0),jt())};const Ft=e.useRef(()=>{});Ft.current=e=>{if(!pe&&!ye)return;const t=ct.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-nt.left,r=e.clientY-n.top-nt.top;if(0>o||o>ot||0>r||r>rt)return;const i=pt.current;if(!i)return;const a=Si(i.sceneNodes,i.sceneEdges,o,r);if(a){const e=a.datum||{};It(Object.assign(Object.assign({},"object"!=typeof e||null===e||Array.isArray(e)?{}:e),{type:a.type,data:e,x:a.x,y:a.y}))}else It(null)},e.useCallback(e=>zt.current(e),[]);const Gt=e.useCallback(()=>$t.current(),[]),qt=e.useCallback(e=>Ft.current(e),[]),Yt=e.useRef(-1),Xt=e.useCallback(e=>{const t=pt.current;if(!t)return;const n=function(e){const t=[];for(const n of e)"circle"===n.type&&null!=n.cx?t.push({x:n.cx,y:n.cy,datum:n.datum}):"rect"===n.type&&null!=n.x?t.push({x:n.x+n.w/2,y:n.y+n.h/2,datum:n.datum}):"arc"===n.type&&null!=n.cx&&t.push({x:n.cx,y:n.cy,datum:n.datum});return t.sort((e,t)=>e.x-t.x||e.y-t.y),t}(t.sceneNodes);if(0===n.length)return;const o=Yt.current,r=J(e.key,0>o?-1:o,n.length);if(null===r)return;if(e.preventDefault(),0>r)return Yt.current=-1,St.current=null,mt(null),Wt&&(Wt(null),ht.current=!0),void jt();const i=0>o?0:r;Yt.current=i;const a=n[i],s=a.datum||{},l=Object.assign(Object.assign({},"object"!=typeof s||null===s||Array.isArray(s)?{}:s),{type:"node",data:s,x:a.x,y:a.y});St.current=l,mt(l),Wt&&(Wt(l),ht.current=!0),jt()},[Wt,jt]),Vt=e.useCallback(e=>{Yt.current=-1,zt.current(e)},[]);ft.current=()=>{var e,t,n,o,r,i,a;ut.current=0;const s=ct.current;if(!s)return;const l=s.getContext("2d");if(!l)return;const c=pt.current;if(!c)return;const u=performance.now(),d=dt.current?Math.min((u-dt.current)/1e3,.1):.016;dt.current=u;const h=c.advanceTransition(u),g=c.tickAnimation([ot,rt],d);(h||ht.current||g)&&c.buildScene([ot,rt]);const f=Ge();if(!Fe(s,tt,nt,f))return;l.clearRect(-nt.left,-nt.top,tt[0],tt[1]),de&&(l.fillStyle=de,l.fillRect(0,0,ot,rt)),De&&c.applyDecay(),He&&c.applyPulse(u),Re&&c.applyThresholds(u),c.applyTopologyDiff(u);const p=null!==(e=null==Te?void 0:Te.threshold)&&void 0!==e?e:5e3,y=Te&&c.lastIngestTime>0&&u-c.lastIngestTime>p;if(y&&(l.globalAlpha=null!==(t=null==Te?void 0:Te.dimOpacity)&&void 0!==t?t:.5),function(e,t){for(const n of t)switch(n.type){case"bezier":ji(e,n);break;case"line":_i(e,n);break;case"ribbon":Di(e,n);break;case"curved":Ni(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)),Ue(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()),Ke(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),F&&c.particlePool&&!y){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:ur.spawnRate,s=null!==(i=o.maxPerEdge)&&void 0!==i?i:ur.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,st);const t=.5*(null!==(n=st.speedMultiplier)&&void 0!==n?n:1);let o;if(st.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:ur.radius,l=null!==(a=o.opacity)&&void 0!==a?a:ur.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,st,Pt)}}y&&(l.globalAlpha=1);const m=ht.current;if(ht.current=!1,m||h||g){const e=ct.current;e&&e.setAttribute("aria-label",_e(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"))}(m||h||g)&&kt(e=>e+1),(Lt||h||g||c.hasActivePulses||c.hasActiveThresholds||c.hasActiveTopologyDiff)&&(ut.current=requestAnimationFrame(()=>ft.current()))},e.useEffect(()=>(jt(),()=>{ut.current&&(cancelAnimationFrame(ut.current),ut.current=0)}),[jt]),e.useEffect(()=>{ht.current=!0,jt()},[y,ot,rt,de,jt]),ne(Te,pt,ht,jt,wt,At);const Ut=he&&yt?p.createElement("div",{className:"stream-network-tooltip",style:{position:"absolute",left:nt.left+yt.x,top:nt.top+yt.y,transform:`translate(${yt.x>.6*ot?"calc(-100% - 12px)":"12px"}, ${.3*rt>yt.y?"4px":"calc(-100% - 4px)"})`,pointerEvents:"none",zIndex:2,width:"max-content"}},ge?ge(yt):p.createElement(Ii,{data:yt})):null;if(Pe){const e=pt.current;if(e){const t=["tree","cluster","treemap","circlepack","partition","orbit"].includes(y),n=t?b||(Array.isArray(v)?void 0:v):void 0;if(t&&n)e.ingestHierarchy(n,[ot,rt]),e.buildScene([ot,rt]);else{const t=m||[],n=Array.isArray(v)?v:[];(t.length>0||n.length>0)&&(e.ingestBounded(t,n,[ot,rt]),e.buildScene([ot,rt]))}}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"+(ue?" "+ue:""),role:"img","aria-label":"string"==typeof Oe?Oe:"Network chart",style:{position:"relative",width:tt[0],height:tt[1]}},p.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:tt[0],height:tt[1],style:{position:"absolute",left:0,top:0}},je&&p.createElement("g",{transform:`translate(${nt.left},${nt.top})`},je),p.createElement("g",{transform:`translate(${nt.left},${nt.top})`},de&&p.createElement("rect",{x:0,y:0,width:ot,height:rt,fill:de}),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:Ce(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:Ce(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:Ce(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:Ce(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:Ce(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).endAngle(n.endAngle)({})||"";return p.createElement("path",{key:"net-arc-"+t,d:o,transform:`translate(${n.cx},${n.cy})`,fill:Ce(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(Li,{width:ot,height:rt,totalWidth:tt[0],totalHeight:tt[1],margin:nt,labels:o,sceneNodes:t,title:Oe,legend:ke,legendPosition:we,legendHoverBehavior:Ae,legendClickBehavior:Se,legendHighlightedCategory:Ee,legendIsolatedCategories:Me,foregroundGraphics:it,annotations:be,svgAnnotationRules:xe,annotationFrame:0}))}const Kt=pt.current;return p.createElement("div",{ref:et,className:"stream-network-frame"+(ue?" "+ue:""),role:"img","aria-label":"string"==typeof Oe?Oe:"Network chart",tabIndex:0,style:{position:"relative",width:se?"100%":tt[0],height:le?"100%":tt[1],overflow:"visible"},onMouseMove:he?Vt:void 0,onMouseLeave:he?Gt:void 0,onClick:pe||ye?qt:void 0,onKeyDown:Xt},je&&p.createElement("svg",{overflow:"visible",style:{position:"absolute",top:0,left:0,width:tt[0],height:tt[1],pointerEvents:"none",overflow:"visible"}},p.createElement("g",{transform:`translate(${nt.left},${nt.top})`},je)),p.createElement("canvas",{ref:ct,"aria-label":_e(null!==(u=null===(c=null==Kt?void 0:Kt.sceneNodes)||void 0===c?void 0:c.length)&&void 0!==u?u:0,null!==(h=null===(d=null==Kt?void 0:Kt.sceneEdges)||void 0===d?void 0:d.length)&&void 0!==h?h:0,"Network chart"),style:{position:"absolute",top:0,left:0}}),p.createElement(Be,{hoverPoint:yt}),We&&p.createElement(Ne,{nodes:null!==(g=null==Kt?void 0:Kt.sceneNodes)&&void 0!==g?g:[],edges:null!==(f=null==Kt?void 0:Kt.sceneEdges)&&void 0!==f?f:[],chartType:"Network chart"}),p.createElement(Li,{width:ot,height:rt,totalWidth:tt[0],totalHeight:tt[1],margin:nt,labels:(null==Kt?void 0:Kt.labels)||[],sceneNodes:null==Kt?void 0:Kt.sceneNodes,title:Oe,legend:ke,legendPosition:we,legendHoverBehavior:Ae,legendClickBehavior:Se,legendHighlightedCategory:Ee,legendIsolatedCategories:Me,foregroundGraphics:it,annotations:be,svgAnnotationRules:xe,annotationFrame:xt}),Ut,(null==Te?void 0:Te.showBadge)&&p.createElement("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===Te.badgePosition?{top:4,left:4}:"bottom-left"===Te.badgePosition?{bottom:4,left:4}:"bottom-right"===Te.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{background:wt?"#dc3545":"#28a745",color:"white",fontSize:10,fontWeight:700,padding:"2px 6px",borderRadius:3,letterSpacing:"0.05em",zIndex:3,pointerEvents:"none"})},wt?"STALE":"LIVE"))});zi.displayName="StreamNetworkFrame";const $i=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)},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=Jt(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLegend:t.showLegend,showLabels:t.showLabels,title:t.title},{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="category10",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:E={},onObservation:M,chartId:O,selection:C,linkedHover:P,loading:_,emptyContent:D,legendInteraction:N,legendPosition:H}=t,T=i.width,R=i.height,W=i.enableHover,I=i.showLegend,z=null!==(o=i.showLabels)&&void 0!==o&&o,$=i.title,F=Gn(_,T,R),G=F?null:Fn(a,T,R,D),q=a||[],Y=s||[],X=Xt(q,f,y),V=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of q){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[q,f]),U=Qt(N,f,V),K=Gt(),Q=e.useMemo(()=>new Map,[]),Z=e.useMemo(()=>{if(Array.isArray(y))return y;if(K&&K.length>0)return K;const e=L[y];return Array.isArray(e)?e:j},[y,K]),J=e.useMemo(()=>e=>{const t={};return t.fill=f?B(e.data||e,f,X):qt(void 0,K,y,void 0,Q),"number"==typeof m&&(t.r=m),t},[f,X,m,K,y,Q]),ee=e.useMemo(()=>e=>({stroke:x,strokeWidth:"number"==typeof b?b:"function"==typeof b?b(e):e[b]||1,opacity:k}),[b,x,k]),te=e.useMemo(()=>{if(z&&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}},[z,g]),{legend:ne,margin:oe,legendPosition:re}=Kt({data:q,colorBy:f,colorScale:X,showLegend:I,legendPosition:H,userMargin:l,defaults:i.marginDefaults}),{customHoverBehavior:ie}=Ut({selection:C,linkedHover:P,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:M,chartType:"ForceDirectedGraph",chartId:O}),ae=xn({componentName:"ForceDirectedGraph",nodes:a,edges:s,nodesRequired:!0,edgesRequired:!0,accessors:{nodeIDAccessor:u}});return ae?p.createElement(hn,{componentName:"ForceDirectedGraph",message:ae,width:T,height:R}):F||G||p.createElement(In,{componentName:"ForceDirectedGraph",width:T,height:R},p.createElement(zi,Object.assign({ref:r,chartType:"force"},null!=a&&{nodes:q},null!=s&&{edges:Y},{size:[T,R],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:oe,nodeIDAccessor:u,sourceAccessor:d,targetAccessor:h,iterations:w,forceStrength:A,nodeStyle:J,edgeStyle:ee,colorBy:f,colorScheme:Z,nodeSize:m,nodeSizeRange:v,nodeLabel:te,showLabels:z,enableHover:W,tooltipContent:!1===S?()=>null:an(S)||void 0,customHoverBehavior:P||M?ie:void 0,legend:ne,legendPosition:re},N&&"none"!==N&&{legendHoverBehavior:U.onLegendHover,legendClickBehavior:U.onLegendClick,legendHighlightedCategory:U.highlightedCategory,legendIsolatedCategories:U.isolatedCategories},{className:c,title:$},E)))});function Fi(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 Gi(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 qi(e){return"function"==typeof e?e:t=>t[e]||1}function Yi({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=B(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=B(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}}$i.displayName="ForceDirectedGraph";const Xi=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)},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=Jt(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title},{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="category10",edgeColorBy:m="source",padAngle:v=.01,groupWidth:b=20,sortGroups:x,nodeLabel:k,edgeOpacity:w=.5,tooltip:A,frameProps:S={},onObservation:E,chartId:M,selection:O,linkedHover:C,loading:P,emptyContent:_,legendInteraction:D}=t,N=i.width,H=i.height,T=i.enableHover,R=null===(o=i.showLabels)||void 0===o||o,W=i.title,I=Gn(P,N,H),z=I?null:Fn(s,N,H,_),$=s||[],F=e.useMemo(()=>Gi(a,$,u,d),[a,$,u,d]),G=Xt(F,f,y),q=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of F){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[F,f]),Y=Qt(D,f,q),X=Gt(),V=e.useMemo(()=>new Map,[]),U=e.useMemo(()=>{if(Array.isArray(y))return y;if(X&&X.length>0)return X;const e=L[y];return Array.isArray(e)?e:j},[y,X]),K=F.length>0,Q=e.useMemo(()=>{if(K)return(e,t)=>{var n,o;const r={stroke:"black",strokeWidth:1};if(f)r.fill=B(e.data||e,f,G);else{const i=Array.isArray(y)?y:L[y]||j,a=Array.isArray(i)?i:j,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}},[K,f,G,y]),Z=e.useMemo(()=>{if(K)return Yi({edgeColorBy:m,colorBy:f,colorScale:G,nodeStyleFn:Q||(e=>({fill:qt(void 0,X,y,void 0,V)})),edgeOpacity:w,baseStyle:{stroke:"black",strokeWidth:.5,strokeOpacity:w}})},[K,m,f,G,Q,w,X,y,V]),J=e.useMemo(()=>{if(!R)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}},[R,k,g]),ee=Object.assign(Object.assign({},i.marginDefaults),l),{customHoverBehavior:te}=Ut({selection:O,linkedHover:C,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:E,chartType:"ChordDiagram",chartId:M}),ne=xn({componentName:"ChordDiagram",edges:s,edgesRequired:!0});return ne?p.createElement(hn,{componentName:"ChordDiagram",message:ne,width:N,height:H}):I||z||p.createElement(In,{componentName:"ChordDiagram",width:N,height:H},p.createElement(zi,Object.assign({ref:r,chartType:"chord"},F.length>0&&{nodes:F},null!=s&&{edges:$},{size:[N,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ee,nodeIDAccessor:g,sourceAccessor:u,targetAccessor:d,valueAccessor:h,padAngle:v,groupWidth:b,sortGroups:x,nodeStyle:Q,edgeStyle:Z,colorBy:f,colorScheme:U,edgeColorBy:m,edgeOpacity:w,nodeLabel:J,showLabels:R,enableHover:T,tooltipContent:!1===A?()=>null:an(A)||void 0,customHoverBehavior:C||E?te:void 0},D&&"none"!==D&&{legendHoverBehavior:Y.onLegendHover,legendClickBehavior:Y.onLegendClick,legendHighlightedCategory:Y.highlightedCategory,legendIsolatedCategories:Y.isolatedCategories},{className:c,title:W},S)))});Xi.displayName="ChordDiagram";const Vi=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)},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=Jt(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title},{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="category10",edgeColorBy:m="source",orientation:v="horizontal",nodeAlign:b="justify",nodePaddingRatio:x=.05,nodeWidth:k=15,nodeLabel:w,edgeOpacity:A=.5,edgeSort:S,tooltip:E,frameProps:M={},onObservation:O,chartId:C,selection:P,linkedHover:_,loading:D,emptyContent:N,legendInteraction:H}=t,T=i.width,R=i.height,W=i.enableHover,I=null===(o=i.showLabels)||void 0===o||o,z=i.title,$=Gn(D,T,R),F=$?null:Fn(s,T,R,N),G=s||[],q=e.useMemo(()=>Gi(a,G,u,d),[a,G,u,d]),Y=Xt(q,f,y),X=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of q){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[q,f]),V=Qt(H,f,X),U=Gt(),K=e.useMemo(()=>new Map,[]),Q=e.useMemo(()=>{if(Array.isArray(y))return y;if(U&&U.length>0)return U;const e=L[y];return Array.isArray(e)?e:j},[y,U]),Z=e.useMemo(()=>e=>{const t={stroke:"black",strokeWidth:1};return t.fill=f?B(e.data||e,f,Y):qt(void 0,U,y,void 0,K),t},[f,Y,U,y,K]),J=e.useMemo(()=>Yi({edgeColorBy:m,colorBy:f,colorScale:Y,nodeStyleFn:Z,edgeOpacity:A,baseStyle:{stroke:"none",strokeWidth:0}}),[m,f,Y,Z,A]),ee=e.useMemo(()=>{if(!I)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}},[I,w,g]),te=Object.assign(Object.assign({},i.marginDefaults),l),{customHoverBehavior:ne,customClickBehavior:oe}=Ut({selection:P,linkedHover:_,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:O,chartType:"SankeyDiagram",chartId:C}),re=xn({componentName:"SankeyDiagram",edges:s,edgesRequired:!0});return re?p.createElement(hn,{componentName:"SankeyDiagram",message:re,width:T,height:R}):$||F||p.createElement(In,{componentName:"SankeyDiagram",width:T,height:R},p.createElement(zi,Object.assign({ref:r,chartType:"sankey"},q.length>0&&{nodes:q},null!=s&&{edges:G},{size:[T,R],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:te,nodeIDAccessor:g,sourceAccessor:u,targetAccessor:d,valueAccessor:h,orientation:v,nodeAlign:b,nodePaddingRatio:x,nodeWidth:k,nodeStyle:Z,edgeStyle:J,colorBy:f,colorScheme:Q,edgeColorBy:m,edgeOpacity:A,edgeSort:S,nodeLabel:ee,showLabels:I,enableHover:W,tooltipContent:!1===E?()=>null:an(E)||void 0,customHoverBehavior:_||O?ne:void 0,customClickBehavior:O?oe:void 0},H&&"none"!==H&&{legendHoverBehavior:V.onLegendHover,legendClickBehavior:V.onLegendClick,legendHighlightedCategory:V.highlightedCategory,legendIsolatedCategories:V.isolatedCategories},{className:c,title:z},M)))});function Ui(t){var n;const o=Jt(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title},{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="category10",colorByDepth:f=!1,edgeStyle:y="curve",nodeLabel:m,nodeSize:v=5,tooltip:b,frameProps:x={},onObservation:k,chartId:w,selection:A,linkedHover:S,loading:E,legendInteraction:M}=t,O=o.width,C=o.height,P=o.enableHover,_=null===(n=o.showLabels)||void 0===n||n,N=o.title,H=Gn(E,O,C),T=e.useMemo(()=>Fi(null!=r?r:null,c),[r,c]),R=Xt(T,f?void 0:h,g),W=e.useMemo(()=>{if(!h||f)return[];const e=new Set;for(const t of T){const n="function"==typeof h?h(t):t[h];null!=n&&e.add(n+"")}return Array.from(e)},[T,h,f]),I=Qt(M,f?void 0:h,W),z=Gt(),$=e.useMemo(()=>new Map,[]),F=e.useMemo(()=>{if(Array.isArray(g))return g;if(z&&z.length>0)return z;const e=L[g];return Array.isArray(e)?e:j},[g,z]),G=e.useMemo(()=>e=>{const t={stroke:"black",strokeWidth:1};return t.fill=f?D[(e.depth||0)%D.length]:h?B(e.data||e,h,R):qt(void 0,z,g,void 0,$),t},[h,f,R,z,g,$]),q=e.useMemo(()=>()=>({stroke:"#999",strokeWidth:1,fill:"none"}),[]),Y=e.useMemo(()=>{if("treemap"===s||"circlepack"===s||"partition"===s)return qi(u)},[s,u]),X=Object.assign(Object.assign({},o.marginDefaults),i),{customHoverBehavior:V}=Ut({selection:A,linkedHover:S,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!0,onObservation:k,chartType:"TreeDiagram",chartId:w}),U=bn({componentName:"TreeDiagram",data:r});return U?p.createElement(hn,{componentName:"TreeDiagram",message:U,width:O,height:C}):H||p.createElement(In,{componentName:"TreeDiagram",width:O,height:C},p.createElement(zi,Object.assign({chartType:s},null!=r&&{data:r},{size:[O,C],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:X,nodeIDAccessor:d,childrenAccessor:c,hierarchySum:Y,treeOrientation:l,edgeType:y,nodeStyle:G,edgeStyle:q,colorBy:h,colorScheme:F,colorByDepth:f,nodeSize:v,nodeLabel:_?m||d:void 0,showLabels:_,enableHover:P,tooltipContent:!1===b?()=>null:an(b)||void 0,customHoverBehavior:S||k?V:void 0},M&&"none"!==M&&{legendHoverBehavior:I.onLegendHover,legendClickBehavior:I.onLegendClick,legendHighlightedCategory:I.highlightedCategory,legendIsolatedCategories:I.isolatedCategories},{className:a,title:N},x)))}function Ki(t){var n;const o=Jt(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title,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="category10",colorByDepth:h=!1,labelMode:g="leaf",nodeLabel:f,padding:y=4,paddingTop:m,tooltip:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,chartId:A,loading:S,legendInteraction:E}=t,M=o.width,O=o.height,C=o.enableHover,P=null===(n=o.showLabels)||void 0===n||n,_=o.title,N=Gn(S,M,O),{activeSelectionHook:H,customHoverBehavior:T}=Ut({selection:x,linkedHover:k,fallbackFields:u?["string"==typeof u?u:""]:[],onObservation:w,chartType:"Treemap",chartId:A}),R=e.useCallback(e=>{if(!e)return T(null);const t=e.data||e;T({data:(null==t?void 0:t.data)||t})},[T]),W=e.useMemo(()=>Fi(null!=r?r:null,s),[r,s]),I=Xt(W,h?void 0:u,d),z=e.useMemo(()=>{if(!u||h)return[];const e=new Set;for(const t of W){const n="function"==typeof u?u(t):t[u];null!=n&&e.add(n+"")}return Array.from(e)},[W,u,h]),$=Qt(E,h?void 0:u,z),F=Gt(),G=e.useMemo(()=>new Map,[]),q=e.useMemo(()=>{if(Array.isArray(d))return d;if(F&&F.length>0)return F;const e=L[d];return Array.isArray(e)?e:j},[d,F]),Y=e.useMemo(()=>e=>{const t={stroke:"#fff",strokeWidth:1,strokeOpacity:.8};return t.fill=h?D[(e.depth||0)%D.length]:u?B(e.data||e,u,I):qt(void 0,F,d,void 0,G),t},[u,h,I,F,d,G]),X=e.useMemo(()=>H?e=>{var t;const n=Object.assign({},Y(e));if(H.isActive)if(H.predicate(e.data||e))(null==x?void 0:x.selectedStyle)&&Object.assign(n,x.selectedStyle);else{const e=null!==(t=null==x?void 0:x.unselectedOpacity)&&void 0!==t?t:.2;n.opacity=e,n.fillOpacity=e,n.strokeOpacity=e,(null==x?void 0:x.unselectedStyle)&&Object.assign(n,x.unselectedStyle)}return n}:Y,[Y,H,x]),V=e.useMemo(()=>qi(l),[l]),U=void 0!==m?m:!P||"parent"!==g&&"all"!==g?void 0:18,K=Object.assign(Object.assign({},o.marginDefaults),i),Q=bn({componentName:"Treemap",data:r});return Q?p.createElement(hn,{componentName:"Treemap",message:Q,width:M,height:O}):N||p.createElement(In,{componentName:"Treemap",width:M,height:O},p.createElement(zi,Object.assign({chartType:"treemap"},null!=r&&{data:r},{size:[M,O],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:K,nodeIDAccessor:c,childrenAccessor:s,hierarchySum:V,padding:y,paddingTop:U,nodeStyle:X,colorBy:u,colorScheme:q,colorByDepth:h,nodeLabel:P?f||c:void 0,showLabels:P,labelMode:g,enableHover:C,tooltipContent:!1===v?()=>null:an(v)||void 0},(k||w)&&{customHoverBehavior:R},E&&"none"!==E&&{legendHoverBehavior:$.onLegendHover,legendClickBehavior:$.onLegendClick,legendHighlightedCategory:$.highlightedCategory,legendIsolatedCategories:$.isolatedCategories},{className:a,title:_},b)))}function Qi(t){var n;const o=Jt(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title},{width:600,height:600}),{data:r,margin:i,className:a,childrenAccessor:s="children",valueAccessor:l="value",nodeIdAccessor:c="name",colorBy:u,colorScheme:d="category10",colorByDepth:h=!1,nodeLabel:g,circleOpacity:f=.7,padding:y=4,tooltip:m,frameProps:v={},onObservation:b,chartId:x,selection:k,linkedHover:w,loading:A,legendInteraction:S}=t,E=o.width,M=o.height,O=o.enableHover,C=null===(n=o.showLabels)||void 0===n||n,P=o.title,_=Gn(A,E,M),N=e.useMemo(()=>Fi(null!=r?r:null,s),[r,s]),H=Xt(N,h?void 0:u,d),T=e.useMemo(()=>{if(!u||h)return[];const e=new Set;for(const t of N){const n="function"==typeof u?u(t):t[u];null!=n&&e.add(n+"")}return Array.from(e)},[N,u,h]),R=Qt(S,h?void 0:u,T),W=Gt(),I=e.useMemo(()=>new Map,[]),z=e.useMemo(()=>{if(Array.isArray(d))return d;if(W&&W.length>0)return W;const e=L[d];return Array.isArray(e)?e:j},[d,W]),$=e.useMemo(()=>e=>{const t={stroke:"currentColor",strokeWidth:1,strokeOpacity:.3,fillOpacity:f};return t.fill=h?D[(e.depth||0)%D.length]:u?B(e.data||e,u,H):qt(void 0,W,d,void 0,I),t},[u,h,H,f,W,d,I]),F=e.useMemo(()=>qi(l),[l]),G=Object.assign(Object.assign({},o.marginDefaults),i),{customHoverBehavior:q}=Ut({selection:k,linkedHover:w,fallbackFields:u?["string"==typeof u?u:""]:[],unwrapData:!0,onObservation:b,chartType:"CirclePack",chartId:x}),Y=bn({componentName:"CirclePack",data:r});return Y?p.createElement(hn,{componentName:"CirclePack",message:Y,width:E,height:M}):_||p.createElement(In,{componentName:"CirclePack",width:E,height:M},p.createElement(zi,Object.assign({chartType:"circlepack"},null!=r&&{data:r},{size:[E,M],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:G,nodeIDAccessor:c,childrenAccessor:s,hierarchySum:F,padding:y,nodeStyle:$,colorBy:u,colorScheme:z,colorByDepth:h,nodeLabel:C?g||c:void 0,showLabels:C,enableHover:O,tooltipContent:!1===m?()=>null:an(m)||void 0,customHoverBehavior:w||b?q:void 0},S&&"none"!==S&&{legendHoverBehavior:R.onLegendHover,legendClickBehavior:R.onLegendClick,legendHighlightedCategory:R.highlightedCategory,legendIsolatedCategories:R.isolatedCategories},{className:a,title:P},v)))}Vi.displayName="SankeyDiagram",Ui.displayName="TreeDiagram",Ki.displayName="Treemap",Qi.displayName="CirclePack";const Zi=D;function Ji(t){const n=Jt(t.mode,{width:t.width,height:t.height,enableHover:t.enableHover,showLabels:t.showLabels,title:t.title},{width:600,height:600}),{data:o,margin:r,className:i,childrenAccessor:a="children",nodeIdAccessor:s="name",colorBy:l,colorScheme:c="category10",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:E={},onObservation:M,chartId:O,selection:C,linkedHover:P,loading:_}=t,D=n.width,N=n.height,H=n.enableHover,T=n.title,R=Gn(_,D,N),W=Xt(e.useMemo(()=>Fi(o,a),[o,a]),u?void 0:l,c),I=Gt(),z=e.useMemo(()=>new Map,[]),$=e.useMemo(()=>{if(Array.isArray(c))return c;if(I&&I.length>0)return I;const e=L[c];return Array.isArray(e)?e:j},[c,I]),F=e.useMemo(()=>{if(Array.isArray(c))return c;const e=L[c];return Array.isArray(e)?e:j},[c]),G=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?F[0]:Zi[(e.depth||0)%Zi.length]:l?B(e.data||e,l,W):qt(void 0,I,c,void 0,z),n.opacity=o?1:.85,n},[l,u,W,F,I,c,z]),q=e.useMemo(()=>()=>({stroke:"rgba(128,128,128,0.35)",strokeWidth:.5,opacity:1}),[]),Y=Object.assign({top:10,right:10,bottom:10,left:10},r),{customHoverBehavior:X}=Ut({selection:C,linkedHover:P,fallbackFields:l?["string"==typeof l?l:""]:[],unwrapData:!0,onObservation:M,chartType:"OrbitDiagram",chartId:O}),V=e.useMemo(()=>{if(X)return e=>{X(e&&e.data&&void 0!==e.data.data?Object.assign(Object.assign({},e),{data:e.data.data}):e)}},[X]),U=bn({componentName:"OrbitDiagram",data:o});return U?p.createElement(hn,{componentName:"OrbitDiagram",message:U,width:D,height:N}):R||p.createElement(In,{componentName:"OrbitDiagram",width:D,height:N},p.createElement(zi,Object.assign({chartType:"orbit"},null!=o&&{data:o},{size:[D,N],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Y,nodeIDAccessor:s,childrenAccessor:a,nodeStyle:G,edgeStyle:q,colorBy:l,colorScheme:$,colorByDepth:u,nodeSize:b,nodeLabel:x?s:void 0,showLabels:x,enableHover:!k&&H,tooltipContent:k?void 0:!1===w?()=>null:an(w)||void 0,customHoverBehavior:P||M?V:void 0,foregroundGraphics:A,annotations:S,className:i,title:T,orbitMode:d,orbitSize:h,orbitSpeed:g,orbitRevolution:f,orbitRevolutionStyle:y,orbitEccentricity:m,orbitShowRings:v,orbitAnimated:k},E)))}Ji.displayName="OrbitDiagram";const ea=e.forwardRef(function(t,n){var o,r,i,a;const s=Jt(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:E,tooltip:M,onHover:O,annotations:C,svgAnnotationRules:P,tickFormatTime:L,tickFormatValue:j,decay:_,pulse:D,staleness:N,transition:B,linkedHover:H,selection:T,onObservation:R,chartId:W,loading:I,emptyContent:z,emphasis:$,legendPosition:F}=t,G=s.showAxes,q=s.enableHover,Y=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=E?E:M,U=e.useRef(null),{customHoverBehavior:K}=Ut({selection:T,linkedHover:H,unwrapData:!0,onObservation:R,chartType:"RealtimeLineChart",chartId:W}),Q=e.useCallback(e=>{O&&O(e),K(e)},[O,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)},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:[]}}));const Z=Gn(I,X[0],X[1]),J=Z?null:Fn(f,X[0],X[1],z),ee={stroke:k,strokeWidth:w,strokeDasharray:A};return Z||J||p.createElement(pt,{ref:U,chartType:"line",runtimeMode:"streaming",size:X,margin:Y,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:q,tooltipContent:V,customHoverBehavior:Q,annotations:C,svgAnnotationRules:P,tickFormatTime:L,tickFormatValue:j,decay:_,pulse:D,staleness:N,transition:B,legendPosition:F})});ea.displayName="RealtimeLineChart";const ta=e.forwardRef(function(t,n){var o,r,i,a;const s=Jt(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:E,strokeWidth:M,gap:O,background:C,tooltipContent:P,tooltip:L,onHover:j,annotations:_,svgAnnotationRules:D,tickFormatTime:N,tickFormatValue:B,linkedHover:H,selection:T,decay:R,pulse:W,staleness:I,transition:z,onObservation:$,chartId:F,loading:G,emptyContent:q,emphasis:Y,legendPosition:X}=t,V=s.showAxes,U=s.enableHover,K=null!=u?u:s.marginDefaults,Q=null!=c?c:[s.width,s.height],Z=null!=P?P:L,J=e.useRef(null),{customHoverBehavior:ee}=Ut({selection:T,linkedHover:H,unwrapData:!0,onObservation:$,chartType:"RealtimeTemporalHistogram",chartId:F}),te=e.useCallback(e=>{j&&j(e),ee(e)},[j,ee]);e.useImperativeHandle(n,()=>({push:e=>{var t;return null===(t=J.current)||void 0===t?void 0:t.push(e)},pushMany:e=>{var t;return null===(t=J.current)||void 0===t?void 0:t.pushMany(e)},clear:()=>{var e;return null===(e=J.current)||void 0===e?void 0:e.clear()},getData:()=>{var e,t;return null!==(t=null===(e=J.current)||void 0===e?void 0:e.getData())&&void 0!==t?t:[]}}));const ne=Gn(G,Q[0],Q[1]),oe=ne?null:Fn(y,Q[0],Q[1],q),re={};return null!=S&&(re.fill=S),null!=E&&(re.stroke=E),null!=M&&(re.strokeWidth=M),null!=O&&(re.gap=O),ne||oe||p.createElement(pt,{ref:J,chartType:"bar",runtimeMode:"streaming",size:Q,margin:K,className:Y?`${d||""} semiotic-emphasis-${Y}`.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:re,showAxes:V,background:C,hoverAnnotation:U,tooltipContent:Z,customHoverBehavior:te,annotations:_,svgAnnotationRules:D,tickFormatTime:N,tickFormatValue:B,decay:R,pulse:W,staleness:I,transition:z,legendPosition:X})});ta.displayName="RealtimeTemporalHistogram";const na=ta,oa=e.forwardRef(function(t,n){var o,r,i,a;const s=Jt(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:E,stroke:M,strokeWidth:O,background:C,tooltipContent:P,tooltip:L,onHover:j,annotations:_,svgAnnotationRules:D,tickFormatTime:N,tickFormatValue:B,linkedHover:H,selection:T,onObservation:R,chartId:W,loading:I,emptyContent:z,emphasis:$,legendPosition:F}=t,G=s.showAxes,q=s.enableHover,Y=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=P?P:L,U=e.useRef(null),{customHoverBehavior:K}=Ut({selection:T,linkedHover:H,unwrapData:!0,onObservation:R,chartType:"RealtimeSwarmChart",chartId:W}),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)},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:[]}}));const Z=Gn(I,X[0],X[1]),J=Z?null:Fn(f,X[0],X[1],z),ee={};return null!=A&&(ee.radius=A),null!=S&&(ee.fill=S),null!=E&&(ee.opacity=E),null!=M&&(ee.stroke=M),null!=O&&(ee.strokeWidth=O),Z||J||p.createElement(pt,{ref:U,chartType:"swarm",runtimeMode:"streaming",size:X,margin:Y,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:C,hoverAnnotation:q,tooltipContent:V,customHoverBehavior:Q,annotations:_,svgAnnotationRules:D,tickFormatTime:N,tickFormatValue:B,legendPosition:F})});oa.displayName="RealtimeSwarmChart";const ra=e.forwardRef(function(t,n){var o,r,i,a;const s=Jt(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:E,stroke:M,strokeWidth:O,background:C,tooltipContent:P,tooltip:L,onHover:j,annotations:_,svgAnnotationRules:D,tickFormatTime:N,tickFormatValue:B,linkedHover:H,selection:T,onObservation:R,chartId:W,loading:I,emptyContent:z,emphasis:$,legendPosition:F}=t,G=s.showAxes,q=s.enableHover,Y=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=P?P:L,U=e.useRef(null),{customHoverBehavior:K}=Ut({selection:T,linkedHover:H,unwrapData:!0,onObservation:R,chartType:"RealtimeWaterfallChart",chartId:W}),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)},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:[]}}));const Z=Gn(I,X[0],X[1]),J=Z?null:Fn(f,X[0],X[1],z),ee={};return null!=k&&(ee.positiveColor=k),null!=w&&(ee.negativeColor=w),null!=A&&(ee.connectorStroke=A),null!=S&&(ee.connectorWidth=S),null!=E&&(ee.gap=E),null!=M&&(ee.stroke=M),null!=O&&(ee.strokeWidth=O),Z||J||p.createElement(pt,{ref:U,chartType:"waterfall",runtimeMode:"streaming",size:X,margin:Y,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:C,hoverAnnotation:q,tooltipContent:V,customHoverBehavior:Q,annotations:_,svgAnnotationRules:D,tickFormatTime:N,tickFormatValue:B,legendPosition:F})});ra.displayName="RealtimeWaterfallChart";const ia=e.forwardRef(function(t,n){var o,r,i,a;const s=Jt(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:E,tooltipContent:M,tooltip:O,onHover:C,annotations:P,svgAnnotationRules:L,tickFormatTime:j,tickFormatValue:_,decay:D,pulse:N,staleness:B,linkedHover:H,selection:T,onObservation:R,chartId:W,loading:I,emptyContent:z,emphasis:$,legendPosition:F}=t,G=s.showAxes,q=s.enableHover,Y=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=M?M:O,U=e.useRef(null),{customHoverBehavior:K}=Ut({selection:T,linkedHover:H,unwrapData:!0,onObservation:R,chartType:"RealtimeHeatmap",chartId:W}),Q=e.useCallback(e=>{C&&C(e),K(e)},[C,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)},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:[]}}));const Z=Gn(I,X[0],X[1]),J=Z?null:Fn(f,X[0],X[1],z);return Z||J||p.createElement(pt,{ref:U,chartType:"heatmap",runtimeMode:"streaming",size:X,margin:Y,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:E,hoverAnnotation:q,tooltipContent:V,customHoverBehavior:Q,annotations:P,svgAnnotationRules:L,tickFormatTime:j,tickFormatValue:_,decay:D,pulse:N,staleness:B,legendPosition:F})});ia.displayName="RealtimeHeatmap";let[aa]=He(e=>({tooltip:null,changeTooltip(t){e(()=>({tooltip:t}))}}));function sa(e,t){return Yn(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"),la(a,s),"svg"===n){const e=(new XMLSerializer).serializeToString(s);ca(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?(ca(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 la(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++)la(o[e],r[e])}function ca(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 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"]),da=new Set(["data","nodes","edges"]),ha="function"==typeof structuredClone?structuredClone:e=>JSON.parse(JSON.stringify(e));function ga(e){return Yn(this,arguments,void 0,function*(e,t="json"){const n="jsx"===t?fa(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 fa(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")}const pa={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 ya({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 ma({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 va=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="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=>Yn(this,void 0,void 0,function*(){v.current&&(yield sa(v.current,Object.assign(Object.assign({},S),e)))}),[S]),O=p.useCallback(()=>{m.current&&(document.fullscreenElement?document.exitFullscreen().catch(()=>{}):m.current.requestFullscreen().catch(()=>{}))},[]),C=p.useCallback(e=>Yn(this,void 0,void 0,function*(){a&&(yield ga(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:O,copyConfig:C,element:m.current}),[M,O,C]);const P=e||t||s||k||w||A||d,L=l?p.createElement(ya,{height:r}):c?p.createElement(ma,{error:c}):u?p.createElement(gn,null,n):n;return 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:ba},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"}))),w&&p.createElement("button",{className:"semiotic-chart-action",onClick:O,title:b?"Exit fullscreen":"Fullscreen","aria-label":b?"Exit fullscreen":"Enter fullscreen",style:ba},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:ba},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:pa[d].bg,color:pa[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})},L,h)))}),ba={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 xa({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 ka({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))}xa.displayName="ChartGrid",ka.displayName="ContextLayout";function wa({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}=Pt({types:A,chartId:i,limit:1}),E=void 0!==a?a:S;e.useEffect(()=>{if(E)if("click"===E.type||"hover"===E.type){const e=E;g(e.datum),y(e),m||(v(!0),x(!0),clearTimeout(w.current),w.current=setTimeout(()=>x(!1),200))}else!s||"click-end"!==E.type&&"hover-end"!==E.type||M()},[E]),e.useEffect(()=>{null==c||c(m)},[m,c]);const M=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 O=h&&f?t(h,f):null;if(null===O&&!b)return null;const C=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({},C),d)},l&&p.createElement("button",{className:"semiotic-details-close",onClick:M,"aria-label":"Close details",style:Aa},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}},O))}const Aa={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 Sa(e){return"nominal"===e||"ordinal"===e}function Ea(e){return"quantitative"===e||"temporal"===e}wa.displayName="DetailsPanel";const Ma={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"},Oa={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"},Ca={sum:"sum",mean:"mean",average:"mean",count:"count",min:"min",max:"max",median:"mean"};function Pa(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 La(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 ja(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 _a(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 Da="__forecastSegment";function Na(e,t){return"function"==typeof t?t(e):!!e[t]}const Ba=Object.freeze({__proto__:null,SEGMENT_FIELD:Da,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&&Na(e,u)?t="forecast":c&&Na(e,c)&&(t="training"),Object.assign(Object.assign({},e),{[Da]: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][Da]!==n[e+1][Da]&&(t.push(Object.assign(Object.assign({},n[e+1]),{[Da]:n[e][Da]})),t.push(Object.assign(Object.assign({},n[e]),{[Da]:n[e+1][Da]})));k.push(...b,...t)}else for(let e=0;b.length>e;e++)k.push(b[e]),b.length-1>e&&b[e][Da]!==b[e+1][Da]&&(k.push(Object.assign(Object.assign({},b[e+1]),{[Da]:b[e][Da]})),k.push(Object.assign(Object.assign({},b[e]),{[Da]:b[e+1][Da]})));if(o.trainUnderline){const e=[];for(const t of k)"training"===t[Da]&&e.push(Object.assign(Object.assign({},t),{[Da]:"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=>Na(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),{[Da]:"observed"})):f.push(Object.assign(Object.assign({},n),{[Da]:"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)),E=Math.max(...S),M=y.length>1?(y[o-1][0]-y[0][0])/(o-1):1;for(let e=1;c>=e;e++){const r=E+e*M,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,[Da]:"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]),{[Da]:"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),{[Da]:"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[Da];if("training"===o){let e=n.stroke;return"darken"===c?e=ja(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=_a(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:ja,lightenColor:_a});exports.AreaChart=Qn,exports.BarChart=Qo,exports.BoxPlot=tr,exports.BubbleChart=ro,exports.CategoryColorProvider=mt,exports.ChartContainer=va,exports.ChartGrid=xa,exports.ChordDiagram=Xi,exports.CirclePack=Qi,exports.ConnectedScatterplot=oo,exports.ContextLayout=ka,exports.DetailsPanel=wa,exports.DonutChart=sr,exports.DotPlot=rr,exports.ForceDirectedGraph=$i,exports.FunnelChart=lr,exports.GroupedBarChart=Jo,exports.Heatmap=io,exports.Histogram=nr,exports.LineChart=Kn,exports.LinkedCharts=Dt,exports.MultiAxisLineChart=xo,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=nn(e,n);l.push({value:on(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=on(nn(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:on(e[t],o)})});const c=Object.assign(Object.assign({},tn),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=Ji,exports.PieChart=ar,exports.QuadrantChart=po,exports.RealtimeHeatmap=ia,exports.RealtimeHistogram=na,exports.RealtimeLineChart=ea,exports.RealtimeSwarmChart=oa,exports.RealtimeWaterfallChart=ra,exports.RidgelinePlot=ir,exports.SankeyDiagram=Vi,exports.Scatterplot=to,exports.ScatterplotMatrix=fo,exports.StackedAreaChart=Jn,exports.StackedBarChart=Zo,exports.SwarmPlot=er,exports.ThemeProvider=function({theme:e,children:t}){const n="string"==typeof e&&Rt(e)?e:void 0;return p.createElement(ze,null,p.createElement(Wt.Provider,{value:n},p.createElement(It,{theme:e}),p.createElement(zt,null,t)))},exports.TooltipProvider=aa,exports.TreeDiagram=Ui,exports.Treemap=Ki,exports.ViolinPlot=or,exports.configToJSX=fa,exports.copyConfig=ga,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=Tn,exports.exportChart=sa,exports.fromConfig=function(e){if(!e.component||!e.props)throw Error("Invalid chart config: missing component or props");if(!Mn[e.component])throw Error(`Unknown component "${e.component}". This config may require a newer version of semiotic.`);return{componentName:e.component,props:ha(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 E;(null===(t=e.data)||void 0===t?void 0:t.values)?E=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 M={};e.width&&(M.width=e.width),e.height&&(M.height=e.height);const O=function(e){if(e)return"string"==typeof e?e:e.text}(e.title);if(O&&(M.title=O),(null==k?void 0:k.field)&&(M.colorBy=k.field,null===(o=k.scale)||void 0===o?void 0:o.scheme)){const e=Ma[k.scale.scheme];e&&(M.colorScheme=e)}void 0!==(null==S?void 0:S.value)&&(M.pointOpacity=S.value);const C=null==b?void 0:b.aggregate,P=null==x?void 0:x.aggregate;if(E&&(C||P)){const e=P?x:b,t=P?b:x,n=Ca[e.aggregate];if(n&&(null==t?void 0:t.field)&&e.field)E=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}(E,{groupBy:t.field,value:e.field,agg:n});else if(("count"===n||"count"===e.aggregate)&&(null==t?void 0:t.field)&&E){const e=new Map;for(const n of E){const o=n[t.field]+"";e.set(o,(e.get(o)||0)+1)}E=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";E&&(M.data=E),(null==b?void 0:b.bin)?(M.valueAccessor=b.field,(null==x?void 0:x.field)&&(M.categoryAccessor=x.field),(null===(r=b.axis)||void 0===r?void 0:r.title)&&(M.valueLabel=b.axis.title)):(null==x?void 0:x.bin)&&(M.valueAccessor=x.field,(null==b?void 0:b.field)&&(M.categoryAccessor=b.field),(null===(i=x.axis)||void 0===i?void 0:i.title)&&(M.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&&(M.bins=t),La(e,M,p)}let L;switch(y){case"bar":L=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",Sa(null==e?void 0:e.type)&&Ea(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)):Ea(null==e?void 0:e.type)&&Sa(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,M,E,C,P);break;case"line":if(L="LineChart",Pa(b,x,M,C,P),(null==k?void 0:k.field)&&(M.lineBy=k.field),m.interpolate){const e=Oa[m.interpolate];e&&(M.curve=e)}!0===m.point&&(M.showPoints=!0),E&&(M.data=E);break;case"area":if((null==k?void 0:k.field)?(L="StackedAreaChart",M.areaBy=k.field):L="AreaChart",Pa(b,x,M,C,P),m.interpolate){const e=Oa[m.interpolate];e&&(M.curve=e)}void 0!==m.opacity&&(M.areaOpacity=m.opacity),E&&(M.data=E);break;case"point":case"circle":case"square":(null==w?void 0:w.field)?(L="BubbleChart",M.sizeBy=w.field,(null===(l=w.scale)||void 0===l?void 0:l.range)&&(M.sizeRange=w.scale.range)):L="Scatterplot",Pa(b,x,M,C,P),E&&(M.data=E);break;case"rect":L="Heatmap",(null==b?void 0:b.field)&&(M.xAccessor=b.field),(null==x?void 0:x.field)&&(M.yAccessor=x.field),(null==k?void 0:k.field)&&(M.valueAccessor=k.field,delete M.colorBy),(null===(c=null==b?void 0:b.axis)||void 0===c?void 0:c.title)&&(M.xLabel=b.axis.title),(null===(u=null==x?void 0:x.axis)||void 0===u?void 0:u.title)&&(M.yLabel=x.axis.title),E&&(M.data=E);break;case"arc":m.innerRadius&&m.innerRadius>0?(L="DonutChart",M.innerRadius=m.innerRadius):L="PieChart",(null==A?void 0:A.field)?M.valueAccessor=A.field:(null==x?void 0:x.field)&&(M.valueAccessor=P?"value":x.field),(null==k?void 0:k.field)&&(M.categoryAccessor=k.field),(null==b?void 0:b.field)&&!(null==A?void 0:A.field)&&(M.categoryAccessor=b.field),E&&(M.data=E);break;case"tick":L="DotPlot",Sa(null==b?void 0:b.type)?(M.categoryAccessor=b.field,(null==x?void 0:x.field)&&(M.valueAccessor=P?"value":x.field),(null===(d=null==b?void 0:b.axis)||void 0===d?void 0:d.title)&&(M.categoryLabel=b.axis.title),(null===(h=null==x?void 0:x.axis)||void 0===h?void 0:h.title)&&(M.valueLabel=x.axis.title)):Sa(null==x?void 0:x.type)?(M.categoryAccessor=x.field,(null==b?void 0:b.field)&&(M.valueAccessor=C?"value":b.field),M.orientation="horizontal",(null===(g=null==x?void 0:x.axis)||void 0===g?void 0:g.title)&&(M.categoryLabel=x.axis.title),(null===(f=null==b?void 0:b.axis)||void 0===f?void 0:f.title)&&(M.valueLabel=b.axis.title)):((null==b?void 0:b.field)&&(M.categoryAccessor=b.field),(null==x?void 0:x.field)&&(M.valueAccessor=P?"value":x.field)),E&&(M.data=E);break;default:p.push(`Unsupported mark type "${y}". Defaulting to Scatterplot.`),L="Scatterplot",Pa(b,x,M,C,P),E&&(M.data=E)}return La(L,M,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(!Mn[e])throw Error(`Unknown component "${e}". Known components: ${Object.keys(Mn).join(", ")}`);const o=!1!==(null==n?void 0:n.includeData),r={};for(const[e,n]of Object.entries(t))null!=n&&(ua.has(e)||!o&&da.has(e)||"function"!=typeof n&&((null==n?void 0:n.$$typeof)||(r[e]=ha(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=Ct,exports.useCategoryColors=vt,exports.useChartObserver=Pt,exports.useFilteredData=function(t,n,o){const r=At(e=>e.selections.get(n));return e.useMemo(()=>{if(!r||0===r.clauses.size)return t;const e=xt(r,o);return t.filter(e)},[t,r,o])},exports.useLinkedHover=Ot,exports.useSelection=Mt,exports.useTheme=$t,exports.validateProps=Cn;
|
|
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;if(e!==this.lastBoundedData)return;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}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 C={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},j=i.schemeCategory10,L=["#4e79a7","#f28e2b","#e15759","#76b7b2","#59a14f","#edc948","#b07aa1","#ff9da7","#9c755f","#bab0ac"],P=["#f0f0f0","#b5d4ea","#f4c2a1","#b8dab2","#d4b5e0","#f9e0a2","#a8d8d8"],_=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")||_.has(t)}(o)?n(o):o}const o=e[t];return n?n(o):j[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+""))%j.length]}function B(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=C[n]||C.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:j;return o.scaleOrdinal().domain(r).range(e).unknown("#999")}}function D(e,t,n=[3,20],o){let r;if(r="function"==typeof t?t(e):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 N(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 R(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 H(e,t="ease-out-cubic"){return"linear"===t?e:1-Math.pow(1-e,3)}function I(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 z(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 $(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 q(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 Y(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=q(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};class Q{constructor(e){this.xExtent=new w,this.yExtent=new w,this.timestampBuffer=null,this.activeTransition=null,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.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&&(this.getOpen=O(e.openAccessor,"open"),this.getHigh=O(e.highAccessor,"high"),this.getLow=O(e.lowAccessor,"low"),this.getClose=O(e.closeAccessor,"close")),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;const{config:l,buffer:c}=this;if(!this.needsFullRebuild&&this.lastLayout&&this.scene.length>0&&this.scales&&(this.lastLayout.width!==e.width||this.lastLayout.height!==e.height))return void this.remapScene(e);if(this.xExtent.dirty&&this.xExtent.recalculate(c,this.getX),this.yExtent.dirty)if("candlestick"===l.chartType&&this.getHigh&&this.getLow){this.yExtent.clear();for(const e of c)this.yExtent.push(this.getHigh(e)),this.yExtent.push(this.getLow(e))}else this.yExtent.recalculate(c,this.getY);const u=this.getBufferArray(),d=this.xExtent.extent,h=this.yExtent.extent;let g=l.xExtent?[null!==(t=l.xExtent[0])&&void 0!==t?t:d[0],null!==(n=l.xExtent[1])&&void 0!==n?n:d[1]]:d,f=l.yExtent?[null!==(r=l.yExtent[0])&&void 0!==r?r:h[0],null!==(i=l.yExtent[1])&&void 0!==i?i:h[1]]:h;const p=l.yExtent&&null!=l.yExtent[0]&&null!=l.yExtent[1];if("stackedarea"===l.chartType&&!p&&c.size>0)if(l.normalize)f=[0,1+l.extentPadding];else{const e=`${c.size}:${this._ingestVersion}`;if(this._stackExtentCache&&this._stackExtentCache.key===e)f=this._stackExtentCache.yDomain;else{const t=this.groupData(u),n=new Map;for(const e of t)for(const t of e.data){const e=this.getX(t),o=this.getY(t);null==e||null==o||Number.isNaN(e)||Number.isNaN(o)||n.set(e,(n.get(e)||0)+o)}let o=0;for(const e of n.values())e>o&&(o=e);f=[0,o+(o>0?o*l.extentPadding:1)],this._stackExtentCache={key:e,yDomain:f}}}else if("bar"===l.chartType&&l.binSize&&!p&&c.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]}(c,this.getX,this.getY,l.binSize,this.getCategory);f=[0,e+e*l.extentPadding]}else if("waterfall"===l.chartType&&!p&&c.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]}(c,this.getY),n=t-e,o=n>0?n*l.extentPadding:1;f=[Math.min(0,e-Math.abs(o)),Math.max(0,t+Math.abs(o))]}else if(!p&&f[0]!==1/0){if(this.getBounds)for(const e of u){const t=this.getY(e),n=this.getBounds(e);null!=t&&!Number.isNaN(t)&&n&&(t+n>f[1]&&(f[1]=t+n),f[0]>t-n&&(f[0]=t-n))}const e=f[1]-f[0],t=e>0?e*l.extentPadding:1,n=null===(a=l.yExtent)||void 0===a?void 0:a[0],o=null===(s=l.yExtent)||void 0===s?void 0:s[1];f=[null!=n?f[0]:f[0]-t,null!=o?f[1]:f[1]+t],"log"===l.yScaleType&&0>=f[0]&&h[0]>0&&(f[0]=null!=n?f[0]:h[0]/(1+l.extentPadding))}if(g[0]!==1/0&&g[1]!==-1/0||(g=[0,1]),f[0]!==1/0&&f[1]!==-1/0||(f=[0,1]),"streaming"===l.runtimeMode)if("x"==("up"===(y=l.arrowOfTime)||"down"===y?"y":"x")){const t="right"===l.arrowOfTime?[0,e.width]:[e.width,0];this.scales={x:o.scaleLinear().domain(g).range(t),y:o.scaleLinear().domain(f).range([e.height,0])}}else{const t="down"===l.arrowOfTime?[0,e.height]:[e.height,0];this.scales={x:o.scaleLinear().domain(f).range([0,e.width]),y:o.scaleLinear().domain(g).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 o.scaleLinear().domain(t).range(n)};this.scales={x:t(l.xScaleType,g,[0,e.width]),y:t(l.yScaleType,f,[e.height,0])}}var y;this.config.transition&&this.scene.length>0&&this.snapshotPositions(),this.scene=this.buildSceneNodes(e,u),this.config.decay&&this.applyDecay(this.scene,u),this.config.pulse&&this.applyPulse(this.scene,u),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 void(this._quadtree=null);const t=this.scene.filter(e=>"point"===e.type);this._quadtree=t.length>Q.QUADTREE_THRESHOLD?r.quadtree().x(e=>e.x).y(e=>e.y).addAll(t):null}get quadtree(){return this._quadtree}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 o.scaleLinear().domain(t).range(n)};this.scales={x:l(this.config.xScaleType,r,[a[0]*t,a[1]*t]),y:l(this.config.yScaleType,i,[s[0]*n,s[1]*n])},this.lastLayout={width:e.width,height:e.height},this.rebuildQuadtree(),this.version++}buildSceneNodes(e,t){var n;const{config:r,scales:a}=this;if(!a||0===t.length)return[];const s={scales:a,config:r,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(r.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=$(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),r.push(o)}return U(e,o,r),r}(s,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),o.push(a)}return U(e,n,o),o}(s,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}(s,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=q(r,e.scales,e.getX,e.getY,s,t,l);c&&n.push(c)}return n}(s,t);case"heatmap":return function(e,t,n){if(e.config.heatmapAggregation)return function(e,t,n){var o,r,i;const a=[],s=Math.max(1,Math.floor(null!==(o=e.config.heatmapXBins)&&void 0!==o?o:20)),l=Math.max(1,Math.floor(null!==(r=e.config.heatmapYBins)&&void 0!==r?r:20)),c=null!==(i=e.config.heatmapAggregation)&&void 0!==i?i:"count",u=O(e.config.valueAccessor,"value");if(!e.scales||0===t.length)return a;const[d,h]=e.scales.x.domain(),[g,f]=e.scales.y.domain(),p=(h-d||1)/s,y=(f-g||1)/l,m=new Map;for(const n of t){const t=e.getX(n),o=e.getY(n);if(!isFinite(t)||!isFinite(o))continue;const r=Math.min(Math.floor((t-d)/p),s-1),i=Math.min(Math.floor((o-g)/y),l-1);if(0>r||0>i)continue;const a=u(n),c=`${r}_${i}`;let h=m.get(c);h||(h={sum:0,count:0,data:[]},m.set(c,h)),h.count++,h.sum+=isFinite(a)?a:0,h.data.push(n)}let v=1/0,b=-1/0;const x=new Map;for(const[e,t]of m){let n;switch(c){case"sum":n=t.sum;break;case"mean":n=t.count>0?t.sum/t.count:0;break;default:n=t.count}x.set(e,n),v>n&&(v=n),n>b&&(b=n)}const k=b-v||1,w=n.width/s,A=n.height/l;for(const[t,n]of x){const[o,r]=t.split("_"),i=+o,s=+r,c=(n-v)/k,u=`rgb(${Math.round(220-180*c)},${Math.round(220-100*c)},${Math.round(255-50*c)})`,d=m.get(t);a.push(X(i*w,(l-1-s)*A,w,A,u,{xi:i,yi:s,value:n,count:d.count,sum:d.sum,data:d.data},e.config.showValues?{value:n,showValues:!0,valueFormat:e.config.heatmapValueFormat}:void 0))}return a}(e,t,n);const r=[],a=O(e.config.valueAccessor,"value"),s=E(e.config.xAccessor,"x"),l=E(e.config.yAccessor,"y"),c=new Set,u=new Set;for(const e of t)c.add(s(e)),u.add(l(e));const d=Array.from(c),h=Array.from(u),g=d.every(e=>"number"==typeof e&&!isNaN(e)),f=h.every(e=>"number"==typeof e&&!isNaN(e)),p=g?d.sort((e,t)=>e-t):d,y=f?h.sort((e,t)=>e-t):h;if(0===p.length||0===y.length)return r;const m=n.width/p.length,v=n.height/y.length,b=new Map;for(const e of t){const t=`${s(e)}\0${l(e)}`;b.set(t,{val:a(e),datum:e})}let x=1/0,k=-1/0;for(const{val:e}of b.values())isFinite(e)&&(x>e&&(x=e),e>k&&(k=e));if(!isFinite(x)||!isFinite(k))return r;const w=o.scaleSequential(K["string"==typeof e.config.colorScheme?e.config.colorScheme:"blues"]||i.interpolateBlues).domain([x,k]);for(let t=0;p.length>t;t++)for(let n=0;y.length>n;n++){const o=b.get(`${p[t]}\0${y[n]}`);if(!o||!isFinite(o.val))continue;const i=w(o.val);r.push(X(t*m,(y.length-1-n)*v,m,v,i,o.datum,e.config.showValues?{value:o.val,showValues:!0,valueFormat:e.config.heatmapValueFormat}:void 0))}return r}(s,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(Y(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(Y(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)}}(s,t);return this._barCategoryCache=null!==(n=s.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}(s,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(Y(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}(s,t,e);case"candlestick":return function(e,t){if(!(e.getOpen&&e.getHigh&&e.getLow&&e.getClose&&e.scales))return[];const n=[],o=e.config.candlestickStyle||{},r=o.upColor||"#28a745",i=o.downColor||"#dc3545",a=o.wickColor||"#333",s=o.wickWidth||1,l=t.map(t=>e.getX(t)).filter(e=>null!=e&&!Number.isNaN(e)).sort((e,t)=>e-t);let c=o.bodyWidth||6;if(!o.bodyWidth&&l.length>1){let t=1/0;for(let n=1;l.length>n;n++){const o=Math.abs(e.scales.x(l[n])-e.scales.x(l[n-1]));o>0&&t>o&&(t=o)}t!==1/0&&(c=Math.max(2,Math.min(.6*t,20)))}for(const o of t){const t=e.getX(o);if(null==t||Number.isNaN(t))continue;const l=e.getOpen(o),u=e.getHigh(o),d=e.getLow(o),h=e.getClose(o);if([l,u,d,h].some(e=>null==e||Number.isNaN(e)))continue;const g=h>=l;n.push({type:"candlestick",x:e.scales.x(t),openY:e.scales.y(l),closeY:e.scales.y(h),highY:e.scales.y(u),lowY:e.scales.y(d),bodyWidth:c,upColor:r,downColor:i,wickColor:a,wickWidth:s,isUp:g,datum:o})}return n}(s,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?N(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]=N(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]=N(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=N(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=N(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=R(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=R(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=z(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)}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,C,j,L,P,_;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 B=!1;const D=new Set,N=new Set;for(let t=0;n.scene.length>t;t++){const i=n.scene[t],A=z(e,i,t);if(!A)continue;if(i._transitionKey=A,"line"===i.type||"area"===i.type){const e=r.get(A);if(e){if(N.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]];B=!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]];B=!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}),B=!0;continue}const S=o.get(A);if("point"===i.type)if(S){D.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,B=!0)}else i._targetOpacity=null!==(h=i.style.opacity)&&void 0!==h?h:1,i.style=Object.assign(Object.assign({},i.style),{opacity:0}),B=!0;else if("rect"===i.type)if(S){D.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,B=!0)}else i._targetOpacity=null!==(y=i.style.opacity)&&void 0!==y?y:1,i.style=Object.assign(Object.assign({},i.style),{opacity:0}),B=!0;else if("heatcell"===i.type)if(S){D.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,B=!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}),B=!0}for(const[e,t]of r)if(!N.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),B=!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),B=!0}for(const[e,t]of o)if(!D.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!==(C=t.h)&&void 0!==C?C:0,style:{opacity:null!==(j=t.opacity)&&void 0!==j?j: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!==(L=t.w)&&void 0!==L?L:0,h:null!==(P=t.h)&&void 0!==P?P:0,fill:"#999",datum:null,style:{opacity:null!==(_=t.opacity)&&void 0!==_?_:1},_targetOpacity:0,_transitionKey:e};n.exitNodes.push(o)}B=!0}return n.exitNodes.length>0&&(n.scene=[...n.scene,...n.exitNodes]),B&&(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=I(e,n.activeTransition),u=H(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)})}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)})}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}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}}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){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.map;const r=Array.isArray(this.config.colorScheme)?this.config.colorScheme:L,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},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:"#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}return o&&"object"==typeof o?{fill:o.fill||o.stroke||"#4e79a7",fillOpacity:null!==(n=o.fillOpacity)&&void 0!==n?n:.7,stroke:o.stroke||"#4e79a7",strokeWidth:o.strokeWidth||2}:{fill:"#4e79a7",fillOpacity:.7,stroke:"#4e79a7",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:L,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()}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.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._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);void 0!==e.colorScheme&&(this._colorMapCache=null,this._groupColorMap=new Map),void 0===e.barColors&&void 0===e.colorScheme||(this._barCategoryCache=null),void 0===e.normalize&&void 0===e.extentPadding&&void 0===e.xAccessor&&void 0===e.yAccessor&&void 0===e.groupAccessor&&void 0===e.categoryAccessor&&void 0===e.chartType||(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||void 0!==e.xAccessor||void 0!==e.yAccessor||void 0!==e.timeAccessor||void 0!==e.valueAccessor){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),!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 Z(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 J(e){let t=e%(2*Math.PI);return 0>t&&(t+=2*Math.PI),t}function ee(e,t,n){const o=t-e.x,r=n-e.y,i=Math.sqrt(o*o+r*r);return i>Math.max(e.r+5,12)?null:{node:e,datum:e.datum,x:e.x,y:e.y,distance:i}}function te(e,t,n){var o,r,i,a;if(0===e.path.length)return null;const s=se(e.path,t);if(0>s)return null;const[l,c]=e.path[s];let u;if(e.path.length>1){let o=1/0;const r=Math.max(0,s-1),i=Math.min(e.path.length-2,s);for(let a=r;i>=a;a++){const[r,i]=e.path[a],[s,l]=e.path[a+1],c=ne(t,n,r,i,s,l);o>c&&(o=c)}u=o}else{const e=t-l,o=n-c;u=Math.sqrt(e*e+o*o)}const d=null!==(a=null!==(r=null===(o=e.style)||void 0===o?void 0:o.strokeWidth)&&void 0!==r?r:null===(i=e.style)||void 0===i?void 0:i.lineWidth)&&void 0!==a?a:1;return u>Math.max(5,d/2+2)?null:{node:e,datum:Array.isArray(e.datum)&&e.datum[s]?e.datum[s]:e.datum,x:l,y:c,distance:u}}function ne(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 oe(e,t,n){const o=Z(t,n,e);return o.hit?{node:e,datum:e.datum,x:o.cx,y:o.cy,distance:0}:null}function re(e,t,n){const o=Z(t,n,e);return o.hit?{node:e,datum:e.datum,x:o.cx,y:o.cy,distance:0}:null}function ie(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 ae(e,t,n){if(0===e.topPath.length)return null;const o=se(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 se(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 le(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 ce(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 ue(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?de(n,n.groups[e+1],i[r]):t.flatIndex}case"ArrowUp":{const e=n.groups.indexOf(o);return e>0?de(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 de(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 he(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 ge(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]]]}function fe(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])}Q.QUADTREE_THRESHOLD=500;const pe={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 ye(e,t,n,o){let r;return r="function"==typeof n?n(e):(0,pe[n])(o(e,t)),r}function me(){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 ve(e,t,n){return n&&n.size>0?n.has(e.label)?1:.3:null!=t?e.label===t?1:.3:1}function be({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 xe(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",fontSize:12,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=ye(e,c,u,d),b=ve(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(me,null),p.createElement("text",{y:8,x:22,dominantBaseline:"central",fontSize:12,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=ye(e,c,d,h),k=ve(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(me,null),p.createElement("text",{y:8,x:22,dominantBaseline:"central",fontSize:12,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",fontSize:12,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",fontSize:12,fill:"var(--semiotic-text, #333)"},s),m)}function ke(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(be,{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(xe,{legendGroups:t.legendGroups,title:"",width:h?n:100,orientation:h?"horizontal":"vertical",customHoverBehavior:s,customClickBehavior:l,highlightedCategory:c,isolatedCategories:u,legendInteraction:d}):t)}function we(e){return"string"==typeof e?{type:e}:e}function Ae({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 Se(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 Oe(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 Ee(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||"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||"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||"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||"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||"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||"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||"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||"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:Oe((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||"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]:Se(i,l):[],y=r?c?[r]:Se(r,l):[],m="leftRight"===u?"end"===h?-4:4:0;let v=0;const b=[];f.length>0&&(b.push(p.createElement("text",{key:"annotation-note-title",className:"annotation-note-title",fill:o||void 0,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:o||void 0,textAnchor:h,y:v},y.map((e,t)=>p.createElement("tspan",{key:t,x:m,dy:0===t?0:g},e))));let x=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),x=p.createElement("line",{className:"note-line",x1:t,x2:n,y1:0,y2:0,stroke:o||"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),x=p.createElement("line",{className:"note-line",x1:0,x2:0,y1:t,y2:n,stroke:o||"currentColor"})}const k=Math.max(0,f.length+y.length-1)*g;let w=0;return"topBottom"===u?w=0>n?-(k+2):18:"leftRight"===u&&(w="middle"===d?-(k+g+(y.length>0&&f.length>0?2:0))/2+8:"bottom"===d||0>n?-(k+2):18),p.createElement("g",{className:"annotation-note",transform:`translate(${t},${n})`},p.createElement("g",{className:"annotation-note-content",transform:0!==w?`translate(0,${w})`:void 0},b),x)}(s,v,b,d))}function Me(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(Ee,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(Ee,Object.assign({"data-testid":"semiotic-annotation",key:`${s.label}-${s.title}-${o.i}`,events:a},o,{type:i}))}function Ce(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 je(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 Le(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=Ce(e,n),c=je(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 Pe(e,t,n,o=50){return!(-o>e||e>(n.width||0)+o||-o>t||t>(n.height||0)+o)}const _e={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 Te(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,C,j,L,P,_,T,B,D,N,R,H,I,W,F,z,$,G,q,Y,X,V,U,K,Q,Z,J,ee;switch(e.type){case"label":{const o=Le(e,t,n);if(!o)return null;const{x:r,y:i}=o;return Pe(r,i,n)?p.createElement(Me,{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=Le(e,t,n);if(!o)return null;const{x:r,y:i}=o;return Pe(r,i,n)?p.createElement(Me,{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=Ce(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=je(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:Ce(Object.assign(Object.assign({},e),{type:"point"}),n),y:je(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:Ce(Object.assign(Object.assign({},e),{type:"point"}),n),y:je(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=Ce(t,n),a=je(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=Ce(e,n),r=je(e,n);return p.createElement(Me,{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=_e[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===(C=n.scales)||void 0===C?void 0:C.time,a=null!==(L=null===(j=n.scales)||void 0===j?void 0:j.y)&&void 0!==L?L:null===(P=n.scales)||void 0===P?void 0:P.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!==(_=e.threshold)&&void 0!==_?_: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!==(B=e.anomalyRadius)&&void 0!==B?B: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=Ce(e,n),r=je(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!==(N=null===(D=n.scales)||void 0===D?void 0:D.x)&&void 0!==N?N:null===(R=n.scales)||void 0===R?void 0:R.time,s=null!==(I=null===(H=n.scales)||void 0===H?void 0:H.y)&&void 0!==I?I: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!==(z=e.steps)&&void 0!==z?z: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!==($=e.fillOpacity)&&void 0!==$?$:.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!==(q=e.strokeDasharray)&&void 0!==q?q:"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=Le(e,t,n);if(!i)return null;o=i.x,r=i.y}if(null==o||null==r)return null;if(!Pe(o,r,n))return null;const i=null!==(Y=e.dx)&&void 0!==Y?Y: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=Le(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 Be={positions:new Map};const De=new Set;function Ne(){for(const e of De)e()}function Re(e,t){const n=Be.positions.get(e);if(!n||n.sourceId!==t)return;const o=new Map(Be.positions);o.delete(e),Be={positions:o},Ne()}function He(){return Be}function Ie(e){return De.add(e),()=>De.delete(e)}const We={positions:new Map};function Fe(){return()=>{}}function ze(){return We}function $e(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 Ge(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||qe,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,6.5*t.label.length),0);return Ye(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||qe,r=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5;return Ye(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&&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})),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}))),x&&!w&&p.createElement("line",{x1:0,y1:o,x2:n,y2:o,stroke:S,strokeWidth:1}),w&&p.createElement("path",{d:$e("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:$e("left",n,o),fill:"none",stroke:S,strokeWidth:1})))}function qe(e,t,n){return Math.round(100*e)/100+""}function Ye(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 Xe(e,t){return e instanceof Date&&(!(t&&t instanceof Date)||e.getFullYear()!==t.getFullYear()||e.getMonth()!==t.getMonth()||e.getDate()!==t.getDate())}function Ve(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:C,yValues:j,annotations:L,svgAnnotationRules:P,xAccessor:_,yAccessor:T,annotationData:B,pointNodes:D,curve:N,underlayRendered:R,linkedCrosshairName:H,linkedCrosshairSourceId:I,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||qe,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,6.5*t.label.length),0);return Ye(s,Math.max(55,l+8))},[u,c,d,y,r]),z=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||qe,o=null!==(e=null==t?void 0:t.ticks)&&void 0!==e?e:5;return Ye(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]),$=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||qe,o=null!==(e=t.ticks)&&void 0!==e?e:5;return Ye(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),q=e.useRef(null!==(n=null==L?void 0:L.length)&&void 0!==n?n:0),Y=null!==(o=null==L?void 0:L.length)&&void 0!==o?o:0;q.current!==Y&&(q.current=Y,G.current=new Map);const X=e.useMemo(()=>{if(!L||0===L.length)return null;const e=Te(),t={scales:c?{x:c.x,y:c.y,time:c.x,value:c.y}:null,timeAxis:"x",xAccessor:_,yAccessor:T,width:r,height:i,data:B,frameType:"xy",pointNodes:D,curve:N,stickyPositionCache:G.current};return L.map((n,o)=>{if(P){const r=P(n,o,t);return null!=r?r:e(n,o,t)}return e(n,o,t)}).filter(Boolean)},[L,P,r,i,_,T,B,c,D,N]),V=function(t){var n;const o=e.useSyncExternalStore(t?Ie:Fe,t?He:ze,t?He:ze);return t&&null!==(n=o.positions.get(t))&&void 0!==n?n:null}(H);return 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&&!R&&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})),z.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}))),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=(null==e?void 0:e.jaggedBase)||!1,a=(null==t?void 0:t.jaggedBase)||!1,s=null==t?void 0:t.landmarkTicks,c=null==e?void 0:e.landmarkTicks,u="var(--semiotic-border, #ccc)",y="var(--semiotic-text-secondary, var(--semiotic-text, #666))",m="var(--semiotic-text, #333)";return p.createElement("g",{className:"stream-axes",style:{fontFamily:"var(--semiotic-font-family, sans-serif)"}},!R&&(!t||!1!==t.baseline)&&!a&&p.createElement("line",{x1:0,y1:i,x2:r,y2:i,stroke:u,strokeWidth:1}),!R&&a&&p.createElement("path",{d:$e("bottom",r,i),fill:"none",stroke:u,strokeWidth:1}),F.map((e,t)=>{const n=!!s&&("function"==typeof s?s(e.value,t):Xe(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:u,strokeWidth:1}),p.createElement("text",{y:18,textAnchor:"middle",fontSize:n?11:10,fontWeight:n?600:400,fill:y,style:{userSelect:"none"}},e.label))}),h&&p.createElement("text",{x:r/2,y:i+40,textAnchor:"middle",fontSize:12,fill:m,style:{userSelect:"none"}},h),!R&&n&&!o&&p.createElement("line",{x1:0,y1:0,x2:0,y2:i,stroke:u,strokeWidth:1}),!R&&o&&p.createElement("path",{d:$e("left",r,i),fill:"none",stroke:u,strokeWidth:1}),z.map((e,t)=>{const n=!!c&&("function"==typeof c?c(e.value,t):Xe(e.value,t>0?z[t-1].value:void 0));return p.createElement("g",{key:"ytick-"+t,transform:`translate(0,${e.pixel})`},p.createElement("line",{x2:-5,stroke:u,strokeWidth:1}),p.createElement("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:n?11:10,fontWeight:n?600:400,fill:y,style:{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:m,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===$.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:u,strokeWidth:1}),$.map((e,n)=>{const o=!!t&&("function"==typeof t?t(e.value,n):Xe(e.value,n>0?$[n-1].value:void 0));return p.createElement("g",{key:"ytick-r-"+n,transform:`translate(${r},${e.pixel})`},p.createElement("line",{x2:5,stroke:u,strokeWidth:1}),p.createElement("text",{x:8,textAnchor:"start",dominantBaseline:"middle",fontSize:o?11:10,fontWeight:o?600:400,fill:y,style:{userSelect:"none"}},e.label))}),n&&p.createElement("text",{x:r+l.right-15,y:i/2,textAnchor:"middle",fontSize:12,fill:m,transform:`rotate(90, ${r+l.right-15}, ${i/2})`,style:{userSelect:"none"}},n))})())})(),X,M&&c&&C&&j&&p.createElement(p.Fragment,null,M.top&&p.createElement("g",{transform:"translate(0, 0)"},p.createElement(Ae,{orient:"top",config:we(M.top),values:C,scale:c.x,size:l.top,length:r})),M.bottom&&p.createElement("g",{transform:`translate(0, ${i})`},p.createElement(Ae,{orient:"bottom",config:we(M.bottom),values:C,scale:c.x,size:l.bottom,length:r})),M.left&&p.createElement("g",{transform:"translate(0, 0)"},p.createElement(Ae,{orient:"left",config:we(M.left),values:j,scale:c.y,size:l.left,length:i})),M.right&&p.createElement("g",{transform:`translate(${r}, 0)`},p.createElement(Ae,{orient:"right",config:we(M.right),values:j,scale:c.y,size:l.right,length:i}))),E,V&&V.sourceId!==I&&(null==c?void 0:c.x)&&(()=>{const e=c.x(V.xValue);return null==e||0>e||e>r?null:p.createElement("line",{x1:e,y1:0,x2:e,y2:i,stroke:"var(--semiotic-text-secondary, rgba(0,0,0,0.25))",strokeWidth:1,strokeDasharray:"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),ke({legend:x,totalWidth:a,totalHeight:s,margin:l,legendPosition:O,title:b,legendHoverBehavior:k,legendClickBehavior:w,legendHighlightedCategory:A,legendIsolatedCategories:S})):null}function Ue(e,t="#4e79a7"){return e&&"string"==typeof e?e:t}const Ke="undefined"==typeof window||"undefined"==typeof document,Qe=p.createContext(null);function Ze({children:e}){const[t,n]=p.useState(!1),o=p.useMemo(()=>({visible:t,setVisible:n}),[t]);return p.createElement(Qe.Provider,{value:o},e)}function Je(){return p.useContext(Qe)}const et={position:"absolute",width:1,height:1,overflow:"hidden",clip:"rect(0,0,0,0)",whiteSpace:"nowrap",border:0};function tt(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 nt(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 ot=e=>{if(null==e)return"";const t=Math.round(100*e)/100;return Number.isNaN(t)?"":t+""},rt={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"},it={marginBottom:8,paddingRight:28,color:"var(--semiotic-text-secondary, #666)",fontSize:12,letterSpacing:"0.01em"},at={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)"},st={width:"100%",borderCollapse:"collapse",fontSize:12,marginTop:4,fontVariantNumeric:"tabular-nums"},lt={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)"},ct={padding:"4px 10px",borderBottom:"1px solid var(--semiotic-border, #e0e0e0)"},ut={textAlign:"left",fontSize:11,color:"var(--semiotic-text-secondary, #999)",marginBottom:4,fontStyle:"italic"};function dt({scene:e,chartType:t,tableId:n,chartTitle:o}){var r;const[i,a]=p.useState(!1),s=Je(),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:et}):null;if(!c)return p.createElement("div",{id:n,tabIndex:-1,onFocus:h,style:et,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}: ${ot(e.min)} to ${ot(e.max)}, mean ${ot(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:rt,role:"region","aria-label":d},p.createElement("button",{type:"button",onClick:()=>{l&&s&&s.setVisible(!1),a(!1)},"aria-label":"Close data summary",style:at},"×"),p.createElement("div",{role:"note",style:it},m),p.createElement("table",{role:"table","aria-label":"Sample data for "+t,style:st},p.createElement("caption",{style:ut},"First ",v.length," of ",f.length," data points"),p.createElement("thead",null,p.createElement("tr",null,p.createElement("th",{style:lt},"type"),x.map(e=>p.createElement("th",{key:e,style:lt},e)))),p.createElement("tbody",null,v.map((e,t)=>p.createElement("tr",{key:t},p.createElement("td",{style:ct},e.label),x.map(t=>{return p.createElement("td",{key:t,style:ct},null==(n=e.values[t])||""===n?"—":"number"==typeof n?Number.isNaN(n)?"—":ot(n):"boolean"==typeof n?n?"true":"false":"object"==typeof n?"—":n+"");var n}))))))}function ht({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=Je(),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]),C=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:et}):null;if(!S)return p.createElement("div",{id:o,tabIndex:-1,onFocus:M,style:et,role:"region","aria-label":O},p.createElement("button",{type:"button",onClick:()=>k(!0)},"View data summary (",e.length," nodes, ",t.length," edges)"));const j=Array.isArray(e)?e:[],L=Array.isArray(t)?t:[],P=new Map,_=new Map,T=new Map,B=new Map;for(const e of L){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+"";_.set(e,(null!==(c=_.get(e))&&void 0!==c?c:0)+1),B.set(e,(null!==(u=B.get(e))&&void 0!==u?u:0)+r)}if(null!=o&&""!==o){const e=o+"";P.set(e,(null!==(d=P.get(e))&&void 0!==d?d:0)+1),T.set(e,(null!==(h=T.get(e))&&void 0!==h?h:0)+r)}}const D=[];for(let e=0;j.length>e;e++){const t=j[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=P.get(o))&&void 0!==y?y:0,i=null!==(m=_.get(o))&&void 0!==m?m:0,a=null!==(v=T.get(o))&&void 0!==v?v:0,s=null!==(b=B.get(o))&&void 0!==b?b:0;D.push({id:o,degree:r+i,inDeg:r,outDeg:i,wDegree:a+s,wInDeg:a,wOutDeg:s})}D.sort((e,t)=>t.degree-e.degree);let N=0,R=0;if(D.length>0){let e=0;for(const t of D)e+=t.degree,t.degree>R&&(R=t.degree);N=e/D.length}const H=L.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)}),I=[`${D.length} nodes, ${L.length} edges.`];D.length>0&&I.push(`Mean degree: ${ot(N)}, max degree: ${R}.`);const W=D.slice(0,5);return p.createElement("div",{ref:E,id:o,tabIndex:-1,onBlur:C,style:rt,role:"region","aria-label":O},p.createElement("button",{type:"button",onClick:()=>{A&&w&&w.setVisible(!1),k(!1)},"aria-label":"Close data summary",style:at},"×"),p.createElement("div",{role:"note",style:it},I.join(" ")),p.createElement("table",{role:"table","aria-label":"Node degree summary for "+n,style:st},p.createElement("caption",{style:ut},"Top ",W.length," of ",D.length," nodes by degree"),p.createElement("thead",null,p.createElement("tr",null,p.createElement("th",{style:lt},"id"),p.createElement("th",{style:lt},"degree"),p.createElement("th",{style:lt},"in"),p.createElement("th",{style:lt},"out"),H&&p.createElement("th",{style:lt},"w. degree"),H&&p.createElement("th",{style:lt},"w. in"),H&&p.createElement("th",{style:lt},"w. out"))),p.createElement("tbody",null,W.map((e,t)=>p.createElement("tr",{key:t},p.createElement("td",{style:ct},e.id),p.createElement("td",{style:ct},e.degree),p.createElement("td",{style:ct},e.inDeg),p.createElement("td",{style:ct},e.outDeg),H&&p.createElement("td",{style:ct},ot(e.wDegree)),H&&p.createElement("td",{style:ct},ot(e.wInDeg)),H&&p.createElement("td",{style:ct},ot(e.wOutDeg)))))))}function gt({summary:e}){return e?p.createElement("div",{role:"note",style:et},e):null}function ft({tableId:e}){return p.createElement("a",{href:"#"+e,style:et,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,et)}},"Skip to data table")}function pt({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:et},t)}const yt="var(--semiotic-focus, #005fcc)";function mt({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:yt,strokeWidth:2,strokeDasharray:"4,2"})}else c=p.createElement("circle","wedge"===r?{cx:s,cy:l,r:12,fill:"none",stroke:yt,strokeWidth:2.5,strokeDasharray:"6,3"}:{cx:s,cy:l,r:8,fill:"none",stroke:yt,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 vt({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 bt(e,t){return"function"==typeof e.addEventListener?(e.addEventListener("change",t),()=>e.removeEventListener("change",t)):(e.addListener(t),()=>e.removeListener(t))}function xt(){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}function kt(t){const n=e.createContext(null),o=wt(t);return[function({children:o}){const r=e.useMemo(()=>wt(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 wt(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)}}}const At={mode:"light",colors:{primary:"#00a2ce",categorical:["#1f77b4","#ff7f0e","#2ca02c","#d62728","#9467bd","#8c564b","#e377c2","#7f7f7f","#bcbd22","#17becf"],sequential:"blues",background:"transparent",text:"#333",textSecondary:"#666",grid:"#e0e0e0",border:"#ccc"},typography:{fontFamily:"sans-serif",titleSize:16,labelSize:12,tickSize:10}},St={mode:"dark",colors:{primary:"#4fc3f7",categorical:["#4fc3f7","#ffb74d","#81c784","#ef5350","#ba68c8","#a1887f","#f06292","#90a4ae","#dce775","#4dd0e1"],sequential:"blues",background:"#1a1a2e",text:"#e0e0e0",textSecondary:"#aaa",grid:"#333",border:"#555"},typography:{fontFamily:"sans-serif",titleSize:16,labelSize:12,tickSize:10}},Ot={mode:"light",colors:{primary:"#0000cc",categorical:["#0072B2","#E69F00","#009E73","#CC79A7","#56B4E9","#D55E00","#F0E442","#000000"],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"},[Et,Mt]=kt(e=>({theme:At,setTheme(t){e(e=>{if("light"===t)return{theme:At};if("dark"===t)return{theme:St};if("high-contrast"===t)return{theme:Ot};if(t.mode&&"auto"!==t.mode){const e="dark"===t.mode?St:At;return{theme: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: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 Ct(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 jt(){return"undefined"!=typeof window&&window.devicePixelRatio||1}function Lt(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 Pt(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 _t(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()}}function Tt(e){return!(!e._pulseIntensity||0>=e._pulseIntensity)}function Bt(e,t,n=.3){Tt(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 Dt(e,t,n=.6){var o,r,i,a,s;if(!Tt(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 Nt(e,t,n,o=.35){Tt(t)&&(e.globalAlpha=t._pulseIntensity*o,e.fillStyle=t._pulseColor||"rgba(255,255,255,0.6)",e.fill())}function Rt(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 Ht(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 It(e,t){const n=Rt(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 Wt=(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.style.fill||"#4e79a7",o=t._decayOpacities;if(o&&o.length===t.topPath.length){const i=null!==(r=t.style.fillOpacity)&&void 0!==r?r:.7;e.fillStyle=n;for(let n=0;t.topPath.length-1>n;n++)e.globalAlpha=.5*(o[n]+o[n+1])*i,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=t.style.stroke,e.lineWidth=t.style.strokeWidth||2,e.setLineDash([]);for(let n=0;t.topPath.length-1>n;n++)e.globalAlpha=.5*(o[n]+o[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 s=null!==(i=t.style.opacity)&&void 0!==i?i:1;if(It(e,t),t.fillGradient){let o=1/0;for(const e of t.topPath)o>e[1]&&(o=e[1]);let r=-1/0;for(const e of t.bottomPath)e[1]>r&&(r=e[1]);const i=Ht("string"==typeof n?n:"#4e79a7"),a=t.fillGradient.topOpacity,l=t.fillGradient.bottomOpacity,c=e.createLinearGradient(0,o,0,r);c.addColorStop(0,`rgba(${i[0]},${i[1]},${i[2]},${a})`),c.addColorStop(1,`rgba(${i[0]},${i[1]},${i[2]},${l})`),e.fillStyle=c,e.globalAlpha=s}else{const o=null!==(a=t.style.fillOpacity)&&void 0!==a?a:.7;e.globalAlpha=o*s,e.fillStyle=n}if(e.fill(),t._pulseIntensity&&t._pulseIntensity>0&&(It(e,t),Nt(e,t)),t.style.stroke&&"none"!==t.style.stroke){e.globalAlpha=s,e.strokeStyle=t.style.stroke,e.lineWidth=t.style.strokeWidth||2,e.setLineDash([]);const n=Rt(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()}e.globalAlpha=1}},Ft=(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=t.style.fill||"#4e79a7",e.fill(),t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke()),Dt(e,t),e.globalAlpha=1}}finally{e.restore()}}},zt=(e,t,n,o)=>{const r=t.filter(e=>"rect"===e.type);for(const t of r)null!=t.style.opacity&&(e.globalAlpha=t.style.opacity),t.style.icon?$t(e,t):(e.fillStyle=t.style.fill||"#007bff",e.fillRect(t.x,t.y,t.w,t.h),t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.strokeRect(t.x,t.y,t.w,t.h))),Bt(e,t),e.globalAlpha=1};function $t(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 Gt(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 qt(e){return Number.isInteger(e)?e+"":100>Math.abs(e)?1>Math.abs(e)?e.toPrecision(3):e.toFixed(1):e.toFixed(0)}const Yt=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function Xt(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`${Yt[t.getUTCMonth()]} ${t.getUTCDate()}`}:5*n>t?e=>{const t=new Date(e);return`${Yt[t.getUTCMonth()]} ${t.getUTCFullYear()}`}:e=>new Date(e).getUTCFullYear()+""}const Vt={line:[Wt,(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.style.stroke||"#007bff",u=s.style.strokeWidth||2,d=s.colorThresholds,h=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=u,e.lineCap=s.style.strokeLinecap||"butt",s.style._edgeFade){const y=null!==(r=s.style.opacity)&&void 0!==r?r:1;_t(e,s.path,c,u,y,s.style.strokeLinecap||"butt"),e.globalAlpha=1,e.setLineDash([]),e.lineCap="butt";continue}const g=Lt(s.curve),f=d&&d.length>0&&h&&h.length===s.path.length,p=s._decayOpacities;if(p&&p.length===s.path.length&&!f){e.strokeStyle=c;const m=null!==(i=s.style.opacity)&&void 0!==i?i:1;for(let v=0;s.path.length-1>v;v++)e.globalAlpha=.5*(p[v]+p[v+1])*m,e.beginPath(),e.moveTo(s.path[v][0],s.path[v][1]),e.lineTo(s.path[v+1][0],s.path[v+1][1]),e.stroke()}else if(f){let b=null,x=null,k=null,w=null,A=!1;function S(t,n,o){e.beginPath(),e.strokeStyle=t,e.moveTo(n,o),A=!0}function O(){A&&(e.stroke(),A=!1)}for(let E=0;s.path.length>E;E++){const[M,C]=s.path[E],j=h[E],L=Pt(j,d,c);if(null!==b&&null!==w&&null!==k){if(L===w)e.lineTo(M,C);else{const P=[];for(const _ of d){const T=_.value;(k>T||T>j)&&(T>k||j>T)||k===T||j===T||P.push({t:(T-k)/(j-k)})}P.sort((e,t)=>e.t-t.t);for(const B of P){const D=b+(M-b)*B.t,N=x+(C-x)*B.t,R=Pt(k+(j-k)*Math.min(B.t+1e-4,1),d,c);e.lineTo(D,N),O(),S(R,D,N)}e.lineTo(M,C)}b=M,x=C,k=j,w=L}else S(L,M,C),b=M,x=C,k=j,w=L}O()}else{if(e.beginPath(),e.strokeStyle=c,g)l.line().x(e=>e[0]).y(e=>e[1]).curve(g).context(e)(s.path);else{const[H,I]=s.path[0];e.moveTo(H,I);for(let W=1;s.path.length>W;W++)e.lineTo(s.path[W][0],s.path[W][1])}e.stroke()}if(s.style.fill&&s.style.fillOpacity&&s.style.fillOpacity>0){if(e.beginPath(),e.globalAlpha=s.style.fillOpacity,e.fillStyle=s.style.fill,g&&!f)l.line().x(e=>e[0]).y(e=>e[1]).curve(g).context(e)(s.path);else{const[z,$]=s.path[0];e.moveTo(z,$);for(let G=1;s.path.length>G;G++)e.lineTo(s.path[G][0],s.path[G][1])}const F=s.path[0][0];e.lineTo(s.path[s.path.length-1][0],o.height),e.lineTo(F,o.height),e.closePath(),e.fill()}e.globalAlpha=1,e.setLineDash([]),e.lineCap="butt"}},Ft],area:[Wt,Ft],stackedarea:[Wt,Ft],scatter:[Ft],bubble:[Ft],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),Bt(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):qt(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=Gt(t.fill),e.font=o+"px sans-serif",e.textAlign="center",e.textBaseline="middle",e.fillText(n,r,i)}}}finally{e.restore()}}],bar:[zt],swarm:[Ft],waterfall:[(e,t,n,o)=>{var r,i,a;zt(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;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();const r=Math.min(t.openY,t.closeY),i=Math.abs(t.openY-t.closeY),a=t.isUp?t.upColor:t.downColor;e.fillStyle=a,e.fillRect(t.x-t.bodyWidth/2,r,t.bodyWidth,Math.max(i,1)),e.strokeStyle=a,e.lineWidth=1,e.strokeRect(t.x-t.bodyWidth/2,r,t.bodyWidth,Math.max(i,1)),e.restore()}}]},Ut={top:20,right:20,bottom:30,left:40},Kt={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"},Qt={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 Zt({hover:e}){const t=e=>Number.isInteger(e)?e+"":e.toFixed(2);return p.createElement("div",{className:"semiotic-tooltip",style:Qt},p.createElement("div",{style:{fontWeight:600,marginBottom:2}},t(e.value)),p.createElement("div",{style:{opacity:.7,fontSize:11}},t(e.time)))}const Jt=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:C,normalize:j,binSize:L,valueAccessor:P,arrowOfTime:_="right",windowMode:T="sliding",windowSize:B=200,timeAccessor:D,xExtent:N,yExtent:R,extentPadding:H=.1,sizeRange:I,size:W=[500,300],responsiveWidth:F,responsiveHeight:z,margin:$,className:G,background:q,lineStyle:Y,pointStyle:X,areaStyle:V,waterfallStyle:U,swarmStyle:K,barColors:Z,colorScheme:J,boundsAccessor:ne,boundsStyle:se,y0Accessor:de,gradientFill:pe,openAccessor:ye,highAccessor:me,lowAccessor:ve,closeAccessor:be,candlestickStyle:xe,showAxes:ke=!0,axes:we,xLabel:Ae,yLabel:Se,yLabelRight:Oe,xFormat:Ee,yFormat:Me,tickFormatTime:Ce,tickFormatValue:je,hoverAnnotation:Le,tooltipContent:Pe,customHoverBehavior:_e,enableHover:Te,annotations:Be,svgAnnotationRules:De,showGrid:Ne,legend:Re,legendHoverBehavior:He,legendClickBehavior:Ie,legendHighlightedCategory:We,legendIsolatedCategories:Fe,legendPosition:ze,backgroundGraphics:$e,foregroundGraphics:qe,canvasPreRenderers:Ye,svgPreRenderers:Xe,title:Qe,categoryAccessor:Ze,brush:Je,onBrush:et,decay:nt,pulse:ot,transition:rt,staleness:it,heatmapAggregation:at,heatmapXBins:st,heatmapYBins:lt,showValues:ct,heatmapValueFormat:ut,marginalGraphics:ht,pointIdAccessor:yt,xScaleType:bt,yScaleType:kt,accessibleTable:wt=!0,description:At,summary:St,linkedCrosshairName:Ot,linkedCrosshairSourceId:Et}=t,Lt=xt(),Pt=e.useRef(Lt);Pt.current=Lt;const[_t,Tt]=ge(W,F,z),Bt=Object.assign(Object.assign({},Ut),$);if(ht){const e=60;ht.top&&e>Bt.top&&(Bt.top=e),ht.bottom&&e>Bt.bottom&&(Bt.bottom=e),ht.left&&e>Bt.left&&(Bt.left=e),ht.right&&e>Bt.right&&(Bt.right=e)}const Dt=Tt[0]-Bt.left-Bt.right,Nt=Tt[1]-Bt.top-Bt.bottom,Rt="function"==typeof qe?qe({size:Tt,margin:Bt}):qe,Ht="function"==typeof $e?$e({size:Tt,margin:Bt}):$e,It=null!=Le?Le:Te,Wt=e.useRef(null),Ft=e.useRef(null),zt=e.useRef(0),$t=e.useRef(!1),Gt=Mt(e=>e.theme),[qt,Yt]=e.useState(0),[Qt,Jt]=e.useState(null),en=e.useRef(null),tn=e.useRef(null),[nn,on]=e.useState(null),[rn,an]=e.useState(!1),[sn,ln]=e.useState([]),[cn,un]=e.useState([]),dn=e.useRef(()=>{}),hn="streaming"===y||["bar","swarm","waterfall"].includes(f),gn=e.useMemo(()=>({chartType:f,runtimeMode:hn?"streaming":"bounded",windowSize:B,windowMode:T,arrowOfTime:hn?_:"right",extentPadding:H,xAccessor:hn?void 0:w,yAccessor:hn?void 0:A,timeAccessor:hn?D:void 0,valueAccessor:P,colorAccessor:S,sizeAccessor:O,groupAccessor:E,categoryAccessor:Ze,lineDataAccessor:M,xScaleType:bt,yScaleType:kt,xExtent:N,yExtent:R,sizeRange:I,binSize:L,normalize:j,boundsAccessor:ne,boundsStyle:se,y0Accessor:de,gradientFill:"boolean"==typeof pe?pe?{topOpacity:.8,bottomOpacity:.05}:void 0:pe,openAccessor:ye,highAccessor:me,lowAccessor:ve,closeAccessor:be,candlestickStyle:xe,lineStyle:Y,pointStyle:X,areaStyle:V,swarmStyle:K,waterfallStyle:U,colorScheme:J,barColors:Z,annotations:Be,decay:nt,pulse:ot,transition:rt,staleness:it,heatmapAggregation:at,heatmapXBins:st,heatmapYBins:lt,showValues:ct,heatmapValueFormat:ut,pointIdAccessor:yt,curve:C}),[f,B,T,_,H,w,A,D,P,bt,kt,S,O,E,Ze,M,N,R,I,L,j,ne,se,de,pe,ye,me,ve,be,xe,Y,X,V,K,U,J,Z,Be,nt,ot,rt,it,at,st,lt,ct,ut,hn,yt,C]),fn=e.useRef(null);fn.current||(fn.current=new Q(gn));const pn=e.useCallback(()=>{zt.current||(zt.current=requestAnimationFrame(()=>dn.current()))},[]);e.useEffect(()=>{var e;null===(e=fn.current)||void 0===e||e.updateConfig(gn),$t.current=!0,pn()},[gn,pn]),e.useEffect(()=>{$t.current=!0,pn()},[Gt,pn]);const yn=e.useRef(null);yn.current||(yn.current=new x(e=>{const t=fn.current;t&&t.ingest(e)&&($t.current=!0,pn())},{chunkThreshold:v,chunkSize:k})),e.useEffect(()=>{var e;null===(e=yn.current)||void 0===e||e.updateChunkOptions({chunkThreshold:v,chunkSize:k})},[v,k]);const mn=e.useCallback(e=>{var t;null===(t=yn.current)||void 0===t||t.push(e)},[]),vn=e.useCallback(e=>{var t;null===(t=yn.current)||void 0===t||t.pushMany(e)},[]),bn=e.useCallback(()=>{var e,t;null===(e=yn.current)||void 0===e||e.clear(),null===(t=fn.current)||void 0===t||t.clear(),$t.current=!0,pn()},[pn]);e.useImperativeHandle(n,()=>({push:mn,pushMany:vn,clear:bn,getData:()=>{var e,t,n;return null===(e=yn.current)||void 0===e||e.flush(),null!==(n=null===(t=fn.current)||void 0===t?void 0:t.getData())&&void 0!==n?n:[]},getScales:()=>{var e,t;return null!==(t=null===(e=fn.current)||void 0===e?void 0:e.scales)&&void 0!==t?t:null},getExtents:()=>{var e,t;return null!==(t=null===(e=fn.current)||void 0===e?void 0:e.getExtents())&&void 0!==t?t:null}}),[mn,vn,bn]),e.useEffect(()=>{var e;m&&(null===(e=yn.current)||void 0===e||e.setBoundedData(m))},[m]);const xn=e.useRef(()=>{}),kn=e.useRef(()=>{});xn.current=e=>{if(!It)return;const t=Wt.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-Bt.left,r=e.clientY-n.top-Bt.top;if(0>o||o>Dt||0>r||r>Nt)return void(en.current&&(en.current=null,tn.current=null,on(null),_e&&(_e(null),$t.current=!0),pn()));const i=fn.current;if(!i||0===i.scene.length)return;const a=function(e,t,n,o=30,r){let i=null,a=!1;if(r){const e=r.find(t,n,o);if(e){const r=ee(e,t,n);r&&o>r.distance&&(i=r,a=!0)}}for(const s of e){let e=null;switch(s.type){case"point":if(r&&a)break;e=ee(s,t,n);break;case"line":e=te(s,t,n);break;case"rect":e=oe(s,t,n);break;case"heatcell":e=re(s,t,n);break;case"area":if(!1===s.interactive)break;e=ae(s,t,n);break;case"candlestick":e=ie(s,t,n)}e&&o>e.distance&&(i&&e.distance>=i.distance||(i=e))}return i}(i.scene,o,r,30,i.quadtree);if(!a)return void(en.current&&(en.current=null,tn.current=null,on(null),_e&&_e(null),pn()));const s=a.datum||{},l=Object.assign(Object.assign({},"object"!=typeof s||null===s||Array.isArray(s)?{}:s),{data:s,time:a.x,value:a.y,x:a.x,y:a.y});en.current=l,tn.current=a.node,on(l),_e&&(_e(l),$t.current=!0),pn()},kn.current=()=>{en.current&&(en.current=null,tn.current=null,on(null),_e&&(_e(null),$t.current=!0),pn())},e.useCallback(e=>xn.current(e),[]);const wn=e.useCallback(()=>kn.current(),[]),An=e.useRef(-1),Sn=e.useRef(null),On=e.useRef(null),En=e.useCallback(e=>{const t=fn.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)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=le(e),On.current={version:n,graph:o}}const r=An.current;if(0>r){if("Escape"===e.key)return;if(!["ArrowRight","ArrowLeft","ArrowUp","ArrowDown","Home","End","PageUp","PageDown"].includes(e.key))return;e.preventDefault(),An.current=0;const t=o.flat[0];Sn.current={shape:t.shape,w:t.w,h:t.h};const n=he(t);return en.current=n,on(n),_e&&_e(n),void pn()}const i=ce(o,r),a=ue(e.key,i,o);if(null===a)return;if(e.preventDefault(),0>a)return An.current=-1,Sn.current=null,en.current=null,tn.current=null,on(null),_e&&_e(null),void pn();An.current=a;const s=o.flat[a];Sn.current={shape:s.shape,w:s.w,h:s.h};const l=he(s);en.current=l,on(l),_e&&_e(l),pn()},[_e,pn]),Mn=e.useCallback(e=>{An.current=-1,Sn.current=null,xn.current(e)},[]);dn.current=()=>{var e,t;zt.current=0;const n=Wt.current,o=Ft.current;if(!n||!o)return;const r=fn.current;if(!r)return;const i="undefined"!=typeof performance?performance.now():Date.now(),a=r.advanceTransition(Pt.current?i+1e6:i),s=!Pt.current&&a,l=$t.current||a;l&&!s&&r.computeScene({width:Dt,height:Nt});const c=jt(),u=function(e){if(!e)return Kt;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||Kt.axisStroke,tickText:i||Kt.tickText,crosshair:i?i+"66":Kt.crosshair,hoverFill:l?l+"4D":Kt.hoverFill,hoverStroke:i?i+"99":Kt.hoverStroke,pointRing:l||Kt.pointRing}:Kt}(n),d=null!==(e=null==it?void 0:it.threshold)&&void 0!==e?e:5e3,h=it&&r.lastIngestTime>0&&i-r.lastIngestTime>d;if(l){const e=Ct(n,Tt,Bt,c);if(e){e.clearRect(-Bt.left,-Bt.top,Tt[0],Tt[1]),h&&(e.globalAlpha=null!==(t=null==it?void 0:it.dimOpacity)&&void 0!==t?t:.5);const o=getComputedStyle(n).getPropertyValue("--semiotic-bg").trim(),i=q||(o&&"transparent"!==o?o:null);if(i&&(e.fillStyle=i,e.fillRect(-Bt.left,-Bt.top,Tt[0],Tt[1])),e.save(),"function"==typeof e.rect&&(e.beginPath(),e.rect(0,0,Dt,Nt),e.clip()),Ye&&r.scales)for(const t of Ye)e.save(),t(e,r.scene,r.scales,{width:Dt,height:Nt}),e.restore();const a=Vt[f];if(a&&r.scales)for(const t of a)t(e,r.scene,r.scales,{width:Dt,height:Nt});e.restore(),h&&(e.globalAlpha=1)}}{const e=Ct(o,Tt,Bt,c);if(e&&(e.clearRect(-Bt.left,-Bt.top,Tt[0],Tt[1]),It&&en.current&&r.scales&&function(e,t,n,o,r,i,a){var s;if(!1===r.crosshair)return;e.save();const l="object"==typeof r.crosshair?r.crosshair:{};e.strokeStyle=l.stroke||a.crosshair,e.lineWidth=l.strokeWidth||1,e.setLineDash(l.strokeDasharray?l.strokeDasharray.split(/[\s,]+/).map(Number):[4,4]),e.beginPath(),e.moveTo(t.x,0),e.lineTo(t.x,o),e.stroke(),e.beginPath(),e.moveTo(0,t.y),e.lineTo(n,t.y),e.stroke(),e.restore();let c="";try{(null===(s=e.canvas)||void 0===s?void 0:s.parentElement)&&(c=getComputedStyle(e.canvas).getPropertyValue("--semiotic-primary").trim())}catch(e){}const u=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)||c||"#007bff";e.beginPath(),e.arc(t.x,t.y,4,0,2*Math.PI),e.fillStyle=u,e.fill(),e.strokeStyle=a.pointRing,e.lineWidth=2,e.stroke()}(e,en.current,Dt,Nt,"object"==typeof It?It:{},tn.current,u),tn.current&&Array.isArray(Le))){const t=Le.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,tn.current,t)}}l&&n&&n.setAttribute("aria-label",tt(r.scene,f+" chart"));const g=$t.current;if($t.current=!1,g&&r.scales&&((!Qt||Qt.x.domain()[0]!==r.scales.x.domain()[0]||Qt.x.domain()[1]!==r.scales.x.domain()[1]||Qt.y.domain()[0]!==r.scales.y.domain()[0]||Qt.y.domain()[1]!==r.scales.y.domain()[1]||Qt.x.range()[0]!==r.scales.x.range()[0]||Qt.x.range()[1]!==r.scales.x.range()[1]||Qt.y.range()[0]!==r.scales.y.range()[0]||Qt.y.range()[1]!==r.scales.y.range()[1])&&Jt(r.scales),ht)){const e=r.getData(),t="function"==typeof w?w:e=>e[w||"x"],n="function"==typeof A?A:e=>e[A||"y"];ln(e.map(e=>t(e)).filter(e=>"number"==typeof e&&isFinite(e))),un(e.map(e=>n(e)).filter(e=>"number"==typeof e&&isFinite(e)))}g&&Be&&Be.length>0&&Yt(e=>e+1),(null==it?void 0:it.showBadge)&&an(!!h),(s||r.hasActivePulses)&&(zt.current=requestAnimationFrame(()=>dn.current()))},e.useEffect(()=>(pn(),()=>{zt.current&&(cancelAnimationFrame(zt.current),zt.current=0)}),[pn]),e.useEffect(()=>{$t.current=!0,pn()},[f,Dt,Nt,ke,q,Y,Ye,pn]),fe(it,fn,$t,pn,rn,an);const Cn=e.useMemo(()=>{if(Ee||Ce)return;const e=fn.current;return(null==e?void 0:e.xIsDate)&&Qt?Xt(Qt.x.domain()):void 0},[Ee,Ce,Qt]),jn=Ee||Ce||Cn,Ln=It&&nn?Pe?Pe(nn):p.createElement(Zt,{hover:nn}):null,Pn=Ln?p.createElement(vt,{x:nn.x,y:nn.y,containerWidth:Dt,containerHeight:Nt,margin:Bt,className:"stream-frame-tooltip"},Ln):null,_n=Sn.current,Tn=p.createElement(mt,{active:An.current>=0,hoverPoint:nn,margin:Bt,size:Tt,shape:null==_n?void 0:_n.shape,width:null==_n?void 0:_n.w,height:null==_n?void 0:_n.h}),Bn=(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},Dn=Bn(w,D,"__semiotic_resolvedX","__semiotic_resolvedTime"),Nn=Bn(A,P,"__semiotic_resolvedY","__semiotic_resolvedValue"),Rn=Dn.key,Hn=Nn.key,In=Be&&Be.length>0,Wn=e=>{if(!e||!In||!Dn.fn&&!Nn.fn)return e;let t=!1;const n=e.map(e=>{const n=Dn.fn&&Dn.key&&!(Dn.key in e),o=Nn.fn&&Nn.key&&!(Nn.key in e);if(!n&&!o)return e;t=!0;const r=Object.assign({},e);return n&&(r[Dn.key]=Dn.fn(e)),o&&(r[Nn.key]=Nn.fn(e)),r});return t?n:e};if(Ke){const e=fn.current;e&&m&&(e.ingest({inserts:m,bounded:!0}),e.computeScene({width:Dt,height:Nt}));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=jn||(()=>{if((null==e?void 0:e.xIsDate)&&n)return Xt(n.x.domain())})();return p.createElement("div",{className:"stream-xy-frame"+(G?" "+G:""),role:"img","aria-label":At||("string"==typeof Qe?Qe:"XY chart"),style:{position:"relative",width:Tt[0],height:Tt[1]}},p.createElement(gt,{summary:St}),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(${Bt.left},${Bt.top})`},Ht),p.createElement("g",{transform:`translate(${Bt.left},${Bt.top})`},q&&p.createElement("rect",{x:0,y:0,width:Dt,height:Nt,fill:q}),Xe&&n&&Xe.map((e,o)=>p.createElement(p.Fragment,{key:"svgpre-"+o},e(t,n,{width:Dt,height:Nt}))),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:Ue(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:Ue(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:Ue(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(Ve,{width:Dt,height:Nt,totalWidth:Tt[0],totalHeight:Tt[1],margin:Bt,scales:n,showAxes:ke,axes:we,xLabel:Ae,yLabel:Se,yLabelRight:Oe,xFormat:i,yFormat:Me||je,showGrid:Ne,title:Qe,legend:Re,legendHoverBehavior:He,legendClickBehavior:Ie,legendHighlightedCategory:We,legendIsolatedCategories:Fe,legendPosition:ze,foregroundGraphics:Rt,marginalGraphics:ht,xValues:[],yValues:[],annotations:Be,svgAnnotationRules:De,annotationFrame:0,xAccessor:Rn,yAccessor:Hn,annotationData:Wn(null==e?void 0:e.getData()),pointNodes:null==e?void 0:e.scene.filter(e=>"point"===e.type),curve:"string"==typeof C?C:void 0,linkedCrosshairName:Ot,linkedCrosshairSourceId:Et}))}const Fn="semiotic-table-"+p.useId();return p.createElement("div",{ref:_t,className:"stream-xy-frame"+(G?" "+G:""),role:"group","aria-label":At||("string"==typeof Qe?Qe:"XY chart"),tabIndex:0,style:{position:"relative",width:F?"100%":Tt[0],height:z?"100%":Tt[1],overflow:"visible"},onKeyDown:En},wt&&p.createElement(ft,{tableId:Fn}),wt&&p.createElement(dt,{scene:null!==(a=null===(i=fn.current)||void 0===i?void 0:i.scene)&&void 0!==a?a:[],chartType:f+" chart",tableId:Fn,chartTitle:"string"==typeof Qe?Qe:void 0}),p.createElement(gt,{summary:St}),p.createElement("div",{role:"img","aria-label":At||("string"==typeof Qe?Qe:"XY chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:It?Mn:void 0,onMouseLeave:It?wn:void 0},Ht&&p.createElement("svg",{style:{position:"absolute",left:0,top:0,width:Tt[0],height:Tt[1],pointerEvents:"none"}},p.createElement("g",{transform:`translate(${Bt.left},${Bt.top})`},Ht)),p.createElement(Ge,{width:Dt,height:Nt,totalWidth:Tt[0],totalHeight:Tt[1],margin:Bt,scales:Qt,showAxes:ke,axes:we,showGrid:Ne,xFormat:jn,yFormat:Me||je}),p.createElement("canvas",{ref:Wt,"aria-label":tt(null!==(l=null===(s=fn.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:Ft,style:{position:"absolute",left:0,top:0,pointerEvents:"none"}}),p.createElement(pt,{hoverPoint:nn}),p.createElement(Ve,{width:Dt,height:Nt,totalWidth:Tt[0],totalHeight:Tt[1],margin:Bt,scales:Qt,showAxes:ke,axes:we,xLabel:Ae,yLabel:Se,yLabelRight:Oe,xFormat:jn,yFormat:Me||je,showGrid:Ne,title:Qe,legend:Re,legendHoverBehavior:He,legendClickBehavior:Ie,legendHighlightedCategory:We,legendIsolatedCategories:Fe,legendPosition:ze,foregroundGraphics:Rt,marginalGraphics:ht,xValues:sn,yValues:cn,annotations:Be,svgAnnotationRules:De,annotationFrame:qt,xAccessor:Rn,yAccessor:Hn,annotationData:Wn(null===(c=fn.current)||void 0===c?void 0:c.getData()),pointNodes:null===(u=fn.current)||void 0===u?void 0:u.scene.filter(e=>"point"===e.type),curve:"string"==typeof C?C:void 0,underlayRendered:!0,linkedCrosshairName:Ot,linkedCrosshairSourceId:Et}),(Je||et)&&p.createElement(b,{width:Dt,height:Nt,totalWidth:Tt[0],totalHeight:Tt[1],margin:Bt,dimension:null!==(d=null==Je?void 0:Je.dimension)&&void 0!==d?d:"xy",scales:Qt,onBrush:null!=et?et:()=>{},binSize:L,snap:null==Je?void 0:Je.snap,binBoundaries:null!==(h=null==Je?void 0:Je.binBoundaries)&&void 0!==h?h:"bar"===f?null===(g=fn.current)||void 0===g?void 0:g.getBinBoundaries():void 0,snapDuring:null==Je?void 0:Je.snapDuring,streaming:"streaming"===y}),(null==it?void 0:it.showBadge)&&p.createElement("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===it.badgePosition?{top:4,left:4}:"bottom-left"===it.badgePosition?{bottom:4,left:4}:"bottom-right"===it.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{padding:"2px 8px",borderRadius:4,fontSize:11,fontWeight:600,pointerEvents:"none",background:rn?"#dc3545":"#28a745",color:"white"})},rn?"STALE":"LIVE"),Tn,Pn))});Jt.displayName="StreamXYFrame";const en=e.createContext(null);function tn({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:C[o]||j,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(en.Provider,{value:i},r)}function nn(){return e.useContext(en)}function on(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 rn(e,t){const n=[];for(const[o,r]of e.clauses)"crossfilter"===e.resolution&&o===t||n.push(on(r));return 0===n.length?()=>!0:"intersect"===e.resolution?e=>n.every(t=>t(e)):e=>n.some(t=>t(e))}function an(e,t){let n=e.get(t);return n||(n={name:t,resolution:"union",clauses:new Map},e.set(t,n)),n}tn.displayName="CategoryColorProvider";const[sn,ln]=kt(e=>({selections:new Map,setClause(t,n){e(e=>{const o=new Map(e.selections),r=an(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=an(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}})}})),[cn,un]=kt(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 dn(t){const n=e.useId(),o=t.clientId||n,{name:r}=t,i=ln(e=>e.selections.get(r)),a=ln(e=>e.setClause),s=ln(e=>e.clearClause),l=e.useMemo(()=>!!i&&i.clauses.size>0,[i]);return{predicate:e.useMemo(()=>i&&0!==i.clauses.size?rn(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 hn(t){const n=t.name||"hover",{fields:o}=t,{predicate:r,isActive:i,selectPoints:a,clear:s}=dn({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 gn(t){const{name:n,xField:o,yField:r}=t,{predicate:i,isActive:a,selectInterval:s,clear:l}=dn({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 fn(t={}){const{limit:n=50,types:o,chartId:r}=t,i=un(e=>e.version),a=un(e=>e.observations),s=un(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 pn=e.createContext(!1);function yn({selections:t}){const n=ln(e=>e.setResolution);return e.useEffect(()=>{for(const[e,o]of Object.entries(t))o.resolution&&n(e,o.resolution)},[t,n]),null}function mn({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=hn({name:o,fields:[r]}),c=dn({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]);return p.createElement("svg",{width:"100%",height:30,style:{display:"block",overflow:"visible"}},p.createElement(xe,{legendGroups:s,title:!1,orientation:"horizontal",height:20,customHoverBehavior:"highlight"===n?m:void 0,customClickBehavior:"isolate"===n?v:void 0,highlightedCategory:h,isolatedCategories:u}))}function vn({children:e,selections:t,showLegend:n,legendPosition:o="top",legendInteraction:r="none",legendSelectionName:i="legend",legendField:a="category"}){const s=nn(),l=void 0!==n?n:!(!s||0>=Object.keys(s).length);return p.createElement(sn,null,p.createElement(cn,null,t&&p.createElement(yn,{selections:t}),p.createElement(pn.Provider,{value:l},l&&"top"===o&&s&&p.createElement(mn,{categoryColors:s,interaction:r,selectionName:i,field:a}),e,l&&"bottom"===o&&s&&p.createElement(mn,{categoryColors:s,interaction:r,selectionName:i,field:a}))))}function bn({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):L[i%L.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 xn(e){return e?"string"==typeof e?{name:e}:e:null}function kn(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:.2;i.opacity=e,i.fillOpacity=e,i.strokeOpacity=e,(null==n?void 0:n.unselectedStyle)&&Object.assign(i,n.unselectedStyle)}return i}:e}const wn={light:At,dark:St,"high-contrast":Ot,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"},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"},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"},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"},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"},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"},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"},typography:{fontFamily:"Georgia, 'Times New Roman', serif",titleSize:16,labelSize:12,tickSize:10},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"},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"},typography:{fontFamily:"'Franklin Gothic Medium', 'Libre Franklin', Arial, sans-serif",titleSize:16,labelSize:12,tickSize:10},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"},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"},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"},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"},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"},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 An(e){return wn[e]}const Sn=p.createContext(void 0);function On({theme:e}){const t=Mt(e=>e.setTheme),n=Mt(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(Ot)),bt(n,e=>{var n;e.matches?(r.current=o.current,t(Ot)):(t(null!==(n=r.current)&&void 0!==n?n:At),r.current=null)})},[e,t]),p.useEffect(()=>{if(void 0!==e)if("string"==typeof e){const n=An(e);t(n||e)}else t(e)},[e,t]),null}function En({children:e}){var t,n,o,r,i;const a=Mt(e=>e.theme),s=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}:{}),l=p.useContext(Sn),c={};return l&&(c["data-semiotic-theme"]=l),p.createElement("div",Object.assign({style:s},c),e)}function Mn(){return Mt(e=>e.theme)}const Cn="#007bff";function jn(){var e;const t=Mn(),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 Ln(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=C[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]:Cn}function Pn(e){return"function"==typeof e?e:t=>t[e]}function _n(t,n,o){const r=nn(),i=jn();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=B(e.map(e=>({_cat:e})),"_cat",a);return e=>r[e]||t(e)}return B(e.map(e=>({_cat:e})),"_cat",a)}if(r&&Object.keys(r).length>0){const e=B(t,n,a);return t=>r[t]||e(t)}return B(t,n,a)}if(r&&Object.keys(r).length>0){const e=B([{_:"a"}],"_",a);return t=>r[t]||e(t)}},[t,n,o,r,i])}function Tn(t,n,o){return e.useMemo(()=>{if(!n)return t;const e=[...t];if("function"==typeof n)return e.sort(n);const r=Pn(o);return e.sort("asc"===n?(e,t)=>r(e)-r(t):(e,t)=>r(t)-r(e))},[t,n,o])}function Bn({selection:t,linkedHover:n,fallbackFields:o=[],unwrapData:r=!1,onObservation:i,chartType:a,chartId:s,onClick:l}){const c=e.useId(),u=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),d=dn({name:(null==t?void 0:t.name)||"__unused__"}),h=hn({name:(null==u?void 0:u.name)||"hover",fields:(null==u?void 0:u.fields)||o||[]}),g=un(e=>e.pushObservation),f=t?{isActive:d.isActive,predicate:d.predicate}:null,p=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==u?void 0:u.mode)&&u.xField){const e=null==t?void 0:t[u.xField];null!=e&&Number.isFinite(Number(e))&&function(e,t,n){const o=Be.positions.get(e);o&&o.xValue===t&&o.sourceId===n||(Be={positions:new Map(Be.positions).set(e,{xValue:t,sourceId:n})},Ne())}(u.name||"hover",Number(e),c)}"x-position"!==(null==u?void 0:u.mode)&&h.onHover(t)}else"x-position"===(null==u?void 0:u.mode)&&Re(u.name||"hover",c),"x-position"!==(null==u?void 0:u.mode)&&h.onHover(null);if(i||g){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),g&&g(a)}else{const e=Object.assign(Object.assign({},n),{type:"hover-end"});i&&i(e),g&&g(e)}}},[n,h,u,c,i,a,s,g]),y=e.useCallback(e=>{var t,n,o,r;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||g){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),g&&g(a)}else{const e=Object.assign(Object.assign({},t),{type:"click-end"});i&&i(e),g&&g(e)}}},[l,i,g,a,s]);return e.useEffect(()=>{if("x-position"!==(null==u?void 0:u.mode))return;const e=u.name||"hover";return()=>{Re(e,c)}},[null==u?void 0:u.mode,null==u?void 0:u.name,c]),{activeSelectionHook:f,customHoverBehavior:p,customClickBehavior:y,crosshairSourceId:c}}function Dn(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 Nn({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(pn),u=void 0!==r?r:!c&&!!n,d=e.useMemo(()=>{if(u&&n)return bn({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 Rn(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 Hn={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 In(e,t,n){var o,r,i,a,s,l;const c=Hn[e||"primary"],u="context"===e||"sparkline"===e;return{width:null!==(o=t.width)&&void 0!==o?o:e&&"primary"!==e||!(null==n?void 0:n.width)?c.width:n.width,height:null!==(r=t.height)&&void 0!==r?r:e&&"primary"!==e||!(null==n?void 0:n.height)?c.height:n.height,showAxes:c.showAxes,showGrid:null!==(i=t.showGrid)&&void 0!==i?i:c.showGrid,enableHover:null!==(a=t.enableHover)&&void 0!==a?a:!!t.linkedHover||c.enableHover,showLegend:null!==(s=t.showLegend)&&void 0!==s?s:c.showLegend,showLabels:null!==(l=t.showLabels)&&void 0!==l?l:c.showLabels,title:u?void 0:t.title,description:t.description,summary:t.summary,accessibleTable:t.accessibleTable,xLabel:u?void 0:t.xLabel,yLabel:u?void 0:t.yLabel,categoryLabel:u?void 0:t.categoryLabel,valueLabel:u?void 0:t.valueLabel,marginDefaults:Wn(c.marginDefaults,t.showCategoryTicks,t.orientation)}}function Wn(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 Fn={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 zn(e,t){return"function"==typeof t?t(e):e[t]}function $n(e,t){return t?t(e):null==e?"":"number"==typeof e?Math.abs(e)>9999?e.toLocaleString():e+"":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 Gn(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=zn(e,n);a=$n(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=zn(e,r);s.push({label:n,value:$n(a,i)})});else if(!n){const t=["value","y","name","id","label"];for(const n of t)if(void 0!==e[n]){a=$n(e[n],o);break}if(!a){const t=Object.keys(e).filter(e=>!e.startsWith("_"));t.length>0&&(a=$n(e[t[0]],o))}}const l=Object.assign(Object.assign({},Fn),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 qn(e){if(!0===e)return Gn();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:Fn},n)}}return!1!==e&&void 0!==e&&("object"==typeof e&&null!==e&&("fields"in e||"title"in e)?Gn(e):Gn())}function Yn(e){return"string"==typeof e?e:"value"}function Xn(e){return null==e?"–":"number"==typeof e?Math.abs(e)>9999?e.toLocaleString():e+"":e instanceof Date?e.toLocaleDateString():e+""}function Vn(e,t){return"function"==typeof t?t(e):e[t]}function Un(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?Xn(Vn(o,t.accessor)):null;return p.createElement("div",{className:"semiotic-tooltip",style:Fn},r&&p.createElement("div",{style:{fontWeight:"bold",marginBottom:n.length>0?4:0}},r),n.map((e,t)=>{const n=Xn(Vn(o,e.accessor));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 Kn({categoryAccessor:e,valueAccessor:t,groupAccessor:n,groupLabel:o,pieData:r=!1}){return i=>{var a;const s=r?(null===(a=i.data)||void 0===a?void 0:a[0])||i.data||i:i.data||i,l=Vn(s,e),c=Vn(s,t),u=n?Vn(s,n):void 0;return p.createElement("div",{className:"semiotic-tooltip",style:Fn},p.createElement("div",{style:{fontWeight:"bold"}},Xn(l)),p.createElement("div",{style:{marginTop:4}},Xn(c)),null!=u&&p.createElement("div",{style:{marginTop:2,opacity:.8}},o||Yn(n),": ",Xn(u)))}}function Qn({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 Zn 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(Qn,{componentName:"ChartErrorBoundary",message:t.message||"An unexpected error occurred while rendering this chart.",width:600,height:400})}return this.props.children}}function Jn(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 eo(e,t,n=3){let o,r=n+1;for(const n of t){const t=Jn(e.toLowerCase(),n.toLowerCase());r>t&&(r=t,o=n)}return r>n?void 0:o}function to(e){return e.length>3?[e[0],e[Math.floor(e.length/2)],e[e.length-1]]:e}function no(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=eo(e,t,3))&&void 0!==n?n:null)}function oo({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=to(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=no(i,t),o=n?` Try ${r}="${n}".`:"";return`${e}: ${r} "${i}" not found in data. Available fields: ${t.join(", ")}.${o}`}}}return null}function ro({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 io({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=to(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=no(r,t),i=n?` Try ${o}="${n}".`:"";return`${e}: ${o} "${r}" not found in node data. Available fields: ${t.join(", ")}.${i}`}}}return null}const ao={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"}},so={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"}},co=["linear","monotoneX","monotoneY","step","stepAfter","stepBefore","basis","cardinal","catmullRom"],uo=["vertical","horizontal"],ho={LineChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},ao),so),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},lineBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:co},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({},ao),so),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},areaBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:co},areaOpacity:{type:"number"},showLine:{type:"boolean"},lineWidth:{type:"number"}})},StackedAreaChart:{required:["data"],dataShape:"array",dataAccessors:["xAccessor","yAccessor"],props:Object.assign(Object.assign(Object.assign({},ao),so),{data:{type:"array"},xAccessor:{type:["string","function"]},yAccessor:{type:["string","function"]},areaBy:{type:["string","function"]},lineDataAccessor:{type:"string"},curve:{type:"string",enum:co},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({},ao),so),{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({},ao),so),{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({},ao),so),{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({},ao),so),{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({},ao),so),{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({},ao),so),{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({},ao),lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:uo},sort:{type:["boolean","string","function"]},barPadding:{type:"number"}})},StackedBarChart:{required:["data","stackBy"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},ao),lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},stackBy:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:uo},normalize:{type:"boolean"},barPadding:{type:"number"}})},LikertChart:{required:["levels"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor","levelAccessor","countAccessor"],props:Object.assign(Object.assign(Object.assign({},ao),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:uo},barPadding:{type:"number"}})},GroupedBarChart:{required:["data","groupBy"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},ao),lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},groupBy:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:uo},barPadding:{type:"number"}})},SwarmPlot:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},ao),lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:uo},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({},ao),lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:uo},showOutliers:{type:"boolean"},outlierRadius:{type:"number"},categoryPadding:{type:"number"}})},Histogram:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},ao),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({},ao),lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:uo},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({},ao),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({},ao),lo),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},orientation:{type:"string",enum:uo},sort:{type:["boolean","string","function"]},dotRadius:{type:"number"},categoryPadding:{type:"number"}})},PieChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign({},ao),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},startAngle:{type:"number"}})},DonutChart:{required:["data"],dataShape:"array",dataAccessors:["categoryAccessor","valueAccessor"],props:Object.assign(Object.assign({},ao),{data:{type:"array"},categoryAccessor:{type:["string","function"]},valueAccessor:{type:["string","function"]},innerRadius:{type:"number"},centerContent:{type:["object","string","number"]},startAngle:{type:"number"}})},FunnelChart:{required:["data"],dataShape:"array",dataAccessors:["stepAccessor","valueAccessor"],props:Object.assign(Object.assign(Object.assign({},ao),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({},ao),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({},ao),{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({},ao),{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:uo},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({},ao),{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({},ao),{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({},ao),{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({},ao),{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({},ao),{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"}}}};function go(e,t){return(Array.isArray(t)?t:[t]).includes(Array.isArray(e)?"array":typeof e)}function fo(e,t){const n=[],o=ho[e];if(!o)return{valid:!1,errors:[`Unknown component "${e}". Valid components: ${Object.keys(ho).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(!go(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=eo(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=oo({componentName:e,data:r,accessors:Object.keys(i).length>0?i:void 0});a&&n.push(a)}else if("object"===o.dataShape){const o=ro({componentName:e,data:t.data});o&&n.push(o)}else if("network"===o.dataShape){const r=io({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 po=new Set(["TreeDiagram","Treemap","CirclePack","OrbitDiagram"]),yo=new Set(["ForceDirectedGraph","SankeyDiagram","ChordDiagram"]),mo=new Set(["BarChart","StackedBarChart","GroupedBarChart","AreaChart","StackedAreaChart"]),vo=new Set(["LineChart","AreaChart","StackedAreaChart"]),bo=new Set(["BarChart","StackedBarChart","GroupedBarChart","FunnelChart"]);function xo(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 ko(e,t){const n=xo(e),o=xo(t);return null===n||null===o?null:(Math.max(n,o)+.05)/(Math.min(n,o)+.05)}const wo=["xAccessor","yAccessor","timeAccessor","valueAccessor","categoryAccessor","colorBy","sizeBy","lineBy","areaBy","stackBy","groupBy","orderAccessor","y0Accessor","sourceAccessor","targetAccessor","nodeIDAccessor","childrenAccessor","costAccessor"];function Ao(e,t){const n=[],o=fo(e,t);for(const e of o.errors)n.push({severity:"error",code:"VALIDATION",message:e,fix:""});return ho[e]?(function(e,t,n){const o=ho[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=ho[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){po.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){yo.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=ho[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(!mo.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(!vo.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=ho[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(!bo.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=ko(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=ko(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 wo)"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 So;const Oo="undefined"!=typeof process&&"production"!==(null===(So=process.env)||void 0===So?void 0:So.NODE_ENV);function Eo({componentName:e,width:t,height:n,chartProps:o,children:r}){return p.createElement(Zn,{fallback:r=>{let i="";if(Oo&&o)try{const t=Ao(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(Qn,{componentName:e,message:r.message,diagnosticHint:i,width:t,height:n})}},r)}const Mo={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"},Co={background:"var(--semiotic-border, #e0e0e0)",borderRadius:2};function jo(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({},Mo),{width:t,height:n})},o||"No data available"):null}function Lo(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({},Co),{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 Po(e,t,n,o){if(!Oo)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 _o(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 To="__forecastSegment";let Bo=null;function Do(){return _o(this,void 0,void 0,function*(){return Bo||(Bo=yield Promise.resolve().then(function(){return Ns})),Bo})}const No=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)},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:[]}}));const a=In(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,tooltip:O,pointIdAccessor:E,annotations:M,directLabel:C,gapStrategy:j="break",anomaly:L,forecast:P,frameProps:_={},selection:B,linkedHover:D,onObservation:N,onClick:R,chartId:H,loading:I,emptyContent:W,legendInteraction:F,legendPosition:z,xScaleType:$,yScaleType:G}=t,q=a.width,Y=a.height,X=a.enableHover,V=a.showGrid,U=a.showLegend,K=a.title,Q=a.description,Z=a.summary,J=a.accessibleTable,ee=a.xLabel,te=a.yLabel,ne=Lo(I,q,Y),oe=ne?null:jo(s,q,Y,W),re=s||[];Po("LineChart",re,"xAccessor",h),Po("LineChart",re,"yAccessor",g);const ie="string"==typeof h?h:"__semiotic_resolvedX",ae="string"==typeof g?g:"__semiotic_resolvedY",[se,le]=e.useState(null),[ce,ue]=e.useState([]),de=e.useMemo(()=>{if(!P&&!L)return re;const e="function"==typeof h,t="function"==typeof g;return e||t?re.map(n=>{const o=Object.assign({},n);return e&&(o.__semiotic_resolvedX=h(n)),t&&(o.__semiotic_resolvedY=g(n)),o}):re},[re,P,L,h,g]),he=e.useRef(P),ge=e.useRef(L);e.useEffect(()=>{if(!P&&!L)return void((he.current||ge.current)&&(le(null),ue([]),he.current=P,ge.current=L));let e=!1;const t=P!==he.current||L!==ge.current;if(he.current=P,ge.current=L,t&&(le(null),ue([])),P){const t=f&&"string"==typeof f&&"object"==typeof P?Object.assign(Object.assign({},P),{_groupBy:f}):P;(function(...e){return _o(this,void 0,void 0,function*(){return(yield Do()).buildForecast(...e)})})(de,ie,ae,t,L).then(t=>{e||(le(t),ue(t.annotations))}).catch(()=>{e||(le(null),ue([]))})}else L&&function(...e){return _o(this,void 0,void 0,function*(){return(yield Do()).buildAnomalyAnnotations(...e)})}(L).then(t=>{e||(le(null),ue(t))}).catch(()=>{e||ue([])});return()=>{e=!0}},[de,P,L,ie,ae]);const fe=se?se.processedData:re,pe="__compoundGroup",ye=!(!P||!f),me=ye?pe:P?To:f,ve=e.useMemo(()=>{if(!ye)return fe;const e="function"==typeof f?f:e=>e[f];return fe.map(t=>{const n=Object.assign({},t);return n[pe]=`${e(t)}__${t[To]||"observed"}`,n})},[fe,ye,f]),be=ye?ve:fe,xe=e.useMemo(()=>{if(!P)return;const e=P.upperBounds,t=P.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=se?se.processedData:re;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},[P,se,re,g]),{activeSelectionHook:ke,customHoverBehavior:we,customClickBehavior:Ae,crosshairSourceId:Se}=Bn({selection:B,linkedHover:D,fallbackFields:m?["string"==typeof m?m:""]:[],onObservation:N,onClick:R,chartType:"LineChart",chartId:H}),Oe=Dn(D,Se),Ee=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]),Me=void 0!==(null===(o=be[0])||void 0===o?void 0:o[y]),Ce=e.useMemo(()=>{if(Me)return be;if(me){const e=be.reduce((e,t)=>{const n="function"==typeof me?me(t):t[me];if(!e[n]){const o={[y]:[]};"string"==typeof me&&(o[me]=n),ye&&(o[To]=t[To],"string"==typeof f&&(o[f]=t[f])),e[n]=o}return e[n][y].push(t),e},{});return Object.values(e)}return[{[y]:be}]},[be,me,y,Me]),{gapProcessedLineData:je,hasGaps:Le}=e.useMemo(()=>{if("interpolate"===j){let e=!1;const t=[];for(const n of Ce){const o=(n[y]||[]).filter(t=>!Ee(t)||(e=!0,!1));o.length>0&&t.push(Object.assign(Object.assign({},n),{[y]:o}))}return{gapProcessedLineData:t,hasGaps:e}}if("break"===j){let e=!1;const t=[];for(const n of Ce){const o=n[y]||[];let r=[],i=0;const a=me&&"string"==typeof me?n[me]:void 0;for(const s of o)if(Ee(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"===j){let e=!1;const t="string"==typeof g?g:"y",n=[];for(const o of Ce){const r=o[y]||[],i=[];for(const n of r)Ee(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:Ce,hasGaps:!1}},[Ce,j,y,Ee,me,g]),Pe=_n(fe,m,v),_e=e.useMemo(()=>{if(!m)return[];const e=new Set;for(const t of fe){const n="function"==typeof m?m(t):t[m];null!=n&&e.add(n+"")}return Array.from(e)},[fe,m]),Te=Rn(F,m,_e),Be=e.useMemo(()=>Te.legendSelectionHook?Te.legendSelectionHook:ke,[Te.legendSelectionHook,ke]),De=e.useMemo(()=>e=>{const t={strokeWidth:S};return m?Pe&&(t.stroke=T(e,m,Pe),w&&(t.fill=t.stroke,t.fillOpacity=A)):(t.stroke=Cn,w&&(t.fill=Cn,t.fillOpacity=A)),t},[m,Pe,S,w,A]),[Ne,Re]=e.useState(null);e.useEffect(()=>{if(!P)return void Re(null);let e=!1;return function(...e){return _o(this,void 0,void 0,function*(){return(yield Do()).createSegmentLineStyle(...e)})}(De,P).then(t=>{e||Re(()=>t)}).catch(()=>{e||Re(null)}),()=>{e=!0}},[De,P]);const He=Ne||De,Ie=e.useMemo(()=>kn(He,Be,B),[He,Be,B]),We=e.useMemo(()=>{if(x)return e=>{const t={r:k,fillOpacity:1};return m?Pe&&(t.fill=T(e.parentLine||e,m,Pe)):t.fill=Cn,t}},[x,k,m,Pe]),Fe=w?"area":"line",ze="object"==typeof C?C:{},$e=ze.position||"end",Ge=ze.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 je){const o=n[y]||[];if(0===o.length)continue;const a="end"===$e?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"===$e?6:-6,dy:0,color:Pe?Pe(e):Cn,fontSize:Ge}));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];Ge+2>Math.abs(o[t]+o.dy-(n[t]+n.dy))&&(o.dy+=Ge+2)}return a},[C,m,Pe,je,y,h,g,$e,Ge]),Ye=(!C||void 0!==U)&&U,Xe=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*Ge);return Math.max(e,o)},0),t=e+10,n="end"===$e?"right":"left";return Object.assign(Object.assign({},a.marginDefaults),{[n]:Math.max(a.marginDefaults[n]||0,t)})},[C,qe,Ge,$e,a.marginDefaults]),{legend:Ve,margin:Ue,legendPosition:Ke}=Nn({data:je,colorBy:m,colorScale:Pe,showLegend:Ye,legendPosition:z,userMargin:l,defaults:Xe}),Qe=f||m,Ze=e.useMemo(()=>Un([{label:ee||Yn(h),accessor:h,role:"x"},{label:te||Yn(g),accessor:g,role:"y"},...Qe?[{label:Yn(Qe),accessor:Qe,role:"group"}]:[]]),[h,g,ee,te,Qe]),Je=oo({componentName:"LineChart",data:Me?(null===(r=fe[0])||void 0===r?void 0:r[y])||[]:s,accessors:{xAccessor:h,yAccessor:g}}),et=e.useMemo(()=>Me||me||Le?je.flatMap(e=>{const t=e[y]||[];return me&&"string"==typeof me?t.map(t=>Object.assign(Object.assign({},t),{[me]:e[me]})):t}):be,[je,y,Me,me,be,Le]),tt=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(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:Fe},null!=s&&{data:et}),{xAccessor:h,yAccessor:g,xScaleType:$,yScaleType:G}),xe&&{yExtent:xe}),{groupAccessor:"break"===j&&Le?"_gapSegment":me||void 0,curve:b,lineStyle:Ie}),x&&{pointStyle:We}),{size:[q,Y],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Ue,showAxes:a.showAxes,xLabel:ee,yLabel:te,xFormat:u,yFormat:d,enableHover:X,showGrid:V}),Ve&&{legend:Ve,legendPosition:Ke}),F&&"none"!==F&&{legendHoverBehavior:Te.onLegendHover,legendClickBehavior:Te.onLegendClick,legendHighlightedCategory:Te.highlightedCategory,legendIsolatedCategories:Te.isolatedCategories}),K&&{title:K}),Q&&{description:Q}),Z&&{summary:Z}),void 0!==J&&{accessibleTable:J}),c&&{className:c}),{tooltipContent:!1===O?()=>null:qn(O)||Ze}),(D||N||R)&&{customHoverBehavior:we}),(N||R)&&{customClickBehavior:Ae}),E&&{pointIdAccessor:E}),((null==M?void 0:M.length)||ce.length||qe.length)&&{annotations:[...M||[],...ce,...qe]}),Oe),_);return ne||oe||(Je?p.createElement(Qn,{componentName:"LineChart",message:Je,width:q,height:Y}):p.createElement(Eo,{componentName:"LineChart",width:q,height:Y},p.createElement(Jt,Object.assign({ref:i},tt))))});No.displayName="LineChart";const Ro=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)},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:[]}}));const i=In(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,showLine:w=!0,lineWidth:A=2,showPoints:S=!1,pointRadius:O=3,tooltip:E,annotations:M,frameProps:C={},selection:j,linkedHover:L,onObservation:P,onClick:_,chartId:B,loading:D,emptyContent:N,legendInteraction:R,legendPosition:H}=t,I=i.width,W=i.height,F=i.enableHover,z=i.showGrid,$=i.showLegend,G=i.title,q=i.description,Y=i.summary,X=i.accessibleTable,V=i.xLabel,U=i.yLabel,K=Lo(D,I,W),Q=K?null:jo(a,I,W,N),Z=a||[];Po("AreaChart",Z,"xAccessor",d),Po("AreaChart",Z,"yAccessor",h);const{activeSelectionHook:J,customHoverBehavior:ee,customClickBehavior:te,crosshairSourceId:ne}=Bn({selection:j,linkedHover:L,fallbackFields:v?["string"==typeof v?v:""]:[],onObservation:P,onClick:_,chartType:"AreaChart",chartId:B}),oe=Dn(L,ne),re=void 0!==(null===(o=Z[0])||void 0===o?void 0:o[m]),ie=e.useMemo(()=>{if(re)return Z;if(g){const e=Z.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]:Z}]},[Z,g,m,re]),ae=_n(Z,v,b),se=e.useMemo(()=>{if(!v)return[];const e=new Set;for(const t of Z){const n="function"==typeof v?v(t):t[v];null!=n&&e.add(n+"")}return Array.from(e)},[Z,v]),le=Rn(R,v,se),ce=e.useMemo(()=>le.legendSelectionHook?le.legendSelectionHook:J,[le.legendSelectionHook,J]),ue=e.useMemo(()=>e=>{const t={};if(v){if(ae){const n=T(e,v,ae);t.fill=n,w?(t.stroke=n,t.strokeWidth=A):t.stroke="none"}}else t.fill=Cn,w?(t.stroke=Cn,t.strokeWidth=A):t.stroke="none";return t.fillOpacity=k,t},[v,ae,k,w,A]),de=e.useMemo(()=>kn(ue,ce,j),[ue,ce,j]),he=e.useMemo(()=>{if(S)return e=>{const t={r:O,fillOpacity:1};return v?ae&&(t.fill=T(e.parentLine||e,v,ae)):t.fill=Cn,t}},[S,O,v,ae]),{legend:ge,margin:fe,legendPosition:pe}=Nn({data:ie,colorBy:v,colorScale:ae,showLegend:$,legendPosition:H,userMargin:s,defaults:i.marginDefaults}),ye=g||v,me=e.useMemo(()=>Un([{label:V||Yn(d),accessor:d,role:"x"},{label:U||Yn(h),accessor:h,role:"y"},...ye?[{label:Yn(ye),accessor:ye,role:"group"}]:[]]),[d,h,V,U,ye]),ve=oo({componentName:"AreaChart",data:a,accessors:{xAccessor:d,yAccessor:h}}),be=e.useMemo(()=>re||g?ie.flatMap(e=>{const t=e[m]||[];return g&&"string"==typeof g?t.map(t=>Object.assign(Object.assign({},t),{[g]:e[g]})):t}):Z,[ie,m,re,g,Z]),xe=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(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:be}),{xAccessor:d,yAccessor:h,groupAccessor:g||void 0}),f&&{y0Accessor:f}),y&&{gradientFill:y}),{curve:x,lineStyle:de}),S&&he&&{pointStyle:he}),{size:[I,W],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:fe,showAxes:i.showAxes,xLabel:V,yLabel:U,xFormat:c,yFormat:u,enableHover:F,showGrid:z}),ge&&{legend:ge,legendPosition:pe}),R&&"none"!==R&&{legendHoverBehavior:le.onLegendHover,legendClickBehavior:le.onLegendClick,legendHighlightedCategory:le.highlightedCategory,legendIsolatedCategories:le.isolatedCategories}),G&&{title:G}),q&&{description:q}),Y&&{summary:Y}),void 0!==X&&{accessibleTable:X}),l&&{className:l}),{tooltipContent:!1===E?()=>null:qn(E)||me}),(L||P||_)&&{customHoverBehavior:ee}),(P||_)&&{customClickBehavior:te}),M&&M.length>0&&{annotations:M}),oe),C);return K||Q||(ve?p.createElement(Qn,{componentName:"AreaChart",message:ve,width:I,height:W}):p.createElement(Eo,{componentName:"AreaChart",width:I,height:W},p.createElement(Jt,Object.assign({ref:r},xe))))});function Ho({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:L,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 bn({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}}Ro.displayName="AreaChart";const Io=e.forwardRef(function(t,n){var o;const r=e.useRef(null),i=In(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:C,linkedHover:j,onObservation:L,onClick:P,chartId:_,loading:B,emptyContent:D,legendInteraction:N,legendPosition:R}=t,H=i.width,I=i.height,W=i.enableHover,F=i.showGrid,z=i.showLegend,$=i.title,G=i.description,q=i.summary,Y=i.accessibleTable,X=i.xLabel,V=i.yLabel,U=Lo(B,H,I),K=U?null:jo(a,H,I,D),Q=a||[],Z=Ho({isPushMode:void 0===a,colorBy:y||g,colorScheme:m,showLegend:z,legendPosition:R}),J=e.useCallback(Z.wrapPush(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.push(e)}),[Z.wrapPush]),ee=e.useCallback(Z.wrapPushMany(e=>{var t;return null===(t=r.current)||void 0===t?void 0:t.pushMany(e)}),[Z.wrapPushMany]);e.useImperativeHandle(n,()=>({push:J,pushMany:ee,clear:()=>{var e;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:[]}}),[J,ee,Z.resetCategories]);const{activeSelectionHook:te,customHoverBehavior:ne,customClickBehavior:oe,crosshairSourceId:re}=Bn({selection:C,linkedHover:j,fallbackFields:y?["string"==typeof y?y:""]:[],onObservation:L,onClick:P,chartType:"StackedAreaChart",chartId:_}),ie=Dn(j,re),ae=void 0!==(null===(o=Q[0])||void 0===o?void 0:o[f]),se=e.useMemo(()=>{if(ae)return Q;if(g){const e=Q.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]:Q}]},[Q,g,f,ae]),le=_n(Q,y,m),ce=e.useMemo(()=>{if(!y)return[];const e=new Set;for(const t of Q){const n="function"==typeof y?y(t):t[y];null!=n&&e.add(n+"")}return Array.from(e)},[Q,y]),ue=Rn(N,y,ce),de=e.useMemo(()=>ue.legendSelectionHook?ue.legendSelectionHook:te,[ue.legendSelectionHook,te]),he=e.useMemo(()=>e=>{const t={};if(y&&le){const n=T(e,y,le);t.fill=n,x?(t.stroke=n,t.strokeWidth=k):t.stroke="none"}else y||(t.fill=Cn,t.stroke=x?Cn:"none",x&&(t.strokeWidth=k));return t.fillOpacity=b,t},[y,le,b,x,k]),ge=e.useMemo(()=>kn(he,de,C),[he,de,C]),fe=e.useMemo(()=>{if(w)return e=>{const t={r:A,fillOpacity:1};return y?le&&(t.fill=T(e.parentLine||e,y,le)):t.fill=Cn,t}},[w,A,y,le]),{legend:pe,margin:ye,legendPosition:me}=Nn({data:se,colorBy:y,colorScale:le,showLegend:z,legendPosition:R,userMargin:s,defaults:i.marginDefaults}),ve=Z.streamingLegend||pe,be=R||me,xe=e.useMemo(()=>{if(Z.streamingMarginAdjust){const e=Object.assign({},ye);for(const[t,n]of Object.entries(Z.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return ye},[ye,Z.streamingMarginAdjust]),ke=g||y,we=e.useMemo(()=>Un([{label:X||Yn(d),accessor:d,role:"x"},{label:V||Yn(h),accessor:h,role:"y"},...ke?[{label:Yn(ke),accessor:ke,role:"group"}]:[]]),[d,h,X,V,ke]),Ae=oo({componentName:"StackedAreaChart",data:a,accessors:{xAccessor:d,yAccessor:h}}),Se=e.useMemo(()=>ae||g?se.flatMap(e=>{const t=e[f]||[];return g&&"string"==typeof g?t.map(t=>Object.assign(Object.assign({},t),{[g]:e[g]})):t}):Q,[se,f,ae,g,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({chartType:"stackedarea"},null!=a&&{data:Se}),{xAccessor:d,yAccessor:h,groupAccessor:g||void 0,curve:v,normalize:S,lineStyle:ge}),w&&fe&&{pointStyle:fe}),{size:[H,I],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:xe,showAxes:i.showAxes,xLabel:X,yLabel:V,xFormat:c,yFormat:u,enableHover:W,showGrid:F}),ve&&{legend:ve,legendPosition:be}),N&&"none"!==N&&{legendHoverBehavior:ue.onLegendHover,legendClickBehavior:ue.onLegendClick,legendHighlightedCategory:ue.highlightedCategory,legendIsolatedCategories:ue.isolatedCategories}),$&&{title:$}),G&&{description:G}),q&&{summary:q}),void 0!==Y&&{accessibleTable:Y}),l&&{className:l}),{tooltipContent:!1===O?()=>null:qn(O)||we}),(j||L||P)&&{customHoverBehavior:ne}),(L||P)&&{customClickBehavior:oe}),E&&E.length>0&&{annotations:E}),ie),M);return U||K||(Ae?p.createElement(Qn,{componentName:"StackedAreaChart",message:Ae,width:H,height:I}):p.createElement(Eo,{componentName:"StackedAreaChart",width:H,height:I},p.createElement(Jt,Object.assign({ref:r},Oe))))});function Wo(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,loading:b,emptyContent:x,width:k,height:w}=t,{activeSelectionHook:A,customHoverBehavior:S,customClickBehavior:O,crosshairSourceId:E}=Bn({selection:l,linkedHover:c,fallbackFields:u,unwrapData:d,onObservation:h,chartType:g,chartId:f,onClick:v}),M=Dn(c,E),C=_n(n,r,i),j=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]),L=Rn(a,r,j),P=e.useMemo(()=>L.legendSelectionHook?L.legendSelectionHook:A,[L.legendSelectionHook,A]),{legend:_,margin:T,legendPosition:B}=Nn({data:n,colorBy:r,colorScale:C,showLegend:p,legendPosition:s,userMargin:y,defaults:m}),D=e.useMemo(()=>{const e={};return _&&(e.legend=_,e.legendPosition=B),a&&"none"!==a&&(e.legendHoverBehavior=L.onLegendHover,e.legendClickBehavior=L.onLegendClick,e.legendHighlightedCategory=L.highlightedCategory,e.legendIsolatedCategories=L.isolatedCategories),e},[_,B,a,L.onLegendHover,L.onLegendClick,L.highlightedCategory,L.isolatedCategories]),N=Lo(b,k,w),R=N?null:jo(o,k,w,x);return{colorScale:C,allCategories:j,legendState:L,effectiveSelectionHook:P,activeSelectionHook:A,customHoverBehavior:S,customClickBehavior:O,legend:_,margin:T,legendPosition:B,earlyReturn:N||R||null,legendBehaviorProps:D,crosshairProps:M}}Io.displayName="StackedAreaChart";const Fo=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)},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:[]}}));const r=In(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:C,chartId:j,loading:L,emptyContent:P,legendInteraction:_,legendPosition:B}=t,N=r.width,R=r.height,H=r.enableHover,I=r.showGrid,W=r.title,F=r.description,z=r.summary,$=r.accessibleTable,G=r.xLabel,q=r.yLabel,Y=i||[],X=Wo({data:Y,rawData:i,colorBy:h,colorScheme:g,legendInteraction:_,legendPosition:B,selection:S,linkedHover:O,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!1,onObservation:M,onClick:C,chartType:"Scatterplot",chartId:j,showLegend:r.showLegend,userMargin:a,marginDefaults:r.marginDefaults,loading:L,emptyContent:P,width:N,height:R}),V=xn(E),U=gn({name:(null==V?void 0:V.name)||"__unused_brush__",xField:(null==V?void 0:V.xField)||("string"==typeof u?u:void 0),yField:(null==V?void 0:V.yField)||("string"==typeof d?d:void 0)}),K=V?"xyBrush"===U.brushInteraction.brush?"xy":"xBrush"===U.brushInteraction.brush?"x":"y":void 0,Q=p.useRef(U.brushInteraction);Q.current=U.brushInteraction;const Z=e.useCallback(e=>{const t=Q.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(X.earlyReturn)return X.earlyReturn;Po("Scatterplot",Y,"xAccessor",u),Po("Scatterplot",Y,"yAccessor",d);const J=e.useMemo(()=>{if(!f||0===Y.length)return;const e=Y.map(e=>"function"==typeof f?f(e):e[f]);return[Math.min(...e),Math.max(...e)]},[Y,f]),ee=e.useMemo(()=>e=>{const t={fillOpacity:v};return h?X.colorScale&&(t.fill=T(e,h,X.colorScale)):t.fill=Cn,t.r=f?D(e,f,y,J):m,t},[h,X.colorScale,f,y,J,m,v]),te=e.useMemo(()=>kn(ee,X.effectiveSelectionHook,S),[ee,X.effectiveSelectionHook,S]),ne=e.useMemo(()=>Un([{label:G||Yn(u),accessor:u,role:"x"},{label:q||Yn(d),accessor:d,role:"y"},...h?[{label:Yn(h),accessor:h,role:"color"}]:[],...f?[{label:Yn(f),accessor:f,role:"size"}]:[]]),[u,d,G,q,h,f]),oe=oo({componentName:"Scatterplot",data:i,accessors:{xAccessor:u,yAccessor:d}});if(oe)return p.createElement(Qn,{componentName:"Scatterplot",message:oe,width:N,height:R});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({chartType:"scatter"},null!=i&&{data:Y}),{xAccessor:u,yAccessor:d,colorAccessor:h||void 0,sizeAccessor:f||void 0,sizeRange:y,pointStyle:te,colorScheme:g,size:[N,R],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:X.margin,showAxes:r.showAxes,xLabel:G,yLabel:q,xFormat:l,yFormat:c,enableHover:H,showGrid:I}),X.legendBehaviorProps),W&&{title:W}),F&&{description:F}),z&&{summary:z}),void 0!==$&&{accessibleTable:$}),s&&{className:s}),{tooltipContent:!1===b?()=>null:qn(b)||ne}),(O||M||C)&&{customHoverBehavior:X.customHoverBehavior}),(M||C)&&{customClickBehavior:X.customClickBehavior}),x&&{marginalGraphics:x}),k&&{pointIdAccessor:k}),w&&w.length>0&&{annotations:w}),V&&{brush:{dimension:K},onBrush:Z}),X.crosshairProps),A);return p.createElement(Eo,{componentName:"Scatterplot",width:N,height:R},p.createElement(Jt,Object.assign({ref:o},re)))});function zo(e,t){return i.interpolateViridis(1===t?.5:e/(t-1))}Fo.displayName="Scatterplot";const $o=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)},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:[]}}));const r=In(t.mode,{width:t.width,height:t.height,showGrid:t.showGrid,enableHover:t.enableHover,title:t.title,xLabel:t.xLabel,yLabel:t.yLabel}),{data:i,className:a,xFormat:s,yFormat:l,xAccessor:c="x",yAccessor:u="y",orderAccessor:d,orderLabel:h,pointRadius:g=4,tooltip:f,pointIdAccessor:y,annotations:m,frameProps:v={},selection:b,linkedHover:x,onObservation:k,onClick:w,chartId:A,loading:S,emptyContent:O,legendInteraction:E}=t,M=r.width,C=r.height,j=r.enableHover,L=r.showGrid,P=r.title,_=r.description,T=r.summary,B=r.accessibleTable,D=r.xLabel,N=r.yLabel,R=i||[],{safeData:H,orderMap:I}=e.useMemo(()=>{const e="function"==typeof c?c:e=>e[c],t="function"==typeof u?u:e=>e[u];let n=R;if(d&&R.length>0){const e="function"==typeof d?d:e=>e[d];n=[...R].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}},[R,d,c,u]);Po("ConnectedScatterplot",H,"xAccessor",c),Po("ConnectedScatterplot",H,"yAccessor",u);const{activeSelectionHook:W,customHoverBehavior:F,customClickBehavior:z,crosshairSourceId:$}=Bn({selection:b,linkedHover:x,fallbackFields:[],onObservation:k,onClick:w,chartType:"ConnectedScatterplot",chartId:A}),G=Dn(x,$),q=Rn(E,void 0,[]),Y=e.useMemo(()=>q.legendSelectionHook?q.legendSelectionHook:W,[q.legendSelectionHook,W]),X=e.useMemo(()=>(e,t)=>{var n,o;const r=t.filter(e=>"point"===e.type);if(2>r.length)return;const i=null==Y?void 0:Y.isActive,a=null==Y?void 0:Y.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=zo(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),f=i?h?1:.2:1;s&&(e.beginPath(),e.moveTo(c.x,c.y),e.lineTo(u.x,u.y),e.strokeStyle="white",e.lineWidth=g+2,e.globalAlpha=.5*f,e.stroke()),e.beginPath(),e.moveTo(c.x,c.y),e.lineTo(u.x,u.y),e.strokeStyle=d,e.lineWidth=g,e.globalAlpha=f,e.stroke()}e.globalAlpha=1},[g,Y]),V=e.useMemo(()=>[X],[X]),U=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=zo(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:g+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:g,strokeLinecap:"round",opacity:h}))}return p.createElement(p.Fragment,null,l)},[g]),K=e.useMemo(()=>[U],[U]),Q=e.useMemo(()=>e=>{var t,n;const o=I.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?zo(r,i):"#6366f1",stroke:"white",strokeWidth:1,r:g,fillOpacity:1}},[g,I]),Z=e.useMemo(()=>kn(Q,Y,b),[Q,Y,b]),J=Object.assign({top:50,right:40,bottom:60,left:70},t.margin),ee=h||("string"==typeof d?d:"Order"),te=e.useMemo(()=>Un([{label:D||Yn(c),accessor:c,role:"x"},{label:N||Yn(u),accessor:u,role:"y"},...d?[{label:ee,accessor:d,role:"group"}]:[]]),[c,u,D,N,d,ee]),ne=oo({componentName:"ConnectedScatterplot",data:i,accessors:{xAccessor:c,yAccessor:u}}),oe=Lo(S,M,C),re=oe?null:jo(i,M,C,O),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({chartType:"scatter"},null!=i&&{data:H}),{xAccessor:c,yAccessor:u,pointStyle:Z,size:[M,C],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:J,showAxes:r.showAxes,xLabel:D,yLabel:N,xFormat:s,yFormat:l,enableHover:j,showGrid:L}),P&&{title:P}),_&&{description:_}),T&&{summary:T}),void 0!==B&&{accessibleTable:B}),a&&{className:a}),{tooltipContent:!1===f?()=>null:qn(f)||te}),(x||k||w)&&{customHoverBehavior:F}),(k||w)&&{customClickBehavior:z}),y&&{pointIdAccessor:y}),{canvasPreRenderers:V,svgPreRenderers:K}),m&&m.length>0&&{annotations:m}),G),v);return oe||re||(ne?p.createElement(Qn,{componentName:"ConnectedScatterplot",message:ne,width:M,height:C}):p.createElement(Eo,{componentName:"ConnectedScatterplot",width:M,height:C},p.createElement(Jt,Object.assign({ref:o},ie))))});$o.displayName="ConnectedScatterplot";const Go=e.forwardRef(function(t,n){const o=e.useRef(null),r=In(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:C,onClick:j,chartId:L,loading:P,emptyContent:_,legendInteraction:B,legendPosition:N}=t,R=r.width,H=r.height,I=r.enableHover,W=r.showGrid,F=r.showLegend,z=r.title,$=r.description,G=r.summary,q=r.accessibleTable,Y=r.xLabel,X=r.yLabel,V=Lo(P,R,H),U=V?null:jo(i,R,H,_),K=i||[],Q=void 0===i,Z=e.useRef(null),[J,ee]=e.useState(0),te=e.useCallback(e=>{if(!Q)return;let t=!1;for(const n of e){const e="function"==typeof h?h(n):n[h];null!=e&&isFinite(e)&&(Z.current?(Z.current[0]>e&&(Z.current[0]=e,t=!0),e>Z.current[1]&&(Z.current[1]=e,t=!0)):(Z.current=[e,e],t=!0))}t&&ee(e=>e+1)},[Q,h]),ne=Ho({isPushMode:Q,colorBy:f,colorScheme:y,showLegend:F,legendPosition:N}),oe=e.useCallback(ne.wrapPush(e=>{var t;te([e]),null===(t=o.current)||void 0===t||t.push(e)}),[ne.wrapPush,te]),re=e.useCallback(ne.wrapPushMany(e=>{var t;te(e),null===(t=o.current)||void 0===t||t.pushMany(e)}),[ne.wrapPushMany,te]);e.useImperativeHandle(n,()=>({push:oe,pushMany:re,clear:()=>{var e;ne.resetCategories(),Z.current=null,ee(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:[]}}),[oe,re,ne.resetCategories]);const{activeSelectionHook:ie,customHoverBehavior:ae,customClickBehavior:se,crosshairSourceId:le}=Bn({selection:O,linkedHover:E,fallbackFields:f?["string"==typeof f?f:""]:[],onObservation:C,onClick:j,chartType:"BubbleChart",chartId:L}),ce=Dn(E,le),ue=xn(M);gn({name:(null==ue?void 0:ue.name)||"__unused_brush__",xField:(null==ue?void 0:ue.xField)||("string"==typeof u?u:void 0),yField:(null==ue?void 0:ue.yField)||("string"==typeof d?d:void 0)});const de=_n(K,f,y),he=e.useMemo(()=>{if(!f)return[];const e=new Set;for(const t of K){const n="function"==typeof f?f(t):t[f];null!=n&&e.add(n+"")}return Array.from(e)},[K,f]),ge=Rn(B,f,he),fe=e.useMemo(()=>ge.legendSelectionHook?ge.legendSelectionHook:ie,[ge.legendSelectionHook,ie]),pe=e.useMemo(()=>{if(Q)return Z.current||[0,1];const e=K.map(e=>"function"==typeof h?h(e):e[h]);return[Math.min(...e),Math.max(...e)]},[K,h,Q,J]),ye=e.useMemo(()=>e=>{const t={fillOpacity:m,strokeWidth:v,stroke:b};return f?de&&(t.fill=T(e,f,de)):t.fill=Cn,t.r=D(e,h,g,pe),t},[f,de,h,g,pe,m,v,b]),me=e.useMemo(()=>kn(ye,fe,O),[ye,fe,O]),{legend:ve,margin:be,legendPosition:xe}=Nn({data:K,colorBy:f,colorScale:de,showLegend:F,legendPosition:N,userMargin:a,defaults:r.marginDefaults}),ke=ne.streamingLegend||ve,we=N||xe,Ae=e.useMemo(()=>{if(ne.streamingMarginAdjust){const e=Object.assign({},be);for(const[t,n]of Object.entries(ne.streamingMarginAdjust))n>e[t]&&(e[t]=n);return e}return be},[be,ne.streamingMarginAdjust]),Se=e.useMemo(()=>Un([{label:Y||Yn(u),accessor:u,role:"x"},{label:X||Yn(d),accessor:d,role:"y"},{label:Yn(h),accessor:h,role:"size"},...f?[{label:Yn(f),accessor:f,role:"color"}]:[]]),[u,d,Y,X,h,f]),Oe=oo({componentName:"BubbleChart",data:i,accessors:{xAccessor:u,yAccessor:d},requiredProps:{sizeBy:h}});if(Oe)return p.createElement(Qn,{componentName:"BubbleChart",message:Oe,width:R,height:H});const Ee=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(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:K}),{xAccessor:u,yAccessor:d,colorAccessor:f||void 0,sizeAccessor:h,sizeRange:g,pointStyle:me,colorScheme:y,size:[R,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Ae,showAxes:r.showAxes,xLabel:Y,yLabel:X,xFormat:l,yFormat:c,enableHover:I,showGrid:W}),ke&&{legend:ke,legendPosition:we}),B&&"none"!==B&&{legendHoverBehavior:ge.onLegendHover,legendClickBehavior:ge.onLegendClick,legendHighlightedCategory:ge.highlightedCategory,legendIsolatedCategories:ge.isolatedCategories}),z&&{title:z}),$&&{description:$}),G&&{summary:G}),void 0!==q&&{accessibleTable:q}),s&&{className:s}),{tooltipContent:!1===x?()=>null:qn(x)||Se}),(E||C||j)&&{customHoverBehavior:ae}),(C||j)&&{customClickBehavior:se}),k&&{marginalGraphics:k}),w&&{pointIdAccessor:w}),A&&A.length>0&&{annotations:A}),ce),S);return V||U||p.createElement(Eo,{componentName:"BubbleChart",width:R,height:H},p.createElement(Jt,Object.assign({ref:o},Ee)))});Go.displayName="BubbleChart";const qo=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)},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:[]}}));const a=In(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:C,chartId:j,loading:L,emptyContent:P,showLegend:_,legendPosition:T,legendInteraction:B}=t,D=a.width,N=a.height,R=a.enableHover,H=a.title,I=a.description,W=a.summary,F=a.accessibleTable,z=a.xLabel,$=a.yLabel,G=Lo(L,D,N),q=G?null:jo(s,D,N,P),Y=s||[],X=null!=_&&_,V=null!=T?T:"right",{margin:U}=Nn({data:Y,colorBy:X?"value":void 0,colorScale:void 0,showLegend:X,legendPosition:V,userMargin:l,defaults:a.marginDefaults}),{activeSelectionHook:K,customHoverBehavior:Q,customClickBehavior:Z,crosshairSourceId:J}=Bn({selection:O,linkedHover:E,fallbackFields:[],onObservation:M,onClick:C,chartType:"Heatmap",chartId:j}),ee=Dn(E,J),te=Rn(B,void 0,[]),ne=e.useMemo(()=>te.legendSelectionHook?te.legendSelectionHook:K,[te.legendSelectionHook,K]),oe=e.useMemo(()=>"function"==typeof h?e=>h(e):e=>e[h],[h]),re=e.useMemo(()=>{const e=Y.map(oe);return[Math.min(...e),Math.max(...e)]},[Y,oe]),ie=e.useMemo(()=>"custom"===y&&m?m:o.scaleSequential({blues:i.interpolateBlues,reds:i.interpolateReds,greens:i.interpolateGreens,viridis:i.interpolateViridis}[y]||i.interpolateBlues).domain(re),[y,m,re]);e.useMemo(()=>{const e=Pn(u),t=Pn(d);return{xBinCount:new Set(Y.map(e)).size,yBinCount:new Set(Y.map(t)).size}},[Y,u,d]),e.useMemo(()=>({coordinates:Y}),[Y]);const ae=e.useMemo(()=>e=>{const t=oe(e);return{fill:ie(t),stroke:x,strokeWidth:k}},[oe,ie,x,k]);e.useMemo(()=>kn(ae,ne,O),[ae,ne,O]);const se=e.useMemo(()=>Un([{label:z||Yn(u),accessor:u,role:"x"},{label:$||Yn(d),accessor:d,role:"y"},{label:Yn(h),accessor:h,role:"value"}]),[u,d,z,$,h]),le=oo({componentName:"Heatmap",data:s,accessors:{xAccessor:u,yAccessor:d,valueAccessor:h}}),ce=e.useMemo(()=>{if(X)return{gradient:{colorFn:e=>ie(e),domain:re,label:"string"==typeof h?h:"value",format:b}}},[X,ie,re,h,b]),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({chartType:"heatmap"},null!=s&&{data:Y}),{xAccessor:u,yAccessor:d,valueAccessor:h,colorScheme:"custom"!==y?y:void 0,showValues:v,heatmapValueFormat:b,size:[D,N],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:U,showAxes:a.showAxes,xLabel:z,yLabel:$,xFormat:g,yFormat:f,enableHover:R}),ce&&{legend:ce,legendPosition:V}),H&&{title:H}),I&&{description:I}),W&&{summary:W}),void 0!==F&&{accessibleTable:F}),c&&{className:c}),{tooltipContent:!1===w?()=>null:qn(w)||se}),(E||M||C)&&{customHoverBehavior:Q}),(M||C)&&{customClickBehavior:Z}),A&&A.length>0&&{annotations:A}),ee),S);return G||q||(le?p.createElement(Qn,{componentName:"Heatmap",message:le,width:D,height:N}):p.createElement(Eo,{componentName:"Heatmap",width:D,height:N},p.createElement(Jt,Object.assign({ref:r},ue))))});qo.displayName="Heatmap";const Yo="__splomIdx",Xo={top:4,bottom:4,left:4,right:4};function Vo({frameRef:o,cellSize:r,onBrush:i}){const a=e.useRef(null),s=r-Xo.left-Xo.right,l=r-Xo.top-Xo.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(${Xo.left},${Xo.top})`}))}function Uo({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=dn({name:c,clientId:`splom-${n}-${o}`}),m=gn({name:c,xField:n,yField:o}),v=dn({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[Yo];void 0!==n&&(b({[Yo]:[n]}),null==g||g(t,e.x+Xo.left,e.y+Xo.top))},[b,g]),w=e.useCallback(e=>{const t={opacity:a,r:i};return t.fill=s?T(e,s,l):Cn,"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(Jt,{ref:f,chartType:"scatter",data:t,size:[r,r],xAccessor:n,yAccessor:o,pointStyle:w,margin:Xo,showAxes:!1,enableHover:"hover"===h,customHoverBehavior:"hover"===h?k:void 0,tooltipContent:"hover"===h?()=>null:void 0}),"brush"===h&&p.createElement(Vo,{frameRef:f,cellSize:r,xField:n,yField:o,onBrush:x}))}function Ko({data:t,field:n,label:o,cellSize:r,bins:i,colorBy:a,colorScale:s,brushSelectionName:l,hoverSelectionName:c,mode:u}){const d=dn({name:l,clientId:"splom-diag-"+n}),h=dn({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):Cn,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:Cn,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):Cn,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:Cn,opacity:.7}))))}function Qo({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 Zo(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=ln(e=>e.clearSelection),[C,j]=e.useState(null),L=e.useCallback(()=>{M(O),j(null)},[M,O]),P=e.useMemo(()=>(n||[]).map((e,t)=>void 0!==e[Yo]?e:Object.assign(Object.assign({},e),{[Yo]:t})),[n]),_=_n(P,i,a),T=void 0!==b?b:!!i,B=e.useMemo(()=>{if(!T||!i)return null;const e="string"==typeof i?i:null;return e?[...new Set(P.map(t=>t[e]))].map(e=>({label:e+"",color:_?_(e+""):Cn})):null},[T,i,P,_]),D=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"}},B&&p.createElement("div",{style:{display:"flex",gap:12,marginBottom:8,flexWrap:"wrap"}},B.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:D,onMouseLeave:"hover"===E?L: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(Qo,{key:"diag-"+e,label:r[e]||e,cellSize:s}):p.createElement(Ko,{key:"diag-"+e,data:P,field:e,label:r[e]||e,cellSize:s,bins:h,colorBy:i,colorScale:_,brushSelectionName:S,hoverSelectionName:O,unselectedOpacity:y,mode:E}):p.createElement(Uo,{key:`cell-${e}-${n}`,data:P,xField:n,yField:e,fieldLabels:r,cellSize:s,pointRadius:c,pointOpacity:u,colorBy:i,colorScale:_,brushSelectionName:S,hoverSelectionName:O,unselectedOpacity:y,showGrid:m,tooltip:v,mode:E,onPointHover:"hover"===E?(r,i,a)=>{r?(j({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})):(j(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))),C&&"hover"===E&&(()=>{const e=C.datum,t=r[C.xField]||C.xField,n=r[C.yField]||C.yField,o=i?"function"==typeof i?i(e):e[i]:null,a=x?"function"==typeof x?x(e):e[x]:"Row "+e[Yo];return p.createElement("div",{style:{position:"absolute",left:40+C.colIndex*(s+l)+C.px,top:C.rowIndex*(s+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}},p.createElement("div",{style:{fontWeight:"bold",marginBottom:2}},a+""),p.createElement("div",null,t,": ",null!=e[C.xField]?Number(e[C.xField]).toFixed(1):"–"),p.createElement("div",null,n,": ",null!=e[C.yField]?Number(e[C.yField]).toFixed(1):"–"),null!=o&&p.createElement("div",{style:{opacity:.8}},"string"==typeof i?i:"group",": ",o+""))})())}function Jo(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(vn,{selections:o},p.createElement(Zo,Object.assign({},e)))}Jo.displayName="ScatterplotMatrix";const er=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)},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:[]}}));const r=In(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:C={},selection:j,linkedHover:L,onObservation:P,onClick:_,chartId:B,loading:N,emptyContent:R,legendInteraction:H,legendPosition:I}=t,W=r.width,F=r.height,z=r.enableHover,$=r.showGrid,G=r.showLegend,q=r.title,Y=r.description,X=r.summary,V=r.accessibleTable,U=r.xLabel,K=r.yLabel,Q=Lo(N,W,F),Z=Q?null:jo(i,W,F,R),J=i||[];Po("QuadrantChart",J,"xAccessor",u),Po("QuadrantChart",J,"yAccessor",d);const{activeSelectionHook:ee,customHoverBehavior:te,customClickBehavior:ne,crosshairSourceId:oe}=Bn({selection:j,linkedHover:L,fallbackFields:"string"==typeof b?[b]:[],onObservation:P,onClick:_,chartType:"QuadrantChart",chartId:B}),re=Dn(L,oe),ie=_n(J,b,x),ae=e.useMemo(()=>{if(!b)return[];const e=new Set;for(const t of J){const n="function"==typeof b?b(t):t[b];null!=n&&e.add(n+"")}return Array.from(e)},[J,b]),se=Rn(H,b,ae),le=e.useMemo(()=>se.legendSelectionHook?se.legendSelectionHook:ee,[se.legendSelectionHook,ee]),ce=e.useMemo(()=>{if(!J.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 J){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]}},[J,u,d,h,g]),ue=e.useMemo(()=>{if(!k||0===J.length)return;const e=J.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},[J,k]),de=e.useMemo(()=>"function"==typeof u?u:e=>+e[u],[u]),he=e.useMemo(()=>"function"==typeof d?d:e=>+e[d],[d]),ge=e.useMemo(()=>e=>{const t={fillOpacity:S};if(b)ie&&(t.fill=T(e,b,ie));else{const n=de(e),o=he(e),r=null!=h?n>=h:void 0,i=null!=g?o>=g:void 0;t.fill=void 0===i||void 0===r?Cn:i&&r?f.topRight.color:i&&!r?f.topLeft.color:!i&&r?f.bottomRight.color:f.bottomLeft.color}return t.r=k?D(e,k,w,ue):A,t},[b,ie,k,w,ue,A,S,de,he,h,g,f]),fe=e.useMemo(()=>kn(ge,le,j),[ge,le,j]),{legend:pe,margin:ye,legendPosition:me}=Nn({data:J,colorBy:b,colorScale:ie,showLegend:G,legendPosition:I,userMargin:a,defaults:r.marginDefaults}),ve=e.useMemo(()=>{if(!J.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=J[0];for(const n of Object.keys(t))if(!n.startsWith("_")&&!e.has(n)&&"string"==typeof t[n])return n},[J,u,d,b,k]),be=e.useMemo(()=>Un([...ve?[{label:ve,accessor:ve,role:"title"}]:[],{label:U||Yn(u),accessor:u,role:"x"},{label:K||Yn(d),accessor:d,role:"y"},...b?[{label:Yn(b),accessor:b,role:"color"}]:[],...k?[{label:Yn(k),accessor:k,role:"size"}]:[]]),[ve,u,d,U,K,b,k]),xe=oo({componentName:"QuadrantChart",data:i,accessors:{xAccessor:u,yAccessor:d}}),ke=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]),we=e.useMemo(()=>m?[...ke,(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)}]:ke,[ke,m,v,f,h,g]),Ae=e.useMemo(()=>{const e=C.canvasPreRenderers||[];return[...we,...e]},[we,C.canvasPreRenderers]),Se=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]),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({chartType:"scatter"},null!=i&&{data:J}),{xAccessor:u,yAccessor:d,colorAccessor:b||void 0,sizeAccessor:k||void 0,sizeRange:w,pointStyle:fe,colorScheme:x,size:[W,F],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ye,showAxes:r.showAxes,xLabel:U,yLabel:K,xFormat:l,yFormat:c,enableHover:z,showGrid:$}),ce&&{xExtent:ce.xExtent,yExtent:ce.yExtent}),pe&&{legend:pe,legendPosition:me}),H&&"none"!==H&&{legendHoverBehavior:se.onLegendHover,legendClickBehavior:se.onLegendClick,legendHighlightedCategory:se.highlightedCategory,legendIsolatedCategories:se.isolatedCategories}),q&&{title:q}),Y&&{description:Y}),X&&{summary:X}),void 0!==V&&{accessibleTable:V}),s&&{className:s}),{tooltipContent:!1===O?()=>null:!0===O||void 0===O?be:qn(O)||be}),(L||P||_)&&{customHoverBehavior:te}),(P||_)&&{customClickBehavior:ne}),E&&{pointIdAccessor:E}),M&&M.length>0&&{annotations:M}),{canvasPreRenderers:Ae}),re),C),Ae.length>0&&{canvasPreRenderers:Ae}),{svgPreRenderers:Se});return Q||Z||(xe?p.createElement(Qn,{componentName:"QuadrantChart",message:xe,width:W,height:F}):p.createElement(Eo,{componentName:"QuadrantChart",width:W,height:F},p.createElement(Jt,Object.assign({ref:o},Oe))))});er.displayName="QuadrantChart";const tr="__ma_unitized",nr="__ma_series";function or(e,t){const n=t[1]-t[0];return 0===n?.5:(e-t[0])/n}function rr(e,t){return t[0]+e*(t[1]-t[0])}const ir=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),{[tr]:or(s,r),[nr]: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),{[tr]:or(s,i),[nr]:r.label||"Series "+(e+1)}))}i.current.pushMany(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:[]}}));const s=In(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,chartId:O,loading:E,emptyContent:M,legendInteraction:L,legendPosition:P}=t,_=s.width,T=s.height,B=s.enableHover,D=s.showGrid,N=null===(o=s.showLegend)||void 0===o||o,R=s.title,H=s.description,I=s.summary,W=s.accessibleTable,F=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 $=Lo(E,_,T),G=$?null:jo(l,_,T,M),q=l||[],Y=jn(),X=e.useMemo(()=>{let e;if(Array.isArray(f))e=f;else if(Y&&Y.length>0)e=Y;else{const t=C[f];e=Array.isArray(t)?t:j}return g.map((t,n)=>t.color||e[n%e.length])},[g,f,Y]),V=e.useMemo(()=>g.map((e,t)=>e.label||"Series "+(t+1)),[g]),{unitizedData:U,extents:K}=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),{[tr]:r,[nr]:V[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),{[tr]:or(i,e[o]),[nr]:V[o]}))}return{unitizedData:t,extents:e}},[q,g,z,V]),Q=e.useMemo(()=>{if(z&&K.length>=2)return[{orient:"left",label:V[0],tickFormat:g[0].format||(e=>{const t=rr(e,K[0]);return Number.isInteger(t)?t+"":t.toFixed(1)})},{orient:"right",label:V[1],tickFormat:g[1].format||(e=>{const t=rr(e,K[1]);return Number.isInteger(t)?t+"":t.toFixed(1)})},{orient:"bottom"}]},[z,K,g,V]),Z=Wo({data:e.useMemo(()=>U.length>0?U:V.map(e=>({[nr]:e})),[U,V]),rawData:l,colorBy:nr,colorScheme:X,legendInteraction:L,legendPosition:P,selection:k,linkedHover:w,fallbackFields:[nr],unwrapData:!1,onObservation:A,onClick:S,chartType:"MultiAxisLineChart",chartId:O,showLegend:N,userMargin:c,marginDefaults:z?Object.assign(Object.assign({},s.marginDefaults),{left:70,right:70}):s.marginDefaults,loading:E,emptyContent:M,width:_,height:T});if(Z.earlyReturn)return Z.earlyReturn;const J=e.useMemo(()=>{const e=new Map;return V.forEach((t,n)=>e.set(t,X[n])),t=>({stroke:e.get(t[nr])||X[0],strokeWidth:m,fill:"none"})},[V,X,m]),ee=e.useMemo(()=>kn(J,Z.effectiveSelectionHook,k),[J,Z.effectiveSelectionHook,k]),te=e.useMemo(()=>{if(!1===v)return()=>null;return qn(v)||(e=>{var t;const n=e.data||e,o=n[nr],r=V.indexOf(o),i=n[tr],a=z&&r>=0&&K[r]?rr(i,K[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:X[r]||"inherit"}},o),p.createElement("div",null,`${"string"==typeof h?h:"x"}: ${l}`),p.createElement("div",null,`${o}: ${s(a)}`))})},[v,V,X,K,z,g,h]),ne=oo({componentName:"MultiAxisLineChart",data:l,accessors:{xAccessor:h}}),oe=z?[0,1]:void 0,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:"line"},null!=l&&{data:U}),{xAccessor:h,yAccessor:tr,groupAccessor:nr,lineStyle:ee,colorScheme:X,size:[_,T],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Z.margin,showAxes:s.showAxes}),Q&&{axes:Q}),{xLabel:F}),z?{}:{yLabel:V[0]}),{xFormat:d}),z&&oe&&{yExtent:oe}),{enableHover:B,showGrid:D,curve:y}),Z.legendBehaviorProps),R&&{title:R}),H&&{description:H}),I&&{summary:I}),void 0!==W&&{accessibleTable:W}),u&&{className:u}),{tooltipContent:te}),b&&{annotations:b}),(w||A||S)&&{customHoverBehavior:Z.customHoverBehavior}),(A||S)&&{customClickBehavior:Z.customClickBehavior}),Z.crosshairProps),x);return $||G||(ne?p.createElement(Qn,{componentName:"MultiAxisLineChart",message:ne,width:_,height:T}):p.createElement(Eo,{componentName:"MultiAxisLineChart",width:_,height:T},p.createElement(Jt,Object.assign({ref:i},re))))});function ar(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=2*Math.PI;for(const e of Object.values(n)){const t=l+e.pctStart*c,n=l+(e.pctStart+e.pct)*c,o=r(e.pieceData[0],e.name);i.push({type:"wedge",cx:0,cy:0,innerRadius:s,outerRadius:a,startAngle:t,endAngle:n,style:o,datum:e.pieceData,category:e.name})}return i}function sr(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}}ir.displayName="MultiAxisLineChart";const lr={bar:function(e,t){const{scales:n,columns:o,config:r,getR:i,getStack:a,resolvePieceStyle:s}=e,{r:l,projection:c}=n,u=[],d="vertical"===c,h="horizontal"===c,g=r.normalize,f=[];if(a){const e=new Set;for(const t of Object.values(o))for(const n of t.pieceData){const t=a(n);e.has(t)||(e.add(t),f.push(t))}}else f.push("_default");for(const e of Object.values(o)){const t=new Map;for(const n of e.pieceData){const e=a?a(n):"_default";t.has(e)||t.set(e,{total:0,pieces:[]});const o=t.get(e);o.total+=i(n),o.pieces.push(n)}let n=0;if(g)for(const e of t.values())n+=Math.abs(e.total);let o=0,r=0;for(const i of f){const c=t.get(i);if(!c)continue;let f=c.total;g&&n>0&&(f/=n);const p=s(c.pieces[0],a?i:e.name),y=Object.assign(Object.assign({},c.pieces[0]),{__aggregateValue:c.total,__pieceCount:c.pieces.length,category:e.name});if(d){const t=l(0>f?r:o+f),n=0>f?l(r+f)-l(r):l(o)-l(o+f);u.push(Y(e.x,t,e.width,Math.abs(n),p,y,i)),0>f?r+=f:o+=f}else if(h){const t=l(0>f?r+f:o),n=0>f?l(r)-l(r+f):l(o+f)-l(o);u.push(Y(t,e.x,Math.abs(n),e.width,p,y,i)),0>f?r+=f:o+=f}}}return u},clusterbar:function(e,t){const{scales:n,columns:o,getR:r,getGroup:i,resolvePieceStyle:a}=e,{r:s,projection:l}=n,c=[],u="vertical"===l,d=[],h=new Set;for(const e of Object.values(o))for(const t of e.pieceData){const e=i?i(t):"_default";h.has(e)||(h.add(e),d.push(e))}const g=d.length||1;for(const e of Object.values(o)){const t=e.width/g,n=.2*t,o=t-n,l=new Map;for(const t of e.pieceData){const e=i?i(t):"_default";l.has(e)||l.set(e,[]),l.get(e).push(t)}for(let i=0;d.length>i;i++){const h=l.get(d[i])||[];for(const l of h){const h=r(l),g=a(l,d[i]);if(u){const r=e.x+i*t+n/2,a=s(0),u=s(h);c.push(Y(r,Math.min(a,u),o,Math.abs(a-u),g,l,d[i]))}else{const r=e.x+i*t+n/2,a=s(0),u=s(h);c.push(Y(Math.min(a,u),r,Math.abs(u-a),o,g,l,d[i]))}}}}return c},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:ar,donut:ar,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:sr(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(Y(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:sr(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(Y(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(Y(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 C=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(Y(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(Y(s,d,r,u,x,w,b)),h.set(l,{x:s,y:d,w:r,h:u})}if(e>0&&C.size>0){const e=x?v:[v[0]];for(const o of e){const e=C.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)}}C=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),C=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(Y(S,O,u,E,M,C,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(Y(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(Y(r,e.x,i-r,e.width,d,n,l))}else{const r=s(t+o),i=s(t);c.push(Y(e.x,r,e.width,i-r,d,n,l))}t+=o}}return c}};class cr{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.config=e,this.buffer=new k(e.windowSize),this.getO=M(e.oAccessor||e.categoryAccessor,"category");const t="streaming"===e.runtimeMode,n=e.rAccessor;Array.isArray(n)?(this.rAccessors=n.map(e=>O(e,"value")),this.getR=this.rAccessors[0],this.rExtents=n.map(()=>new w)):(this.getR=O(t&&(e.timeAccessor||e.valueAccessor)&&e.valueAccessor||n,"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),e.pulse&&(this.timestampBuffer=new k(e.windowSize))}ingest(e){const t="undefined"!=typeof performance?performance.now():Date.now();if(this.lastIngestTime=t,e.bounded){this.buffer.clear(),this.rExtent.clear(),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.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=null!=t.barPadding?t.barPadding/("vertical"===i?e.width:e.height):.1;let u,d;if("radial"===i){u=o.scaleBand().domain(a).range([0,1]).padding(0);const n=Math.min(e.width,e.height)/2,r=t.innerRadius||0;d=o.scaleLinear().domain(s).range([r,n])}else l?(u=o.scaleBand().domain(a).range([0,e.height]).padding(c),d=o.scaleLinear().domain(s).range([0,e.width])):(u=o.scaleBand().domain(a).range([0,e.width]).padding(c),d=o.scaleLinear().domain(s).range([e.height,0]));this.scales={o:u,r:d,projection:i},this.multiScales=this.rAccessors.length>1&&t.multiAxis?this.rAccessors.map((r,i)=>{const a=this.rExtents[i];a.dirty&&a.recalculate(n,r);let[s,c]=a.extent;s===1/0&&(s=0,c=1);const u=c-s,d=u>0?u*(t.extentPadding||.05):1;return s-=d,c+=d,s>0&&(s=0),l?o.scaleLinear().domain([s,c]).range([0,e.width]):o.scaleLinear().domain([s,c]).range([e.height,0])}):[];let h=r;this.rAccessors.length>1&&(h=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(h,a,u,i,e),this.config.transition&&this.scene.length>0&&this.snapshotPositions(),this.scene=this.buildSceneNodes(h,e),this.config.decay&&this.applyDecay(this.scene,r),this.config.pulse&&this.applyPulse(this.scene,r),this.config.transition&&this.prevPositionMap.size>0&&this.startTransition(),this.version++}resolveRAccessorName(e){const t=Array.isArray(this.config.rAccessor)?this.config.rAccessor[e]:this.config.rAccessor;return"string"==typeof t?t:"value"+e}resolveCategories(e){const t=Array.from(this.categories),n=this.config.oSort;if(("streaming"===this.config.runtimeMode||this._hasStreamingData)&&void 0===n){const n=new Set;for(const t of e)n.add(this.getO(t));const o=Math.max(50,3*n.size);if(this.categories.size>o){let e=this.categories.size-o;for(const t of this.categories){if(0>=e)break;n.has(t)||(this.categories.delete(t),e--)}}return t.filter(e=>n.has(e))}if(!1===n)return t;if("function"==typeof n)return t.sort(n);const o=new Map;for(const t of e){const e=this.getO(t);o.set(e,(o.get(e)||0)+Math.abs(this.getR(t)))}return t.sort("asc"===n?(e,t)=>(o.get(e)||0)-(o.get(t)||0):(e,t)=>(o.get(t)||0)-(o.get(e)||0))}computeValueDomain(e,t){var n,o,r,i;const a=this.config.chartType,s=this.config.extentPadding||.05;if("radial"===this.config.projection&&("pie"===a||"donut"===a))return[0,1];let l=0,c=0;if("bar"===a&&this.getStack&&this.config.normalize)l=0,c=1;else if("bar"===a&&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>c&&(c=e);for(const e of n.values())l>e&&(l=e)}else if("bar"===a){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>c&&(c=e),l>e&&(l=e)}else if("swimlane"===a){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>c&&(c=e)}else if("clusterbar"===a||"bar-funnel"===a)for(const t of e){const e=this.getR(t);e>c&&(c=e),l>e&&(l=e)}else{const e=this.rExtent.extent[0],t=this.rExtent.extent[1];e!==1/0&&(l=e),t!==-1/0&&(c=t)}if(this.config.rExtent&&(null!=this.config.rExtent[0]&&(l=this.config.rExtent[0]),null!=this.config.rExtent[1]&&(c=this.config.rExtent[1])),"bar-funnel"!==a){const e=c-l,t=e>0?e*s:1;null==(null===(n=this.config.rExtent)||void 0===n?void 0:n[0])&&(l-=t),null==(null===(o=this.config.rExtent)||void 0===o?void 0:o[1])&&(c+=t)}return"bar"!==a&&"clusterbar"!==a&&"bar-funnel"!==a&&"swimlane"!==a||null==(null===(r=this.config.rExtent)||void 0===r?void 0:r[0])&&null==(null===(i=this.config.rExtent)||void 0===i?void 0:i[1])&&(l>0&&(l=0),0>c&&(c=0)),[l,c]}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:L,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){var n,o,r;const i=this.config.decay;if(!i||1>=t)return 1;const a=null!==(n=i.minOpacity)&&void 0!==n?n:.1,s=t-1-e;switch(i.type){case"linear":return a+(1-s/(t-1))*(1-a);case"exponential":{const e=null!==(o=i.halfLife)&&void 0!==o?o:t/2;return a+Math.pow(.5,s/e)*(1-a)}case"step":return(null!==(r=i.stepThreshold)&&void 0!==r?r:.5*t)>s?1:a;default:return 1}}applyDecay(e,t){var n,o;if(!this.config.decay)return;const r=t.length;if(1>=r)return;const i=new Map;for(let e=0;t.length>e;e++)i.set(t[e],e);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=new Map;for(let e=0;t.length>e;e++)c.set(t[e],e);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;let o=0;for(let n=0;t.length>n;n++){const r=t[n],s=this.config.oAccessor;if(("function"==typeof s?s(r):r[s||"category"])!==e)continue;const l=this.timestampBuffer.get(n);if(null==l)continue;const c=i-l;if(a>c){const e=1-c/a;e>o&&(o=e)}}o>0&&(n._pulseIntensity=o,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}getNodeKey(e,t){var n,o;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:""}`:null}snapshotPositions(){this.prevPositionMap.clear();const e=new Map;for(let t=0;this.scene.length>t;t++){const n=this.scene[t],o=this.getNodeKey(n,e);o&&("point"===n.type?this.prevPositionMap.set(o,{x:n.x,y:n.y,r:n.r,opacity:n.style.opacity}):"rect"===n.type&&this.prevPositionMap.set(o,{x:n.x,y:n.y,w:n.w,h:n.h,opacity:n.style.opacity}))}}startTransition(){var e,t,n,o,r,i,a,s,l,c,u,d;if(!this.config.transition||0===this.prevPositionMap.size)return;const h=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 g=!1;const f=new Set,p=new Map;for(let e=0;this.scene.length>e;e++){const s=this.scene[e],l=this.getNodeKey(s,p);if(!l)continue;s._transitionKey=l;const c=this.prevPositionMap.get(l);"point"===s.type?c?(f.add(l),s._targetOpacity=null!==(t=s.style.opacity)&&void 0!==t?t:1,c.x===s.x&&c.y===s.y||(s._targetX=s.x,s._targetY=s.y,s.x=c.x,s.y=c.y,g=!0)):(s._targetOpacity=null!==(n=s.style.opacity)&&void 0!==n?n:1,s.style=Object.assign(Object.assign({},s.style),{opacity:0}),g=!0):"rect"===s.type&&(c?(f.add(l),s._targetOpacity=null!==(o=s.style.opacity)&&void 0!==o?o:1,c.x===s.x&&c.y===s.y&&c.w===s.w&&c.h===s.h||(s._targetX=s.x,s._targetY=s.y,s._targetW=s.w,s._targetH=s.h,s.x=c.x,s.y=c.y,s.w=null!==(r=c.w)&&void 0!==r?r:s.w,s.h=null!==(i=c.h)&&void 0!==i?i:s.h,g=!0)):(s._targetOpacity=null!==(a=s.style.opacity)&&void 0!==a?a:1,s.style=Object.assign(Object.assign({},s.style),{opacity:0}),g=!0))}this.exitNodes=[];for(const[e,t]of this.prevPositionMap)f.has(e)||(e.startsWith("p:")?this.exitNodes.push({type:"point",x:t.x,y:t.y,r:null!==(s=t.r)&&void 0!==s?s:3,style:{opacity:null!==(l=t.opacity)&&void 0!==l?l:1},datum:null,_targetOpacity:0,_transitionKey:e}):e.startsWith("r:")&&this.exitNodes.push({type:"rect",x:t.x,y:t.y,w:null!==(c=t.w)&&void 0!==c?c:0,h:null!==(u=t.h)&&void 0!==u?u:0,style:{opacity:null!==(d=t.opacity)&&void 0!==d?d:1,fill:"#999"},datum:null,_targetOpacity:0,_transitionKey:e}),g=!0);this.exitNodes.length>0&&(this.scene=[...this.scene,...this.exitNodes]),g&&(this.activeTransition={startTime:F(),duration:h})}advanceTransition(e){var t,n,o;if(!this.activeTransition)return!1;const r=I(e,this.activeTransition),i=H(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 o=this.prevPositionMap.get(t),r=o?null!==(n=o.opacity)&&void 0!==n?n:1:0;e.style.opacity=W(r,e._targetOpacity,i)}if(void 0===e._targetX)continue;const o=this.prevPositionMap.get(t);if(!o)continue;e.x=W(o.x,e._targetX,i),e.y=W(o.y,e._targetY,i)}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,i)}if(void 0===e._targetX)continue;const n=this.prevPositionMap.get(t);if(!n)continue;e.x=W(n.x,e._targetX,i),e.y=W(n.y,e._targetY,i),void 0!==n.w&&(e.w=W(n.w,e._targetW,i),e.h=W(n.h,e._targetH,i))}}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)continue;e.x=e._targetX,e.y=e._targetY,e._targetX=void 0,e._targetY=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}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()}clear(){this.buffer.clear(),this.rExtent.clear(),this.categories.clear(),this._hasStreamingData=!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.version++}get size(){return this.buffer.size}getOAccessor(){return this.getO}getRAccessor(){return this.getR}updateConfig(e){const t=Object.assign({},this.config);if(e.colorScheme!==this.config.colorScheme&&(this._colorSchemeMap=null,this._colorSchemeIndex=0),Object.assign(this.config,e),(void 0!==e.oAccessor||void 0!==e.categoryAccessor)&&(S(e.oAccessor||e.categoryAccessor,t.oAccessor||t.categoryAccessor)||(this.getO=M(this.config.oAccessor||this.config.categoryAccessor,"category"),this.categories.clear())),void 0!==e.rAccessor){const n=Array.isArray(e.rAccessor)?e.rAccessor:[e.rAccessor],o=Array.isArray(t.rAccessor)?t.rAccessor:[t.rAccessor];if(n.length!==o.length||n.some((e,t)=>!S(e,o[t]))){const e=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 ur(e,t,n){const o=Z(t,n,e);return o.hit?{datum:e.datum,x:o.cx,y:e.y,distance:0,category:e.group}:null}function dr(e,t,n){const o=t-e.x,r=n-e.y,i=Math.sqrt(o*o+r*r);return i>Math.max(e.r+5,12)?null:{datum:e.datum,x:e.x,y:e.y,distance:i}}function hr(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=J(Math.atan2(r,o)),s=J(e.startAngle),l=J(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 gr(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 fr(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 pr(t){const{width:n,height:o,totalWidth:r,totalHeight:i,margin:a,scales:s,showAxes:l,showGrid:c,rFormat:u}=t,d="radial"===(null==s?void 0:s.projection),h="horizontal"===(null==s?void 0:s.projection),g=e.useMemo(()=>!s||d?[]:s.r.ticks(5).map(e=>({value:e,pixel:s.r(e),label:(u||yr)(e)})),[s,u,d]),f=c&&s&&!d,y=l&&s&&!d;return f||y?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})`},f&&p.createElement("g",{className:"ordinal-grid"},g.map((e,t)=>p.createElement("line",{key:"grid-"+t,x1:h?e.pixel:0,y1:h?0:e.pixel,x2:h?e.pixel:n,y2:h?o:e.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1}))),y&&p.createElement(p.Fragment,null,h?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 yr(e){return Math.round(100*e)/100+""}function mr(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:C,yAccessor:j,annotationData:L,underlayRendered:P,children:_}=t,T="radial"===(null==c?void 0:c.projection),B="horizontal"===(null==c?void 0:c.projection),D=!1!==d,N=e.useMemo(()=>u&&D&&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,D,c,f,T]),R=e.useMemo(()=>u&&c&&!T?c.r.ticks(5).map(e=>({value:e,pixel:c.r(e),label:(y||yr)(e)})):[],[u,c,y,T]),H=e.useRef(new Map),I=e.useRef(null!==(n=null==E?void 0:E.length)&&void 0!==n?n:0),W=null!==(o=null==E?void 0:E.length)&&void 0!==o?o:0;I.current!==W&&(I.current=W,H.current=new Map);const F=e.useMemo(()=>{if(!E||0===E.length)return null;const e=Te(),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:C,yAccessor:j,width:r,height:i,data:L,frameType:"ordinal",projection:t?"horizontal":"vertical",stickyPositionCache:H.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,C,j,L]);return u||v||b||O||F&&F.length>0||m||_?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&&p.createElement("g",{className:"ordinal-grid"},R.map((e,t)=>p.createElement("line",{key:"grid-"+t,x1:B?e.pixel:0,y1:B?0:e.pixel,x2:B?e.pixel:r,y2:B?i:e.pixel,stroke:"var(--semiotic-grid, #e0e0e0)",strokeWidth:1}))),u&&c&&!T&&p.createElement("g",{className:"ordinal-axes"},B?p.createElement(p.Fragment,null,!P&&p.createElement("line",{x1:0,y1:0,x2:0,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),N.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}),p.createElement("text",{x:-8,textAnchor:"end",dominantBaseline:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{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&&p.createElement("line",{x1:0,y1:i,x2:r,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),R.map((e,t)=>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:"middle",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,!P&&p.createElement("line",{x1:0,y1:i,x2:r,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),N.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}),p.createElement("text",{y:18,textAnchor:"middle",fontSize:10,fill:"var(--semiotic-text-secondary, #666)",style:{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&&p.createElement("line",{x1:0,y1:0,x2:0,y2:i,stroke:"var(--semiotic-border, #ccc)",strokeWidth:1}),R.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))),F,O,_),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),ke({legend:b,totalWidth:a,totalHeight:s,margin:l,legendPosition:S,title:v,legendHoverBehavior:x,legendClickBehavior:k,legendHighlightedCategory:w,legendIsolatedCategories:A})):null}function vr({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 br(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()}const xr=(e,t,n,o)=>{var r,i;const a=t.filter(e=>"wedge"===e.type);for(const t of a)br(e,t),e.globalAlpha=null!==(i=null!==(r=t.style.fillOpacity)&&void 0!==r?r:t.style.opacity)&&void 0!==i?i:1,e.fillStyle=t.style.fill||"#007bff",e.fill(),t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=t.style.stroke,e.lineWidth=t.style.strokeWidth||1,e.stroke()),t._pulseIntensity&&t._pulseIntensity>0&&(br(e,t),Nt(e,t)),e.globalAlpha=1},kr=(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=t.style.fill||"#007bff",e.fill(n),e.globalAlpha=1,t.style.stroke&&"none"!==t.style.stroke&&(e.strokeStyle=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()}},wr=(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=n.style.stroke||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 Ar(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 Sr(e){return.05>Math.abs(e-Math.round(e))?Math.round(e)+"%":e.toFixed(1)+"%"}let Or=null;const Er=new Map;function Mr(e,t){const n=`${e}@${"undefined"!=typeof window&&window.devicePixelRatio||1}`,o=Er.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):(Or||(Or=document.createElement("canvas")),Or.width=e,Or.height=e,Or)}(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 Er.set(n,r),r}function Cr(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 jr(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 Lr(e){return.05>Math.abs(e-Math.round(e))?Math.round(e)+"%":e.toFixed(1)+"%"}const Pr=e=>[wr,...e],_r={bar:Pr([zt]),clusterbar:Pr([zt]),point:Pr([Ft]),swarm:Pr([Ft]),pie:[xr],donut:[xr],boxplot:Pr([(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()}},Ft]),violin:Pr([kr]),histogram:Pr([zt]),ridgeline:Pr([kr]),timeline:Pr([zt]),funnel:[zt,(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=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?Ar(r):null!=i?`${Ar(r)} (${Sr(i)})`:Ar(r),e.measureText(c).width+16>o){if(l||null==i)continue;if(c=Ar(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":[zt,(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=Mr(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?Lr(r):"",s=jr(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(),Cr(e,g,f,u,d,4),e.fill(),e.restore(),e.strokeStyle="rgba(0,0,0,0.12)",e.lineWidth=.5,e.beginPath(),Cr(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:Pr([zt])},Tr={top:50,right:40,bottom:60,left:70},Br={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 Dr({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:Br},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:Br},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:Br},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:Br},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:Br},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:Br},g&&p.createElement("div",{style:{fontWeight:"bold"}},g+""),""!==f&&p.createElement("div",null,"number"==typeof f?f.toLocaleString():f+""))}const Nr=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:C="vertical",size:j=[600,400],responsiveWidth:L,responsiveHeight:P,margin:_,barPadding:T,innerRadius:B,normalize:D,startAngle:N,dynamicColumnWidth:R,bins:H,showOutliers:I,showIQR:W,amplitude:F,connectorOpacity:z,showLabels:$,connectorAccessor:G,connectorStyle:q,rExtent:Y,oExtent:X,extentPadding:V=.05,oSort:U,windowMode:K="sliding",windowSize:Q=200,pieceStyle:Z,summaryStyle:J,colorScheme:ee,barColors:te,showAxes:ne=!0,showCategoryTicks:oe,oLabel:re,rLabel:ie,oFormat:ae,rFormat:se,enableHover:de=!0,hoverAnnotation:pe,tooltipContent:ye,customHoverBehavior:me,annotations:ve,svgAnnotationRules:be,showGrid:xe=!1,legend:ke,legendHoverBehavior:we,legendClickBehavior:Ae,legendHighlightedCategory:Se,legendIsolatedCategories:Oe,legendPosition:Ee,backgroundGraphics:Me,foregroundGraphics:Ce,title:je,className:Le,background:Pe,centerContent:_e,decay:Te,pulse:Be,transition:De,staleness:Ne,brush:Re,onBrush:He,accessibleTable:Ie=!0,description:We,summary:Fe}=t,ze=xt(),$e=e.useRef(ze);$e.current=ze;const[Ge,qe]=ge(j,L,P),Ye=e.useMemo(()=>Object.assign(Object.assign({},Tr),_),[_]),Xe=qe[0]-Ye.left-Ye.right,Ve=qe[1]-Ye.top-Ye.bottom,Qe="function"==typeof Ce?Ce({size:qe,margin:Ye}):Ce,Ze=e.useRef(null),Je=e.useRef(!0),et=Mt(e=>e.theme),nt=e.useRef(0),ot=e.useRef(null),rt=e.useRef(()=>{}),[it,at]=e.useState(null),[st,lt]=e.useState(null),[ct,ut]=e.useState(0),[ht,yt]=e.useState(!1),bt=de||pe,kt="streaming"===y,wt=e.useMemo(()=>({chartType:f,runtimeMode:kt?"streaming":"bounded",windowSize:Q,windowMode:K,extentPadding:V,projection:C,oAccessor:kt?void 0:v,rAccessor:kt?void 0:b,colorAccessor:k,stackBy:w,groupBy:A,multiAxis:S,timeAccessor:kt?O:void 0,valueAccessor:kt?E||("string"==typeof b||"function"==typeof b?b:void 0):void 0,categoryAccessor:kt?M||v:void 0,rExtent:Y,oExtent:X,barPadding:T,innerRadius:B,normalize:D,startAngle:N,dynamicColumnWidth:R,bins:H,showOutliers:I,showIQR:W,amplitude:F,connectorOpacity:z,showLabels:$,connectorAccessor:G,connectorStyle:q,oSort:U,pieceStyle:Z,summaryStyle:J,colorScheme:ee,barColors:te,decay:Te,pulse:Be,transition:De,staleness:Ne}),[f,Q,K,V,C,v,b,k,w,A,S,O,E,M,Y,X,T,B,D,N,R,H,I,W,F,z,$,G,q,U,Z,J,ee,te,Te,Be,De,Ne,kt]),At=e.useRef(null);At.current||(At.current=new cr(wt));const St=e.useCallback(()=>{nt.current||(nt.current=requestAnimationFrame(()=>rt.current()))},[]);e.useEffect(()=>{var e;null===(e=At.current)||void 0===e||e.updateConfig(wt),Je.current=!0,St()},[wt,St]),e.useEffect(()=>{Je.current=!0,St()},[et,St]);const Ot=e.useRef(null);Ot.current||(Ot.current=new x(e=>{const t=At.current;t&&t.ingest(e)&&(Je.current=!0,St())}));const Et=e.useCallback(e=>{var t;null===(t=Ot.current)||void 0===t||t.push(e)},[]),Ct=e.useCallback(e=>{var t;null===(t=Ot.current)||void 0===t||t.pushMany(e)},[]),Lt=e.useCallback(()=>{var e,t;null===(e=Ot.current)||void 0===e||e.clear(),null===(t=At.current)||void 0===t||t.clear(),Je.current=!0,St()},[St]);e.useImperativeHandle(n,()=>({push:Et,pushMany:Ct,clear:Lt,getData:()=>{var e,t,n;return null===(e=Ot.current)||void 0===e||e.flush(),null!==(n=null===(t=At.current)||void 0===t?void 0:t.getData())&&void 0!==n?n:[]},getScales:()=>{var e,t;return null!==(t=null===(e=At.current)||void 0===e?void 0:e.scales)&&void 0!==t?t:null}}),[Et,Ct,Lt]),e.useEffect(()=>{var e;m&&(null===(e=Ot.current)||void 0===e||e.setBoundedData(m))},[m]);const Pt=e.useRef(()=>{}),_t=e.useRef(()=>{});Pt.current=e=>{if(!bt)return;const t=Ze.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-Ye.left,r=e.clientY-n.top-Ye.top;if(0>o||o>Xe||0>r||r>Ve)return void(ot.current&&(ot.current=null,at(null),me&&me(null),St()));const i=At.current;if(!i||0===i.scene.length)return;const a="radial"===C,s=function(e,t,n,o=30){let r=null;for(const i of e){let e=null;switch(i.type){case"rect":e=ur(i,t,n);break;case"point":e=dr(i,t,n);break;case"wedge":e=hr(i,t,n);break;case"boxplot":e=gr(i,t,n);break;case"violin":e=fr(i,t,n)}e&&o>e.distance&&(r&&e.distance>=r.distance||(r=e))}return r}(i.scene,a?o-Xe/2:o,a?r-Ve/2:r);if(!s)return void(ot.current&&(ot.current=null,at(null),me&&me(null),St()));const l=s.datum||{},c=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},"object"!=typeof l||null===l||Array.isArray(l)?{}:l),{data:l,time:s.x,value:s.y,x:s.x,y:s.y}),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});ot.current=c,at(c),me&&(me(c),Je.current=!0),St()},_t.current=()=>{ot.current&&(ot.current=null,at(null),me&&(me(null),Je.current=!0),St())},e.useCallback(e=>Pt.current(e),[]);const Tt=e.useCallback(()=>_t.current(),[]),Bt=e.useRef(-1),Dt=e.useRef(null),Nt=e.useRef(null),Rt=e.useCallback(e=>{const t=At.current;if(!t||0===t.scene.length)return;const n=t.version;let o;if(Nt.current&&Nt.current.version===n)o=Nt.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=le(e),Nt.current={version:n,graph:o}}const r=Bt.current;if(0>r){if("Escape"===e.key)return;if(!["ArrowRight","ArrowLeft","ArrowUp","ArrowDown","Home","End","PageUp","PageDown"].includes(e.key))return;e.preventDefault(),Bt.current=0;const t=o.flat[0];Dt.current={shape:t.shape,w:t.w,h:t.h};const n=Object.assign(Object.assign({},he(t)),{__oAccessor:"string"==typeof v?v:void 0,__rAccessor:"string"==typeof b?b:void 0,__chartType:f});return ot.current=n,at(n),me&&me(n),void St()}const i=ce(o,r),a=ue(e.key,i,o);if(null===a)return;if(e.preventDefault(),0>a)return Bt.current=-1,Dt.current=null,ot.current=null,at(null),me&&me(null),void St();Bt.current=a;const s=o.flat[a];Dt.current={shape:s.shape,w:s.w,h:s.h};const l=Object.assign(Object.assign({},he(s)),{__oAccessor:"string"==typeof v?v:void 0,__rAccessor:"string"==typeof b?b:void 0,__chartType:f});ot.current=l,at(l),me&&me(l),St()},[me,St]),Ht=e.useCallback(e=>{Bt.current=-1,Dt.current=null,Pt.current(e)},[]);rt.current=()=>{var e,t;nt.current=0;const n=Ze.current;if(!n)return;const o=n.getContext("2d");if(!o)return;const r=At.current;if(!r)return;const i="undefined"!=typeof performance?performance.now():Date.now(),a=r.advanceTransition($e.current?i+1e6:i),s=!$e.current&&a,l=Je.current;l&&!a&&(r.computeScene({width:Xe,height:Ve}),Je.current=!1),(l||s)&&n.setAttribute("aria-label",tt(r.scene,f+" chart"));const c=jt(),u=qe[0]*c,d=qe[1]*c;n.width===u&&n.height===d||(n.width=u,n.height=d,n.style.width=qe[0]+"px",n.style.height=qe[1]+"px"),o.setTransform(c,0,0,c,0,0),o.clearRect(0,0,qe[0],qe[1]);const h=null!==(e=null==Ne?void 0:Ne.threshold)&&void 0!==e?e:5e3,g=Ne&&r.lastIngestTime>0&&i-r.lastIngestTime>h;g&&(o.globalAlpha=null!==(t=null==Ne?void 0:Ne.dimOpacity)&&void 0!==t?t:.5);const p=n?getComputedStyle(n).getPropertyValue("--semiotic-bg").trim():"",y=Pe||(p&&"transparent"!==p?p:null);y&&(o.fillStyle=y,o.fillRect(0,0,qe[0],qe[1]));const m="radial"===C;o.save(),o.beginPath(),o.rect(Ye.left,Ye.top,Xe,Ve),o.clip(),m?(o.save(),o.translate(Ye.left+Xe/2,Ye.top+Ve/2)):o.translate(Ye.left,Ye.top);const v=_r[f]||[],b={width:Xe,height:Ve};for(const e of v)e(o,r.scene,r.scales,b);m&&o.restore(),o.restore(),g&&(o.globalAlpha=1),l&&r.scales&&(lt(r.scales),ut(e=>e+1)),(null==Ne?void 0:Ne.showBadge)&&yt(!!g),(s||r.hasActivePulses)&&(nt.current=requestAnimationFrame(()=>rt.current()))},e.useEffect(()=>(St(),()=>{nt.current&&(cancelAnimationFrame(nt.current),nt.current=0)}),[St]),e.useEffect(()=>{Je.current=!0,St()},[f,Xe,Ve,ne,Pe,St]),fe(Ne,At,Je,St,ht,yt);const It=bt&&it?ye?ye(it):p.createElement(Dr,{hover:it}):null,Wt="radial"===C,Ft=It?p.createElement(vt,{x:it?Wt?it.x+Xe/2:it.x:0,y:it?Wt?it.y+Ve/2:it.y:0,containerWidth:Xe,containerHeight:Ve,margin:Ye,className:"stream-ordinal-tooltip"},It):null;if(Ke){const e=At.current;e&&m&&(e.ingest({inserts:m,bounded:!0}),e.computeScene({width:Xe,height:Ve}));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"===C,a=i?Ye.left+Xe/2:Ye.left,s=i?Ye.top+Ve/2:Ye.top;return p.createElement("div",{className:"stream-ordinal-frame"+(Le?" "+Le:""),role:"img","aria-label":We||("string"==typeof je?je:"Ordinal chart"),style:{position:"relative",width:qe[0],height:qe[1]}},p.createElement(gt,{summary:Fe}),p.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:qe[0],height:qe[1],style:{position:"absolute",left:0,top:0}},Me&&p.createElement("g",{transform:`translate(${Ye.left},${Ye.top})`},Me),p.createElement("g",{transform:`translate(${a},${s})`},Pe&&p.createElement("rect",{x:0,y:0,width:Xe,height:Ve,fill:Pe}),t.map((e,t)=>function(e,t){var n,o,r,i,a;const s=e.category||e.group||"",c=n=>`ord-${e.type}-${s}-${t}-${n}`,u=`ord-${e.type}-${s}-${t}`;switch(e.type){case"rect":{const t=e;return p.createElement("rect",{key:u,x:t.x,y:t.y,width:t.w,height:t.h,fill:Ue(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:Ue(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).endAngle(t.endAngle)({})||"";return p.createElement("path",{key:u,d:n,transform:`translate(${t.cx},${t.cy})`,fill:Ue(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:Ue(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:Ue(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:Ue(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:Ue(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(mr,{width:Xe,height:Ve,totalWidth:qe[0],totalHeight:qe[1],margin:Ye,scales:n,showAxes:ne,showCategoryTicks:oe,oLabel:re,rLabel:ie,oFormat:ae,rFormat:se,showGrid:xe,title:je,legend:ke,legendHoverBehavior:we,legendClickBehavior:Ae,legendHighlightedCategory:Se,legendIsolatedCategories:Oe,legendPosition:Ee,foregroundGraphics:Qe,annotations:ve,svgAnnotationRules:be,annotationFrame:0,xAccessor:"string"==typeof v?v:void 0,yAccessor:"string"==typeof b?b:void 0,annotationData:null==e?void 0:e.getData()}),_e&&"radial"===C&&p.createElement("div",{style:{position:"absolute",left:Ye.left+Xe/2,top:Ye.top+Ve/2,transform:"translate(-50%, -50%)",pointerEvents:"none",textAlign:"center"}},_e))}const zt="semiotic-table-"+p.useId();return p.createElement("div",{ref:Ge,className:"stream-ordinal-frame"+(Le?" "+Le:""),role:"group","aria-label":We||("string"==typeof je?je:"Ordinal chart"),tabIndex:0,style:{position:"relative",width:L?"100%":qe[0],height:P?"100%":qe[1],overflow:"visible"},onKeyDown:Rt},Ie&&p.createElement(ft,{tableId:zt}),Ie&&p.createElement(dt,{scene:null!==(a=null===(i=At.current)||void 0===i?void 0:i.scene)&&void 0!==a?a:[],chartType:f+" chart",tableId:zt,chartTitle:"string"==typeof je?je:void 0}),p.createElement(gt,{summary:Fe}),p.createElement("div",{role:"img","aria-label":We||("string"==typeof je?je:"Ordinal chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:bt?Ht:void 0,onMouseLeave:bt?Tt:void 0},Me&&p.createElement("svg",{style:{position:"absolute",top:0,left:0,width:qe[0],height:qe[1],pointerEvents:"none"}},p.createElement("g",{transform:`translate(${Ye.left},${Ye.top})`},Me)),p.createElement(pr,{width:Xe,height:Ve,totalWidth:qe[0],totalHeight:qe[1],margin:Ye,scales:st,showAxes:ne,showGrid:xe,rFormat:se}),p.createElement("canvas",{ref:Ze,"aria-label":tt(null!==(c=null===(s=At.current)||void 0===s?void 0:s.scene)&&void 0!==c?c:[],f+" chart"),style:{position:"absolute",top:0,left:0,width:qe[0],height:qe[1]}}),p.createElement(pt,{hoverPoint:it}),p.createElement(mr,{width:Xe,height:Ve,totalWidth:qe[0],totalHeight:qe[1],margin:Ye,scales:st,showAxes:ne,showCategoryTicks:oe,oLabel:re,rLabel:ie,oFormat:ae,rFormat:se,showGrid:xe,title:je,legend:ke,legendHoverBehavior:we,legendClickBehavior:Ae,legendHighlightedCategory:Se,legendIsolatedCategories:Oe,legendPosition:Ee,foregroundGraphics:Qe,annotations:ve,svgAnnotationRules:be,annotationFrame:ct,xAccessor:"string"==typeof v?v:void 0,yAccessor:"string"==typeof b?b:void 0,annotationData:null===(u=At.current)||void 0===u?void 0:u.getData(),underlayRendered:!0}),(Re||He)&&"radial"!==C&&p.createElement(vr,{width:Xe,height:Ve,totalWidth:qe[0],totalHeight:qe[1],margin:Ye,scales:st,onBrush:He||(()=>{})}),_e&&"radial"===C&&p.createElement("div",{style:{position:"absolute",left:Ye.left+Xe/2,top:Ye.top+Ve/2,transform:"translate(-50%, -50%)",pointerEvents:"none",textAlign:"center"}},_e),(null==Ne?void 0:Ne.showBadge)&&p.createElement("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===Ne.badgePosition?{top:4,left:4}:"bottom-left"===Ne.badgePosition?{bottom:4,left:4}:"bottom-right"===Ne.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{padding:"2px 8px",borderRadius:4,fontSize:11,fontWeight:600,pointerEvents:"none",background:ht?"#dc3545":"#28a745",color:"white"})},ht?"STALE":"LIVE"),p.createElement(mt,{active:Bt.current>=0,hoverPoint:it,margin:Ye,size:qe,shape:null===(d=Dt.current)||void 0===d?void 0:d.shape,width:null===(h=Dt.current)||void 0===h?void 0:h.w,height:null===(g=Dt.current)||void 0===g?void 0:g.h}),Ft))});Nr.displayName="StreamOrdinalFrame";const Rr=e.forwardRef(function(t,n){const o=In(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)},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:[]}}));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,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:A,chartId:S,loading:O,emptyContent:E,legendInteraction:M,legendPosition:C,color:j,showCategoryTicks:L,categoryFormat:P}=t,_=o.width,B=o.height,D=o.enableHover,N=o.showGrid,R=o.title,H=o.description,I=o.summary,W=o.accessibleTable,F=o.categoryLabel,z=o.valueLabel,$=i||[],G=Wo({data:$,rawData:i,colorBy:h,colorScheme:g,legendInteraction:M,legendPosition:C,selection:x,linkedHover:k,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!0,onObservation:w,onClick:A,chartType:"BarChart",chartId:S,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:O,emptyContent:E,width:_,height:B});if(G.earlyReturn)return G.earlyReturn;Po("BarChart",$,"categoryAccessor",l),Po("BarChart",$,"valueAccessor",c);const q=Tn($,f,c),Y=jn(),X=e.useMemo(()=>new Map,[$]),V=e.useMemo(()=>(e,t)=>{const n={};return n.fill=h?T(e,h,G.colorScale):Ln(j,Y,g,void 0,X),n},[h,G.colorScale,j,Y,g,X]),U=e.useMemo(()=>kn(V,G.effectiveSelectionHook,x),[V,G.effectiveSelectionHook,x]),K=e.useMemo(()=>Kn({categoryAccessor:l,valueAccessor:c,groupAccessor:h&&h!==l?h:void 0,groupLabel:"string"==typeof h?h:"group"}),[l,c,h]),Q=oo({componentName:"BarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(Q)return p.createElement(Qn,{componentName:"BarChart",message:Q,width:_,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({chartType:"bar"},null!=i&&{data:q}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",pieceStyle:U,size:[_,B],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:G.margin,barPadding:y,enableHover:D,showAxes:o.showAxes,oLabel:F,rLabel:z,rFormat:d}),P&&{oFormat:P}),{showGrid:N,showCategoryTicks:L,oSort:f}),G.legendBehaviorProps),R&&{title:R}),H&&{description:H}),I&&{summary:I}),void 0!==W&&{accessibleTable:W}),s&&{className:s}),{tooltipContent:!1===m?()=>null:qn(m)||K}),(k||w||A)&&{customHoverBehavior:G.customHoverBehavior}),(w||A)&&{customClickBehavior:G.customClickBehavior}),v&&v.length>0&&{annotations:v}),b);return p.createElement(Eo,{componentName:"BarChart",width:_,height:B},p.createElement(Nr,Object.assign({ref:r},Z)))});function Hr({ref:t,frameRef:n,isPushMode:o,colorBy:r,colorScheme:i,showLegend:a,legendPosition:s,setup:l}){const c=Ho({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,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])}}Rr.displayName="BarChart";const Ir=e.forwardRef(function(t,n){const o=In(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,barPadding:m=40,tooltip:v,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:A,onClick:S,chartId:O,loading:E,emptyContent:M,legendInteraction:C,legendPosition:j,color:L,categoryFormat:P}=t,_=o.width,B=o.height,D=o.enableHover,N=o.showGrid,R=o.showLegend,H=o.title,I=o.description,W=o.summary,F=o.accessibleTable,z=o.categoryLabel,$=o.valueLabel,G=i||[],q=g||c,Y=void 0===i,X=Wo({data:G,rawData:i,colorBy:q,colorScheme:f,legendInteraction:C,legendPosition:j,selection:k,linkedHover:w,fallbackFields:q?["string"==typeof q?q:""]:[],unwrapData:!0,onObservation:A,onClick:S,chartType:"StackedBarChart",chartId:O,showLegend:R,userMargin:a,marginDefaults:o.marginDefaults,loading:E,emptyContent:M,width:_,height:B});if(X.earlyReturn)return X.earlyReturn;const V=jn(),U=e.useMemo(()=>new Map,[G]),K=e.useMemo(()=>(e,t)=>q?X.colorScale?{fill:T(e,q,X.colorScale)}:{}:{fill:Ln(L,V,f,t,U)},[q,X.colorScale,L,V,f,U]),Q=e.useMemo(()=>kn(K,X.effectiveSelectionHook,k),[K,X.effectiveSelectionHook,k]),Z=e.useMemo(()=>Kn({categoryAccessor:c,valueAccessor:u,groupAccessor:l}),[c,l,u]),J=oo({componentName:"StackedBarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:u},requiredProps:{stackBy:c}}),{effectiveLegendProps:ee,effectiveMargin:te}=Hr({ref:n,frameRef:r,isPushMode:Y,colorBy:q,colorScheme:f,showLegend:R,legendPosition:j,setup:X}),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({chartType:"bar"},null!=i&&{data:G}),{oAccessor:l,rAccessor:u,stackBy:c,normalize:y,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:Q,size:[_,B],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:te,barPadding:m,enableHover:D,showAxes:o.showAxes,oLabel:z,rLabel:$,rFormat:h}),P&&{oFormat:P}),{showGrid:N}),ee),H&&{title:H}),I&&{description:I}),W&&{summary:W}),void 0!==F&&{accessibleTable:F}),s&&{className:s}),{tooltipContent:!1===v?()=>null:qn(v)||Z}),(w||A||S)&&{customHoverBehavior:X.customHoverBehavior}),(A||S)&&{customClickBehavior:X.customClickBehavior}),b&&b.length>0&&{annotations:b}),x);return J?p.createElement(Qn,{componentName:"StackedBarChart",message:J,width:_,height:B}):p.createElement(Eo,{componentName:"StackedBarChart",width:_,height:B},p.createElement(Nr,Object.assign({ref:r},ne)))});Ir.displayName="StackedBarChart";const Wr=e.forwardRef(function(t,n){const o=In(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,barPadding:y=60,tooltip:m,annotations:v,frameProps:b={},selection:x,linkedHover:k,onObservation:w,onClick:A,chartId:S,loading:O,emptyContent:E,legendInteraction:M,legendPosition:C,color:j,categoryFormat:L}=t,P=o.width,_=o.height,B=o.enableHover,D=o.showGrid,N=o.showLegend,R=o.title,H=o.description,I=o.summary,W=o.accessibleTable,F=o.categoryLabel,z=o.valueLabel,$=i||[],G=g||c,q=void 0===i,Y=Wo({data:$,rawData:i,colorBy:G,colorScheme:f,legendInteraction:M,legendPosition:C,selection:x,linkedHover:k,fallbackFields:G?["string"==typeof G?G:""]:[],unwrapData:!0,onObservation:w,onClick:A,chartType:"GroupedBarChart",chartId:S,showLegend:N,userMargin:a,marginDefaults:o.marginDefaults,loading:O,emptyContent:E,width:P,height:_});if(Y.earlyReturn)return Y.earlyReturn;const X=jn(),V=e.useMemo(()=>new Map,[$]),U=e.useMemo(()=>(e,t)=>G?Y.colorScale?{fill:T(e,G,Y.colorScale)}:{}:{fill:Ln(j,X,f,t,V)},[G,Y.colorScale,j,X,f,V]),K=e.useMemo(()=>kn(U,Y.effectiveSelectionHook,x),[U,Y.effectiveSelectionHook,x]),Q=e.useMemo(()=>Kn({categoryAccessor:c,valueAccessor:u,groupAccessor:l}),[c,l,u]),Z=oo({componentName:"GroupedBarChart",data:i,accessors:{categoryAccessor:l,valueAccessor:u},requiredProps:{groupBy:c}}),{effectiveLegendProps:J,effectiveMargin:ee}=Hr({ref:n,frameRef:r,isPushMode:q,colorBy:G,colorScheme:f,showLegend:N,legendPosition:C,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({chartType:"clusterbar"},null!=i&&{data:$}),{oAccessor:l,rAccessor:u,groupBy:c,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:K,size:[P,_],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ee,barPadding:y,enableHover:B,showAxes:o.showAxes,oLabel:F,rLabel:z,rFormat:h}),L&&{oFormat:L}),{showGrid:D}),J),R&&{title:R}),H&&{description:H}),I&&{summary:I}),void 0!==W&&{accessibleTable:W}),s&&{className:s}),{tooltipContent:!1===m?()=>null:qn(m)||Q}),(k||w||A)&&{customHoverBehavior:Y.customHoverBehavior}),(w||A)&&{customClickBehavior:Y.customClickBehavior}),v&&v.length>0&&{annotations:v}),b);return Z?p.createElement(Qn,{componentName:"GroupedBarChart",message:Z,width:P,height:_}):p.createElement(Eo,{componentName:"GroupedBarChart",width:P,height:_},p.createElement(Nr,Object.assign({ref:r},te)))});function Fr({brushProp:t,onBrushProp:n,linkedBrush:o,valueAccessor:r}){const i=xn("string"==typeof o?o:o?{name:o.name,xField:o.rField}:void 0),a=gn({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}:{}}}Wr.displayName="GroupedBarChart";const zr=e.forwardRef(function(t,n){const o=In(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)},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:[]}}));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:C,onClick:j,chartId:L,loading:P,emptyContent:_,legendInteraction:B,legendPosition:N,color:R,showCategoryTicks:H,categoryFormat:I}=t,W=o.width,F=o.height,z=o.enableHover,$=o.showGrid,G=o.title,q=o.description,Y=o.summary,X=o.accessibleTable,V=o.categoryLabel,U=o.valueLabel,K=i||[],Q=Wo({data:K,rawData:i,colorBy:h,colorScheme:g,legendInteraction:B,legendPosition:N,selection:E,linkedHover:M,fallbackFields:h?["string"==typeof h?h:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:C,onClick:j,chartType:"SwarmPlot",chartId:L,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:P,emptyContent:_,width:W,height:F}),Z=Fr({brushProp:w,onBrushProp:A,linkedBrush:S,valueAccessor:c});if(Q.earlyReturn)return Q.earlyReturn;const J=e.useMemo(()=>{if(!f)return;const e=K.map(e=>"function"==typeof f?f(e):e[f]);return[Math.min(...e),Math.max(...e)]},[K,f]),ee=jn(),te=e.useMemo(()=>new Map,[K]),ne=e.useMemo(()=>(e,t)=>{const n={fillOpacity:v};return n.fill=h?T(e,h,Q.colorScale):Ln(R,ee,g,void 0,te),n.r=f?D(e,f,y,J):m,n},[h,Q.colorScale,f,y,J,m,v,R,ee,g,te]),oe=e.useMemo(()=>kn(ne,Q.effectiveSelectionHook,E),[ne,Q.effectiveSelectionHook,E]),re=e.useMemo(()=>Kn({categoryAccessor:l,valueAccessor:c,groupAccessor:h||void 0}),[l,c,h]),ie=oo({componentName:"SwarmPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(ie)return p.createElement(Qn,{componentName:"SwarmPlot",message:ie,width:W,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({chartType:"swarm"},null!=i&&{data:K}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",pieceStyle:oe,size:[W,F],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Q.margin,barPadding:b,enableHover:z,showAxes:o.showAxes,oLabel:V,rLabel:U,rFormat:d}),I&&{oFormat:I}),{showGrid:$,showCategoryTicks:H}),Q.legendBehaviorProps),G&&{title:G}),q&&{description:q}),Y&&{summary:Y}),void 0!==X&&{accessibleTable:X}),s&&{className:s}),{tooltipContent:!1===x?()=>null:qn(x)||re}),(M||C||j)&&{customHoverBehavior:Q.customHoverBehavior}),(C||j)&&{customClickBehavior:Q.customClickBehavior}),k&&k.length>0&&{annotations:k}),Z.brushStreamProps),O);return p.createElement(Eo,{componentName:"SwarmPlot",width:W,height:F},p.createElement(Nr,Object.assign({ref:r},ae)))});function $r(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:Fn},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:Fn},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:Fn},p.createElement("div",{style:{fontWeight:"bold"}},o+""))}}zr.displayName="SwarmPlot";const Gr=e.forwardRef(function(t,n){const o=In(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)},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:[]}}));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,chartId:S,loading:O,emptyContent:E,legendInteraction:M,legendPosition:C,color:j,showCategoryTicks:L,categoryFormat:P}=t,_=o.width,B=o.height,D=o.enableHover,N=o.showGrid,R=o.title,H=o.description,I=o.summary,W=o.accessibleTable,F=o.categoryLabel,z=o.valueLabel,$=i||[],G=Wo({data:$,rawData:i,colorBy:h,colorScheme:g,legendInteraction:M,legendPosition:C,selection:x,linkedHover:k,fallbackFields:h?["string"==typeof h?h:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:w,onClick:A,chartType:"BoxPlot",chartId:S,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:O,emptyContent:E,width:_,height:B});if(G.earlyReturn)return G.earlyReturn;const q=jn(),Y=e.useMemo(()=>new Map,[$]),X=e.useMemo(()=>e=>{const t=h?T(e,h,G.colorScale):Ln(j,q,g,void 0,Y);return{fill:t,stroke:t,fillOpacity:.8}},[h,G.colorScale,j,q,g,Y]),V=e.useMemo(()=>kn(X,G.effectiveSelectionHook,x),[X,G.effectiveSelectionHook,x]),U=e.useMemo(()=>$r(),[]),K=oo({componentName:"BoxPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(K)return p.createElement(Qn,{componentName:"BoxPlot",message:K,width:_,height:B});const Q=Object.assign(Object.assign(Object.assign(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:$}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",summaryStyle:V,showOutliers:f,size:[_,B],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:G.margin,barPadding:y,enableHover:D,showAxes:o.showAxes,oLabel:F,rLabel:z,rFormat:d}),P&&{oFormat:P}),{showGrid:N,showCategoryTicks:L}),G.legendBehaviorProps),R&&{title:R}),H&&{description:H}),I&&{summary:I}),void 0!==W&&{accessibleTable:W}),s&&{className:s}),{tooltipContent:!1===m?()=>null:qn(m)||U}),(k||w||A)&&{customHoverBehavior:G.customHoverBehavior}),(w||A)&&{customClickBehavior:G.customClickBehavior}),v&&v.length>0&&{annotations:v}),b);return p.createElement(Eo,{componentName:"BoxPlot",width:_,height:B},p.createElement(Nr,Object.assign({ref:r},Q)))});Gr.displayName="BoxPlot";const qr=e.forwardRef(function(t,n){const o=In(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)},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:[]}}));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,chartId:M,loading:C,emptyContent:j,legendInteraction:L,legendPosition:P,color:_,showCategoryTicks:B,categoryFormat:D}=t,N=o.width,R=o.height,H=o.enableHover,I=o.showGrid,W=o.title,F=o.description,z=o.summary,$=o.accessibleTable,G=o.categoryLabel,q=o.valueLabel,Y=i||[],X=Wo({data:Y,rawData:i,colorBy:g,colorScheme:f,legendInteraction:L,legendPosition:P,selection:A,linkedHover:S,fallbackFields:g?["string"==typeof g?g:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:O,onClick:E,chartType:"Histogram",chartId:M,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:C,emptyContent:j,width:N,height:R}),V=Fr({brushProp:b,onBrushProp:x,linkedBrush:k,valueAccessor:c});if(X.earlyReturn)return X.earlyReturn;const U=e.useMemo(()=>{if(0===Y.length)return;const e="function"==typeof c?c:e=>e[c];let t=1/0,n=-1/0;for(const o of Y){const r=e(o);null!=r&&isFinite(r)&&(t>r&&(t=r),r>n&&(n=r))}return t>n?void 0:[t,n]},[Y,c]),K=jn(),Q=e.useMemo(()=>new Map,[Y]),Z=e.useMemo(()=>e=>{const t=g?T(e,g,X.colorScale):Ln(_,K,f,void 0,Q);return{fill:t,stroke:t,fillOpacity:.8}},[g,X.colorScale,_,K,f,Q]),J=e.useMemo(()=>kn(Z,X.effectiveSelectionHook,A),[Z,X.effectiveSelectionHook,A]),ee=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:Fn},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)))},[]),te=oo({componentName:"Histogram",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(te)return p.createElement(Qn,{componentName:"Histogram",message:te,width:N,height:R});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:"histogram"},null!=i&&{data:Y}),{oAccessor:l,rAccessor:c,projection:"horizontal",summaryStyle:J,bins:u,normalize:d}),U&&{rExtent:U}),{size:[N,R],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:X.margin,barPadding:y,enableHover:H,showAxes:o.showAxes,oLabel:G,rLabel:q,rFormat:h}),D&&{oFormat:D}),{showGrid:I,showCategoryTicks:B}),X.legendBehaviorProps),W&&{title:W}),F&&{description:F}),z&&{summary:z}),void 0!==$&&{accessibleTable:$}),s&&{className:s}),{tooltipContent:!1===m?()=>null:qn(m)||ee}),(S||O||E)&&{customHoverBehavior:X.customHoverBehavior}),(O||E)&&{customClickBehavior:X.customClickBehavior}),v&&v.length>0&&{annotations:v}),V.brushStreamProps),w);return p.createElement(Eo,{componentName:"Histogram",width:N,height:R},p.createElement(Nr,Object.assign({ref:r},ne)))});qr.displayName="Histogram";const Yr=e.forwardRef(function(t,n){const o=In(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)},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:[]}}));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,chartId:C,loading:j,emptyContent:L,legendInteraction:P,legendPosition:_,color:B,showCategoryTicks:D,categoryFormat:N}=t,R=o.width,H=o.height,I=o.enableHover,W=o.showGrid,F=o.title,z=o.description,$=o.summary,G=o.accessibleTable,q=o.categoryLabel,Y=o.valueLabel,X=i||[],V=Wo({data:X,rawData:i,colorBy:f,colorScheme:y,legendInteraction:P,legendPosition:_,selection:S,linkedHover:O,fallbackFields:f?["string"==typeof f?f:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:E,onClick:M,chartType:"ViolinPlot",chartId:C,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:j,emptyContent:L,width:R,height:H}),U=Fr({brushProp:x,onBrushProp:k,linkedBrush:w,valueAccessor:c});if(V.earlyReturn)return V.earlyReturn;const K=jn(),Q=e.useMemo(()=>new Map,[X]),Z=e.useMemo(()=>e=>{const t=f?T(e,f,V.colorScale):Ln(B,K,y,void 0,Q);return{fill:t,stroke:t,fillOpacity:.6}},[f,V.colorScale,B,K,y,Q]),J=e.useMemo(()=>kn(Z,V.effectiveSelectionHook,S),[Z,V.effectiveSelectionHook,S]),ee=e.useMemo(()=>$r({valueAccessor:c}),[c]),te=oo({componentName:"ViolinPlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(te)return p.createElement(Qn,{componentName:"ViolinPlot",message:te,width:R,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({chartType:"violin"},null!=i&&{data:X}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",summaryStyle:J,bins:d,showIQR:h,size:[R,H],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:V.margin,barPadding:m,enableHover:I,showAxes:o.showAxes,oLabel:q,rLabel:Y,rFormat:g}),N&&{oFormat:N}),{showGrid:W,showCategoryTicks:D}),V.legendBehaviorProps),F&&{title:F}),z&&{description:z}),$&&{summary:$}),void 0!==G&&{accessibleTable:G}),s&&{className:s}),{tooltipContent:!1===v?()=>null:qn(v)||ee}),(O||E||M)&&{customHoverBehavior:V.customHoverBehavior}),(E||M)&&{customClickBehavior:V.customClickBehavior}),b&&b.length>0&&{annotations:b}),U.brushStreamProps),A);return p.createElement(Eo,{componentName:"ViolinPlot",width:R,height:H},p.createElement(Nr,Object.assign({ref:r},ne)))});Yr.displayName="ViolinPlot";const Xr=e.forwardRef(function(t,n){var o;const r=In(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)},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:[]}}));const{data:a,margin:s,className:l,categoryAccessor:c="category",valueAccessor:u="value",orientation:d="horizontal",valueFormat:h,colorBy:g,colorScheme:f,sort:y=!0,dotRadius:m=5,categoryPadding:v=10,tooltip:b,annotations:x,frameProps:k={},selection:w,linkedHover:A,onObservation:S,onClick:O,chartId:E,loading:M,emptyContent:C,legendInteraction:j,legendPosition:L,color:P,categoryFormat:_}=t,B=r.width,D=r.height,N=r.enableHover,R=r.showGrid,H=r.title,I=r.description,W=r.summary,F=r.accessibleTable,z=r.categoryLabel,$=r.valueLabel,G=a||[],q=Wo({data:G,rawData:a,colorBy:g,colorScheme:f,legendInteraction:j,legendPosition:L,selection:w,linkedHover:A,fallbackFields:g?["string"==typeof g?g:""]:["string"==typeof c?c:""],unwrapData:!0,onObservation:S,onClick:O,chartType:"DotPlot",chartId:E,showLegend:r.showLegend,userMargin:s,marginDefaults:r.marginDefaults,loading:M,emptyContent:C,width:B,height:D});if(q.earlyReturn)return q.earlyReturn;const Y=Tn(G,y,u),X=jn(),V=e.useMemo(()=>new Map,[G]),U=e.useMemo(()=>(e,t)=>{const n={r:m,fillOpacity:.8};return n.fill=g?T(e,g,q.colorScale):Ln(P,X,f,void 0,V),n},[g,q.colorScale,m,P,X,f,V]),K=e.useMemo(()=>kn(U,q.effectiveSelectionHook,w),[U,q.effectiveSelectionHook,w]),Q=e.useMemo(()=>Kn({categoryAccessor:c,valueAccessor:u}),[c,u]),Z=oo({componentName:"DotPlot",data:a,accessors:{categoryAccessor:c,valueAccessor:u}});if(Z)return p.createElement(Qn,{componentName:"DotPlot",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({chartType:"point"},null!=a&&{data:Y}),{oAccessor:c,rAccessor:u,projection:"horizontal"===d?"horizontal":"vertical",pieceStyle:K,size:[B,D],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:q.margin,barPadding:v,enableHover:N,showAxes:r.showAxes,oLabel:z,rLabel:$,rFormat:h}),_&&{oFormat:_}),{showGrid:R,oSort:y}),q.legendBehaviorProps),H&&{title:H}),I&&{description:I}),W&&{summary:W}),void 0!==F&&{accessibleTable:F}),l&&{className:l}),{tooltipContent:!1===b?()=>null:qn(b)||Q}),(A||S||O)&&{customHoverBehavior:q.customHoverBehavior}),(S||O)&&{customClickBehavior:q.customClickBehavior}),x&&x.length>0&&{annotations:x}),k);return p.createElement(Eo,{componentName:"DotPlot",width:B,height:D},p.createElement(Nr,Object.assign({ref:i},J)))});Xr.displayName="DotPlot";const Vr=e.forwardRef(function(t,n){const o=In(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)},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:[]}}));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,chartId:O,loading:E,emptyContent:M,legendInteraction:C,legendPosition:j,color:L,showCategoryTicks:P,categoryFormat:_}=t,B=o.width,D=o.height,N=o.enableHover,R=o.showGrid,H=o.title,I=o.description,W=o.summary,F=o.accessibleTable,z=o.categoryLabel,$=o.valueLabel,G=i||[],q=Wo({data:G,rawData:i,colorBy:f,colorScheme:y,legendInteraction:C,legendPosition:j,selection:k,linkedHover:w,fallbackFields:f?["string"==typeof f?f:""]:["string"==typeof l?l:""],unwrapData:!0,onObservation:A,onClick:S,chartType:"RidgelinePlot",chartId:O,showLegend:o.showLegend,userMargin:a,marginDefaults:o.marginDefaults,loading:E,emptyContent:M,width:B,height:D});if(q.earlyReturn)return q.earlyReturn;const Y=jn(),X=e.useMemo(()=>new Map,[G]),V=e.useMemo(()=>e=>{const t=f?T(e,f,q.colorScale):Ln(L,Y,y,void 0,X);return{fill:t,stroke:t,fillOpacity:.5}},[f,q.colorScale,L,Y,y,X]),U=e.useMemo(()=>kn(V,q.effectiveSelectionHook,k),[V,q.effectiveSelectionHook,k]),K=e.useMemo(()=>$r(),[]),Q=oo({componentName:"RidgelinePlot",data:i,accessors:{categoryAccessor:l,valueAccessor:c}});if(Q)return p.createElement(Qn,{componentName:"RidgelinePlot",message:Q,width:B,height:D});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({chartType:"ridgeline"},null!=i&&{data:G}),{oAccessor:l,rAccessor:c,projection:"horizontal"===u?"horizontal":"vertical",summaryStyle:U,bins:d,size:[B,D],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:q.margin,barPadding:m,enableHover:N,showAxes:o.showAxes,oLabel:z,rLabel:$,rFormat:g}),_&&{oFormat:_}),{showGrid:R,showCategoryTicks:P,oSort:!1,amplitude:h}),q.legendBehaviorProps),H&&{title:H}),I&&{description:I}),W&&{summary:W}),void 0!==F&&{accessibleTable:F}),s&&{className:s}),{tooltipContent:!1===v?()=>null:qn(v)||K}),(w||A||S)&&{customHoverBehavior:q.customHoverBehavior}),(A||S)&&{customClickBehavior:q.customClickBehavior}),b&&b.length>0&&{annotations:b}),x);return p.createElement(Eo,{componentName:"RidgelinePlot",width:B,height:D},p.createElement(Nr,Object.assign({ref:r},Z)))});Vr.displayName="RidgelinePlot";const Ur=e.forwardRef(function(t,n){var o,r;const i=In(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,tooltip:y,annotations:m,frameProps:v={},selection:b,linkedHover:x,onObservation:k,onClick:w,chartId:A,loading:S,emptyContent:O,legendInteraction:E,legendPosition:M,color:C}=t,j=i.width,L=i.height,P=i.enableHover,_=i.showLegend,B=i.title,D=i.description,N=i.summary,R=i.accessibleTable,H=s||[],I=h||u,W=void 0===s,F=Wo({data:H,rawData:s,colorBy:I,colorScheme:g,legendInteraction:E,legendPosition:M,selection:b,linkedHover:x,fallbackFields:I?["string"==typeof I?I:""]:[],unwrapData:!0,onObservation:k,onClick:w,chartType:"PieChart",chartId:A,showLegend:_,userMargin:l,marginDefaults:i.marginDefaults,loading:S,emptyContent:O,width:j,height:L});if(F.earlyReturn)return F.earlyReturn;const z=jn(),$=e.useMemo(()=>new Map,[H]),G=e.useMemo(()=>(e,t)=>I?F.colorScale?{fill:T(e,I,F.colorScale)}:{}:{fill:Ln(C,z,g,t,$)},[I,F.colorScale,C,z,g,$]),q=e.useMemo(()=>kn(G,F.effectiveSelectionHook,b),[G,F.effectiveSelectionHook,b]),Y=e.useMemo(()=>Kn({categoryAccessor:u,valueAccessor:d,groupAccessor:h&&h!==u?h:void 0,groupLabel:"string"==typeof h?h:"group",pieData:!0}),[u,d,h]),X=oo({componentName:"PieChart",data:s,accessors:{categoryAccessor:u,valueAccessor:d}}),{effectiveLegendProps:V,effectiveMargin:U}=Hr({ref:n,frameRef:a,isPushMode:W,colorBy:I,colorScheme:g,showLegend:_,legendPosition:M,setup:F}),K=Object.assign(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:H}),{oAccessor:u,rAccessor:d,projection:"radial",pieceStyle:q,startAngle:f,size:[j,L],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:U,enableHover:P,showAxes:!1}),V),B&&{title:B}),D&&{description:D}),N&&{summary:N}),void 0!==R&&{accessibleTable:R}),c&&{className:c}),{tooltipContent:!1===y?()=>null:qn(y)||Y}),(x||k||w)&&{customHoverBehavior:F.customHoverBehavior}),(k||w)&&{customClickBehavior:F.customClickBehavior}),m&&m.length>0&&{annotations:m}),v);return X?p.createElement(Qn,{componentName:"PieChart",message:X,width:j,height:L}):p.createElement(Eo,{componentName:"PieChart",width:j,height:L},p.createElement(Nr,Object.assign({ref:a},K)))});Ur.displayName="PieChart";const Kr=e.forwardRef(function(t,n){var o,r;const i=In(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,tooltip:v,annotations:b,frameProps:x={},selection:k,linkedHover:w,onObservation:A,onClick:S,chartId:O,loading:E,emptyContent:M,legendInteraction:C,legendPosition:j,color:L}=t,P=i.width,_=i.height,B=i.enableHover,D=i.showLegend,N=i.title,R=i.description,H=i.summary,I=i.accessibleTable,W=s||[],F=f||u,z=void 0===s,$=Wo({data:W,rawData:s,colorBy:F,colorScheme:y,legendInteraction:C,legendPosition:j,selection:k,linkedHover:w,fallbackFields:F?["string"==typeof F?F:""]:[],unwrapData:!0,onObservation:A,onClick:S,chartType:"DonutChart",chartId:O,showLegend:D,userMargin:l,marginDefaults:i.marginDefaults,loading:E,emptyContent:M,width:P,height:_});if($.earlyReturn)return $.earlyReturn;const G=jn(),q=e.useMemo(()=>new Map,[W]),Y=e.useMemo(()=>(e,t)=>F?$.colorScale?{fill:T(e,F,$.colorScale)}:{}:{fill:Ln(L,G,y,t,q)},[F,$.colorScale,L,G,y,q]),X=e.useMemo(()=>kn(Y,$.effectiveSelectionHook,k),[Y,$.effectiveSelectionHook,k]),V=e.useMemo(()=>Kn({categoryAccessor:u,valueAccessor:d,groupAccessor:f&&f!==u?f:void 0,groupLabel:"string"==typeof f?f:"group",pieData:!0}),[u,d,f]),U=oo({componentName:"DonutChart",data:s,accessors:{categoryAccessor:u,valueAccessor:d}}),{effectiveLegendProps:K,effectiveMargin:Q}=Hr({ref:n,frameRef:a,isPushMode:z,colorBy:F,colorScheme:y,showLegend:D,legendPosition:j,setup:$}),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({chartType:"donut"},null!=s&&{data:W}),{oAccessor:u,rAccessor:d,projection:"radial",pieceStyle:X,innerRadius:h,startAngle:m,centerContent:g,size:[P,_],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:Q,enableHover:B,showAxes:!1}),K),N&&{title:N}),R&&{description:R}),H&&{summary:H}),void 0!==I&&{accessibleTable:I}),c&&{className:c}),{tooltipContent:!1===v?()=>null:qn(v)||V}),(w||A||S)&&{customHoverBehavior:$.customHoverBehavior}),(A||S)&&{customClickBehavior:$.customClickBehavior}),b&&b.length>0&&{annotations:b}),x);return U?p.createElement(Qn,{componentName:"DonutChart",message:U,width:P,height:_}):p.createElement(Eo,{componentName:"DonutChart",width:P,height:_},p.createElement(Nr,Object.assign({ref:a},Z)))});Kr.displayName="DonutChart";const Qr=e.forwardRef(function(t,n){const o=In(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)},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:[]}}));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,chartId:S,loading:O,emptyContent:E,legendInteraction:M,legendPosition:C,color:j,categoryFormat:L}=t,P="vertical"===g,_=o.width,B=o.height,D=o.enableHover,N=o.title,R=o.description,H=o.summary,I=o.accessibleTable,W=i||[],F=d||u,z=!F,$=Wo({data:W,rawData:i,colorBy:F,colorScheme:h,legendInteraction:M,legendPosition:C,selection:x,linkedHover:k,fallbackFields:F?["string"==typeof F?F:""]:[],unwrapData:!0,onObservation:w,onClick:A,chartType:"FunnelChart",chartId:S,showLegend:o.showLegend,userMargin:a,marginDefaults:P?{top:N?60:40,right:20,bottom:60,left:60}:{top:N?40:10,right:10,bottom:10,left:10},loading:O,emptyContent:E,width:_,height:B});if($.earlyReturn)return $.earlyReturn;Po("FunnelChart",W,"stepAccessor",l),Po("FunnelChart",W,"valueAccessor",c);const G=jn(),q=e.useMemo(()=>new Map,[W]),Y=e.useMemo(()=>{if(z)return j||((null==G?void 0:G[0])?G[0]:Array.isArray(h)&&h[0]?h[0]:"#4e79a7")},[z,j,G,h]),X=e.useMemo(()=>(e,t)=>{const n={};return n.fill=Y||(F?T(e,F,$.colorScale):Ln(j,G,h,t,q)),n},[Y,F,$.colorScale,j,G,h,q]),V=e.useMemo(()=>kn(X,$.effectiveSelectionHook,x),[X,$.effectiveSelectionHook,x]),U=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:Fn},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))},[]),K=oo({componentName:"FunnelChart",data:i,accessors:{stepAccessor:l,valueAccessor:c}});if(K)return p.createElement(Qn,{componentName:"FunnelChart",message:K,width:_,height:B});const Q=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(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:P?"bar-funnel":"funnel"},null!=i&&{data:W}),{oAccessor:l,rAccessor:c}),u&&{stackBy:u}),{projection:P?"vertical":"horizontal",barPadding:P?40:0,pieceStyle:V,size:[_,B],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:$.margin,enableHover:D,showAxes:P,showCategoryTicks:P}),L&&{oFormat:L}),{showGrid:P}),!P&&{connectorOpacity:f}),{showLabels:y}),$.legendBehaviorProps),N&&{title:N}),R&&{description:R}),H&&{summary:H}),void 0!==I&&{accessibleTable:I}),s&&{className:s}),{tooltipContent:!1===m?()=>null:!0===m||null==m?U:qn(m)||U}),(k||w||A)&&{customHoverBehavior:$.customHoverBehavior}),(w||A)&&{customClickBehavior:$.customClickBehavior}),v&&v.length>0&&{annotations:v}),b);return p.createElement(Eo,{componentName:"FunnelChart",width:_,height:B},p.createElement(Nr,Object.assign({ref:r},Q)))});Qr.displayName="FunnelChart";const Zr="__likert_neutral_neg",Jr="__likert_neutral_pos";function ei(e,t){if("function"==typeof e)return e;const n=e||t;return e=>e[n]}function ti(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 ni(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:Zr,__likertPct:-e})),i.push(Object.assign(Object.assign({},t),{__likertLevel:Jr,__likertPct:e}))}else i.push(r>e?Object.assign(Object.assign({},t),{__likertPct:-t.__likertPct}):t)}return i}function oi(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===Zr?i=n:n.__likertLevel===Jr?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 ri=e.forwardRef(function(t,n){const o=In(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,chartId:S,valueFormat:O,loading:E,emptyContent:M,legendInteraction:C,legendPosition:j,categoryFormat:L}=t,P=o.width,_=o.height,T=o.enableHover,B=o.showGrid,D=o.showLegend,N=o.title,R=o.description,H=o.summary,I=o.accessibleTable,W=o.categoryLabel,F=o.valueLabel,z="horizontal"===g,$=void 0===i,G=!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]),Y=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:X,reAggregate:V,accumulatorRef:U}=function({data:t,levels:n,categoryAccessor:o,valueAccessor:r,levelAccessor:i,countAccessor:a,isDiverging:s,frameRef:l}){const c=!i,u=e.useMemo(()=>ei(o,"question"),[o]),d=e.useMemo(()=>c?ei(r,"score"):null,[c,r]),h=e.useMemo(()=>c?null:ei(i,"level"),[c,i]),g=e.useMemo(()=>c?null:ei(a,"count"),[c,a]),f=t||[],p=e.useRef([]),y=e.useMemo(()=>{if(0===f.length)return[];let e=ti(f,n,u,d,h,g);return s&&(e=ni(e,n),e=oi(e,n)),e},[f,n,u,d,h,g,s]),m=e.useCallback(e=>{var t,o;let r=ti(e,n,u,d,h,g);s&&(r=ni(r,n),r=oi(r,n)),null===(t=l.current)||void 0===t||t.clear(),r.length>0&&(null===(o=l.current)||void 0===o||o.pushMany(r))},[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}),K="__likertLevelLabel",Q=Ho({isPushMode:$,colorBy:K,colorScheme:q,showLegend:D,legendPosition:j}),Z=e.useCallback(Q.wrapPush(e=>{U.current.push(e),V(U.current)}),[Q.wrapPush,V,U]),J=e.useCallback(Q.wrapPushMany(e=>{U.current.push(...e),V(U.current)}),[Q.wrapPushMany,V,U]);e.useImperativeHandle(n,()=>({push:Z,pushMany:J,clear:()=>{var e;U.current=[],Q.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:[]}}),[Z,J,Q.resetCategories,U]);const ee=Wo({data:X,rawData:i,colorBy:K,colorScheme:q,legendInteraction:C,legendPosition:j,selection:x,linkedHover:k,fallbackFields:["__likertLevelLabel"],unwrapData:!0,onObservation:w,onClick:A,chartType:"LikertChart",chartId:S,showLegend:D,userMargin:a,marginDefaults:o.marginDefaults,loading:E,emptyContent:M,width:P,height:_});if(ee.earlyReturn)return ee.earlyReturn;const te=e.useMemo(()=>{const e=h.length;return e%2!=0&&Y.get(h[Math.floor(e/2)])||"#888"},[h,Y]),ne=e.useMemo(()=>e=>{var t,n;const o=e.__likertLevelLabel||(null===(t=e.data)||void 0===t?void 0:t.__likertLevelLabel),r=e.__likertLevel||(null===(n=e.data)||void 0===n?void 0:n.__likertLevel);if(r===Zr||r===Jr)return{fill:te};const i=o||r;return i&&Y.has(i)?{fill:Y.get(i)}:{fill:"#888"}},[Y,te]),oe=e.useMemo(()=>kn(ne,ee.effectiveSelectionHook,x),[ne,ee.effectiveSelectionHook,x]),re=e.useMemo(()=>{const e=h.length;return e%2!=0?h[Math.floor(e/2)]:""},[h]),ie=e.useMemo(()=>e=>{const t=e.data||e,n=t.__likertLevel||"Unknown",o=n===Zr||n===Jr?re:n,r=t.__likertCategory||"",i=Math.abs(t.__likertPct||0),a=n===Zr||n===Jr?2*i:i,s=t.__likertCount||0;return p.createElement("div",{className:"semiotic-tooltip",style:Fn},p.createElement("div",{style:{fontWeight:"bold"}},r),p.createElement("div",{style:{marginTop:4}},`${o}: ${a.toFixed(1)}% (n=${s})`))},[re]),ae=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 G?c&&(e.valueAccessor=c):(u&&(e.levelAccessor=u),d&&(e.countAccessor=d)),oo({componentName:"LikertChart",data:i,accessors:e,requiredProps:{levels:h}})},[i,l,c,u,d,h,G]),se=e.useMemo(()=>[{styleFn:e=>({fill:Y.get(e.label)||"#888"}),items:h.map(e=>({label:e})),label:""}],[h,Y]),le=e.useMemo(()=>!1!==D?Object.assign(Object.assign({},ee.legendBehaviorProps),{legend:{legendGroups:se},legendPosition:j||ee.legendPosition||"bottom"}):ee.legendBehaviorProps,[ee.legendBehaviorProps,ee.legendPosition,j,D,se]),ce=e.useMemo(()=>{const e=Object.assign({},ee.margin);if($&&!1!==D){const t=j||"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(Q.streamingMarginAdjust)for(const[t,n]of Object.entries(Q.streamingMarginAdjust))n>e[t]&&(e[t]=n);return z&&100>e.left&&(e.left=100),e},[ee.margin,Q.streamingMarginAdjust,z,$,D,j]),ue=e.useMemo(()=>O||(z?e=>Math.abs(Number(e)).toFixed(0)+"%":e=>Number(e).toFixed(0)+"%"),[z,O]),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({chartType:"bar"},null!=i&&{data:X}),{oAccessor:"__likertCategory",rAccessor:"__likertPct",stackBy:"__likertLevel",normalize:!1,projection:z?"horizontal":"vertical",pieceStyle:oe,size:[P,_],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:ce,barPadding:y,enableHover:T,showAxes:o.showAxes,oLabel:W,rLabel:F||(z?void 0:"Percentage"),rFormat:ue}),L&&{oFormat:L}),{showGrid:B}),le),N&&{title:N}),R&&{description:R}),H&&{summary:H}),void 0!==I&&{accessibleTable:I}),s&&{className:s}),{tooltipContent:!1===m?()=>null:!0===m?ie:qn(m)||ie}),(k||w||A)&&{customHoverBehavior:ee.customHoverBehavior}),(w||A)&&{customClickBehavior:ee.customClickBehavior}),v&&v.length>0&&{annotations:v}),b);return ae?p.createElement(Qn,{componentName:"LikertChart",message:ae,width:P,height:_}):p.createElement(Eo,{componentName:"LikertChart",width:P,height:_},p.createElement(Nr,Object.assign({ref:r},de)))});ri.displayName="LikertChart";const ii={weightChange:.1,newEdge:.5,newNode:1,threshold:3,transitionDuration:500},ai={radius:3,opacity:.7,speedMultiplier:1,maxPerEdge:50,spawnRate:.1};class si{constructor(e){this.capacity=e,this.particles=Array(e);for(let t=0;e>t;t++)this.particles[t]={t:0,offset:0,edgeIndex:0,active:!1,x:0,y:0}}spawn(e){for(let t=0;this.capacity>t;t++){const n=this.particles[t];if(!n.active)return n.active=!0,n.t=0,n.offset=Math.random()-.5,n.edgeIndex=e,n.x=0,n.y=0,n}return null}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;continue}const l=o&&null!==(r=o[a.edgeIndex])&&void 0!==r?r:1;if(a.t+=e*t*l*(s.bezier.circular?.3:1),a.t>=1){a.active=!1;continue}const c=li(s.bezier,a.t,a.offset);a.x=c.x,a.y=c.y}}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}resize(e){if(this.capacity>=e)return;const t=this.particles;this.particles=Array(e);for(let n=0;e>n;n++)this.particles[n]=t.length>n?t[n]:{t:0,offset:0,edgeIndex:0,active:!1,x:0,y:0};this.capacity=e}}function li(e,t,n){if(e.circular&&e.segments)return function(e,t,n,o){const r=e.length,i=t*r,a=Math.min(Math.floor(i),r-1),s=i-a,[l,c,u,d]=e[a],h=ci(l,c,u,d,s),g=d.x-l.x,f=d.y-l.y,p=Math.sqrt(g*g+f*f);if(p>.001){const e=g/p;h.x+=-f/p*n*o*2,h.y+=e*n*o*2}return h}(e.segments,t,n,e.halfWidth);if(!e.points)return{x:0,y:0};const[o,r,i,a]=e.points,s=ci(o,r,i,a,t),l=a.x-o.x,c=a.y-o.y,u=Math.sqrt(l*l+c*c);if(u>.001){const t=l/u;s.x+=-c/u*n*e.halfWidth*2,s.y+=t*n*e.halfWidth*2}return s}function ci(e,t,n,o,r){const i=1-r,a=i*i,s=a*i,l=r*r,c=l*r;return{x:s*e.x+3*a*r*t.x+3*i*l*n.x+c*o.x,y:s*e.y+3*a*r*t.y+3*i*l*n.y+c*o.y}}function ui(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 hi(e){return e.y0-e.y1>0?"up":"down"}function gi(e,t){return t(e.source)==t(e.target)}function fi(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 pi(e){return e.target.x0-e.source.x1}function yi(e,t){var n=vi(e),o=pi(t)/Math.tan(n);return"up"==hi(e)?e.y1-o:e.y1+o}function mi(e,t){var n=vi(e),o=pi(t)/Math.tan(n);return"up"==hi(e)?e.y1+o:e.y1-o}function vi(e){var t=Math.abs(e.y1-e.y0);return Math.atan(Math.abs(e.target.x0-e.source.x1)/t)}function bi(e,t){return t(e)}function xi(e){return wi(e.source)}function ki(e){return wi(e.target)}function wi(e){return(e.y0+e.y1)/2}function Ai(e){return e.virtual?0:e.value}function Si(e,t){var n=0;e.sourceLinks.forEach(function(e){n=e.circular&&!gi(e,t)?n+1:n});var o=0;return e.targetLinks.forEach(function(e){o=e.circular&&!gi(e,t)?o+1:o}),n+o}function Oi(e){return e.target.depth}function Ei(e,t){return e.sourceLinks.length?e.depth:t-1}function Mi(e,t){return e.y0-t.y0}function Ci(e,t){return t.y0-e.y0}function ji(e,t){return e.y1-t.y1}function Li(e,t){return t.y1-e.y1}function Pi(e,t){return Ti(e.source,t.source)||e.index-t.index}function _i(e,t){return Ti(e.target,t.target)||e.index-t.index}function Ti(e,t){return e.partOfCycle===t.partOfCycle?e.y0-t.y0:"top"===e.circularLinkType||"bottom"===t.circularLinkType?-1:1}function Bi(e,t){return Di(e)==Di(t)?"bottom"==e.circularLinkType?Ci(e,t):Mi(e,t):Di(t)-Di(e)}function Di(e){return e.target.column-e.source.column}function Ni(e,t){return Ri(e)==Ri(t)}function Ri(e){return e.y0-e.y1>0?"up":"down"}function Hi(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}),Ii(i.links.filter(function(e){return"top"==e.circularLinkType}),t,n),Ii(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,gi(e,t)&&fi(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?Ci:Mi);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?Li:ji),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 Ii(e,t,n){e.sort(Bi);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(gi(e,t)&&fi(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&&Wi(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 Wi(e,t){return e.source.column>=t.target.column&&t.source.column>=e.target.column}function Fi(e){return function(){return e}}function zi(e){return e.index}function $i(e){return e.nodes}function Gi(e){return e.links}function qi(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+=wi(e.source)*t,o+=t}}),n.sourceLinks.forEach(function(e){if(!e.circular){var t=e.value||1;r+=wi(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?Si(t,n)-Si(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==Si(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 Yi(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&&Si(r,n)>0){var c=a.mean(r.sourceLinks,ki),u=a.mean(r.targetLinks,xi),d=c&&u?(c+u)/2:c||u;if(d){var h=(d-wi(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,ki),f=a.mean(r.targetLinks,xi),p=((g&&f?(g+f)/2:g||f)-wi(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||Ti),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 Xi(e){e.nodes.forEach(function(e){e.sourceLinks.sort(_i),e.targetLinks.sort(Pi)}),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 Vi(){var e=0,t=0,n=1,o=1,r=24,i=8,s=null,l=zi,c=Ei,u=void 0,d=32,h=2,g=$i,f=Gi;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=ui(n,o)),"object"!=typeof r&&(r=e.target=ui(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){bi(e,t)!=bi(r.source,t)&&bi(e,t)!=bi(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),gi(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,Ai),a.sum(e.targetLinks,Ai)),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),qi(g,u,l),Yi(g,u,l,f,f,d),Xi(g),Hi(g,l,h,10,8),qi(g,u,l),Yi(g,u,l,f,f,d),Xi(g),Hi(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 bi(n.source,t)==bi(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(!Ni(e,t))return e.y1-t.y1;if(e.target.column>t.target.column){var n=yi(t,e);return e.y1-n}if(t.target.column>e.target.column)return yi(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 bi(n.target,t)==bi(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(!Ni(e,t))return e.y0-t.y0;if(e.source.column>t.source.column){var n=mi(t,e);return e.y0-n}if(t.source.column>e.source.column)return mi(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),Hi(g,l,h,10,8)}(p),p}return p.update=function(e){return Xi(e),Hi(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:Fi(e),p):g},p.links=function(e){return arguments.length?(f="function"==typeof e?e:Fi(e),p):f},p.nodeId=function(e){return arguments.length?(l="function"==typeof e?e:Fi(e),p):l},p.nodeAlign=function(e){return arguments.length?(c="function"==typeof e?e:Fi(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 Ui=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 Ki(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 Qi=new Set,Zi=new WeakMap;function Ji(e,t){if("production"===process.env.NODE_ENV)return e;if(!e||!e.data||"object"!=typeof e.data)return e;let n=Zi.get(e);if(n){const e=n.get(t);if(e)return e}else n=new Map,Zi.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}`;Qi.has(e)||(Qi.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 ea={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(Oi))-1:0},justify:Ei},ta={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=Vi().extent(v).links(m).nodes(y).nodeAlign(ea[h]||Ei).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(Ji(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(Ji(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?Ki(e):Ui(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}}},na={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=oa(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=ra(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=ra(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=g?40:f,y=ia(n.nodeSize,n.nodeSizeRange,e),m=e=>y(e),v=d.forceLink().strength(e=>Math.min(2.5,e.weight?e.weight*a:a)).id(e=>e.id),b=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(b.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}));b.force("link",v),b.force("link").links(e)}g?b.alpha(.3):.1>b.alpha()&&b.alpha(1),b.stop();for(let e=0;p>e;++e)b.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 x=new Map;for(const t of e)x.set(t.id,t);for(const e of t){if("string"==typeof e.source){const t=x.get(e.source);t&&(e.source=t)}if("string"==typeof e.target){const t=x.get(e.target);t&&(e.target=t)}}},buildScene(e,t,n,o){var r,a,s;const l=n.nodeStyle,c=n.edgeStyle,u=ia(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(Ji(t,"nodeSize")),n=l?l(Ji(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(Ji(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(Ji(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 oa(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 ra(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 ia(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 aa=i.schemeCategory10,sa={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:aa,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(Ji(n,"nodeStyle")).fill||m.get(n.id)||y[t%y.length]:m.get(n.id)||y[t%y.length];const a=g?g(Ji(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=la(n,u,d);let r="#999";if(f)r=f(Ji(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(Ji(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 la(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 ca=["#e8d5b7","#b8d4e3","#d4e3b8","#e3c4d4","#d4d4e3","#e3d4b8","#b8e3d4","#e3b8b8"];function ua(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 ha(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 ga(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||(e=>{var t;return null!==(t=e.value)&&void 0!==t?t:0}),u=s.hierarchy(i,l);u.sum(c),u.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[d,h]=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)}(u,n,d,h);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)}(u,n,d,h);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)}(u,n,d,h);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)}(u,n,d,h);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)}(u,n,d,h)}const g=u.descendants();e.length=0,t.length=0;const f=new Map;for(let t=0;g.length>t;t++){const o=g[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?pa(i,o,n):"treemap"===a||"partition"===a?ya(i,o):"circlepack"===a&&ma(i,o),i.__hierarchyNode=o,e.push(i),f.set(o,i)}if("tree"===a||"cluster"===a)for(const e of g)if(e.parent){const n=f.get(e.parent),o=f.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(Ji(t,"nodeStyle"));let s=i.fill||"#4d430c";n.colorByDepth&&void 0!==t.depth&&(s=ca[t.depth%ca.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=ga(o,r,a,s,f),d=i(Ji(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=ha(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(Ji(n,"nodeStyle"));let l=s.fill||"#4d430c";t.colorByDepth&&void 0!==n.depth&&(l=ca[n.depth%ca.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=ha(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(Ji(l,"nodeStyle")).fill||"#4d430c";t.colorByDepth&&void 0!==l.depth&&(h=ca[l.depth%ca.length]);const g=ua(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(Ji(n,"nodeStyle"));let l=s.fill||"#4d430c";t.colorByDepth&&void 0!==n.depth&&(l=ca[n.depth%ca.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=ha(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(Ji(r,"nodeStyle")).fill||"#4d430c";if(t.colorByDepth&&void 0!==r.depth&&(c=ca[r.depth%ca.length]),a){const t=ua(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 pa(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 ya(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 ma(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 va(e){const t=e;return t.__orbitState||(t.__orbitState={metaMap:new Map,startTime:"undefined"!=typeof performance?performance.now():Date.now()}),t.__orbitState}const ba={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=va(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),C=M(w),j=f(O);for(let t=0;w.length>t;t++){const s=(C[t].startAngle+C[t].endAngle)/2,l=w[t],u=m(c(l)),d=i+E*Math.sin(s),g=a+E*Math.cos(s)*j;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:j}),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=va(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(Ji(t,"nodeSize")),n=c?c(Ji(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(Ji(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=va(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:ta,force:na,chord:sa,tree:fa,cluster:fa,treemap:fa,circlepack:fa,partition:fa,orbit:ba};function ka(e){return xa[e]}class wa{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.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({},ii),e.tensionConfig),"sankey"===e.chartType&&e.showParticles&&(this.particlePool=new si(2e3))}updateConfig(e){const t=this.config,n=e;t.__orbitState&&(n.__orbitState=t.__orbitState),t.__hierarchyRoot&&(n.__hierarchyRoot=t.__hierarchyRoot),this.config=e,this.tensionConfig=Object.assign(Object.assign({},ii),e.tensionConfig),"sankey"===e.chartType&&e.showParticles&&!this.particlePool&&(this.particlePool=new si(2e3))}ingestHierarchy(e,t){this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null,this.config.__hierarchyRoot=e,this.runLayout(t)}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.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({},Aa(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({},Aa(o)),{data:n})),this.nodes.has(r)||this.nodes.set(r,Object.assign(Object.assign({},Aa(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,Aa(t)),this.nodeTimestamps.set(t,a),this.tension+=this.tensionConfig.newNode,i=!0),this.nodes.has(n)||(this.nodes.set(n,Aa(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;const s=ka(this.config.chartType);if(!s)return;let l=Array.from(this.nodes.values()),c=Array.from(this.edges.values());if(0===l.length&&!s.hierarchical)return;if(this.prepareForRelayout(),s.supportsStreaming&&!s.hierarchical){const e=new Map;for(const s of l)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(s.computeLayout(l,c,this.config,e),delete this.config.__previousPositions,s.hierarchical&&l.length>0){this.nodes.clear(),this.edges.clear(),this._decaySortedNodes=null;for(const e of l)this.nodes.set(e.id,e);for(let e=0;c.length>e;e++){const t=c[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)}}this.finalizeLayout();const u=new Map;for(const e of this.nodes.values())0===e.x&&0===e.y||u.set(e.id,{x:e.x,y:e.y});this._lastPositionSnapshot=u,this.saveTargetPositions(),l.some(e=>void 0!==e._prevX0&&(0!==e._prevX0||0!==e._prevX1||0!==e._prevY0||0!==e._prevY1))&&this.tensionConfig.transitionDuration>0&&(this.restorePreviousPositions(),this.transition={startTime:performance.now(),duration:this.tensionConfig.transitionDuration});const d=new Set(this.nodes.keys()),h=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 d)this.previousNodeIds.has(e)||this.addedNodes.add(e);for(const e of this.previousNodeIds)d.has(e)||this.removedNodes.add(e);for(const e of h)this.previousEdgeKeys.has(e)||this.addedEdges.add(e);for(const e of this.previousEdgeKeys)h.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=d,this.previousEdgeKeys=h,this.layoutVersion++}buildScene(e){const t=ka(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=ka(this.config.chartType);return!!(null==e?void 0:e.supportsAnimation)&&!1!==this.config.orbitAnimated}tickAnimation(e,t){const n=ka(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=I(e,this.transition),n=H(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.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(){for(const e of this.nodes.values())e._prevX0=e.x0,e._prevX1=e.x1,e._prevY0=e.y0,e._prevY1=e.y1;for(const e of this.edges.values())e._prevY0=e.y0,e._prevY1=e.y1,e._prevSankeyWidth=e.sankeyWidth}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);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,n,o,r;const i=this.config.decay;if(!i)return;const a=null!==(e=i.minOpacity)&&void 0!==e?e:.1,s=this.nodeTimestamps.size;if(1>=s)return;this._decaySortedNodes||(this._decaySortedNodes=Array.from(this.nodeTimestamps.entries()).sort((e,t)=>e[1]-t[1]));const l=this._decaySortedNodes,c=new Map;for(let e=0;l.length>e;e++)c.set(l[e][0],e);for(const e of this.sceneNodes){const l=e.id;if(!l)continue;const u=c.get(l);if(void 0===u)continue;const d=s-1-u;let h;switch(i.type){case"linear":h=a+(1-d/(s-1))*(1-a);break;case"exponential":{const e=null!==(t=i.halfLife)&&void 0!==t?t:s/2;h=a+Math.pow(.5,d/e)*(1-a);break}case"step":h=(null!==(n=i.stepThreshold)&&void 0!==n?n:.5*s)>d?1:a;break;default:h=1}const g=null!==(r=null===(o=e.style)||void 0===o?void 0:o.opacity)&&void 0!==r?r:1;e.style=Object.assign(Object.assign({},e.style),{opacity:g*h})}}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())}}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.lastIngestTime=0,this._lastPositionSnapshot=null,this.nodeTimestamps.clear(),this.edgeTimestamps.clear(),this.particlePool&&this.particlePool.clear()}}function Aa(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 Sa(e,t,n,o,r=30){let i=null,a=r,s=1/0;for(const t of e){const e=Oa(t,n,o);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=ja(e,n,o);t&&a>t.distance&&(i=t,a=t.distance)}return i}function Oa(e,t,n){switch(e.type){case"circle":return function(e,t,n){const o=t-e.cx,r=n-e.cy,i=Math.sqrt(o*o+r*r);return i>Math.max(e.r+5,12)?null:{type:"node",datum:e.datum,x:e.cx,y:e.cy,distance:i}}(e,t,n);case"rect":return function(e,t,n){const o=Z(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=J(Math.atan2(r,o)),s=J(e.startAngle),l=J(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 Ea=null,Ma=null;function Ca(){return Ma||(Ea=document.createElement("canvas"),Ea.width=1,Ea.height=1,Ma=Ea.getContext("2d")),Ma}function ja(e,t,n){switch(e.type){case"bezier":return function(e,t,n){var o,r;if(!e.pathD)return null;try{const i=new Path2D(e.pathD),a=Ca();if(!a)return null;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;try{const o=new Path2D(e.pathD),r=Ca();if(!r)return null;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 La(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,ke({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 Pa(e,t){var n,o,r,i,a,s;if(!t.pathD)return;e.save();const l=new Path2D(t.pathD);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 _a(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 Ta(e,t){var n,o,r,i;if(!t.pathD)return;e.save();const a=new Path2D(t.pathD);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 Ba(e,t){var n,o;if(!t.pathD)return;e.save();const r=new Path2D(t.pathD);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()}La.displayName="NetworkSVGOverlay";const Da={top:20,right:80,bottom:20,left:80},Na={top:40,right:40,bottom:40,left:40},Ra=new Set(["chord","force","circlepack","orbit"]),Ha=[800,600],Ia={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 Wa({data:e}){var t,n,o,r,i,a;if("edge"===e.type){const t=e.data;return p.createElement("div",{className:"semiotic-tooltip",style:Ia},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:Ia},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:Ia},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 Fa=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",childrenAccessor:C,hierarchySum:L,orientation:P="horizontal",nodeAlign:_="justify",nodePaddingRatio:T=.05,nodeWidth:B=15,iterations:D=300,forceStrength:N=.1,padAngle:R=.01,groupWidth:H=20,sortGroups:I,edgeSort:W,treeOrientation:F="vertical",edgeType:z="curve",padding:$,paddingTop:G,tensionConfig:q,showParticles:Y=!1,particleStyle:X,nodeStyle:V,edgeStyle:U,colorBy:K,colorScheme:Q="category10",edgeColorBy:Z="source",edgeOpacity:J=.5,colorByDepth:ee=!1,nodeSize:te=8,nodeSizeRange:ne=[5,20],nodeLabel:oe,showLabels:re=!0,labelMode:ie,size:ae=Ha,responsiveWidth:se,responsiveHeight:de,margin:he,className:pe,background:ye,enableHover:me=!0,tooltipContent:ve,customHoverBehavior:be,customClickBehavior:xe,onObservation:ke,chartId:we,onTopologyChange:Ae,annotations:Se,svgAnnotationRules:Oe,legend:Ee,legendPosition:Me,legendHoverBehavior:Ce,legendClickBehavior:je,legendHighlightedCategory:Le,legendIsolatedCategories:Pe,title:_e,foregroundGraphics:Te,backgroundGraphics:Be,decay:De,pulse:Ne,staleness:Re,thresholds:He,accessibleTable:Ie=!0,description:We,summary:Fe,orbitMode:ze,orbitSize:$e,orbitSpeed:Ge,orbitRevolution:qe,orbitRevolutionStyle:Ye,orbitEccentricity:Xe,orbitShowRings:Ve,orbitAnimated:Qe}=t,Ze=xt(),Je=e.useRef(Ze);Je.current=Ze;const et="semiotic-table-"+p.useId(),tt=Ra.has(b)?Na:Da,[ot,rt]=ge(ae,se,de),it=Object.assign(Object.assign({},tt),he),at=rt[0]-it.left-it.right,st=rt[1]-it.top-it.bottom,lt="function"==typeof Te?Te({size:rt,margin:it}):Te,ct=e.useMemo(()=>Object.assign(Object.assign({},ii),q),[q]),ut=e.useMemo(()=>Object.assign(Object.assign({},ai),X),[X]),dt=e.useMemo(()=>({chartType:b,nodeIDAccessor:S,sourceAccessor:O,targetAccessor:E,valueAccessor:M,childrenAccessor:C,hierarchySum:L,orientation:P,nodeAlign:_,nodePaddingRatio:T,nodeWidth:B,iterations:D,forceStrength:N,padAngle:R,groupWidth:H,sortGroups:I,edgeSort:W,treeOrientation:F,edgeType:z,padding:$,paddingTop:G,tensionConfig:ct,showParticles:Y,particleStyle:ut,nodeStyle:V,edgeStyle:U,nodeLabel:oe,showLabels:re,labelMode:ie,colorBy:K,colorScheme:Q,edgeColorBy:Z,edgeOpacity:J,colorByDepth:ee,nodeSize:te,nodeSizeRange:ne,decay:De,pulse:Ne,staleness:Re,thresholds:He,orbitMode:ze,orbitSize:$e,orbitSpeed:Ge,orbitRevolution:qe,orbitRevolutionStyle:Ye,orbitEccentricity:Xe,orbitShowRings:Ve,orbitAnimated:Qe}),[b,S,O,E,M,C,L,P,_,T,B,D,N,R,H,I,W,F,z,$,G,ct,Y,ut,V,U,oe,re,ie,K,Q,Z,J,ee,te,ne,De,Ne,Re,He,ze,$e,Ge,qe,Ye,Xe,Ve,Qe]),yt=e.useRef(null),bt=e.useRef(0),kt=e.useRef(0),wt=e.useRef(!0),At=Mt(e=>e.theme),St=e.useRef(()=>{}),Ot=e.useRef(null);Ot.current||(Ot.current=new wa(dt));const[Et,Lt]=e.useState(null),[Pt,_t]=e.useState(0),[Tt,Nt]=e.useState(0),[Rt,Ht]=e.useState(!1),It=e.useRef(null),Wt=e.useRef(new Map),Ft=e.useRef(0),zt=e.useCallback(e=>{if("function"==typeof K)return K(e)+"";if("string"==typeof K&&e.data){const t=e.data[K];if(void 0!==t){if(!Wt.current.has(t+"")){const e=Array.isArray(Q)?Q:j;Wt.current.set(t+"",e[Ft.current++%e.length])}return Wt.current.get(t+"")}}if(Wt.current.has(e.id))return Wt.current.get(e.id);const t=Array.isArray(Q)?Q:j,n=K?t[Ft.current++%t.length]:t[0];return Wt.current.set(e.id,n),n},[K,Q]),$t=e.useCallback(e=>{if("function"==typeof Z)return Z(e);const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;return"target"===Z&&n?zt(n):t?zt(t):"#999"},[Z,zt]),Gt=e.useCallback(e=>{if(!(null==X?void 0:X.colorBy))return $t(e);const t="object"==typeof e.source?e.source:null,n="object"==typeof e.target?e.target:null;return"target"===ut.colorBy&&n?zt(n):t?zt(t):"#999"},[null==X?void 0:X.colorBy,ut.colorBy,zt,$t]),qt="sankey"===b&&Y||!!Ne||null!==(r=null===(o=Ot.current)||void 0===o?void 0:o.isAnimating)&&void 0!==r&&r,Yt=e.useCallback(()=>{bt.current&&!qt||bt.current||(bt.current=requestAnimationFrame(()=>St.current()))},[qt]);e.useEffect(()=>{var e;null===(e=Ot.current)||void 0===e||e.updateConfig(dt),wt.current=!0,Yt()},[dt,Yt]),e.useEffect(()=>{wt.current=!0,Yt()},[At,Yt]);const Xt=e.useCallback(()=>{var e;const t=Ot.current;if(!t)return;t.runLayout([at,st]),t.buildScene([at,st]),wt.current=!0;for(const n of t.sceneNodes)n.id&&"string"==typeof(null===(e=n.style)||void 0===e?void 0:e.fill)&&Wt.current.set(n.id,n.style.fill);const n=Array.isArray(Q)?Q:j,o=Array.from(t.nodes.values());for(let e=0;o.length>e;e++){const t=o[e];Wt.current.has(t.id)||Wt.current.set(t.id,n[e%n.length])}if(Ft.current=o.length,_t(t.layoutVersion),Ae){const{nodes:e,edges:n}=t.getLayoutData();Ae(e,n)}},[at,st,Ae,Q]),Vt=e.useCallback(e=>{const t=Ot.current;t&&(t.ingestEdge(e)&&Xt(),Yt())},[Xt,Yt]),Ut=e.useCallback(e=>{const t=Ot.current;if(!t)return;let n=!1;for(const o of e)t.ingestEdge(o)&&(n=!0);n&&Xt(),Yt()},[Xt,Yt]),Kt=e.useCallback(()=>{var e;null===(e=Ot.current)||void 0===e||e.clear(),Wt.current.clear(),Ft.current=0,_t(0),Lt(null),It.current=null,wt.current=!0,Yt()},[Yt]),Qt=e.useCallback(()=>{const e=Ot.current;e&&(e.tension+=999,Xt(),Yt())},[Xt,Yt]);e.useImperativeHandle(n,()=>({push:Vt,pushMany:Ut,clear:Kt,getTopology:()=>{var e,t;return null!==(t=null===(e=Ot.current)||void 0===e?void 0:e.getLayoutData())&&void 0!==t?t:{nodes:[],edges:[]}},getTopologyDiff:()=>{const e=Ot.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:Qt,getTension:()=>{var e,t;return null!==(t=null===(e=Ot.current)||void 0===e?void 0:e.tension)&&void 0!==t?t:0}}),[Vt,Ut,Kt,Qt]);const Zt=["tree","cluster","treemap","circlepack","partition","orbit"].includes(b),Jt=Zt?w||(Array.isArray(k)?void 0:k):void 0;e.useEffect(()=>{var e;const t=Ot.current;if(t)if(Zt&&Jt)t.ingestHierarchy(Jt,[at,st]),t.buildScene([at,st]),wt.current=!0,Yt();else{const n=x||[],o=Array.isArray(k)?k:[];if(0===n.length&&0===o.length)return;t.ingestBounded(n,o,[at,st]),t.buildScene([at,st]);for(const n of t.sceneNodes)n.id&&(null===(e=n.style)||void 0===e?void 0:e.fill)&&Wt.current.set(n.id,n.style.fill+"");const r=Array.isArray(Q)?Q:j,i=Array.from(t.nodes.values());for(let e=0;i.length>e;e++){const t=i[e];Wt.current.has(t.id)||Wt.current.set(t.id,r[e%r.length])}Ft.current=i.length,wt.current=!0,Yt()}},[x,k,w,Jt,Zt,at,st,dt,Yt,Q]),e.useEffect(()=>{A&&A.length>0&&Ut(A)},[]);const en=e.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]),tn=e.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]),nn=e.useRef(()=>{}),on=e.useRef(()=>{});nn.current=e=>{if(!me)return;const t=yt.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-it.left,r=e.clientY-n.top-it.top;if(0>o||o>at||0>r||r>st)return void(It.current&&(It.current=null,Lt(null),en&&(en(null),wt.current=!0),Yt()));const i=Ot.current;if(!i)return;const a=Sa(i.sceneNodes,i.sceneEdges,o,r);if(!a)return void(It.current&&(It.current=null,Lt(null),en&&(en(null),wt.current=!0),Yt()));const s=a.datum||{},l=Object.assign(Object.assign({},"object"!=typeof s||null===s||Array.isArray(s)?{}:s),{type:a.type,data:s,x:a.x,y:a.y});It.current=l,Lt(l),en&&(en(l),wt.current=!0),Yt()},on.current=()=>{It.current&&(It.current=null,Lt(null),en&&(en(null),wt.current=!0),Yt())};const rn=e.useRef(()=>{});rn.current=e=>{if(!xe&&!ke)return;const t=yt.current;if(!t)return;const n=t.getBoundingClientRect(),o=e.clientX-n.left-it.left,r=e.clientY-n.top-it.top;if(0>o||o>at||0>r||r>st)return;const i=Ot.current;if(!i)return;const a=Sa(i.sceneNodes,i.sceneEdges,o,r);if(a){const e=a.datum||{};tn(Object.assign(Object.assign({},"object"!=typeof e||null===e||Array.isArray(e)?{}:e),{type:a.type,data:e,x:a.x,y:a.y}))}else tn(null)},e.useCallback(e=>nn.current(e),[]);const an=e.useCallback(()=>on.current(),[]),sn=e.useCallback(e=>rn.current(e),[]),ln=e.useRef(-1),cn=e.useRef(null),un=e.useRef(-1),dn=e.useCallback(e=>{var t;const n=Ot.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=le(o),i=ln.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(),ln.current=0,un.current=-1;const t=r.flat[0];cn.current={shape:t.shape,w:t.w,h:t.h};const n=t.datum||{},o=Object.assign(Object.assign({},"object"!=typeof n||null===n||Array.isArray(n)?{}:n),{type:"node",data:n,x:t.x,y:t.y});return It.current=o,Lt(o),en&&(en(o),wt.current=!0),void Yt()}const a=ce(r,i),s=function(e,t,n,o,r){var i,a,s;const l=n.flat[t.flatIndex];if(!l)return ue(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=ue(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:[],un);if(null===s)return;if(e.preventDefault(),0>s)return ln.current=-1,cn.current=null,un.current=-1,It.current=null,Lt(null),en&&(en(null),wt.current=!0),void Yt();ln.current=s;const l=r.flat[s];cn.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),{type:"node",data:c,x:l.x,y:l.y});It.current=u,Lt(u),en&&(en(u),wt.current=!0),Yt()},[en,Yt]),hn=e.useCallback(e=>{ln.current=-1,cn.current=null,nn.current(e)},[]);St.current=()=>{var e,t,n,o,r,i,a;bt.current=0;const s=yt.current;if(!s)return;const l=s.getContext("2d");if(!l)return;const c=Ot.current;if(!c)return;const u=performance.now(),d=kt.current?Math.min((u-kt.current)/1e3,.1):.016;kt.current=u;const h=c.advanceTransition(Je.current?u+1e6:u),g=!Je.current&&h,f=!Je.current&&c.tickAnimation([at,st],d);(h||wt.current||f)&&c.buildScene([at,st]);const p=jt();if(!Ct(s,rt,it,p))return;l.clearRect(-it.left,-it.top,rt[0],rt[1]),ye&&(l.fillStyle=ye,l.fillRect(0,0,at,st)),De&&c.applyDecay(),Ne&&c.applyPulse(u),He&&c.applyThresholds(u),c.applyTopologyDiff(u);const y=null!==(e=null==Re?void 0:Re.threshold)&&void 0!==e?e:5e3,m=Re&&c.lastIngestTime>0&&u-c.lastIngestTime>y;if(m&&(l.globalAlpha=null!==(t=null==Re?void 0:Re.dimOpacity)&&void 0!==t?t:.5),function(e,t){for(const n of t)switch(n.type){case"bezier":Pa(e,n);break;case"line":_a(e,n);break;case"ribbon":Ta(e,n);break;case"curved":Ba(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)),Bt(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()),Dt(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),Y&&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:ai.spawnRate,s=null!==(i=o.maxPerEdge)&&void 0!==i?i:ai.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,ut);const t=.5*(null!==(n=ut.speedMultiplier)&&void 0!==n?n:1);let o;if(ut.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:ai.radius,l=null!==(a=o.opacity)&&void 0!==a?a:ai.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,ut,Gt)}}m&&(l.globalAlpha=1);const v=wt.current;if(wt.current=!1,v||g||f){const e=yt.current;e&&e.setAttribute("aria-label",nt(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)&&Nt(e=>e+1),(qt||g||f||c.hasActivePulses||c.hasActiveThresholds||c.hasActiveTopologyDiff)&&(bt.current=requestAnimationFrame(()=>St.current()))},e.useEffect(()=>(Yt(),()=>{bt.current&&(cancelAnimationFrame(bt.current),bt.current=0)}),[Yt]),e.useEffect(()=>{wt.current=!0,Yt()},[b,at,st,ye,Yt]),fe(Re,Ot,wt,Yt,Rt,Ht);const gn=me&&Et?p.createElement(vt,{x:Et.x,y:Et.y,containerWidth:at,containerHeight:st,margin:it,className:"stream-network-tooltip",zIndex:2},ve?ve(Et):p.createElement(Wa,{data:Et})):null;if(Ke){const e=Ot.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,[at,st]),e.buildScene([at,st]);else{const t=x||[],n=Array.isArray(k)?k:[];(t.length>0||n.length>0)&&(e.ingestBounded(t,n,[at,st]),e.buildScene([at,st]))}}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"+(pe?" "+pe:""),role:"img","aria-label":We||("string"==typeof _e?_e:"Network chart"),style:{position:"relative",width:rt[0],height:rt[1]}},p.createElement(gt,{summary:Fe}),p.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:rt[0],height:rt[1],style:{position:"absolute",left:0,top:0}},Be&&p.createElement("g",{transform:`translate(${it.left},${it.top})`},Be),p.createElement("g",{transform:`translate(${it.left},${it.top})`},ye&&p.createElement("rect",{x:0,y:0,width:at,height:st,fill:ye}),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:Ue(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:Ue(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:Ue(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:Ue(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:Ue(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).endAngle(n.endAngle)({})||"";return p.createElement("path",{key:"net-arc-"+t,d:o,transform:`translate(${n.cx},${n.cy})`,fill:Ue(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(La,{width:at,height:st,totalWidth:rt[0],totalHeight:rt[1],margin:it,labels:o,sceneNodes:t,title:_e,legend:Ee,legendPosition:Me,legendHoverBehavior:Ce,legendClickBehavior:je,legendHighlightedCategory:Le,legendIsolatedCategories:Pe,foregroundGraphics:lt,annotations:Se,svgAnnotationRules:Oe,annotationFrame:0}))}const fn=Ot.current;return p.createElement("div",{ref:ot,className:"stream-network-frame"+(pe?" "+pe:""),role:"group","aria-label":We||("string"==typeof _e?_e:"Network chart"),tabIndex:0,style:{position:"relative",width:se?"100%":rt[0],height:de?"100%":rt[1],overflow:"visible"},onKeyDown:dn},Ie&&p.createElement(ft,{tableId:et}),Ie&&p.createElement(ht,{nodes:null!==(c=null==fn?void 0:fn.sceneNodes)&&void 0!==c?c:[],edges:null!==(u=null==fn?void 0:fn.sceneEdges)&&void 0!==u?u:[],chartType:"Network chart",tableId:et,chartTitle:"string"==typeof _e?_e:void 0}),p.createElement(gt,{summary:Fe}),p.createElement("div",{role:"img","aria-label":We||("string"==typeof _e?_e:"Network chart"),style:{position:"relative",width:"100%",height:"100%"},onMouseMove:me?hn:void 0,onMouseLeave:me?an:void 0,onClick:xe||ke?sn:void 0},Be&&p.createElement("svg",{overflow:"visible",style:{position:"absolute",top:0,left:0,width:rt[0],height:rt[1],pointerEvents:"none",overflow:"visible"}},p.createElement("g",{transform:`translate(${it.left},${it.top})`},Be)),p.createElement("canvas",{ref:yt,"aria-label":nt(null!==(h=null===(d=null==fn?void 0:fn.sceneNodes)||void 0===d?void 0:d.length)&&void 0!==h?h:0,null!==(f=null===(g=null==fn?void 0:fn.sceneEdges)||void 0===g?void 0:g.length)&&void 0!==f?f:0,"Network chart"),style:{position:"absolute",top:0,left:0}}),p.createElement(pt,{hoverPoint:Et}),p.createElement(La,{width:at,height:st,totalWidth:rt[0],totalHeight:rt[1],margin:it,labels:(null==fn?void 0:fn.labels)||[],sceneNodes:null==fn?void 0:fn.sceneNodes,title:_e,legend:Ee,legendPosition:Me,legendHoverBehavior:Ce,legendClickBehavior:je,legendHighlightedCategory:Le,legendIsolatedCategories:Pe,foregroundGraphics:lt,annotations:Se,svgAnnotationRules:Oe,annotationFrame:Tt}),p.createElement(mt,{active:ln.current>=0,hoverPoint:Et,margin:it,size:rt,shape:null===(y=cn.current)||void 0===y?void 0:y.shape,width:null===(m=cn.current)||void 0===m?void 0:m.w,height:null===(v=cn.current)||void 0===v?void 0:v.h}),gn,(null==Re?void 0:Re.showBadge)&&p.createElement("div",{className:"stream-staleness-badge",style:Object.assign(Object.assign({position:"absolute"},"top-left"===Re.badgePosition?{top:4,left:4}:"bottom-left"===Re.badgePosition?{bottom:4,left:4}:"bottom-right"===Re.badgePosition?{bottom:4,right:4}:{top:4,right:4}),{background:Rt?"#dc3545":"#28a745",color:"white",fontSize:10,fontWeight:700,padding:"2px 6px",borderRadius:3,letterSpacing:"0.05em",zIndex:3,pointerEvents:"none"})},Rt?"STALE":"LIVE")))});Fa.displayName="StreamNetworkFrame";const za=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)},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=In(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:L,selection:P,linkedHover:_,loading:B,emptyContent:D,legendInteraction:N,legendPosition:R}=t,H=i.width,I=i.height,W=i.enableHover,F=i.showLegend,z=null!==(o=i.showLabels)&&void 0!==o&&o,$=i.title,G=i.description,q=i.summary,Y=i.accessibleTable,X=Lo(B,H,I),V=X?null:jo(a,H,I,D),U=a||[],K=s||[],Q=_n(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=Rn(N,f,Z),ee=jn(),te=e.useMemo(()=>new Map,[]),ne=e.useMemo(()=>{if(Array.isArray(y))return y;if(ee&&ee.length>0)return ee;const e=C[y];return Array.isArray(e)?e:j},[y,ee]),oe=e.useMemo(()=>e=>{const t={};return t.fill=f?T(e.data||e,f,Q):Ln(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(z&&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}},[z,g]),{legend:ae,margin:se,legendPosition:le}=Nn({data:U,colorBy:f,colorScale:Q,showLegend:F,legendPosition:R,userMargin:l,defaults:i.marginDefaults}),{customHoverBehavior:ce,customClickBehavior:ue}=Bn({selection:P,linkedHover:_,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:E,onClick:M,chartType:"ForceDirectedGraph",chartId:L}),de=io({componentName:"ForceDirectedGraph",nodes:a,edges:s,nodesRequired:!0,edgesRequired:!0,accessors:{nodeIDAccessor:u}});return de?p.createElement(Qn,{componentName:"ForceDirectedGraph",message:de,width:H,height:I}):X||V||p.createElement(Eo,{componentName:"ForceDirectedGraph",width:H,height:I},p.createElement(Fa,Object.assign({ref:r,chartType:"force"},null!=a&&{nodes:U},null!=s&&{edges:K},{size:[H,I],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:z,enableHover:W,tooltipContent:!1===S?()=>null:qn(S)||void 0,customHoverBehavior:_||E||M?ce:void 0,customClickBehavior:E||M?ue:void 0,legend:ae,legendPosition:le},N&&"none"!==N&&{legendHoverBehavior:J.onLegendHover,legendClickBehavior:J.onLegendClick,legendHighlightedCategory:J.highlightedCategory,legendIsolatedCategories:J.isolatedCategories},{className:c,title:$,description:G,summary:q,accessibleTable:Y},O)))});function $a(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 Ga(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 qa(e){return"function"==typeof e?e:t=>t[e]||1}function Ya({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}}za.displayName="ForceDirectedGraph";const Xa=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)},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=In(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:L,linkedHover:P,loading:_,emptyContent:B,legendInteraction:D}=t,N=i.width,R=i.height,H=i.enableHover,I=null===(o=i.showLabels)||void 0===o||o,W=i.title,F=i.description,z=i.summary,$=i.accessibleTable,G=Lo(_,N,R),q=G?null:jo(s,N,R,B),Y=s||[],X=e.useMemo(()=>Ga(a,Y,u,d),[a,Y,u,d]),V=_n(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=Rn(D,f,U),Q=jn(),Z=e.useMemo(()=>new Map,[]),J=e.useMemo(()=>{if(Array.isArray(y))return y;if(Q&&Q.length>0)return Q;const e=C[y];return Array.isArray(e)?e:j},[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:C[y]||j,a=Array.isArray(i)?i:j,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 Ya({edgeColorBy:m,colorBy:f,colorScale:V,nodeStyleFn:te||(e=>({fill:Ln(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(!I)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}},[I,k,g]),re=Object.assign(Object.assign({},i.marginDefaults),l),{customHoverBehavior:ie,customClickBehavior:ae}=Bn({selection:L,linkedHover:P,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:O,onClick:E,chartType:"ChordDiagram",chartId:M}),se=io({componentName:"ChordDiagram",edges:s,edgesRequired:!0});return se?p.createElement(Qn,{componentName:"ChordDiagram",message:se,width:N,height:R}):G||q||p.createElement(Eo,{componentName:"ChordDiagram",width:N,height:R},p.createElement(Fa,Object.assign({ref:r,chartType:"chord"},X.length>0&&{nodes:X},null!=s&&{edges:Y},{size:[N,R],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:I,enableHover:H,tooltipContent:!1===A?()=>null:qn(A)||void 0,customHoverBehavior:P||O||E?ie:void 0,customClickBehavior:O||E?ae:void 0},D&&"none"!==D&&{legendHoverBehavior:K.onLegendHover,legendClickBehavior:K.onLegendClick,legendHighlightedCategory:K.highlightedCategory,legendIsolatedCategories:K.isolatedCategories},{className:c,title:W,description:F,summary:z,accessibleTable:$},S)))});Xa.displayName="ChordDiagram";const Va=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)},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=In(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:L,chartId:P,selection:_,linkedHover:B,loading:D,emptyContent:N,legendInteraction:R}=t,H=i.width,I=i.height,W=i.enableHover,F=null===(o=i.showLabels)||void 0===o||o,z=i.title,$=i.description,G=i.summary,q=i.accessibleTable,Y=Lo(D,H,I),X=Y?null:jo(s,H,I,N),V=s||[],U=e.useMemo(()=>Ga(a,V,u,d),[a,V,u,d]),K=_n(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=Rn(R,f,Q),J=jn(),ee=e.useMemo(()=>new Map,[]),te=e.useMemo(()=>{if(Array.isArray(y))return y;if(J&&J.length>0)return J;const e=C[y];return Array.isArray(e)?e:j},[y,J]),ne=e.useMemo(()=>e=>{const t={stroke:"black",strokeWidth:1};return t.fill=f?T(e.data||e,f,K):Ln(void 0,J,y,void 0,ee),t},[f,K,J,y,ee]),oe=e.useMemo(()=>Ya({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}=Bn({selection:_,linkedHover:B,fallbackFields:f?["string"==typeof f?f:""]:[],unwrapData:!0,onObservation:M,onClick:L,chartType:"SankeyDiagram",chartId:P}),le=io({componentName:"SankeyDiagram",edges:s,edgesRequired:!0});return le?p.createElement(Qn,{componentName:"SankeyDiagram",message:le,width:H,height:I}):Y||X||p.createElement(Eo,{componentName:"SankeyDiagram",width:H,height:I},p.createElement(Fa,Object.assign({ref:r,chartType:"sankey"},U.length>0&&{nodes:U},null!=s&&{edges:V},{size:[H,I],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:qn(O)||void 0,customHoverBehavior:B||M||L?ae:void 0,customClickBehavior:M||L?se:void 0},R&&"none"!==R&&{legendHoverBehavior:Z.onLegendHover,legendClickBehavior:Z.onLegendClick,legendHighlightedCategory:Z.highlightedCategory,legendIsolatedCategories:Z.isolatedCategories},{className:c,title:z,description:$,summary:G,accessibleTable:q},E)))});function Ua(t){var n;const o=In(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,L=o.width,_=o.height,B=o.enableHover,D=null===(n=o.showLabels)||void 0===n||n,N=o.title,R=o.description,H=o.summary,I=o.accessibleTable,W=Lo(E,L,_),F=e.useMemo(()=>$a(null!=r?r:null,c),[r,c]),z=_n(F,f?void 0:h,g),$=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=Rn(M,f?void 0:h,$),q=jn(),Y=e.useMemo(()=>new Map,[]),X=e.useMemo(()=>{if(Array.isArray(g))return g;if(q&&q.length>0)return q;const e=C[g];return Array.isArray(e)?e:j},[g,q]),V=e.useMemo(()=>e=>{const t={stroke:"black",strokeWidth:1};return t.fill=f?P[(e.depth||0)%P.length]:h?T(e.data||e,h,z):Ln(void 0,q,g,void 0,Y),t},[h,f,z,q,g,Y]),U=e.useMemo(()=>()=>({stroke:"#999",strokeWidth:1,fill:"none"}),[]),K=e.useMemo(()=>{if("treemap"===s||"circlepack"===s||"partition"===s)return qa(u)},[s,u]),Q=Object.assign(Object.assign({},o.marginDefaults),i),{customHoverBehavior:Z,customClickBehavior:J}=Bn({selection:S,linkedHover:O,fallbackFields:h?["string"==typeof h?h:""]:[],unwrapData:!0,onObservation:k,onClick:w,chartType:"TreeDiagram",chartId:A}),ee=ro({componentName:"TreeDiagram",data:r});return ee?p.createElement(Qn,{componentName:"TreeDiagram",message:ee,width:L,height:_}):W||p.createElement(Eo,{componentName:"TreeDiagram",width:L,height:_},p.createElement(Fa,Object.assign({chartType:s},null!=r&&{data:r},{size:[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:D?m||d:void 0,showLabels:D,enableHover:B,tooltipContent:!1===b?()=>null:qn(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:N,description:R,summary:H,accessibleTable:I},x)))}function Ka(t){var n;const o=In(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,L=o.height,_=o.enableHover,B=null===(n=o.showLabels)||void 0===n||n,D=o.title,N=o.description,R=o.summary,H=o.accessibleTable,I=Lo(O,M,L),{activeSelectionHook:W,customHoverBehavior:F,customClickBehavior:z}=Bn({selection:x,linkedHover:k,fallbackFields:u?["string"==typeof u?u:""]:[],onObservation:w,onClick:A,chartType:"Treemap",chartId:S}),$=e.useCallback(e=>{if(!e)return F(null);const t=e.data||e;F({data:(null==t?void 0:t.data)||t})},[F]),G=e.useMemo(()=>$a(null!=r?r:null,s),[r,s]),q=_n(G,h?void 0:u,d),Y=e.useMemo(()=>{if(!u||h)return[];const e=new Set;for(const t of G){const n="function"==typeof u?u(t):t[u];null!=n&&e.add(n+"")}return Array.from(e)},[G,u,h]),X=Rn(E,h?void 0:u,Y),V=jn(),U=e.useMemo(()=>new Map,[]),K=e.useMemo(()=>{if(Array.isArray(d))return d;if(V&&V.length>0)return V;const e=C[d];return Array.isArray(e)?e:j},[d,V]),Q=e.useMemo(()=>e=>{const t={stroke:"#fff",strokeWidth:1,strokeOpacity:.8};return t.fill=h?P[(e.depth||0)%P.length]:u?T(e.data||e,u,q):Ln(void 0,V,d,void 0,U),t},[u,h,q,V,d,U]),Z=e.useMemo(()=>W?e=>{var t;const n=Object.assign({},Q(e));if(W.isActive)if(W.predicate(e.data||e))(null==x?void 0:x.selectedStyle)&&Object.assign(n,x.selectedStyle);else{const e=null!==(t=null==x?void 0:x.unselectedOpacity)&&void 0!==t?t:.2;n.opacity=e,n.fillOpacity=e,n.strokeOpacity=e,(null==x?void 0:x.unselectedStyle)&&Object.assign(n,x.unselectedStyle)}return n}:Q,[Q,W,x]),J=e.useMemo(()=>qa(l),[l]),ee=void 0!==m?m:!B||"parent"!==g&&"all"!==g?void 0:18,te=Object.assign(Object.assign({},o.marginDefaults),i),ne=ro({componentName:"Treemap",data:r});return ne?p.createElement(Qn,{componentName:"Treemap",message:ne,width:M,height:L}):I||p.createElement(Eo,{componentName:"Treemap",width:M,height:L},p.createElement(Fa,Object.assign({chartType:"treemap"},null!=r&&{data:r},{size:[M,L],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:te,nodeIDAccessor:c,childrenAccessor:s,hierarchySum:J,padding:y,paddingTop:ee,nodeStyle:Z,colorBy:u,colorScheme:K,colorByDepth:h,nodeLabel:B?f||c:void 0,showLabels:B,labelMode:g,enableHover:_,tooltipContent:!1===v?()=>null:qn(v)||void 0},(k||w||A)&&{customHoverBehavior:$},(w||A)&&{customClickBehavior:z},E&&"none"!==E&&{legendHoverBehavior:X.onLegendHover,legendClickBehavior:X.onLegendClick,legendHighlightedCategory:X.highlightedCategory,legendIsolatedCategories:X.isolatedCategories},{className:a,title:D,description:N,summary:R,accessibleTable:H},b)))}function Qa(t){var n;const o=In(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,L=o.enableHover,_=null===(n=o.showLabels)||void 0===n||n,B=o.title,D=o.description,N=o.summary,R=o.accessibleTable,H=Lo(S,E,M),I=e.useMemo(()=>$a(null!=r?r:null,s),[r,s]),W=_n(I,h?void 0:u,d),F=e.useMemo(()=>{if(!u||h)return[];const e=new Set;for(const t of I){const n="function"==typeof u?u(t):t[u];null!=n&&e.add(n+"")}return Array.from(e)},[I,u,h]),z=Rn(O,h?void 0:u,F),$=jn(),G=e.useMemo(()=>new Map,[]),q=e.useMemo(()=>{if(Array.isArray(d))return d;if($&&$.length>0)return $;const e=C[d];return Array.isArray(e)?e:j},[d,$]),Y=e.useMemo(()=>e=>{const t={stroke:"currentColor",strokeWidth:1,strokeOpacity:.3,fillOpacity:f};return t.fill=h?P[(e.depth||0)%P.length]:u?T(e.data||e,u,W):Ln(void 0,$,d,void 0,G),t},[u,h,W,f,$,d,G]),X=e.useMemo(()=>qa(l),[l]),V=Object.assign(Object.assign({},o.marginDefaults),i),{customHoverBehavior:U,customClickBehavior:K}=Bn({selection:w,linkedHover:A,fallbackFields:u?["string"==typeof u?u:""]:[],unwrapData:!0,onObservation:b,onClick:x,chartType:"CirclePack",chartId:k}),Q=ro({componentName:"CirclePack",data:r});return Q?p.createElement(Qn,{componentName:"CirclePack",message:Q,width:E,height:M}):H||p.createElement(Eo,{componentName:"CirclePack",width:E,height:M},p.createElement(Fa,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:Y,colorBy:u,colorScheme:q,colorByDepth:h,nodeLabel:_?g||c:void 0,showLabels:_,enableHover:L,tooltipContent:!1===m?()=>null:qn(m)||void 0,customHoverBehavior:A||b||x?U:void 0,customClickBehavior:b||x?K:void 0},O&&"none"!==O&&{legendHoverBehavior:z.onLegendHover,legendClickBehavior:z.onLegendClick,legendHighlightedCategory:z.highlightedCategory,legendIsolatedCategories:z.isolatedCategories},{className:a,title:B,description:D,summary:N,accessibleTable:R},v)))}Va.displayName="SankeyDiagram",Ua.displayName="TreeDiagram",Ka.displayName="Treemap",Qa.displayName="CirclePack";const Za=P;function Ja(t){const n=In(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:L,selection:P,linkedHover:_,loading:B}=t,D=n.width,N=n.height,R=n.enableHover,H=n.title,I=n.description,W=n.summary,F=n.accessibleTable,z=Lo(B,D,N),$=_n(e.useMemo(()=>$a(o,a),[o,a]),u?void 0:l,c),G=jn(),q=e.useMemo(()=>new Map,[]),Y=e.useMemo(()=>{if(Array.isArray(c))return c;if(G&&G.length>0)return G;const e=C[c];return Array.isArray(e)?e:j},[c,G]),X=e.useMemo(()=>{if(Array.isArray(c))return c;const e=C[c];return Array.isArray(e)?e:j},[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]:Za[(e.depth||0)%Za.length]:l?T(e.data||e,l,$):Ln(void 0,G,c,void 0,q),n.opacity=o?1:.85,n},[l,u,$,X,G,c,q]),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}=Bn({selection:P,linkedHover:_,fallbackFields:l?["string"==typeof l?l:""]:[],unwrapData:!0,onObservation:E,onClick:M,chartType:"OrbitDiagram",chartId:L}),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=ro({componentName:"OrbitDiagram",data:o});return te?p.createElement(Qn,{componentName:"OrbitDiagram",message:te,width:D,height:N}):z||p.createElement(Eo,{componentName:"OrbitDiagram",width:D,height:N},p.createElement(Fa,Object.assign({chartType:"orbit"},null!=o&&{data:o},{size:[D,N],responsiveWidth:t.responsiveWidth,responsiveHeight:t.responsiveHeight,margin:K,nodeIDAccessor:s,childrenAccessor:a,nodeStyle:V,edgeStyle:U,colorBy:l,colorScheme:Y,colorByDepth:u,nodeSize:b,nodeLabel:x?s:void 0,showLabels:x,enableHover:!k&&R,tooltipContent:k?void 0:!1===w?()=>null:qn(w)||void 0,customHoverBehavior:_||E||M?J:void 0,customClickBehavior:E||M?ee:void 0,foregroundGraphics:A,annotations:S,className:i,title:H,description:I,summary:W,orbitMode:d,orbitSize:h,orbitSpeed:g,orbitRevolution:f,orbitRevolutionStyle:y,orbitEccentricity:m,orbitShowRings:v,orbitAnimated:k,accessibleTable:F},O)))}Ja.displayName="OrbitDiagram";const es=e.forwardRef(function(t,n){var o,r,i,a;const s=In(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:C,svgAnnotationRules:j,tickFormatTime:L,tickFormatValue:P,decay:_,pulse:T,staleness:B,transition:D,linkedHover:N,selection:R,onObservation:H,chartId:I,loading:W,emptyContent:F,emphasis:z,legendPosition:$}=t,G=s.showAxes,q=s.enableHover,Y=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=O?O:E,U=e.useRef(null),{customHoverBehavior:K}=Bn({selection:R,linkedHover:N,unwrapData:!0,onObservation:H,chartType:"RealtimeLineChart",chartId:I}),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)},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:[]}}));const Z=Lo(W,X[0],X[1]),J=Z?null:jo(f,X[0],X[1],F),ee={stroke:k,strokeWidth:w,strokeDasharray:A};return Z||J||p.createElement(Jt,{ref:U,chartType:"line",runtimeMode:"streaming",size:X,margin:Y,className:z?`${u||""} semiotic-emphasis-${z}`.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:q,tooltipContent:V,customHoverBehavior:Q,annotations:C,svgAnnotationRules:j,tickFormatTime:L,tickFormatValue:P,decay:_,pulse:T,staleness:B,transition:D,legendPosition:$})});es.displayName="RealtimeLineChart";const ts=e.forwardRef(function(t,n){var o,r,i,a;const s=In(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:C,tooltipContent:j,tooltip:L,onHover:P,annotations:_,svgAnnotationRules:T,tickFormatTime:B,tickFormatValue:D,linkedHover:N,selection:R,decay:H,pulse:I,staleness:W,transition:F,onObservation:z,chartId:$,loading:G,emptyContent:q,emphasis:Y,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!=j?j:L,ne=e.useRef(null),{customHoverBehavior:oe}=Bn({selection:R,linkedHover:N,unwrapData:!0,onObservation:z,chartType:"RealtimeTemporalHistogram",chartId:$}),re=e.useCallback(e=>{P&&P(e),oe(e)},[P,oe]),ie=!0===V?{dimension:"x",snap:"bin"}:"x"===V?{dimension:"x"}:"object"==typeof V?V:void 0,ae=xn(K),se=gn(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),z&&z(e?{type:"brush",extent:e,timestamp:Date.now(),chartType:"RealtimeTemporalHistogram",chartId:$}:{type:"brush-end",timestamp:Date.now(),chartType:"RealtimeTemporalHistogram",chartId:$}),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)},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:[]}}));const ue=Lo(G,ee[0],ee[1]),de=ue?null:jo(y,ee[0],ee[1],q),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(Jt,{ref:ne,chartType:"bar",runtimeMode:"streaming",size:ee,margin:J,className:Y?`${d||""} semiotic-emphasis-${Y}`.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:C,hoverAnnotation:Z,tooltipContent:te,customHoverBehavior:re,annotations:_,svgAnnotationRules:T,tickFormatTime:B,tickFormatValue:D,decay:H,pulse:I,staleness:W,transition:F,legendPosition:X,brush:ie||(K?{dimension:"x"}:void 0),onBrush:ie||K?ce:void 0})});ts.displayName="RealtimeTemporalHistogram";const ns=ts,os=e.forwardRef(function(t,n){var o,r,i,a;const s=In(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:C,tooltipContent:j,tooltip:L,onHover:P,annotations:_,svgAnnotationRules:T,tickFormatTime:B,tickFormatValue:D,linkedHover:N,selection:R,onObservation:H,chartId:I,loading:W,emptyContent:F,emphasis:z,legendPosition:$}=t,G=s.showAxes,q=s.enableHover,Y=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=j?j:L,U=e.useRef(null),{customHoverBehavior:K}=Bn({selection:R,linkedHover:N,unwrapData:!0,onObservation:H,chartType:"RealtimeSwarmChart",chartId:I}),Q=e.useCallback(e=>{P&&P(e),K(e)},[P,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)},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:[]}}));const Z=Lo(W,X[0],X[1]),J=Z?null:jo(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(Jt,{ref:U,chartType:"swarm",runtimeMode:"streaming",size:X,margin:Y,className:z?`${u||""} semiotic-emphasis-${z}`.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:C,hoverAnnotation:q,tooltipContent:V,customHoverBehavior:Q,annotations:_,svgAnnotationRules:T,tickFormatTime:B,tickFormatValue:D,legendPosition:$})});os.displayName="RealtimeSwarmChart";const rs=e.forwardRef(function(t,n){var o,r,i,a;const s=In(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:C,tooltipContent:j,tooltip:L,onHover:P,annotations:_,svgAnnotationRules:T,tickFormatTime:B,tickFormatValue:D,linkedHover:N,selection:R,onObservation:H,chartId:I,loading:W,emptyContent:F,emphasis:z,legendPosition:$}=t,G=s.showAxes,q=s.enableHover,Y=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=j?j:L,U=e.useRef(null),{customHoverBehavior:K}=Bn({selection:R,linkedHover:N,unwrapData:!0,onObservation:H,chartType:"RealtimeWaterfallChart",chartId:I}),Q=e.useCallback(e=>{P&&P(e),K(e)},[P,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)},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:[]}}));const Z=Lo(W,X[0],X[1]),J=Z?null:jo(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(Jt,{ref:U,chartType:"waterfall",runtimeMode:"streaming",size:X,margin:Y,className:z?`${u||""} semiotic-emphasis-${z}`.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:C,hoverAnnotation:q,tooltipContent:V,customHoverBehavior:Q,annotations:_,svgAnnotationRules:T,tickFormatTime:B,tickFormatValue:D,legendPosition:$})});rs.displayName="RealtimeWaterfallChart";const is=e.forwardRef(function(t,n){var o,r,i,a;const s=In(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:C,annotations:j,svgAnnotationRules:L,tickFormatTime:P,tickFormatValue:_,decay:T,pulse:B,staleness:D,linkedHover:N,selection:R,onObservation:H,chartId:I,loading:W,emptyContent:F,emphasis:z,legendPosition:$}=t,G=s.showAxes,q=s.enableHover,Y=null!=c?c:s.marginDefaults,X=null!=l?l:[s.width,s.height],V=null!=E?E:M,U=e.useRef(null),{customHoverBehavior:K}=Bn({selection:R,linkedHover:N,unwrapData:!0,onObservation:H,chartType:"RealtimeHeatmap",chartId:I}),Q=e.useCallback(e=>{C&&C(e),K(e)},[C,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)},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:[]}}));const Z=Lo(W,X[0],X[1]),J=Z?null:jo(f,X[0],X[1],F);return Z||J||p.createElement(Jt,{ref:U,chartType:"heatmap",runtimeMode:"streaming",size:X,margin:Y,className:z?`${u||""} semiotic-emphasis-${z}`.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:q,tooltipContent:V,customHoverBehavior:Q,annotations:j,svgAnnotationRules:L,tickFormatTime:P,tickFormatValue:_,decay:T,pulse:B,staleness:D,legendPosition:$})});is.displayName="RealtimeHeatmap";let[as]=kt(e=>({tooltip:null,changeTooltip(t){e(()=>({tooltip:t}))}}));function ss(e,t){return _o(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"),ls(a,s),"svg"===n){const e=(new XMLSerializer).serializeToString(s);cs(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?(cs(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 ls(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++)ls(o[e],r[e])}function cs(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 us=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"]),ds=new Set(["data","nodes","edges"]),hs="function"==typeof structuredClone?structuredClone:e=>JSON.parse(JSON.stringify(e));function gs(e){return _o(this,arguments,void 0,function*(e,t="json"){const n="jsx"===t?fs(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 fs(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 ps(){const e=function(){const e=p.useContext(Qe);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:xs},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 ms({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 vs({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 bs=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=>_o(this,void 0,void 0,function*(){v.current&&(yield ss(v.current,Object.assign(Object.assign({},O),e)))}),[O]),C=p.useCallback(()=>{m.current&&(document.fullscreenElement?document.exitFullscreen().catch(()=>{}):m.current.requestFullscreen().catch(()=>{}))},[]),j=p.useCallback(e=>_o(this,void 0,void 0,function*(){a&&(yield gs(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:C,copyConfig:j,element:m.current}),[M,C,j]);const L=e||t||s||k||w||A||S||d,P=l?p.createElement(ms,{height:r}):c?p.createElement(vs,{error:c}):u?p.createElement(Zn,null,n):n;return _=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)},L&&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:xs},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(ps,null),w&&p.createElement("button",{className:"semiotic-chart-action",onClick:C,title:b?"Exit fullscreen":"Fullscreen","aria-label":b?"Exit fullscreen":"Enter fullscreen",style:xs},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:()=>j(),title:"Copy config","aria-label":"Copy chart configuration",style:xs},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})},P,h))),S?p.createElement(Ze,null,_):_;var _}),xs={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 ws({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",ws.displayName="ContextLayout";function As({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}=fn({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 C=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({},C),d)},l&&p.createElement("button",{className:"semiotic-details-close",onClick:E,"aria-label":"Close details",style:Ss},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 Ss={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 Os(e){return"nominal"===e||"ordinal"===e}function Es(e){return"quantitative"===e||"temporal"===e}As.displayName="DetailsPanel";const Ms={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"},Cs={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"},js={sum:"sum",mean:"mean",average:"mean",count:"count",min:"min",max:"max",median:"mean"};function Ls(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 Ps(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 _s(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 Ts(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 Bs="__forecastSegment";function Ds(e,t){return"function"==typeof t?t(e):!!e[t]}const Ns=Object.freeze({__proto__:null,SEGMENT_FIELD:Bs,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&&Ds(e,u)?t="forecast":c&&Ds(e,c)&&(t="training"),Object.assign(Object.assign({},e),{[Bs]: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][Bs]!==n[e+1][Bs]&&(t.push(Object.assign(Object.assign({},n[e+1]),{[Bs]:n[e][Bs]})),t.push(Object.assign(Object.assign({},n[e]),{[Bs]:n[e+1][Bs]})));k.push(...b,...t)}else for(let e=0;b.length>e;e++)k.push(b[e]),b.length-1>e&&b[e][Bs]!==b[e+1][Bs]&&(k.push(Object.assign(Object.assign({},b[e+1]),{[Bs]:b[e][Bs]})),k.push(Object.assign(Object.assign({},b[e]),{[Bs]:b[e+1][Bs]})));if(o.trainUnderline){const e=[];for(const t of k)"training"===t[Bs]&&e.push(Object.assign(Object.assign({},t),{[Bs]:"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=>Ds(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),{[Bs]:"observed"})):f.push(Object.assign(Object.assign({},n),{[Bs]:"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,[Bs]:"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]),{[Bs]:"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),{[Bs]:"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[Bs];if("training"===o){let e=n.stroke;return"darken"===c?e=_s(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=Ts(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:_s,lightenColor:Ts});exports.AreaChart=Ro,exports.BarChart=Rr,exports.BoxPlot=Gr,exports.BubbleChart=Go,exports.CategoryColorProvider=tn,exports.ChartContainer=bs,exports.ChartGrid=ks,exports.ChordDiagram=Xa,exports.CirclePack=Qa,exports.ConnectedScatterplot=$o,exports.ContextLayout=ws,exports.DetailsPanel=As,exports.DonutChart=Kr,exports.DotPlot=Xr,exports.ForceDirectedGraph=za,exports.FunnelChart=Qr,exports.GroupedBarChart=Wr,exports.Heatmap=qo,exports.Histogram=qr,exports.LikertChart=ri,exports.LineChart=No,exports.LinkedCharts=vn,exports.MultiAxisLineChart=ir,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=zn(e,n);l.push({value:$n(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=$n(zn(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:$n(e[t],o)})});const c=Object.assign(Object.assign({},Fn),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=Ja,exports.PieChart=Ur,exports.QuadrantChart=er,exports.RealtimeHeatmap=is,exports.RealtimeHistogram=ns,exports.RealtimeLineChart=es,exports.RealtimeSwarmChart=os,exports.RealtimeWaterfallChart=rs,exports.RidgelinePlot=Vr,exports.SankeyDiagram=Va,exports.Scatterplot=Fo,exports.ScatterplotMatrix=Jo,exports.StackedAreaChart=Io,exports.StackedBarChart=Ir,exports.SwarmPlot=zr,exports.ThemeProvider=function({theme:e,children:t}){const n="string"==typeof e&&An(e)?e:void 0;return p.createElement(Et,null,p.createElement(Sn.Provider,{value:n},p.createElement(On,{theme:e}),p.createElement(En,null,t)))},exports.TooltipProvider=as,exports.TreeDiagram=Ua,exports.Treemap=Ka,exports.ViolinPlot=Yr,exports.configToJSX=fs,exports.copyConfig=gs,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=Ao,exports.exportChart=ss,exports.fromConfig=function(e){if(!e.component||!e.props)throw Error("Invalid chart config: missing component or props");if(!ho[e.component])throw Error(`Unknown component "${e.component}". This config may require a newer version of semiotic.`);return{componentName:e.component,props:hs(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=Ms[k.scale.scheme];e&&(E.colorScheme=e)}void 0!==(null==S?void 0:S.value)&&(E.pointOpacity=S.value);const C=null==b?void 0:b.aggregate,j=null==x?void 0:x.aggregate;if(O&&(C||j)){const e=j?x:b,t=j?b:x,n=js[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),Ps(e,E,p)}let L;switch(y){case"bar":L=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",Os(null==e?void 0:e.type)&&Es(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)):Es(null==e?void 0:e.type)&&Os(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,C,j);break;case"line":if(L="LineChart",Ls(b,x,E,C,j),(null==k?void 0:k.field)&&(E.lineBy=k.field),m.interpolate){const e=Cs[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)?(L="StackedAreaChart",E.areaBy=k.field):L="AreaChart",Ls(b,x,E,C,j),m.interpolate){const e=Cs[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)?(L="BubbleChart",E.sizeBy=w.field,(null===(l=w.scale)||void 0===l?void 0:l.range)&&(E.sizeRange=w.scale.range)):L="Scatterplot",Ls(b,x,E,C,j),O&&(E.data=O);break;case"rect":L="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?(L="DonutChart",E.innerRadius=m.innerRadius):L="PieChart",(null==A?void 0:A.field)?E.valueAccessor=A.field:(null==x?void 0:x.field)&&(E.valueAccessor=j?"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":L="DotPlot",Os(null==b?void 0:b.type)?(E.categoryAccessor=b.field,(null==x?void 0:x.field)&&(E.valueAccessor=j?"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)):Os(null==x?void 0:x.type)?(E.categoryAccessor=x.field,(null==b?void 0:b.field)&&(E.valueAccessor=C?"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=j?"value":x.field)),O&&(E.data=O);break;default:p.push(`Unsupported mark type "${y}". Defaulting to Scatterplot.`),L="Scatterplot",Ls(b,x,E,C,j),O&&(E.data=O)}return Ps(L,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(!ho[e])throw Error(`Unknown component "${e}". Known components: ${Object.keys(ho).join(", ")}`);const o=!1!==(null==n?void 0:n.includeData),r={};for(const[e,n]of Object.entries(t))null!=n&&(us.has(e)||!o&&ds.has(e)||"function"!=typeof n&&((null==n?void 0:n.$$typeof)||(r[e]=hs(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=gn,exports.useCategoryColors=nn,exports.useChartObserver=fn,exports.useFilteredData=function(t,n,o){const r=ln(e=>e.selections.get(n));return e.useMemo(()=>{if(!r||0===r.clauses.size)return t;const e=rn(r,o);return t.filter(e)},[t,r,o])},exports.useLinkedHover=hn,exports.useSelection=dn,exports.useTheme=Mn,exports.validateProps=fo;
|