@fluentui/react-charts 0.0.0-nightly-20251218-0407.1 → 0.0.0-nightly-20251219-0407.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. package/CHANGELOG.md +13 -13
  2. package/dist/index.d.ts +13 -0
  3. package/lib/components/DeclarativeChart/PlotlySchemaAdapter.js +5 -2
  4. package/lib/components/DeclarativeChart/PlotlySchemaAdapter.js.map +1 -1
  5. package/lib/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js +56 -5
  6. package/lib/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js.map +1 -1
  7. package/lib/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.types.js.map +1 -1
  8. package/lib/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.js +18 -3
  9. package/lib/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.js.map +1 -1
  10. package/lib/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.raw.js +13 -2
  11. package/lib/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.raw.js.map +1 -1
  12. package/lib/types/DataPoint.js.map +1 -1
  13. package/lib-commonjs/components/DeclarativeChart/PlotlySchemaAdapter.js +5 -2
  14. package/lib-commonjs/components/DeclarativeChart/PlotlySchemaAdapter.js.map +1 -1
  15. package/lib-commonjs/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js +55 -4
  16. package/lib-commonjs/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js.map +1 -1
  17. package/lib-commonjs/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.types.js.map +1 -1
  18. package/lib-commonjs/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.js +26 -3
  19. package/lib-commonjs/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.js.map +1 -1
  20. package/lib-commonjs/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.raw.js +13 -2
  21. package/lib-commonjs/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.raw.js.map +1 -1
  22. package/lib-commonjs/types/DataPoint.js.map +1 -1
  23. package/package.json +12 -12
@@ -16,6 +16,7 @@ const _d3scale = require("d3-scale");
16
16
  const _Legends = require("../../components/Legends/Legends");
17
17
  const _reactutilities = require("@fluentui/react-utilities");
18
18
  const _CartesianChart = require("../CommonComponents/CartesianChart");
19
+ const _useHorizontalBarChartWithAxisStylesstyles = require("./useHorizontalBarChartWithAxisStyles.styles");
19
20
  const _ChartPopover = require("../CommonComponents/ChartPopover");
20
21
  const _index = require("../../utilities/index");
21
22
  const _vbcutils = require("../../utilities/vbc-utils");
@@ -45,6 +46,7 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
45
46
  var _props_yAxisPadding;
46
47
  let _yAxisPadding = (_props_yAxisPadding = props.yAxisPadding) !== null && _props_yAxisPadding !== void 0 ? _props_yAxisPadding : 0.5;
47
48
  const { cartesianChartRef, legendsRef: _legendsRef } = (0, _hooks.useImageExport)(props.componentRef, props.hideLegend);
49
+ const styles = (0, _useHorizontalBarChartWithAxisStylesstyles.useHorizontalBarChartWithAxisStyles)(props);
48
50
  const X_ORIGIN = 0;
49
51
  const [color, setColor] = _react.useState('');
50
52
  const [dataForHoverCard, setDataForHoverCard] = _react.useState(0);
@@ -250,6 +252,26 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
250
252
  };
251
253
  }
252
254
  }
255
+ function _calculateBarTotals(singleBarData) {
256
+ const totalPositiveValue = singleBarData.filter((point)=>point.x >= X_ORIGIN).reduce((sum, point)=>sum + point.x, 0);
257
+ const totalNegativeValue = singleBarData.filter((point)=>point.x < X_ORIGIN).reduce((sum, point)=>sum + point.x, 0);
258
+ const totalBarValue = totalPositiveValue + totalNegativeValue;
259
+ const showLabelOnPositiveSide = totalBarValue >= 0;
260
+ const totalPositiveBars = singleBarData.filter((point)=>point.x >= X_ORIGIN).length;
261
+ const totalNegativeBars = singleBarData.length - totalPositiveBars;
262
+ const shouldShowLabel = (isPositiveBar, currPositiveCounter, currNegativeCounter)=>{
263
+ const isLastPositiveBar = isPositiveBar && currPositiveCounter === totalPositiveBars;
264
+ const isLastNegativeBar = !isPositiveBar && currNegativeCounter === totalNegativeBars;
265
+ return showLabelOnPositiveSide ? isLastPositiveBar : isLastNegativeBar;
266
+ };
267
+ return {
268
+ totalPositiveValue,
269
+ totalNegativeValue,
270
+ totalBarValue,
271
+ showLabelOnPositiveSide,
272
+ shouldShowLabel
273
+ };
274
+ }
253
275
  function _createNumericBars(containerHeight, containerWidth, xElement, yElement, singleBarData, xBarScale, yBarScale) {
254
276
  const { useSingleColor = false } = props;
255
277
  const sortedBars = [
@@ -265,6 +287,7 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
265
287
  let prevPoint = 0;
266
288
  const totalPositiveBars = singleBarData.filter((point)=>point.x >= X_ORIGIN).length;
267
289
  const totalNegativeBars = singleBarData.length - totalPositiveBars;
290
+ const { totalBarValue, shouldShowLabel } = _calculateBarTotals(singleBarData);
268
291
  let currPositiveCounter = 0;
269
292
  let currNegativeCounter = 0;
270
293
  const bars = sortedBars.map((point, index)=>{
@@ -306,13 +329,17 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
306
329
  xStart = point.x > X_ORIGIN ? barStartX + prevWidthPositive : barStartX - prevWidthNegative;
307
330
  }
308
331
  prevPoint = point.x;
332
+ const barWidth = currentWidth - (_isRtl ? gapWidthRTL : gapWidthLTR);
333
+ const barEndX = _isRtl ? point.x >= X_ORIGIN ? xStart : xStart + barWidth : point.x >= X_ORIGIN ? xStart + barWidth : xStart;
334
+ const isPositiveBar = point.x >= X_ORIGIN;
335
+ const showLabel = shouldShowLabel(isPositiveBar, currPositiveCounter, currNegativeCounter);
309
336
  return /*#__PURE__*/ _react.createElement(_react.Fragment, {
310
337
  key: `${index}_${point.x}`
311
338
  }, /*#__PURE__*/ _react.createElement("rect", {
312
339
  key: point.y,
313
340
  x: xStart,
314
341
  y: yBarScale(point.y) - _barHeight / 2,
315
- width: currentWidth - (_isRtl ? gapWidthRTL : gapWidthLTR),
342
+ width: barWidth,
316
343
  height: _barHeight,
317
344
  ref: (e)=>{
318
345
  _refCallback(e, point.legend);
@@ -329,7 +356,7 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
329
356
  fill: startColor,
330
357
  opacity: shouldHighlight ? 1 : 0.1,
331
358
  tabIndex: shouldHighlight ? 0 : undefined
332
- }));
359
+ }), showLabel && _renderBarLabel(barEndX, yBarScale(point.y) - _barHeight / 2, totalBarValue, isPositiveBar));
333
360
  });
334
361
  return bars;
335
362
  }
@@ -393,6 +420,7 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
393
420
  let prevPoint = 0;
394
421
  const totalPositiveBars = singleBarData.filter((point)=>point.x >= X_ORIGIN).length;
395
422
  const totalNegativeBars = singleBarData.length - totalPositiveBars;
423
+ const { totalBarValue, shouldShowLabel } = _calculateBarTotals(singleBarData);
396
424
  let currPositiveCounter = 0;
397
425
  let currNegativeCounter = 0;
398
426
  const bars = singleBarData.map((point, index)=>{
@@ -434,6 +462,11 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
434
462
  } else {
435
463
  xStart = point.x > X_ORIGIN ? barStartX + prevWidthPositive : barStartX - prevWidthNegative;
436
464
  }
465
+ const barWidth = currentWidth - (_isRtl ? gapWidthRTL : gapWidthLTR);
466
+ const barEndX = _isRtl ? point.x >= X_ORIGIN ? xStart : xStart + barWidth : point.x >= X_ORIGIN ? xStart + barWidth : xStart;
467
+ const isPositiveBar = point.x >= X_ORIGIN;
468
+ const yPosition = yBarScale(point.y) + 0.5 * (yBarScale.bandwidth() - _barHeight);
469
+ const showLabel = shouldShowLabel(isPositiveBar, currPositiveCounter, currNegativeCounter);
437
470
  return /*#__PURE__*/ _react.createElement(_react.Fragment, {
438
471
  key: `${index}_${point.x}`
439
472
  }, /*#__PURE__*/ _react.createElement("rect", {
@@ -442,7 +475,7 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
442
475
  x: xStart,
443
476
  y: yBarScale(point.y),
444
477
  rx: props.roundCorners ? 3 : 0,
445
- width: currentWidth - (_isRtl ? gapWidthRTL : gapWidthLTR),
478
+ width: barWidth,
446
479
  height: _barHeight,
447
480
  "aria-labelledby": `toolTip${_calloutId}`,
448
481
  "aria-label": _getAriaLabel(point),
@@ -458,7 +491,7 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
458
491
  onFocus: (event)=>_onBarFocus(event, point, index, startColor),
459
492
  fill: startColor,
460
493
  tabIndex: shouldHighlight ? 0 : undefined
461
- }));
494
+ }), showLabel && _renderBarLabel(barEndX, yPosition, totalBarValue, isPositiveBar));
462
495
  });
463
496
  return bars;
464
497
  }
@@ -553,6 +586,24 @@ const HorizontalBarChartWithAxis = /*#__PURE__*/ _react.forwardRef((props = {
553
586
  const yValue = point.yAxisCalloutData || point.y;
554
587
  return ((_point_callOutAccessibilityData = point.callOutAccessibilityData) === null || _point_callOutAccessibilityData === void 0 ? void 0 : _point_callOutAccessibilityData.ariaLabel) || `${xValue}. ` + `${yValue}.`;
555
588
  }
589
+ function _renderBarLabel(xPosition, yPosition, value, isPositiveBar) {
590
+ if (props.hideLabels || _barHeight < 16) {
591
+ return null;
592
+ }
593
+ return /*#__PURE__*/ _react.createElement("text", {
594
+ x: xPosition,
595
+ y: yPosition + _barHeight / 2,
596
+ textAnchor: _isRtl ? isPositiveBar ? 'end' : 'start' : isPositiveBar ? 'start' : 'end',
597
+ transform: `translate(${isPositiveBar ? _isRtl ? -4 : 4 : _isRtl ? 4 : -4})`,
598
+ dominantBaseline: "central",
599
+ className: styles.barLabel,
600
+ "aria-hidden": true,
601
+ style: {
602
+ direction: 'ltr',
603
+ unicodeBidi: 'isolate'
604
+ }
605
+ }, (0, _index.formatScientificLimitWidth)(value));
606
+ }
556
607
  function _getChartTitle() {
557
608
  const { chartTitle, data } = props;
558
609
  return (chartTitle ? `${chartTitle}. ` : '') + `Horizontal bar chart with ${(data === null || data === void 0 ? void 0 : data.length) || 0} bars. `;
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.tsx"],"sourcesContent":["'use client';\n\nimport * as React from 'react';\nimport { max as d3Max, min as d3Min } from 'd3-array';\nimport { scaleLinear as d3ScaleLinear, ScaleLinear as D3ScaleLinear, scaleBand as d3ScaleBand } from 'd3-scale';\nimport { Legend } from '../../components/Legends/Legends.types';\nimport { Legends } from '../../components/Legends/Legends';\nimport { useId } from '@fluentui/react-utilities';\nimport type { JSXElement } from '@fluentui/react-utilities';\nimport {\n AccessibilityProps,\n HorizontalBarChartWithAxisDataPoint,\n RefArrayData,\n Margins,\n ChartPopoverProps,\n} from '../../index';\nimport { ChildProps } from '../CommonComponents/CartesianChart.types';\nimport { CartesianChart } from '../CommonComponents/CartesianChart';\nimport { HorizontalBarChartWithAxisProps } from './HorizontalBarChartWithAxis.types';\nimport { ChartPopover } from '../CommonComponents/ChartPopover';\nimport {\n ChartTypes,\n IAxisData,\n getAccessibleDataObject,\n YAxisType,\n XAxisTypes,\n NumericAxis,\n StringAxis,\n getTypeOfAxis,\n getNextColor,\n findHBCWANumericMinMaxOfY,\n createYAxisForHorizontalBarChartWithAxis,\n IDomainNRange,\n domainRangeOfNumericForHorizontalBarChartWithAxis,\n createStringYAxisForHorizontalBarChartWithAxis,\n areArraysEqual,\n useRtl,\n DataVizPalette,\n getColorFromToken,\n computeLongestBars,\n groupChartDataByYValue,\n MIN_DOMAIN_MARGIN,\n sortAxisCategories,\n} from '../../utilities/index';\nimport { getClosestPairDiffAndRange } from '../../utilities/vbc-utils';\nimport { useImageExport } from '../../utilities/hooks';\ntype ColorScale = (_p?: number) => string;\n\nexport const HorizontalBarChartWithAxis: React.FunctionComponent<HorizontalBarChartWithAxisProps> = React.forwardRef<\n HTMLDivElement,\n HorizontalBarChartWithAxisProps\n>((props = { yAxisCategoryOrder: 'default' }, forwardedRef) => {\n const _refArray: RefArrayData[] = [];\n const _calloutId: string = useId('callout');\n const _isRtl: boolean = useRtl();\n const _xAxisType: XAxisTypes =\n props.data! && props.data!.length > 0\n ? (getTypeOfAxis(props.data![0].x, true) as XAxisTypes)\n : XAxisTypes.NumericAxis;\n const _yAxisType: YAxisType =\n props.data! && props.data!.length > 0\n ? (getTypeOfAxis(props.data![0].y, false) as YAxisType)\n : YAxisType.StringAxis;\n const _emptyChartId: string = useId('_HBCWithAxis_empty');\n let _points: HorizontalBarChartWithAxisDataPoint[] = [];\n let _barHeight: number = 0;\n let _colors: string[] = [];\n let _margins: Margins;\n let _bars: JSXElement[];\n let _yAxisLabels: string[];\n let _xMax: number;\n let _calloutAnchorPoint: HorizontalBarChartWithAxisDataPoint | null;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let _longestBarPositiveTotalValue: number;\n let _longestBarNegativeTotalValue: number;\n let _domainMargin: number = MIN_DOMAIN_MARGIN;\n let _yAxisPadding: number = props.yAxisPadding ?? 0.5;\n const { cartesianChartRef, legendsRef: _legendsRef } = useImageExport(props.componentRef, props.hideLegend);\n const X_ORIGIN: number = 0;\n\n const [color, setColor] = React.useState<string>('');\n const [dataForHoverCard, setDataForHoverCard] = React.useState<number>(0);\n const [isLegendSelected, setIsLegendSelected] = React.useState<boolean>(\n (props.legendProps?.selectedLegends && props.legendProps.selectedLegends.length > 0) ||\n props.legendProps?.selectedLegend !== undefined,\n );\n const [isLegendHovered, setIsLegendHovered] = React.useState<boolean>(false);\n const [selectedLegendTitle, setSelectedLegendTitle] = React.useState<string>(props.legendProps?.selectedLegend ?? '');\n const [xCalloutValue, setXCalloutValue] = React.useState<string>('');\n const [yCalloutValue, setYCalloutValue] = React.useState<string>('');\n const [selectedLegends, setSelectedLegends] = React.useState<string[]>(props.legendProps?.selectedLegends || []);\n const [dataPointCalloutProps, setDataPointCalloutProps] = React.useState<HorizontalBarChartWithAxisDataPoint>();\n const [callOutAccessibilityData, setCallOutAccessibilityData] = React.useState<AccessibilityProps>();\n const [isPopoverOpen, setPopoverOpen] = React.useState<boolean>(false);\n const [clickPosition, setClickPosition] = React.useState({ x: 0, y: 0 });\n const prevPropsRef = React.useRef<HorizontalBarChartWithAxisProps | null>(null);\n\n React.useEffect(() => {\n if (prevPropsRef.current) {\n const prevProps = prevPropsRef.current;\n if (!areArraysEqual(prevProps.legendProps?.selectedLegends, props.legendProps?.selectedLegends)) {\n setSelectedLegends(props.legendProps?.selectedLegends || []);\n }\n }\n prevPropsRef.current = props;\n }, [props]);\n\n function _adjustProps(): void {\n _points = props.data || [];\n _barHeight = props.barHeight || 32;\n const defaultPalette: string[] = [\n getColorFromToken(DataVizPalette.color6),\n getColorFromToken(DataVizPalette.color1),\n getColorFromToken(DataVizPalette.color5),\n getColorFromToken(DataVizPalette.color7),\n ];\n _colors = props.colors! || defaultPalette;\n }\n\n function _getMargins(margins: Margins) {\n _margins = margins;\n }\n\n function _renderContentForOnlyBars(point: HorizontalBarChartWithAxisDataPoint): JSXElement {\n const { useSingleColor = false } = props;\n let selectedPointIndex = 0;\n props.data!.forEach((yDataPoint: HorizontalBarChartWithAxisDataPoint, index: number) => {\n if (yDataPoint.y === point.y) {\n selectedPointIndex = index;\n }\n });\n let color: string;\n if (useSingleColor) {\n //if useSingle color , then check if user has given a palette or not\n // and pick the first color from that or else from our paltette.\n color = props.colors ? _createColors()(1) : getNextColor(1, 0);\n } else {\n color = point.color ? point.color : props.colors ? _createColors()(point.x) : getNextColor(selectedPointIndex, 0);\n }\n return (\n <>\n <ChartPopover\n XValue={point.xAxisCalloutData || point.x.toString()}\n legend={point.legend}\n YValue={point.yAxisCalloutData || point.y}\n color={color}\n culture={props.culture}\n clickPosition={clickPosition}\n isPopoverOpen={isPopoverOpen}\n />\n </>\n );\n }\n\n function _renderCallout(props?: HorizontalBarChartWithAxisDataPoint): JSXElement | null {\n return props ? _renderContentForOnlyBars(props) : null;\n }\n\n function _getCustomizedCallout() {\n return props.onRenderCalloutPerDataPoint\n ? props.onRenderCalloutPerDataPoint(dataPointCalloutProps, _renderCallout)\n : null;\n }\n\n function _getGraphData(\n xScale: NumericAxis,\n yScale: NumericAxis | StringAxis,\n containerHeight: number,\n containerWidth: number,\n xElement?: SVGElement | null,\n yElement?: SVGElement | null,\n ) {\n const stackedChartData = groupChartDataByYValue(_points);\n const longestBars = computeLongestBars(stackedChartData, X_ORIGIN);\n _longestBarPositiveTotalValue = longestBars.longestPositiveBar;\n _longestBarNegativeTotalValue = longestBars.longestNegativeBar;\n\n const { xBarScale, yBarScale } =\n _yAxisType === YAxisType.NumericAxis\n ? _getScales(containerHeight, containerWidth, true)\n : _getScales(containerHeight, containerWidth, false);\n const xRange = xBarScale.range();\n let allBars: JSXElement[] = [];\n // when the chart mounts, the xRange[1] is sometimes seen to be < 0 (like -40) while xRange[0] > 0.\n if (xRange[0] < xRange[1]) {\n allBars = stackedChartData\n .map(singleBarData =>\n _yAxisType === YAxisType.NumericAxis\n ? _createNumericBars(\n containerHeight,\n containerWidth,\n xElement!,\n yElement!,\n singleBarData,\n xBarScale,\n yBarScale,\n )\n : _createStringBars(\n containerHeight,\n containerWidth,\n xElement!,\n yElement!,\n singleBarData,\n xBarScale,\n yBarScale,\n ),\n )\n .flat();\n }\n\n return (_bars = allBars);\n }\n\n function _createColors(): D3ScaleLinear<string, string> | ColorScale {\n const increment = _colors.length <= 1 ? 1 : 1 / (_colors.length - 1);\n const { useSingleColor = false } = props;\n if (useSingleColor) {\n return (_p?: number) => {\n const { colors } = props;\n return colors && colors.length > 0 ? colors[0] : getColorFromToken(DataVizPalette.color16);\n };\n }\n const domainValues = [];\n for (let i = 0; i < _colors.length; i++) {\n domainValues.push(increment * i * _xMax);\n }\n const colorScale = d3ScaleLinear<string>().domain(domainValues).range(_colors);\n return colorScale;\n }\n\n function _refCallback(element: SVGRectElement, legendTitle: string): void {\n _refArray.push({ index: legendTitle, refElement: element });\n }\n\n function _onBarHover(\n point: HorizontalBarChartWithAxisDataPoint,\n color: string,\n mouseEvent: React.MouseEvent<SVGElement, MouseEvent>,\n ): void {\n mouseEvent.persist();\n if ((isLegendSelected === false || _isLegendHighlighted(point.legend)) && _calloutAnchorPoint !== point) {\n _calloutAnchorPoint = point;\n setPopoverOpen(true);\n _updatePosition(mouseEvent.clientX, mouseEvent.clientY);\n setDataForHoverCard(point.x);\n setSelectedLegendTitle(point.legend!);\n setColor(props.useSingleColor || props.enableGradient ? color : point.color!);\n // To display callout value, if no callout value given, taking given point.x value as a string.\n setXCalloutValue(point.yAxisCalloutData! || point.y.toString());\n setYCalloutValue(point.xAxisCalloutData || point.x.toString());\n setDataPointCalloutProps(point);\n setCallOutAccessibilityData(point.callOutAccessibilityData);\n }\n }\n\n function _onBarLeave(): void {\n setPopoverOpen(false);\n }\n\n function _handleChartMouseLeave(): void {\n _calloutAnchorPoint = null;\n setPopoverOpen(false);\n }\n\n function _onBarFocus(\n event: React.FocusEvent<SVGRectElement, Element>,\n point: HorizontalBarChartWithAxisDataPoint,\n refArrayIndexNumber: number,\n color: string,\n ): void {\n let cx = 0;\n let cy = 0;\n\n const targetRect = (event.target as SVGRectElement).getBoundingClientRect();\n cx = targetRect.left + targetRect.width / 2;\n cy = targetRect.top + targetRect.height / 2;\n _updatePosition(cx, cy);\n if ((isLegendSelected === false || _isLegendHighlighted(point.legend)) && _calloutAnchorPoint !== point) {\n _refArray.forEach((obj: RefArrayData, index: number) => {\n if (refArrayIndexNumber === index) {\n setPopoverOpen(true);\n setSelectedLegendTitle(point.legend!);\n setDataForHoverCard(point.x);\n setColor(props.useSingleColor ? color : point.color!);\n setXCalloutValue(point.yAxisCalloutData || point.y.toString());\n setYCalloutValue(point.xAxisCalloutData! || point.x.toString());\n setDataPointCalloutProps(point);\n setCallOutAccessibilityData(point.callOutAccessibilityData);\n }\n });\n }\n }\n\n function _getScales(\n containerHeight: number,\n containerWidth: number,\n isNumericScale: boolean,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n ): { xBarScale: any; yBarScale: any } {\n const xMax = _longestBarPositiveTotalValue;\n const xMin = _longestBarNegativeTotalValue;\n const xDomain = [Math.min(X_ORIGIN, xMin), Math.max(X_ORIGIN, xMax)];\n if (isNumericScale) {\n const yMax = d3Max(_points, (point: HorizontalBarChartWithAxisDataPoint) => point.y as number)!;\n const yMin = d3Min(_points, (point: HorizontalBarChartWithAxisDataPoint) => point.y as number)!;\n const yDomainMax = Math.max(yMax, props.yMaxValue || 0);\n // Default to 0 if yMinValue is not provided.\n const yMinProp = props.yMinValue || 0;\n const yDomainMin = Math.min(yMin, yMinProp);\n const xBarScale = d3ScaleLinear()\n .domain(xDomain)\n .nice()\n .range([_margins.left!, containerWidth - _margins.right!]);\n const yBarScale = d3ScaleLinear()\n .domain([yDomainMin, yDomainMax])\n .range([containerHeight - (_margins.bottom! + _domainMargin), _margins.top! + _domainMargin]);\n return { xBarScale, yBarScale };\n } else {\n // please note these padding default values must be consistent in here\n // and CatrtesianChartBase w for more details refer example\n // http://using-d3js.com/04_07_ordinal_scales.html\n const yBarScale = d3ScaleBand()\n .domain(_yAxisLabels)\n .range([containerHeight - (_margins.bottom! + _domainMargin), _margins.top! + _domainMargin])\n .padding(_yAxisPadding);\n\n const xBarScale = d3ScaleLinear()\n .domain(xDomain)\n .nice()\n .range([_margins.left!, containerWidth - _margins.right!]);\n return { xBarScale, yBarScale };\n }\n }\n\n function _createNumericBars(\n containerHeight: number,\n containerWidth: number,\n xElement: SVGElement,\n yElement: SVGElement,\n singleBarData: HorizontalBarChartWithAxisDataPoint[],\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n xBarScale: any,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n yBarScale: any,\n ): JSXElement[] {\n const { useSingleColor = false } = props;\n const sortedBars: HorizontalBarChartWithAxisDataPoint[] = [...singleBarData];\n sortedBars.sort((a, b) => {\n const aValue = typeof a.y === 'number' ? a.y : parseFloat(a.y);\n const bValue = typeof b.y === 'number' ? b.y : parseFloat(b.y);\n return bValue - aValue;\n });\n\n let prevWidthPositive = 0;\n let prevWidthNegative = 0;\n let prevPoint = 0;\n\n const totalPositiveBars = singleBarData.filter(\n (point: HorizontalBarChartWithAxisDataPoint) => point.x >= X_ORIGIN,\n ).length;\n const totalNegativeBars = singleBarData.length - totalPositiveBars;\n let currPositiveCounter = 0;\n let currNegativeCounter = 0;\n\n const bars = sortedBars.map((point: HorizontalBarChartWithAxisDataPoint, index: number) => {\n let shouldHighlight = true;\n if (isLegendHovered || isLegendSelected) {\n shouldHighlight = _isLegendHighlighted(point.legend);\n }\n if (point.x >= X_ORIGIN) {\n ++currPositiveCounter;\n }\n if (point.x < X_ORIGIN) {\n ++currNegativeCounter;\n }\n const barStartX = _isRtl\n ? containerWidth -\n (_margins.right! + Math.max(xBarScale(point.x + X_ORIGIN), xBarScale(X_ORIGIN)) - _margins.left!)\n : Math.min(xBarScale(point.x + X_ORIGIN), xBarScale(X_ORIGIN));\n const barHeight: number = Math.max(yBarScale(point.y), 0);\n if (barHeight < 1) {\n return <React.Fragment key={point.x}> </React.Fragment>;\n }\n let startColor: string;\n if (useSingleColor) {\n //if useSingle color , then check if user has given a palette or not\n // and pick the first color from that or else from our paltette.\n startColor = props.colors ? _createColors()(1) : getNextColor(1, 0);\n } else {\n startColor = props.colors ? _createColors()(point.x) : getNextColor(index, 0);\n }\n\n startColor = point.color && !useSingleColor ? point.color : startColor;\n\n const prevBarWidth = Math.abs(xBarScale(prevPoint + X_ORIGIN) - xBarScale(X_ORIGIN));\n prevPoint > X_ORIGIN ? (prevWidthPositive += prevBarWidth) : (prevWidthNegative += prevBarWidth);\n const currentWidth = Math.abs(xBarScale(point.x + X_ORIGIN) - xBarScale(X_ORIGIN));\n const gapWidthLTR =\n currentWidth > 2 &&\n ((point.x > X_ORIGIN && currPositiveCounter !== totalPositiveBars) ||\n (point.x < X_ORIGIN && (totalPositiveBars !== 0 || currNegativeCounter > 1)))\n ? 2\n : 0;\n const gapWidthRTL =\n currentWidth > 2 &&\n ((point.x > X_ORIGIN && (totalNegativeBars !== 0 || currPositiveCounter > 1)) ||\n (point.x < X_ORIGIN && currNegativeCounter !== totalNegativeBars))\n ? 2\n : 0;\n let xStart = X_ORIGIN;\n if (_isRtl) {\n xStart = point.x > X_ORIGIN ? barStartX - prevWidthPositive : barStartX + prevWidthNegative;\n } else {\n xStart = point.x > X_ORIGIN ? barStartX + prevWidthPositive : barStartX - prevWidthNegative;\n }\n prevPoint = point.x;\n\n return (\n <React.Fragment key={`${index}_${point.x}`}>\n <rect\n key={point.y}\n x={xStart}\n y={yBarScale(point.y) - _barHeight / 2}\n width={currentWidth - (_isRtl ? gapWidthRTL : gapWidthLTR)}\n height={_barHeight}\n ref={(e: SVGRectElement) => {\n _refCallback(e, point.legend!);\n }}\n rx={props.roundCorners ? 3 : 0}\n onClick={point.onClick}\n onMouseOver={(event: React.MouseEvent<SVGElement, MouseEvent>) => _onBarHover(point, startColor, event)}\n aria-label={_getAriaLabel(point)}\n role=\"img\"\n aria-labelledby={`toolTip${_calloutId}`}\n onMouseLeave={_onBarLeave}\n onFocus={event => _onBarFocus(event, point, index, startColor)}\n onBlur={_onBarLeave}\n fill={startColor}\n opacity={shouldHighlight ? 1 : 0.1}\n tabIndex={shouldHighlight ? 0 : undefined}\n />\n </React.Fragment>\n );\n });\n return bars;\n }\n\n function _getUniqueYValues() {\n const mapY: Record<string, number | string> = {};\n props.data?.forEach((point: HorizontalBarChartWithAxisDataPoint) => {\n mapY[point.y] = point.y;\n });\n const uniqueY = Object.values(mapY);\n return uniqueY;\n }\n\n function _calculateAppropriateBarHeight(data: number[] | Date[], totalWidth: number, innerPadding: number) {\n const result = getClosestPairDiffAndRange(data);\n if (!result || result[1] === 0) {\n return 16;\n }\n const closestPairDiff = result[0];\n let range = result[1];\n const yMax = d3Max(_points, (point: HorizontalBarChartWithAxisDataPoint) => point.y as number)!;\n // Since we are always rendering from 0 to yMax, we need to ensure that the range is at least yMax\n // to calculate the bar height correctly.\n range = Math.max(range, yMax);\n // Refer to https://microsoft.github.io/fluentui-charting-contrib/docs/rfcs/fix-overlapping-bars-on-continuous-axes\n // for the derivation of the following formula.\n const barWidth = Math.floor(\n (totalWidth * closestPairDiff * (1 - innerPadding)) / (range + closestPairDiff * (1 - innerPadding)),\n );\n return barWidth;\n }\n\n function _getDomainMarginsForHorizontalBarChart(containerHeight: number): Margins {\n _domainMargin = MIN_DOMAIN_MARGIN;\n const uniqueY = _getUniqueYValues();\n /** Rate at which the space between the bars changes wrt the bar height */\n _yAxisPadding = _yAxisPadding === 1 ? 0.99 : _yAxisPadding;\n const barGapRate = _yAxisPadding / (1 - _yAxisPadding);\n const numBars = uniqueY.length + (uniqueY.length - 1) * barGapRate;\n // Total height available to render the bars\n const totalHeight = containerHeight - (_margins.top! + MIN_DOMAIN_MARGIN) - (_margins.bottom! + MIN_DOMAIN_MARGIN);\n if (_yAxisType !== YAxisType.StringAxis) {\n // Calculate bar height dynamically\n _barHeight =\n props.barHeight || _calculateAppropriateBarHeight(uniqueY as number[] | Date[], totalHeight, _yAxisPadding);\n _barHeight = Math.max(_barHeight, 1);\n _domainMargin += _barHeight / 2;\n } else {\n // Calculate the appropriate bar height\n _barHeight = props.barHeight || totalHeight / numBars;\n /** Total height required to render the bars. Directly proportional to bar height */\n const reqHeight = numBars * _barHeight;\n if (totalHeight >= reqHeight) {\n // Center align the chart by setting equal left and right margins for domain\n _domainMargin = MIN_DOMAIN_MARGIN + (totalHeight - reqHeight) / 2;\n }\n }\n\n return {\n ..._margins,\n top: _margins.top! + _domainMargin,\n bottom: _margins.bottom! + _domainMargin,\n };\n }\n\n function _createStringBars(\n containerHeight: number,\n containerWidth: number,\n xElement: SVGElement,\n yElement: SVGElement,\n singleBarData: HorizontalBarChartWithAxisDataPoint[],\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n xBarScale: any,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n yBarScale: any,\n ): JSXElement[] {\n const { useSingleColor = false } = props;\n let prevWidthPositive = 0;\n let prevWidthNegative = 0;\n let prevPoint = 0;\n const totalPositiveBars = singleBarData.filter(\n (point: HorizontalBarChartWithAxisDataPoint) => point.x >= X_ORIGIN,\n ).length;\n const totalNegativeBars = singleBarData.length - totalPositiveBars;\n let currPositiveCounter = 0;\n let currNegativeCounter = 0;\n const bars = singleBarData.map((point: HorizontalBarChartWithAxisDataPoint, index: number) => {\n let shouldHighlight = true;\n if (isLegendHovered || isLegendSelected) {\n shouldHighlight = _isLegendHighlighted(point.legend);\n }\n if (point.x >= X_ORIGIN) {\n ++currPositiveCounter;\n }\n if (point.x < X_ORIGIN) {\n ++currNegativeCounter;\n }\n const barStartX = _isRtl\n ? containerWidth -\n (_margins.right! + Math.max(xBarScale(point.x + X_ORIGIN), xBarScale(X_ORIGIN)) - _margins.left!)\n : Math.min(xBarScale(point.x + X_ORIGIN), xBarScale(X_ORIGIN));\n const barHeight: number = Math.max(yBarScale(point.y), 0);\n if (barHeight < 1) {\n return <React.Fragment key={point.x}> </React.Fragment>;\n }\n let startColor: string;\n if (useSingleColor) {\n //if useSingle color , then check if user has given a palette or not\n // and pick the first color from that or else from our paltette.\n startColor = props.colors ? _createColors()(1) : getNextColor(1, 0);\n } else {\n startColor = props.colors ? _createColors()(point.x) : getNextColor(index, 0);\n }\n\n startColor = point.color && !useSingleColor ? point.color : startColor;\n const prevBarWidth = Math.abs(xBarScale(prevPoint + X_ORIGIN) - xBarScale(X_ORIGIN));\n prevPoint > 0 ? (prevWidthPositive += prevBarWidth) : (prevWidthNegative += prevBarWidth);\n const currentWidth = Math.abs(xBarScale(point.x + X_ORIGIN) - xBarScale(X_ORIGIN));\n const gapWidthLTR =\n currentWidth > 2 &&\n ((point.x > X_ORIGIN && currPositiveCounter !== totalPositiveBars) ||\n (point.x < X_ORIGIN && (totalPositiveBars !== 0 || currNegativeCounter > 1)))\n ? 2\n : 0;\n const gapWidthRTL =\n currentWidth > 2 &&\n ((point.x > X_ORIGIN && (totalNegativeBars !== 0 || currPositiveCounter > 1)) ||\n (point.x < X_ORIGIN && currNegativeCounter !== totalNegativeBars))\n ? 2\n : 0;\n prevPoint = point.x;\n let xStart = X_ORIGIN;\n if (_isRtl) {\n xStart = point.x > X_ORIGIN ? barStartX - prevWidthPositive : barStartX + prevWidthNegative;\n } else {\n xStart = point.x > X_ORIGIN ? barStartX + prevWidthPositive : barStartX - prevWidthNegative;\n }\n return (\n <React.Fragment key={`${index}_${point.x}`}>\n <rect\n transform={`translate(0,${0.5 * (yBarScale.bandwidth() - _barHeight)})`}\n key={point.x}\n x={xStart}\n y={yBarScale(point.y)}\n rx={props.roundCorners ? 3 : 0}\n width={currentWidth - (_isRtl ? gapWidthRTL : gapWidthLTR)}\n height={_barHeight}\n aria-labelledby={`toolTip${_calloutId}`}\n aria-label={_getAriaLabel(point)}\n role=\"img\"\n ref={(e: SVGRectElement) => {\n _refCallback(e, point.legend!);\n }}\n onClick={point.onClick}\n onMouseOver={(event: React.MouseEvent<SVGElement, MouseEvent>) => _onBarHover(point, startColor, event)}\n onMouseLeave={_onBarLeave}\n onBlur={_onBarLeave}\n opacity={shouldHighlight ? 1 : 0.1}\n onFocus={event => _onBarFocus(event, point, index, startColor)}\n fill={startColor}\n tabIndex={shouldHighlight ? 0 : undefined}\n />\n </React.Fragment>\n );\n });\n return bars;\n }\n\n function _onLegendHover(customMessage: string): void {\n if (!_isLegendSelected()) {\n setIsLegendHovered(true);\n setSelectedLegendTitle(customMessage);\n }\n }\n\n function _onLegendLeave(isLegendFocused?: boolean): void {\n if (!!isLegendFocused || !_isLegendSelected()) {\n setIsLegendHovered(false);\n setSelectedLegendTitle('');\n setIsLegendSelected(isLegendFocused ? false : _isLegendSelected());\n }\n }\n\n function _getLegendData(data: HorizontalBarChartWithAxisDataPoint[]): JSXElement {\n const { useSingleColor } = props;\n const actions: Legend[] = [];\n const mapLegendToColor: Record<string, string> = {};\n\n data.forEach((point: HorizontalBarChartWithAxisDataPoint, _index: number) => {\n // eslint-disable-next-line @typescript-eslint/no-shadow\n const color: string = useSingleColor ? (props.colors ? _createColors()(1) : getNextColor(1, 0)) : point.color!;\n\n mapLegendToColor[point.legend!] = color;\n });\n Object.entries(mapLegendToColor).forEach(([legendTitle, color]) => {\n // mapping data to the format Legends component needs\n const legend: Legend = {\n title: legendTitle,\n color,\n hoverAction: () => {\n _handleChartMouseLeave();\n _onLegendHover(legendTitle);\n },\n // eslint-disable-next-line @typescript-eslint/no-shadow\n onMouseOutAction: (isLegendSelected?: boolean) => {\n _onLegendLeave(isLegendSelected);\n },\n };\n actions.push(legend);\n });\n const legends = (\n <Legends\n legends={actions}\n enabledWrapLines={props.enabledLegendsWrapLines}\n overflowText={props.legendsOverflowText}\n {...props.legendProps}\n onChange={_onLegendSelectionChange}\n legendRef={_legendsRef}\n />\n );\n return legends;\n }\n\n function _isLegendSelected(): boolean {\n return isLegendSelected!;\n }\n\n /**\n * This function checks if the given legend is highlighted or not.\n * A legend can be highlighted in 2 ways:\n * 1. selection: if the user clicks on it\n * 2. hovering: if there is no selected legend and the user hovers over it\n */\n function _isLegendHighlighted(legend?: string) {\n return _getHighlightedLegend().includes(legend!);\n }\n\n function _getHighlightedLegend() {\n return selectedLegends.length > 0 ? selectedLegends : selectedLegendTitle ? [selectedLegendTitle] : [];\n }\n\n function _onLegendSelectionChange(\n // eslint-disable-next-line @typescript-eslint/no-shadow\n selectedLegends: string[],\n event: React.MouseEvent<HTMLButtonElement>,\n currentLegend?: Legend,\n ): void {\n if (props.legendProps?.canSelectMultipleLegends) {\n setSelectedLegends(selectedLegends);\n setSelectedLegendTitle(currentLegend?.title!);\n } else {\n setSelectedLegends(selectedLegends.slice(-1));\n setSelectedLegendTitle(currentLegend?.title!);\n }\n setIsLegendSelected(selectedLegends.length > 0);\n if (props.legendProps?.onChange) {\n props.legendProps.onChange(selectedLegends, event, currentLegend);\n }\n }\n\n function _getAxisData(yAxisData: IAxisData) {\n if (yAxisData && yAxisData.yAxisDomainValues.length) {\n // For HBCWA x and y Values are swapped\n const { yAxisDomainValues: domainValue } = yAxisData;\n _xMax = Math.max(domainValue[domainValue.length - 1], props.xMaxValue || 0);\n }\n }\n function _getAriaLabel(point: HorizontalBarChartWithAxisDataPoint): string {\n const xValue = point.xAxisCalloutData || point.x;\n const yValue = point.yAxisCalloutData || point.y;\n return point.callOutAccessibilityData?.ariaLabel || `${xValue}. ` + `${yValue}.`;\n }\n\n function _getChartTitle(): string {\n const { chartTitle, data } = props;\n return (chartTitle ? `${chartTitle}. ` : '') + `Horizontal bar chart with ${data?.length || 0} bars. `;\n }\n\n function _getOrderedYAxisLabels() {\n const shouldOrderYAxisLabelsByCategoryOrder =\n _yAxisType === YAxisType.StringAxis && props.yAxisCategoryOrder !== 'default';\n if (!shouldOrderYAxisLabelsByCategoryOrder) {\n // Keep the original ordering logic as the default behavior to ensure backward compatibility\n const reversedBars = [..._points].reverse();\n return reversedBars.map((point: HorizontalBarChartWithAxisDataPoint) => point.y as string);\n }\n\n return sortAxisCategories(_mapCategoryToValues(), props.yAxisCategoryOrder);\n }\n\n function _mapCategoryToValues() {\n const categoryToValues: Record<string, number[]> = {};\n _points.forEach(point => {\n if (!categoryToValues[point.y]) {\n categoryToValues[point.y] = [];\n }\n categoryToValues[point.y].push(point.x);\n });\n return categoryToValues;\n }\n\n function _isChartEmpty(): boolean {\n return !(props.data && props.data.length > 0);\n }\n\n function _updatePosition(newX: number, newY: number): void {\n const threshold = 1; // Set a threshold for movement\n const { x, y } = clickPosition;\n\n // Calculate the distance moved\n const distance = Math.sqrt(Math.pow(newX - x, 2) + Math.pow(newY - y, 2));\n // Update the position only if the distance moved is greater than the threshold\n if (distance > threshold) {\n setClickPosition({ x: newX, y: newY });\n setPopoverOpen(true);\n }\n }\n\n function _getDomainNRangeValues(\n points: HorizontalBarChartWithAxisDataPoint[],\n margins: Margins,\n width: number,\n chartType: ChartTypes,\n isRTL: boolean,\n xAxisType: XAxisTypes,\n barWidth: number,\n tickValues: Date[] | number[] | undefined,\n ) {\n let domainNRangeValue: IDomainNRange;\n if (xAxisType === XAxisTypes.NumericAxis) {\n domainNRangeValue = domainRangeOfNumericForHorizontalBarChartWithAxis(points, margins, width, isRTL, X_ORIGIN);\n } else {\n domainNRangeValue = { dStartValue: 0, dEndValue: 0, rStartValue: 0, rEndValue: 0 };\n }\n return domainNRangeValue;\n }\n\n if (!_isChartEmpty()) {\n _adjustProps();\n const calloutProps: ChartPopoverProps = {\n color: color,\n legend: selectedLegendTitle,\n XValue: xCalloutValue,\n YValue: yCalloutValue ? yCalloutValue : dataForHoverCard,\n ...props.calloutProps,\n ...getAccessibleDataObject(callOutAccessibilityData),\n customCallout: {\n customizedCallout: _getCustomizedCallout() !== null ? _getCustomizedCallout()! : undefined,\n customCalloutProps: props.calloutPropsPerDataPoint\n ? props.calloutPropsPerDataPoint(dataPointCalloutProps!)\n : undefined,\n },\n isCartesian: true,\n isPopoverOpen,\n clickPosition,\n };\n const tickParams = {\n tickValues: props.tickValues,\n tickFormat: props.tickFormat,\n };\n\n _yAxisLabels = _getOrderedYAxisLabels();\n _xMax = Math.max(d3Max(_points, (point: HorizontalBarChartWithAxisDataPoint) => point.x)!, props.xMaxValue || 0);\n const legendBars: JSXElement = _getLegendData(_points);\n return (\n <CartesianChart\n yAxisPadding={_yAxisPadding}\n {...props}\n chartTitle={_getChartTitle()}\n points={_points}\n chartType={ChartTypes.HorizontalBarChartWithAxis}\n xAxisType={_xAxisType}\n yAxisType={_yAxisType}\n getDomainNRangeValues={_getDomainNRangeValues}\n stringDatasetForYAxisDomain={_yAxisLabels}\n calloutProps={calloutProps}\n tickParams={tickParams}\n legendBars={legendBars}\n createYAxis={createYAxisForHorizontalBarChartWithAxis}\n createStringYAxis={createStringYAxisForHorizontalBarChartWithAxis}\n getMinMaxOfYAxis={findHBCWANumericMinMaxOfY}\n barwidth={_barHeight}\n getmargins={_getMargins}\n getYDomainMargins={_getDomainMarginsForHorizontalBarChart}\n getGraphData={_getGraphData}\n getAxisData={_getAxisData}\n onChartMouseLeave={_handleChartMouseLeave}\n componentRef={cartesianChartRef}\n /* eslint-disable react/jsx-no-bind */\n // eslint-disable-next-line @typescript-eslint/no-shadow\n children={(props: ChildProps) => {\n return (\n <>\n <g>{_bars}</g>\n </>\n );\n }}\n />\n );\n } else {\n return (\n <div id={_emptyChartId} role={'alert'} style={{ opacity: '0' }} aria-label={'Graph has no data to display'} />\n );\n }\n});\nHorizontalBarChartWithAxis.displayName = 'HorizontalBarChartWithAxis';\n"],"names":["React","max","d3Max","min","d3Min","scaleLinear","d3ScaleLinear","scaleBand","d3ScaleBand","Legends","useId","CartesianChart","ChartPopover","ChartTypes","getAccessibleDataObject","YAxisType","XAxisTypes","getTypeOfAxis","getNextColor","findHBCWANumericMinMaxOfY","createYAxisForHorizontalBarChartWithAxis","domainRangeOfNumericForHorizontalBarChartWithAxis","createStringYAxisForHorizontalBarChartWithAxis","areArraysEqual","useRtl","DataVizPalette","getColorFromToken","computeLongestBars","groupChartDataByYValue","MIN_DOMAIN_MARGIN","sortAxisCategories","getClosestPairDiffAndRange","useImageExport","HorizontalBarChartWithAxis","forwardRef","props","yAxisCategoryOrder","forwardedRef","_refArray","_calloutId","_isRtl","_xAxisType","data","length","x","NumericAxis","_yAxisType","y","StringAxis","_emptyChartId","_points","_barHeight","_colors","_margins","_bars","_yAxisLabels","_xMax","_calloutAnchorPoint","_longestBarPositiveTotalValue","_longestBarNegativeTotalValue","_domainMargin","_yAxisPadding","yAxisPadding","cartesianChartRef","legendsRef","_legendsRef","componentRef","hideLegend","X_ORIGIN","color","setColor","useState","dataForHoverCard","setDataForHoverCard","isLegendSelected","setIsLegendSelected","legendProps","selectedLegends","selectedLegend","undefined","isLegendHovered","setIsLegendHovered","selectedLegendTitle","setSelectedLegendTitle","xCalloutValue","setXCalloutValue","yCalloutValue","setYCalloutValue","setSelectedLegends","dataPointCalloutProps","setDataPointCalloutProps","callOutAccessibilityData","setCallOutAccessibilityData","isPopoverOpen","setPopoverOpen","clickPosition","setClickPosition","prevPropsRef","useRef","useEffect","current","prevProps","_adjustProps","barHeight","defaultPalette","color6","color1","color5","color7","colors","_getMargins","margins","_renderContentForOnlyBars","point","useSingleColor","selectedPointIndex","forEach","yDataPoint","index","_createColors","XValue","xAxisCalloutData","toString","legend","YValue","yAxisCalloutData","culture","_renderCallout","_getCustomizedCallout","onRenderCalloutPerDataPoint","_getGraphData","xScale","yScale","containerHeight","containerWidth","xElement","yElement","stackedChartData","longestBars","longestPositiveBar","longestNegativeBar","xBarScale","yBarScale","_getScales","xRange","range","allBars","map","singleBarData","_createNumericBars","_createStringBars","flat","increment","_p","color16","domainValues","i","push","colorScale","domain","_refCallback","element","legendTitle","refElement","_onBarHover","mouseEvent","persist","_isLegendHighlighted","_updatePosition","clientX","clientY","enableGradient","_onBarLeave","_handleChartMouseLeave","_onBarFocus","event","refArrayIndexNumber","cx","cy","targetRect","target","getBoundingClientRect","left","width","top","height","obj","isNumericScale","xMax","xMin","xDomain","Math","yMax","yMin","yDomainMax","yMaxValue","yMinProp","yMinValue","yDomainMin","nice","right","bottom","padding","sortedBars","sort","a","b","aValue","parseFloat","bValue","prevWidthPositive","prevWidthNegative","prevPoint","totalPositiveBars","filter","totalNegativeBars","currPositiveCounter","currNegativeCounter","bars","shouldHighlight","barStartX","Fragment","key","startColor","prevBarWidth","abs","currentWidth","gapWidthLTR","gapWidthRTL","xStart","rect","ref","e","rx","roundCorners","onClick","onMouseOver","aria-label","_getAriaLabel","role","aria-labelledby","onMouseLeave","onFocus","onBlur","fill","opacity","tabIndex","_getUniqueYValues","mapY","uniqueY","Object","values","_calculateAppropriateBarHeight","totalWidth","innerPadding","result","closestPairDiff","barWidth","floor","_getDomainMarginsForHorizontalBarChart","barGapRate","numBars","totalHeight","reqHeight","transform","bandwidth","_onLegendHover","customMessage","_isLegendSelected","_onLegendLeave","isLegendFocused","_getLegendData","actions","mapLegendToColor","_index","entries","title","hoverAction","onMouseOutAction","legends","enabledWrapLines","enabledLegendsWrapLines","overflowText","legendsOverflowText","onChange","_onLegendSelectionChange","legendRef","_getHighlightedLegend","includes","currentLegend","canSelectMultipleLegends","slice","_getAxisData","yAxisData","yAxisDomainValues","domainValue","xMaxValue","xValue","yValue","ariaLabel","_getChartTitle","chartTitle","_getOrderedYAxisLabels","shouldOrderYAxisLabelsByCategoryOrder","reversedBars","reverse","_mapCategoryToValues","categoryToValues","_isChartEmpty","newX","newY","threshold","distance","sqrt","pow","_getDomainNRangeValues","points","chartType","isRTL","xAxisType","tickValues","domainNRangeValue","dStartValue","dEndValue","rStartValue","rEndValue","calloutProps","customCallout","customizedCallout","customCalloutProps","calloutPropsPerDataPoint","isCartesian","tickParams","tickFormat","legendBars","yAxisType","getDomainNRangeValues","stringDatasetForYAxisDomain","createYAxis","createStringYAxis","getMinMaxOfYAxis","barwidth","getmargins","getYDomainMargins","getGraphData","getAxisData","onChartMouseLeave","children","g","div","id","style","displayName"],"mappings":"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"}
1
+ {"version":3,"sources":["../src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.tsx"],"sourcesContent":["'use client';\n\nimport * as React from 'react';\nimport { max as d3Max, min as d3Min } from 'd3-array';\nimport { scaleLinear as d3ScaleLinear, ScaleLinear as D3ScaleLinear, scaleBand as d3ScaleBand } from 'd3-scale';\nimport { Legend } from '../../components/Legends/Legends.types';\nimport { Legends } from '../../components/Legends/Legends';\nimport { useId } from '@fluentui/react-utilities';\nimport type { JSXElement } from '@fluentui/react-utilities';\nimport {\n AccessibilityProps,\n HorizontalBarChartWithAxisDataPoint,\n RefArrayData,\n Margins,\n ChartPopoverProps,\n} from '../../index';\nimport { ChildProps } from '../CommonComponents/CartesianChart.types';\nimport { CartesianChart } from '../CommonComponents/CartesianChart';\nimport { HorizontalBarChartWithAxisProps } from './HorizontalBarChartWithAxis.types';\nimport { useHorizontalBarChartWithAxisStyles } from './useHorizontalBarChartWithAxisStyles.styles';\nimport { ChartPopover } from '../CommonComponents/ChartPopover';\nimport {\n ChartTypes,\n IAxisData,\n getAccessibleDataObject,\n YAxisType,\n XAxisTypes,\n NumericAxis,\n StringAxis,\n getTypeOfAxis,\n getNextColor,\n findHBCWANumericMinMaxOfY,\n createYAxisForHorizontalBarChartWithAxis,\n IDomainNRange,\n domainRangeOfNumericForHorizontalBarChartWithAxis,\n createStringYAxisForHorizontalBarChartWithAxis,\n areArraysEqual,\n useRtl,\n DataVizPalette,\n getColorFromToken,\n computeLongestBars,\n groupChartDataByYValue,\n MIN_DOMAIN_MARGIN,\n sortAxisCategories,\n formatScientificLimitWidth,\n} from '../../utilities/index';\nimport { getClosestPairDiffAndRange } from '../../utilities/vbc-utils';\nimport { useImageExport } from '../../utilities/hooks';\ntype ColorScale = (_p?: number) => string;\n\nexport const HorizontalBarChartWithAxis: React.FunctionComponent<HorizontalBarChartWithAxisProps> = React.forwardRef<\n HTMLDivElement,\n HorizontalBarChartWithAxisProps\n>((props = { yAxisCategoryOrder: 'default' }, forwardedRef) => {\n const _refArray: RefArrayData[] = [];\n const _calloutId: string = useId('callout');\n const _isRtl: boolean = useRtl();\n const _xAxisType: XAxisTypes =\n props.data! && props.data!.length > 0\n ? (getTypeOfAxis(props.data![0].x, true) as XAxisTypes)\n : XAxisTypes.NumericAxis;\n const _yAxisType: YAxisType =\n props.data! && props.data!.length > 0\n ? (getTypeOfAxis(props.data![0].y, false) as YAxisType)\n : YAxisType.StringAxis;\n const _emptyChartId: string = useId('_HBCWithAxis_empty');\n let _points: HorizontalBarChartWithAxisDataPoint[] = [];\n let _barHeight: number = 0;\n let _colors: string[] = [];\n let _margins: Margins;\n let _bars: JSXElement[];\n let _yAxisLabels: string[];\n let _xMax: number;\n let _calloutAnchorPoint: HorizontalBarChartWithAxisDataPoint | null;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let _longestBarPositiveTotalValue: number;\n let _longestBarNegativeTotalValue: number;\n let _domainMargin: number = MIN_DOMAIN_MARGIN;\n let _yAxisPadding: number = props.yAxisPadding ?? 0.5;\n const { cartesianChartRef, legendsRef: _legendsRef } = useImageExport(props.componentRef, props.hideLegend);\n const styles = useHorizontalBarChartWithAxisStyles(props);\n const X_ORIGIN: number = 0;\n\n const [color, setColor] = React.useState<string>('');\n const [dataForHoverCard, setDataForHoverCard] = React.useState<number>(0);\n const [isLegendSelected, setIsLegendSelected] = React.useState<boolean>(\n (props.legendProps?.selectedLegends && props.legendProps.selectedLegends.length > 0) ||\n props.legendProps?.selectedLegend !== undefined,\n );\n const [isLegendHovered, setIsLegendHovered] = React.useState<boolean>(false);\n const [selectedLegendTitle, setSelectedLegendTitle] = React.useState<string>(props.legendProps?.selectedLegend ?? '');\n const [xCalloutValue, setXCalloutValue] = React.useState<string>('');\n const [yCalloutValue, setYCalloutValue] = React.useState<string>('');\n const [selectedLegends, setSelectedLegends] = React.useState<string[]>(props.legendProps?.selectedLegends || []);\n const [dataPointCalloutProps, setDataPointCalloutProps] = React.useState<HorizontalBarChartWithAxisDataPoint>();\n const [callOutAccessibilityData, setCallOutAccessibilityData] = React.useState<AccessibilityProps>();\n const [isPopoverOpen, setPopoverOpen] = React.useState<boolean>(false);\n const [clickPosition, setClickPosition] = React.useState({ x: 0, y: 0 });\n const prevPropsRef = React.useRef<HorizontalBarChartWithAxisProps | null>(null);\n\n React.useEffect(() => {\n if (prevPropsRef.current) {\n const prevProps = prevPropsRef.current;\n if (!areArraysEqual(prevProps.legendProps?.selectedLegends, props.legendProps?.selectedLegends)) {\n setSelectedLegends(props.legendProps?.selectedLegends || []);\n }\n }\n prevPropsRef.current = props;\n }, [props]);\n\n function _adjustProps(): void {\n _points = props.data || [];\n _barHeight = props.barHeight || 32;\n const defaultPalette: string[] = [\n getColorFromToken(DataVizPalette.color6),\n getColorFromToken(DataVizPalette.color1),\n getColorFromToken(DataVizPalette.color5),\n getColorFromToken(DataVizPalette.color7),\n ];\n _colors = props.colors! || defaultPalette;\n }\n\n function _getMargins(margins: Margins) {\n _margins = margins;\n }\n\n function _renderContentForOnlyBars(point: HorizontalBarChartWithAxisDataPoint): JSXElement {\n const { useSingleColor = false } = props;\n let selectedPointIndex = 0;\n props.data!.forEach((yDataPoint: HorizontalBarChartWithAxisDataPoint, index: number) => {\n if (yDataPoint.y === point.y) {\n selectedPointIndex = index;\n }\n });\n let color: string;\n if (useSingleColor) {\n //if useSingle color , then check if user has given a palette or not\n // and pick the first color from that or else from our paltette.\n color = props.colors ? _createColors()(1) : getNextColor(1, 0);\n } else {\n color = point.color ? point.color : props.colors ? _createColors()(point.x) : getNextColor(selectedPointIndex, 0);\n }\n return (\n <>\n <ChartPopover\n XValue={point.xAxisCalloutData || point.x.toString()}\n legend={point.legend}\n YValue={point.yAxisCalloutData || point.y}\n color={color}\n culture={props.culture}\n clickPosition={clickPosition}\n isPopoverOpen={isPopoverOpen}\n />\n </>\n );\n }\n\n function _renderCallout(props?: HorizontalBarChartWithAxisDataPoint): JSXElement | null {\n return props ? _renderContentForOnlyBars(props) : null;\n }\n\n function _getCustomizedCallout() {\n return props.onRenderCalloutPerDataPoint\n ? props.onRenderCalloutPerDataPoint(dataPointCalloutProps, _renderCallout)\n : null;\n }\n\n function _getGraphData(\n xScale: NumericAxis,\n yScale: NumericAxis | StringAxis,\n containerHeight: number,\n containerWidth: number,\n xElement?: SVGElement | null,\n yElement?: SVGElement | null,\n ) {\n const stackedChartData = groupChartDataByYValue(_points);\n const longestBars = computeLongestBars(stackedChartData, X_ORIGIN);\n _longestBarPositiveTotalValue = longestBars.longestPositiveBar;\n _longestBarNegativeTotalValue = longestBars.longestNegativeBar;\n\n const { xBarScale, yBarScale } =\n _yAxisType === YAxisType.NumericAxis\n ? _getScales(containerHeight, containerWidth, true)\n : _getScales(containerHeight, containerWidth, false);\n const xRange = xBarScale.range();\n let allBars: JSXElement[] = [];\n // when the chart mounts, the xRange[1] is sometimes seen to be < 0 (like -40) while xRange[0] > 0.\n if (xRange[0] < xRange[1]) {\n allBars = stackedChartData\n .map(singleBarData =>\n _yAxisType === YAxisType.NumericAxis\n ? _createNumericBars(\n containerHeight,\n containerWidth,\n xElement!,\n yElement!,\n singleBarData,\n xBarScale,\n yBarScale,\n )\n : _createStringBars(\n containerHeight,\n containerWidth,\n xElement!,\n yElement!,\n singleBarData,\n xBarScale,\n yBarScale,\n ),\n )\n .flat();\n }\n\n return (_bars = allBars);\n }\n\n function _createColors(): D3ScaleLinear<string, string> | ColorScale {\n const increment = _colors.length <= 1 ? 1 : 1 / (_colors.length - 1);\n const { useSingleColor = false } = props;\n if (useSingleColor) {\n return (_p?: number) => {\n const { colors } = props;\n return colors && colors.length > 0 ? colors[0] : getColorFromToken(DataVizPalette.color16);\n };\n }\n const domainValues = [];\n for (let i = 0; i < _colors.length; i++) {\n domainValues.push(increment * i * _xMax);\n }\n const colorScale = d3ScaleLinear<string>().domain(domainValues).range(_colors);\n return colorScale;\n }\n\n function _refCallback(element: SVGRectElement, legendTitle: string): void {\n _refArray.push({ index: legendTitle, refElement: element });\n }\n\n function _onBarHover(\n point: HorizontalBarChartWithAxisDataPoint,\n color: string,\n mouseEvent: React.MouseEvent<SVGElement, MouseEvent>,\n ): void {\n mouseEvent.persist();\n if ((isLegendSelected === false || _isLegendHighlighted(point.legend)) && _calloutAnchorPoint !== point) {\n _calloutAnchorPoint = point;\n setPopoverOpen(true);\n _updatePosition(mouseEvent.clientX, mouseEvent.clientY);\n setDataForHoverCard(point.x);\n setSelectedLegendTitle(point.legend!);\n setColor(props.useSingleColor || props.enableGradient ? color : point.color!);\n // To display callout value, if no callout value given, taking given point.x value as a string.\n setXCalloutValue(point.yAxisCalloutData! || point.y.toString());\n setYCalloutValue(point.xAxisCalloutData || point.x.toString());\n setDataPointCalloutProps(point);\n setCallOutAccessibilityData(point.callOutAccessibilityData);\n }\n }\n\n function _onBarLeave(): void {\n setPopoverOpen(false);\n }\n\n function _handleChartMouseLeave(): void {\n _calloutAnchorPoint = null;\n setPopoverOpen(false);\n }\n\n function _onBarFocus(\n event: React.FocusEvent<SVGRectElement, Element>,\n point: HorizontalBarChartWithAxisDataPoint,\n refArrayIndexNumber: number,\n color: string,\n ): void {\n let cx = 0;\n let cy = 0;\n\n const targetRect = (event.target as SVGRectElement).getBoundingClientRect();\n cx = targetRect.left + targetRect.width / 2;\n cy = targetRect.top + targetRect.height / 2;\n _updatePosition(cx, cy);\n if ((isLegendSelected === false || _isLegendHighlighted(point.legend)) && _calloutAnchorPoint !== point) {\n _refArray.forEach((obj: RefArrayData, index: number) => {\n if (refArrayIndexNumber === index) {\n setPopoverOpen(true);\n setSelectedLegendTitle(point.legend!);\n setDataForHoverCard(point.x);\n setColor(props.useSingleColor ? color : point.color!);\n setXCalloutValue(point.yAxisCalloutData || point.y.toString());\n setYCalloutValue(point.xAxisCalloutData! || point.x.toString());\n setDataPointCalloutProps(point);\n setCallOutAccessibilityData(point.callOutAccessibilityData);\n }\n });\n }\n }\n\n function _getScales(\n containerHeight: number,\n containerWidth: number,\n isNumericScale: boolean,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n ): { xBarScale: any; yBarScale: any } {\n const xMax = _longestBarPositiveTotalValue;\n const xMin = _longestBarNegativeTotalValue;\n const xDomain = [Math.min(X_ORIGIN, xMin), Math.max(X_ORIGIN, xMax)];\n if (isNumericScale) {\n const yMax = d3Max(_points, (point: HorizontalBarChartWithAxisDataPoint) => point.y as number)!;\n const yMin = d3Min(_points, (point: HorizontalBarChartWithAxisDataPoint) => point.y as number)!;\n const yDomainMax = Math.max(yMax, props.yMaxValue || 0);\n // Default to 0 if yMinValue is not provided.\n const yMinProp = props.yMinValue || 0;\n const yDomainMin = Math.min(yMin, yMinProp);\n const xBarScale = d3ScaleLinear()\n .domain(xDomain)\n .nice()\n .range([_margins.left!, containerWidth - _margins.right!]);\n const yBarScale = d3ScaleLinear()\n .domain([yDomainMin, yDomainMax])\n .range([containerHeight - (_margins.bottom! + _domainMargin), _margins.top! + _domainMargin]);\n return { xBarScale, yBarScale };\n } else {\n // please note these padding default values must be consistent in here\n // and CatrtesianChartBase w for more details refer example\n // http://using-d3js.com/04_07_ordinal_scales.html\n const yBarScale = d3ScaleBand()\n .domain(_yAxisLabels)\n .range([containerHeight - (_margins.bottom! + _domainMargin), _margins.top! + _domainMargin])\n .padding(_yAxisPadding);\n\n const xBarScale = d3ScaleLinear()\n .domain(xDomain)\n .nice()\n .range([_margins.left!, containerWidth - _margins.right!]);\n return { xBarScale, yBarScale };\n }\n }\n\n function _calculateBarTotals(singleBarData: HorizontalBarChartWithAxisDataPoint[]) {\n const totalPositiveValue = singleBarData\n .filter(point => point.x >= X_ORIGIN)\n .reduce((sum, point) => sum + point.x, 0);\n const totalNegativeValue = singleBarData\n .filter(point => point.x < X_ORIGIN)\n .reduce((sum, point) => sum + point.x, 0);\n const totalBarValue = totalPositiveValue + totalNegativeValue;\n const showLabelOnPositiveSide = totalBarValue >= 0;\n\n const totalPositiveBars = singleBarData.filter(point => point.x >= X_ORIGIN).length;\n const totalNegativeBars = singleBarData.length - totalPositiveBars;\n\n const shouldShowLabel = (\n isPositiveBar: boolean,\n currPositiveCounter: number,\n currNegativeCounter: number,\n ): boolean => {\n const isLastPositiveBar = isPositiveBar && currPositiveCounter === totalPositiveBars;\n const isLastNegativeBar = !isPositiveBar && currNegativeCounter === totalNegativeBars;\n return showLabelOnPositiveSide ? isLastPositiveBar : isLastNegativeBar;\n };\n\n return { totalPositiveValue, totalNegativeValue, totalBarValue, showLabelOnPositiveSide, shouldShowLabel };\n }\n\n function _createNumericBars(\n containerHeight: number,\n containerWidth: number,\n xElement: SVGElement,\n yElement: SVGElement,\n singleBarData: HorizontalBarChartWithAxisDataPoint[],\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n xBarScale: any,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n yBarScale: any,\n ): JSXElement[] {\n const { useSingleColor = false } = props;\n const sortedBars: HorizontalBarChartWithAxisDataPoint[] = [...singleBarData];\n sortedBars.sort((a, b) => {\n const aValue = typeof a.y === 'number' ? a.y : parseFloat(a.y);\n const bValue = typeof b.y === 'number' ? b.y : parseFloat(b.y);\n return bValue - aValue;\n });\n\n let prevWidthPositive = 0;\n let prevWidthNegative = 0;\n let prevPoint = 0;\n\n const totalPositiveBars = singleBarData.filter(\n (point: HorizontalBarChartWithAxisDataPoint) => point.x >= X_ORIGIN,\n ).length;\n const totalNegativeBars = singleBarData.length - totalPositiveBars;\n\n const { totalBarValue, shouldShowLabel } = _calculateBarTotals(singleBarData);\n\n let currPositiveCounter = 0;\n let currNegativeCounter = 0;\n\n const bars = sortedBars.map((point: HorizontalBarChartWithAxisDataPoint, index: number) => {\n let shouldHighlight = true;\n if (isLegendHovered || isLegendSelected) {\n shouldHighlight = _isLegendHighlighted(point.legend);\n }\n if (point.x >= X_ORIGIN) {\n ++currPositiveCounter;\n }\n if (point.x < X_ORIGIN) {\n ++currNegativeCounter;\n }\n const barStartX = _isRtl\n ? containerWidth -\n (_margins.right! + Math.max(xBarScale(point.x + X_ORIGIN), xBarScale(X_ORIGIN)) - _margins.left!)\n : Math.min(xBarScale(point.x + X_ORIGIN), xBarScale(X_ORIGIN));\n const barHeight: number = Math.max(yBarScale(point.y), 0);\n if (barHeight < 1) {\n return <React.Fragment key={point.x}> </React.Fragment>;\n }\n let startColor: string;\n if (useSingleColor) {\n //if useSingle color , then check if user has given a palette or not\n // and pick the first color from that or else from our paltette.\n startColor = props.colors ? _createColors()(1) : getNextColor(1, 0);\n } else {\n startColor = props.colors ? _createColors()(point.x) : getNextColor(index, 0);\n }\n\n startColor = point.color && !useSingleColor ? point.color : startColor;\n\n const prevBarWidth = Math.abs(xBarScale(prevPoint + X_ORIGIN) - xBarScale(X_ORIGIN));\n prevPoint > X_ORIGIN ? (prevWidthPositive += prevBarWidth) : (prevWidthNegative += prevBarWidth);\n const currentWidth = Math.abs(xBarScale(point.x + X_ORIGIN) - xBarScale(X_ORIGIN));\n const gapWidthLTR =\n currentWidth > 2 &&\n ((point.x > X_ORIGIN && currPositiveCounter !== totalPositiveBars) ||\n (point.x < X_ORIGIN && (totalPositiveBars !== 0 || currNegativeCounter > 1)))\n ? 2\n : 0;\n const gapWidthRTL =\n currentWidth > 2 &&\n ((point.x > X_ORIGIN && (totalNegativeBars !== 0 || currPositiveCounter > 1)) ||\n (point.x < X_ORIGIN && currNegativeCounter !== totalNegativeBars))\n ? 2\n : 0;\n let xStart = X_ORIGIN;\n if (_isRtl) {\n xStart = point.x > X_ORIGIN ? barStartX - prevWidthPositive : barStartX + prevWidthNegative;\n } else {\n xStart = point.x > X_ORIGIN ? barStartX + prevWidthPositive : barStartX - prevWidthNegative;\n }\n prevPoint = point.x;\n\n const barWidth = currentWidth - (_isRtl ? gapWidthRTL : gapWidthLTR);\n const barEndX = _isRtl\n ? point.x >= X_ORIGIN\n ? xStart\n : xStart + barWidth\n : point.x >= X_ORIGIN\n ? xStart + barWidth\n : xStart;\n const isPositiveBar = point.x >= X_ORIGIN;\n const showLabel = shouldShowLabel(isPositiveBar, currPositiveCounter, currNegativeCounter);\n\n return (\n <React.Fragment key={`${index}_${point.x}`}>\n <rect\n key={point.y}\n x={xStart}\n y={yBarScale(point.y) - _barHeight / 2}\n width={barWidth}\n height={_barHeight}\n ref={(e: SVGRectElement) => {\n _refCallback(e, point.legend!);\n }}\n rx={props.roundCorners ? 3 : 0}\n onClick={point.onClick}\n onMouseOver={(event: React.MouseEvent<SVGElement, MouseEvent>) => _onBarHover(point, startColor, event)}\n aria-label={_getAriaLabel(point)}\n role=\"img\"\n aria-labelledby={`toolTip${_calloutId}`}\n onMouseLeave={_onBarLeave}\n onFocus={event => _onBarFocus(event, point, index, startColor)}\n onBlur={_onBarLeave}\n fill={startColor}\n opacity={shouldHighlight ? 1 : 0.1}\n tabIndex={shouldHighlight ? 0 : undefined}\n />\n {showLabel && _renderBarLabel(barEndX, yBarScale(point.y) - _barHeight / 2, totalBarValue, isPositiveBar)}\n </React.Fragment>\n );\n });\n return bars;\n }\n\n function _getUniqueYValues() {\n const mapY: Record<string, number | string> = {};\n props.data?.forEach((point: HorizontalBarChartWithAxisDataPoint) => {\n mapY[point.y] = point.y;\n });\n const uniqueY = Object.values(mapY);\n return uniqueY;\n }\n\n function _calculateAppropriateBarHeight(data: number[] | Date[], totalWidth: number, innerPadding: number) {\n const result = getClosestPairDiffAndRange(data);\n if (!result || result[1] === 0) {\n return 16;\n }\n const closestPairDiff = result[0];\n let range = result[1];\n const yMax = d3Max(_points, (point: HorizontalBarChartWithAxisDataPoint) => point.y as number)!;\n // Since we are always rendering from 0 to yMax, we need to ensure that the range is at least yMax\n // to calculate the bar height correctly.\n range = Math.max(range, yMax);\n // Refer to https://microsoft.github.io/fluentui-charting-contrib/docs/rfcs/fix-overlapping-bars-on-continuous-axes\n // for the derivation of the following formula.\n const barWidth = Math.floor(\n (totalWidth * closestPairDiff * (1 - innerPadding)) / (range + closestPairDiff * (1 - innerPadding)),\n );\n return barWidth;\n }\n\n function _getDomainMarginsForHorizontalBarChart(containerHeight: number): Margins {\n _domainMargin = MIN_DOMAIN_MARGIN;\n const uniqueY = _getUniqueYValues();\n /** Rate at which the space between the bars changes wrt the bar height */\n _yAxisPadding = _yAxisPadding === 1 ? 0.99 : _yAxisPadding;\n const barGapRate = _yAxisPadding / (1 - _yAxisPadding);\n const numBars = uniqueY.length + (uniqueY.length - 1) * barGapRate;\n // Total height available to render the bars\n const totalHeight = containerHeight - (_margins.top! + MIN_DOMAIN_MARGIN) - (_margins.bottom! + MIN_DOMAIN_MARGIN);\n if (_yAxisType !== YAxisType.StringAxis) {\n // Calculate bar height dynamically\n _barHeight =\n props.barHeight || _calculateAppropriateBarHeight(uniqueY as number[] | Date[], totalHeight, _yAxisPadding);\n _barHeight = Math.max(_barHeight, 1);\n _domainMargin += _barHeight / 2;\n } else {\n // Calculate the appropriate bar height\n _barHeight = props.barHeight || totalHeight / numBars;\n /** Total height required to render the bars. Directly proportional to bar height */\n const reqHeight = numBars * _barHeight;\n if (totalHeight >= reqHeight) {\n // Center align the chart by setting equal left and right margins for domain\n _domainMargin = MIN_DOMAIN_MARGIN + (totalHeight - reqHeight) / 2;\n }\n }\n\n return {\n ..._margins,\n top: _margins.top! + _domainMargin,\n bottom: _margins.bottom! + _domainMargin,\n };\n }\n\n function _createStringBars(\n containerHeight: number,\n containerWidth: number,\n xElement: SVGElement,\n yElement: SVGElement,\n singleBarData: HorizontalBarChartWithAxisDataPoint[],\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n xBarScale: any,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n yBarScale: any,\n ): JSXElement[] {\n const { useSingleColor = false } = props;\n let prevWidthPositive = 0;\n let prevWidthNegative = 0;\n let prevPoint = 0;\n const totalPositiveBars = singleBarData.filter(\n (point: HorizontalBarChartWithAxisDataPoint) => point.x >= X_ORIGIN,\n ).length;\n const totalNegativeBars = singleBarData.length - totalPositiveBars;\n const { totalBarValue, shouldShowLabel } = _calculateBarTotals(singleBarData);\n let currPositiveCounter = 0;\n let currNegativeCounter = 0;\n const bars = singleBarData.map((point: HorizontalBarChartWithAxisDataPoint, index: number) => {\n let shouldHighlight = true;\n if (isLegendHovered || isLegendSelected) {\n shouldHighlight = _isLegendHighlighted(point.legend);\n }\n if (point.x >= X_ORIGIN) {\n ++currPositiveCounter;\n }\n if (point.x < X_ORIGIN) {\n ++currNegativeCounter;\n }\n const barStartX = _isRtl\n ? containerWidth -\n (_margins.right! + Math.max(xBarScale(point.x + X_ORIGIN), xBarScale(X_ORIGIN)) - _margins.left!)\n : Math.min(xBarScale(point.x + X_ORIGIN), xBarScale(X_ORIGIN));\n const barHeight: number = Math.max(yBarScale(point.y), 0);\n if (barHeight < 1) {\n return <React.Fragment key={point.x}> </React.Fragment>;\n }\n let startColor: string;\n if (useSingleColor) {\n //if useSingle color , then check if user has given a palette or not\n // and pick the first color from that or else from our paltette.\n startColor = props.colors ? _createColors()(1) : getNextColor(1, 0);\n } else {\n startColor = props.colors ? _createColors()(point.x) : getNextColor(index, 0);\n }\n\n startColor = point.color && !useSingleColor ? point.color : startColor;\n const prevBarWidth = Math.abs(xBarScale(prevPoint + X_ORIGIN) - xBarScale(X_ORIGIN));\n prevPoint > 0 ? (prevWidthPositive += prevBarWidth) : (prevWidthNegative += prevBarWidth);\n const currentWidth = Math.abs(xBarScale(point.x + X_ORIGIN) - xBarScale(X_ORIGIN));\n const gapWidthLTR =\n currentWidth > 2 &&\n ((point.x > X_ORIGIN && currPositiveCounter !== totalPositiveBars) ||\n (point.x < X_ORIGIN && (totalPositiveBars !== 0 || currNegativeCounter > 1)))\n ? 2\n : 0;\n const gapWidthRTL =\n currentWidth > 2 &&\n ((point.x > X_ORIGIN && (totalNegativeBars !== 0 || currPositiveCounter > 1)) ||\n (point.x < X_ORIGIN && currNegativeCounter !== totalNegativeBars))\n ? 2\n : 0;\n prevPoint = point.x;\n let xStart = X_ORIGIN;\n if (_isRtl) {\n xStart = point.x > X_ORIGIN ? barStartX - prevWidthPositive : barStartX + prevWidthNegative;\n } else {\n xStart = point.x > X_ORIGIN ? barStartX + prevWidthPositive : barStartX - prevWidthNegative;\n }\n\n const barWidth = currentWidth - (_isRtl ? gapWidthRTL : gapWidthLTR);\n const barEndX = _isRtl\n ? point.x >= X_ORIGIN\n ? xStart\n : xStart + barWidth\n : point.x >= X_ORIGIN\n ? xStart + barWidth\n : xStart;\n const isPositiveBar = point.x >= X_ORIGIN;\n const yPosition = yBarScale(point.y) + 0.5 * (yBarScale.bandwidth() - _barHeight);\n const showLabel = shouldShowLabel(isPositiveBar, currPositiveCounter, currNegativeCounter);\n\n return (\n <React.Fragment key={`${index}_${point.x}`}>\n <rect\n transform={`translate(0,${0.5 * (yBarScale.bandwidth() - _barHeight)})`}\n key={point.x}\n x={xStart}\n y={yBarScale(point.y)}\n rx={props.roundCorners ? 3 : 0}\n width={barWidth}\n height={_barHeight}\n aria-labelledby={`toolTip${_calloutId}`}\n aria-label={_getAriaLabel(point)}\n role=\"img\"\n ref={(e: SVGRectElement) => {\n _refCallback(e, point.legend!);\n }}\n onClick={point.onClick}\n onMouseOver={(event: React.MouseEvent<SVGElement, MouseEvent>) => _onBarHover(point, startColor, event)}\n onMouseLeave={_onBarLeave}\n onBlur={_onBarLeave}\n opacity={shouldHighlight ? 1 : 0.1}\n onFocus={event => _onBarFocus(event, point, index, startColor)}\n fill={startColor}\n tabIndex={shouldHighlight ? 0 : undefined}\n />\n {showLabel && _renderBarLabel(barEndX, yPosition, totalBarValue, isPositiveBar)}\n </React.Fragment>\n );\n });\n return bars;\n }\n\n function _onLegendHover(customMessage: string): void {\n if (!_isLegendSelected()) {\n setIsLegendHovered(true);\n setSelectedLegendTitle(customMessage);\n }\n }\n\n function _onLegendLeave(isLegendFocused?: boolean): void {\n if (!!isLegendFocused || !_isLegendSelected()) {\n setIsLegendHovered(false);\n setSelectedLegendTitle('');\n setIsLegendSelected(isLegendFocused ? false : _isLegendSelected());\n }\n }\n\n function _getLegendData(data: HorizontalBarChartWithAxisDataPoint[]): JSXElement {\n const { useSingleColor } = props;\n const actions: Legend[] = [];\n const mapLegendToColor: Record<string, string> = {};\n\n data.forEach((point: HorizontalBarChartWithAxisDataPoint, _index: number) => {\n // eslint-disable-next-line @typescript-eslint/no-shadow\n const color: string = useSingleColor ? (props.colors ? _createColors()(1) : getNextColor(1, 0)) : point.color!;\n\n mapLegendToColor[point.legend!] = color;\n });\n Object.entries(mapLegendToColor).forEach(([legendTitle, color]) => {\n // mapping data to the format Legends component needs\n const legend: Legend = {\n title: legendTitle,\n color,\n hoverAction: () => {\n _handleChartMouseLeave();\n _onLegendHover(legendTitle);\n },\n // eslint-disable-next-line @typescript-eslint/no-shadow\n onMouseOutAction: (isLegendSelected?: boolean) => {\n _onLegendLeave(isLegendSelected);\n },\n };\n actions.push(legend);\n });\n const legends = (\n <Legends\n legends={actions}\n enabledWrapLines={props.enabledLegendsWrapLines}\n overflowText={props.legendsOverflowText}\n {...props.legendProps}\n onChange={_onLegendSelectionChange}\n legendRef={_legendsRef}\n />\n );\n return legends;\n }\n\n function _isLegendSelected(): boolean {\n return isLegendSelected!;\n }\n\n /**\n * This function checks if the given legend is highlighted or not.\n * A legend can be highlighted in 2 ways:\n * 1. selection: if the user clicks on it\n * 2. hovering: if there is no selected legend and the user hovers over it\n */\n function _isLegendHighlighted(legend?: string) {\n return _getHighlightedLegend().includes(legend!);\n }\n\n function _getHighlightedLegend() {\n return selectedLegends.length > 0 ? selectedLegends : selectedLegendTitle ? [selectedLegendTitle] : [];\n }\n function _onLegendSelectionChange(\n // eslint-disable-next-line @typescript-eslint/no-shadow\n selectedLegends: string[],\n event: React.MouseEvent<HTMLButtonElement>,\n currentLegend?: Legend,\n ): void {\n if (props.legendProps?.canSelectMultipleLegends) {\n setSelectedLegends(selectedLegends);\n setSelectedLegendTitle(currentLegend?.title!);\n } else {\n setSelectedLegends(selectedLegends.slice(-1));\n setSelectedLegendTitle(currentLegend?.title!);\n }\n setIsLegendSelected(selectedLegends.length > 0);\n if (props.legendProps?.onChange) {\n props.legendProps.onChange(selectedLegends, event, currentLegend);\n }\n }\n\n function _getAxisData(yAxisData: IAxisData) {\n if (yAxisData && yAxisData.yAxisDomainValues.length) {\n // For HBCWA x and y Values are swapped\n const { yAxisDomainValues: domainValue } = yAxisData;\n _xMax = Math.max(domainValue[domainValue.length - 1], props.xMaxValue || 0);\n }\n }\n function _getAriaLabel(point: HorizontalBarChartWithAxisDataPoint): string {\n const xValue = point.xAxisCalloutData || point.x;\n const yValue = point.yAxisCalloutData || point.y;\n return point.callOutAccessibilityData?.ariaLabel || `${xValue}. ` + `${yValue}.`;\n }\n\n function _renderBarLabel(\n xPosition: number,\n yPosition: number,\n value: number,\n isPositiveBar: boolean,\n ): JSXElement | null {\n if (props.hideLabels || _barHeight < 16) {\n return null;\n }\n\n return (\n <text\n x={xPosition}\n y={yPosition + _barHeight / 2}\n textAnchor={_isRtl ? (isPositiveBar ? 'end' : 'start') : isPositiveBar ? 'start' : 'end'}\n transform={`translate(${isPositiveBar ? (_isRtl ? -4 : 4) : _isRtl ? 4 : -4})`}\n dominantBaseline=\"central\"\n className={styles.barLabel}\n aria-hidden={true}\n style={{ direction: 'ltr', unicodeBidi: 'isolate' }}\n >\n {formatScientificLimitWidth(value)}\n </text>\n );\n }\n\n function _getChartTitle(): string {\n const { chartTitle, data } = props;\n return (chartTitle ? `${chartTitle}. ` : '') + `Horizontal bar chart with ${data?.length || 0} bars. `;\n }\n\n function _getOrderedYAxisLabels() {\n const shouldOrderYAxisLabelsByCategoryOrder =\n _yAxisType === YAxisType.StringAxis && props.yAxisCategoryOrder !== 'default';\n if (!shouldOrderYAxisLabelsByCategoryOrder) {\n // Keep the original ordering logic as the default behavior to ensure backward compatibility\n const reversedBars = [..._points].reverse();\n return reversedBars.map((point: HorizontalBarChartWithAxisDataPoint) => point.y as string);\n }\n\n return sortAxisCategories(_mapCategoryToValues(), props.yAxisCategoryOrder);\n }\n\n function _mapCategoryToValues() {\n const categoryToValues: Record<string, number[]> = {};\n _points.forEach(point => {\n if (!categoryToValues[point.y]) {\n categoryToValues[point.y] = [];\n }\n categoryToValues[point.y].push(point.x);\n });\n return categoryToValues;\n }\n\n function _isChartEmpty(): boolean {\n return !(props.data && props.data.length > 0);\n }\n\n function _updatePosition(newX: number, newY: number): void {\n const threshold = 1; // Set a threshold for movement\n const { x, y } = clickPosition;\n\n // Calculate the distance moved\n const distance = Math.sqrt(Math.pow(newX - x, 2) + Math.pow(newY - y, 2));\n // Update the position only if the distance moved is greater than the threshold\n if (distance > threshold) {\n setClickPosition({ x: newX, y: newY });\n setPopoverOpen(true);\n }\n }\n\n function _getDomainNRangeValues(\n points: HorizontalBarChartWithAxisDataPoint[],\n margins: Margins,\n width: number,\n chartType: ChartTypes,\n isRTL: boolean,\n xAxisType: XAxisTypes,\n barWidth: number,\n tickValues: Date[] | number[] | undefined,\n ) {\n let domainNRangeValue: IDomainNRange;\n if (xAxisType === XAxisTypes.NumericAxis) {\n domainNRangeValue = domainRangeOfNumericForHorizontalBarChartWithAxis(points, margins, width, isRTL, X_ORIGIN);\n } else {\n domainNRangeValue = { dStartValue: 0, dEndValue: 0, rStartValue: 0, rEndValue: 0 };\n }\n return domainNRangeValue;\n }\n\n if (!_isChartEmpty()) {\n _adjustProps();\n const calloutProps: ChartPopoverProps = {\n color: color,\n legend: selectedLegendTitle,\n XValue: xCalloutValue,\n YValue: yCalloutValue ? yCalloutValue : dataForHoverCard,\n ...props.calloutProps,\n ...getAccessibleDataObject(callOutAccessibilityData),\n customCallout: {\n customizedCallout: _getCustomizedCallout() !== null ? _getCustomizedCallout()! : undefined,\n customCalloutProps: props.calloutPropsPerDataPoint\n ? props.calloutPropsPerDataPoint(dataPointCalloutProps!)\n : undefined,\n },\n isCartesian: true,\n isPopoverOpen,\n clickPosition,\n };\n const tickParams = {\n tickValues: props.tickValues,\n tickFormat: props.tickFormat,\n };\n\n _yAxisLabels = _getOrderedYAxisLabels();\n _xMax = Math.max(d3Max(_points, (point: HorizontalBarChartWithAxisDataPoint) => point.x)!, props.xMaxValue || 0);\n const legendBars: JSXElement = _getLegendData(_points);\n return (\n <CartesianChart\n yAxisPadding={_yAxisPadding}\n {...props}\n chartTitle={_getChartTitle()}\n points={_points}\n chartType={ChartTypes.HorizontalBarChartWithAxis}\n xAxisType={_xAxisType}\n yAxisType={_yAxisType}\n getDomainNRangeValues={_getDomainNRangeValues}\n stringDatasetForYAxisDomain={_yAxisLabels}\n calloutProps={calloutProps}\n tickParams={tickParams}\n legendBars={legendBars}\n createYAxis={createYAxisForHorizontalBarChartWithAxis}\n createStringYAxis={createStringYAxisForHorizontalBarChartWithAxis}\n getMinMaxOfYAxis={findHBCWANumericMinMaxOfY}\n barwidth={_barHeight}\n getmargins={_getMargins}\n getYDomainMargins={_getDomainMarginsForHorizontalBarChart}\n getGraphData={_getGraphData}\n getAxisData={_getAxisData}\n onChartMouseLeave={_handleChartMouseLeave}\n componentRef={cartesianChartRef}\n /* eslint-disable react/jsx-no-bind */\n // eslint-disable-next-line @typescript-eslint/no-shadow\n children={(props: ChildProps) => {\n return (\n <>\n <g>{_bars}</g>\n </>\n );\n }}\n />\n );\n } else {\n return (\n <div id={_emptyChartId} role={'alert'} style={{ opacity: '0' }} aria-label={'Graph has no data to display'} />\n );\n }\n});\nHorizontalBarChartWithAxis.displayName = 'HorizontalBarChartWithAxis';\n"],"names":["React","max","d3Max","min","d3Min","scaleLinear","d3ScaleLinear","scaleBand","d3ScaleBand","Legends","useId","CartesianChart","useHorizontalBarChartWithAxisStyles","ChartPopover","ChartTypes","getAccessibleDataObject","YAxisType","XAxisTypes","getTypeOfAxis","getNextColor","findHBCWANumericMinMaxOfY","createYAxisForHorizontalBarChartWithAxis","domainRangeOfNumericForHorizontalBarChartWithAxis","createStringYAxisForHorizontalBarChartWithAxis","areArraysEqual","useRtl","DataVizPalette","getColorFromToken","computeLongestBars","groupChartDataByYValue","MIN_DOMAIN_MARGIN","sortAxisCategories","formatScientificLimitWidth","getClosestPairDiffAndRange","useImageExport","HorizontalBarChartWithAxis","forwardRef","props","yAxisCategoryOrder","forwardedRef","_refArray","_calloutId","_isRtl","_xAxisType","data","length","x","NumericAxis","_yAxisType","y","StringAxis","_emptyChartId","_points","_barHeight","_colors","_margins","_bars","_yAxisLabels","_xMax","_calloutAnchorPoint","_longestBarPositiveTotalValue","_longestBarNegativeTotalValue","_domainMargin","_yAxisPadding","yAxisPadding","cartesianChartRef","legendsRef","_legendsRef","componentRef","hideLegend","styles","X_ORIGIN","color","setColor","useState","dataForHoverCard","setDataForHoverCard","isLegendSelected","setIsLegendSelected","legendProps","selectedLegends","selectedLegend","undefined","isLegendHovered","setIsLegendHovered","selectedLegendTitle","setSelectedLegendTitle","xCalloutValue","setXCalloutValue","yCalloutValue","setYCalloutValue","setSelectedLegends","dataPointCalloutProps","setDataPointCalloutProps","callOutAccessibilityData","setCallOutAccessibilityData","isPopoverOpen","setPopoverOpen","clickPosition","setClickPosition","prevPropsRef","useRef","useEffect","current","prevProps","_adjustProps","barHeight","defaultPalette","color6","color1","color5","color7","colors","_getMargins","margins","_renderContentForOnlyBars","point","useSingleColor","selectedPointIndex","forEach","yDataPoint","index","_createColors","XValue","xAxisCalloutData","toString","legend","YValue","yAxisCalloutData","culture","_renderCallout","_getCustomizedCallout","onRenderCalloutPerDataPoint","_getGraphData","xScale","yScale","containerHeight","containerWidth","xElement","yElement","stackedChartData","longestBars","longestPositiveBar","longestNegativeBar","xBarScale","yBarScale","_getScales","xRange","range","allBars","map","singleBarData","_createNumericBars","_createStringBars","flat","increment","_p","color16","domainValues","i","push","colorScale","domain","_refCallback","element","legendTitle","refElement","_onBarHover","mouseEvent","persist","_isLegendHighlighted","_updatePosition","clientX","clientY","enableGradient","_onBarLeave","_handleChartMouseLeave","_onBarFocus","event","refArrayIndexNumber","cx","cy","targetRect","target","getBoundingClientRect","left","width","top","height","obj","isNumericScale","xMax","xMin","xDomain","Math","yMax","yMin","yDomainMax","yMaxValue","yMinProp","yMinValue","yDomainMin","nice","right","bottom","padding","_calculateBarTotals","totalPositiveValue","filter","reduce","sum","totalNegativeValue","totalBarValue","showLabelOnPositiveSide","totalPositiveBars","totalNegativeBars","shouldShowLabel","isPositiveBar","currPositiveCounter","currNegativeCounter","isLastPositiveBar","isLastNegativeBar","sortedBars","sort","a","b","aValue","parseFloat","bValue","prevWidthPositive","prevWidthNegative","prevPoint","bars","shouldHighlight","barStartX","Fragment","key","startColor","prevBarWidth","abs","currentWidth","gapWidthLTR","gapWidthRTL","xStart","barWidth","barEndX","showLabel","rect","ref","e","rx","roundCorners","onClick","onMouseOver","aria-label","_getAriaLabel","role","aria-labelledby","onMouseLeave","onFocus","onBlur","fill","opacity","tabIndex","_renderBarLabel","_getUniqueYValues","mapY","uniqueY","Object","values","_calculateAppropriateBarHeight","totalWidth","innerPadding","result","closestPairDiff","floor","_getDomainMarginsForHorizontalBarChart","barGapRate","numBars","totalHeight","reqHeight","yPosition","bandwidth","transform","_onLegendHover","customMessage","_isLegendSelected","_onLegendLeave","isLegendFocused","_getLegendData","actions","mapLegendToColor","_index","entries","title","hoverAction","onMouseOutAction","legends","enabledWrapLines","enabledLegendsWrapLines","overflowText","legendsOverflowText","onChange","_onLegendSelectionChange","legendRef","_getHighlightedLegend","includes","currentLegend","canSelectMultipleLegends","slice","_getAxisData","yAxisData","yAxisDomainValues","domainValue","xMaxValue","xValue","yValue","ariaLabel","xPosition","value","hideLabels","text","textAnchor","dominantBaseline","className","barLabel","aria-hidden","style","direction","unicodeBidi","_getChartTitle","chartTitle","_getOrderedYAxisLabels","shouldOrderYAxisLabelsByCategoryOrder","reversedBars","reverse","_mapCategoryToValues","categoryToValues","_isChartEmpty","newX","newY","threshold","distance","sqrt","pow","_getDomainNRangeValues","points","chartType","isRTL","xAxisType","tickValues","domainNRangeValue","dStartValue","dEndValue","rStartValue","rEndValue","calloutProps","customCallout","customizedCallout","customCalloutProps","calloutPropsPerDataPoint","isCartesian","tickParams","tickFormat","legendBars","yAxisType","getDomainNRangeValues","stringDatasetForYAxisDomain","createYAxis","createStringYAxis","getMinMaxOfYAxis","barwidth","getmargins","getYDomainMargins","getGraphData","getAxisData","onChartMouseLeave","children","g","div","id","displayName"],"mappings":"AAAA;;;;;+BAkDamC;;;;;;;iEAhDU,QAAQ;yBACY,WAAW;yBAC+C,WAAW;yBAExF,mCAAmC;gCACrC,4BAA4B;gCAUnB,qCAAqC;2DAEhB,+CAA+C;8BACtE,mCAAmC;uBAyBzD,wBAAwB;0BACY,4BAA4B;uBACxC,wBAAwB;AAGhD,mCAAMA,WAAAA,GAAuFnC,OAAMoC,UAAU,CAGlH,CAACC,QAAQ;IAAEC,oBAAoB;AAAU,CAAC,EAAEC;QAiCzCF,oBACCA,qBAGyEA,qBAGNA;IAvCvE,MAAMG,YAA4B,EAAE;IACpC,MAAMC,iBAAqB/B,qBAAAA,EAAM;IACjC,MAAMgC,aAAkBjB,aAAAA;IACxB,MAAMkB,aACJN,MAAMO,IAAI,IAAKP,MAAMO,IAAI,CAAEC,MAAM,GAAG,QAC/B3B,oBAAAA,EAAcmB,MAAMO,IAAK,CAAC,EAAE,CAACE,CAAC,EAAE,QACjC7B,iBAAAA,CAAW8B,WAAW;IAC5B,MAAMC,aACJX,MAAMO,IAAI,IAAKP,MAAMO,IAAI,CAAEC,MAAM,GAAG,QAC/B3B,oBAAAA,EAAcmB,MAAMO,IAAK,CAAC,EAAE,CAACK,CAAC,EAAE,SACjCjC,gBAAAA,CAAUkC,UAAU;IAC1B,MAAMC,oBAAwBzC,qBAAAA,EAAM;IACpC,IAAI0C,UAAiD,EAAE;IACvD,IAAIC,aAAqB;IACzB,IAAIC,UAAoB,EAAE;IAC1B,IAAIC;IACJ,IAAIC;IACJ,IAAIC;IACJ,IAAIC;IACJ,IAAIC;IACJ,8DAA8D;IAC9D,IAAIC;IACJ,IAAIC;IACJ,IAAIC,gBAAwBhC,wBAAAA;QACAO;IAA5B,IAAI0B,gBAAwB1B,CAAAA,sBAAAA,MAAM2B,YAAAA,AAAY,MAAA,QAAlB3B,wBAAAA,KAAAA,IAAAA,sBAAsB;IAClD,MAAM,EAAE4B,iBAAiB,EAAEC,YAAYC,WAAW,EAAE,OAAGjC,qBAAAA,EAAeG,MAAM+B,YAAY,EAAE/B,MAAMgC,UAAU;IAC1G,MAAMC,aAAS1D,8EAAAA,EAAoCyB;IACnD,MAAMkC,WAAmB;IAEzB,MAAM,CAACC,OAAOC,SAAS,GAAGzE,OAAM0E,QAAQ,CAAS;IACjD,MAAM,CAACC,kBAAkBC,oBAAoB,GAAG5E,OAAM0E,QAAQ,CAAS;IACvE,MAAM,CAACG,kBAAkBC,oBAAoB,GAAG9E,OAAM0E,QAAQ,CAC5D,CAAA,CAACrC,qBAAAA,MAAM0C,WAAW,AAAXA,MAAW,QAAjB1C,uBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,mBAAmB2C,eAAAA,AAAe,KAAI3C,MAAM0C,WAAW,CAACC,eAAe,CAACnC,MAAM,GAAG,KAChFR,CAAAA,CAAAA,sBAAAA,MAAM0C,WAAW,AAAXA,MAAW,QAAjB1C,wBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,oBAAmB4C,cAAAA,AAAc,MAAKC;IAE1C,MAAM,CAACC,iBAAiBC,mBAAmB,GAAGpF,OAAM0E,QAAQ,CAAU;QACOrC;IAA7E,MAAM,CAACgD,qBAAqBC,uBAAuB,GAAGtF,OAAM0E,QAAQ,CAASrC,CAAAA,oCAAAA,CAAAA,sBAAAA,MAAM0C,WAAAA,AAAW,MAAA,QAAjB1C,wBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,oBAAmB4C,cAAAA,AAAc,MAAA,QAAjC5C,sCAAAA,KAAAA,IAAAA,oCAAqC;IAClH,MAAM,CAACkD,eAAeC,iBAAiB,GAAGxF,OAAM0E,QAAQ,CAAS;IACjE,MAAM,CAACe,eAAeC,iBAAiB,GAAG1F,OAAM0E,QAAQ,CAAS;IACjE,MAAM,CAACM,iBAAiBW,mBAAmB,GAAG3F,OAAM0E,QAAQ,CAAWrC,CAAAA,CAAAA,sBAAAA,MAAM0C,WAAAA,AAAW,MAAA,QAAjB1C,wBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,oBAAmB2C,eAAAA,AAAe,KAAI,EAAE;IAC/G,MAAM,CAACY,uBAAuBC,yBAAyB,GAAG7F,OAAM0E,QAAQ;IACxE,MAAM,CAACoB,0BAA0BC,4BAA4B,GAAG/F,OAAM0E,QAAQ;IAC9E,MAAM,CAACsB,eAAeC,eAAe,GAAGjG,OAAM0E,QAAQ,CAAU;IAChE,MAAM,CAACwB,eAAeC,iBAAiB,GAAGnG,OAAM0E,QAAQ,CAAC;QAAE5B,GAAG;QAAGG,GAAG;IAAE;IACtE,MAAMmD,eAAepG,OAAMqG,MAAM,CAAyC;IAE1ErG,OAAMsG,SAAS,CAAC;QACd,IAAIF,aAAaG,OAAO,EAAE;gBAEJC,wBAAwCnE;YAD5D,MAAMmE,YAAYJ,aAAaG,OAAO;YACtC,IAAI,KAAC/E,qBAAAA,EAAAA,CAAegF,yBAAAA,UAAUzB,WAAW,AAAXA,MAAW,QAArByB,2BAAAA,KAAAA,IAAAA,KAAAA,IAAAA,uBAAuBxB,eAAe,EAAA,CAAE3C,qBAAAA,MAAM0C,WAAAA,AAAW,MAAA,QAAjB1C,uBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,mBAAmB2C,eAAe,GAAG;oBAC5E3C;gBAAnBsD,mBAAmBtD,CAAAA,CAAAA,sBAAAA,MAAM0C,WAAAA,AAAW,MAAA,QAAjB1C,wBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,oBAAmB2C,eAAAA,AAAe,KAAI,EAAE;YAC7D;QACF;QACAoB,aAAaG,OAAO,GAAGlE;IACzB,GAAG;QAACA;KAAM;IAEV,SAASoE;QACPrD,UAAUf,MAAMO,IAAI,IAAI,EAAE;QAC1BS,aAAahB,MAAMqE,SAAS,IAAI;QAChC,MAAMC,iBAA2B;gBAC/BhF,wBAAAA,EAAkBD,qBAAAA,CAAekF,MAAM;gBACvCjF,wBAAAA,EAAkBD,qBAAAA,CAAemF,MAAM;gBACvClF,wBAAAA,EAAkBD,qBAAAA,CAAeoF,MAAM;gBACvCnF,wBAAAA,EAAkBD,qBAAAA,CAAeqF,MAAM;SACxC;QACDzD,UAAUjB,MAAM2E,MAAM,IAAKL;IAC7B;IAEA,SAASM,YAAYC,OAAgB;QACnC3D,WAAW2D;IACb;IAEA,SAASC,0BAA0BC,KAA0C;QAC3E,MAAM,EAAEC,iBAAiB,KAAK,EAAE,GAAGhF;QACnC,IAAIiF,qBAAqB;QACzBjF,MAAMO,IAAI,CAAE2E,OAAO,CAAC,CAACC,YAAiDC;YACpE,IAAID,WAAWvE,CAAC,KAAKmE,MAAMnE,CAAC,EAAE;gBAC5BqE,qBAAqBG;YACvB;QACF;QACA,IAAIjD;QACJ,IAAI6C,gBAAgB;YAClB,oEAAoE;YACpE,gEAAgE;YAChE7C,QAAQnC,MAAM2E,MAAM,GAAGU,gBAAgB,SAAKvG,mBAAAA,EAAa,GAAG;QAC9D,OAAO;YACLqD,QAAQ4C,MAAM5C,KAAK,GAAG4C,MAAM5C,KAAK,GAAGnC,MAAM2E,MAAM,GAAGU,gBAAgBN,MAAMtE,CAAC,QAAI3B,mBAAAA,EAAamG,oBAAoB;QACjH;QACA,OAAA,WAAA,GACE,OAAA,aAAA,CAAA,OAAA,QAAA,EAAA,MAAA,WAAA,GACE,OAAA,aAAA,CAACzG,0BAAAA,EAAAA;YACC8G,QAAQP,MAAMQ,gBAAgB,IAAIR,MAAMtE,CAAC,CAAC+E,QAAQ;YAClDC,QAAQV,MAAMU,MAAM;YACpBC,QAAQX,MAAMY,gBAAgB,IAAIZ,MAAMnE,CAAC;YACzCuB,OAAOA;YACPyD,SAAS5F,MAAM4F,OAAO;YACtB/B,eAAeA;YACfF,eAAeA;;IAIvB;IAEA,SAASkC,eAAe7F,KAA2C;QACjE,OAAOA,QAAQ8E,0BAA0B9E,SAAS;IACpD;IAEA,SAAS8F;QACP,OAAO9F,MAAM+F,2BAA2B,GACpC/F,MAAM+F,2BAA2B,CAACxC,uBAAuBsC,kBACzD;IACN;IAEA,SAASG,cACPC,MAAmB,EACnBC,MAAgC,EAChCC,eAAuB,EACvBC,cAAsB,EACtBC,QAA4B,EAC5BC,QAA4B;QAE5B,MAAMC,uBAAmB/G,6BAAAA,EAAuBuB;QAChD,MAAMyF,kBAAcjH,yBAAAA,EAAmBgH,kBAAkBrE;QACzDX,gCAAgCiF,YAAYC,kBAAkB;QAC9DjF,gCAAgCgF,YAAYE,kBAAkB;QAE9D,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAE,GAC5BjG,eAAehC,gBAAAA,CAAU+B,WAAW,GAChCmG,WAAWV,iBAAiBC,gBAAgB,QAC5CS,WAAWV,iBAAiBC,gBAAgB;QAClD,MAAMU,SAASH,UAAUI,KAAK;QAC9B,IAAIC,UAAwB,EAAE;QAC9B,mGAAmG;QACnG,IAAIF,MAAM,CAAC,EAAE,GAAGA,MAAM,CAAC,EAAE,EAAE;YACzBE,UAAUT,iBACPU,GAAG,CAACC,CAAAA,gBACHvG,eAAehC,gBAAAA,CAAU+B,WAAW,GAChCyG,mBACEhB,iBACAC,gBACAC,UACAC,UACAY,eACAP,WACAC,aAEFQ,kBACEjB,iBACAC,gBACAC,UACAC,UACAY,eACAP,WACAC,YAGPS,IAAI;QACT;QAEA,OAAQlG,QAAQ6F;IAClB;IAEA,SAAS3B;QACP,MAAMiC,YAAYrG,QAAQT,MAAM,IAAI,IAAI,IAAI,IAAKS,CAAAA,QAAQT,MAAM,IAAG,CAAA;QAClE,MAAM,EAAEwE,iBAAiB,KAAK,EAAE,GAAGhF;QACnC,IAAIgF,gBAAgB;YAClB,OAAO,CAACuC;gBACN,MAAM,EAAE5C,MAAM,EAAE,GAAG3E;gBACnB,OAAO2E,UAAUA,OAAOnE,MAAM,GAAG,IAAImE,MAAM,CAAC,EAAE,OAAGrF,wBAAAA,EAAkBD,qBAAAA,CAAemI,OAAO;YAC3F;QACF;QACA,MAAMC,eAAe,EAAE;QACvB,IAAK,IAAIC,IAAI,GAAGA,IAAIzG,QAAQT,MAAM,EAAEkH,IAAK;YACvCD,aAAaE,IAAI,CAACL,YAAYI,IAAIrG;QACpC;QACA,MAAMuG,iBAAa3J,oBAAAA,IAAwB4J,MAAM,CAACJ,cAAcV,KAAK,CAAC9F;QACtE,OAAO2G;IACT;IAEA,SAASE,aAAaC,OAAuB,EAAEC,WAAmB;QAChE7H,UAAUwH,IAAI,CAAC;YAAEvC,OAAO4C;YAAaC,YAAYF;QAAQ;IAC3D;IAEA,SAASG,YACPnD,KAA0C,EAC1C5C,KAAa,EACbgG,UAAoD;QAEpDA,WAAWC,OAAO;QAClB,IAAK5F,CAAAA,qBAAqB,SAAS6F,qBAAqBtD,MAAMU,OAAM,CAAA,IAAMnE,wBAAwByD,OAAO;YACvGzD,sBAAsByD;YACtBnB,eAAe;YACf0E,gBAAgBH,WAAWI,OAAO,EAAEJ,WAAWK,OAAO;YACtDjG,oBAAoBwC,MAAMtE,CAAC;YAC3BwC,uBAAuB8B,MAAMU,MAAM;YACnCrD,SAASpC,MAAMgF,cAAc,IAAIhF,MAAMyI,cAAc,GAAGtG,QAAQ4C,MAAM5C,KAAK;YAC3E,+FAA+F;YAC/FgB,iBAAiB4B,MAAMY,gBAAgB,IAAKZ,MAAMnE,CAAC,CAAC4E,QAAQ;YAC5DnC,iBAAiB0B,MAAMQ,gBAAgB,IAAIR,MAAMtE,CAAC,CAAC+E,QAAQ;YAC3DhC,yBAAyBuB;YACzBrB,4BAA4BqB,MAAMtB,wBAAwB;QAC5D;IACF;IAEA,SAASiF;QACP9E,eAAe;IACjB;IAEA,SAAS+E;QACPrH,sBAAsB;QACtBsC,eAAe;IACjB;IAEA,SAASgF,YACPC,KAAgD,EAChD9D,KAA0C,EAC1C+D,mBAA2B,EAC3B3G,KAAa;QAEb,IAAI4G,KAAK;QACT,IAAIC,KAAK;QAET,MAAMC,aAAcJ,MAAMK,MAAM,CAAoBC,qBAAqB;QACzEJ,KAAKE,WAAWG,IAAI,GAAGH,WAAWI,KAAK,GAAG;QAC1CL,KAAKC,WAAWK,GAAG,GAAGL,WAAWM,MAAM,GAAG;QAC1CjB,gBAAgBS,IAAIC;QACpB,IAAKxG,CAAAA,qBAAqB,SAAS6F,qBAAqBtD,MAAMU,OAAM,CAAA,IAAMnE,wBAAwByD,OAAO;YACvG5E,UAAU+E,OAAO,CAAC,CAACsE,KAAmBpE;gBACpC,IAAI0D,wBAAwB1D,OAAO;oBACjCxB,eAAe;oBACfX,uBAAuB8B,MAAMU,MAAM;oBACnClD,oBAAoBwC,MAAMtE,CAAC;oBAC3B2B,SAASpC,MAAMgF,cAAc,GAAG7C,QAAQ4C,MAAM5C,KAAK;oBACnDgB,iBAAiB4B,MAAMY,gBAAgB,IAAIZ,MAAMnE,CAAC,CAAC4E,QAAQ;oBAC3DnC,iBAAiB0B,MAAMQ,gBAAgB,IAAKR,MAAMtE,CAAC,CAAC+E,QAAQ;oBAC5DhC,yBAAyBuB;oBACzBrB,4BAA4BqB,MAAMtB,wBAAwB;gBAC5D;YACF;QACF;IACF;IAEA,SAASoD,WACPV,eAAuB,EACvBC,cAAsB,EACtBqD,cAAuB;QAGvB,MAAMC,OAAOnI;QACb,MAAMoI,OAAOnI;QACb,MAAMoI,UAAU;YAACC,KAAK/L,GAAG,CAACoE,UAAUyH;YAAOE,KAAKjM,GAAG,CAACsE,UAAUwH;SAAM;QACpE,IAAID,gBAAgB;YAClB,MAAMK,OAAOjM,gBAAAA,EAAMkD,SAAS,CAACgE,QAA+CA,MAAMnE,CAAC;YACnF,MAAMmJ,WAAOhM,YAAAA,EAAMgD,SAAS,CAACgE,QAA+CA,MAAMnE,CAAC;YACnF,MAAMoJ,aAAaH,KAAKjM,GAAG,CAACkM,MAAM9J,MAAMiK,SAAS,IAAI;YACrD,6CAA6C;YAC7C,MAAMC,WAAWlK,MAAMmK,SAAS,IAAI;YACpC,MAAMC,aAAaP,KAAK/L,GAAG,CAACiM,MAAMG;YAClC,MAAMvD,YAAY1I,wBAAAA,IACf4J,MAAM,CAAC+B,SACPS,IAAI,GACJtD,KAAK,CAAC;gBAAC7F,SAASkI,IAAI;gBAAGhD,iBAAiBlF,SAASoJ,KAAK;aAAE;YAC3D,MAAM1D,gBAAY3I,oBAAAA,IACf4J,MAAM,CAAC;gBAACuC;gBAAYJ;aAAW,EAC/BjD,KAAK,CAAC;gBAACZ,kBAAmBjF,CAAAA,SAASqJ,MAAM,GAAI9I,aAAAA,CAAY;gBAAIP,SAASoI,GAAG,GAAI7H;aAAc;YAC9F,OAAO;gBAAEkF;gBAAWC;YAAU;QAChC,OAAO;YACL,sEAAsE;YACtE,2DAA2D;YAC3D,kDAAkD;YAClD,MAAMA,gBAAYzI,kBAAAA,IACf0J,MAAM,CAACzG,cACP2F,KAAK,CAAC;gBAACZ,kBAAmBjF,CAAAA,SAASqJ,MAAM,GAAI9I,aAAAA,CAAY;gBAAIP,SAASoI,GAAG,GAAI7H;aAAc,EAC3F+I,OAAO,CAAC9I;YAEX,MAAMiF,YAAY1I,wBAAAA,IACf4J,MAAM,CAAC+B,SACPS,IAAI,GACJtD,KAAK,CAAC;gBAAC7F,SAASkI,IAAI;gBAAGhD,iBAAiBlF,SAASoJ,KAAK;aAAE;YAC3D,OAAO;gBAAE3D;gBAAWC;YAAU;QAChC;IACF;IAEA,SAAS6D,oBAAoBvD,aAAoD;QAC/E,MAAMwD,qBAAqBxD,cACxByD,MAAM,CAAC5F,CAAAA,QAASA,MAAMtE,CAAC,IAAIyB,UAC3B0I,MAAM,CAAC,CAACC,KAAK9F,QAAU8F,MAAM9F,MAAMtE,CAAC,EAAE;QACzC,MAAMqK,qBAAqB5D,cACxByD,MAAM,CAAC5F,CAAAA,QAASA,MAAMtE,CAAC,GAAGyB,UAC1B0I,MAAM,CAAC,CAACC,KAAK9F,QAAU8F,MAAM9F,MAAMtE,CAAC,EAAE;QACzC,MAAMsK,gBAAgBL,qBAAqBI;QAC3C,MAAME,0BAA0BD,iBAAiB;QAEjD,MAAME,oBAAoB/D,cAAcyD,MAAM,CAAC5F,CAAAA,QAASA,MAAMtE,CAAC,IAAIyB,UAAU1B,MAAM;QACnF,MAAM0K,oBAAoBhE,cAAc1G,MAAM,GAAGyK;QAEjD,MAAME,kBAAkB,CACtBC,eACAC,qBACAC;YAEA,MAAMC,oBAAoBH,iBAAiBC,wBAAwBJ;YACnE,MAAMO,oBAAoB,CAACJ,iBAAiBE,wBAAwBJ;YACpE,OAAOF,0BAA0BO,oBAAoBC;QACvD;QAEA,OAAO;YAAEd;YAAoBI;YAAoBC;YAAeC;YAAyBG;QAAgB;IAC3G;IAEA,SAAShE,mBACPhB,eAAuB,EACvBC,cAAsB,EACtBC,QAAoB,EACpBC,QAAoB,EACpBY,aAAoD,EACpD,AACAP,SAAc,EACd,AACAC,SAAc,0CAHgD,WAEA;QAG9D,MAAM,EAAE5B,iBAAiB,KAAK,EAAE,GAAGhF;QACnC,MAAMyL,aAAoD;eAAIvE;SAAc;QAC5EuE,WAAWC,IAAI,CAAC,CAACC,GAAGC;YAClB,MAAMC,SAAS,OAAOF,EAAE/K,CAAC,KAAK,WAAW+K,EAAE/K,CAAC,GAAGkL,WAAWH,EAAE/K,CAAC;YAC7D,MAAMmL,SAAS,OAAOH,EAAEhL,CAAC,KAAK,WAAWgL,EAAEhL,CAAC,GAAGkL,WAAWF,EAAEhL,CAAC;YAC7D,OAAOmL,SAASF;QAClB;QAEA,IAAIG,oBAAoB;QACxB,IAAIC,oBAAoB;QACxB,IAAIC,YAAY;QAEhB,MAAMjB,oBAAoB/D,cAAcyD,MAAM,CAC5C,CAAC5F,QAA+CA,MAAMtE,CAAC,IAAIyB,UAC3D1B,MAAM;QACR,MAAM0K,oBAAoBhE,cAAc1G,MAAM,GAAGyK;QAEjD,MAAM,EAAEF,aAAa,EAAEI,eAAe,EAAE,GAAGV,oBAAoBvD;QAE/D,IAAImE,sBAAsB;QAC1B,IAAIC,sBAAsB;QAE1B,MAAMa,OAAOV,WAAWxE,GAAG,CAAC,CAAClC,OAA4CK;YACvE,IAAIgH,kBAAkB;YACtB,IAAItJ,mBAAmBN,kBAAkB;gBACvC4J,kBAAkB/D,qBAAqBtD,MAAMU,MAAM;YACrD;YACA,IAAIV,MAAMtE,CAAC,IAAIyB,UAAU;gBACvB,EAAEmJ;YACJ;YACA,IAAItG,MAAMtE,CAAC,GAAGyB,UAAU;gBACtB,EAAEoJ;YACJ;YACA,MAAMe,YAAYhM,SACd+F,iBACClF,CAAAA,SAASoJ,KAAK,GAAIT,KAAKjM,GAAG,CAAC+I,UAAU5B,MAAMtE,CAAC,GAAGyB,WAAWyE,UAAUzE,aAAahB,SAASkI,IAAAA,AAAI,IAC/FS,KAAK/L,GAAG,CAAC6I,UAAU5B,MAAMtE,CAAC,GAAGyB,WAAWyE,UAAUzE;YACtD,MAAMmC,YAAoBwF,KAAKjM,GAAG,CAACgJ,UAAU7B,MAAMnE,CAAC,GAAG;YACvD,IAAIyD,YAAY,GAAG;gBACjB,OAAA,WAAA,GAAO,OAAA,aAAA,CAAC1G,OAAM2O,QAAQ,EAAA;oBAACC,KAAKxH,MAAMtE,CAAC;mBAAE;YACvC;YACA,IAAI+L;YACJ,IAAIxH,gBAAgB;gBAClB,oEAAoE;gBACpE,gEAAgE;gBAChEwH,aAAaxM,MAAM2E,MAAM,GAAGU,gBAAgB,SAAKvG,mBAAAA,EAAa,GAAG;YACnE,OAAO;gBACL0N,aAAaxM,MAAM2E,MAAM,GAAGU,gBAAgBN,MAAMtE,CAAC,QAAI3B,mBAAAA,EAAasG,OAAO;YAC7E;YAEAoH,aAAazH,MAAM5C,KAAK,IAAI,CAAC6C,iBAAiBD,MAAM5C,KAAK,GAAGqK;YAE5D,MAAMC,eAAe5C,KAAK6C,GAAG,CAAC/F,UAAUuF,YAAYhK,YAAYyE,UAAUzE;YAC1EgK,YAAYhK,WAAY8J,qBAAqBS,eAAiBR,qBAAqBQ;YACnF,MAAME,eAAe9C,KAAK6C,GAAG,CAAC/F,UAAU5B,MAAMtE,CAAC,GAAGyB,YAAYyE,UAAUzE;YACxE,MAAM0K,cACJD,eAAe,KACd,CAAC5H,MAAMtE,CAAC,GAAGyB,YAAYmJ,wBAAwBJ,qBAC7ClG,MAAMtE,CAAC,GAAGyB,YAAa+I,CAAAA,sBAAsB,KAAKK,uBAAsB,CAAA,CAAE,GACzE,IACA;YACN,MAAMuB,cACJF,eAAe,KACd,CAAC5H,MAAMtE,CAAC,GAAGyB,YAAagJ,CAAAA,sBAAsB,KAAKG,uBAAsB,CAAA,IACvEtG,MAAMtE,CAAC,GAAGyB,YAAYoJ,wBAAwBJ,iBAAAA,CAAiB,GAC9D,IACA;YACN,IAAI4B,SAAS5K;YACb,IAAI7B,QAAQ;gBACVyM,SAAS/H,MAAMtE,CAAC,GAAGyB,WAAWmK,YAAYL,oBAAoBK,YAAYJ;YAC5E,OAAO;gBACLa,SAAS/H,MAAMtE,CAAC,GAAGyB,WAAWmK,YAAYL,oBAAoBK,YAAYJ;YAC5E;YACAC,YAAYnH,MAAMtE,CAAC;YAEnB,MAAMsM,WAAWJ,eAAgBtM,CAAAA,SAASwM,cAAcD,WAAAA,CAAU;YAClE,MAAMI,UAAU3M,SACZ0E,MAAMtE,CAAC,IAAIyB,WACT4K,SACAA,SAASC,WACXhI,MAAMtE,CAAC,IAAIyB,WACX4K,SAASC,WACTD;YACJ,MAAM1B,gBAAgBrG,MAAMtE,CAAC,IAAIyB;YACjC,MAAM+K,YAAY9B,gBAAgBC,eAAeC,qBAAqBC;YAEtE,OAAA,WAAA,GACE,OAAA,aAAA,CAAC3N,OAAM2O,QAAQ,EAAA;gBAACC,KAAK,GAAGnH,MAAM,CAAC,EAAEL,MAAMtE,CAAC,EAAE;6BACxC,OAAA,aAAA,CAACyM,QAAAA;gBACCX,KAAKxH,MAAMnE,CAAC;gBACZH,GAAGqM;gBACHlM,GAAGgG,UAAU7B,MAAMnE,CAAC,IAAII,aAAa;gBACrCqI,OAAO0D;gBACPxD,QAAQvI;gBACRmM,KAAK,CAACC;oBACJtF,aAAasF,GAAGrI,MAAMU,MAAM;gBAC9B;gBACA4H,IAAIrN,MAAMsN,YAAY,GAAG,IAAI;gBAC7BC,SAASxI,MAAMwI,OAAO;gBACtBC,aAAa,CAAC3E,QAAoDX,YAAYnD,OAAOyH,YAAY3D;gBACjG4E,cAAYC,cAAc3I;gBAC1B4I,MAAK;gBACLC,mBAAiB,CAAC,OAAO,EAAExN,YAAY;gBACvCyN,cAAcnF;gBACdoF,SAASjF,CAAAA,QAASD,YAAYC,OAAO9D,OAAOK,OAAOoH;gBACnDuB,QAAQrF;gBACRsF,MAAMxB;gBACNyB,SAAS7B,kBAAkB,IAAI;gBAC/B8B,UAAU9B,kBAAkB,IAAIvJ;gBAEjCoK,aAAakB,gBAAgBnB,SAASpG,UAAU7B,MAAMnE,CAAC,IAAII,aAAa,GAAG+J,eAAeK;QAGjG;QACA,OAAOe;IACT;IAEA,SAASiC;YAEPpO;QADA,MAAMqO,OAAwC,CAAC;SAC/CrO,cAAAA,MAAMO,IAAAA,AAAI,MAAA,QAAVP,gBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,YAAYkF,OAAO,CAAC,CAACH;YACnBsJ,IAAI,CAACtJ,MAAMnE,CAAC,CAAC,GAAGmE,MAAMnE,CAAC;QACzB;QACA,MAAM0N,UAAUC,OAAOC,MAAM,CAACH;QAC9B,OAAOC;IACT;IAEA,SAASG,+BAA+BlO,IAAuB,EAAEmO,UAAkB,EAAEC,YAAoB;QACvG,MAAMC,aAAShP,oCAAAA,EAA2BW;QAC1C,IAAI,CAACqO,UAAUA,MAAM,CAAC,EAAE,KAAK,GAAG;YAC9B,OAAO;QACT;QACA,MAAMC,kBAAkBD,MAAM,CAAC,EAAE;QACjC,IAAI7H,QAAQ6H,MAAM,CAAC,EAAE;QACrB,MAAM9E,WAAOjM,YAAAA,EAAMkD,SAAS,CAACgE,QAA+CA,MAAMnE,CAAC;QACnF,kGAAkG;QAClG,yCAAyC;QACzCmG,QAAQ8C,KAAKjM,GAAG,CAACmJ,OAAO+C;QACxB,mHAAmH;QACnH,+CAA+C;QAC/C,MAAMiD,WAAWlD,KAAKiF,KAAK,CACxBJ,aAAaG,kBAAmB,CAAA,IAAIF,YAAAA,CAAW,IAAO5H,QAAQ8H,kBAAmB,CAAA,IAAIF,YAAAA,CAAW,CAAC;QAEpG,OAAO5B;IACT;IAEA,SAASgC,uCAAuC5I,eAAuB;QACrE1E,gBAAgBhC,wBAAAA;QAChB,MAAM6O,UAAUF;QAChB,wEAAwE,GACxE1M,gBAAgBA,kBAAkB,IAAI,OAAOA;QAC7C,MAAMsN,aAAatN,gBAAiB,CAAA,IAAIA,aAAAA,CAAY;QACpD,MAAMuN,UAAUX,QAAQ9N,MAAM,GAAI8N,CAAAA,QAAQ9N,MAAM,IAAG,CAAA,GAAKwO;QACxD,4CAA4C;QAC5C,MAAME,cAAc/I,kBAAmBjF,CAAAA,SAASoI,GAAG,GAAI7J,wBAAAA,AAAgB,IAAMyB,CAAAA,SAASqJ,MAAM,GAAI9K,wBAAAA,AAAgB;QAChH,IAAIkB,eAAehC,gBAAAA,CAAUkC,UAAU,EAAE;YACvC,mCAAmC;YACnCG,aACEhB,MAAMqE,SAAS,IAAIoK,+BAA+BH,SAA8BY,aAAaxN;YAC/FV,aAAa6I,KAAKjM,GAAG,CAACoD,YAAY;YAClCS,iBAAiBT,aAAa;QAChC,OAAO;YACL,uCAAuC;YACvCA,aAAahB,MAAMqE,SAAS,IAAI6K,cAAcD;YAC9C,kFAAkF,GAClF,MAAME,YAAYF,UAAUjO;YAC5B,IAAIkO,eAAeC,WAAW;gBAC5B,4EAA4E;gBAC5E1N,gBAAgBhC,wBAAAA,GAAqByP,eAAcC,SAAAA,CAAQ,GAAK;YAClE;QACF;QAEA,OAAO;YACL,GAAGjO,QAAQ;YACXoI,KAAKpI,SAASoI,GAAG,GAAI7H;YACrB8I,QAAQrJ,SAASqJ,MAAM,GAAI9I;QAC7B;IACF;IAEA,SAAS2F,kBACPjB,eAAuB,EACvBC,cAAsB,EACtBC,QAAoB,EACpBC,QAAoB,EACpBY,aAAoD,EACpD,AACAP,SAAc,EACd,AACAC,SAAc,0CAHgD,WAEA;QAG9D,MAAM,EAAE5B,iBAAiB,KAAK,EAAE,GAAGhF;QACnC,IAAIgM,oBAAoB;QACxB,IAAIC,oBAAoB;QACxB,IAAIC,YAAY;QAChB,MAAMjB,oBAAoB/D,cAAcyD,MAAM,CAC5C,CAAC5F,QAA+CA,MAAMtE,CAAC,IAAIyB,UAC3D1B,MAAM;QACR,MAAM0K,oBAAoBhE,cAAc1G,MAAM,GAAGyK;QACjD,MAAM,EAAEF,aAAa,EAAEI,eAAe,EAAE,GAAGV,oBAAoBvD;QAC/D,IAAImE,sBAAsB;QAC1B,IAAIC,sBAAsB;QAC1B,MAAMa,OAAOjF,cAAcD,GAAG,CAAC,CAAClC,OAA4CK;YAC1E,IAAIgH,kBAAkB;YACtB,IAAItJ,mBAAmBN,kBAAkB;gBACvC4J,kBAAkB/D,qBAAqBtD,MAAMU,MAAM;YACrD;YACA,IAAIV,MAAMtE,CAAC,IAAIyB,UAAU;gBACvB,EAAEmJ;YACJ;YACA,IAAItG,MAAMtE,CAAC,GAAGyB,UAAU;gBACtB,EAAEoJ;YACJ;YACA,MAAMe,YAAYhM,SACd+F,iBACClF,CAAAA,SAASoJ,KAAK,GAAIT,KAAKjM,GAAG,CAAC+I,UAAU5B,MAAMtE,CAAC,GAAGyB,WAAWyE,UAAUzE,aAAahB,SAASkI,IAAAA,AAAI,IAC/FS,KAAK/L,GAAG,CAAC6I,UAAU5B,MAAMtE,CAAC,GAAGyB,WAAWyE,UAAUzE;YACtD,MAAMmC,YAAoBwF,KAAKjM,GAAG,CAACgJ,UAAU7B,MAAMnE,CAAC,GAAG;YACvD,IAAIyD,YAAY,GAAG;gBACjB,OAAA,WAAA,GAAO,OAAA,aAAA,CAAC1G,OAAM2O,QAAQ,EAAA;oBAACC,KAAKxH,MAAMtE,CAAC;mBAAE;YACvC;YACA,IAAI+L;YACJ,IAAIxH,gBAAgB;gBAClB,oEAAoE;gBACpE,gEAAgE;gBAChEwH,aAAaxM,MAAM2E,MAAM,GAAGU,gBAAgB,SAAKvG,mBAAAA,EAAa,GAAG;YACnE,OAAO;gBACL0N,aAAaxM,MAAM2E,MAAM,GAAGU,gBAAgBN,MAAMtE,CAAC,QAAI3B,mBAAAA,EAAasG,OAAO;YAC7E;YAEAoH,aAAazH,MAAM5C,KAAK,IAAI,CAAC6C,iBAAiBD,MAAM5C,KAAK,GAAGqK;YAC5D,MAAMC,eAAe5C,KAAK6C,GAAG,CAAC/F,UAAUuF,YAAYhK,YAAYyE,UAAUzE;YAC1EgK,YAAY,IAAKF,qBAAqBS,eAAiBR,qBAAqBQ;YAC5E,MAAME,eAAe9C,KAAK6C,GAAG,CAAC/F,UAAU5B,MAAMtE,CAAC,GAAGyB,YAAYyE,UAAUzE;YACxE,MAAM0K,cACJD,eAAe,KACd,CAAC5H,MAAMtE,CAAC,GAAGyB,YAAYmJ,wBAAwBJ,qBAC7ClG,MAAMtE,CAAC,GAAGyB,YAAa+I,CAAAA,sBAAsB,KAAKK,sBAAsB,EAAA,CAAE,GACzE,IACA;YACN,MAAMuB,cACJF,eAAe,KACd,CAAC5H,MAAMtE,CAAC,GAAGyB,YAAagJ,CAAAA,sBAAsB,KAAKG,uBAAsB,CAAA,IACvEtG,MAAMtE,CAAC,GAAGyB,YAAYoJ,wBAAwBJ,iBAAAA,CAAiB,GAC9D,IACA;YACNgB,YAAYnH,MAAMtE,CAAC;YACnB,IAAIqM,SAAS5K;YACb,IAAI7B,QAAQ;gBACVyM,SAAS/H,MAAMtE,CAAC,GAAGyB,WAAWmK,YAAYL,oBAAoBK,YAAYJ;YAC5E,OAAO;gBACLa,SAAS/H,MAAMtE,CAAC,GAAGyB,WAAWmK,YAAYL,oBAAoBK,YAAYJ;YAC5E;YAEA,MAAMc,WAAWJ,eAAgBtM,CAAAA,SAASwM,cAAcD,WAAAA,CAAU;YAClE,MAAMI,UAAU3M,SACZ0E,MAAMtE,CAAC,IAAIyB,WACT4K,SACAA,SAASC,WACXhI,MAAMtE,CAAC,IAAIyB,WACX4K,SAASC,WACTD;YACJ,MAAM1B,gBAAgBrG,MAAMtE,CAAC,IAAIyB;YACjC,MAAMkN,YAAYxI,UAAU7B,MAAMnE,CAAC,IAAI,MAAOgG,WAAUyI,SAAS,KAAKrO,UAAAA,CAAS;YAC/E,MAAMiM,YAAY9B,gBAAgBC,eAAeC,qBAAqBC;YAEtE,OAAA,WAAA,GACE,OAAA,aAAA,CAAC3N,OAAM2O,QAAQ,EAAA;gBAACC,KAAK,GAAGnH,MAAM,CAAC,EAAEL,MAAMtE,CAAC,EAAE;6BACxC,OAAA,aAAA,CAACyM,QAAAA;gBACCoC,WAAW,CAAC,YAAY,EAAE,MAAO1I,CAAAA,UAAUyI,SAAS,KAAKrO,UAAAA,CAAS,CAAG,CAAC,CAAC;gBACvEuL,KAAKxH,MAAMtE,CAAC;gBACZA,GAAGqM;gBACHlM,GAAGgG,UAAU7B,MAAMnE,CAAC;gBACpByM,IAAIrN,MAAMsN,YAAY,GAAG,IAAI;gBAC7BjE,OAAO0D;gBACPxD,QAAQvI;gBACR4M,mBAAiB,CAAC,OAAO,EAAExN,YAAY;gBACvCqN,cAAYC,cAAc3I;gBAC1B4I,MAAK;gBACLR,KAAK,CAACC;oBACJtF,aAAasF,GAAGrI,MAAMU,MAAM;gBAC9B;gBACA8H,SAASxI,MAAMwI,OAAO;gBACtBC,aAAa,CAAC3E,QAAoDX,YAAYnD,OAAOyH,YAAY3D;gBACjGgF,cAAcnF;gBACdqF,QAAQrF;gBACRuF,SAAS7B,kBAAkB,IAAI;gBAC/B0B,SAASjF,CAAAA,QAASD,YAAYC,OAAO9D,OAAOK,OAAOoH;gBACnDwB,MAAMxB;gBACN0B,UAAU9B,kBAAkB,IAAIvJ;gBAEjCoK,aAAakB,gBAAgBnB,SAASoC,WAAWrE,eAAeK;QAGvE;QACA,OAAOe;IACT;IAEA,SAASoD,eAAeC,aAAqB;QAC3C,IAAI,CAACC,qBAAqB;YACxB1M,mBAAmB;YACnBE,uBAAuBuM;QACzB;IACF;IAEA,SAASE,eAAeC,eAAyB;QAC/C,IAAI,CAAC,CAACA,mBAAmB,CAACF,qBAAqB;YAC7C1M,mBAAmB;YACnBE,uBAAuB;YACvBR,oBAAoBkN,kBAAkB,QAAQF;QAChD;IACF;IAEA,SAASG,eAAerP,IAA2C;QACjE,MAAM,EAAEyE,cAAc,EAAE,GAAGhF;QAC3B,MAAM6P,UAAoB,EAAE;QAC5B,MAAMC,mBAA2C,CAAC;QAElDvP,KAAK2E,OAAO,CAAC,CAACH,OAA4CgL;YACxD,wDAAwD;YACxD,MAAM5N,QAAgB6C,iBAAkBhF,MAAM2E,MAAM,GAAGU,gBAAgB,SAAKvG,mBAAAA,EAAa,GAAG,KAAMiG,MAAM5C,KAAK;YAE7G2N,gBAAgB,CAAC/K,MAAMU,MAAM,CAAE,GAAGtD;QACpC;QACAoM,OAAOyB,OAAO,CAACF,kBAAkB5K,OAAO,CAAC,CAAC,CAAC8C,aAAa7F,MAAM;YAC5D,qDAAqD;YACrD,MAAMsD,SAAiB;gBACrBwK,OAAOjI;gBACP7F;gBACA+N,aAAa;oBACXvH;oBACA4G,eAAevH;gBACjB;gBACA,wDAAwD;gBACxDmI,kBAAkB,CAAC3N;oBACjBkN,eAAelN;gBACjB;YACF;YACAqN,QAAQlI,IAAI,CAAClC;QACf;QACA,MAAM2K,UAAAA,WAAAA,GACJ,OAAA,aAAA,CAAChS,gBAAAA,EAAAA;YACCgS,SAASP;YACTQ,kBAAkBrQ,MAAMsQ,uBAAuB;YAC/CC,cAAcvQ,MAAMwQ,mBAAmB;YACtC,GAAGxQ,MAAM0C,WAAW;YACrB+N,UAAUC;YACVC,WAAW7O;;QAGf,OAAOsO;IACT;IAEA,SAASX;QACP,OAAOjN;IACT;IAEA;;;;;GAKC,GACD,SAAS6F,qBAAqB5C,MAAe;QAC3C,OAAOmL,wBAAwBC,QAAQ,CAACpL;IAC1C;IAEA,SAASmL;QACP,OAAOjO,gBAAgBnC,MAAM,GAAG,IAAImC,kBAAkBK,sBAAsB;YAACA;SAAoB,GAAG,EAAE;IACxG;IACA,SAAS0N,yBACP,AACA/N,eAAyB,EACzBkG,KAA0C,EAC1CiI,aAAsB,mBAHkC;YAKpD9Q,oBAQAA;QARJ,IAAA,CAAIA,qBAAAA,MAAM0C,WAAAA,AAAW,MAAA,QAAjB1C,uBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,mBAAmB+Q,wBAAwB,EAAE;YAC/CzN,mBAAmBX;YACnBM,uBAAuB6N,kBAAAA,QAAAA,kBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,cAAeb,KAAK;QAC7C,OAAO;YACL3M,mBAAmBX,gBAAgBqO,KAAK,CAAC,CAAC;YAC1C/N,uBAAuB6N,kBAAAA,QAAAA,kBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,cAAeb,KAAK;QAC7C;QACAxN,oBAAoBE,gBAAgBnC,MAAM,GAAG;QAC7C,IAAA,CAAIR,sBAAAA,MAAM0C,WAAAA,AAAW,MAAA,QAAjB1C,wBAAAA,KAAAA,IAAAA,KAAAA,IAAAA,oBAAmByQ,QAAQ,EAAE;YAC/BzQ,MAAM0C,WAAW,CAAC+N,QAAQ,CAAC9N,iBAAiBkG,OAAOiI;QACrD;IACF;IAEA,SAASG,aAAaC,SAAoB;QACxC,IAAIA,aAAaA,UAAUC,iBAAiB,CAAC3Q,MAAM,EAAE;YACnD,uCAAuC;YACvC,MAAM,EAAE2Q,mBAAmBC,WAAW,EAAE,GAAGF;YAC3C7P,QAAQwI,KAAKjM,GAAG,CAACwT,WAAW,CAACA,YAAY5Q,MAAM,GAAG,EAAE,EAAER,MAAMqR,SAAS,IAAI;QAC3E;IACF;IACA,SAAS3D,cAAc3I,KAA0C;YAGxDA;QAFP,MAAMuM,SAASvM,MAAMQ,gBAAgB,IAAIR,MAAMtE,CAAC;QAChD,MAAM8Q,SAASxM,MAAMY,gBAAgB,IAAIZ,MAAMnE,CAAC;QAChD,OAAOmE,CAAAA,CAAAA,kCAAAA,MAAMtB,wBAAwB,AAAxBA,MAAwB,QAA9BsB,oCAAAA,KAAAA,IAAAA,KAAAA,IAAAA,gCAAgCyM,SAAAA,AAAS,KAAI,GAAGF,OAAO,EAAE,CAAC,GAAG,GAAGC,OAAO,CAAC,CAAC;IAClF;IAEA,SAASpD,gBACPsD,SAAiB,EACjBrC,SAAiB,EACjBsC,KAAa,EACbtG,aAAsB;QAEtB,IAAIpL,MAAM2R,UAAU,IAAI3Q,aAAa,IAAI;YACvC,OAAO;QACT;QAEA,OAAA,WAAA,GACE,OAAA,aAAA,CAAC4Q,QAAAA;YACCnR,GAAGgR;YACH7Q,GAAGwO,YAAYpO,aAAa;YAC5B6Q,YAAYxR,SAAU+K,gBAAgB,QAAQ,UAAWA,gBAAgB,UAAU;YACnFkE,WAAW,CAAC,UAAU,EAAElE,gBAAiB/K,SAAS,CAAC,IAAI,IAAKA,SAAS,IAAI,CAAC,EAAE,CAAC,CAAC;YAC9EyR,kBAAiB;YACjBC,WAAW9P,OAAO+P,QAAQ;YAC1BC,eAAa;YACbC,OAAO;gBAAEC,WAAW;gBAAOC,aAAa;YAAU;eAEjDzS,iCAAAA,EAA2B+R;IAGlC;IAEA,SAASW;QACP,MAAM,EAAEC,UAAU,EAAE/R,IAAI,EAAE,GAAGP;QAC7B,OAAQsS,CAAAA,aAAa,GAAGA,WAAW,EAAE,CAAC,GAAG,EAAA,CAAC,GAAK,CAAC,0BAA0B,EAAE/R,CAAAA,SAAAA,QAAAA,SAAAA,KAAAA,IAAAA,KAAAA,IAAAA,KAAMC,MAAAA,AAAM,KAAI,EAAE,OAAO,CAAC;IACxG;IAEA,SAAS+R;QACP,MAAMC,wCACJ7R,eAAehC,gBAAAA,CAAUkC,UAAU,IAAIb,MAAMC,kBAAkB,KAAK;QACtE,IAAI,CAACuS,uCAAuC;YAC1C,4FAA4F;YAC5F,MAAMC,eAAe;mBAAI1R;aAAQ,CAAC2R,OAAO;YACzC,OAAOD,aAAaxL,GAAG,CAAC,CAAClC,QAA+CA,MAAMnE,CAAC;QACjF;QAEA,WAAOlB,yBAAAA,EAAmBiT,wBAAwB3S,MAAMC,kBAAkB;IAC5E;IAEA,SAAS0S;QACP,MAAMC,mBAA6C,CAAC;QACpD7R,QAAQmE,OAAO,CAACH,CAAAA;YACd,IAAI,CAAC6N,gBAAgB,CAAC7N,MAAMnE,CAAC,CAAC,EAAE;gBAC9BgS,gBAAgB,CAAC7N,MAAMnE,CAAC,CAAC,GAAG,EAAE;YAChC;YACAgS,gBAAgB,CAAC7N,MAAMnE,CAAC,CAAC,CAAC+G,IAAI,CAAC5C,MAAMtE,CAAC;QACxC;QACA,OAAOmS;IACT;IAEA,SAASC;QACP,OAAO,CAAE7S,CAAAA,MAAMO,IAAI,IAAIP,MAAMO,IAAI,CAACC,MAAM,IAAG,CAAA;IAC7C;IAEA,SAAS8H,gBAAgBwK,IAAY,EAAEC,IAAY;QACjD,MAAMC,YAAY,GAAG,+BAA+B;QACpD,MAAM,EAAEvS,CAAC,EAAEG,CAAC,EAAE,GAAGiD;QAEjB,+BAA+B;QAC/B,MAAMoP,WAAWpJ,KAAKqJ,IAAI,CAACrJ,KAAKsJ,GAAG,CAACL,OAAOrS,GAAG,KAAKoJ,KAAKsJ,GAAG,CAACJ,OAAOnS,GAAG;QACtE,+EAA+E;QAC/E,IAAIqS,WAAWD,WAAW;YACxBlP,iBAAiB;gBAAErD,GAAGqS;gBAAMlS,GAAGmS;YAAK;YACpCnP,eAAe;QACjB;IACF;IAEA,SAASwP,uBACPC,MAA6C,EAC7CxO,OAAgB,EAChBwE,KAAa,EACbiK,SAAqB,EACrBC,KAAc,EACdC,SAAqB,EACrBzG,QAAgB,EAChB0G,UAAyC;QAEzC,IAAIC;QACJ,IAAIF,cAAc5U,iBAAAA,CAAW8B,WAAW,EAAE;YACxCgT,wBAAoBzU,wDAAAA,EAAkDoU,QAAQxO,SAASwE,OAAOkK,OAAOrR;QACvG,OAAO;YACLwR,oBAAoB;gBAAEC,aAAa;gBAAGC,WAAW;gBAAGC,aAAa;gBAAGC,WAAW;YAAE;QACnF;QACA,OAAOJ;IACT;IAEA,IAAI,CAACb,iBAAiB;QACpBzO;QACA,MAAM2P,eAAkC;YACtC5R,OAAOA;YACPsD,QAAQzC;YACRsC,QAAQpC;YACRwC,QAAQtC,gBAAgBA,gBAAgBd;YACxC,GAAGtC,MAAM+T,YAAY;YACrB,OAAGrV,8BAAAA,EAAwB+E,yBAAyB;YACpDuQ,eAAe;gBACbC,mBAAmBnO,4BAA4B,OAAOA,0BAA2BjD;gBACjFqR,oBAAoBlU,MAAMmU,wBAAwB,GAC9CnU,MAAMmU,wBAAwB,CAAC5Q,yBAC/BV;YACN;YACAuR,aAAa;YACbzQ;YACAE;QACF;QACA,MAAMwQ,aAAa;YACjBZ,YAAYzT,MAAMyT,UAAU;YAC5Ba,YAAYtU,MAAMsU,UAAU;QAC9B;QAEAlT,eAAemR;QACflR,QAAQwI,KAAKjM,GAAG,KAACC,YAAAA,EAAMkD,SAAS,CAACgE,QAA+CA,MAAMtE,CAAC,GAAIT,MAAMqR,SAAS,IAAI;QAC9G,MAAMkD,aAAyB3E,eAAe7O;QAC9C,OAAA,WAAA,GACE,OAAA,aAAA,CAACzC,8BAAAA,EAAAA;YACCqD,cAAcD;YACb,GAAG1B,KAAK;YACTsS,YAAYD;YACZgB,QAAQtS;YACRuS,WAAW7U,iBAAAA,CAAWqB,0BAA0B;YAChD0T,WAAWlT;YACXkU,WAAW7T;YACX8T,uBAAuBrB;YACvBsB,6BAA6BtT;YAC7B2S,cAAcA;YACdM,YAAYA;YACZE,YAAYA;YACZI,aAAa3V,+CAAAA;YACb4V,mBAAmB1V,qDAAAA;YACnB2V,kBAAkB9V,gCAAAA;YAClB+V,UAAU9T;YACV+T,YAAYnQ;YACZoQ,mBAAmBjG;YACnBkG,cAAcjP;YACdkP,aAAajE;YACbkE,mBAAmBxM;YACnB5G,cAAcH;YACd,oCAAoC,GACpC,wDAAwD;YACxDwT,UAAU,CAACpV;gBACT,OAAA,WAAA,GACE,OAAA,aAAA,CAAA,OAAA,QAAA,EAAA,MAAA,WAAA,GACE,OAAA,aAAA,CAACqV,KAAAA,MAAGlU;YAGV;;IAGN,OAAO;QACL,OAAA,WAAA,GACE,OAAA,aAAA,CAACmU,OAAAA;YAAIC,IAAIzU;YAAe6M,MAAM;YAASuE,OAAO;gBAAEjE,SAAS;YAAI;YAAGR,cAAY;;IAEhF;AACF,GAAG;AACH3N,2BAA2B0V,WAAW,GAAG"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.types.ts"],"sourcesContent":["import { RenderFunction } from '../../utilities/index';\nimport {\n CartesianChartProps,\n CartesianChartStyleProps,\n CartesianChartStyles,\n HorizontalBarChartWithAxisDataPoint,\n} from '../../index';\n\n/**\n * Horizontal Bar Chart with Axis properties\n * {@docCategory HorizontalBarChartWithAxis}\n */\nexport interface HorizontalBarChartWithAxisProps extends CartesianChartProps {\n /**\n * Data to render in the chart.\n */\n data?: HorizontalBarChartWithAxisDataPoint[];\n\n /**\n * Define a custom callout renderer for a data point.\n */\n onRenderCalloutPerDataPoint?: RenderFunction<HorizontalBarChartWithAxisDataPoint>;\n\n /**\n * Width of each bar in the chart.\n */\n barHeight?: number;\n\n /**\n * Colors from which to select the color of each bar.\n */\n colors?: string[];\n\n /**\n * chart title for the chart\n */\n chartTitle?: string;\n\n /**\n * This prop makes sure that all the bars are of same color.\n * it will take the first color from the array of colors in\n * prop `colors` or if `colors` prop is not given then default color is palette.blueLight\n * @default false\n */\n useSingleColor?: boolean;\n\n /**\n * Call to provide customized styling that will layer on top of the variant rules.\n */\n styles?: HorizontalBarChartWithAxisStyles;\n\n /**\n * The prop used to define the culture to localized the numbers\n */\n culture?: string;\n\n /**\n * it's padding between bar's or lines in the graph\n */\n yAxisPadding?: number;\n\n /**\n * @default false\n * The prop used to enable gradient fill color for the chart.\n */\n enableGradient?: boolean;\n\n /**\n * @default false\n * The prop used to enable rounded corners for the bars.\n */\n roundCorners?: boolean;\n}\n\n/**\n * Horizontal Bar Chart with Axis style properties\n * {@docCategory HorizontalBarChartWithAxis}\n */\nexport interface HorizontalBarChartWithAxisStyleProps extends CartesianChartStyleProps {\n /**\n * color of the datapoint legend\n */\n legendColor?: string;\n}\n\n/**\n * Horizontal Bar Chart with Axis styles\n * {@docCategory HorizontalBarChartWithAxis}\n */\nexport interface HorizontalBarChartWithAxisStyles extends CartesianChartStyles {\n /**\n * Style for the chart label.\n *\n */\n chartLabel?: string;\n\n /**\n * Style for the line representing the domain of the x-axis.\n *\n */\n xAxisDomain?: string;\n\n /**\n * Style for the lines representing the ticks along the x-axis.\n *\n */\n xAxisTicks?: string;\n\n /**\n * Style for the text labeling each tick along the x-axis.\n *\n */\n xAxisText?: string;\n\n /**\n * Style for the line representing the domain of the y-axis.\n *\n */\n yAxisDomain?: string;\n\n /**\n * Style for the lines representing the ticks along the y-axis.\n *\n */\n yAxisTicks?: string;\n\n /**\n * Style for the text labeling each tick along the y-axis.\n *\n */\n yAxisText?: string;\n\n /**\n * Style to change the opacity of bars in dataviz when we hover on a single bar or legends\n */\n opacityChangeOnHover: string;\n}\n"],"names":[],"mappings":"AAqFA;;;CAGC,GACD,WA+CC"}
1
+ {"version":3,"sources":["../src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.types.ts"],"sourcesContent":["import { RenderFunction } from '../../utilities/index';\nimport {\n CartesianChartProps,\n CartesianChartStyleProps,\n CartesianChartStyles,\n HorizontalBarChartWithAxisDataPoint,\n} from '../../index';\n\n/**\n * Horizontal Bar Chart with Axis properties\n * {@docCategory HorizontalBarChartWithAxis}\n */\nexport interface HorizontalBarChartWithAxisProps extends CartesianChartProps {\n /**\n * Data to render in the chart.\n */\n data?: HorizontalBarChartWithAxisDataPoint[];\n\n /**\n * Define a custom callout renderer for a data point.\n */\n onRenderCalloutPerDataPoint?: RenderFunction<HorizontalBarChartWithAxisDataPoint>;\n\n /**\n * Width of each bar in the chart.\n */\n barHeight?: number;\n\n /**\n * Colors from which to select the color of each bar.\n */\n colors?: string[];\n\n /**\n * chart title for the chart\n */\n chartTitle?: string;\n\n /**\n * This prop makes sure that all the bars are of same color.\n * it will take the first color from the array of colors in\n * prop `colors` or if `colors` prop is not given then default color is palette.blueLight\n * @default false\n */\n useSingleColor?: boolean;\n\n /**\n * Call to provide customized styling that will layer on top of the variant rules.\n */\n styles?: HorizontalBarChartWithAxisStyles;\n\n /**\n * The prop used to define the culture to localized the numbers\n */\n culture?: string;\n\n /**\n * it's padding between bar's or lines in the graph\n */\n yAxisPadding?: number;\n\n /**\n * @default false\n * The prop used to enable gradient fill color for the chart.\n */\n enableGradient?: boolean;\n\n /**\n * @default false\n * The prop used to enable rounded corners for the bars.\n */\n roundCorners?: boolean;\n\n /**\n * Prop to hide the bar labels\n * @default false\n */\n hideLabels?: boolean;\n}\n\n/**\n * Horizontal Bar Chart with Axis style properties\n * {@docCategory HorizontalBarChartWithAxis}\n */\nexport interface HorizontalBarChartWithAxisStyleProps extends CartesianChartStyleProps {\n /**\n * color of the datapoint legend\n */\n legendColor?: string;\n}\n\n/**\n * Horizontal Bar Chart with Axis styles\n * {@docCategory HorizontalBarChartWithAxis}\n */\nexport interface HorizontalBarChartWithAxisStyles extends CartesianChartStyles {\n /**\n * Style for the chart label.\n *\n */\n chartLabel?: string;\n\n /**\n * Style for the line representing the domain of the x-axis.\n *\n */\n xAxisDomain?: string;\n\n /**\n * Style for the lines representing the ticks along the x-axis.\n *\n */\n xAxisTicks?: string;\n\n /**\n * Style for the text labeling each tick along the x-axis.\n *\n */\n xAxisText?: string;\n\n /**\n * Style for the line representing the domain of the y-axis.\n *\n */\n yAxisDomain?: string;\n\n /**\n * Style for the lines representing the ticks along the y-axis.\n *\n */\n yAxisTicks?: string;\n\n /**\n * Style for the text labeling each tick along the y-axis.\n *\n */\n yAxisText?: string;\n\n /**\n * Style to change the opacity of bars in dataviz when we hover on a single bar or legends\n */\n opacityChangeOnHover: string;\n\n /**\n * Style for the bar labels displayed at the end of each bar\n */\n barLabel?: string;\n}\n"],"names":[],"mappings":"AA2FA;;;CAGC,GACD,WAoDC"}
@@ -22,6 +22,7 @@ const hbcWithAxisClassNames = {
22
22
  opacityChangeOnHover: 'fui-hbcwa__opacityChangeOnHover',
23
23
  xAxisTicks: 'fui-hbcwa__xAxisTicks',
24
24
  tooltip: 'fui-hbcwa__tooltip',
25
+ barLabel: 'fui-hbcwa__barLabel',
25
26
  chartLabel: '',
26
27
  xAxisDomain: '',
27
28
  xAxisText: '',
@@ -48,16 +49,38 @@ const useStyles = /*#__PURE__*/ (0, _react.__styles)({
48
49
  opacityChangeOnHover: {
49
50
  abs64n: "f9das1l"
50
51
  },
51
- xAxisTicks: {}
52
+ xAxisTicks: {},
53
+ barLabel: {
54
+ Bahqtrf: "fk6fouc",
55
+ Be2twd7: "fy9rknc",
56
+ Bhrd7zp: "fl43uef",
57
+ Bg96gwp: "fwrc4pm",
58
+ Bkfmm31: "fhuob2q",
59
+ Bj7tp1g: "f788z2a"
60
+ }
52
61
  }, {
53
62
  d: [
54
- ".f9das1l{opacity:0.1;}"
63
+ ".f9das1l{opacity:0.1;}",
64
+ ".fk6fouc{font-family:var(--fontFamilyBase);}",
65
+ ".fy9rknc{font-size:var(--fontSizeBase200);}",
66
+ ".fl43uef{font-weight:var(--fontWeightSemibold);}",
67
+ ".fwrc4pm{line-height:var(--lineHeightBase200);}",
68
+ ".fhuob2q{fill:var(--colorNeutralForeground1);}"
69
+ ],
70
+ m: [
71
+ [
72
+ "@media screen and (-ms-high-contrast: active),screen and (forced-colors: active){.f788z2a{stroke:CanvasText;}}",
73
+ {
74
+ m: "screen and (-ms-high-contrast: active), screen and (forced-colors: active)"
75
+ }
76
+ ]
55
77
  ]
56
78
  });
57
79
  const useHorizontalBarChartWithAxisStyles = (props)=>{
58
80
  const baseStyles = useStyles();
59
81
  return {
60
82
  opacityChangeOnHover: (0, _react.mergeClasses)(hbcWithAxisClassNames.opacityChangeOnHover, baseStyles.opacityChangeOnHover),
61
- xAxisTicks: (0, _react.mergeClasses)(hbcWithAxisClassNames.xAxisTicks, baseStyles.xAxisTicks)
83
+ xAxisTicks: (0, _react.mergeClasses)(hbcWithAxisClassNames.xAxisTicks, baseStyles.xAxisTicks),
84
+ barLabel: (0, _react.mergeClasses)(hbcWithAxisClassNames.barLabel, baseStyles.barLabel)
62
85
  };
63
86
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["useHorizontalBarChartWithAxisStyles.styles.js"],"sourcesContent":["'use client';\nimport { makeStyles, mergeClasses } from '@griffel/react';\nexport const hbcWithAxisClassNames = {\n opacityChangeOnHover: 'fui-hbcwa__opacityChangeOnHover',\n xAxisTicks: 'fui-hbcwa__xAxisTicks',\n tooltip: 'fui-hbcwa__tooltip',\n chartLabel: '',\n xAxisDomain: '',\n xAxisText: '',\n yAxisDomain: '',\n yAxisTicks: '',\n yAxisText: '',\n root: '',\n xAxis: '',\n yAxis: '',\n legendContainer: '',\n hover: '',\n descriptionMessage: '',\n axisTitle: '',\n chartTitle: '',\n shapeStyles: '',\n chartWrapper: '',\n svgTooltip: '',\n chart: '',\n axisAnnotation: '',\n plotContainer: '',\n annotationLayer: ''\n};\nconst useStyles = makeStyles({\n opacityChangeOnHover: {\n opacity: 0.1\n },\n xAxisTicks: {}\n});\n/**\n * Apply styling to the HorizontalBarChartWithAxis slots based on the state\n */ export const useHorizontalBarChartWithAxisStyles = (props)=>{\n const baseStyles = useStyles();\n return {\n opacityChangeOnHover: mergeClasses(hbcWithAxisClassNames.opacityChangeOnHover, baseStyles.opacityChangeOnHover),\n xAxisTicks: mergeClasses(hbcWithAxisClassNames.xAxisTicks, baseStyles.xAxisTicks)\n };\n};\n"],"names":["__styles","mergeClasses","hbcWithAxisClassNames","opacityChangeOnHover","xAxisTicks","tooltip","chartLabel","xAxisDomain","xAxisText","yAxisDomain","yAxisTicks","yAxisText","root","xAxis","yAxis","legendContainer","hover","descriptionMessage","axisTitle","chartTitle","shapeStyles","chartWrapper","svgTooltip","chart","axisAnnotation","plotContainer","annotationLayer","useStyles","abs64n","d","useHorizontalBarChartWithAxisStyles","props","baseStyles"],"mappings":"AAAA,YAAY;;;;;;;;;;;;IAECE,qBAAqB;;;IAkCjB4B,mCAAmC;;;;uBAnCX,gBAAgB;AAClD,8BAA8B;IACjC3B,oBAAoB,EAAE,iCAAiC;IACvDC,UAAU,EAAE,uBAAuB;IACnCC,OAAO,EAAE,oBAAoB;IAC7BC,UAAU,EAAE,EAAE;IACdC,WAAW,EAAE,EAAE;IACfC,SAAS,EAAE,EAAE;IACbC,WAAW,EAAE,EAAE;IACfC,UAAU,EAAE,EAAE;IACdC,SAAS,EAAE,EAAE;IACbC,IAAI,EAAE,EAAE;IACRC,KAAK,EAAE,EAAE;IACTC,KAAK,EAAE,EAAE;IACTC,eAAe,EAAE,EAAE;IACnBC,KAAK,EAAE,EAAE;IACTC,kBAAkB,EAAE,EAAE;IACtBC,SAAS,EAAE,EAAE;IACbC,UAAU,EAAE,EAAE;IACdC,WAAW,EAAE,EAAE;IACfC,YAAY,EAAE,EAAE;IAChBC,UAAU,EAAE,EAAE;IACdC,KAAK,EAAE,EAAE;IACTC,cAAc,EAAE,EAAE;IAClBC,aAAa,EAAE,EAAE;IACjBC,eAAe,EAAE;AACrB,CAAC;AACD,MAAMC,SAAS,GAAA,WAAA,OAAG3B,eAAA,EAAA;IAAAG,oBAAA,EAAA;QAAAyB,MAAA,EAAA;IAAA;IAAAxB,UAAA,EAAA,CAAA;AAAA,GAAA;IAAAyB,CAAA,EAAA;QAAA;KAAA;AAAA,CAKjB,CAAC;AAGS,4CAA6CE,KAAK,IAAG;IAC5D,MAAMC,UAAU,GAAGL,SAAS,CAAC,CAAC;IAC9B,OAAO;QACHxB,oBAAoB,MAAEF,mBAAY,EAACC,qBAAqB,CAACC,oBAAoB,EAAE6B,UAAU,CAAC7B,oBAAoB,CAAC;QAC/GC,UAAU,MAAEH,mBAAY,EAACC,qBAAqB,CAACE,UAAU,EAAE4B,UAAU,CAAC5B,UAAU;IACpF,CAAC;AACL,CAAC"}
1
+ {"version":3,"sources":["useHorizontalBarChartWithAxisStyles.styles.js"],"sourcesContent":["'use client';\nimport { makeStyles, mergeClasses } from '@griffel/react';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport { HighContrastSelector } from '../../utilities/index';\nexport const hbcWithAxisClassNames = {\n opacityChangeOnHover: 'fui-hbcwa__opacityChangeOnHover',\n xAxisTicks: 'fui-hbcwa__xAxisTicks',\n tooltip: 'fui-hbcwa__tooltip',\n barLabel: 'fui-hbcwa__barLabel',\n chartLabel: '',\n xAxisDomain: '',\n xAxisText: '',\n yAxisDomain: '',\n yAxisTicks: '',\n yAxisText: '',\n root: '',\n xAxis: '',\n yAxis: '',\n legendContainer: '',\n hover: '',\n descriptionMessage: '',\n axisTitle: '',\n chartTitle: '',\n shapeStyles: '',\n chartWrapper: '',\n svgTooltip: '',\n chart: '',\n axisAnnotation: '',\n plotContainer: '',\n annotationLayer: ''\n};\nconst useStyles = makeStyles({\n opacityChangeOnHover: {\n opacity: 0.1\n },\n xAxisTicks: {},\n barLabel: {\n ...typographyStyles.caption1Strong,\n fill: tokens.colorNeutralForeground1,\n [HighContrastSelector]: {\n stroke: 'CanvasText'\n }\n }\n});\n/**\n * Apply styling to the HorizontalBarChartWithAxis slots based on the state\n */ export const useHorizontalBarChartWithAxisStyles = (props)=>{\n const baseStyles = useStyles();\n return {\n opacityChangeOnHover: mergeClasses(hbcWithAxisClassNames.opacityChangeOnHover, baseStyles.opacityChangeOnHover),\n xAxisTicks: mergeClasses(hbcWithAxisClassNames.xAxisTicks, baseStyles.xAxisTicks),\n barLabel: mergeClasses(hbcWithAxisClassNames.barLabel, baseStyles.barLabel)\n };\n};\n"],"names":["__styles","mergeClasses","tokens","typographyStyles","HighContrastSelector","hbcWithAxisClassNames","opacityChangeOnHover","xAxisTicks","tooltip","barLabel","chartLabel","xAxisDomain","xAxisText","yAxisDomain","yAxisTicks","yAxisText","root","xAxis","yAxis","legendContainer","hover","descriptionMessage","axisTitle","chartTitle","shapeStyles","chartWrapper","svgTooltip","chart","axisAnnotation","plotContainer","annotationLayer","useStyles","abs64n","Bahqtrf","Be2twd7","Bhrd7zp","Bg96gwp","Bkfmm31","Bj7tp1g","d","m","useHorizontalBarChartWithAxisStyles","props","baseStyles"],"mappings":"AAAA,YAAY;;;;;;;;;;;;IAICK,qBAAqB;;;IA0CjBoC,mCAAmC;;;;uBA7CX,gBAAgB;AAGlD,8BAA8B;IACjCnC,oBAAoB,EAAE,iCAAiC;IACvDC,UAAU,EAAE,uBAAuB;IACnCC,OAAO,EAAE,oBAAoB;IAC7BC,QAAQ,EAAE,qBAAqB;IAC/BC,UAAU,EAAE,EAAE;IACdC,WAAW,EAAE,EAAE;IACfC,SAAS,EAAE,EAAE;IACbC,WAAW,EAAE,EAAE;IACfC,UAAU,EAAE,EAAE;IACdC,SAAS,EAAE,EAAE;IACbC,IAAI,EAAE,EAAE;IACRC,KAAK,EAAE,EAAE;IACTC,KAAK,EAAE,EAAE;IACTC,eAAe,EAAE,EAAE;IACnBC,KAAK,EAAE,EAAE;IACTC,kBAAkB,EAAE,EAAE;IACtBC,SAAS,EAAE,EAAE;IACbC,UAAU,EAAE,EAAE;IACdC,WAAW,EAAE,EAAE;IACfC,YAAY,EAAE,EAAE;IAChBC,UAAU,EAAE,EAAE;IACdC,KAAK,EAAE,EAAE;IACTC,cAAc,EAAE,EAAE;IAClBC,aAAa,EAAE,EAAE;IACjBC,eAAe,EAAE;AACrB,CAAC;AACD,MAAMC,SAAS,GAAA,WAAA,OAAG/B,eAAA,EAAA;IAAAM,oBAAA,EAAA;QAAA0B,MAAA,EAAA;IAAA;IAAAzB,UAAA,EAAA,CAAA;IAAAE,QAAA,EAAA;QAAAwB,OAAA,EAAA;QAAAC,OAAA,EAAA;QAAAC,OAAA,EAAA;QAAAC,OAAA,EAAA;QAAAC,OAAA,EAAA;QAAAC,OAAA,EAAA;IAAA;AAAA,GAAA;IAAAC,CAAA,EAAA;QAAA;QAAA;QAAA;QAAA;QAAA;QAAA;KAAA;IAAAC,CAAA,EAAA;QAAA;YAAA;YAAA;gBAAAA,CAAA,EAAA;YAAA;SAAA;KAAA;AAAA,CAYjB,CAAC;AAGS,4CAA6CE,KAAK,IAAG;IAC5D,MAAMC,UAAU,GAAGZ,SAAS,CAAC,CAAC;IAC9B,OAAO;QACHzB,oBAAoB,MAAEL,mBAAY,EAACI,qBAAqB,CAACC,oBAAoB,EAAEqC,UAAU,CAACrC,oBAAoB,CAAC;QAC/GC,UAAU,MAAEN,mBAAY,EAACI,qBAAqB,CAACE,UAAU,EAAEoC,UAAU,CAACpC,UAAU,CAAC;QACjFE,QAAQ,MAAER,mBAAY,EAACI,qBAAqB,CAACI,QAAQ,EAAEkC,UAAU,CAAClC,QAAQ;IAC9E,CAAC;AACL,CAAC"}
@@ -18,10 +18,13 @@ _export(exports, {
18
18
  }
19
19
  });
20
20
  const _react = require("@griffel/react");
21
+ const _reacttheme = require("@fluentui/react-theme");
22
+ const _index = require("../../utilities/index");
21
23
  const hbcWithAxisClassNames = {
22
24
  opacityChangeOnHover: 'fui-hbcwa__opacityChangeOnHover',
23
25
  xAxisTicks: 'fui-hbcwa__xAxisTicks',
24
26
  tooltip: 'fui-hbcwa__tooltip',
27
+ barLabel: 'fui-hbcwa__barLabel',
25
28
  chartLabel: '',
26
29
  xAxisDomain: '',
27
30
  xAxisText: '',
@@ -48,12 +51,20 @@ const useStyles = (0, _react.makeStyles)({
48
51
  opacityChangeOnHover: {
49
52
  opacity: 0.1
50
53
  },
51
- xAxisTicks: {}
54
+ xAxisTicks: {},
55
+ barLabel: {
56
+ ..._reacttheme.typographyStyles.caption1Strong,
57
+ fill: _reacttheme.tokens.colorNeutralForeground1,
58
+ [_index.HighContrastSelector]: {
59
+ stroke: 'CanvasText'
60
+ }
61
+ }
52
62
  });
53
63
  const useHorizontalBarChartWithAxisStyles = (props)=>{
54
64
  const baseStyles = useStyles();
55
65
  return {
56
66
  opacityChangeOnHover: (0, _react.mergeClasses)(hbcWithAxisClassNames.opacityChangeOnHover, baseStyles.opacityChangeOnHover),
57
- xAxisTicks: (0, _react.mergeClasses)(hbcWithAxisClassNames.xAxisTicks, baseStyles.xAxisTicks)
67
+ xAxisTicks: (0, _react.mergeClasses)(hbcWithAxisClassNames.xAxisTicks, baseStyles.xAxisTicks),
68
+ barLabel: (0, _react.mergeClasses)(hbcWithAxisClassNames.barLabel, baseStyles.barLabel)
58
69
  };
59
70
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.ts"],"sourcesContent":["'use client';\n\nimport { makeStyles, mergeClasses } from '@griffel/react';\nimport { HorizontalBarChartWithAxisProps, HorizontalBarChartWithAxisStyles } from './index';\nimport { SlotClassNames } from '@fluentui/react-utilities';\n\nexport const hbcWithAxisClassNames: SlotClassNames<HorizontalBarChartWithAxisStyles> = {\n opacityChangeOnHover: 'fui-hbcwa__opacityChangeOnHover',\n xAxisTicks: 'fui-hbcwa__xAxisTicks',\n tooltip: 'fui-hbcwa__tooltip',\n chartLabel: '',\n xAxisDomain: '',\n xAxisText: '',\n yAxisDomain: '',\n yAxisTicks: '',\n yAxisText: '',\n root: '',\n xAxis: '',\n yAxis: '',\n legendContainer: '',\n hover: '',\n descriptionMessage: '',\n axisTitle: '',\n chartTitle: '',\n shapeStyles: '',\n chartWrapper: '',\n svgTooltip: '',\n chart: '',\n axisAnnotation: '',\n plotContainer: '',\n annotationLayer: '',\n};\n\nconst useStyles = makeStyles({\n opacityChangeOnHover: {\n opacity: 0.1, // supports custom opacity\n },\n\n xAxisTicks: {},\n});\n\n/**\n * Apply styling to the HorizontalBarChartWithAxis slots based on the state\n */\nexport const useHorizontalBarChartWithAxisStyles = (\n props: HorizontalBarChartWithAxisProps,\n): HorizontalBarChartWithAxisStyles => {\n const baseStyles = useStyles();\n\n return {\n opacityChangeOnHover: mergeClasses(hbcWithAxisClassNames.opacityChangeOnHover, baseStyles.opacityChangeOnHover),\n xAxisTicks: mergeClasses(hbcWithAxisClassNames.xAxisTicks, baseStyles.xAxisTicks),\n };\n};\n"],"names":["makeStyles","mergeClasses","hbcWithAxisClassNames","opacityChangeOnHover","xAxisTicks","tooltip","chartLabel","xAxisDomain","xAxisText","yAxisDomain","yAxisTicks","yAxisText","root","xAxis","yAxis","legendContainer","hover","descriptionMessage","axisTitle","chartTitle","shapeStyles","chartWrapper","svgTooltip","chart","axisAnnotation","plotContainer","annotationLayer","useStyles","opacity","useHorizontalBarChartWithAxisStyles","props","baseStyles"],"mappings":"AAAA;;;;;;;;;;;;IAMaE,qBAAAA;;;uCAsCA2B;eAAAA;;;uBA1C4B,iBAAiB;AAInD,8BAAgF;IACrF1B,sBAAsB;IACtBC,YAAY;IACZC,SAAS;IACTC,YAAY;IACZC,aAAa;IACbC,WAAW;IACXC,aAAa;IACbC,YAAY;IACZC,WAAW;IACXC,MAAM;IACNC,OAAO;IACPC,OAAO;IACPC,iBAAiB;IACjBC,OAAO;IACPC,oBAAoB;IACpBC,WAAW;IACXC,YAAY;IACZC,aAAa;IACbC,cAAc;IACdC,YAAY;IACZC,OAAO;IACPC,gBAAgB;IAChBC,eAAe;IACfC,iBAAiB;AACnB,EAAE;AAEF,MAAMC,gBAAY3B,iBAAAA,EAAW;IAC3BG,sBAAsB;QACpByB,SAAS;IACX;IAEAxB,YAAY,CAAC;AACf;AAKO,4CAA4C,CACjD0B;IAEA,MAAMC,aAAaJ;IAEnB,OAAO;QACLxB,0BAAsBF,mBAAAA,EAAaC,sBAAsBC,oBAAoB,EAAE4B,WAAW5B,oBAAoB;QAC9GC,gBAAYH,mBAAAA,EAAaC,sBAAsBE,UAAU,EAAE2B,WAAW3B,UAAU;IAClF;AACF,EAAE"}
1
+ {"version":3,"sources":["../src/components/HorizontalBarChartWithAxis/useHorizontalBarChartWithAxisStyles.styles.ts"],"sourcesContent":["'use client';\n\nimport { makeStyles, mergeClasses } from '@griffel/react';\nimport { HorizontalBarChartWithAxisProps, HorizontalBarChartWithAxisStyles } from './index';\nimport { SlotClassNames } from '@fluentui/react-utilities';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport { HighContrastSelector } from '../../utilities/index';\n\nexport const hbcWithAxisClassNames: SlotClassNames<HorizontalBarChartWithAxisStyles> = {\n opacityChangeOnHover: 'fui-hbcwa__opacityChangeOnHover',\n xAxisTicks: 'fui-hbcwa__xAxisTicks',\n tooltip: 'fui-hbcwa__tooltip',\n barLabel: 'fui-hbcwa__barLabel',\n chartLabel: '',\n xAxisDomain: '',\n xAxisText: '',\n yAxisDomain: '',\n yAxisTicks: '',\n yAxisText: '',\n root: '',\n xAxis: '',\n yAxis: '',\n legendContainer: '',\n hover: '',\n descriptionMessage: '',\n axisTitle: '',\n chartTitle: '',\n shapeStyles: '',\n chartWrapper: '',\n svgTooltip: '',\n chart: '',\n axisAnnotation: '',\n plotContainer: '',\n annotationLayer: '',\n};\n\nconst useStyles = makeStyles({\n opacityChangeOnHover: {\n opacity: 0.1, // supports custom opacity\n },\n\n xAxisTicks: {},\n\n barLabel: {\n ...typographyStyles.caption1Strong,\n fill: tokens.colorNeutralForeground1,\n [HighContrastSelector]: {\n stroke: 'CanvasText',\n },\n },\n});\n\n/**\n * Apply styling to the HorizontalBarChartWithAxis slots based on the state\n */\nexport const useHorizontalBarChartWithAxisStyles = (\n props: HorizontalBarChartWithAxisProps,\n): HorizontalBarChartWithAxisStyles => {\n const baseStyles = useStyles();\n\n return {\n opacityChangeOnHover: mergeClasses(hbcWithAxisClassNames.opacityChangeOnHover, baseStyles.opacityChangeOnHover),\n xAxisTicks: mergeClasses(hbcWithAxisClassNames.xAxisTicks, baseStyles.xAxisTicks),\n barLabel: mergeClasses(hbcWithAxisClassNames.barLabel, baseStyles.barLabel),\n };\n};\n"],"names":["makeStyles","mergeClasses","tokens","typographyStyles","HighContrastSelector","hbcWithAxisClassNames","opacityChangeOnHover","xAxisTicks","tooltip","barLabel","chartLabel","xAxisDomain","xAxisText","yAxisDomain","yAxisTicks","yAxisText","root","xAxis","yAxis","legendContainer","hover","descriptionMessage","axisTitle","chartTitle","shapeStyles","chartWrapper","svgTooltip","chart","axisAnnotation","plotContainer","annotationLayer","useStyles","opacity","caption1Strong","fill","colorNeutralForeground1","stroke","useHorizontalBarChartWithAxisStyles","props","baseStyles"],"mappings":"AAAA;;;;;;;;;;;;IAQaK,qBAAAA;;;uCA+CAgC;;;;uBArD4B,iBAAiB;4BAGjB,wBAAwB;uBAC5B,wBAAwB;AAEtD,8BAAgF;IACrF/B,sBAAsB;IACtBC,YAAY;IACZC,SAAS;IACTC,UAAU;IACVC,YAAY;IACZC,aAAa;IACbC,WAAW;IACXC,aAAa;IACbC,YAAY;IACZC,WAAW;IACXC,MAAM;IACNC,OAAO;IACPC,OAAO;IACPC,iBAAiB;IACjBC,OAAO;IACPC,oBAAoB;IACpBC,WAAW;IACXC,YAAY;IACZC,aAAa;IACbC,cAAc;IACdC,YAAY;IACZC,OAAO;IACPC,gBAAgB;IAChBC,eAAe;IACfC,iBAAiB;AACnB,EAAE;AAEF,MAAMC,gBAAY/B,iBAAAA,EAAW;IAC3BM,sBAAsB;QACpB0B,SAAS;IACX;IAEAzB,YAAY,CAAC;IAEbE,UAAU;QACR,GAAGN,4BAAAA,CAAiB8B,cAAc;QAClCC,MAAMhC,kBAAAA,CAAOiC,uBAAuB;QACpC,CAAC/B,2BAAAA,CAAqB,EAAE;YACtBgC,QAAQ;QACV;IACF;AACF;AAKO,MAAMC,sCAAsC,CACjDC;IAEA,MAAMC,aAAaR;IAEnB,OAAO;QACLzB,0BAAsBL,mBAAAA,EAAaI,sBAAsBC,oBAAoB,EAAEiC,WAAWjC,oBAAoB;QAC9GC,gBAAYN,mBAAAA,EAAaI,sBAAsBE,UAAU,EAAEgC,WAAWhC,UAAU;QAChFE,cAAUR,mBAAAA,EAAaI,sBAAsBI,QAAQ,EAAE8B,WAAW9B,QAAQ;IAC5E;AACF,EAAE"}